Author Archives: 杰森

About 杰森

瓷器国非著名程序猿

【转】iptables配置文件解析

#头两行是注释说明

# Firewall configuration written by system-config-securitylevel # Manual customization of this file is not recommended.
#使用filter表
*filte[......]

Read more

Posted in 爱写代码 | Tagged | Leave a comment

HTML4和HTML5之间的10个主要不同

HTML5是最新的HTML标准,或迟或早,所有的web程序员都会发现需要使用到这个最新的标准,而且,很多人都会感觉到,重新开发一个HTML5的网站,要比把一个网站从HTML4迁移到HTML5上容易的多,这是因为这两个版本之间有很大不同之处。

事实上,HTML5并没有对HTML4做什么重大的修改[......]

Read more

Posted in 爱写代码 | Tagged | Leave a comment

Node.js静态文件服务器实战

请君移步:http://cnodejs.org/blog/?p=3904

Posted in 爱写代码 | Leave a comment

智慧的提问

啄木鸟社区:智慧的提问
http://wiki.woodpecker.org.cn/moin/AskForHelp

Posted in 爱上网, 爱写代码 | Tagged , | Leave a comment

linux下打包及解包命令汇

.tar
解包:tar xvf FileName.tar
打包:tar cvf FileName.tar DirName
(注:tar是打包,不是压缩!)
———————————————
.gz
解压1:gunzip FileName.gz
解压2:gzip -d FileName.g[......]

Read more

Posted in 爱写代码 | Tagged | Leave a comment

用Keytool和OpenSSL生成和签发证书

用Keytool和OpenSSL生成和签发证书

http://zhouzhk.iteye.com/blog/136943

具体用到的命令:

# [Generate Root Cert]
openssl req -new -x509 -days 9131 -keyout ca.key -[......]

Read more

Posted in 爱写代码 | Tagged , , | Leave a comment

Oracle建表空间和建用户

本文将介绍Oracle创建用户权限的全过程,代码主要也就是为实现Oracle创建用户权限做个演示,希望能对需要的童孩有所帮助。

注意:每条语语分开执行,结尾必须用分号;

创建空间

create tablespace test
datafile 'c:\oracle\oradata[......]

Read more

Posted in 爱写代码 | Tagged | Leave a comment

Git、Gerrit与Jenkins/Hudson CI服务器

Git、Gerrit与Jenkins/Hudson CI服务器

http://www.infoq.com/cn/articles/Gerrit-jenkins-hudson

Posted in 爱写代码 | Tagged , , , | Leave a comment

常用ASCII码表(方便查找)

键盘常用ASCII码

 ESC键 VK_ESCAPE (27)
 回车键: VK_RETURN (13)
 TAB键: VK_TAB (9)
 Pause Break键: VK_PAUSE (19)
 Scroll Lock键: VK_SCROLL (145)
 Caps Lock键:[......]

Read more

Posted in 爱写代码 | Tagged | Leave a comment

用dotCloud做域名转发

在godaddy申请了几个域,用到的也就一个,其它的也不能做域转发所以一直闲着很浪费。故想到用dotCloud做域名转发。

具体做法如下:

1、新建一个目录(jumpme),在目录下建两个文件(dotcloud.yml,index.html)

dotcloud.yml

www:[......]

Read more

Posted in 爱上网, 爱写代码 | Tagged | Leave a comment