Skip to content

Instantly share code, notes, and snippets.

View eob's full-sized avatar

Ted Benson eob

View GitHub Profile
Name URL Class Status Description
Awesound https://awesound.com F2 AdWords for podcasts
BillionToOne http://www.billiontoone.com F2 Fetal genetic testing in India
Bulletin http://shop-bulletin.com F2 Airbnb for retail
Cerplus http://www.getcerplus.com F2 B2B marketplace for surplus produce
ConnectHealth http://www.connecthealth.io F2 Telemedicine and prescription delivery in Africa
Ctzen https://en.ctzen.co F2 311 for the developing world
GTRACK Technologies http://www.gtracktechnologies.com F2 Nanoparticle tracers for fracking
HDP Health https://www.hdphealth.com F2 Helping clinical trials find patients using AI
Ilium VR https://iliumvr.com F2 Rifle controller for virtual reality
64.242.88.10 - - [07/Mar/2004:16:05:49 -0800] "GET /twiki/bin/edit/Main/Double_bounce_sender?topicparent=Main.ConfigurationVariables HTTP/1.1" 401 12846
64.242.88.10 - - [07/Mar/2004:16:06:51 -0800] "GET /twiki/bin/rdiff/TWiki/NewUserTemplate?rev1=1.3&rev2=1.2 HTTP/1.1" 200 4523
64.242.88.10 - - [07/Mar/2004:16:10:02 -0800] "GET /mailman/listinfo/hsdivision HTTP/1.1" 200 6291
64.242.88.10 - - [07/Mar/2004:16:11:58 -0800] "GET /twiki/bin/view/TWiki/WikiSyntax HTTP/1.1" 200 7352
64.242.88.10 - - [07/Mar/2004:16:20:55 -0800] "GET /twiki/bin/view/Main/DCCAndPostFix HTTP/1.1" 200 5253
64.242.88.10 - - [07/Mar/2004:16:23:12 -0800] "GET /twiki/bin/oops/TWiki/AppendixFileSystem?template=oopsmorem1=1.12m2=1.12 HTTP/1.1" 200 11382
64.242.88.10 - - [07/Mar/2004:16:24:16 -0800] "GET /twiki/bin/view/Main/PeterThoeny HTTP/1.1" 200 4924
64.242.88.10 - - [07/Mar/2004:16:29:16 -0800] "GET /twiki/bin/edit/Main/Header_checks?topicparent=Main.ConfigurationVariables HTTP/1.1" 401 12851
64.242.88.10 - - [07/Mar/2004:16:30:29 -0800
window.JwtAjax = window.JwtAjax || {
/*
* Utils..
*/
getURLParameter: function(name) {
return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search) ||
[null, ''])[1].replace(/\+/g, '%20')) || null;
},
@eob
eob / example.js
Created March 3, 2017 23:16
Including External Javascript Libraries in Cloudstitch
/*
* In the Javascript part of your widget.. find the afterRender hook.
*/
module.exports.afterRender = function(elem, data) {
/*
* Now we manually create a SCRIPT tag
*/
var script = document.createElement('script');
script.type = 'text/javascript';

Keybase proof

I hereby claim:

To claim this, I am signing this object:

cloudstitch.get(username, appname, (data) -> callback(data))
@eob
eob / include-cloudstitch-framer.coffee
Last active February 1, 2017 21:15
Cloudstitch Framer Module Integration
cloudstitch = require "cloudstitch"
@eob
eob / dash-sms.py
Last active January 6, 2017 23:21
Extra code to send an SMS via Dash
from twilio.rest import TwilioRestClient
client = TwilioRestClient("ACCOUNT SID", "AUTH TOKEN")
message = client.messages.create(body="Everest wants a joke!", to="DADS PHONE", from_="TWILIO NUMBER")
interface Token {
service: "github"
token: string
}
interface User {
username: string
}
interface Status {

Consider the general concept of a map, dictionary, or hash data structure.

E.g.

set( key: "a", value: 1 )
set( key: "b", value: 10 )
get( key: "a" ) returns 1
get( key: "b" ) returns 10