Skip to content

Instantly share code, notes, and snippets.

# Key bindings
# To see the key combo you want to use just do:
# $ read
# And press it
bind '"^[[D": backward-word' # option left
bind '"^[[C": forward-word' # option right
//
// From http://www.awayback.com/revised-font-stack/
//
// Each stack has the survey statistics and any additional notes in '[]'.
// Stacks are ordered in Window > cross-platform > Mac
//
// Serif Font Stacks
// Cambria (54.51% on Windows)
# Ok, this is just a simplified example:
@parent.children.all_passing? # => true or false
# I want a method that returns something based on the collection of
# associated objects. Using association extensions, I can put a
# method on the has_many in parent model:
class Parent < ActiveRecord::Base
# Deflate
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript text/css application/x-javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE !no-gzip !gzip-only-text/html
DeflateCompressionLevel 9
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
# Before, I was overriding the initialize method to set the run_date.
# This is how I'm doing it now:
class ListingHighlight < ActiveRecord::Base
before_validation :assign_run_date
validates_presence_of :run_date, :on => :create
def run_date=( value )
write_attribute :run_date, some_date_method(value)
andrew@feldspar ~/Sites/pemberton(master) $ git branch -r
trunk
trunk@289
whistler/php
whistler/trunk
whistler/wlpsite
whistler/wlpsite@42
andrew@feldspar ~/Sites/pemberton(master) $ git co -b whistler/master whistler/trunk
Switched to a new branch 'whistler/master'
# prompt for showing current git branch and dirty state:
__git_branch_status() {
local b
local d
if ! [[ $(git status 2> /dev/null) ]]; then
return
fi
if ! b="$(git symbolic-ref HEAD 2>/dev/null)"; then
if ! b="$(git describe --exact-match HEAD 2>/dev/null)"; then
b="$(git rev-parse 2>/dev/null | cut -c1-7)..."
#! /usr/bin/env ruby
require 'find'
PATTERN = Regexp.new '(\r\n\r\n)?<script>[^\n]+</script>\n<!--[a-f0-9]{32}-->'
def kill_virus(dir)
Find.find(dir) do |path|
if File.file?(path)
text = File.read(path)
if text =~ PATTERN
class Gender
include Comparable
attr_reader :gender
VALID_ENUMS = [:male, :female]
def initialize(value)
value = value.to_s.downcase.to_sym
@gender = value if VALID_ENUMS.include?(value)
end
# Use an instance for the top-level form_for
form_for @parent do |f|
# Always use a symbol to access the nested association from f.object
f.fields_for :child do |fc|
# generates: params[:parent][:child_attributes][:field]
end
# Optionally, provide an instance as a *second* argument
f.fields_for :relative, (@other_parent or Person.new) do |fr|