2012
05.19
Category:
敗家 /
Published: 2012-05-19 22:21 /
去年買了一台 iPad2 送給老爸後,深深覺得 iPad 真是一個好東西,可以拿來拿去到處上網,真是方便極了!最近我自己常常用手機看電子書,因為螢幕小的關係,總是拿手機拿得很近,看久了眼睛也容易疲勞。所以幾經考慮,我決定還是再買一台新的 iPad 來讀電子書 (還有玩遊戲上網聽音樂打字看照片看電影看影集行事曆收發電子郵件看漫畫玩視訊看雜誌) 。
我在 5/16 於線上的 Apple Store 購入 New iPad (包含背面雷射) ,結果 5/18 就送到了,速度非常快:
18 May 2012 10:39:00 Taipei City Shipment Delivered In Good Condition.
18 May 2012 09:47:23 Taipei City Out For Delivery.
18 May 2012 08:12:55 Taipei City Shipment Received At Destination Depot.
17 May 2012 16:22:48 Taipei Gateway Shipment In Transit.
17 May 2012 16:18:18 Taipei Gateway Shipment Received At Transit Point.
17 May 2012 07:39:39 Hong Kong Shipment In Transit.
17 May 2012 00:19:30 Hong Kong Shipment Received At Transit Point.
16 May 2012 23:22:00 Shenzhen Shipment In Transit.
16 May 2012 23:16:47 Shenzhen Shipment In Transit.
16 May 2012 20:42:35 Shenzhen Shipment Collected From Sender.
除了 New iPad 以外,我另外加購了一年的 Apple Care 以及一個 iPad Dock 和 Smart Cover (皮革)。
Read More >>
2012
05.15
Category:
MAC /
Published: 2012-05-15 18:37 /
最近一直苦惱到底該買哪個型號的 the new ipad ,最後決定寫隻 script 幫我決定:亂數跑一萬次,再根據出現最多次的選項來購買。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<?php
$max = 10000;
$result = array();
for($i = 0; $i< $max; $i++) {
$size = array('16GB', '32GB', '64GB');
$comm = array('wifi ','4g+wifi');
shuffle($size);
shuffle($comm);
$key = current($size) . ' / ' . current($comm);
if(array_key_exists($key, $result)) {
$result[$key]++;
} else {
$result[$key] = 1;
}
}
arsort($result, SORT_NUMERIC);
foreach($result as $key => $value) {
$value = number_format($value / $max * 100, 1) . '%';
echo "$key - $value" . PHP_EOL;
} |
64GB / wifi - 17.3%
32GB / wifi - 16.7%
16GB / 4g+wifi - 16.6%
32GB / 4g+wifi - 16.6%
16GB / wifi - 16.5%
64GB / 4g+wifi - 16.4%
就決定是 64GB / wifi 了。
2012
05.12
Category:
電腦 /
Published: 2012-05-12 19:02 /
最近網路上淡定紅茶很紅,也有不少轉貼文章,其中有一篇文章掛了 SiteStates 的計數器,間接讓我也搭上了這波熱潮。四天下來, SiteStates 的主機至少多了一百萬個使用者造訪,而多接的 HTTP Request 則肯定超過一百萬個。
Read More >>
2012
05.12
Category:
Linux /
Published: 2012-05-12 02:51 /
Debian Linux 64 bit 出現
utserver: error while loading shared libraries: libssl.so.0.9.8: cannot open shared object file: No such file or directory.
只要安裝 32 bit 的 lib 就可以解決了。
sudo apt-get install ia32-libs
2012
05.12
Category:
Linux /
Published: 2012-05-12 02:21 /
只要分別安裝這兩個套件: xfsprogs 和 reiserfsprogs
之後重新啟動即可。