- Carter Rabasa
- Developer Evangelist, Twilio
- JSConf EU 2014
- Show of hands, who here has organized an event that brought developers together?
| ### Keybase proof | |
| I hereby claim: | |
| * I am crabasa on github. | |
| * I am carterrabasa (https://keybase.io/carterrabasa) on keybase. | |
| * I have a public key whose fingerprint is BBF3 AD23 FD40 EC24 1E16 BF9F 4495 F1D3 412F B86B | |
| To claim this, I am signing this object: |
Some sources that I used when building my talk on "Open Sourcing Community"
| using System; | |
| using System.Collections.Generic; | |
| using JWT; | |
| namespace HelloWorld | |
| { | |
| class Hello | |
| { | |
| static void Main() | |
| { |
| var Sublevel = require('level-sublevel') | |
| , Levelup = require('levelup') | |
| , bytewise = require('bytewise') | |
| var db = Sublevel(Levelup('./db', {keyEncoding: bytewise, valueEncoding: 'json'})) | |
| var foo = db.sublevel('foo') | |
| foo.put(['carter', 'rabasa'], {eyes: 'brown'}, function(err) { | |
| foo.createReadStream().on('data', console.log) |
| #!/bin/sh | |
| bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) | |
| source ~/.bash_profile | |
| rvm install 1.9.2 | |
| rvm --default 1.9.2 | |
| gem update | |
| gem install rails |
| var magic = function () { | |
| twilio.getSmsMessages("623-850-4926", "2012-04-02", function (success) { | |
| success.sms_messages.forEach(function (message) { | |
| twilio.makeCall("623-850-4926", message.from, "http://demo.rabasa.com/tombstone.php"); | |
| }); | |
| }); | |
| }; |
| (function (globals) { | |
| var | |
| // The username and password for BASIC auth | |
| username, | |
| password, | |
| // CHANGE THIS | |
| apiRoot = "https://api.foo.com/version", |
| [06/22 20:39:58 PDT] ERROR: failed to save vote info to DB, retrying | |
| [06/22 20:39:58 PDT] ERROR: failed to save vote info to DB, retrying | |
| [06/22 20:39:58 PDT] ERROR: failed to save vote info to DB, retrying | |
| [06/22 20:39:58 PDT] ERROR: failed to save vote info to DB, retrying | |
| [06/22 20:39:58 PDT] ERROR: failed to save vote info to DB, retrying | |
| [06/22 20:39:58 PDT] ERROR: failed to save vote info to DB, retrying | |
| [06/22 20:39:59 PDT] ERROR: failed to save vote info to DB, retrying | |
| [06/22 20:39:59 PDT] ERROR: failed to save vote info to DB, retrying | |
| [06/22 20:39:59 PDT] ERROR: failed to save vote info to DB, retrying | |
| [06/22 20:39:59 PDT] ERROR: failed to save vote info to DB, retrying |
| Application = Thorax.Application.create() | |
| # convenience for debugging | |
| window.Application = Application | |
| # main view controller | |
| Application.ViewController.create | |
| parent: Application | |
| routes: | |
| '': 'index' |