現代人的悲哀
呀,慘呀,家中的抽氣扇壞了。 星期一至星期六我又要上班 星期日師傅又放假沒人來修理。
區區一件小事弄得像牛郎織女般浪漫 真的一年都未必得碰見個機會, 他上班時我在家。
天外之音:「你現在總算明白什麼要家有一老如有
NIKON D700 全片幅購入
D700的利害就不用多說了,全片幅加上高ISO的功能,配上一個防震鏡頭,可謂例不虛發。
但手上沒什麼全片幅的鏡頭,所以馬上去買了一支天涯旅行鏡。
- 型號 A20
- 焦距 28-300mm
- 視角 75°23' - 8°15'
- 光圈 F

做人的事件,少不免要發一發花顛
開始了, 輪迴著佛珠的點和線,意識緩緩地流。越過功能和持續的介面,不需被侷促,不需去存在。要活著疋殺地藏,破壞句義的槓桿,鬻粉句里的關節,掏盡思想的骨幹間架,吞噬被命作「Text」的階磚,建構那不值一晒的天守
睡五分鐘勝過睡六小時的方法
健康 知識 一個睡五分鐘等於六個鐘頭的方法!
這睡覺的訣竅是南懷瑾那老傢伙說的,有沒有實效嘛,真的要諸君一起驗證。
根據醫學和我的體驗、觀察,一個人真正睡著覺最多只有兩個鐘頭,其餘都是浪費時間,躺在枕頭上做夢
利用 Java 為圖像添加邊緣(Use Java to trim an image )
import java.awt.image.BufferedImage;import java.awt.Graphics2D;import java.awt.Color;
public static BufferedImage trim(BufferedImage source, int topMargin, int bottomMargin, int leftMargin, int rightMargin, Color color){ int width = source.getWidth() + leftMargin + rightMargin; int height = source.getHeight() + topMargin + bottomMargin; BufferedImage out = new BufferedImage(width, height, source.getType()); Graphics2D g2d = out
A DVCS advantage for open source development
Recently, an interesting advantage of DVCSes for open source developmenthas occurred to me: their very nature makes it so that the initialsource of an open source release cannot really reverse itself.
Suppose that you are a company that mightwant to retract and de-release something that has been releasedas open source . With traditionalnon-distributed version control, you could simply shut down the publicsource server for the project; while people who already had copies ofthe source base could in theory put together another public sourceserver
咬文嚼字的基因?
看到兒子的情況,我
36 Views from the Pic Saint-Loup ("小山36景") ------ 看不出36景!
Film: 36 Views from the Pic Saint-Loup (2009)
Directed by Jacques Rivette
Written by Pascal Bonitzer/ Christine Laurent/ Jacques Rivette
Starring Jane Birkin/ Sergio Castellitto
Running Time: 84 minutes
Country: France/Italy
Language: French
1. 看的原因當然是因為Jane Birkin(珍寶金),至於導演是法國新浪潮導演之一,不過其實我看之前是不懂的,亦沒
利用 Java 過濾圖像的色彩頻道 (Use Java to filter the color channel of an image)
import java.awt.image.BufferedImage;import java.awt.Color;
public static BufferedImage getColorChannel(BufferedImage source, Color color){ BufferedImage out = new BufferedImage(source.getWidth(), source.getHeight(), source.getType()); for (int i = 0; i < out.getHeight(); i++) { for (int j = 0; j < out.getWidth(); j++) { out.setRGB(i, j