DevNews #18 – HTML 5, Google CL, Spring Security Patch, and more

by
Tags: , , , , , ,
Category:

Today’s episode is #18.  We discuss a number of technologies.  LINKS, provided by the code snippet below!

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.