debug

Useful Git Commands

Some useful command for me to remember. When working on a new feature switch back to master do a git pull to get the latest and create a new branch. git branch my-new-feature Now switch to the new branch. git checkout my-new-feature After working on you feature you can push...

How To Debug Your Cronjobs

Recently I needed to debug a cronjob I have setup. It is not as easy as just running the job sometimes you need to know exactly where the error is coming from. I find this the easiest way by far to find out what going on. Create a cronjob time...