Skip to content

Instantly share code, notes, and snippets.

View jeffreymorganio's full-sized avatar
💭
👨🏻‍💻

Jeffrey Morgan jeffreymorganio

💭
👨🏻‍💻
View GitHub Profile
@jeffreymorganio
jeffreymorganio / pretty-print-json
Created March 2, 2015 18:26
Pretty print JSON on the command line
cat file.json | python -m json.tool
@jeffreymorganio
jeffreymorganio / mongo-conf
Created March 10, 2015 18:14
Start MongoDB with a configuration file
mongod --config /usr/local/etc/mongod.conf
@jeffreymorganio
jeffreymorganio / add-csv-header
Created March 12, 2015 18:42
Add a CSV heading line by prepending the heading to the data.
echo -e '"Column 1 Name","Column 2 Name","Column 3 Name"' | cat - file.csv > file-with-heading.csv
@jeffreymorganio
jeffreymorganio / restart-ubuntu-window-manager-11.10
Created June 17, 2015 16:57
Restart window manager on Ubuntu 11.10 and newer
sudo service lightdm restart
@jeffreymorganio
jeffreymorganio / list-files-tracked-by.git.sh
Created July 28, 2015 09:44
List the files tracked by Git in the current branch.
git ls-tree -r HEAD --name-only
@jeffreymorganio
jeffreymorganio / fix-npm-permissions.sh
Created August 10, 2015 16:08
Fix the npm permissions problem when it can't install any dependencies.
sudo chown -R $USER ~/.npm
sudo chown -R $USER /usr/local/lib/node_modules
@jeffreymorganio
jeffreymorganio / add-git-tag.sh
Created August 15, 2015 17:36
Add a git tag and upload it to GitHub
git tag v1.0.0
git tag
git push origin --tags
@jeffreymorganio
jeffreymorganio / delete-git-tag.sh
Created August 15, 2015 17:38
Delete a git tag and remove it from GitHub
git tag -d v1.0.0
git tag
git push origin :refs/tags/v1.0.0
@jeffreymorganio
jeffreymorganio / uk-bounding-box.geojson
Created October 6, 2015 08:53
Longitude and latitude bounding box around the UK
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jeffreymorganio
jeffreymorganio / world-bounding-box.geojson
Created October 6, 2015 08:55
Longitude and latitude bounding box around the world
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.