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
def what_is_gist | |
Sex::Pure | |
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
This is my gist. | |
There are many like it, but this one is mine. | |
It is my life. | |
I must master it as I must master my life. | |
Without me, gist is sad. | |
Without gist, I am sad. |
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
puts "So I can name files, pretty cool..." |
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
It is more than a pastie clone - it's a versioned pastie! Through the eversexy git! <3 |
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
# Translation note: | |
# init() will not be needed. Our input is already ready to be read. (Alliteration :D) | |
# Translated from http://compilers.iecc.com/crenshaw/tutor1.txt | |
TAB = "\t" | |
class scanner: | |
def __init__(self): | |
self.input = list(raw_input()) |
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
find . -name ".git" -exec rm -rf {} \; |
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
Size := Object clone | |
large := Size new | |
medium := Size new | |
small := Size new | |
Colour := Object clone | |
black := Colour new | |
brown := Colour new | |
white := Colour new | |
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
DESCRIPTION | |
select() and pselect() allow a program to monitor multiple file | |
descriptors, waiting until one or more of the file descriptors become | |
"ready" for some class of I/O operation (e.g., input possible). A file | |
descriptor is considered ready if it is possible to perform the corre‐ | |
sponding I/O operation (e.g., read(2)) without blocking. | |
The operation of select() and pselect() is identical, with three dif‐ | |
ferences: | |
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
[STDERR, STDOUT, STDIN].each {|io| io.sync = true if !io.sync } | |
while true | |
ready = select([STDIN]) | |
if ready.flatten.include? STDIN | |
foo = STDIN.gets | |
p foo | |
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
[Wed Jul 23 - 18:30:06] [elliottcable @ Bishop] [~/Code/rat/] | |
-- git-rebase --interactive | |
[Wed Jul 23 - 18:30:10] [elliottcable @ Bishop] [~/Code/rat/] | |
-- |
OlderNewer