This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function initMedia() { | |
if(navigator.webkitGetUserMedia) { | |
navigator.webkitGetUserMedia({audio: true}, onSuccess, onFail); | |
} else { | |
alert('webRTC not available'); | |
} | |
} | |
function onSuccess(stream) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 | |
3 | |
1 | |
1 | |
1 | |
0 | |
2 | |
1 | |
2 | |
1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 | |
2 | |
2 | |
2 | |
2 | |
2 | |
3 | |
1 | |
3 | |
2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 | |
1 | |
0 | |
1 | |
1 | |
1 | |
1 | |
0 | |
1 | |
3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% 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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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" |
OlderNewer