Skip to content

Instantly share code, notes, and snippets.

View benbrittain's full-sized avatar
🐘
Focusing

Benjamin Brittain benbrittain

🐘
Focusing
View GitHub Profile
function initMedia() {
if(navigator.webkitGetUserMedia) {
navigator.webkitGetUserMedia({audio: true}, onSuccess, onFail);
} else {
alert('webRTC not available');
}
}
function onSuccess(stream) {
7
3
1
1
1
0
2
1
2
1
10
2
2
2
2
2
3
1
3
2
4
1
0
1
1
1
1
0
1
3
@benbrittain
benbrittain / something.tex
Created February 21, 2013 01:11
layout for a tex document
% you need "ieeeconf.cls" in the same folder (wget http://css.paperplaza.net/conferences/support/files/ieeeconf.cls)
% run it like "latex something.tex"
% I then use divpdf to make the dvi a pdf
% there are a lot more settings and stuff you are probably gonna need, but this should get you started
\documentclass{ieeeconf}
\begin{document}
\title{A Survey of Function Reactive Programming}
658 let ioservice = Cc['@mozilla.org/network/io-service;1'].getService(Ci.nsIIOService);
659 var aLoadGroup = Cc["@mozilla.org/network/load-group;1"].createInstance(Ci.nsILoadGroup);
660 debug("mon: " + this._monitorURI);
661 debug("chan: " + this._channelURI);
662 let chan = ioservice.newChannel(this._monitorURI, 'UTF-8', null);
663 chan.loadGroup = aLoadGroup;
664 chan.notificationCallbacks = {
665 QueryInterface: XPCOMUtils.generateQI([Ci.nsIHttpPushListener,
666 Ci.nsIStreamListener,
667 Ci.nsRequestObserver]),
import urllib2
log = urllib2.urlopen('http://geneious.ginkgobioworks.com/log.txt').read().split("\n")
active_users = dict()
for line in log:
line = line.split(' ')
if len(line) > 4:
print(line)
from struct import *
def wkbToLatLng(coord):
byt = bytearray.fromhex(coord)
(d, t, lng, lat) = unpack('<?idd', byt)
return {"lat": lat, "lng": lng}
points=[]
with open('gpsmerge.csv') as csvfile:
reader = csv.DictReader(csvfile, delimiter=',')
for row in reader:
#![feature(step_by)]
use std::io::{BufReader,BufRead};
use std::fs::File;
use std::cmp::Ordering;
use std::collections::{BinaryHeap, HashSet};
use std::thread;
use std::sync::mpsc::channel;
/*
* Author: Benjamin Brittain
@relation NNandMLDataSet
@attribute X1 numeric
@attribute X2 numeric
@ATTRIBUTE Output {"One","Two"}
@data
-1.0,3.0, "One"
-1.0,2.0, "Two"
-0.99,2.9215801494, "One"
-0.99,1.94069601, "Two"
-0.98,2.84624238086, "One"