其它
doorxp
演译至上经典,静候不凡目光
展开
-
Use Blockly to solve a maze.
Blockly > DemosMazeUse Blockly to solve a maze.CodeExport a Blockly program into JavaScript, Dart, Python or XML.RTLSee what Blockly looks like in right-to-left mode (for Arabic and Hebrew).原创 2013-03-07 12:42:41 · 604 阅读 · 0 评论 -
Fixing old libtool installation error
Since lately I’ve been using this blog just as a pinboard for useful stuff, today I will share something with my readership (and more importantly, google’s spiders)I tried to install the dieharder t转载 2013-06-04 13:32:08 · 651 阅读 · 0 评论 -
gcc, g++ - GNU 工程的 C 和 C++ 编译器
NAME gcc, g++ - GNU 工程的 C 和 C++ 编译器 (egcs-1.1.2)总览 (SYNOPSIS) gcc [ option | filename ]... g++ [ option | filename ]...警告 (WARNING) 本手册页 内容 摘自 GNU C 编译器 的 完整文档, 仅限于 解释转载 2013-04-17 12:59:03 · 2073 阅读 · 0 评论 -
C/C++中宏使用总结
.C/C++中宏总结C程序的源代码中可包括各种编译指令,这些指令称为预处理命令。虽然它们实际上不是C语言的一部分,但却扩展了C程 序设计的环境。本节将介绍如何应用预处理程序和注释简化程序开发过程,并提高程序的可读性。ANSI标准定义的C语言预处理程序包括下列命令: #define,#error,#i nclude,#if,#else,#elif,#endif,#if转载 2013-04-17 09:05:05 · 482 阅读 · 0 评论 -
Ubuntu上ldid编译和使用
iPhone程序签名时要用到ldid,你可以下载安装ldid:$ sudo apt-get install ldid如果找不到,可以从源代码编译和安装1. 从saurik下载 ldid$ wget http://www.linuxidc.com/system/systemfiles/2011/03/ldid-1.0.610.tgz2. 解压$ tar -zxf ldid-转载 2013-04-15 09:20:10 · 763 阅读 · 0 评论 -
移除LC_CODE_SIGNATURE
首先保证是二进制文件是 thin的,不能是fat binary(multiarchitecture binary)fat减肥方法lipo -thin armv7 old.bin -o new.bin或者ditto --arch armv7 bin1. 修改load命令的数目,位于0×10处,4个字节 比如,如果load命令的数目是 0x2c,就改为0x2B2.转载 2013-04-15 12:58:03 · 1122 阅读 · 0 评论 -
迅雷优惠码
treE7tzCdumhkUTf原创 2013-04-05 18:55:04 · 791 阅读 · 0 评论 -
类成员函数的地址
如果是static类型的类成员函数,可以输出其地址,假如是类a;成员函数是staticshuchu();则可以这样输出它的地址。cout一个类在不继承(或者单继承)、多继承、virtual继承、未定义这四种情况下,其“成员函数指针”的大小分别是4, 8, 12, 16字节。以下是转帖:摘要:介绍了如何取成员函数的地址以及调用该地址.关键字:C++成员函数 this指针 调用约定转载 2013-03-19 09:10:54 · 2759 阅读 · 0 评论 -
常用部分汇编代码与机器码
nop;->90mov al,01;->B0 01mov ax,01;->B8 01 00mov eax,01;->66 B8 01 00 00 00JMP ->E9/EBios:nop->c0 46movs r0,#01->01 20movs r1,#00->00 21cmp r0, #0-> 00 28原创 2013-03-13 12:41:59 · 901 阅读 · 0 评论 -
ffmpeg convert format
down voteacceptedIf you are looking just for stream copy you can do this quite easily.You can refer following steps.//1. Do initialization using av_register_all();// 2. Open inpu转载 2014-05-14 17:06:13 · 740 阅读 · 0 评论