Monthly Archives: February 2016

things with strings

RuboCop is a Ruby static code analyzer. Out of the box it will enforce many of the guidelines outlined in the community Ruby Style Guide. The above links lead to authoritative sources about Rubocop. I wanted to make a comment about variable types, and one convention Rubocop enforces. This little program shows how loosely variables in… Read More »

git Software Version Control

Git command reference Step 1 – Initialize git (terminal) $ git config –global user.name  ‘Your Name Comes Here’ $ git config –global user.email ‘you@yourdomain.example.com’ $ git init Step 2 – Open a new repository (browser) Step 3 – Create git repository (terminal) homework $ pwd                 Confirm location of… Read More »