Zorched - zorched.net - Zorched / One-Line Fix
General Information:
Latest News:
Mapping SQL Joins using Anorm 28 Jun 2013 | 08:15 pm
Anorm is a Scala framework that is a fairly thin veneer over JDBC that allows you to write SQL queries and map results into Scala objects. The examples easily found on the web have a tendency to be fa...
Java 7 Code Coverage with Gradle and Jacoco 14 Sep 2012 | 12:18 am
Thanks Steven Dicks’ post on Jacoco and Gradle is a great start to integrating Jacoco and Gradle, this is a small iteration on top of that work. Java 7 Code Coverage The state of Code Coverage took a ...
Java 7 Code Coverage with Gradle and Jacoco 14 Sep 2012 | 12:18 am
Thanks Steven Dicks’ post on Jacoco and Gradle is a great start to integrating Jacoco and Gradle, this is a small iteration on top of that work. Java 7 Code Coverage The state of Code Coverage took a ...
Groovy Mocking a Method That Exists on Object 23 Mar 2012 | 07:26 am
In Groovy, the find method exists on Object. The find method is also an instance method on EntityManager which is commonly used in JPA to get an instance based on a database id. I was trying to create...
Groovy Mocking a Method That Exists on Object 22 Mar 2012 | 11:26 pm
In Groovy, the find method exists on Object. The find method is also an instance method on EntityManager which is commonly used in JPA to get an instance based on a database id. I was trying to create...
Testing and Internal Implementation in .NET 7 Feb 2012 | 09:47 am
Switching back and forth between Java and .NET lets you see some of the differences between the two platforms more easily. This happened to me the other day when I switched from Java to .NET and was w...
Testing and Internal Implementation in .NET 7 Feb 2012 | 12:47 am
Switching back and forth between Java and .NET lets you see some of the differences between the two platforms more easily. This happened to me the other day when I switched from Java to .NET and was w...
Using Groovy AST to Add Common Properties to Grails Domain Classes 10 Nov 2011 | 05:24 pm
Groovy offers a lot of runtime meta-programming capabilities that allow you to add reusable functionality in a shared fashion. Grails plugins make use of this ability to enhance your project. One of t...
Using Groovy AST to Add Common Properties to Grails Domain Classes 10 Nov 2011 | 08:24 am
Groovy offers a lot of runtime meta-programming capabilities that allow you to add reusable functionality in a shared fashion. Grails plugins make use of this ability to enhance your project. One of t...
Check Multiple Mercurial Repositories for Incoming Changes 27 Aug 2011 | 03:16 am
Currently I have a whole bunch of Mercurial repositories in a directory. All of these are cloned from a central repository that the team pushes their changes to. I like to generally keep my local repo...