‘ Fun ’ category archive

Funny error message

July 12, 08 by the programmer

This one is good, while surfing the net I found some pages where some people were getting error messages like that one:

“Error: keyboard wasnt detected, press F1 to continue….”

Press F1 if you can :)

Google won’t search for Chuck Norris because it knows you don’t find Chuck Norris, he finds you.

June 03, 08 by the programmer

Haha this is very funny.

Open http://google.com and write “find Chuck Norris” and click on the “I’m Feeling Lucky” button and see what happens :)

Google always surprises us

Programming with colors

May 30, 08 by the programmer

Are you boring with programming on the old fashion way, by using characters, signs, numbers, symbols. If so then you might consider changing your programming style, or programming language.

I just found a programming language that you can make programs in using colors or by making abstract pictures.

What would you say if I told you that the above picture is a “Hello World” programm, would you believe it. You better believe it.

The programming language is called PIET.

Piet is an esoteric programming language designed by David Morgan-Mar, whose programs are bitmaps that look like abstract art. Piet was named after the Dutch painter Piet Mondrian.

“Hello World” in 10 programming languages

May 28, 08 by the programmer

This is how the popular “Hello World” looks like in 10 programming languages

JAVA

// Hello World in Java

class HelloWorld {
static public void main( String args[] ) {
System.out.println( “Hello World!” );
}
}

PHP

<?php
// Hello World in PHP
echo ‘Hello World!’;

?>

SQL

# Hello World in SQL

SELECT ‘Hello World’;

C#

// Hello World in Microsoft C# (”C-Sharp”).

using System;

class HelloWorld
{
public static int Main(String[] args)
{
Console.WriteLine(”Hello, World!”);
return 0;
}
}

C++

// Hello World in C++ (pre-ISO)

#include <iostream.h>

main()
{
cout << “Hello World!” << endl;
return 0;

}

Cobol

* Hello World in Cobol

*****************************
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
ENVIRONMENT DIVISION.
DATA DIVISION.
PROCEDURE DIVISION.
MAIN SECTION.
DISPLAY “Hello World!”
STOP RUN.
****************************

ColdFusion

<!—Hello world in ColdFusion—>

<cfset message = “Hello World”>
<cfoutput> #message#</cfoutput>

Delphi

// Hello World in Delphi
Program Hello_World;

{$APPTYPE CONSOLE}

Begin
WriteLn(’Hello World’);

End.

Fortran

C Hello World in Fortran

PROGRAM HELLO
WRITE (*,100)
STOP
100 FORMAT (’ Hello World! ‘ /)
END

VisualBasic6

‘ Hello World in Visual Basic 6

Private Sub Form_Load()
Print “Hello World”
End Sub

Map of Mars by Google

May 25, 08 by the programmer

Google always surprises us.

This is very interesting, a map of Mars. It was made In collaboration with NASA researchers at Arizona State University, and Google. It is most detailed scientific maps of Mars ever made.

Check it out

http://www.google.com/mars/

Evolution

May 12, 08 by the programmer

This is definitely where the evolution is going :) .

This is a good one. Enjoy !