Recent Posts
新建了gist.99steps.cn分享代码片段
很多时候分享代码不需要写很多文字或者专门写个博客, 只需要简单的代码片段与文件即可。基于如上,搞了个简单的页面,类似github的gist, 分享一点点小功能的代码、外加简单的说明。
访问页面 https://gist.99steps.cn/
功能基于django, 很早之前搭建的,放着没有使用,现在重新启动。
read more
搭建Hugo开发环境
使用Hugo来搭建静态内容超级简单了。 参考 https://gohugo.io/getting-started/quick-start/
快速起步 下载hugo软件包,解压到本地之后就可以开始了。命令如下
hugo new site quickstart cd quickstart git init git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke echo "theme = 'ananke'" >> hugo.toml hugo server 新建内容,比如POST。 新生成的md的头部meta中draft字段的值为true, 当编写完成后要发布时改为false。
hugo new posts/my-first-post.md 构建发布,生成的静态内容位于public目录下,可以用于部署在nginx下。
hugo
read more
Contents About Flex Actionscript
Flash 中使用的格式有swf、swc、swz. ActionScript3 对标ECScript 3, 已在2022年停止支持; 编译后生成abc 字节码,在avm2 虚拟机中运行。
参考资料 Flex https://flex.apache.org/
Apache Royale https://github.com/apache/royale-compiler
框架 Cairngorm https://sourceforge.net/adobe/cairngorm/wiki/GettingStartedWithCairngorm/ https://baike.baidu.com/item/Cairngorm/6331423
mozilla Tamarin项目已停止支持, 项目主页已经打不开了
tarmarin-redux https://hg.mozilla.org/tamarin-redux https://www-archive.mozilla.org/projects/tamarin/
https://github.com/adobe https://github.com/adobe/aio-theme
harman airsdk https://airsdk.harman.com/ https://leaningtech.com/cheerpx-for-flash/
https://wiki.mozilla.org/Tamarin MMgc is the Tamarin garbage collector.
haXe is a compiler that can target Tamarin. Implemented in OCaml. http://haxe.org/
Haxe 强类型编程语言, 可编译为其它支持的类型, 有自己的虚拟机 https://github.com/HaxeFoundation/haxe
adobe 下载页 https://helpx.adobe.com/air/archived-docs-download.html
swf反编译工具 https://github.com/jindrapetrik/jpexs-decompiler/wiki https://www.flash-decompiler.com/
debug/console https://www.softpedia.com/get/Programming/Debuggers-Decompilers-Dissasemblers/Alcon.shtml
FlexUnit FlexMonkey
vscode插件 https://github.com/BowlerHatLLC/vscode-as3mxml
flex 转换js https://github.com/Next2D/player https://github.
read more