GDG DevFest Malaysia
SDK
This is complete collection of Java stuff, as it has compiler which convert source code (*.java) to Java bytecode (*.class), jar acrhive to package class library to jar file, VisualVM to let user visualize the performance and memory capability… and many more.
JRE
JRE consists of the Java Virtual Machine (JVM), Java platform core classes, and supporting Java platform libraries. JRE is the runtime portion of Java software, which is all you need to run you Java application for eg: applet in web browser.
JVM
When you run your Java application as “java
JIT
JIT use to compile bytecode into machine specific native code, to optimize the targeted CPU and operating System. JIT is part of Java Virtual Machine.
When I tried the tutorial to create timer service using EJB this morning, I found out the @Schedule annotation for second does not work as what it suppose to be (print a message every second), keep trying …. trying…..
End up, the “reason” give me a BIG Ooooooooooo …..
What I did
@Singleton
public class ScheduleBean {
@Schedule(second = "*/1")
public void doWork() {
System.out.println("Hello dude... schedule is working...");
}
}
What it suppose to be
@Singleton
public class ScheduleBean {
@Schedule(second = "*/1", minute = "*", hour = "*")
public void doWork() {
System.out.println("Hello dude... schedule is working...");
}
}
As my current company not allow live messenger to be install in working box, so I have created this simple vb script to use live messenger, if you interested to do so, follow steps below 🙂
Set WshShell = CreateObject("WScript.Shell")
Set iexplore = CreateObject("InternetExplorer.Application")
iexplore.navigate "http://home.live.com/Handlers/WebIM.mvc"
iexplore.toolBar = false
iexplore.addressBar = false
iexplore.menuBar = false
iexplore.width = 600
iexplore.height = 750
iexplore.visible=true

For example, if you decide to adjust the project plan to:
Read this article wrote by Joel Spolsky.
Father of Java – James Gosling has resign from Oracle on April 2010 as he announce @ his own blog. In these recent years, there are lot of acquisition has done by giant software company, and Sun Microsystem is one of the deal who acquired by Oracle in January 2010.
I think I have to add in these 2 big event happened to Java History since I have just post it until 2006 🙂