Skip to content

Instantly share code, notes, and snippets.

View rbarner14's full-sized avatar

Ryan rbarner14

View GitHub Profile
@rbarner14
rbarner14 / PGCCoordinates.geojson
Created November 4, 2016 23:06
Plotting Coordinates within a Boundary in GeoJSON
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rbarner14
rbarner14 / Carson GeoJSON.geojson
Last active March 16, 2017 23:50
Carson GeoJSON
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rbarner14
rbarner14 / self-assessment1.js
Created August 15, 2017 04:12
Ryan Barner's 1st Self-Assessment
console.log('Remember the Titans');
function billTotal(subtotal) {
var tip = subtotal * 0.15;
var tax = subtotal * 0.095;
return subtotal + tip + tax;
}
billTotal(10);