Proton ad? Ghost movie?

Posted by September - 27 - 2007 8 Comments

My friend send me this link earlier…. [youtube http://youtube.com/watch?v=6jF8mV1WmYM] Proton ad? or ghost movie? You decide…

Patients = Customers

Posted by September - 26 - 2007 3 Comments

“Do you need a MC for today?” Dr. X asked. Of cos, there is nothing special with that question UNLESS the question was threw at you the moment you walk in to a clinic. This was what happened… Days ago, I went to a clinic near Kelana Jaya due to my sickness. I walked in to the consultant room when my name was being called. The moment I saw Dr.  [ Read More ]

Shook Fun's Bufday @ Dave's Deli

Posted by September - 25 - 2007 1 Comment

This week is gonna be a busy one. Dinners pilling up, starting from Monday where I celebrated Shook Fun’s bufday… We went for dinner at nearby Dave’s Deli and these are some of the pictures we took. Shook Fun & Shek Lee Me & Si Fu 3 of us with the present we gave for Shook Fun HAPPY BUFDAY SHOOK FUN!!

How to download videos from YouTube

Posted by themamakcorner September - 18 - 2007 1 Comment

Download videos from YouTube are easy.. (1) Install a FLV player. You can get one for free at HERE (2) Go to YouTube.com and search for the videos you want. (3) Then copy the URL from YouTube. (4) Go to HERE and paste the URL (5) Click on Download (6) Save it (7) Rename your downloaded file with .flv extension (8) There, you can now watch the video using the  [ Read More ]

Java : Delete File

Posted by themamakcorner September - 17 - 2007 0 Comment

Below is the code to delete a file in Java import java.io.File; public class DeleteFile { public static void main(String[] args) { String fileName = “C:\\Documents and Settings\\User\\My Documents\\test.xls”; File f = new File(fileName); // Make sure the file or directory exists //Make sure the file is not protected if (!f.exists()) throw new IllegalArgumentException( “No such file or directory: ” + fileName); if (!f.canWrite()) throw new IllegalArgumentException(“File is write protected:  [ Read More ]

One of the “Heavenly King”, Jacky Cheung, was in town to held his “The Year Of Jacky Cheung World Tour 07″ concert. Before this, he has stopped around the world to perform; places like the Colosseum at Caesars Palace (Las Vegas), Toronto, Atlantic City, different parts of China, Tokyo, Singapore etc. Was almost late for the concert as the traffic was bad and there were difficulties to get a parking  [ Read More ]

Largest Smallest number based on user input while loop

Posted by themamakcorner September - 12 - 2007 0 Comment

Get 10 numbers from the user also using a while loop and determine largest smallest number import java.io.*; public class BiggestSmallest{ // Create a single shared BufferedReader for keyboard input private static BufferedReader stdin = new BufferedReader( new InputStreamReader( System.in ) ); public static void main(String[] args) throws IOException { try { int count = 1; int biggest = 0; int smallest = 0; int inputInt = 0; while (count  [ Read More ]

HTML Fieldset

Posted by themamakcorner September - 12 - 2007 0 Comment

Want to create something like this? fieldset Copy and paste the HTML codes below to a notepad and save it as “a.html” <head> <title>Tittle Bar</title> </head> <body> <form> <fieldset> <legend>Tittle Between The Lines</legend> <br /> <br /> <br /> <br /> <br /> </fieldset> </form> </body> </html>

Step-by-Step Java HelloWorld with using NetBeans

Posted by themamakcorner September - 3 - 2007 0 Comment

Download JDK 5 from http://www.netbeans.info/downloads/index.php Double click on the downloaded installer to install it. In my case, my root installation folder is at C:\Java After the installation is done, you’ll be able to see that the Java 1.5 is located at C:\Java\jdk1.5.0_12 Once done with the installation, you need to set the environment. Follow the steps below to set the Java environment. right click at My Computer, click on Properties  [ Read More ]

Related Posts Plugin for WordPress, Blogger...