- 浏览: 34630 次
- 性别:
- 来自: 深圳
最新评论
文章列表
从vim.wikia.com上取下来的Tip 精选。该网站居然也被墙了。
http://vim.wikia.com/wiki/Vim_Tips_Wiki:Featured_Tip
该网站每月会推选一个Tip,称为该月的Featured Tip,这里取下来的包含所有Featured Tip (2008年2月到今年7月).
采用Firefox的Scrapbook plus扩展取下来的, 这里原样提供,有这个扩展的可以在scrapbook中打开这个目录查看,没有这个的也可以打开tree/frame.html 查看
Usage: tcshell2 /path/to/filename
ULinkProcess.pas
procedure TryToLocateFileInTC(fullpath: string);
var
htcmd: HWND; //the HWND of Total Commander
pbuf: PChar;
function FindFileListBox(var idx: Integer): HWND;
var
title: array[0..1024] of char;
hlist: HWND;
...
Thunderbird的发展真是够慢的,去年12月就出了3.0 beta1了,现在才出3.0rc1。这一年间每次新的beta版本出来我多试用,一方面是似乎没觉得有多少吸引人的新功能(未认真发掘?),另一方面是因为lightning
等关键扩展不可用的关系,一直没有正式换用v3版本。
这次3.0rc1出来,加上lightning之后试用,觉得基本上可以了,于是正式切换。
但有一个说小不小说大不大的问题让我不爽: 不能删除重复邮件了。旧的Remove Duplicate Messages扩展在v3上用不起来,新的R-D-M Alternative也完全不能工作(AMO上的评价又都还说不错,奇怪 ...
dta/manager.js
--- manager.js.orig 2009-10-27 18:16:52.000000000 +0800
+++ manager.js 2009-11-19 15:47:08.000000000 +0800
@@ -1408,6 +1408,13 @@ QueueItem.prototype = {
}
else {
this.tmpFile.clone().moveTo(destination, this.destinationName);
+ //{{{ write descript.ion
...
创建数据库时需要指定缺省字符集
create database rollerdb default charset utf8 collate utf8_general_ci;
在roller-custom.properties中需要将
database.jdbc.connectionURL=jdbc:mysql://localhost:3306/rollerdb
改为
database.jdbc.connectionURL=jdbc:mysql://localhost:3306/rollerdb?autoReconnect=true&useUnic ...
- 2009-09-01 15:54
- 浏览 3143
- 评论(1)
//way 1 //it works
var frame1 = document.createElement("IFRAME");
frame1.id = "frame1";
frame1.frameBorder = 0;
frame1.src = "reports/empty-report.html";
frame1.height = "100%";
frame1.width = "10 ...
- 2009-08-31 09:48
- 浏览 16488
- 评论(0)
# normalize filename of file downloaded by DownThemAll
# convert 'extjs%E7%94%B5%E5%AD%90%E6%95%99%E7%A8%8B' to 'extjs电子教程'
# only tested on Windows XP
from glob import glob
import urllib2
import os
for fn in glob('*%*'):
newfn = urllib2.unquote(fn).decode('utf-8')
print "%s ...
- 2009-08-11 11:16
- 浏览 2507
- 评论(0)