这个没有什么截图,主要步骤如下: a.
安装python-2.7-x64版本(我的系统是win7-x64) b. 下载PyInstaller-2.1 x64版本 c. 下载pywin32-x64版本
d.下载upx.exe (这个在pyinstall官网上面会有提示) e.使用pythone set...
分类:
Windows程序 时间:
2014-04-30 16:28:49
阅读次数:
1037
1、指针和对象,都是内存块。一个大,一个小。一个在栈中,一个在堆中。2、iOS中,我们可以生命一个指针,也可以通过alloc获取一块内存。3、我们可以直接消灭掉一个指针,将其置为nil。但是我们没办法直接消灭一块对象内存。对于对象内存,我们永远只能依靠系统去回收。而什么时候回收,就需要使用苹果为我们...
分类:
移动开发 时间:
2014-04-30 15:43:38
阅读次数:
606
1 pod install --verbose --no-repo-update2 pod
update --verbose --no-repo-update
分类:
其他好文 时间:
2014-04-30 15:30:05
阅读次数:
687
ubuntu12.04 64位下安装w3af:sudo apt-get install
w3af解决安装之后w3af_console不能运行的问题:运行w3af_console会提示如下错误:/usr/bin/w3af_console: 3:
/usr/bin/w3af_console: /usr/...
分类:
其他好文 时间:
2014-04-30 14:56:04
阅读次数:
569
1、初始化Load导入一个XML文件到CMarkup的对象中,并对它进行解析。类似C#的Load。SetDoc从字符串中导入XML数据,并对它解析。类似C#的LoadXml。2、输出Save将XML数据写入文件中。类似C#的Save。GetDoc将整个XML数据文档作为字符串返回。3、改变当前位置F...
分类:
其他好文 时间:
2014-04-29 16:32:46
阅读次数:
411
今天遇到个软件要求安装oracle
client端,于是考虑装精简版本的,就从http://www.oracle.com/technology/software/tech/oci/instantclient/index.html下载了instantclient-basic-win32-10.2.0....
分类:
数据库 时间:
2014-04-29 16:32:46
阅读次数:
535
var aQuery = function(selector, context) {return
new aQuery.prototype.init();//工厂方法创建一个对象}aQuery.prototype = {init: function()
{return this;},getAge: ...
分类:
Web程序 时间:
2014-04-29 16:31:46
阅读次数:
511
#include#include#include#include #includeusing
namespace std;char c[1000005];int main(int argc, char* argv[]){ int
n; scanf("%d", &n); while(n--) { .....
分类:
其他好文 时间:
2014-04-29 16:31:46
阅读次数:
286
1. 在页面的中文变量前添加encodeURIComponent()$.ajax({ type:
"POST", url: "", data:{ id:encodeURIComponent(id), type:encodeURIComponent(type)
...
分类:
其他好文 时间:
2014-04-29 16:25:47
阅读次数:
345
一:新建类HotKeys命名空间:using
System.Runtime.InteropServices;二:注册热键API[DllImport("user32")]public static
extern bool RegisterHotKey(IntPtr hWnd, Int32 id, UI...
分类:
其他好文 时间:
2014-04-29 16:25:46
阅读次数:
330