Podcast: Play in new window | Download (Duration: 23:49 — 21.8MB) | Embed
Today’s episode is #18. We discuss a number of technologies. LINKS, provided by the code snippet below!
- Git Reference
- Cloud Performance Comparison
- Pyro 4.0 released
- Google I/O 2010 – BigQuery and Prediction APIs
- Groovy++ in action: DSL for embedding HttpServer | Groovy Zone
- 11 Creative Ways to Avoid Becoming a Workaholic
- Groovy/Grails Talk – Adding Feeds With Grails Plugins
- Groovy Goodness: Strip Leading Spaces from Lines with Margin – Messages from mrhaki
- Five Really Handy Google Command Line Tricks
GEEK OUT!
If you’re curious, here’s how we fetched and converted the list from delicious rss using Groovy Console
def feed = new XmlSlurper() .parse("http://feeds.delicious.com/v2/rss/developernews/18") println "<ul>" feed.channel.item.each { feedData -> println "<li><a href='${feedData.link}' " + ">$feedData.title</a></li>" } println "</ul>" return null
Enjoy,
Ken & Eric
PS – Standard disclosure: Chariot Solutions is a SpringSource partner.