Category Archives: Scala

Gradle, Lift, and Google App Engine

I’m getting back into the game a little bit, and I decided to take a look at Lift for web development. After an initially promising experience, I became totally unhappy with Eclipse (it began forgetting I had Google App Engine libraries on the classpath after every clean). So I moved back to the command line. [...]

Also posted in Gradle | Tagged , , , , , , | Leave a comment

Scala Scripting Challenge: What’s Equivalent to this Groovy?

Inspired by Scala being in the Scripting Language Bowl, I wanted to take a look at Scala as a scripting language. I’ve got this little Groovy code snippet: (System.in.text =~ /\b((\p{Lu}\p{Ll}+)+)\b/).each { println "I found: ${it[0]}" } When run, it looks like this: $ echo ” Foo bAr Baz robert Fischer alicia Weller ” | [...]

Posted in Scala | 11 Comments
  • Categories