Good old days
I remember building really cool stuff like a JMS processing queue to handle shopping card orders. Creating Ant Scripts to build jars and war files creating bash scripts to deploying them to a Custer of 3 BEA Weblogic servers. Now it's all kind of a blur but I remember learning a ton, drinking a lot of coke and working 60-100 hours per week for weeks trying to code and deploy.
What I've discovered
I am really liking IntelliJ (JetBrains really knows programmers needs) but the project setup is way too complicated, I just want to create a simple Java Console project. I'm way too use to Visual Studio and the simple selection, I'm sure I could install packages and make Visual Studio complicated. So far I've found NetBeans to be the easiest to setup a quick Java project. I'm still going to have to dig into all these packages and see which ones are worth it.
Also PluralSight is a great resource for refreshing Java Skills and it's not badly priced.
Me playing with Java, here is my life code:
1 2 3 private class Life 4 { 5 bool dead = false; 6 int days = 0; 7 private Life() { 8 live(); 9 } 10 11 public void live() 12 { 13 while(!dead) { 14 code(); work(); family(); school(); 15 play(); 16 eat(); 17 sleep(); 18 days++; 19 } 20 } 21 }