6/11/2009

perl: read and write data

read data from file:

open(open_file,"test.txt") or "open file error";
while()
{
chomp;
print "$_\n";
}
close(open_file);

write data to file:

open(write_file,"test.txt") or "open file error";
my $data = "the data I want to write";
print write_file "$data";
close(write_file);

6/08/2009

xss test

6/04/2009

how to connect to android phone

今天本來想要想要讓openmoko手機可以透過連接usb上網, 結果發現想要ssh openmoko phone的時候, 顯示connection refused, 目前解決方法是改用 ./adb shell去連到手機

6/03/2009

安裝android程式 to mobile phone

adb install application.apk