- 浏览: 21142 次
- 性别:
- 来自: 北京
最新评论
文章列表
PROCESS STATE CODES
Here are the different values that the s, stat and state output specifiers
(header "STAT" or "S") will display to describe the state of a process.
D Uninterruptible sleep (usually IO)
R Running or runnable (on run queue)
S Interruptible sleep (waiting ...
最近一项目,需要将 utf8 编码的数据库转为 utf8 (以前都是gb2312转utf8 )
方法如下:
Step 1:
执行:./mysqldump -uroot -p --default-character-set=utf8 --extended-insert=FALSE DBNAME > DBNAME_GB2312.sql
Step 2:
sed -e '/^--/d' -e '/^\/\*/d' -e '/^$/d' -e 's/utf8_bin/gb2312_bin/' -e 's/utf8/latin1或者gb2312/' DBNAME_GB2312.sql > ...
- 2009-09-14 15:46
- 浏览 1950
- 评论(0)
今天朋友问我字母“a"的ASCII码是十进制数的97,那么"c"是:?那不就是97+2=99么,她问我怎么算的,我说有个ASCII码表,你对照下就行,把表贴上来备用,呵呵。
目前计算机中用得最广泛的字符集及其编码,是由美国国家标准局(ANSI)制定的ASCII码(American Standard Code for Information Interchange,美国标准信息交换码),它已被国际标准化组织(ISO)定为国际标准,称为ISO 646标准。适用于所有拉丁文字字母,ASCII码有7位码和8位码两种形式。
因为1位二进制数可以表示(21=)2种状态:0、1 ...
- 2009-08-14 14:49
- 浏览 1915
- 评论(0)
= RubyCodingConvention
(DRAFT VERSION: 2001/11/01)
== File Names
=== Directory and File names and Suffixes
:Ruby source code
file/directory name is lower case class/module name with
suffix '.rb'.
ex.
Foo class => foo.rb
Bar module => bar.rb
FooBar class => foobar.rb (Norma ...
- 2009-04-23 12:11
- 浏览 858
- 评论(0)
VI快捷键操作指令集(供参考)
光标控制命令
命令 光标移动
h或^h 向左移一个字符
j或^j或^n 向下移一行
k或^p 向上移一行
l或空格 向右移一个字符
G 移到文件的最后一行
nG 移到文件的第n行
w 移到下一个字的开头
W 移到下一个字的开头,忽略标点符号
b 移到前一个字的开头
B 移到前一个字的开头,忽略标点符号
L 移到屏幕的最后一行
M 移到屏幕的中间一行
H 移到屏幕的第一行
e 移到下一个字的结尾
E 移到下一个字的结尾,忽略标点符号
( 移到句子的开头
) 移到句子的结尾
{ 移到段落的开头
} 移到下一个段落的开头
0或| 移到当前行的第一列
n| 移到当前行的 ...
- 2008-08-04 16:58
- 浏览 846
- 评论(0)
1.If you want to create a text attribute column in mysql use in ruby:
Don't write :default => "", As some version of mysql will get error
Right way is: t.text :content, :null => false, #but not :default => ""
2.The better don't use type column name.
Because if you hav ...
- 2008-07-09 18:16
- 浏览 568
- 评论(0)