juddsolutions.blogspot.com
Judd Solutions: April 2009
http://juddsolutions.blogspot.com/2009_04_01_archive.html
Random thoughts about my interests in Java, consulting, scripting in Java and software development (especially for small and medium size organizations). Wednesday, April 8, 2009. Startup Weekend Columbus 2 (SWCII) Experience. I can’t believe it is the Wednesday night after SWCII. Already. I am still riding on the high of the weekend. Not only did I get to start a new company this and meet some new friends I also got to geek out too by writing an iPhone application. Senior Consultant at Sogeti. The team a...
insidethemachine.wordpress.com
How Clojure improved my Groovy | Inside the Machine
https://insidethemachine.wordpress.com/2010/01/15/how-clojure-improved-my-groovy
Discussing languages and technologies associated with the JVM. How Clojure improved my Groovy. How Clojure improved my Groovy. January 15, 2010. Dave Thomas and Andy Hunt have been saying for years that you should learn new programming languages. Doing so improves your skill in any language, whether you use the new language or not. I believed this with some skepticism, but decided nonetheless to start learning Clojure. After reading The Pragmatic Programmer. Def elements = [It, works, on, my, machine!
insidethemachine.wordpress.com
Who needs a mock framework? | Inside the Machine
https://insidethemachine.wordpress.com/2009/07/26/who-needs-a-mock-framework
Discussing languages and technologies associated with the JVM. Who needs a mock framework? Who needs a mock framework? July 26, 2009. In Groovy, you can create mocks and stubs using native language features, so you can forget about learning a mock framework. Class Author { def getName() { return 'Josh Brown' } def isFamous() { return false } }. Let’s stub the isFamous method:. Def author = [isFamous: {true}] as Author assert 'Josh Brown' = author.getName() assert author.isFamous(). Method to be tested.
insidethemachine.wordpress.com
SnakeYAML and Groovy | Inside the Machine
https://insidethemachine.wordpress.com/2010/01/13/snakeyaml-and-groovy
Discussing languages and technologies associated with the JVM. January 13, 2010. I had some fun playing with SnakeYAML. And Groovy the other day. Below are some of my results. If you want to run this in your groovyConsole, you need to download SnakeYAML. And add the snakeyaml- version .jar to your classpath. From YAML to Groovy:. From Groovy to YAML:. Isn’t YAML so much simpler and cleaner than XML? Why aren’t more of us using YAML with Java and Groovy? January 19, 2010 at 9:23 pm. Could anybody give a h...