Skip to content

Instantly share code, notes, and snippets.

View lorenries's full-sized avatar

Loren Riesenfeld lorenries

View GitHub Profile
@lorenries
lorenries / wola-colors.css
Last active July 18, 2017 14:11
A CSS snippet with WOLA's brand color palette, with functional classes for backgrounds, hovers, and borders.
.wola-blue { color: #00b5ef; }
.bg-wola-blue { background-color: #00b5ef; }
.b--wola-blue { border-color: #00b5ef; }
.hover-wola-blue:hover,
.hover-wola-blue:focus { color: #00b5ef; }
.hover-bg-wola-blue:hover,
.hover-bg-wola-blue:focus { background-color: #00b5ef; }

Keybase proof

I hereby claim:

  • I am lorenries on github.
  • I am lries (https://keybase.io/lries) on keybase.
  • I have a public key ASCYga3-ypRV8bpIP_lc1OM7cil62whMo3MVBsRjStHM1Ao

To claim this, I am signing this object:

We can't make this file beautiful and searchable because it's too large.
OBJECTID,Name,Date,Size,Type,Symbol,Details,Date & Time,Location,Elevation,Height above Elevation,Delivery,Purpose,Sponsor,Yield,x-coord,y-coord,Notes,Notes 2,Nuclear,URL,x,y
7,USA: Toggle / Silene, 28 Jun 1973, small ,Nuclear testing database/USA's Tests/Toggle Series/USA: Toggle/Silene/USA: Toggle ,4,USA: Toggle / Silene,28 Jun 1973 19:00:45.16 UTC,"NTS, Areas 1-4, 6-10 (Yucca Flat): U9ck, ",1254m,-198.12m,Underground shaft,Weapon Development,Sponsor: UCRL,small,-116.041789999999,37.11486,,,Yes,,-116.04179,37.1148600000001
9,USA: Roller Coaster / Double Tracks, 15 May 1963, none ,Nuclear testing database/USA's Tests/Roller Coaster Series/USA: Roller Coaster/Double Tracks/USA: Roller Coaster ,1,USA: Roller Coaster / Double Tracks,15 May 1963 09:55:-- UTC,"Tonopah Test Range, Nevada ",1518m,0m,Dry surface,Safety/transportation test,Sponsor: UK,none,-116.987149999999,37.70527, Storage-transportation safety experiment measured plutonium dispersal risk,,Yes,,-116.98715,37.70527
10,USA: Roller Coaster / Clea
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
// Program 14
importScripts('paper.js');
(async () => {
// Get a canvas object for this paper.
const canvas = await paper.get('canvas');
// Get context
const ctx = canvas.getContext('2d');
// load libraries
const fs = require("fs");
const LineByLineReader = require("line-by-line");
// load our station location data into memory
const bikeshareLocations = JSON.parse(
fs.readFileSync("./processed-locations.json")
);
const lr = new LineByLineReader("./data/csv/2017clean.csv");