The Sum

September 04, 2007 @ 11:17 PM | posted by carmelyne

(last updated: 09.04.07)

And here we go after some time collectin'...

the sum

[ Last updated: September 04, 2007 @ 11:18 PM ]


2 Responses to...
“The Sum”

  1. Seth Dillingham:

    Did you do all that with ScreenGrab! ?

    Wow.



    Posted:
  2. carmelyne:

    That's why was lookin' for a screen grabber ap. Thanks fo rthe info on it. :)



    Posted:

Sorry, comments are closed for this article.

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