Hello world post!

Showing a quote:
There are two hard things in computer science: cache invalidation, naming things, and off-by-one errors.
And now a small code sample in Groovy:
def posts = datastore.execute {
    from posts limit 10
    where created < new Date()
    and draft == false
    and type == 'post'
    if (category) {
        and categories == category
    }
    sort desc by created
}
And a little logo here:
Done for today!
 
© 2011 Guillaume Laforge | The views and opinions expressed here are mine and don't reflect the ones from my employer.