2013-04-25
來源: 2013-04-25
reveal.js - The HTML Presentation Framework
http://lab.hakim.se/reveal-js/
2012-01-05
來源: 2012-01-05
Ubuntu 11.10 Unity 鍵盤快速鍵
http://blog.longwin.com.tw/?p=3199
2010-01-14
來源: 2010-01-14
他的 Hello world 就是 mmcache ( mmcache 的作者,他的練習就是 mmcache )
mmcache 的作者也在用 go
2009-12-17
來源: 2009-12-17
Go 語言與 C 語言的小故事
http://golangd.com/viewtopic.php?f=5&t=20
2009-12-10
來源: 2009-12-10
vimdiff
到相對應的行數,然後按 dp ,就會自動 copy 到另一邊; 用 do 另一邊的丟回來; 按 Ctrl+w [left|reght] 可以切換到 [左邊|右邊]
按 gf 可以直接開那個檔名
2009-12-03
來源: 2009-12-03
Google 語言
http://golangd.com/
2009-11-26
來源: 2009-11-26
部落格左中部份多了即時訪客, 可以知道人家從那邊搜尋進來, 並可以觀察此關鍵字排行在搜尋引擎的順位大概在哪
重新整新舊版與新版 debian tip
http://plog.longwin.com.tw/document-ebook/2009/11/27/debian-linux-tip-hint-fortune-2009
2009-11-12
來源: 2009-11-12
http://plog.longwin.com.tw/programming/2009/03/13/gettext-mo-convert-po-php-reader-mo-2009
http://plog.longwin.com.tw/programming/2007/09/16/gettext_php_i18n_2007
多金的英文名字
http://plog.longwin.com.tw/news-life-joke/2005/07/01/money_eng_name
我不是網管,我什麼都不管。
2009-11-05
來源: 2009-11-05
寫了一個配色調色的工具網頁
http://color.sieasy.com/color_liner.php?min=0000ff&max=ff0000&level=5
http://color.sieasy.com/?color=4C6277,6590A6,E6E6C0,FF8D8D,945A5A
Ubuntu One: 存儲、同步及分享你的文件
2009-10-29
來源: 2009-10-29
今天剛升成 9.10
把 $HOME 的東西都丟到桌面上
.config/user-dirs.dirs 下的 XDG_DESKTOP_DIR
改用 ibus
只有新酷音,不過注音沒有弄出來
嘸蝦米可以弄成功 ( 感謝 AceLan )
1. 準備一個 source , 從 scim 拿
2. 使用頻率要從大到小
AceLan 寫了一個程式把 cin 檔轉成 ibus 格式
ibus-table-created -s ZhuYin.cin.bz2 然後會生成 sqlite 檔案
放到 /usr/share/ibus-table/tables/
AceLan 的程式要去那裡拿 ( 直接跟 AceLan 拿 )
2009-10-22
來源: 2009-10-22
很想找出來為什麼 cpu loading 這麼高
oprofile
Ctrl-r 可以搜尋打過的命令列 ( Ctrl-R, 大寫是往回找 )
2009-10-15
來源: 2009-10-15
開機自動掛載模組的方法 (ubuntu 9.04 以 ndiswrapper 為例)
方法 1. # ndiswrapper -mi
方法 2. # echo "ndiswrapper" » /etc/modules
像 cd、echo 這種 builtin 的命令($ type cd), 不能透過 sudo 執行, 所以 $ sudo su - -c "echo 'ndiswrapper' » /etc/modules"
下面這一段可以作一個唯一的 javascript namespace
if (typeof YAHOO == "undefined" || !YAHOO) {
var YAHOO = {};
};
YAHOO.namespace = function() {
var a=arguments, o=null, i, j, d;
for (i=0; i<a.length; i=i+1) {
d=a[i].split(".");
o=YAHOO;
// YAHOO is implied, so it is ignored if it is included
for (j=(d[0] == "YAHOO") ? 1 : 0; j<d.length; j=j+1) {
o[d[j]]=o[d[j]] || {};
o=o[d[j]];
}
}
return o;
};
if (!YAHOO.util) {
YAHOO.namespace('util');
}
do while 的寫法在某些情況下不錯用
1 $ids
2 do {
3 foreach ($ids )
4
5 if ()
6 break;
7 $ids = jfkdjlk
8 } while ($ids >= 0);
9
10 foreach ($ids < 3 ) {
11
12 $ids++;
13 }
14
Snap Links :: Firefox Add-ons 這個會外掛會把這個頁面的連結都打開
MeasureIt :: Firefox Add-ons 頁面上像尺一樣的量距離工具
2009-10-08
來源: 2009-10-08
我比較常用 gnome-commander, 長得像 mc
http://www.nongnu.org/gcmd/
下面這一段,可以自動在關閉存檔時,自動將尾端的空白去掉..
71 function RemoveTrailingWhitespace()
72 if &ft != "diff"
73 let b:curcol = col(".")
74 let b:curline = line(".")
75 silent! %s/\s\+$//
76 silent! %s/\(\s*\n\)\+\%$//
77 call cursor(b:curline, b:curcol)
78 endif
79 endfunction
80 autocmd BufWritePre * call RemoveTrailingWhitespace()
自動重啟
http://plog.longwin.com.tw/my_note-unix/2009/03/03/linux-freebsd-lockf-install-2009