Archive for the 'Rants' Category

Mon
7
Feb '05
Furl sucks
by Frank Spychalski filed under Rants

Why you shouldn’t use furl

I prefered del.icio.us anyway, that’s why I erased all my data from furl a few minutes ago…


Tue
28
Dec '04
java.util.regex.*
by Frank Spychalski filed under Java, Rants, Work

A little quiz – what’s the output of this little code snippet?

Pattern p = Pattern.compile("aaa");
System.out.println(p.matcher("bbbaaabbb").matches());
System.out.println(p.matcher("bbbaaabbb").replaceAll("ccc"));

Read the rest of this entry »