Skip to content

Instantly share code, notes, and snippets.

View kevrom's full-sized avatar

Kevin Romano kevrom

  • Baton Rouge, LA
  • 12:28 (UTC -05:00)
View GitHub Profile
@btroncone
btroncone / rxjs_operators_by_example.md
Last active June 15, 2024 07:17
RxJS 5 Operators By Example
@TylerK
TylerK / node.walk.js
Last active December 2, 2015 03:16
Quick function to walk a local directory and return a Javascript object of it's files\folder structure
/*
* Recursively walk a directory and return JSON.
* @param {string} dir - root dir to walk, must supply this.
* @param {object} structure - internal object to build, no need to supply this.
*/
let walkDir = (dir, structure = []) => {
let files = fs.readdirSync(dir);
files.forEach((node, i) => {
@staltz
staltz / introrx.md
Last active July 15, 2024 15:43
The introduction to Reactive Programming you've been missing
@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active July 7, 2024 19:32
A badass list of frontend development resources I collected over time.