Why do we care? Most of out time is spent maintaining code. If you open an editor and: It’s blank – you are writing new code. Something already there – you are maintaining code. Most of us learned JavaScript on our own and developed our own “best” practices Maintainability = Developing as a Team What […]
Archives for June 2014
Batch Rename Files in Unix Command Line
Sometimes the unix shell script is still the best tool for the job. Today I needed to rename a bunch of java properties files from *.property to *.json. Ok, I needed to do more then just rename them, but it makes the example easier to assume that is all that I needed done 🙂 I […]
Easy Way to Run JavaScript Tests On Multiple Browsers Using Free Tools
tl;dr I though of an interesting idea that helps me test my JavaScript code simultaneously on multiple browsers using two free tools ngrok and screenshots from BrowserStack. Simply pipe your JavaScript tests running on localhost through ngrok to make them accessible to the real world. Then use that link on BrowserStack to generate screenshots on […]