Tuesday, June 30, 2009

免費升級MacOS 10.5

話說我的MacBook 的硬碟死了,由於未過Apple Care, 於是拿出旺角的CASE維修。
3天後維修完成,除了硬碟由Hitachi 變成Fujitsu 外,OS也由10.4.11 升級到10.5.2。
這個成為1400元的Apple Care,帳面上也賺回來了。

Tuesday, June 16, 2009

移除Windows 7 後無法啟動 boot Windows XP

移除了WINDOWS 7後,無法啟動電腦,出現了Operating System Not Found 的錯誤訊息。
用了xp 安裝CD裹面的fixboot 和 fixmbr 後,卻出現了
NTLDR IS MISSING

>.< 後來發現WINDOWS7把原本XP那個分割的BOOTABLE屬性移除了,重新設定XP的分割為可啟動後,問題就解決了。 移除Windows 7的步驟 1. 檢查與設定原本xp 的分割是可啟動 (boot)。我是用Gparted 這軟件
2. format windows 7的分割
3. 用windows xp 安裝CD 開機,選r 到rescue console
4. 執行 fixmbr
5. 執行 fixboot c:
6. reboot

Saturday, June 13, 2009

免費 製作 pdf

doPDF
http://www.dopdf.com/

doPDF 就是一個簡單易用的PDF 制作軟件,簡單在於軟件只把文件透過列印(print)的過程輸出做pdf,沒有其他功能,如果要其他功能,軟件會要求你升級同廠的novapdf,當然要$$

這軟件一大親切的功能就是有中文介面。



如果不能安裝software而又要轉pdf
前文 Thinkfree Office 的 converter 就更加適合。

Thursday, May 28, 2009

S60可用Mail for Exchange 和Google calendar 和GMail 同步了

實在太開心 現在S60可用Mail for Exchange 和Google calendar 同步了
Nokia S60 can now sync with Google calendar using Mail For Exchange

Now my Music Xpress 5800 can sync with Google calendar using Mail for Exchange as if Apple's iphone.

現在S60可用Mail for Exchange 和Google calendar 同步,而且是雙向同步,唯一不足是只支援main calendar,不過對我來說已經足夠了。

在此之前,我是用CalSyncS60 和 Goosync 來進行同步的,但CalSyncS60 已變成收費軟件,並更名為Googasync,而 goosync 只可更新前後一個月的事項,還有main calendar限制,再加上仍過第三方連接google , 我可不放心。而用Mail for Exchange 是google 官方的方法,而Mail for Exchange是Nokia 寫的,可以免費下載。
http://www.nokia.com.hk/A41121185

Download from Ovi
在Ovi 下載


設定(Set up):
http://www.google.com/support/mobile/bin/answer.py?hl=en&answer=147951

Friday, May 22, 2009

Parallel For for multi-core/cpu programming in C#

Here is an implementation
Coding time: Implement your own Parallel.For in C#

I have applied this code into my code, it really works.

And there is the AForge.Net Framework project. The 2.0.0 beta also contains an implementation of Parallel.For

http://code.google.com/p/aforge/

I have also applied this into my code. It can gain 10% further improvement than the previous implementation.

Finally, there is the official Microsoft Parallel Extensions to .NET Framework 3.5, but I cannot comply it in Visual Studio 2005.

http://www.microsoft.com/downloads/details.aspx?FamilyId=348F73FD-593D-4B3C-B055-694C50D2B0F3&displaylang=en


The overall improvement is about 40% compared with the original single thread one.