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"
#![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:
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)
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]),
@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