Skip to content

Instantly share code, notes, and snippets.

View benbrittain's full-sized avatar
🐘
Focusing

Benjamin Brittain benbrittain

🐘
Focusing
View GitHub Profile
#![feature(async_await)]
#[prelude_import]
use ::std::prelude::v1::*;
#[macro_use]
extern crate std as std;
pub async fn bar()
->
::std::future::from_generator(move
|mut async_ctx:
#![feature(async_await)]
pub async fn bar() -> u32{
5
}
pub async fn foo() -> u32{
let z = bar().await;
5 + z
}
@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"
@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}
4
1
0
1
1
1
1
0
1
3
10
2
2
2
2
2
3
1
3
2
7
3
1
1
1
0
2
1
2
1
#![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
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:
function initMedia() {
if(navigator.webkitGetUserMedia) {
navigator.webkitGetUserMedia({audio: true}, onSuccess, onFail);
} else {
alert('webRTC not available');
}
}
function onSuccess(stream) {