Skip to content

Instantly share code, notes, and snippets.

@rococodogs
Last active December 31, 2015 10:39
Show Gist options
  • Save rococodogs/7974344 to your computer and use it in GitHub Desktop.
Save rococodogs/7974344 to your computer and use it in GitHub Desktop.
idea for listbin app (? this _has_ to have been done before, right?)

listbin - shareable + anonymous lists

  • creates unordered lists, stores them in nosql database
  • hashes are assigned as keys
  • allow signup to allow easy access to past lists

example hash/json of list

{
    "id" : "6a2bds0",
    "author" : "malantonio",
    "title" : "shoppin' list", // title is optional
    "list" : [
        { "item" : "apples", "checked" : false },
        { "item" : "oranges", "checked" : false },
        { "item" : "potatoes", "checked" : false },
        { "item" : "thin spaghetti", "checked" : true },
        { "item" : "gingerbread cookies", "checked" : true }
    ]
}

shows up sortof like:

shoppin' list

  • apples
  • oranges
  • potatoes
  • thin spaghetti
  • gingerbread cookies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment