View async_await_no_tls.rs
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(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: |
View async_await_no_tls.rs
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(async_await)] | |
pub async fn bar() -> u32{ | |
5 | |
} | |
pub async fn foo() -> u32{ | |
let z = bar().await; | |
5 + z | |
} |
View Weka MLP example
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" |
View miller-rabin.rs
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 |
View gpsparse.py
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: |
View geneious stalker
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) |
View webpush-howto
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]), |
View something.tex
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} |
View SimpleONe
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 |
View LOTSATREES
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 |
NewerOlder