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 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 |
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
# 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 |
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/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 |
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
keys = %w[event event_id event_type name description date] | |
Hash[*keys.map { |v| [v.to_sym, nil] }.flatten] |
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
octave:1> A = [1 2; 3 4] | |
A = | |
1 2 | |
3 4 | |
octave:2> A - mean(A) | |
warning: operator -: automatic broadcasting operation applied | |
ans = |
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
<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> |
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/env ruby | |
class Knight | |
attr_accessor :x, :y, :count | |
def initialize(x, y) | |
@x, @y, @count = x, y, 0 | |
end | |
def position |
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
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 |
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
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") |
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
self.dateFormat = [[NSDateFormatter alloc] init]; | |
[self.dateFormat setDateFormat:@"d MMMM YYYY"]; | |
NSLog(@"now formatted = %@", [self.dateFormat dateFromString:@"5 August 2012"]); |
OlderNewer