** << 一份工 >>那篇文章提及的一首令我很無奈的歌,來自李壽全的<< 八又二分之一 >> 專輯。
上班族的一日
作 詞:呂學海/詹宏志/李壽全 作曲:李學粹 編曲:陳志遠
我不再猶豫,推開經理的門
最後的決定,遞上我的辭
Since purchasing the iPad, I've constantly been amazed by how fast everything works—switching between large apps is no longer a game of roulette, and browsing the web is a breeze.
I ran some tests on Safari on my iPad, just to see how things compare to my MacBook Pro...
Here's the screenshot from my iPad (14068.6ms):

And from my Mac (406.8ms):
import java.awt.image.BufferedImage;import java.awt.Graphics2D;import java.awt.Color;import java.awt.Polygon;import java.awt.Rectangle;import java.awt.geom.Ellipse2D;
public static BufferedImage cutEllipse(BufferedImage source, int x, int y, int width, int height, int cx, int cy, Color color){ BufferedImage out = new BufferedImage(width, height, source.getType()); Graphics2D
Suppose that you need some IP aliases on an Ubuntu machine. So you go to /etc/network/interfaces and slavishly make yourself some, copying themain stanza a number of times to make entries that looks like this:
auto eth0:0iface eth0:0 inet static address 128.100.1.A network 128.100.1.0 netmask 255.255.255.0 broadcast 128.1
import java.awt.image.BufferedImage;
public static BufferedImage verticalReverse(BufferedImage source){ BufferedImage out = new BufferedImage(source.getWidth(), source.getHeight(), source.getType()); for (int i = 0; i < source.getWidth(); i++){ for (int j = 0; j < source.getHeight(); j++){ out.setRGB(i, j, source.getRGB(i, source.getWidth