This week, I bought myself a brand new 2017 15″ MacBook Pro, upgrading from an early 2013 15″ MacBook Pro (with Retina). I was able to migrate all my data in a matter of hours, and this is the process I followed (using Thunderbolt 2 to USB-C).
- Home
- Blog (Page 4)
Cheat Sheet: Git Commands
Master the Git commands using this useful Cheat Sheet. Printable PDF version included, covering everything from creating a repo to make changes, and working with branches.
Cheat Sheet, Git, PDFAWS EC2: Updating Security Groups using the AWS Command Line Tool
Working with multiple clients with their own AWS setups and security groups makes it difficult to work remotely sometimes. For instance, updating the many security groups with my current (dynamic) IP address so I can SSH into the server. Luckily, I’ve created a script for that.
Amazon Web Services, EC2, SecurityLaravel 5.2: Trim All Input using Middleware
Laravel 5.2 is already good at sanitizing input data received from GET and POST data, but it doesn’t remove excessive spacing at the beginning or end of the data. Luckily, this is easy to achieve using Custom Middleware.
Input Sanitization, Laravel 5, Laravel 5.2, PHPReplicating a Remote MySQL Database to Local Environment / Server
Ever needed to copy a remote database into a local environment to run tests on? This tutorial includes a bash command line script you can use to easily replicate a remote MySQL database to another environment.
Backup, Bash, Command Line, MySQL