Critical video on how school has teaching PEMDAS wrong.
Note, in Australia it’s BOMDAS but equates to the same thing…
Critical video on how school has teaching PEMDAS wrong.
Note, in Australia it’s BOMDAS but equates to the same thing…
Great article on how we can develop the tools today that help people in the future when we don’t know what our tools will be used for.
Awesome #video from Jay Silver, he’s the guy that did Makey Makey on #KickStarter
Want to be in a band ? Refer to this chart before deciding your role…
Great tip on CouchDB keys
One of the things I largely underestimated when I first started working with CouchDb was the importance of a meaningful ID for documents. The default of letting the database set a UUID for you seems reasonable at first, but the UUID is largely useless for querying. On the other hand, a good ID scheme is like having a free index for which you don’t have to maintain a view. You can just query using the _all_docs view, which is built in. Well thought out ID’s can save you tons of headaches and fiddling with views later. Particularly with large data sets, this can be a big deal, because views can take up a significant amount of storage space and processing. Unfortunately, they are hard to change after you get a lot of data in the database, so it is worth thinking about before you get very far into the data.
View original post 1,159 more words
Understand delete in javascript
This is a really in depth article on the delete operation in JavaScript.
It’s a long read but worth it.