人生音像城
告白
中島哲也的《告白》很具爭議性。
如果深作欣二的《大逃殺》是對日本年青一代失望而作出歇斯底里式報復,《告白》則是冷眼旁觀的剖析。
電影觸及很多社會問題,包括夫妻
In an earlier entry I discussed my view on whyUnix vendors never got together and created a standard GUI, the way theycreated POSIX. It's my view that the Unix world had basically one chanceto create a standard GUI but fumbled it through (vendor) greed, althoughsadly understandable vendor greed.
Let's start with a question: why does Unix have a standard graphicalenvironment? Because it does; for at least two decades now, X Windowshas been the ubiquitous Unix way to do graphics (
剛看了 David Fincher 的《社交網絡》( The Social Network ),一部關於 facebook 創辦人Mark Zuckerberg的故事
還沒開始寫,只在facebook寫了一些零碎感受。
不如 add 咗我先啦 ! 我在fb的名字: Ellis Yip , profic pic 是一隻長江七號 ! 騎白馬的,和貓咪照片的,是另有其人。
(完)
——
In theory, testing a Python codec to see if it's round-tripcapable is pretty simple:
def willtrip(cname): c1 = [chr(x) for x in range(0, 256)] try: uc = [x.decode(cname) for x in c1] c2 = [x.encode(cname) for x in uc] except UnicodeError: return False return c1 == c2
(Since it's been a while,