SSL certificates require proper domain names
Here's one of those little petty irritations with SSL: if you wantto get a SSL certificate out of a CA without at least a lot of slowdiscussion, the hostname needs to be in one of your official domains.(It wouldn't surprise me if there were CAs that required the name toexist in your public DNS.)
This may be a local peculiarity, but we prefer to put machines that areon private networks into a set of local private domain names under atop level domain that
在這一刻
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)- 原來已一年
喺呢個明明只應該談情說愛嘅晚上,我想講嘅,係對你嘅恨意。
係,我好憎你。
雖然你可能從來冇在意過我,雖然你對我嘅影響唔係一生一世,但我依然恨你。
一個靚嘅女仔,總係惹人注目,而佢身體嘅其他人,就會即時
學習
在今次這場選舉中,我們看到一些現象,我們對這件事存有過希望,我們感受過在選戰過程中澳門人的表現和態度。
選舉結束之後,我在 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