Tag: down

Improve XP Shutdown Speed

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.

  1. Go to Start then select Run
  2. Type ‘Regedit’ and click ok
  3. Find ‘HKEY_CURRENT_USER\Control Panel\Desktop’Select ‘WaitToKillAppTimeout’
  4. Right click and select ‘Modify’
  5. Change the value to ‘1000′
  6. Click ‘OK’
  7. Now select ‘HungAppTimeout’

Read More»

Change the Logon Window and the Shutdown Preferences in Windows XP

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»

Simple Zip Code Geocoding

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»