Shaun Stanislaus

Shaun Stanislaus

An Entrepreneur or Technopreneur with a little knowledge of everything. Frontend & Backend developer, execute ideas and pivot, bringing it to then next level.

Featured

This is how you import your Atom Plugins to a new laptop/hackintosh/PC Atom

Firstly, make sure when you have installed Atom, install the Commandline for Atom, you can find it in the Atom < Install Commandline
apm list — installed — bare > package-list…
Latest

Migrating your osx Homebrew packages to new mac?

# creates Brewfile in the current directory from currently-installed packages
brew bundle dump
# edit Brewfile
# install everything from the Brewfile
brew bundle install

Upgrading Python Packages

pip freeze | cut -d = -f 1 | xargs -n 1 pip search | grep -B2 'LATEST:'
pip freeze --local | grep -v '^\-e' | cut -d = -f 1  | xargs pip install -U

how to fix messed up PATH on your Mac/Linux

Here’s an intelligible one-liner solution that does all the right things: removes duplicates, preserves the ordering of paths, and doesn’t add a colon at the end. So it should give you a de-duplicated PATH that gives exactly the same behaviour as the…