This file contains hidden or 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
. | |
├── PLCrashReporter.h | |
├── app | |
│ └── Sparrow.app | |
│ └── Contents | |
│ ├── Frameworks | |
│ │ ├── EtPanKit.framework | |
│ │ │ ├── EtPanKit -> Versions/Current/EtPanKit | |
│ │ │ ├── Resources -> Versions/Current/Resources | |
│ │ │ └── Versions |
This file contains hidden or 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
sudoers::allowed_command { 'everyone-can-run-riak-admin-as-riak': | |
command => '/usr/sbin/riak-admin', | |
user => 'ALL', | |
run_as => 'riak', | |
require_password => false | |
} |
This file contains hidden or 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
# revision of https://gist.github.com/2583429 with a whitelist | |
class PunCommands | |
PUN_WORDS = %w[foo bar baz] | |
def self.foo | |
puts "you could have fooed me" | |
end | |
def self.bar |
This file contains hidden or 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 PunCommands | |
def self.foo | |
puts "you could have fooed me" | |
end | |
def self.bar | |
puts "guy walks into a bar" | |
end | |
def self.baz |
This file contains hidden or 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 DisinterestedCat | |
def speak | |
puts "..." | |
end | |
def play | |
puts "...<look away>" | |
end | |
end |
This file contains hidden or 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
require 'formula' | |
class BrewCask < Formula | |
homepage 'https://github.com/phinze/brew-cask/' | |
head 'https://github.com/phinze/brew-cask.git' | |
skip_clean :all | |
def install |
This file contains hidden or 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
# rename a set of files with numbers by adding one | |
# | |
# example renaming a set of files like SC-123A.MUS, SC-123B.MUS, etc. | |
# | |
# move files 165-169 up one to be 166-170, leaving room for a new 165 | |
# ./rename.sh *{165..169}*.MUS | |
# | |
filenames="$@" | |
mkdir renamed |
This file contains hidden or 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
Arlington Theatre | |
Bensenville Theater | |
Buffalo Grove Theaters | |
Catlow Theatre | |
Classic Cinemas Charlestowne 18 | |
Classic Cinemas Cinema 12 | |
Classic Cinemas Elk Grove Theatre | |
Classic Cinemas Fox Lake Theatre | |
Classic Cinemas Lake Theatre | |
Classic Cinemas North Riverside Mall Theatre |
This file contains hidden or 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
Day changed to 24 Sep 2011 | |
00:36 = Remear|mbp [[email protected]] quit (Remote host closed the connection) | |
01:20 = ckolderup [[email protected]] quit (Quit: ZNC - http://znc.sourceforge.net) | |
01:20 + ckolderup_ [[email protected]] joined #shoes | |
02:23 = coreypurcell [[email protected]] quit (Ping timeout: 260 seconds) | |
02:37 + coreypurcell [[email protected]] joined #shoes | |
04:38 = Remear [~remear@unaffiliated/remear] quit (Ping timeout: 260 seconds) | |
09:41 + spiralofhope [[email protected]] joined #shoes | |
10:00 = spiralofhope [[email protected]] quit (Remote host closed the connection) | |
10:34 + phinze [[email protected]] joined #shoes |
This file contains hidden or 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
source "http://rubygems.org" | |
# just need at least one dependency to generate the bug; this could be any gem | |
gem "rake" |