We've made some great progress in the past two weeks, thanks y'all!
- New Website online
- New timeframe for project + survey
- Hackathon on Dec 1st/2nd
- First contact with Nairobi
- Team meeting on Monday
- Vacant team roles
- Misc
HOMEBREW_VERSION: 0.9 | |
HEAD: 26b753f72f329c2343342a46d8480b02be607ab1 | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
CPU: quad-core 64-bit arrandale | |
OS X: 10.7.4 | |
Kernel Architecture: x86_64 | |
Xcode: 4.3.2 | |
GCC-4.0: N/A | |
GCC-4.2: N/A |
// 1. I share my todoList with its todos | |
// And email with a Link containing a secret share key will | |
// be sent to [email protected] | |
var share = new Share() | |
share.insert('todolist', todoList) | |
share.insert('todo', [todo1, todo2, todo3]) | |
share.invite('[email protected]' ) | |
share.publish() | |
.fail( function(error) { /* handle error */ } ) | |
.done( function() {} ) |
body, html { | |
padding: 0; | |
margin: 0; | |
height: 100%; | |
font-family: "Impact"; | |
color: rgba(0,0,0,.1) | |
} | |
div { | |
position: relative; | |
width: 100%; |
body, html { | |
padding: 0; | |
margin: 0; | |
height: 100%; | |
font-family: "Impact"; | |
color: rgba(0,0,0,.2) | |
} | |
div { | |
position: relative; | |
width: 100%; |
body, html { | |
padding: 0; | |
margin: 0; | |
height: 100%; | |
font-family: "Impact"; | |
color: rgba(0,0,0,.2) | |
} | |
div { | |
position: relative; | |
width: 100%; |
We've made some great progress in the past two weeks, thanks y'all!
$ git clone https://github.com/couchdb/fauxton
$ cd fauxton
$ yeoman install
$ yeoman server
That will start fauxton at http://localhost:3501 and connect automatically to my local couch at http://localhost:5984. Thanks to yeoman, changes in HTML / CSS / JS are visible directly thanks to live reload.
// sign up | |
account.signUp('[email protected]', 'secret'); | |
// sign in | |
account.signIn('[email protected]', 'secret'); | |
// sign in via oauth | |
account.signInWith('twitter'); | |
// sign out |
// add a new object | |
var type = 'note'; | |
var attributes = {color: 'red'}; | |
store.add(type, attributes) | |
.done(function (newObject) {}); | |
.fail(function (error) {}); | |
// update an existing object | |
var type = 'note'; | |
var id = 'abc4567'; |