Contact Me...

I hope you're not emailing to spam me ;p. If not, carry on.....



Tell me what's on your mind... I'm a good listener. I'll try to get back to you as soon as I get your email.



If you don't like contact forms, you can also reach me via skype.

Skype Me™!

You need skype for this link to work.

Snippets of 06/24/07

Rails 'A'..'Z' Paginate

1
2
3
4
5
6
7
8
9
10
11
# Starts with 'A'..'Z' Paginate / model
def self.sort(sort)
  if sort
    find(:all, :conditions => ['name LIKE ?', "#{sort}%"])
  else
    find(:all, :order => 'name')
  end  
end

# index action / controller
@models = Model.sort(params[:sort]) 
RailsConf 2006
I heart devChix