This is not correct? ;p

June 12, 2007 @ 05:28 PM | posted by carmelyne

(last updated: 06.13.07)

So I took the quiz : Which Programming Language Are You? According to my answers, I am Java! Oh Man!

You are Java.  You are very strong and sturdy, but this makes you a bit sluggish.
Which Programming Language are You?

I thought I was sluggish because of the junk food. It looks like I was wrong.

[ Last updated: June 13, 2007 @ 04:37 PM ]


2 Responses to...
“This is not correct? ;p”

  1. zapada:

    I'm Lisp. People don't like me because I use too many parenthesis. :(



    Posted:
  2. carmelyne:

    @zapada, that is old school. The pioneering type.



    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