eGenting Programming Competition 2015 is coming this November and it is now open for registration. The layout or the format of the competition is remain unchanged except that eGenting Sdn Bhd is also having another competition - eGenting Bug Hunt - on next day of the eGenting Programming Competition. What is eGenting Programming Competition The E-Genting Programming … [Read more...]
eGenting Bug Hunt 2015 And Tips
eGenting Bug Hunt 2015 is coming this November and the registration is now open. This will be the third year the company organizing the annual event and it will be different from the past few years. … [Read more...]
eGenting Programming Competition 2014 – Presentation Of Prizes And Awards
eGenting Programming Competition 2014 is over and the result is out!. It is time to have the presentation of prizes and awards. This year, two events are held together - eGenting Programming Competition Prize Presentation and eGenting Bug Hunt Prize Presentation. All contestants are cordially invited to EGPC and EGBH Prize Presentation Date: Saturday, 31 January 20 … [Read more...]
Java: Static Initializer (Static Constructor)
Many Java programmers, including my self, might have mistaken that the portion of code that initializes the static variables of a class called the static constructor. Why Not A Java Static Constructor? It is actually not a constructor that initializes the static variables' value. This is because static variables do not need to and can not be constructed as they are being … [Read more...]
Java: How To Select Top N Objects From A List
There are several ways to select top N objects from A list in the order of multiple data members of an object. For example, you may select top 10 players (top scores) from a list ordered by the players' score_1, score_2 and then score_3. The Simplest Way But Ineffective The simplest way to pick the top N elements is to sort the whole list and get the top N elements. … [Read more...]