在 linux 計算時間, 通常的作法都是先把時間轉換成 epoch aka unix timestamp(從1970年1月1日0時0分0秒到目前時間的秒數), 再來做計算, 下方為 epoch 的轉換方式.### Convert from human readable date to epoch
ref: this.
date +%s -d "Jan 1, 1980 00:00:01"
### Convert from epoch to human readable date
date -d @1190000000
[+/-] |
epoch(unix timestamp) convert in linux |
[+/-] |
7zip in ubuntu 9.04 |
在 ubuntu 9.04 裡要使用 7zip, 需要額外安裝套件, 參考以下步驟安裝.sudo apt-get install p7zip-full
ref: this.
[+/-] |
firefox greasemonkey script list
poster:
MarlboroMoo on
21:02
tag:
firefox,
firefox extension
/
Comments: (0)
|
目前使用的 Greasemonkey 的 script list, 做個備忘.
google:
GoogleMonkeyRGoogle Fx- Google Date Keeper
- Colorful Search
- Multi-Column View of Google Search Results
- Google Language Code Changer
- Google Pirate v2
Clean Google Reader(instead by Better GReader)Power Google Reader(instead by Better GReader)Google Reader - Colorful List View(instead by Better GReader)Favicons for Google Reader(instead by Better GReader)Google Reader Preview Enhanced(instead by Better GReader)
[+/-] |
language support in ubuntu |
按照以下步驟新增語系支援.
- 編輯 /var/lib/locales/supported.d/local 設定檔
sudo vi /var/lib/locales/supported.d/local
將欲支援的語系加入檔案中, 以下以簡體中文為例.zh_CN.GBK GBK
zh_CN.GB2312 GB2312 - 執行以下指令來強制生效.
sudo dpkg-reconfigure --force locales
[+/-] |
language support in centos |
於 centos(rhel) 安裝過程中沒有於 "新增語系支援" 的步驟中選擇某一語系, 而之後想要使用時, 按照以下步驟設定:
- 檢查系統有無支援該語系, 如有支援參考下一步做修改.
locale -a
- 修改 /etc/sysconfig/i18n 的設定, 以下內容為簡繁中文並存, 將預設語系設定為繁體中文.
LANG="zh_TW.UTF-8" SUPPORTED="zh_TW.UTF-8:zh_TW:zh: zh_CN.utf8:zh_CN: zh:en_US.UTF-8:en_US:en" SYSFONT="latarcyrheb-sun16"
[+/-] |
convert unicode chartset to utf8 in CLI
poster:
MarlboroMoo on
15:00
tag:
bash,
command-line,
plurk
/
Comments: (0)
|
[+/-] |
facebook & facebook & facebook
poster:
MarlboroMoo on
22:42
tag:
facebook,
social network
/
Comments: (0)
|
[+/-] |
vim hang with huge line |
使用 vim 編輯減肥過的 xml(or java script .. etc), 就是那種原本幾百行濃縮成一行的檔案, vim 總是不聽使喚的慢, 這一切只需要一個 option 就可以拯救我們, 請在 vim 裡面做如下的設定.
:syntax off
wire ..