mi ming mart亮相《壹週刊》壹盤生意訪問
Mi Ming Mart ( www.mimingmart.com )
記者初次見袁彌明,她笑容可掬,比平時在電視上見到「串串貢」的樣子不一樣,但不足兩分鐘她已變臉。租用其鋪部分位置開化 妝班的拍檔 Kenneth,隨意用了其電腦查閱電郵,她即時

請勿抄襲
ctm時事討論區有網民把本人文章以"看討論區有感而發"為題
連結如下:
https://forum.cyberctm.com/forum/viewthread.php?tid=395591&extra=page%3D1
網民的討論中已有人說可能是原作者自己貼上
瘦虎肥龍爭霸戰‧二
Python modules should not reinvent OSError
In light of yesterday's entry , here is one of my newrules for Python modules, especially extension modules written in C:
If you're going to raise an exception because a system call failed,don't make up a new exception for it. Raise either
IOErrororOSErrorthemselves.
Every deviation from this causes annoyancesfor Python programmers. This is especially visible in the situationwith signals and EINTR , where I really do not want tobe rewriting the same code over and over again with different exception
工作營第一日
昨晚我真的完全睡不着,眼光光望天光,整晚想着旅程才剛開始就發
Link: Using colour well in data visualization
Why Should Engineers and Scientists Be Worried About Color? is abouthow straightforward use of colour in data visualizations can mislead youand hide information (and how to do better). Some of their examplesare eye-opening and alarming.
(Via Hacker News .)
(Since I took up photography I've had a muchincreased interest in how we perceive things, including colour.)
Python, signal handlers, and EINTR
One of the interesting effects of setting a signal handler inyour Python program is, well, let me quote the signal module :
- When a signal arrives during an I/O operation, it is possiblethat the I/O operation raises an exception after the signal handlerreturns. This is dependent on the underlying Unix system's semanticsregarding interrupted system calls.
By 'an I/O operation' the manual means more than you might think; forexample, select.select() is affected by this.