Copy something directly into the clipboard from Terminal.appcat foo.txt | pbcopy ...English Read More
Java enums from a given stringTo generate a instance of a enum class by a given string you can ...English Read More
Show DB2 SQLCODESWith the db2 comand line tool: db2 ? SQL$FOO Replace $FOO with your sql ...English Read More
Java BigDecimal is negative?To check if a BigDecimal in Java is negative use the signum() method like ...English Read More
Testing that a method throws an exceptionIn Java with JUnit 3 public void testIndexOutOfBounds() { try { new ArrayList().get(0); fail("Should ...English Read More