Posted on 21 July, 2011 (6 months ago)
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!
