12 Listening to DOM events in backbone js – Learning Backbone js
So here we are, DOM events in backbone js. I got 8 emails so far requesting for a lesson to understand DOM events in backbone js. To all of them I just replied, I have that thing in my list. Just wait...
View ArticleCustom redirect after login fail in devise
Last weekend had a small hackathon in our office and we build a simple group emailing service and in that project we need to make some overrides in devise and one of them was custom redirect in case...
View ArticleUse cookie-free domains for components in ruby on rails application.
Use cookie-free domains for components in ruby on rails application is important to speed up your website. If you deliver assets (image, stylesheet and javascript) from the same domain, the server will...
View ArticleRails 3 Speeds up assets precompile time by only recompiling changed assets
Speeds up assets precompile time by only recompiling changed assets, based on a hash of their source files, just by adding a small gem ;) group :assets do ... gem 'turbo-sprockets-rails3' end Run...
View ArticleConverting Ruby time function into a database friendly format to compare time.
Use to_s(:db) to convert Ruby time function into a database friendly format to compare time. Time.now.to_s(:db) However, be careful if you have a timezone specified in Rails because the time will be...
View ArticleBetter Rails error page customization, display more information
Rails error page customization is much easier using Better Errors gem which replaces the standard Rails error page with a much better and more useful error page. Pretty nice gem. All you need is add a...
View ArticleChrome extension for Rails development
I was browsing the web and came to know about a Chrome extension for Rails developmentRailsPanel which display some of good logging information in a good manner. Setup guidelines: Install the chrome...
View ArticleQuick way to setup memcached in Ruby on Rails application
MemCached is a high-performance, distributed memory object caching system, generic in nature, but originally intended for use in speeding up dynamic web applications by alleviating database load....
View ArticleHow to test emails in development mode in ruby on rails
Testing emails was always a pain for me and my designer friend. my designer friend keep asking me how can I test emails in development mode in ruby on rails without integrating sendgrid or critsend, so...
View ArticleHow to implement action caching in ruby on rails with ajax enabled.
As a ruby on rails developer you can implement caching pretty fast. As all we know there are three kind of caching Page Caching Action Caching Fragment caching You can read in detail about all of these...
View Article