Archives for: "February 2009"
Review of my new mp3 player - Samsung U4
My old mp3 player is broken. I just bought last year July in Hong Kong. I won't complain much because that is very cheap only HKD$250 and has 4GB storage. So, I decided to buy one with a proper brand. I chose Samsung U4. Fristly, that is stylish. But… more »
Resharper Alternative
I believe a number of people will say Resharper is a good reflectoring tool. But that cost money! I found an alternative product, CodeRush.The express version is free of charge. But the functions are very limited, such as renaming and promote a local… more »
Multilingual Joomla
I am looking for the tools to do a Multilingual Joomla. I found Joom!fish. It works prefectly fine, if your website has a same structure across different language version. But in my case, that is hard. Because each version has a unique menu structure.… more »
Latitude XT2 aussie price is released
I have just checked Dell Australia Homepage. Latitude XT2 price is released. It costs $4114. more »
Adsense for domains
Google has extended their Adsense service. You can park your domain to Google. Then the parking domain landing will have an Adsense Domain parking page. For more information: http://adsense.blogspot.com/2008/12/extending-adsense-for-domains-to-all.html more »
Error 403 from Google yesterday
I have been seen an 403 error from Google when I tried to do a Google search yesterday. I have been hear the same situation from my friends. Did you seen that as well? Is it a worldwide problem? more »
I love software prototype
I love software prototype. Firstly, it can verify whether requirements can be implemented. Moreover, it can identify the most risky part of the systems and the programmers can acquire the skills raidly. For my personal projects, I was not sure whether… more »
EEE Touch Screen PC.
I went to Harvey Norman last Friday. I saw a touch screen PC in EEE series. That is running a XP. It looks very very cool. But it costs a bit over $1000(the number in my memory). For more info,http://www.asus.com/products.aspx?l1=24&l2=169 more »
WordPress 2.7.1 is released
WordPress 2.7.1 is released. That is the first maintenance release for WordPres 2.7. http://wordpress.org/development/2009/02/wordpress-271/ more »
Multitouches tablet PC
Dell has released a multitouches tablet PC, Latitube XT2. It got multitouches zoom in and out functions which looks similar with iPhone. But it costs a lot of money. In Australia website, the price has not released yet. But in US, that is starting from… more »
Free Diary Application
I created an application by using C# Serialization/Deserialization. This application can allow you to enter your diary everyday. This is tiny and easy to use. Note that, that is only a toy to practice C# for myself. We are not responsible for any kinds… more »
Joomla Chinese Version Admin Interface
I built a Joomla for my Church and gave Chinese Version Admin interface for that instance. I found the problem on translation. Because that is built by some Taiwan Opensource Developers. That is not suit for Hong Kong People. Even Taiwan and Hong Kong… more »
Upgarde a WordPress 2.4 to 2.7
That is very easy and fast for WordPress 2.7 upgarde. Just upload the latest code, then done. Moreover, that has not the Chinese Characters encoding problems in 2.6.X. more »
Sub-window should not show in the task bar
That is a common mistake for myself. I like to create some sub-windows which are acting a dialog. I am so easy to forget set ShowInTaskbar = false. more »
Bolded the dates in MonthCalendar
I am writing a simple diary application. I am using a monthcalendar control to select the date to load the diary. I need the control to display the date in bolded if that date on the calendar has the data. That is easy and simple. Just using… more »
Get the current assembly version
That is very easy by using Reflection. Codeusing System.Reflection;Assembly.GetExecutingAssembly().GetName().Version; more »