Posts tagged 'software-development' Page 1 of 1

Remote Pair Programming

Pair programming is a fantastic way of sharing ideas, training, being productive and writing high quality code. Remote pair programming can be just as effective. I love pairing on projects. If you ...

My Dotfiles

My dotfile repo has got big and complicated, and I should probably definitely get round to streamlining some of it with ansible. But, there are some things about it that I think are good ideas, tha...

Git Merge Conflicts

Git Diff Highlighting Git now comes with a useful diff highlighter that highlights both the line and word level changes to files. When using git add -p the specified script in the interactive.diff...

Git Notes

See git flight rules for useful, detailed notes. My notes here are things I like to remind myself of regularly. You will recognise many of them, but look carefully for some useful tips! Logs git ...

Pry

Ruby ships with an interactive shell, or REPL (Read-Eval-Print Loop) called irb. It’s pretty handy for quick ruby evaluations, or running rails console commands. You can also require files or gems...