My obsession with using an iPad for web development started all the way back with the first generation iPad. Tools then were sparse, but I made it work by jumping through some hoops. Today’s iPad is a much superior machine, and the available apps have come a long way toward making the iPad comfortable enough,
How to Backport WooCommerce Security Patches Using Git and Composer
August 13, 2019
We all love the idea of staying up-to-date with software, ensuring the latest features and security patches are available. From time to time though, business requirements may keep us at a specific, tested, version of software. It is not uncommon to find mission critical apps stuck in an older version due to customizations and testing
Compare a single file between git branches
June 3, 2016
Comparing a file between two git branches is quite easy. You can do it with both diff and difftool. Straight diff git diff BRANCH_ONE BRANCH_TWO — FILE Using difftool git difftool BRANCH_ONE BRANCH_TWO — FILE