
What is the best time for me in whole things? The answer is christmas time…
Happy birtday, My Jesus..
May the peace and glory from the Lord unto the world, always. Amen.
I am very happy to say, Merry Christmas! Merry Christmas! Merry Christmas!

What is the best time for me in whole things? The answer is christmas time…
Happy birtday, My Jesus..
May the peace and glory from the Lord unto the world, always. Amen.
I am very happy to say, Merry Christmas! Merry Christmas! Merry Christmas!

81 examples of JAVA application in one single archive.
Very usefull to start learning JAVA.
Download link: http://rapidshare.com/files/78091891/Java_Examples.rar
Enjoy! ;)

This is an astrology application created with JAVA JDK6u1. I name it ‘Mbah Dukun’. Now in version 1.4.2 Beta3 RC1.
Features:
- Always on top
- Center screen running
- Show shio picture in every new session
- Reset to default
- Exit program
- Available in native mode with splash screen
Available in Bahasa Indonesia only. Sorry, I’m too lazy to perform toggle translation. ![]()
Contribution in english is welcome. I’ll add you the the credit and join me for the next update development.

Download it from here:
http://rapidshare.com/files/78064794/fzn-md14.zip
Do not be hesitate to give me any suggestion, complain, etc.
Enjoy!

These are very good resources for you who want to learn about creating games in Java.
Arranged in random order.
http://www.javacooperation.gmxhome.de/TutorialStartEng.html
http://www.programmersheaven.com/articles/userarticles/mark/tut1/tut1.htm
http://www.programmersheaven.com/articles/userarticles/mark/tut4/tut4.htm
http://javaboutique.internet.com/tutorials/Java_Game_Programming/
http://java.about.com/od/gamegraphicsprogramming/Game_Multimedia_Programming.htm
http://freewarejava.com/tutorials/index.shtml
http://www.gamedev.net/reference/list.asp?categoryid=20
http://www.gamedev.net/reference/articles/article1262.asp
http://www.tutorialized.com/tutorials/Java/Game-Programming/1
http://www.oreilly.com/catalog/killergame/
http://www.javalobby.org/articles/game-programming/
http://www.javareference.com/articles/viewarticle.jsp?id=19

PHP is an Object Oriented Programming language. So, everything must defined in objects. This example will guide you to create class object.
<html>
<head>
<title>A Class with a Method</title>
<body>
<?php
// written by frozenade
class first_class{
var $me;
var $you;
function sayHello(){
print “hello <br />”;
$this->me = “this is me <br />”;
}
function sayHelloToo(){
print “<br />hello too <br />”;
print “you said: ” . $this->me;
$this->you = “and i see you”;
}
}
$obj = new first_class();
$obj->sayHello();
print $obj->me;
$obj->sayHelloToo();
print $obj->you;
?>
</body>
</html>