OS X, Tools

NPM: ERRORINUSE

For error:

Error: listen EADDRINUSE :::3042

We just need to kill whatever that’s on the port. Probably the last exit wasn’t clean. Do:

$ lsof -i :3042 // to find out the PID number
$ kill -9 PID   // kill the process with its PID
Standard
OS X

Remapping Keys in Sierra

Because of my use of VIM, ESC is much more useful to me than the more easily accessible CapsLock. I’ve always used Seil to switch them, until it started to fail in the new MacOS, Sierra.

After a bit of search, Karabiner solved my problem wonderfully.

Standard