Skip to content

Instantly share code, notes, and snippets.

View shawn-dsz's full-sized avatar
🎯
Solving Problems beautifully

Shawn D'Souza shawn-dsz

🎯
Solving Problems beautifully
View GitHub Profile
@shawn-dsz
shawn-dsz / npm-uninstall-g.sh
Created February 13, 2018 00:34 — forked from dmythro/npm-uninstall-g.sh
NPM: Uninstall all Global modules
#!/bin/bash
# Uninstall all Global modules from NPM
# http://stackoverflow.com/questions/9283472/command-to-remove-all-npm-modules-globally
npm -g ls | grep -v 'npm@' | awk '/@/ {print $2}' | awk -F@ '{print $1}' | xargs npm -g rm
@shawn-dsz
shawn-dsz / lodash-fp-documentation.md
Created September 22, 2017 00:55 — forked from jfmengels/lodash-fp-documentation.md
Generated docs for Lodash/fp. Help make them better at https://github.com/jfmengels/lodash-fp-docs
@shawn-dsz
shawn-dsz / gist:4890cd72d98a5b7c4baf69d4657a1448
Last active July 28, 2016 05:19 — forked from nkbt/.eslintrc.js
Strict ESLint config for React, ES6 (based on Airbnb Code style)
We couldn’t find that file to show.
@shawn-dsz
shawn-dsz / frontendDevlopmentBookmarks.md
Created March 9, 2016 02:34 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.