Monday, December 6, 2010
The five Monkeys
12:24 PM
No comments
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...
Thursday, October 14, 2010
Wednesday, October 6, 2010
Tuesday, September 21, 2010
Top 10 replies by programmers when their programs don't work:
3:37 AM
No comments
1. "I can't test everything!"2. "That's weird."3. "It works, but it's not been tested."4. "Somebody must have changed my code."5. "Did you check for a virus on your system?"6. "Even though it doesn't work, how does it feel?"7. "You can't use that version on your system."8. "Why do you want to do it that way?"9. "It's never done that before."
10. "I thought I fixed tha...
Sunday, September 12, 2010
Monday, July 26, 2010
11:04 PM
No comments

The Best Things in My Life
A hot shower.
No lines at Tim Hortens.
Getting mail.
Taking a drive on a pretty road.
Lying in bed listening to the rain outside.
Hot towels out of the dryer.
Finding the sweater I wanted on sale for half price.
Chocolate milkshake.
A long distance phone call.
A bubble bath
Fixing the bugs on my software programs
A good conversation
The beach.
Finding a $20 bill in my coat from last winter.
Having ...
Thursday, July 22, 2010
12:55 PM
No comments
You know you are in college when ....
.High school started before 8am, but now anything before noon is considered “early.”
. Weekends start on Thursday.
. 6am is when you go to sleep, not when you wake up.
. You know many different ways to cook ramen noodles or macaroni and cheese.
. Instead of falling asleep in class, you stay in bed.
. You know how late McDonald’s, Taco Bell, Qdoba, etc. are open.
. You think it’s the weekend on a Wednesday and you don’t know what month it is.
. You check Facebook/Myspace more than once a day.
. You wash dishes...
Friday, July 9, 2010
Friday, May 28, 2010
Read from, and Write to, files in Java
7:17 AM
No comments
import java.io.*;
public class test {
public static void main (String [] args){
// Stream to write file
FileOutputStream fout;
// Stream to read file
FileInputStream fin;
try
{
// Open an output stream
fout = new FileOutputStreama ("myfile.txt");
// Print a line of text
new PrintStream(fout).println ("hello world!");
// then read from the file
fin = new...
Java Programming : static calling non-static
6:20 AM
No comments
public class staticClass {
public static int fac(int n){
if (n <= 0)
return 1;
else
return n * fac(n -1);
}
public static void main (String [] args){
System.out.println("Factorial Valu : "+fac(3));
}
}
-----------------------------------------------
public class NonStatic {
public int fac(int n){
if (n <= 0)
return 1;
else
return n * fac(n -1);
}
public static void main (String [] args){
NonStatic val = new NonStatic (); // create...
Thursday, May 20, 2010
11:09 AM
1 comment
The Power Of Paint
I was surfing the net and I came across this interesting quote by Roman philosopher Plautus: “A woman without paint is like food without salt”. Actually it is kind true.
I am without a doubt against relating beauty to looks alone, but I do believe in the power of makeup, and have to admit that makeup -”paint”- does work its magic on making a very average woman looks like a hot movie star.
Most of us ,men, are attracted to “painted” women, we don’t care what’s underneath all those layers of colors, as long as she looks “hot”....
10:25 AM
No comments

Famous Lies In a Man's World
1. Of course, this dress looks great you
2. Leave it , I can fix it
3. I was not looking at her
4. Every thing is going well
5. I was going to call you
6. I do not want to talk about it unless you want to
7. I am always the best
8. I do not have relations with women other than the two or three from school days
9. Ofcourse,I will never lie to you
The best and most Lies are the first five for me. Whether we like it...
A Comparison of Sorting Algorithms
6:42 AM
No comments

I have been heavily working on sorting lately. so I thought I should post some of the running time of these sorting algorit...
Sunday, May 16, 2010
8:08 PM
No comments
One part of my personality
This feeling was bothering me for years. it is a mixed of rush and stress together. Everyday, I just feel like I have to get as much done as possible and I start panicking about how there's just not enough hours in the day. It's very hard to explain this, so bear with me.
I feel like whenever I do something, I have to do it as fast as I can. For example, if I type, I have to type as fast as I can. If I'm reading a novel, I have to read it as fast as I can so that I can get on to the next novel.
When there...
Tuesday, May 11, 2010
Sunday, May 9, 2010
10:22 PM
No comments

Conversations
Nothing beats a conversation with a good friend(s). it is a social skill that is not difficult for me to apply. Having a good conversation, for me , is the ideal form of communication in some respects. It allows me to state my opinions about different topics and listen to what my friends think about these topics to learn from each other. A successful conversation includes mutually interesting connections between me and my good friends.
Simply...
Monday, May 3, 2010
8:07 PM
No comments

Network Marketing Do's and Don'ts
Why did you become a network marketer? Most people immediately respond, “for the money!” However, this is not the real reason.
No one subjects them to the hard work of building a business just for little pieces of paper with the faces of dead presidents. The truth is you work in order to obtain what those little pieces of paper can bring you.
The first thing you need to do is to find the reason WHY you are a...
Sunday, May 2, 2010
Saturday, May 1, 2010
10:51 PM
No comments

Did you know?
The Canadian Tulip Festival is the largest tulip festival in the world.
The first video game was invented by Willy Higginbotham
Earth’s distance from the sun varies between 91.4 million miles – in January – and 94.4 million miles – in July.
Our sun is one of billions in the entire universe
-90% of bird species are monogamous, as are 10% of mammals
The dollar symbol ($) is a U combined with...
Ottawa Tulip Festival
10:04 AM
1 comment
More than one million tulips bloom from Commissioners Park at Dow’s Lake along Queen Elizabeth Drive to Parliament Hill and across the Ottawa River in Mackenzie King Estates in Gatineau Park, Quebec. This has been a part of the Canadian heritage and bond with the Netherlands originating in the gift of tulips to the people of Canada by the Dutch Royal Family following the liberation of Europe in the Second World War.
...
Thursday, April 29, 2010
11:43 PM
No comments

Media literacy
Media literacy is Continuum that is verified as a line along of which people have different levels of views in term of their personal understanding of presented messages. One can develop personal media literacy during the process of intellectual, emotional and moral maturation...
Subscribe to:
Posts (Atom)