" So the vision of Microsoft is pretty simple. It changed a couple years ago. For the first 25 years of the company, it was a personal computer on every desk and in every home. And it was a very good vision; very rare for a company to be able to stick with something like that for 25 years. The reason we changed it was simply that it became acceptable... And so as we stepped back and looked at what we were trying to do with the programming model, turning the Internet into the fabric for distributed computing, getting your information to replicate in a very invisible way so that it was available to you everywhere, thinking of this programming model spanning all the different devices, we changed to the mission statement we have now, which is empowering people through great software anytime, any place and on any device. "  —  Bill Gates (American Entrepreneur and Founder of Microsoft Co., b.1955)

Folders  ›  Experimental

 

Simple Dreamy Effect with Adobe Photoshop

more...

To apply a simple dreamy effect by using Adobe Photoshop is really quick and easy.

After applying the effect:

White Orchid with Simple Dreamy Effect

White Orchid with Simple Dreamy Effect

more...

 

Regular Expression File Renaming with eFRen

more...

Tired renaming files you have downloaded from internet one by one just to keep it clean and tidy? Leave the file renaming task to eFRen, even powerful with regular expression support.

more...

 

Shutdown, Sleep, or Hibernate?

more...

If you want to leave your computer, should you shutdown, sleep, or hibernate it?

more...

 

Tutorial: Minimize Windows Mobile Application Form Using C#

more...

winmobileIn Microsoft .NET Framework application development, we can use a simple Minimize() method to minimize the application form to the Windows taskbar. But how to do that in Microsoft Windows Mobile environment is not as simple as that.

more...

 

Connecting Cellular Emulator to Windows Mobile 6 Professional Emulator

more...

winmobileCellular Emulator is included in Windows Mobile 6 Professional SDK Refresh. It is very useful if you currently developing an application which utilizes SMS and/or phone call features on the device. The Cellular Emulator can emulate making and receiving a call to Windows Mobile 6 device emulator, as well as sending and receiving SMS. But however, connecting the Cellular Emulator to Windows Mobile 6 Emulator is not so straight forward. It’s not like just start the emulator and they automatically connected. It does require a little trick to make it works.

more...

 

Tutorial: Create A “Hello World” Application on Windows Mobile 6 using Microsoft .NET Compact Framework/C#

more...

winmobileThis tutorial shows you how to create a Hello World application for Windows Mobile 6. This tutorial purpose is to introduce Windows Mobile programming using Microsoft .NET Compact Framework (C#) and Windows Mobile 6 SDK Refresh.

more...

 

Validating Email Form Field Using PrototypeJS and Regular Expressions

more...

Annoyed with form submitters that keep fills the email form field with an invalid email? You can use javascript’s regular expressions to validate it. There’s so many regular expressions form to validate e-mail on the internet but many of them is very long and difficult to understand to modify to suit my need. The regular expressions is expressed below:

/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,60})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i

more...