http://www.iteye.com/news/26229http://designmodo.com/admin-html-website-templates/#ixzz1mj36E4kNhttp://www.webresourcesdepot.com/free-admin-template-f...
分类:
Web程序 时间:
2014-11-13 22:22:00
阅读次数:
144
From link: http://osxdaily.com/2011/09/04/internet-explorer-for-mac-ie7-ie8-ie-9-free/If you’re a Mac user that requires the usage of Internet Explor....
分类:
Web程序 时间:
2014-11-13 14:25:48
阅读次数:
337
上一节介绍了Lazarus一般的开发操作流程,对于不熟悉pascal语言的朋友可能看的还是不大明白,不知道pascal代码里都应该包含什么或起什么作用,这回就简单地介绍下语法及代码文件的结构。当然,只是描述一下通常会用到的东西,如果想深入了解pascal,请参考本节最后推荐的书。
free pascal的代码文件一般只有两种,.lpr和.pas(或.pp);lpr文件是工程文件,...
今天是一年一度的光棍节,还没有女朋友的程序猿童鞋不妨new一个出来,内存管理一直是C/C++中最棘手的部分,远不止new/delete、malloc/free这么简单。随着代码量的递增,程序结构复杂度的提高。今天我们就一起研究一下以精巧著称的nginx的内存池。...
分类:
其他好文 时间:
2014-11-11 21:13:42
阅读次数:
278
/*
*Author : DavidLin
*Date : 2014-11-11pm
*Email : linpeng1577@163.com or linpeng1577@gmail.com
*world : the city of SZ, in China
*Ver : 000.000.001
*history : editor...
分类:
系统相关 时间:
2014-11-11 21:08:37
阅读次数:
294
转自什么是MantisMantisBT is a free popular web-based bugtracking system (feature list). It is written in the PHP scripting language and works with MySQL, M...
分类:
其他好文 时间:
2014-11-11 18:06:27
阅读次数:
306
1. realloc失败的时候,返回NULL2. realloc失败的时候,原来的内存不改变,也就是不free或不move,(这个地方很容易出错)3. 假如原来的内存后面还有足够多剩余内存的话,realloc的内存=原来的内存+剩余内存,realloc还是返回原来内存的地址; 假如原来的内存后面没有...
分类:
其他好文 时间:
2014-11-11 16:29:18
阅读次数:
181
Debian #?1.?Add?this?line?to?your?list?of?repositories?by
#????editing?your?/etc/apt/sources.list
deb?http://repository.spotify.com?stable?non-free
#?2.?If?you?want?to?ver...
分类:
系统相关 时间:
2014-11-11 12:55:57
阅读次数:
224
http://blogs.msdn.com/b/mssmallbiz/archive/2012/07/27/10334262.aspxhttp://blogs.msdn.com/b/mssmallbiz/archive/2012/07/30/another-large-collection-of-f...
分类:
数据库 时间:
2014-11-10 15:20:26
阅读次数:
168
malloc/free与new/delete的区别:相同点:都可用于动态内存分配与释放;不同点:1):操作对象有所不同。malloc/free是C/C++语言的标准库函数,new/delete是C++的运算符。由于malloc/free是库函数而不是运算符,不在编译器控制权限之内,所以无法执行构造函...
分类:
其他好文 时间:
2014-11-10 13:28:47
阅读次数:
215