Posted by leejeok on March 30, 2008
Today is a great day, the EARTH HOUR! This is the day where people from around the world will turn of the light for 60 minutes to show their support to work together to overcome the problem of climate change!
Few hours ago @ 8 pm, I had switch off not only the lights at my home but all my electricity equpment. I off the light, notebook, handphone, fan, television, stoove and fridge for more than 1 hour++.
If you are driving, stop your car near side which safe. Turn off your engine and car’s light..yea this is very cool. Just show your support by snapping some picture with your car’s light off and upload it to www.earthhour.org
Do you know that Google goes black in honour to support the EARTH HOUR ?

Posted in Misc | 2 Comments »
Posted by leejeok on March 21, 2008
On this 29 March 2008 - 24 cities around the world will take part in Earth Hour, a global movement that began in Sydney last year, with resident and businesses encouraged to turn off the light and non-essential appliances for an hour to deliver a powerful message about the need of action on global warming.

For more details: http://www.earthhour.org/
Posted in Misc | 1 Comment »
Posted by leejeok on March 20, 2008
Posted in Misc | 2 Comments »
Posted by leejeok on March 18, 2008
Here are the collection of windows shorcut command.
Tested on Windows xp. Go to StartMenu > RUN, where u get the following box:
Function & Command
Accessibility Controls – access.cpl
Add/Remove Programs – appwiz.cpl
Administrative Tools – control admintools
Automatic Updates – wuaucpl.cpl
Bluetooth Transfer Wizard – fsquirt
Calculator – calc
Certificate Manager – certmgr.msc
Check Disk Utility – chkdsk
Clipboard Viewer – clipbrd
Command Prompt – cmd
Component Services – dcomcnfg
Computer Management – compmgmt.msc
DDE Shares – ddeshare
Device Manager – devmgmt.msc
Direct X Control Panel (If Installed)* – directx.cpl
Disk Cleanup Utility – cleanmgr
Disk Defragment – dfrg.msc
Disk Management – diskmgmt.msc
Disk Partition Manager – diskpart
Dr. Watson System Troubleshooting Utility – drwtsn32
Driver Verifier Utility – verifier
Event Viewer – eventvwr.msc
File Signature Verification Tool – sigverif
Findfast – findfast.cpl
Fonts Folder – fonts
Free Cell Card Game – freecell
Group Policy Editor (XP Prof) – gpedit.msc
Hearts Card Game – mshearts
Iexpress Wizard – iexpress
Indexing Service – ciadv.msc
Internet Properties – inetcpl.cpl
IP Configuration (Display Connection Configuration) – ipconfig /all
IP Configuration (Display DNS Cache Contents) – ipconfig /displaydns
IP Configuration (Delete DNS Cache Contents) – ipconfig /flushdns
IP Configuration (Release All Connections) – ipconfig /release
IP Configuration (Renew All Connections) – ipconfig /renew
IP Configuration (Refreshes DHCP & Re-Registers DNS) – ipconfig /registerdns
IP Configuration (Display DHCP Class ID) – ipconfig /showclassid
IP Configuration (Modifies DHCP Class ID) – ipconfig /setclassid
ava Control Panel (If Installed) – jpicpl32.cpl
Java Control Panel (If Installed) – javaws
Local Security Settings – secpol.msc
Local Users and Groups – lusrmgr.msc
Logs You Out Of Windows – logoff
Mcft Chat – winchat
Minesweeper Game – winmine
Network Connections – control netconnections
Network Connections – ncpa.cpl
Network Setup Wizard – netsetup.cpl
Nview Desktop Manager (If Installed) – nvtuicpl.cpl
Object Packager – packager
ODBC Data Source Administrator – odbccp32.cpl
On Screen Keyboard – osk
Opens AC3 Filter (If Installed) – ac3filter.cpl
Password Properties – password.cpl
Performance Monitor – perfmon.msc
Performance Monitor – perfmon
Phone and Modem Options – telephon.cpl
Power Configuration – powercfg.cpl
Printers and Faxes – control printers
Private Character Editor – eudcedit
Quicktime (If Installed) – QuickTime.cpl
Regional Settings – intl.cpl
Registry Editor – regedit
Remote Desktop – mstsc
Removable Storage – ntmsmgr.msc
Removable Storage Operator Requests – ntmsoprq.msc
Resultant Set of Policy (XP Prof) – rsop.msc
Scanners and Cameras – sticpl.cpl
Scheduled Tasks – control schedtasks
Security Center – wscui.cpl
Services – services.msc
Shared Folders – fsmgmt.msc
Shuts Down Windows – shutdown
Sounds and Audio – mmsys.cpl
Spider Solitare Card Game – spider
SQL Client Configuration – cliconfg
System Configuration Editor – sysedit
System Configuration Utility – msconfig
System File Checker Utility (Scan Immediately) – sfc /scannow
System File Checker Utility (Scan Once At Next Boot) – sfc /scanonce
System File Checker Utility (Scan On Every Boot) – sfc /scanboot
System File Checker Utility (Return to Default Setting) – sfc /revert
System File Checker Utility (Purge File Cache) – sfc /purgecache
System File Checker Utility (Set Cache Size to size x) – sfc /cachesize=x
System Properties – sysdm.cpl
Task Manager – taskmgr
Telnet Client – telnet
User Account Management – nusrmgr.cpl
Utility Manager – utilman
Windows Firewall – firewall.cpl
Windows Magnifier – magnify
Windows Management Infrastructure – wmimgmt.msc
Windows System Security Tool – syskey
Windows Update Launches – wupdmgr
Windows XP Tour Wizard – tourstart
Wordpad – write

Posted in Misc | Leave a Comment »
Posted by leejeok on March 12, 2008
Reason to implement the “redirect pages” is to redirect your visitor to the proper page.
You may need it when:-
- redirect to a new domain name – you have a new domain name and you would like to inform your visitor about this.
- redirect visitor to another website hosted at another web server – you have another web server to keep website within it. Not only the web server easy to manage but also reducing the trafic and processing time for each server.
- placing time-delay of your website - you may want to display some timeout message to visitor. Such as thank you or downloading timeout.
- refresh the website – to keep your content updated frequently base on timeout.
Here are the simple code to auto redirect:
<script type=”text/javascript”>
<!–
window.location = “http://hotname.com/”
//–>
</script>
Here are the simple code to auto redirect your user by using timeout of 5 seconds.
<html>
<head>
<script type=”text/javascript”>
<!-
function dodelay() {
window.location = “http://hostname.com”
}
//–>
</script>
</head>
<body onLoad=”setTimeout(‘dodelay()’, 5000)”>
<p>
You will be redirect to our new website in 5 seconds.
Click <a href=”http://hostname.com”>here</a> to go immediately.
</p>
</body>
</html>
Posted in Javascript | 1 Comment »
Posted by leejeok on March 7, 2008
Posted in Misc | Leave a Comment »