Skip to content

Instantly share code, notes, and snippets.

View chrisb's full-sized avatar
👋
Oh haiiii

Chris Bielinski chrisb

👋
Oh haiiii
View GitHub Profile
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: '' },
# 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
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
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" ]
]

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@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)