**在網上發現了自己一篇舊文,文中所說的,今天我仍然相信–雖然我是一個經常不相信自己曾經相信的東西的人。
Thursday, August 25, 2005
自娛自樂
看罷《自娛自樂》,竟有點感觸,腦海浮現一個問題:拍電影是為了甚麼?
電
[ UPDATE : It looks like there's a nice app available to jailbroken iPads via Cydia called 'Display Out' that will allow you to use the iPad with any external display, the way it was meant to be! Also, some other interesting comments down below...]

import java.awt.image.BufferedImage;import java.awt.Graphics2D;import java.awt.Color;import java.awt.geom.AffineTransform;
public static BufferedImage rotate(BufferedImage source, double degrees, int x, int y, Color color, boolean resizable){ double radians = Math.toRadians((degrees % 360.0 + 360.0) % 360.0); int width = source.getWidth(); int height =
import java.awt.image.BufferedImage;import java.awt.Graphics2D;
public static BufferedImage combine(BufferedImage source, BufferedImage other, int x, int y, int ox, int oy, int owidth, int oheight, int cx, int cy){ BufferedImage out = new BufferedImage(source.getWidth(), source.getHeight(), source.getType()); Graphics2D g2d = out.createGraphics(); g2d.drawImage(source,
import java.awt.image.BufferedImage;import java.awt.Graphics2D;
public static BufferedImage negative(BufferedImage source){ BufferedImage out = new BufferedImage(source.getWidth(), source.getHeight(), source.getType()); for (int i = 0; i < out.getWidth(); i++) { for (int j = 0; j < out.getHeight(); j++) { out.setRGB(i, j,
很久沒看這種小品劇,很不錯,之前有一套很相似的,月滿抱西環。
兩片都一樣,流露出濃濃的地緣主義的情感。生活和空間的音調,彈奏得鏗鏘入耳。
演員的表達沒什麼好評品,就是那個好字足矣。
岸西的編劇真的就是那一個

import java.awt.image.BufferedImage;import java.awt.Graphics2D;import java.awt.Color;
public static BufferedImage canvas(BufferedImage source, int width, int height, int x, int y, int cx, int cy, Color color){ BufferedImage out = new BufferedImage(width, height, source.getType()); Graphics2D g2d = out.createGraphics(); g2d.setColor(color); g2d.fillRect(
[ UPDATED : The developer of iSSH emailed me this morning with a couple of tidbits that will be useful for any early iSSH adopters on the iPad - see my updated notes in bold.]
One app I haven't had a lot of time to work with (yet) is iSSH on the iPad. I tried the iPhone version, but the tiny iPhone screen simply couldn't keep up with a productive SSH or VNC session.
The iPad changes the game, though; I can actually log in via SSH
