1. border-image一个新css3 样式给边框增加图片,还可以拉升 或重复图片round 为重复 sketch 为拉升border: 15px solid transparent; -webkit-border-image: url(../img/notice-bg.png)30 3...
分类:
Web程序 时间:
2015-05-07 23:27:59
阅读次数:
155
Nginx配置参数中文说明。#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]err...
分类:
其他好文 时间:
2015-05-05 18:32:28
阅读次数:
149
1 #user nobody; 2 worker_processes 1; 3 4 #error_log logs/error.log; 5 #error_log logs/error.log notice; 6 #error_log logs/error.log in...
分类:
其他好文 时间:
2015-04-30 00:58:06
阅读次数:
188
In Keil C, it is necessary to implement char putchar(char c), or the powerful function printf would not work.
We should notice in here : new line command for serial output be "\r\n" (line feed:LF,...
分类:
其他好文 时间:
2015-04-29 07:18:43
阅读次数:
128
配置nginx.conf文件
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worke...
分类:
其他好文 时间:
2015-04-26 09:33:28
阅读次数:
225
参考Sun公司的Java编码规范,半翻译半理解。
使用空行分割代码块,并给代码块添加注释;一个文件一个类(或者接口),将私有类放在引用该类的公用类的后面;源文件构成:文件注释、package/import、类或接口的声明;
/*
* Class name
* Version info
* Copyright notice
* Program de...
分类:
编程语言 时间:
2015-04-22 20:48:32
阅读次数:
198
Nginx配置参数中文说明。#定义Nginx运行的用户和用户组user www www;#nginx进程数,建议设置为等于CPU总核心数。worker_processes 8;#全局错误日志定义类型,[ debug | info | notice | warn | error | crit ]err...
分类:
其他好文 时间:
2015-04-22 20:07:21
阅读次数:
165
前一段做的一个PHP程序在服务器运行正常,被别人拿到本机测试的时候总是出现“Notice: Undefined index:”这样的警告,这只是一个因为PHP版本不同而产生的警告(NOTICE或者WARNING),而非错误(ERROR)。PHP中的变量在不声明的情况下使用的时候,PHP4运行正常,但...
分类:
Web程序 时间:
2015-04-22 17:51:57
阅读次数:
144
Domain-Specific LanguagesMichael HungerWHENEVER YOU LiSTEN TO A DiSCUSSiON BY ExPERTS in any domain, be it chess players, kindergarten teachers, or insurance agents, you’ll notice that their vocabulary...
分类:
其他好文 时间:
2015-04-20 09:29:41
阅读次数:
120
vim/usr/local/nginx/conf/nginx.conf#usernobody; #程序运行使用账户worker_processes1; #启动的进程,通常设置成和cpu的数量相等#全局错误日志级PID文件#error_loglogs/error.log;#error_loglogs/error.lognotice;#error_loglogs/error.loginfo;#pidlogs/nginx.pid;events..
分类:
其他好文 时间:
2015-04-17 11:51:37
阅读次数:
107