by bradmaxs | Dec 15, 2016 | Development, Linux
Sometimes WebPack crashes and Node doesn’t always provide us with the easiest error messages. Error: listen EADDRINUSE 127.0.0.1:<some-port> Find the process ID (PID): ps aux | grep node Kill It: kill -9 <PID>
by bradmaxs | Mar 23, 2016 | Development
There are aliases for some common git commands at the bottom. Just copy and paste them into your .bashrc or .bash_profile file in your User’s folder. You will need to open a new Terminal or Git Bash window for them to take effect. git pull [options]...
by bradmaxs | Jan 22, 2016 | Development, JavaScript
What is an Immediately-Invoked Function Expression or IIFE? An Immediately-Invoked Function Expression or IIFE, is an anonymous function expression that is invoked immediately. Immediately-Invoked Function Expression (function() { // do some stuff })(); 123...
by bradmaxs | Dec 30, 2015 | Development, Linux
You need to transfer some files to or from your server but don’t have an FTP connection available… Use Secure Copy (SCP)! Secure Copy (SCP) is software that enables file transfer between hosts both locally and remotely and uses Secure Shell (SSH) for...
by bradmaxs | Aug 10, 2015 | Development
It is recommended that you read the Git Basics section at the end for a better understanding of how Git works internally thus giving you a better understanding of the commands themselves. There are references to the Git Basics sections throughout. Finally, I have...