Archive for March, 2004
Sunday, March 7th, 2004
Those Tricky Georgians
Tricky Georgians change their language and get a mention in the java.lang
source code. Shameless.
<from String.equalsIgnoreCase(String)>
if (ignoreCase) {
// If characters don’t match but case may be ignored,
// try converting both characters to uppercase.
// If the results match, then the comparison scan should
// continue.
char u1 = Character.toUpperCase(c1);
char u2 = Character.toUpperCase(c2);
if (u1 == u2) {
continue;
}
// Unfortunately, conversion to […]
1 Comment » - Posted in Java by dkaz
Sunday, March 7th, 2004
The RSS Education
“The reason why fierce animals are rare is that fierce animals are powerful, but
often very vulnerable. They attack the weaks in the hordes, not the strong ones
and this is because normally their community is much less protective and a
wound can be lethal for them.” - Stefano’s blog
Anything can be made measurable in a way that […]
