05 2019 档案

摘要:先使用 JS_DecodeScript反编译jsc 得到AST树 AST树词法解析 http://esprima.org/ AST还原成源码: npm install escodegen AST树遍历:npm install estraverse https://developer.mozilla. 阅读全文
posted @ 2019-05-29 11:02 Please Call me 小强 阅读(2137) 评论(0) 推荐(0) 编辑
摘要:typedef std::string u8string; u8string To_UTF8(const std::u16string &s) { std::wstring_convert, char16_t> conv; return conv.to_bytes(s); } u8string To_UTF8(const std::u32string &s) { st... 阅读全文
posted @ 2019-05-29 10:51 Please Call me 小强 阅读(1771) 评论(0) 推荐(0) 编辑
摘要:ios 端安装文档接入库后,报错 -> static void BuglyJSAgent::reportJSError(JSContext *, const char *, JSErrorReport *) [Error] CrashReport: Fail to get class by NSCl 阅读全文
posted @ 2019-05-25 20:22 Please Call me 小强 阅读(636) 评论(0) 推荐(0) 编辑
摘要:androguard. 这个是python写的 安装: pip install androguard 阅读全文
posted @ 2019-05-23 15:28 Please Call me 小强 阅读(566) 评论(0) 推荐(0) 编辑
摘要:基础值:12 ldpi:mdpi:hdpi:xhdpi:xxhdpi:xxxhdpi=3:4:6:8:12:16 大小: 32x32.png 48x48.png 72x72.png 96x96.png 144x144.png 192x192.png 阅读全文
posted @ 2019-05-23 10:53 Please Call me 小强 阅读(515) 评论(0) 推荐(0) 编辑
摘要:ln -s /Volumes/dzqExt/source/wukongqipai/wukongqipai/ccclient/Classes/ ./frameworks/runtime-src/ ln 命令源路径必须是绝对路径,否则创建出来的软链接无效。 阅读全文
posted @ 2019-05-22 09:25 Please Call me 小强 阅读(7518) 评论(0) 推荐(2) 编辑
摘要:String对象方法 分别返回字符串的小写表示和大写表示。 阅读全文
posted @ 2019-05-21 00:35 Please Call me 小强 阅读(107) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。
posted @ 2019-05-21 00:30 Please Call me 小强 阅读(3) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。
posted @ 2019-05-21 00:24 Please Call me 小强 阅读(4) 评论(0) 推荐(0) 编辑
摘要:一个进程可以占用多个端口。 查看某个进程占用哪些端口: lsof -nP | grep TCP | grep -i 进程名 ➜ cocos_creator lsof -nP | grep TCP | grep -i qq QQ 253 deng 24u IPv4 0xcf28a26f9c20c057 阅读全文
posted @ 2019-05-19 20:48 Please Call me 小强 阅读(696) 评论(0) 推荐(0) 编辑
摘要:一个游戏场景有若干个节点组成,这些包括渲染节点,UI节点。 这里弱化了Layer层的概念。 一个游戏由若干个场景组件。 每个节点由若干个组件和若干子节点组成。 例如UI节点中的 按钮节点。子节点有一张背景图片Background节点[由 Node节点,Sprite组件,widget组件组成]。 Ba 阅读全文
posted @ 2019-05-18 17:16 Please Call me 小强 阅读(446) 评论(0) 推荐(0) 编辑
摘要:http://cocos2d-x.org/filedown/CocosForMac-v3.10.dmghttp://cocos2d-x.org/filedown/CocosForWin-v3.10.exe 阅读全文
posted @ 2019-05-18 11:34 Please Call me 小强 阅读(1087) 评论(0) 推荐(0) 编辑
摘要:使用网站 https://minhaskamal.github.io/DownGit/#/home 阅读全文
posted @ 2019-05-06 14:23 Please Call me 小强 阅读(1333) 评论(0) 推荐(0) 编辑
摘要:pip install -U androguard androguard axml -i AndroidManifest.xml -o AndroidManifest1.xml androguard arsc resources.arsc --id 0x7f06000e androguard ars 阅读全文
posted @ 2019-05-05 00:58 Please Call me 小强 阅读(150) 评论(0) 推荐(0) 编辑
摘要:local tcp_dissector_table = DissectorTable.get("tcp.port") local ws_dissector_table = DissectorTable.get("ws.port") local mqtt_dissector = tcp_dissector_table:get_dissector(1883) ws_dissector_table:a... 阅读全文
posted @ 2019-05-04 22:34 Please Call me 小强 阅读(343) 评论(0) 推荐(0) 编辑
摘要:加密 cocos luacompile -s src -d dst_dir -e -b xxxxx -k xxxxx --disable-compile 解密 cocos luacompile -s src -d dst_dir -e -j -b xxxxx -k xxxxx --disable-c 阅读全文
posted @ 2019-05-04 13:04 Please Call me 小强 阅读(1591) 评论(0) 推荐(0) 编辑
摘要:递归删除当前目录下所有以 ._开头的文件 find . -name "._*" | xargs rm -f 或者: find . -name "._*" -exec rm -r "{}" \; 阅读全文
posted @ 2019-05-03 23:35 Please Call me 小强 阅读(210) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示