Skip to content

Instantly share code, notes, and snippets.

View lostrouter's full-sized avatar

Michael Steinberg lostrouter

  • Washington
View GitHub Profile
@lostrouter
lostrouter / android-terminal-shortcuts.md
Created April 20, 2020 22:30
How to create terminal shortcuts to launch android emulator without opening android studio

How to create terminal shortcuts to launch Android Emulator without opening android studio

Windows

In your bash terminal

code ~/.bashrc
@lostrouter
lostrouter / set-node-version.sh
Last active August 29, 2015 14:24
bash script wrapping nvm to provide almost certain way to use specified version of node
#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "incorrect usage"
echo "Usage:"
echo " SetNodeVersion <VERSION>"
exit -1
fi
NODE_VERSION=$1