A brief overview of the Solaris 10 nvpair library
Solaris 10 code often uses a data structure called nvpairs (or nvlists),including all throughout the ZFS code, even in the kernel. There doesn'tseem to be a good overview of the libnvpair library, and since I've justspent the past couple of weeks up to my elbows in the OpenSolaris ZFScodebase it seems like a good time to write down what I've learned aboutnvlists and nvpairs before I forget it.
The basic overview is that an nvlist is a list, possibly nested
我影故我在 2之2
俄羅斯之旅後記
頭風時期的貼文
《明日風尚》七月號有個「台北文學地圖」特輯,是個很不錯的「文學旅遊」示範。千言萬語說不盡,64頁的特輯不夠,還有附刊《與作家同游》。輯中訪問了朱氏姊妹、駱以軍等著名作家,列舉歷來台北文人
Lady First 專欄(60)- 原來已一年
喺呢個明明只應該談情說愛嘅晚上,我想講嘅,係對你嘅恨意。
係,我好憎你。
雖然你可能從來冇在意過我,雖然你對我嘅影響唔係一生一世,但我依然恨你。
一個靚嘅女仔,總係惹人注目,而佢身體嘅其他人,就會即時
《EVA 2.0 破》12月3日在港上映

本來引頸以待九月可以看到《EVA 2.0 破》,但因為日本大收旺場而延後海外發行至十月。正當香港這邊靜悄悄地等待,台灣那邊已經訂好上映日子,還說是取得首個海外播映,宣傳攻勢不斷,香港朋友只有乾急。今天我們有消
上身
唱歌比賽一首 《Endless Love》 使官恩娜在網上谷底反彈,有人將之比於 Susan Boyle,其實也不為過,大家都有同樣特質:都是看似不會唱歌 (雖然「看似」背後原因不一),但卻一鳴驚人。懷才不遇滄海遺珠,最叫人同情。
日前重溫片段,沒
學習
在今次這場選舉中,我們看到一些現象,我們對這件事存有過希望,我們感受過在選戰過程中澳門人的表現和態度。
選舉結束之後,我在 facebook這樣寫:「現在,我們清楚看到自己跟一些什麼人同
Some trivia about Python frame objects
Since I've been poking around in this area of CPython lately, here's some triviaassociated with frame objects.
First, one might wonder if code executing at the module level literallyhas a CPython frame struct with f_locals being the same as f_globals , or if the C code just leaves f_locals null and fixesthings up behind the scenes when you look from Python code. Theanswer turns out to be that CPython frame structures always havea real f_locals (Python) dictionary