The Muppets: Bohemian Rhapsody (YouTube Video)
Extremely funny, and includes pretty much every muppet character ever invented! Heck, even the Mahna Mahna muppets are present! Favorited, and five-starred.
The Boat That Rocked
看他的電影總是開開心心而又不覺得低俗無聊,那感覺真的很好。
The Boat That Rocked的內容,講音樂,談人生,有父子情,有純真戀情,有爆笑場面,有粗俗橋段,還要有成長故事,非常豐富多姿
Some notes for myself on git bisect
I know I'm late to the party on this one, but I just used gitbisect for the first time today in order to hunt down where akernel bug started showing up. Since there are more kernel bugs in my future, here are some things that I want toremember about the process and other random comments.
(I'll probably have more later when I do it again.)
First, I have to say that the whole process really is both cool andaddictive, and it works.
向誰學戲
心臟病自救
獨處時,心臟病發作急救術。 (許多人心臟病發作時,四周沒有旁人,因此,學會能自己給自己做簡單的心肺複甦術是非常重要的。)
一個
沉重的OS

OS 這兩個字很沉重,她管理著電腦上各種大大小小的功能,要與硬件溝通,又要作其他軟件的平台。實際上 OS 也看似很沉重,動輒弄個安裝要幾個小時,開個機也要幾分鐘。一個人要換 OS,絕對不是說說就算,除了安裝技術上的
Why I love Unix, number N (for some N)
Suppose that you want to find all two and three digit primes where allof the component digits are also prime (eg, 37 would qualify but 41would not, since 4 is not prime).
Here is the simple Unix approach:
factor $(seq 10 999) | awk 'NF == 2 {print $2}' | egrep '^[12357]*$'
(I won't claim that this is obvious until you're immersed