Skip to content

Instantly share code, notes, and snippets.

View sllvn's full-sized avatar
🔥

Andrew Sullivan sllvn

🔥
View GitHub Profile
class ZombiesController < ApplicationController
before_filter :find_zombie
def show
render :action => :show
end
def find_zombie
@zombie = Zombie.find params[:id]
if @zombie.tweets.size == 0
# Disable Resume system-wide
defaults write NSGlobalDomain NSQuitAlwaysKeepsWindows -bool false
# Disable the “reopen windows when logging back in” option
# This works, although the checkbox will still appear to be checked.
defaults write com.apple.loginwindow TALLogoutSavesState -bool false
defaults write com.apple.loginwindow LoginwindowLaunchesRelaunchApps -bool false
via https://github.com/mathiasbynens/dotfiles/blob/master/.osx
@sllvn
sllvn / tally.rb
Created April 14, 2012 17:57
Verite Spotify contest vote tallier
#!/usr/bin/env ruby
# CSV file available at: http://dl.dropbox.com/u/24209319/Verite%20Spotify%20Playlist%20Voting-%20Foreign%20Languages.csv
require 'csv'
class Tally < Hash
def vote(key, x)
self[key] = 0 unless self[key]
self[key] += x
@sllvn
sllvn / gist:2554014
Created April 29, 2012 23:32
Create a hash with keys set in array
keys = %w[event event_id event_type name description date]
Hash[*keys.map { |v| [v.to_sym, nil] }.flatten]
octave:1> A = [1 2; 3 4]
A =
1 2
3 4
octave:2> A - mean(A)
warning: operator -: automatic broadcasting operation applied
ans =
<Placemark>
<name>North America</name>
<description>North America is a continent in the northern hemisphere, bounded on the north by the Arctic Ocean, on the ea
A change: Both North and South America are named after Amerigo Vespucci, who was the first European to suggest that the Americas were not the E
North America occupies the northern portion of the landmass generally referred to as the New World, the Western Hemisphere, the Ameri
<LookAt>
<longitude>-92.38030591736968</longitude>
<latitude>41.60040029662516</latitude>
#!/usr/bin/env ruby
class Knight
attr_accessor :x, :y, :count
def initialize(x, y)
@x, @y, @count = x, y, 0
end
def position
knight = Knight.new(0, 0)
memo = Array.new
1.upto(100000) do |x|
knight.move
knight.move until knight.position == [0, 0]
puts x if x % 100 == 0
memo << knight.count
knight.count = 0
end
import arcpy
from arcpy import env
env.workspace = "C:\UtahAddressModel\SouthJordan_July2012"
rows = arcpy.UpdateCursor("SJC_AddressPts")
for row in rows:
if row.getValue("TYPE") == "CHURCH":
row.setValue("TYPE_D", "REL")
self.dateFormat = [[NSDateFormatter alloc] init];
[self.dateFormat setDateFormat:@"d MMMM YYYY"];
NSLog(@"now formatted = %@", [self.dateFormat dateFromString:@"5 August 2012"]);