Saturday, May 22, 2010

Firefox 全螢幕下顯示 Tabs

在 about:config 裏設定:
browser.fullscreen.autohide False
browser.fullscreen.animateUp 0
即可

Thursday, May 20, 2010

"tons of typos in the comments"

http://x264dev.multimedia.cx/?p=377

"The code quality is much better than VP3, though there's still tons of
typos in the comments."

公司規定 source code 中的註解只能使用英文,
如果不要出現 ASCII 值大於 127 的就叫英文的話,那 "tons of typos" 不知道該
算什麼?

Friday, May 14, 2010

[VMware] 讓 Ctrl-Alt-Ins 變成關機,而不是重開機

找到 /etc/rc6.d/S90reboot,編輯裡面的內容,原來為:

log_action_msg "Will now restart"
reboot -d -f -i

改為:

log_action_msg "Will now shut down"
poweroff -v

[VMware] 在登入畫面顯示 IP

在 /etc/network/if-up.d/ 目錄中加一個檔案 issue,內容如下:

#!/bin/sh

if [ "$METHOD" = loopback ]; then
exit 0
fi

# Only run from ifup
if [ "$MODE" != start ]; then
exit 0
fi

cp /etc/issue.ip /etc/issue
/sbin/ifconfig | grep "inet addr" | grep -v "127.0.0.1" | awk '{ print $2 }' | awk -F: '{ print $2 }' >> /etc/issue
echo "" >> /etc/issue

編輯完後,記得要 chmod +x issue。

把 /etc/ 中原來的 issue 複製一份為 issue.ip 好讓我們的 script 有原始的
issue 來源。

下次重開機,就會出現虛擬機的 IP address 在 login 畫面了。

Thursday, May 06, 2010

頭文字大寫的使用

在這兩個地方找到頭文字大寫,其他小寫的使用規則:
http://henshaw.me/704/rules-for-capitalization-in-a-title
http://aitech.ac.jp/~ckelly/midi/help/caps.html

一般是給文章的標題使用,大概因為歌名也算是歌詞的標題,所以一體適用吧。