January 30, 2007

Windows Live Messenger 8.1 Final

Windows Live Messenger Build 8.1.0178
繁體中文版 English Version
Pure Patch MSNPP
這個版本在使用中文輸入法(倉頡、注音等傳統輸入法)時還是有字根無法顯示的問題, 繼續用 8.0.0812.
2007-02-02 Update: Pure WLM 8.1.0178 繁體中文版 English Version
MSNPP Build 8.1.0178 fix polygamy failed in 8.1.0178

Posted by pank at 10:10 AM | Comments (7)

January 24, 2007

BASH socket IO

BASH 可以藉由存取
/dev/tcp/host/port
/dev/udp/host/port
來作簡單的 socket IO
看實例:
bashget.sh 使用 /dev/tcp/host/80 抓 http:// 檔案, 類似 wget 簡易版
bashmail.sh 使用 /dev/tcp/host/25 發 mail
ref.
Unixjunkie Blog: Two Cool Bash Tricks
Bash tricks | bhaskarvk.info

Posted by pank at 05:35 PM | Comments (0)

January 10, 2007

Batch create users

useradd -p`echo 1234 | openssl passwd -stdin` test
(create user test with password 1111 using default crypt algorithm)
useradd -p`echo 1234 | openssl passwd -1 -stdin` test
(create user test with password 1111 using MD5 algorithm)

Posted by pank at 10:16 AM | Comments (0)

January 08, 2007

Blogger starting support custom domain name

How do I use a custom domain name on my blog?
選擇自己架 Blog 的原因不外乎

  • 客製化
  • 要使用自己的 domain name
    現在 Blogger 已可以使用自己的 domain name, 此舉將吸引一些使用自己 domain name 的 Blogger.
    可以考慮搬家到 Blogger 了.

    ref. Blogger已允許用户自行綁定域名

    2007-01-24 Update: 設定還真簡單, 設定>發佈>自訂網域
    然後把 domain IN CNAME ghs.google.com. 就可以了.
    http://blog.pank.org
    不過目前 Blogger 還沒有提供匯入文章的功能(已知問題), 等有這個功能再來轉吧.

    Posted by pank at 09:06 AM | Comments (0)