Category: Techy Thoughts

  • Kohana 2.3.4 Documentation

    I have been a Kohana application developer for quite a long time now and the version 2.3.4 is still the most comfortable framework to work with, personally at least. I know that there are still a few developers right now looking for the old documentation page which can be of course found in other sources.…

  • MySQL Migration / Merge Script (Linux)

    There are many ways of migrating MySQL data from server to server and its just essential to use mysqldump or any other tools to do the task for you. The simplest way to do this is via mysqldump (from source) then mysql (into target). However, in my case I have an already existing database with…

  • Alternative to CRON in Linux

    There are times when CRON doesn’t simply fill in the necessary requirements needed for a recurring task. Here’s the problem, let’s say I have a script that should run immediately after it has completed. In other words, a routine. For instance, I’d like to keep the script running without it overlapping with itself. My issue…