February 13, 2007 by
Jason
This tweak reduces the time XP waits before automatically closing any running programs when you give it the command to shutdown.
- Go to Start then select Run
- Type ‘Regedit’ and click ok
- Find ‘HKEY_CURRENT_USER\Control Panel\Desktop’Select ‘WaitToKillAppTimeout’
- Right click and select ‘Modify’
- Change the value to ‘1000′
- Click ‘OK’
- Now select ‘HungAppTimeout’
Read More»
Posted in Windows XP | 1 Comment »
February 07, 2007 by
Jason
Setup configures Windows XP to use the friendly Welcome logon screen and the shutdown buttons, if your computer is installed as a home computer (a computer where a network domain has not been specified).
This article describes how you can enable the classic logon screen used by Windows XP Server that resembles the following example: Read More»
Posted in Windows XP | 1 Comment »
February 06, 2007 by
Jason
The ability to geocode, or translate into latitude and longitude, postal codes is a fairly useful hack to have in your programming toolbox. Quick and dirty zip geocoding allows you to do some neat things fairly efficiently and with a minimal amount of code. Though it’s U.S. centric, it allows you to add location-based functionality to your apps without requiring any real personal information to be transfered or stored.
If your application only needs to convert a zip code (or any address) into a lat/lon coordinate, say for simple mapping purposes, the easiest solution is to use the Google Maps Geocoding API. In addition to the client-side javascript functionality, you can directly query the geocoding system from php using an http request like this: Read More»
Posted in Internet | 10 Comments »