Skip to content

Instantly share code, notes, and snippets.

View jorge-autogravity's full-sized avatar

Jorge Cuadra jorge-autogravity

View GitHub Profile
@jorge-autogravity
jorge-autogravity / snippets.md
Last active November 27, 2017 19:59
git repo line count
# git repo line count
git ls-files | xargs wc -l

# git repo line count filtering out PNGs
git ls-files **\*[^.png] | xargs wc -l
@jorge-autogravity
jorge-autogravity / CALCULATOR_CHALLENGE.md
Last active May 31, 2017 17:17
Calculator Coding Challenge

Calculator Coding Challenge

Build a web app that displays a basic arithmetic calculator.

Suggested UI outcome

calculator preview

Techstack