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