sudo./configure--prefix=../armv7--disable-ffmpeg--disable-ffplay--disable-ffprobe--disable-ffserver--enable-cross-compile--sysroot="/Applications/Xcod...
分类:
其他好文 时间:
2014-07-11 22:12:38
阅读次数:
543
delphi cxgrid 使用方法1.绑定数据方法cxGrid1DBTableView1.DataController.DataSource:=DataSource12.去掉"Drag a column header here to group by that column"方法cxGrid1DB...
分类:
其他好文 时间:
2014-07-11 20:57:05
阅读次数:
209
npm 管理模块npm安装模块默认为 shell 的当前目录。如果要装成全局的,使用 npm install xss -gnpm help install里的描述是:Packages are dropped into the node_modules folder under the prefix....
分类:
其他好文 时间:
2014-07-11 19:11:53
阅读次数:
602
http://www.cnblogs.com/LCCRNblog/p/3833472.html这一篇博客中,实现了获取http请求/响应后的html源码,现在需要获取http请求/响应的头部Header。。通过对WinHttp Api的查看,现给出实现代码。。 1 // WinHttpTest.c....
分类:
编程语言 时间:
2014-07-11 11:40:07
阅读次数:
2940
Output Control 函数可以让你自由控制脚本中数据的输出。它非常地有用,特别是对于:当你想在数据已经输出后,再输出文件头的情况。输出控制函数不对使用 header() 或 setcookie(), 发送的文件头信息产生影响,只对那些类似于 echo() 和 PHP 代码的数据块有作用。我们...
分类:
Web程序 时间:
2014-07-09 17:45:21
阅读次数:
272
apache:方法1: Header set Access-Control-Allow-Origin "*" 方法2:在字体目录下写一个.htaccessHeader set Access-Control-Allow-Origin "*"nginx:location ~*...
分类:
其他好文 时间:
2014-07-09 17:24:19
阅读次数:
231
传统的JS压缩(删除注释,删除多余空格等)提供的压缩率有时还是不尽不意,幸亏现在的浏览器都支持压缩传输(通过设置http header的Content-Encoding=gzip),可以通过服务器的配置(如apache)为你的js提供压缩传输,或是appfuse中使用的GZipFilter使tomc...
分类:
编程语言 时间:
2014-07-09 16:57:50
阅读次数:
197
nginx的安装下载地址:http://nginx.org/download/nginx-1.4.2.tar.gz安装准备:nginx依赖于pcre库,要先安装pcreyuminstallpcrepcre-develcd/usr/local/src/wgethttp://nginx.org/download/nginx-1.4.2.tar.gztarzxvfnginx-1.4.2.tar.gzcdnginx-1.4.2./configure--prefix=/usr/lo..
分类:
其他好文 时间:
2014-07-09 09:04:41
阅读次数:
199
thinkphp 清除 X-Powered-By: ThinkPHP
找到文件,
ThinkPHP/Lib/Think/Core/View.class.php。
搜索到一下代码屏蔽即可。
header('X-Powered-By:ThinkPHP');
PHP清除X-Powered-By: PHP/5.2.4
设置php.ini ,expose_php ...
分类:
Web程序 时间:
2014-07-08 13:22:27
阅读次数:
236
Write a function to find the longest common prefix string amongst an array of strings.
写一个函数找出字符串数组中的最长共现前缀字符串。
思路:共现,即要求数组中的所有元素的前缀中都要出现。所以所得的结果肯定是最短字符串的部分或全部或都不是,总之要以最短字符串为基准与其他字符串比较。
public Str...
分类:
其他好文 时间:
2014-07-08 10:39:49
阅读次数:
203