JM (Jason Meridth)

JM (Jason Meridth)

Learn, Converse, Share

06 Jul 2016

Stop and Remove All Docker Containers

Command remove all docker containers: docker stop '$(docker ps -a -q)' && docker rm '$(docker ps -a -q)' docker ps -a -q lists all container …
04 Jul 2016

Get Repository Root Path

I needed to find a way to get the path to the root of my Git repository. I found the answer in the following command: git rev-parse …
03 Jul 2016

Vim Tagbar Plugin

I found the tagbar Vim plugin last night and finally tried it out this morning. I like it. I mapped ,tb to showing it in my .vimrc. One of …
03 Jul 2016

Information Shown After Logging Into Ubuntu

Afer you log into an ubuntu instance you’ll usually see something like this: Welcome to Ubuntu 14.04.4 LTS (GNU/Linux 3.13.0-88-generic …
26 Jun 2016

Other People's Code

TL;DR We are all continually improving. Don’t forget that. Recently I’ve been hearing more and more developers say stuff like “Wow, what was …