Movie | Recommended by |
---|---|
Initial D | @dabunter |
Coffee and Cigarettes | @borncamp |
The Garbage Pail Kids Movie | @munchingzombie |
Robo Vampire | @munchingzombie |
Gymkata | @munchingzombie |
Food Fight (?) | @munchingzombie |
What Is It? | @munchingzombie |
Watermelon Man | @fuzzleonard |
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 -w | |
def defit | |
def ohai | |
puts "hello from #{self.class.inspect} #{self.inspect}" | |
end | |
puts "called defit in #{self.class.inspect} #{self.inspect}" | |
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
(ns look-and-say) | |
(defn- consecutive [string] | |
(map first (re-seq #"(.)\1*" string))) | |
(defn- say [chars] | |
[(count chars) (first chars)]) | |
(defn- get-next [string] | |
(apply str (mapcat say (consecutive string)))) |
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 | |
#------------------------------------------------------------------------------ | |
# Aggregate Print useful information from /proc/[pid]/smaps | |
# | |
# pss - Roughly the amount of memory that is "really" being used by the pid | |
# swap - Amount of swap this process is currently using | |
# | |
# Reference: | |
# http://www.mjmwired.net/kernel/Documentation/filesystems/proc.txt#361 |
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 Greeter | |
def initialize(who) | |
@who = who | |
end | |
def greet | |
puts "Hello, #{ @who }!" | |
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
.rbenv-gemsets |
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
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
[remote "origin"] | |
fetch = +refs/heads/*:refs/remotes/origin/* | |
url = [email protected]:cpi2.git | |
[branch "master"] | |
remote = origin |
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
select: | |
applicants: | |
- cas_id | |
- last_name | |
- first_name | |
designations: | |
- date_locked | |
statuses: | |
- name | |
join: |