
Eclipse Ganymede J2EE plugins
Google AppEngine:

Google AppEngine - Eclipse Ganymede Installation
- Verify installation of Eclipse Ganymede IDE for J2EE development
- open Help -> Software Updates ...
- add new site http://dl.google.com/eclipse/plugin/3.4
Google project hosting
You can host your projects using code.google.com SVN repository.
- sign up to your google account
- go to http://code.google.com/hosting/
- click "Create a new project"
- go to "Source" Tab
- check out the code using command line SVN, or Eclipse SVN plugin (tigris)
- add your files (when you copy from previous SVN project remove all .SVN folders )
- commit
Java String parser
To split a String into words (tokens) where delimiter is white space...
String delims = "[ ]+";
String[] tokens = someLongString.split(delims);
Now you can look thru the tokens and do comparisons, etc.
CSS: centering DIV
<body><div class="background">The centered content is here
CSS background
background-image: url("images/map_bg.png");
background-repeat: no-repeat;
height: 900px;
width: 860px;
margin-left: auto;
margin-right: auto;
}
Using Composite Class
Interactive Map Implementation
Function To Censor String
public String censorString(String originalString)
{
StringBuffer orig = new StringBuffer(originalString);
Pattern p = Pattern.compile("[0-9/A-Z/a-z]+");
Matcher m = p.matcher(orig);
StringBuffer censor = new StringBuffer();
boolean result = m.find();
while (result)
{
String match = originalString.substring(m.start(), m.end());
if(match.equals("badword"))
m.appendReplacement(censor, "[censored]");
result = m.find();
}
m.appendTail(censor);
return censor.toString();
}
Adding maven and SVN plugin to Eclipse 2.4.2
GWT Client Side Date / Calculate Age
Date today = new Date();
Integer currentYear = new Integer(DateTimeFormat.getFormat("yyyy").format(today));
Integer currentMonth = new Integer(DateTimeFormat.getFormat("M").format(today));
Integer currentDay = new Integer(DateTimeFormat.getFormat("d").format(today));
Age calculating function:
public static int calculateAge(Date dob)
{
Date today = new Date();
Integer currentYear = new Integer(DateTimeFormat.getFormat("yyyy").format(today));
Integer currentMonth = new Integer(DateTimeFormat.getFormat("M").format(today));
Integer currentDay = new Integer(DateTimeFormat.getFormat("d").format(today));
Integer dobYear = new Integer(DateTimeFormat.getFormat("yyyy").format(dob));
Integer dobMonth = new Integer(DateTimeFormat.getFormat("M").format(dob));
Integer dobDay = new Integer(DateTimeFormat.getFormat("d").format(dob));
int age = currentYear - dobYear;
if((dobMonth > currentMonth) || (currentMonth == dobMonth && dobDay > currentDay))
age--;
return age;
}
GWT: using Timer as in Tread sleep()
My favorite quotations..
“A man should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects.” by Robert A. Heinlein
"We are but habits and memories we chose to carry along." ~ Uki D. Lucas
Popular Recent Articles
-
In my journey building software and managing technology teams, I've often witnessed the allure and danger of what Melissa Perri aptly na...
-
Introduction: A Language Model of My Own We are surrounded by large language models: systems trained on the vastness of the internet. Models...
-
Prompt: What do you really see in the selfie of myself? AI: I see a volcano about to blow up and I see a lost, scared boy in front of it. ...
-
I found myself wholly emptied, the mental exhaustion where you sit in your parked car and wake up minutes later, unsure how long you’ve been...
-
I have noticed a very unsettling statistic on my blog. This prompted a fascinating question about AI, blogs' future, and maybe even the...
-
I have been training and running DNN on Mac and I believe that they will become a staple of desktop ML world soon.
-
I have written some 2500 blog posts, but the idea of a book is eluding me. Since "plans are worthless, but planning is everything,...
-
Not every day is a great one. Today was particularly rough. I'm adjusting to a 6-hour time zone shift, recalibrating to my keto (sugar-f...
-
I started listening to Josh Kaufman's book, Personal MBA . The book resonates with me because I have always believed in continuous educ...