Post-Marathon Blues?

Hmmm…no! Not for me.

I ran the Haspa Marathon Hamburg 2019, and I loved every bit of the preparation, run, and after race period.

Haspa Marathon Hamburg 2019 Finisher Medal

Should you how however find yourself in the situation, Runner’s Word sketches out some strategies beating the post-marathon blues.

Enjoy 🖖

Wanna run a full marathon?

If you are a runner like me, and set a goal on running your first marathon you might be of need for a training plan.

Sure you may think, hey I know myself, feet are feet, I already ran half marathons, what’s the difference… a full marathon cannot be that more difficult. Hmm, believe me it is. It simply does not need some more training, it needs a great deal more and most importantly… it needs you to know you are doing the right thing even when you body talks back.

So… first you have to learn to distinguish ‘good pain’ (discomfort from leaving your comfort zone) from ‘bad pain’ (due to injury), then you need to ignore ‘good pain’, and use a plan on how to increase your training volume without overdoing it.

I’ve found various free marathon training plans by RUNNER’s WORLD and the Sport Fitness Advisor. Check them out and pick the one suiting your current state of fitness.

PS: 3 weeks before my first full marathon…

Backup your files in a cronjob by a php script

The other day I considered setting up a cronjob for my site regularly deleting some temp files.

After Hours Programming warns against deleting files in php because there is no special php undo for what you delete.

So I reconsidered deleting the files and started thinking about how to backup them instead.

A quick search in internet helped me find a php function for recursive_copy_file provided by Guilherme Serrano in GitHubGist. I modified my script to copy by another file name while copying it into a backup folder and delete the original files afterwards. This way I could in case I would like to, recall the content of the files without them actually still be accessible in their original location. I don’t care about their actual names or creation dates.

For my script to know which folder it should start checking, I’ve put it in the folder it should backup and used getcwd()

However, if my script was to delete all files in the directory and leave my script still on position, it had to check the extension of the pathinfo() and make sure it won’t do nothing for “php”, or only copy files of another specific extension.

But still, even if it renames after copying, and deletes the original files, this isn’t saving much webspace. To solve this, I used rename() instead of copy(), compressed the copied files thus in a gz and unlink() afterwards the renamed copy.

Finally, back in the control center of my webspace I only needed to select this script in the Cronjob manager as a new cronjob and define the intervals for this action to be performed automatically.

Enjoy…