function log() { var i = 0, str = '', args = [].slice.call(arguments); j++; if (isRepeat(args)) { k++; return; ...
分类:
编程语言 时间:
2014-08-09 02:32:57
阅读次数:
280
Echo网络库概要说明源码分析使用方法概要说明Echo借鉴了大量muduo的代码,并对其进行简化。Echo体现了现代C++两大风格,一是事件回调,我们使用function/bind实现回调机制,用户只需要向其注册回调函数即可,必要时可以封装成class,二是采用智能指针进行资源管理,例如TcpCon...
分类:
其他好文 时间:
2014-08-08 20:47:26
阅读次数:
285
今天在启动PHP时出现下面的错误:servicephp-fpmstart错误:Startingphp-fpm[09-Aug-201400:45:40]ERROR:unabletobindlisteningsocketforaddress‘127.0.0.1:9000‘:Addressalreadyinuse(98)[09-Aug-201400:45:40]ERROR:FPMinitializationfailedfailed解决方法:netstat-lntup|gr..
分类:
其他好文 时间:
2014-08-08 18:25:27
阅读次数:
341
在页面里,jq动态生成dom节点,该节点的click事件无效。如,html里动态添加class名为.del的,js文件中:$('.del').bind('click',fuction(){ alert('sda');})不响应,网上说可以用live代替bind事件,但在jq1.7版本开始,就取消了....
分类:
其他好文 时间:
2014-08-08 17:24:46
阅读次数:
755
结论:热升级时用fun() -> end
可能导致升级失败,
原因:local call在作怪啦
分类:
其他好文 时间:
2014-08-08 15:54:06
阅读次数:
177
call方法:语法:call([thisObj[,arg1[, arg2[, [,.argN]]]]])定义:调用一个对象的一个方法,以另一个对象替换当前对象。说明:call 方法可以用来代替另一个对象调用一个方法。call 方法可将一个函数的对象上下文从初始的上下文改变为由 thisObj 指定的...
分类:
移动开发 时间:
2014-08-08 15:39:26
阅读次数:
216
用rsync同步公网centosyum源做本地yum源服务器1,安装httpd,rsync,vsftpdyum-yinstallhttpdrsyncvsftpdmkdir/var/www/html/centos#由于vsftpd不支持软连接改变目录,所以下面操作效果一样mount--bind/var/www/html/centos/var/ftp/pubchkconfighttpdonchkconfigvsftpdonservi..
分类:
其他好文 时间:
2014-08-08 02:12:35
阅读次数:
355
DNS源代码的编译安装、官方bind下载地址:www.isc.org这里我们编译的是bind-9.9.5.tar.gz版本1、编译环境DesktopPlatformDevelopmentDevelopmenttoolsServerPlatformDevelopment2、展开安装包查看编译命令首先我们应该先看下服务器时间,[root@hong~]#tarxfbind-9.9.5.tar.gz--..
分类:
系统相关 时间:
2014-08-08 02:09:05
阅读次数:
308
在Android4.2的源码Build/prduct_config.mk里面遇到一个遗憾:# Convert a short name like "sooner" into the path to the product
# file defining that product.
#
INTERNAL_PRODUCT := $(call resolve-short-product-name, $(...
分类:
移动开发 时间:
2014-08-07 23:15:05
阅读次数:
340
JS函数调用的四种方法:方法调用模式,函数调用模式,构造器调用模式,apply,call调用模式1.方法调用模式:先定义一个对象,然后在对象的属性中定义方法,通过myobject.property来执行方法,this即指当前的myobject对象。var blogInfo={ blogId:12.....
分类:
Web程序 时间:
2014-08-07 21:43:10
阅读次数:
260