Skip to content

Instantly share code, notes, and snippets.

View chrisb's full-sized avatar

Chris Bielinski chrisb

View GitHub Profile

Keybase proof

I hereby claim:

To claim this, I am signing this object:

class MyController < ApplicationController
helper_method :do_something
# ...
protected
def do_something
# ...
end
@chrisb
chrisb / gist:4d6a09c6cc1ca2e1b14e
Last active November 25, 2022 04:15
Homebrew, Ruby, and Rails on OS X 10.10

OS X 10.10 Guide

Here's what I did to get things working.

1. Install Xcode 6

Yep, over at: https://developer.apple.com

2. Install the Command Line Tools (CLT)

@chrisb
chrisb / fizzbuzz.rb
Last active August 29, 2015 13:56
FizzBuzz
(1..100).each { |i|s='';s+='Fizz'if i%3==0;s+='Buzz'if i%5==0;puts s==''?i:s }
all_hypos = [
[ "have perpetual cheese-breath", "sweat chocolate" ],
[ "be forced to eat blood for one year", "eat bugs for the rest of your life" ],
[ "always smell of poop", "look like a reptile" ]
]
require 'rubygems'
require 'active_support/all'
class MyEngine < Object
class Configuration
include ActiveSupport::Configurable
def self.method_missing(meth, *args)
self.config.send meth, *args
end
end
# untained_csv_each(File.open('my.csv'),'Date') do |row|
# # do something with row
# end
def untainted_csv_each(file,line_match,&block)
tmp_file = File.open(file.path+"-tmp","w+")
garbage_passed = false
file.each do |line|
garbage_passed = true if line =~ /^"(.*)#{line_match}"/ && !garbage_passed
function wysiwymTslt(strKey) {
var locale = $('html').attr('lang');
return {
'bold': { en: 'Bold', fr: '' },
'italic': { en: 'Italic', fr: '' },
'italics': { en: 'italics', fr: '' },
'link': { en: 'Link', fr: '' },
'blockquote': { en: 'Blockquote', fr: '' },
'large_code_block': { en: 'Large Code Block', fr: '' },
'quote': { en: 'Quote', fr: '' },

the Sun

"first is fleet of foot/ the second believes in love/ the third is blue and the fourth is red/ when looked on from above/ the fifth is King presiding/ the sixth and seventh his fathers/ the eighth his crowned brother/ circling with the others/ who do they worship?"

the law

"it cannot be held / but it can be broken / its eyes are everywhere / no one is above it / but not everyone is behind it / ..."

secret

"riddle me this: / what is it that you can hold and keep, / but disappears as soon as you / pass it to another?"

pi

class Foo
def hello
do_something_really_destructive!
end
protected
def bar
do_something_really_destructive!