關於我自己

我的相片
New York, New York, United States
我叫江奕賢啦

2004年4月27日

DVD authoring tools (sorry I use Chinese)

我手上用的是Sonic MyDVD和Adobe Premiere Pro
另外兩個 也蠻有名的 給你參考
這幾套其實都不需要經過NERO 都可以直接燒進DVD

Sonic MyDVD
我的DVD附的是這一套 蠻方便的 功能也不錯 隨便做做看起來都蠻炫的
如果不需要編輯 通常我會用這套

Adobe Premiere Pro
這...你應該跟我一樣還蠻習慣adobe的東西吧 :p
這套專門剪接用的 剪接完 可以直接燒錄成DVD
不過 對檔案格式的支援比較遜一點 可先用TMPGEnc(不是上面的DVD Author, 名字只叫TMPGEnc)轉
除非需要複雜的編輯工作 要不然我不太想找罪受
用這套可能事前的轉檔工作就快要我的命了

TMPGEnc DVD Author
這是轉檔界最有名的啦 支援格式最多 轉檔效率最好
現在他出了DVD燒路軟體
轉出來的DVD檔案最小 而且 還可以直接編輯vob檔 別的好像都沒有支援 得先轉回avi or mpg之類的 才能編輯

DVD威力製片
這是國內比較有名的吧 我是沒用過 不過 應該比較大眾化 比較好操作吧

2004年4月22日

Pentium 4's temperature

P4 chips come with a clever step down facility which allows the CPU to slow down when it gets hot. The CPU will run slower the hotter it gets. The theory is that the CPU will never burn out even without a heatsink/fan. It will just run run at an unbelievably slow pace. ref

I test mine by using MBM5, idle 44c full 57c.

(Full: run Hot CPU Tester Pro 4 Lite)

for helen's pc

pc keep rebooting might because this:
http://www.sssun.idv.tw/abit/

software to test pc (burn in test)
http://www.upgradeware.com/tw/support/tools.htm
http://www.7byte.com/index.php?page=download

http://www.benchmarkhq.ru/english.html?/be_cpu.html
http://www.softking.com.tw/soft/review_eng.asp?fid2=113

http://www.1bits.com/doc/200207/review63.shtml

reverse engineering debugger
trw, trw2000 (from China) and others
softice (pretty old and famous, "famous" is not good in this area)
IDA the screen shot is very interesting.

in declarative language (like:prolog)
you can give it some rules, and it can calculate results based on these rules.
ex:
give it
0! = 1
n! = n * (n-1)!
asking
4!, it will give you 4!=4*3!=4*3*2!...=result.

give it
A=>B
B=>C
then it'll tell you A=>C

tutorial in chinese
Prolog
how it works

2004年4月15日

dataset for gene prediction
http://www.fruitfly.org/seq_tools/datasets/Human/

if you already have a motif, and you want some sequences for that motif,
you can use this
http://alces.med.umn.edu/dbmotif.html

if you want to search the motif in some sequences in your hand, use this:
http://alces.med.umn.edu/webmotif.html

Japanese to Chinese translation
This one was pretty good
http://www.ccsee.com/trans/tw/default.asp
but now it doesn't work due to disk full.

alt: this one
http://www.excite.co.jp/world/chinese/web/

if that one doesn't work either, use this one.
http://babelfish.altavista.com/

2004年4月7日

when posting source code, which might conflict with html code,
you can use this tool to encode it first.

this script will get marshall's addresses in NJ, and can be easily import to Street and Trips .NET.

$ans=`wget -O- "http://www.marshallsonline.com/search_results_state.aspx?state=nj" | grep "3a56a5"`;
@ans2=split(/<td/,$ans);
foreach $ans2(@ans2){
if ($ans2=~/left/){
($f1,$f2,$f3,$f4,$f5)=split(/<br>/,$ans2);
$f1=~s/^.*<.*>//g;
if ($f4=~/Phone/){
$f3=~s/,/\t/g;
$f3=~s/([\w]) ([\d])/$1\t$2/;
printf("$f2\t$f3\n");
}else{
$f2=~s/,/\t/g;
$f2=~s/([\w]) ([\d])/$1\t$2/;
printf("$f1\t$f2\n");
}
}
}

2004年4月6日

google search via web services
my license key is in ysc212@cs.nyu.edu mailbox
wsdl
tutorial and source code using aspx
but I still need UTF-8 encoding example.