a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!
| * Waterbear (https://github.com/dethe/waterbear) | |
| Visual programming language toolkit written in javascript. | |
| Need it for my simulation tool project. Also really a novelty in js-land. | |
| * Forge (https://github.com/digitalbazaar/forge) | |
| A javascript implementation of TLS - pretty rad. If this works well I'll never | |
| touch OpenSSL again. But it needs to be put to the test first. | |
| * TermKit (https://github.com/unconed/TermKit) | |
| Finally some sensible innovation in terminal-land. Terminals are incredibly |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
a list of slides from nodeconf
you may want to take a look at the jsconf-gist too!
A database where you PUT/POST documents to trigger replications and you DELETE to cancel ongoing replications. These documents have exactly the same content as the JSON objects we used to POST to /_replicate/ (fields "source", "target", "create_target", "continuous", "doc_ids", "filter", "query_params".
Replication documents can have a user defined "_id". Design documents (and _local documents) added to the replicator database are ignored.
The default name of this database is _replicator. The name can be changed in the .ini configuration, section [replicator], parameter db.
| #include <v8.h> | |
| #include <node.h> | |
| #include <unistd.h> | |
| #include <string.h> | |
| #include <glob.h> | |
| #include "audiolib.h" | |
| using namespace v8; | |
| using namespace node; |
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install | |
| curl http://npmjs.org/install.sh | sh |
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://www.npmjs.org/install.sh | sh |
| TarGZ = function(){}; | |
| // Load and parse archive, calls onload after loading all files. | |
| TarGZ.load = function(url, onload, onstream, onerror) { | |
| var o = new TarGZ(); | |
| o.onload = onload; | |
| o.onerror = onerror; | |
| o.onstream = onstream; | |
| o.load(url); | |
| return o; |