Setup PHP into windows
Last night, I setup PHP server in my Windows XP box.
There are steps I did:
1. Download PHP installer from PHP.net
2. Run it.
(Note: Remember PHP will run in CGI mode, there are no PEAR library)
3. Go to pear.php.net/go-pear and it as a PHP file in the PHP root dir.
4. run http://localhost/php/go-pear.php.
5. edit [WINDOWS]\php.ini
include_path = ".;c:\php\includes;[PHP_root]\PEAR"
I hope these steps can help you.
Why don't I go wireless?
I have a friend asked me about how much for a wireless router and the most firends around myself has a wireless network at home.It seems to be more and more people to consider having a wireless network. But I am a old fashion person. I am using a old style LAN network.Why don't I go wireless. My router is a cheaper router and the computers at home have not wireless card. For saving money, I am still staying in old fashion and I don't need to bring my computer around my home.
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
