April 2012
2 posts
Which is Better? Writing presentation logic in...
Today I was writing code for displaying users on the webpage (in view file). I have to display 7 users profile pic on home page of certain website. But the condition was as such: First 4 profile pic will be top females (based on how frequently they visited site) and last 3 were male. These pictures were to shown of the same user’s who are in the same country as in site visitor. For...
Apr 23rd
How to upload multiple files in Ruby on Rails (No...
Today I was working on uploading multiple images in one of my Rails project. I would like to share what I did. I was using Rails 3.0.10 with carrierwave although I am pretty sure it can be used with paperclip and may be other gems like dragonfly. Here is my view file: <% form_for @screenshot,:url=>{:action=>"create"},:html => {:multipart => true} do |f| %> <input...
Apr 11th