原库首页http://andyshora.com/angular-image-cropper.html根据项目的需求,要在Web上面裁剪图片,找到了这个可以用的AngularJs的库,涉及到了一些没有用到的知识。在这里做一下总结。1. JSHint原码里面有一些JSHint的warning, 要注意...
分类:
其他好文 时间:
2014-12-22 12:40:33
阅读次数:
225
试用Nginx + PHP FastCGI 做WEB服务器,运行了几个月的时间,烦恼的是经常碰到Nginx 502 Bad Gateway 这个问题。参考了很多修改办法,这个502的问题一直存在,今天打算重装PHP FastCGI到PHP的安装目录里一看,发现PHP的日志文件已经有几十M的大小,打开...
分类:
其他好文 时间:
2014-12-20 15:30:38
阅读次数:
312
ProblemAfter running jmeter.bat command under Windows 7 withcmd the following error is produced:WARNING: Could not open/create prefs root node Softwar...
分类:
其他好文 时间:
2014-12-20 12:51:30
阅读次数:
196
[root@localhost yum.repos.d]# rpm -e --nodeps mysql
error: package mysql is not installed
[root@localhost yum.repos.d]# rpm -qa |grep mysql
[root@localhost yum.repos.d]# yum install mysql...
分类:
数据库 时间:
2014-12-19 22:06:01
阅读次数:
271
转自:http://www.01happy.com/ssh-unprotected-private-key-file/ 在centos 6.4下使用ssh连接远程主机时,用的是另外一个密钥,需要用-i指明密钥文件,结果提示如下的错误: ssh指定密钥文件提示错误 大概意思就...
分类:
其他好文 时间:
2014-12-19 19:05:28
阅读次数:
169
As indicated by the warning, to turn off the nonstandard behaviors, enable the new explicit_defaults_for_timestamp system variable at server startup. ...
分类:
其他好文 时间:
2014-12-19 17:19:37
阅读次数:
178
Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in future releases, together with the option innodb_use_sys_m...
分类:
数据库 时间:
2014-12-19 17:19:13
阅读次数:
4284
datatables是个很不错的表格,使用GO时排序问题很麻烦,于是写了个函数 package tools
import (
"github.com/astaxie/beego/context"
"strconv"
)
//datatables的排序
func DT_order(aColumns []string, Inp...
分类:
编程语言 时间:
2014-12-19 12:26:51
阅读次数:
219
使用的tornado版本为4.0+
后台:
PS D:\CodeHouse\tornado\websocket> python .\ws_app.py
WARNING:tornado.access:403 GET /ws (::1) 1.00ms
WARNING:tornado.access:403 GET /ws (::1) 1.00ms
前台:
WebSoc...
分类:
Web程序 时间:
2014-12-18 18:52:03
阅读次数:
717
关于#pragma warning 用法的研究
在使用标准C++进行编程的时候经常会得到很多的警告信息,而这些警告信息都是不必要的提示,
所以我们可以使用#pragma warning(disable:4786)来禁止该类型的警告
在vc中使用ADO的时候也会得到不必要的警告信息,这个时候我们可以通过
#pragma warning(disable:4146)来消除该类型的警告信息...
分类:
其他好文 时间:
2014-12-18 17:05:07
阅读次数:
153