- 浏览: 38165 次
- 性别:
- 来自: 南昌
最新评论
文章列表
count关键字
执行sql语名: select count(列名) from 表 ; 只累积列值不是null的行。
windos中emacs的HOME设置
- 博客分类:
- emacs
方法一
C:/Documents and Settings/用户名/Application Data/.emacs
内容:(load-file "D:/Program Files/.emacs")
D:/Program Files/.emacs内容:
(setenv "HOME" "E:/water")
(setenv "PATH" "E:/water")
;;set the default file path
(setq default-directory "~/")
( ...
css
http://www.oschina.net/news/26927/css-layouts-40-tutorials-tips-demos-and-best-practices
http://www.oschina.net/news/27108/10-parallax-scrolling-effects-tutorial
http://www.oschina.net/news/27102/free-ui-kits
http://www.oschina.net/news/27080/20-responsive-jquery-plugin
http://www.oschina.net/new ...
http://www.oschina.net/question/12_44528?sort=default&p=1#answers
nginx_error
- 博客分类:
- Nignx
nginx的配置文件中没有使用负载和fastcgi时,error_page是正常
使用了fastcgi和proxy_pass 功能时,error_page功能不生效!在配置文件中加一句:fastcgi_intercept_errors on,error_page功能生效!
fastcgi_intercept_errors文档描述:This directive determines whether or not to transfer 4xx and 5xx errors back to the client or to allow Nginx to answer with directive ...
CSS 拼合生成器
http://cn.spritegen.website-performance.org/
CentOS5.5进入单人维护模式
- 博客分类:
- linux
1.开电源,按任意键
2.按e键,进入grub
3.选择 kernel,按e键,输入single 回车
4.按b键,进入单人维护模式
LINUX获取前一天日期的方法(转)
- 博客分类:
- linux
http://ceoli.blog.hexun.com/28085191_d.html
获取前一天日期的方法 ..
写SHELL时,有时候很有用的..
linux下
前一天的日期
date -d"1 day ago" +"%y%m%d"
前一个月的日期
date -d"1 month ago" +"%y%m%d"
类似的还有
date -d"-1 day ago 1 month ago" +"%y%m%d"
date -d"1 day ago -1 year ...
mono2.10.8版本问题:
Stack overflow exception after calling a DataTable.Select method (tens of thousands of times)
解决方案:
请参考https://bugzilla.xamarin.com/show_bug.cgi?id=3004
suse修改系统时间
- 博客分类:
- linux
问题:修改suse系统日期
操作:
date -s "2012/2/21 22:20:00" <-与centOS一样
hwclock --systohc <-centOS: clock -w
过去发生502,nginx等待时间太长或mono线程数不够!今天发现更一个引发502的因素,一个端口绑定两条线程也引出502错误!
问题:
Too many levels of symbolic links
解决方法
ln -s 绝对径路/source 绝对径路/连接名
安装nginx发生的异常之未使用变量
- 博客分类:
- Nignx
问题:
src/core/ngx_resolver.c: In function 鈥榥gx_resolver_process_ptr鈥[0m
src/core/ngx_resolver.c:1425:43: error: variable 鈥榪class鈥set but not used [-Werror=unused-but-set-variable]
src/core/ngx_resolver.c:1425:36: error: variable 鈥榪type鈥set but not used [-Werror=unused-but-set-variable]
cc1: al ...
问题:
checking for MONO_MODULE... configure: error: Package requirements (mono >= 2.10.0) were not met:
No package 'mono' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables ...
针对MyISAM表类型采用 OPTIMIZE TABLE table_name SQL语句清理碎片.
InnoDB 使用的 Clustered Index,索引和数据绑定在一起,重排序是不现实的.所以不支持 MyISAM 式的 OPTIMIZE,而是绑定到了ALTER TABLE 命令上面.可以通过执行以下语句来整理碎片,提高 ...