星期六, 一月 26, 2008
星期五, 一月 25, 2008
星期三, 一月 23, 2008
rxvt ctrl+s & ctrl+q
You can press ctrl-q afterwards if you've pressed ctrl-s to stop the output.
You can also try 'stty -ixon', this may disable the flow control on linux.
星期二, 一月 22, 2008
dokuwiki change default form doku.php to index.php
inc/init.php: if(!defined('DOKU_SCRIPT')) define('DOKU_SCRIPT','doku.php');
to
inc/init.php: if(!defined('DOKU_SCRIPT')) define('DOKU_SCRIPT','index.php');
星期日, 一月 20, 2008
星期五, 一月 18, 2008
python code convert
常见的编码转换分为以下几种情况:
- unicode->其它编码
例如:a为unicode编码 要转为gb2312。a.encode('gb2312') - 其它编码->unicode
例如:a为gb2312编码,要转为unicode. unicode(a, 'gb2312')或a.decode('gb2312') - 编码1 -> 编码2
可以先转为unicode再转为编码2
如gb2312转big5
unicode(a, 'gb2312').encode('big5') - 判断字符串的编码
isinstance(s, str) 用来判断是否为一般字符串
isinstance(s, unicode) 用来判断是否为unicode - 如果一个字符串已经是unicode了,再执行unicode转换有时会出错(并不都出错)
可以写一个通用的转成unicode函数:
def u(s, encoding):
if isinstance(s, unicode):
return s
else:
return unicode(s, encoding)
那么unicode与utf-8,utf-16有什么区别呢。我认为unicode可以称为抽象编码,也就是它只是一种内部表示,一般不能直接保存。保存到磁盘上时,需要把它转换为对应的编码,如utf-8和utf-16。
除上以上的编码方法,在读写文件时还可以使用codecs的open方法在读写时进行转换。
星期一, 一月 14, 2008
Crontab - Quick reference
Crontab - Quick referenceSetting up cronjobs in Unix and Solaris
|
keywords tool, keyword analysis
AdWords关键词工具:查询特定关键词的常见查询及扩展匹配
https://adwords.google.com/select/KeywordSandbox
百度关键词工具:特定关键词的常见查询、扩展匹配及查询热度
请不要盗链, 内容来自www.chinahtml.com ,打造中国站长技术乐园http://www2.baidu.com/inquire/dsquery.php
搜狐关键词工具:关键词搜索热度
http://db.sohu.com/regurl/pv_price/query_consumer.asp
网易关键词工具:关键词搜索热度
http://adpsearch.163.com/find_price.php
Overture 关键词使用频率工具(英文):特定关键词的常见查询及被查询次数
http://inventory.overture.com/d/searchinventory/suggestion
关键词密度检查(英文): 频繁出现的关键词及其密度
www.seotoolkit.co.uk/keyword_density_analyser.asp
星期四, 一月 03, 2008
What is your best Adsense tip?
- Less internal and external links on the page
- Having the ads with the same background color as the page background
- Having ad links color blue (the default color of hyperlinks in html)
- Having one leaderboard 728 x 90 text ad at the top and one at the bottom of the page
- Having one 300x250 text ad at the middle of the page somewhere among texts
- Well optimized pages with a good title, description, h1 headline and ... .
- Good and fresh content.
Can you add more tips?