Computer + Internet => TV
Last week, I installed a broadband to my friend's home. I introduce some web sites of Hong Kong TV Stations. They can watch Hong Kong News from internet. Well, I made his computer to TV. I paid Hong Kong cable TV services. I started to use my computer as TV.
Re-study Threading
I have completed a number of course in threading. I did those courses in Java. Yesterday, I have started to do my readings on threading again. This is because I forgot most things in threading and .Net is quite different from Java as well.
Threading in .Net is simple
Thread is very simple. Only need to put the method name and use "Start" method.
Thread thread= new Thread(new ThreadStart(class1.Test2));
thread.Start();
There is an exmple, click here
My Download Area
I have set up a download area. There are some source code and applications.
CSV Reader is working on progress...
I have started to write a CSV reader. The 1st stage is very successful. This reader will use Java NIO. Thus, the preformance should be very good