├── LICENSE ├── README.md ├── docker-cleanup.sh ├── fix-watchman.sh ├── gh-open-pr.sh ├── gh-repo-collaborators.sh ├── gh-repo-fork.sh ├── mac-cleanup.md ├── php-simple-http-server.sh ├── postgres_helper.sh ├── python-simple-http-server.sh ├── redirect-ports.sh ├── remove-node-modules.sh ├── reset-watchman-rn.sh ├── set-oracle-env.sh ├── start-mongo.sh └── terminal-branch-alias.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/README.md -------------------------------------------------------------------------------- /docker-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/docker-cleanup.sh -------------------------------------------------------------------------------- /fix-watchman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/fix-watchman.sh -------------------------------------------------------------------------------- /gh-open-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/gh-open-pr.sh -------------------------------------------------------------------------------- /gh-repo-collaborators.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/gh-repo-collaborators.sh -------------------------------------------------------------------------------- /gh-repo-fork.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/gh-repo-fork.sh -------------------------------------------------------------------------------- /mac-cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/mac-cleanup.md -------------------------------------------------------------------------------- /php-simple-http-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/php-simple-http-server.sh -------------------------------------------------------------------------------- /postgres_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/postgres_helper.sh -------------------------------------------------------------------------------- /python-simple-http-server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python -m SimpleHTTPServer 8080 3 | -------------------------------------------------------------------------------- /redirect-ports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/redirect-ports.sh -------------------------------------------------------------------------------- /remove-node-modules.sh: -------------------------------------------------------------------------------- 1 | find . -name "node_modules" -type d -exec rm -rf "{}" \; -------------------------------------------------------------------------------- /reset-watchman-rn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/reset-watchman-rn.sh -------------------------------------------------------------------------------- /set-oracle-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/set-oracle-env.sh -------------------------------------------------------------------------------- /start-mongo.sh: -------------------------------------------------------------------------------- 1 | sudo service mongod start -------------------------------------------------------------------------------- /terminal-branch-alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgcmarins/awesome-scripts/HEAD/terminal-branch-alias.sh --------------------------------------------------------------------------------