Skip to content

Instantly share code, notes, and snippets.

View teamcoltra's full-sized avatar

Travis Peacock teamcoltra

View GitHub Profile
//import('dart:html');
//import('dart:json');
import 'dart:html';
//import 'dart:json';
import 'dart:convert';
// @TODO: Add G+ api
locate(pos) {
var lat = pos.coords.latitude;
var lng = pos.coords.longitude;
UPDATE airports SET lat='-6.081689', lng='145.391881', timezone='10' WHERE code='AYGA';
UPDATE airports SET lat='-5.207083', lng='145.7887', timezone='10' WHERE code='AYMD';
UPDATE airports SET lat='-5.826789', lng='144.295861', timezone='10' WHERE code='AYMH';
UPDATE airports SET lat='-6.569828', lng='146.726242', timezone='10' WHERE code='AYNZ';
UPDATE airports SET lat='-9.443383', lng='147.22005', timezone='10' WHERE code='AYPY';
UPDATE airports SET lat='-3.583828', lng='143.669186', timezone='10' WHERE code='AYWK';
UPDATE airports SET lat='61.160517', lng='-45.425978', timezone='-3' WHERE code='BGBW';
UPDATE airports SET lat='64.190922', lng='-51.678064', timezone='-3' WHERE code='BGGH';
UPDATE airports SET lat='67.016969', lng='-50.689325', timezone='-3' WHERE code='BGSF';
UPDATE airports SET lat='76.531203', lng='-68.703161', timezone='-4' WHERE code='BGTL';
@teamcoltra
teamcoltra / sentiment_analysis.ipynb
Created September 23, 2015 15:35 — forked from aloknayak29/sentiment_analysis.ipynb
sentiment analysis of movie reviews using NLTK naive bayes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@teamcoltra
teamcoltra / badwords.csv
Created September 8, 2015 07:44
Weighted "Bad Words" / Profanity with sexual, general, and offensive categorizaton
word category strength
anal sexual 2
anus general 1
arrse general 1
arse general 1
ass general 1
ass-fucker aggressive 2
asses general 1
assfucker aggressive 2
assfukka aggressive 2
### Keybase proof
I hereby claim:
* I am teamcoltra on github.
* I am teamcoltra (https://keybase.io/teamcoltra) on keybase.
* I have a public key whose fingerprint is 2F05 60FB 0A62 5A12 6849 6760 25A5 6BE8 2BE7 0DCD
To claim this, I am signing this object:
@teamcoltra
teamcoltra / gist:4114398
Created November 19, 2012 22:15
Does this reverse posts order?
site.config = site.config.deep_merge({
'gallery' => site.gallery.sort { |a, b| b <=> a },
'gallery_old_first' => site.gallery
})