Hire Us

Railsware Blog

on product management, engineering, design, culture and many more...

5 things I would improve in rails

Warning: the content of this article is not considered to be trivial, like “Make ActiveRecord …. just like DataMapper”. These are valuable and realistic improvements that fixes significant problems that I met during 3 years of development with rails. Multiple select problem Everyone should know the problem with html checkbox …

The first look into Object Oriented CSS

For the first two years of being a front-end developer, my method was fairly simple: I would put up a fairly simple site layout, estimate development time, and then proceed with quick markup coding. Typically, there was no time allocated for corrections and polishing and the development was based on …

URL shortening

URL shortening. How we do it.

The growing demand to share content through the different social networks has rapidly led us to the need to shorten URLs in order to free space within a post (Twitter is a good example here) and it actually looks good. We didn’t want to reinvent the wheel – so we …

Command line interface for hoptoad

We are trying to build a better development workflow in Railsware by connecting all our tools together.So, this time we tried to connect HopToad Application with git commits. This idea was resulted in the command line interface for hoptoad api with a little git integration – Shelltoad.

How to crash production from github admin page

When I get into github project page yet another time and switched view from master branch to development I came up with idea that we should change the default branch to development as we work with it more. So, I navigate to admin tab and changed default branch with confidence …

Notification Monitor

RatePoint is an active, successful player in the competitive field of Internet marketing. It is hosted at 3 data centers, has 39 servers and includes about 10 internal and external services with their own configured environments to maximize performance. 24/7 high quality service is a major priority for RatePoint, which means that service …

Set up new servers with Sprinkle

Automated set-up and maintenance of new servers is the only inexpensive and effective way to create new servers quickly and consistently.Using automated scripts allows you to kill two birds with one stone: Avoid possible mistakes by a system administrator (or whoever is setting up the server) and speed up routine tasks.Avoid configuration …

Front End: 7 Steps to Success

When dealing with front-end stuff, we try to follow simple and sufficiently comprehensive maxims that make all our work easier — for back-end developers and for future code supporters. Furthermore, good code allows us to sleep well and not be ashamed of the projects we release. 1. Use elements with intended applications. This means …

ClickTale gem released

There is a great product called ClickTale. It is a web analytics system that we use on many projects to get comprehensive, visual representation of what visitors are looking at and focusing on within a web page. Unfortunately, ClickTale is not able to track dynamic session-based content, which changes for each user independently …

Background jobs evolution: Rake, custom daemons, Resque

Background Rake tasks When we start one of our projects there is always the need for some background tasks: updating online/offline user counts, doing some remote API calls, fetching a fresh version of GeoIP database, etc.The easiest and most straightforward solution was the creation of appropriate Rake tasks and scheduling their use using Cron. …