Search Results

0
votes

Hidden Features of Java

I enjoyed javadoc's taglet and doclet that enable us to customize javadoc output. …
-2
votes

Most useful free Java libraries?

Here are my choices. JUnit Log4J Apache Commons Configuration FindBugs (it is a tool rather than a library) …
2
votes

Last words of a ??? programmer

Eclipse: // TODO Auto-generated catch block …
2
votes

Are there any famous one-man-army programmers?

Rod Johnson, creator of Spring framework …
0
votes

What are the things Java got right?

Good harmony with IDE tools such as Eclipse, NetBeans, or IntelliJ. …
1
vote

Hidden features of Python

Manipulating Recursion Limit Getting or setting the maximum depth of recursion with sys.getrecursionlimit() & sys.setrecursionlimit(). We can limit it to preven …