Leonel

1,316
reputation
165 views

Registered User

name Leonel
member for 1 year
seen Dec 17 at 17:15
website
location Brazil
age 26
Web developer, using Java on the server side. I also look as a hobbyist at other languages such as Python, Ruby and Lisp.
Dec
16
awarded  Popular Question
Nov
26
comment In Which Cases Is Better To Use Clojure?
@cobbal - Where he says "lisp", I think it's pretty safe to understand Common Lisp.
Nov
25
comment How to avoid press enter with any getchar()
getchar() is exactly for reading from STDIN. STDIN is not necessarily the keyboard, but it can also be a file.
Nov
18
awarded  Nice Question
Nov
10
comment When - and why - should you store data in the Windows Registry?
Unix: config stored in $HOME/.your-app There, solved in one iteration.
Nov
5
comment How do I overload the in operator in Groovy?
+1. I wish I could vote Guillaume Laforge for this +1, after all, he was the one to answer it on the mailing list ;-)
Oct
26
comment Does it matter which vendor’s JDK you build with?
+1 for bugs at 4 AM when you're on a date :-)
Oct
21
answered Guideline: while vs for
Oct
20
asked Emacs behind http proxy
Oct
20
comment use ${property} in a properties file ?
+1, I too fell in that trap. I'm used to do it in Ant, I though it was the default behaviour of java.util.Properties, but it really is not.
Oct
16
comment Different dependencies for different build profiles in maven
This can be used when targeting different web servers. For example, when building for a JavaEE 5 server, which offers libs such as JAXB, which you should not include in your war file, versus building for a JavaEE 1.4 server, where you should include the JAXB jar.
Oct
16
comment What are the JNDI dependencies?
@Jherico: I'm not suggesting to use spring as an object repo. I'm suggesting to use spring's JNDI facilities instead of configuring JNDI in java code.
Oct
15
answered What are the JNDI dependencies?
Oct
14
comment Is there an easier way to change BufferedReader to string?
Make sure that clojure tells you of anything that's not hinted: Turn on warn-on-reflection. clojure.org/api#toc27
Sep
21
comment Can I add jars to maven 2 build classpath without installing them?
+1, but can you explain a little more about scope "system" ?
Sep
21
comment Can I add jars to maven 2 build classpath without installing them?
-1, sometimes you just want to add a jar file without the trouble of installing it.
Sep
18
awarded  Yearling
Sep
14
comment Java Compilation - Is there a way to tell the compiler to ignore parts of my code?
Independent projects are overkill, separate source folders and a custom build script will do just fine. Use source folders for src/main, with the common codebase, and, say, src/java5 and src/java6 for features dependent on each version.
Sep
11
awarded  Citizen Patrol
Sep
10
comment Case-insensitive search using Hibernate
Hm... Prefer MatchMode.ANYWHERE over '%'
Sep
10
comment Case-insensitive search using Hibernate
"Begging" mode ? What about "Asking politely" mode or "Threatening" mode ?
Aug
24
accepted EmacsW32 renames buffers with old Windows shortened file names.
Aug
12
awarded  Notable Question
Aug
10
comment Using getopts in bash shell script to get long and short command line options
+1 for small example
Jul
30
awarded  Popular Question
Jul
17
awarded  Famous Question
Jul
16
asked XSL: how to copy a tree, but removing some nodes ?
Jul
15
comment How do I get just the jar URL from a jar: URL containing a ! and a specific file in the jar?
There are other ways to raise important questions, aside from telling one to "continue with his life"
Jul
13
awarded  Organizer
Jul
13
revised How malloc() and free() work
edited tags
Jul
8
asked ExtJS: how to have a TreePanel with several roots ?
Jul
7
comment Why does ant think I have an old version of Java?
Wrong. Ant does not care about $PATH, instead it uses $JAVA_HOME to find the compiler and VM executables. If $JAVA_HOME is empty, it will guess the executables from the VM that is running Ant.
Jul
6
comment Why would people use pure XML databases over plain RDBMs?
One argument for storing images as byte arrays inside a RDBMS is that the backup is easier to handle. I used to work on a web app where we stored images from users in a folder on the file system. It was painful to have two different backup routines, one for the DB and one for files.
Jul
3
asked SQL: how do I find if the contents of a varchar column are numeric ?
Jul
3
revised org.w3c.dom.Document to XML string using Groovy
Included version of Groovy that contains the class.
Jul
2
comment Groovy for loop execution time
+1 for looking at the bytecode.
Jul
2
answered How to convert int[] into List<Integer> in Java?
Jul
2
comment How to convert int[] into List<Integer> in Java?
How come a wrong answer gets so many upvotes ?
Jul
1
accepted org.w3c.dom.Document to XML string using Groovy
Jun
30
answered org.w3c.dom.Document to XML string using Groovy