Over the last few months, we have been working with one of the leading tyre manufacturers in India. It’s been more than 150 years since Charles Goodyear patented vulcanisation and that set off a boom …
Blog
How to rotate log files in your Rails Application?
A common requirement in managing web apps is to rotate your application logs on a daily basis or based on log file size for heavily used apps. Most web frameworks have such as Rails ship with a …
Continue Reading about How to rotate log files in your Rails Application? →
How to schedule a rake task in Heroku?
If you ran a rails app on a single server, all you had to do to schedule jobs is to configure a cron to invoke your rake tasks. Things are not so straightforward on restricted environments like …
Continue Reading about How to schedule a rake task in Heroku? →
How to amend a commit in git?
Making mistakes in a git commit is quite common. Usually, it is a typo in the commit message and it's quite tempting to just leave it that way and move onto the next feature. At Juhomi, we have …
How to do a nightly backup of your postgres database?
We use postgres as the database for most of the web apps we develop for our customers. In this post, I cover the simplest way to do a nightly backup of the postgres db using the pg_dump …
Continue Reading about How to do a nightly backup of your postgres database? →
How to secure your Apache and nginx servers against the Poodle SSL V3 vulnerability
Recently, Google announced a vulnerability in the ssl v3 (http://googleonlinesecurity.blogspot.in/2014/10/this-poodle-bites-exploiting-ssl-30.html). To secure your apache and nginx servers, you …