Skip to content

Instantly share code, notes, and snippets.

@mascarenhas
Created November 6, 2009 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mascarenhas/228208 to your computer and use it in GitHub Desktop.
Save mascarenhas/228208 to your computer and use it in GitHub Desktop.
local done_recently = todo_list:find_all("done = ? and updated_at >= ?",
{ true, os.time{ year = 2009, month = 11, day = 01 }, order = "created_at desc" })
for _, item in ipairs(done_recently) do
print(item.title)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment