Skip to content

Instantly share code, notes, and snippets.

View rpbeltran's full-sized avatar

Ryan Beltran rpbeltran

  • Google
  • Austin Texas
View GitHub Profile
@rpbeltran
rpbeltran / covid19_county_spread.tsv
Last active April 1, 2020 20:43
Covid19 County Spread
0 1 date
-121.936784 48.070464 01/21/2020
-87.645455 41.894294 01/24/2020
-117.777207 33.675687 01/25/2020
-112.49893 33.345176 01/26/2020
-118.261862 34.196398 01/26/2020
-121.69051 37.220695 01/31/2020
-71.018253 42.338551 02/01/2020
-123.032229 37.727239 02/02/2020
-89.417852 43.067468 02/05/2020
@rpbeltran
rpbeltran / Nand2Tetris_Hardware_tst.sublime-build
Last active September 11, 2017 07:48
A build system for testing HDL files for the NAND2TETRIS Hardware Simulator
// Build System for Nand2Tetris HDL Test Files
{
// This says what command to run by default ( should work for OSX and linux )
"cmd": ["../tools/HardwareSimulator.sh", "$file"],
"windows": {
// This says what command to run if you use windows
@rpbeltran
rpbeltran / promise_times.js
Created December 18, 2016 17:36
Times Promise
// Times Promise
// By: Ryan Beltran
function times(t) {
return new Promise(function (resolve) {
for (var i = 0; i < t; i++) {
resolve();
}
});