This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'mysql' | |
require 'sqlite3' | |
def with_mysql | |
db_object = Mysql.init() | |
db_object.real_connect('localhost','things','1234','things') | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Recursion | |
# I usually put them around method arguments | |
def recursive(x) | |
return if x >= 10 | |
puts x | |
recursive x + 1 | |
end | |
# No Brackets here | |
recursive 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Goal is => Client.first.items... Can do with finder_sql, but want an activerecord way! | |
class Client < ActiveRecord::Base | |
has_many :contacts | |
has_many :tasks, :through => :contacts | |
has_many :items, :through => :contacts # THIS DOESNT WORK | |
end | |
class Contact < ActiveRecord::Base | |
belongs_to :client |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class DownloadsController < ApplicationController | |
before_filter :can_create?, :only => [:new, :create] | |
before_filter :can_edit?, :only => [:edit, :update, :destroy] | |
resources_controller_for :downloads | |
helper_method :can_create?, :can_edit? | |
def can_create? | |
return !!(current_user && current_user.superuser?) | |
end |
NewerOlder