Categories
Development Career

Ultimate Developer CV: Creating your Modern Resume

Creating the Ultimate Developer CV Creating and Maintaining a CV (Curriculum Vitae) or Resume is one of the crappy things about being a developer. Unless you are a lifer (stay at a single company for life) you will have the arduous task of writing and maintaining one. Time to create the Ultimate Developer CV. One of […]

Categories
web development tools

The Fastest Way to Mock a REST API JSON Response

You’ve just found the Fastest Way to Mock a Rest API JSON Response. I know time is precious so I’ll be quick: First Step: Install the Server sudo npm install -g json-server Second Step: Create the Mock Response This will be depending on what you want the fastest mock REST API to be. Create it […]

Categories
DevOps

How to Fix the Vagrant Error: Failed to mount folders in Linux guest.

How to Fix: Failed to mount folders in Linux guest Failed to mount folders in Linux guest. This is usually because the “vboxsf” file system is not available. Please verify that the guest additions are properly installed in the guest and can work properly. The command attempted was: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent […]

Categories
DevOps

How to Fix the Vagrant Error: The guest machine entered an invalid state while waiting for it to boot.

The Vagrant Error The guest machine entered an invalid state while waiting for it to boot. Valid states are ‘starting, running’. The machine is in the ‘poweroff’ state. Please verify everything is configured properly and try again. If the provider you’re using has a GUI that comes with it, it is often helpful to open […]

Categories
PHP 5

Implement Testing on Yii Framework 1

How to Implement Testing on Yii Framework 1 So you’ve finally realised to verify the quality of the code in releases and make sure everything is working before you deploy to production you need to test. First we’ll use phpunit for unit testing. Installing PHPUnit with Composer We will only handle installing the required packages […]