O Netbeans.org anunciou a disponibilidade do NetBeans IDE 6.5 Beta. Abaixo a tradução do anúncio: O NetBeans IDE 6.5 introduz várias novas funcionalidades, incluindo uma…
O Netbeans.org anunciou a disponibilidade do NetBeans IDE 6.5 Beta. Abaixo a tradução do anúncio: O NetBeans IDE 6.5 introduz várias novas funcionalidades, incluindo uma…
Duke Luau Style, under public domain. Source: duke_lual.svg.
import java.util.Calendar; public class Main { public static void main(String[] args) { Calendar today = Calendar.getInstance(); System.out.println(“Today is ” + today.getTime()); } } In this…
Rafael Carneiro, Tarso Bersa, Rafael Ponte and me, after 8 hours of bus travel, arrived in Juazeiro do Norte to talk at the first JavaDay…
This saturday we had our CEJUG traditional event CCT (Café com Tapioca) done monthly, each time in a diferent university. This time we had three…
Essa semana está cheia de eventos relacionados a Software Livre e quem está em Fortaleza não pode perder essas oportunidades. Para citar alguns: Esse ano…
A duke mom for mother’s day. Original svg file: duke_mom.svg.
This post continues a serie of posts I’m writing about 2D game development in Java. A simple example of an JPanel that implements KeyListener (and…
Tilesets are a common technique in game development to create all kinds of tile-based games (from strategy to RPG games). Here’s a example of simple…
You should know that variable values are cyclic in Java. public class Test{ public static void main(String args[]){ System.out.println(Integer.MAX_VALUE); System.out.println(Integer.MIN_VALUE); int x = Integer.MAX_VALUE +…