View RandomPath.pde
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
/* | |
RANDOM PATH | |
Jeff Thompson | 2017 | jeffreythompson.org | |
Generates a random path between two predefined points. | |
*/ | |
import java.util.Date; // imports for timestamp |
View GenerateSlippyMapTiles.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
# -*- coding: utf-8 -*- | |
import argparse, magic, re, os, math, glob, shutil | |
''' | |
GENERATE SLIPPY MAP TILES | |
Jeff Thompson | 2016 | jeffreythompson.org | |
NOTE! | |
@danizen has an updated version for Python 3: |
View BashoHaiku.txt
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
Scarecrow in the hillock | |
Paddy field -- | |
How unaware! How useful! | |
Passing through the world | |
Indeed this is just | |
Sogi's rain shelter. | |
A wild sea- | |
In the distance over Sado |
View EveryOUI
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
EVERY ORGANIZATIONALLY UNIQUE IDENTIFIER (OUI) | |
Via: http://standards-oui.ieee.org/oui.txt | |
Details: http://en.wikipedia.org/wiki/Organizationally_unique_identifier | |
"Azimut" Production Association JSC | |
"RPC "Energoautomatika" Ltd | |
+plugg srl | |
01DB-METRAVIB | |
100fio networks technology llc | |
10NET COMMUNICATIONS/DCA |
View AnnualProjected-Modeled.csv
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
year | rcp45_weighted_mean | rcp45_min | rcp45_max | rcp85_weighted_mean | rcp85_min | rcp85_max | |
---|---|---|---|---|---|---|---|
2006 | 63.5 | 59.9 | 66.7 | 63.5 | 60.9 | 65.4 | |
2007 | 64 | 61.3 | 66 | 63.5 | 60.3 | 66.5 | |
2008 | 63.4 | 58.6 | 68.5 | 64 | 62 | 69.1 | |
2009 | 63.4 | 61.5 | 67 | 63.5 | 59.8 | 67.8 | |
2010 | 63.8 | 58.4 | 66.9 | 63.8 | 61.3 | 67.1 | |
2011 | 64.2 | 60.8 | 68.5 | 64.1 | 62.1 | 66.2 | |
2012 | 63.9 | 61.4 | 68.3 | 64.1 | 62.1 | 66.7 | |
2013 | 64 | 61.4 | 68 | 64.3 | 62.4 | 66.2 | |
2014 | 64.8 | 61.5 | 68.1 | 64.3 | 61.3 | 67.5 |
View Words In The Periodic Table: Results
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
Ac | |
AcCePt | |
AcCePtS | |
AcCEsS | |
AcCEsSeS | |
AcCrUAl | |
AcCRuAl | |
AcCrUAlS | |
AcCRuAlS | |
AcCrUEs |
View ShakespeareSonnets_ALL.txt
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 fairest creatures we desire increase, | |
That thereby beauty's rose might never die, | |
But as the riper should by time decease, | |
His tender heir might bear his memory: | |
But thou contracted to thine own bright eyes, | |
Feed'st thy light's flame with self-substantial fuel, | |
Making a famine where abundance lies, | |
Thy self thy foe, to thy sweet self too cruel: | |
Thou that art now the world's fresh ornament, | |
And only herald to the gaudy spring, |
View IsCountableNoun.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
# -*- coding: utf-8 -*- | |
import re, urllib2, json | |
def countable_noun(thing): | |
''' | |
searches Google NGram to see if a word is a countable/mass noun | |
returns True if countable, False if not |
View UploadDataOverWifi.ino
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
#include <SPI.h> | |
#include <WiFi101.h> | |
/* | |
UPLOAD DATA OVER WIFI | |
Jeff Thompson | 2017 | jeffreythompson.org | |
The great Arduino Wifi101 library includes lots of examples | |
of how to *get* data from the internet, but no examples on how |
View CrosshatchImage.pde
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
float gridSize = 20; | |
boolean crosshatch = true; | |
PImage img; | |
void setup() { | |
size(1400, 788); | |
pixelDensity(displayDensity()); |
NewerOlder