apeiros changed the topic of #ruby-lang to: Ruby 2.0.0-p247: http://ruby-lang.org (Ruby 1.9.3-p448) || Paste >3 lines of text on http://gist.github.com
nathanstitt has joined #ruby-lang
saarinen has quit [Quit: saarinen]
ffio_ has joined #ruby-lang
ilyam has quit [Quit: ilyam]
ffio has quit [Ping timeout: 264 seconds]
Mon_Ouie has quit [Ping timeout: 240 seconds]
solars has quit [Ping timeout: 240 seconds]
vlad_starkov has quit [Ping timeout: 246 seconds]
eugenejen has quit [Quit: eugenejen]
flip_digits has quit [Remote host closed the connection]
vlad_starkov has joined #ruby-lang
Voker57 has quit [Ping timeout: 240 seconds]
mdedetrich has joined #ruby-lang
flip_digits has joined #ruby-lang
xxaM has joined #ruby-lang
pellis has quit [Ping timeout: 276 seconds]
GeissT has joined #ruby-lang
pellis has joined #ruby-lang
Voker57 has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
agarie has joined #ruby-lang
joshuawscott has joined #ruby-lang
mbj has quit [Ping timeout: 268 seconds]
pellis has quit [Quit: Leaving]
hahuang65 has quit [Ping timeout: 246 seconds]
ilyam has joined #ruby-lang
ruby-lang432 has joined #ruby-lang
ruby-lang432 has quit [Client Quit]
bzalasky has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
glebm has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
iliketurtles has quit [Quit: zzzzz…..]
ilyam has quit [Ping timeout: 248 seconds]
ilyam has joined #ruby-lang
Nisstyre has joined #ruby-lang
Squarepy has quit [Quit: Leaving]
pkrnj has quit [Quit: Textual IRC Client: www.textualapp.com]
saarinen has joined #ruby-lang
saarinen has quit [Client Quit]
spacecaps has quit [Ping timeout: 256 seconds]
toretore has quit [Quit: Leaving]
mdedetrich has joined #ruby-lang
tkuchiki has joined #ruby-lang
tkuchiki has quit [Ping timeout: 240 seconds]
Cakey has joined #ruby-lang
mistym_ has joined #ruby-lang
mistym has quit [Ping timeout: 240 seconds]
mdedetrich has quit [Ping timeout: 246 seconds]
io_syl has quit [Quit: io_syl]
imperator has quit [Quit: Valete!]
ilyam has quit [Quit: ilyam]
shinh has quit [Read error: Connection timed out]
shinh has joined #ruby-lang
agile has joined #ruby-lang
lsegal has joined #ruby-lang
ffio_ has quit [Ping timeout: 240 seconds]
tkuchiki has joined #ruby-lang
GeissT has quit [Ping timeout: 276 seconds]
saarinen has joined #ruby-lang
warmwaffles has joined #ruby-lang
symm- has quit [Ping timeout: 246 seconds]
mdedetrich has joined #ruby-lang
warmwaffles has left #ruby-lang [#ruby-lang]
vlad_starkov has quit [Remote host closed the connection]
mdedetrich has quit [Quit: Computer has gone to sleep.]
io_syl has joined #ruby-lang
GaelanAintAround is now known as Gaelan
iliketurtles has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
retro|cz has joined #ruby-lang
nathanstitt has joined #ruby-lang
Gaelan is now known as GaelanAintAround
mistym_ has quit [Remote host closed the connection]
bzalasky has joined #ruby-lang
agarie has quit [Remote host closed the connection]
bzalasky has quit [Remote host closed the connection]
gja has joined #ruby-lang
gja has quit [Changing host]
gja has joined #ruby-lang
soahccc has joined #ruby-lang
fosky has joined #ruby-lang
bzalasky has joined #ruby-lang
platoscave has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 240 seconds]
saarinen has quit [Quit: saarinen]
duphus has quit [Quit: Leaving.]
gja has quit [Quit: Leaving]
<postmodern> drbrain, is there a way to create a Mechanize agent, that is tied to a specific domain, so that I could request relative URLs?
bzalasky has quit [Remote host closed the connection]
zomgbie has quit [Read error: Connection reset by peer]
zomgbie has joined #ruby-lang
vikhyat has joined #ruby-lang
Artheist has joined #ruby-lang
joshuawscott has quit [Quit: Leaving.]
hashkey has quit [Ping timeout: 240 seconds]
hashkey has joined #ruby-lang
hashkey is now known as Guest68593
Guest68593 has quit [Client Quit]
arooni-mobile has joined #ruby-lang
vikhyat has quit [Ping timeout: 246 seconds]
ffio has joined #ruby-lang
glebm has quit [Ping timeout: 246 seconds]
glebm has joined #ruby-lang
vikhyat has joined #ruby-lang
flip_digits has quit [Remote host closed the connection]
malev has quit [Quit: Leaving]
henrikhodne has joined #ruby-lang
duphus has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
henrikhodne has quit [Ping timeout: 240 seconds]
wallerdev has quit [Quit: wallerdev]
shinh has quit [Quit: Tiarra 0.1+svn-35634: SIGINT received; exit]
shinh has joined #ruby-lang
<iliketurtles> i want to repeat a string "string" to make it a certain length. the length might not make the string repeat perfectly, ie, "stringstri" how can I accomplish this?
saarinen has joined #ruby-lang
<postmodern> iliketurtles, you will want to calculate how many times "string".length fits into your desired length, then calculate the remainder
havenwood has quit [Remote host closed the connection]
<postmodern> iliketurtles, (str * n) + s[0,remainder]
havenwood has joined #ruby-lang
<postmodern> iliketurtles, in Ruby the % operator calculates the modulus between two numbers
<iliketurtles> postmodern: i went with this solution
<iliketurtles> >> 'string'.split('').cycle.take(9).join
<iliketurtles> >> 'string'.split('').cycle.take(9).join
<eval-in> iliketurtles => "stringstr" (https://eval.in/38190)
<postmodern> iliketurtles, i suggest using .chars instead of split('')
<iliketurtles> >> 'string'.chars.cycle.take(9).join
<eval-in> iliketurtles => "stringstr" (https://eval.in/38191)
<iliketurtles> nice, why
<Nilium> O_o
<Nilium> Why is it better to use chars instead of doing a split function that has to iterate over each character and decide if it splits?
<iliketurtles> good question ^
<postmodern> .chars returns an Enumerator
<postmodern> which will walk the string, yielding each char
<Nilium> I'm trying to rephrase your 'why' not asking a question myself
<Nilium> Just so that's clear
<iliketurtles> yes i understand
havenwood has quit [Ping timeout: 256 seconds]
<iliketurtles> chars == beter
<iliketurtles> better too
<Nilium> Note to self: set my toenails on fair
<Nilium> ..fire
<Nilium> Holy cow I must be more tired than I thought
dhruvasagar has joined #ruby-lang
<iliketurtles> ^_^
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
ilyam has joined #ruby-lang
mdedetrich has joined #ruby-lang
jsullivandigs has quit [Ping timeout: 240 seconds]
vikhyat_ has joined #ruby-lang
vikhyat has quit [Ping timeout: 256 seconds]
dhruvasagar has quit [Ping timeout: 240 seconds]
gja has joined #ruby-lang
gja has joined #ruby-lang
gja has quit [Changing host]
fosky has quit [Ping timeout: 246 seconds]
jsullivandigs has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
bzalasky has joined #ruby-lang
mdedetrich has joined #ruby-lang
mdedetrich has quit [Client Quit]
bzalasky has quit [Remote host closed the connection]
mdedetrich has joined #ruby-lang
ilyam has quit [Quit: ilyam]
mistym has joined #ruby-lang
iliketurtles has quit [Quit: zzzzz…..]
iliketurtles has joined #ruby-lang
xuser has quit [Quit: leaving]
lnormous has quit [Ping timeout: 240 seconds]
tomzx_mac has quit [Ping timeout: 246 seconds]
Artheist has quit [Remote host closed the connection]
tomzx_mac has joined #ruby-lang
_jpb_ has joined #ruby-lang
duphus has quit [Read error: Connection reset by peer]
duphus has joined #ruby-lang
GaelanAintAround is now known as Gaelan
platoscave has quit [Ping timeout: 240 seconds]
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
_jpb_ has quit [Quit: Lost terminal]
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
platoscave has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
bzalasky has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
Gaelan is now known as GaelanAintAround
rue has quit [Remote host closed the connection]
rue has joined #ruby-lang
gjaldon has joined #ruby-lang
gja has quit [Quit: This computer has gone to sleep]
mistym has quit [Remote host closed the connection]
GeissT has joined #ruby-lang
GaelanAintAround is now known as Gaelan
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
bzalasky has quit [Remote host closed the connection]
arooni-mobile has quit [Ping timeout: 246 seconds]
shinnya has quit [Ping timeout: 268 seconds]
brianpWins has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby-lang
tkuchiki has quit [Ping timeout: 240 seconds]
mistym has joined #ruby-lang
jsullivandigs has joined #ruby-lang
saarinen has quit [Quit: saarinen]
iliketurtles has quit [Quit: zzzzz…..]
tomzx_mac has quit [Ping timeout: 240 seconds]
Gaelan is now known as GaelanAintAround
Mon_Ouie has joined #ruby-lang
Mon_Ouie has quit [Changing host]
Mon_Ouie has joined #ruby-lang
hahuang65 has joined #ruby-lang
majjoha has joined #ruby-lang
majjoha has quit [Ping timeout: 268 seconds]
mdedetrich has joined #ruby-lang
mdedetrich has quit [Remote host closed the connection]
vikhyat_ has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
tbuehlmann has joined #ruby-lang
marr has joined #ruby-lang
mdedetrich has joined #ruby-lang
jsullivandigs has quit [Remote host closed the connection]
jsullivandigs has joined #ruby-lang
Cakey has quit [Ping timeout: 240 seconds]
vikhyat has joined #ruby-lang
Cakey has joined #ruby-lang
mdedetrich has quit [Quit: Computer has gone to sleep.]
jsullivandigs has quit [Ping timeout: 240 seconds]
mdedetrich has joined #ruby-lang
mdedetrich has quit [Client Quit]
sstrickl has quit [Quit: sstrickl]
workmad3 has joined #ruby-lang
dLog has joined #ruby-lang
meise has joined #ruby-lang
setmeaway2 has joined #ruby-lang
weeb1e_ has joined #ruby-lang
lucas_ has joined #ruby-lang
Karql has joined #ruby-lang
freedrul1 has joined #ruby-lang
DEac-_ has joined #ruby-lang
ericwood_ has joined #ruby-lang
platoscave has quit [Ping timeout: 246 seconds]
mihar_ has joined #ruby-lang
weeb1e has quit [*.net *.split]
zz_Gaelan has quit [*.net *.split]
jaimef has quit [*.net *.split]
setmeaway has quit [*.net *.split]
adwhit has quit [*.net *.split]
dabradley has quit [*.net *.split]
Karql_ has quit [*.net *.split]
mihar has quit [*.net *.split]
DEac- has quit [*.net *.split]
bnagy has quit [*.net *.split]
djinni` has quit [*.net *.split]
sn0wb1rdz has quit [*.net *.split]
oddmunds has quit [*.net *.split]
ericwood has quit [*.net *.split]
freedrull has quit [*.net *.split]
dLog_ has quit [*.net *.split]
lucas has quit [*.net *.split]
tylergillies has quit [*.net *.split]
meise_ has quit [*.net *.split]
grandy has quit [*.net *.split]
ddfreyne has quit [*.net *.split]
sn0wb1rdz_ has joined #ruby-lang
djinni` has joined #ruby-lang
bnagy has joined #ruby-lang
matled- has joined #ruby-lang
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
lguardiola_ has joined #ruby-lang
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
freedrull has joined #ruby-lang
fess has joined #ruby-lang
jaimef has joined #ruby-lang
eban1 has joined #ruby-lang
yibe_ has joined #ruby-lang
brownies has quit [Ping timeout: 246 seconds]
dominikh has quit [Ping timeout: 246 seconds]
tallship_ has joined #ruby-lang
duphus has quit [Quit: Leaving.]
oddmunds has joined #ruby-lang
workmad3 has quit [Ping timeout: 268 seconds]
wang_ has joined #ruby-lang
dominikh has joined #ruby-lang
bryno has joined #ruby-lang
adwhit has joined #ruby-lang
zmike has joined #ruby-lang
dabradley has joined #ruby-lang
dumfries_ has joined #ruby-lang
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
northelks has quit [Ping timeout: 264 seconds]
ffio_ has joined #ruby-lang
ddfreyne has joined #ruby-lang
ffio has quit [Read error: Connection reset by peer]
tylergillies has joined #ruby-lang
hagebake has joined #ruby-lang
brownies has joined #ruby-lang
brownies has joined #ruby-lang
brownies has quit [Changing host]
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
danrabinowitz_ has joined #ruby-lang
platoscave has joined #ruby-lang
Silex^^ has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
chris2_ has joined #ruby-lang
babinho has joined #ruby-lang
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
faces has joined #ruby-lang
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
io_syl has quit [Quit: io_syl]
face has quit [Ping timeout: 256 seconds]
fumduq- has joined #ruby-lang
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
musl_ has joined #ruby-lang
freedrul1 has quit [*.net *.split]
firstdayonthejob has quit [*.net *.split]
yibe has quit [*.net *.split]
andrewvos has quit [*.net *.split]
joast has quit [*.net *.split]
wang has quit [*.net *.split]
bri has quit [*.net *.split]
eban has quit [*.net *.split]
danrabinowitz has quit [*.net *.split]
fumduq has quit [*.net *.split]
chris2 has quit [*.net *.split]
Silex has quit [*.net *.split]
blowmage has quit [*.net *.split]
babinho_ has quit [*.net *.split]
matled has quit [*.net *.split]
musl has quit [*.net *.split]
hagabaka has quit [*.net *.split]
tallship has quit [*.net *.split]
dumfries has quit [*.net *.split]
wycats_ has quit [*.net *.split]
akahn has quit [*.net *.split]
lguardiola has quit [*.net *.split]
ffio has joined #ruby-lang
Asher1 has joined #ruby-lang
andrewvos has joined #ruby-lang
soahccc_ has joined #ruby-lang
nazty has joined #ruby-lang
wycats_ has joined #ruby-lang
freedrul1 has joined #ruby-lang
weeb1e has joined #ruby-lang
matled has joined #ruby-lang
blowmage has joined #ruby-lang
platoscave has joined #ruby-lang
joast has joined #ruby-lang
danrabinowitz has joined #ruby-lang
marr123 has joined #ruby-lang
wang has joined #ruby-lang
hagabaka has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
babinho_ has joined #ruby-lang
apeiros has joined #ruby-lang
PaulePan1er has joined #ruby-lang
nignaztic has quit [Ping timeout: 276 seconds]
tylergillies_ has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
x0f_ has joined #ruby-lang
intellitech_ has joined #ruby-lang
intellitech_ has quit [Changing host]
intellitech_ has joined #ruby-lang
danrabinowitz_ has quit [*.net *.split]
babinho has quit [*.net *.split]
tylergillies has quit [*.net *.split]
hagebake has quit [*.net *.split]
ffio_ has quit [*.net *.split]
matled- has quit [*.net *.split]
wang_ has quit [*.net *.split]
tallship_ has quit [*.net *.split]
freedrull has quit [*.net *.split]
weeb1e_ has quit [*.net *.split]
marr has quit [*.net *.split]
soahccc has quit [*.net *.split]
intellitech has quit [*.net *.split]
x0f has quit [*.net *.split]
dRbiG has quit [*.net *.split]
Asher has quit [*.net *.split]
PaulePanter has quit [*.net *.split]
Phoop has quit [*.net *.split]
intellitech_ is now known as intellitech
dRbiG has joined #ruby-lang
GeissT has quit [Read error: Connection reset by peer]
matled- has joined #ruby-lang
GeissT has joined #ruby-lang
ecnalyr has quit [*.net *.split]
ioga_wrk has quit [*.net *.split]
kke has quit [*.net *.split]
jayne has quit [*.net *.split]
sluukkonen has quit [*.net *.split]
UziMonkey___ has quit [*.net *.split]
imajes has quit [*.net *.split]
yeltzooo has quit [*.net *.split]
apeiros has quit [*.net *.split]
joast has quit [*.net *.split]
matled has quit [*.net *.split]
blowmage has quit [*.net *.split]
KillerFox has quit [*.net *.split]
KU0N has quit [*.net *.split]
kuja has quit [*.net *.split]
mbr has quit [*.net *.split]
thang has quit [*.net *.split]
wudofyr___ has quit [*.net *.split]
FastJack has quit [*.net *.split]
fallenhitokiri has quit [*.net *.split]
felipe has quit [*.net *.split]
_dumfries has quit [*.net *.split]
doki_pen_ has quit [*.net *.split]
t_ has quit [*.net *.split]
ddd__ has quit [*.net *.split]
Guu has quit [*.net *.split]
a3li has quit [*.net *.split]
mame3 has quit [*.net *.split]
Kabaka has quit [*.net *.split]
ddfreyne has quit [*.net *.split]
lele has quit [*.net *.split]
gnufied has quit [*.net *.split]
EvilAww has quit [*.net *.split]
GarethAdams has quit [*.net *.split]
hackeron has quit [*.net *.split]
matthewd has quit [*.net *.split]
anekos has quit [*.net *.split]
beawesomeinstead has quit [*.net *.split]
segy has quit [*.net *.split]
sonne has quit [*.net *.split]
ndrst has quit [*.net *.split]
spuk has quit [*.net *.split]
zz_jus has quit [*.net *.split]
kirin` has quit [*.net *.split]
achiu2 has quit [*.net *.split]
Bwild has quit [*.net *.split]
Olipro has quit [*.net *.split]
franckverrot has quit [*.net *.split]
kith has quit [*.net *.split]
tommylommykins has quit [*.net *.split]
naquad has quit [*.net *.split]
dvorak has quit [*.net *.split]
manveru has quit [*.net *.split]
erikh has quit [*.net *.split]
lk has quit [*.net *.split]
Avatar[01] has quit [*.net *.split]
kalleth has quit [*.net *.split]
justinmcp has quit [*.net *.split]
gianlucadv has quit [*.net *.split]
thyagobr has quit [*.net *.split]
zzak has quit [*.net *.split]
DefV has quit [*.net *.split]
whitequark has quit [*.net *.split]
znz_jp has quit [*.net *.split]
athetius has quit [*.net *.split]
_ko10 has quit [*.net *.split]
mahlon has quit [*.net *.split]
tonni has quit [*.net *.split]
xsdg has quit [*.net *.split]
brixen has quit [*.net *.split]
melter has quit [*.net *.split]
Joni_79 has quit [*.net *.split]
darix has quit [*.net *.split]
nick_h has quit [*.net *.split]
rheddry has quit [*.net *.split]
heftig has quit [*.net *.split]
soraher has quit [*.net *.split]
eam has quit [*.net *.split]
corundum has quit [*.net *.split]
amateurhuman_ has quit [*.net *.split]
Nilium has quit [*.net *.split]
drakkhen_ has quit [*.net *.split]
lupine has quit [*.net *.split]
dRbiG has quit [*.net *.split]
tylergillies_ has quit [*.net *.split]
x0f_ has quit [*.net *.split]
lguardiola_ has quit [*.net *.split]
sn0wb1rdz_ has quit [*.net *.split]
DEac-_ has quit [*.net *.split]
Karql has quit [*.net *.split]
lucas_ has quit [*.net *.split]
hahuang65 has quit [*.net *.split]
kvs has quit [*.net *.split]
robbyoconnor has quit [*.net *.split]
skinny_much_ has quit [*.net *.split]
killthe|afk has quit [*.net *.split]
zavier has quit [*.net *.split]
FiXato has quit [*.net *.split]
yorickpeterse has quit [*.net *.split]
isomorphismes has quit [*.net *.split]
t0h has quit [*.net *.split]
igalic has quit [*.net *.split]
drbrain has quit [*.net *.split]
snk has quit [*.net *.split]
gix- has quit [*.net *.split]
ryanf has quit [*.net *.split]
wasnotrice has quit [*.net *.split]
knu has quit [*.net *.split]
supyo has quit [*.net *.split]
pbjorklund has quit [*.net *.split]
EvilJStoker_ has quit [*.net *.split]
egypt has quit [*.net *.split]
Caius has quit [*.net *.split]
freedrul1 has quit [*.net *.split]
weeb1e has quit [*.net *.split]
andrewvos has quit [*.net *.split]
musl_ has quit [*.net *.split]
zmike has quit [*.net *.split]
bryno has quit [*.net *.split]
meise has quit [*.net *.split]
brianpWins has quit [*.net *.split]
shinh has quit [*.net *.split]
braidn has quit [*.net *.split]
Guest62459 has quit [*.net *.split]
s0ber has quit [*.net *.split]
joevandyk has quit [*.net *.split]
go|dfish has quit [*.net *.split]
ozzloy has quit [*.net *.split]
spike|spiegel has quit [*.net *.split]
spectra- has quit [*.net *.split]
flori has quit [*.net *.split]
rtl has quit [*.net *.split]
conceal_rs_____0 has quit [*.net *.split]
dbussink has quit [*.net *.split]
ged has quit [*.net *.split]
Muz has quit [*.net *.split]
jacknagel has quit [*.net *.split]
crankharder has quit [*.net *.split]
eval-in has quit [*.net *.split]
ryez has quit [*.net *.split]
babinho_ has quit [*.net *.split]
danrabinowitz has quit [*.net *.split]
nazty has quit [*.net *.split]
wycats_ has quit [*.net *.split]
fumduq- has quit [*.net *.split]
chris2_ has quit [*.net *.split]
dominikh has quit [*.net *.split]
eban1 has quit [*.net *.split]
jaimef has quit [*.net *.split]
vikhyat has quit [*.net *.split]
dLog has quit [*.net *.split]
zomgbie has quit [*.net *.split]
hakunin has quit [*.net *.split]
ahf has quit [*.net *.split]
Xzyx987X has quit [*.net *.split]
vbatts has quit [*.net *.split]
canton7 has quit [*.net *.split]
jwollert has quit [*.net *.split]
khaase_ has quit [*.net *.split]
vivekrai has quit [*.net *.split]
jsaak has quit [*.net *.split]
nrk has quit [*.net *.split]
swav has quit [*.net *.split]
netShadow has quit [*.net *.split]
erichmenge has quit [*.net *.split]
pabs has quit [*.net *.split]
badeball has quit [*.net *.split]
hachiya has quit [*.net *.split]
slightair_ has quit [*.net *.split]
coffeejunk has quit [*.net *.split]
fbernier has quit [*.net *.split]
bcardarella has quit [*.net *.split]
tdy has quit [*.net *.split]
mclee has quit [*.net *.split]
LanceHaig has quit [*.net *.split]
neurodamage has quit [*.net *.split]
rondale_sc has quit [*.net *.split]
jstemmer has quit [*.net *.split]
samuelkadolph has quit [*.net *.split]
Mellett68 has quit [*.net *.split]
Kero has quit [*.net *.split]
lianj has quit [*.net *.split]
Kuukunen- has quit [*.net *.split]
smull_ has quit [*.net *.split]
TheMoonMaster has quit [*.net *.split]
nikky has quit [*.net *.split]
bryanl has quit [*.net *.split]
Silex^^ has quit [*.net *.split]
dabradley has quit [*.net *.split]
djinni` has quit [*.net *.split]
ericwood_ has quit [*.net *.split]
setmeaway2 has quit [*.net *.split]
tbuehlmann has quit [*.net *.split]
Cakey has quit [*.net *.split]
glebm has quit [*.net *.split]
retro|cz has quit [*.net *.split]
rails_smith has quit [*.net *.split]
Rubennn has quit [*.net *.split]
perry has quit [*.net *.split]
jarib has quit [*.net *.split]
jinie has quit [*.net *.split]
jwollert- has quit [*.net *.split]
rebelcan has quit [*.net *.split]
wnd has quit [*.net *.split]
maloik has quit [*.net *.split]
cout has quit [*.net *.split]
Guest30040 has quit [*.net *.split]
kennyvb has quit [*.net *.split]
wang has quit [*.net *.split]
soahccc_ has quit [*.net *.split]
Asher1 has quit [*.net *.split]
ffio has quit [*.net *.split]
faces has quit [*.net *.split]
brownies has quit [*.net *.split]
dumfries_ has quit [*.net *.split]
yibe_ has quit [*.net *.split]
mihar_ has quit [*.net *.split]
agile has quit [*.net *.split]
Voker57 has quit [*.net *.split]
postmodern has quit [*.net *.split]
hinbody has quit [*.net *.split]
rsl has quit [*.net *.split]
mantono has quit [*.net *.split]
rsync has quit [*.net *.split]
bougyman has quit [*.net *.split]
GaelanAintAround has quit [*.net *.split]
matti has quit [*.net *.split]
ruskie has quit [*.net *.split]
davidbalbert has quit [*.net *.split]
shaman42 has quit [*.net *.split]
TTilus has quit [*.net *.split]
Quatrerwin has quit [*.net *.split]
yellow5_ has quit [*.net *.split]
GeissT has quit [*.net *.split]
PaulePan1er has quit [*.net *.split]
marr123 has quit [*.net *.split]
hagabaka has quit [*.net *.split]
adwhit has quit [*.net *.split]
oddmunds has quit [*.net *.split]
Mon_Ouie has quit [*.net *.split]
rue has quit [*.net *.split]
ledestin has quit [*.net *.split]
jxie has quit [*.net *.split]
cschneid has quit [*.net *.split]
Y_Ichiro has quit [*.net *.split]
jmeeuwen has quit [*.net *.split]
threedaymonk has quit [*.net *.split]
Paradox has quit [*.net *.split]
ammar_ has quit [*.net *.split]
PantsMeh has quit [*.net *.split]
duckinator has quit [*.net *.split]
FlyingLeap has quit [*.net *.split]
Guest65665 has quit [*.net *.split]
joschi has quit [*.net *.split]
priodev has quit [*.net *.split]
linc01n has quit [*.net *.split]
ohsix has quit [*.net *.split]
matled- has quit [*.net *.split]
intellitech has quit [*.net *.split]
fess has quit [*.net *.split]
bnagy has quit [*.net *.split]
gjaldon has quit [*.net *.split]
Nisstyre has quit [*.net *.split]
zenspider has quit [*.net *.split]
jbsan has quit [*.net *.split]
PacketMonkey has quit [*.net *.split]
phracker has quit [*.net *.split]
Boohbah has quit [*.net *.split]
scottschecter has quit [*.net *.split]
shtirlic has quit [*.net *.split]
sindork has quit [*.net *.split]
levicole has quit [*.net *.split]
Cremno has quit [*.net *.split]
xxaM has quit [*.net *.split]
chendo has quit [*.net *.split]
closer has quit [*.net *.split]
ffio_ has joined #ruby-lang
yeltzooo has joined #ruby-lang
northelks has joined #ruby-lang
closer has joined #ruby-lang
levicole has joined #ruby-lang
shtirlic has joined #ruby-lang
Cremno has joined #ruby-lang
matti has joined #ruby-lang
Guest65665 has joined #ruby-lang
Paradox has joined #ruby-lang
sindork has joined #ruby-lang
priodev has joined #ruby-lang
jmeeuwen has joined #ruby-lang
Boohbah has joined #ruby-lang
bougyman has joined #ruby-lang
threedaymonk has joined #ruby-lang
PantsMeh has joined #ruby-lang
rsl has joined #ruby-lang
ecnalyr has joined #ruby-lang
phracker has joined #ruby-lang
jxie has joined #ruby-lang
joschi has joined #ruby-lang
ohsix has joined #ruby-lang
ammar_ has joined #ruby-lang
FlyingLeap has joined #ruby-lang
Voker57 has joined #ruby-lang
xxaM has joined #ruby-lang
chendo has joined #ruby-lang
oddmunds has joined #ruby-lang
fess has joined #ruby-lang
TTilus has joined #ruby-lang
PacketMonkey has joined #ruby-lang
UziMonkey___ has joined #ruby-lang
dumfries_ has joined #ruby-lang
mantono has joined #ruby-lang
rue has joined #ruby-lang
bnagy has joined #ruby-lang
PaulePanter has joined #ruby-lang
scottschecter has joined #ruby-lang
ledestin has joined #ruby-lang
Nisstyre has joined #ruby-lang
wang has joined #ruby-lang
soahccc_ has joined #ruby-lang
Phoop has joined #ruby-lang
sluukkonen1 has joined #ruby-lang
blowmage` has joined #ruby-lang
hagabaka has joined #ruby-lang
cschneid has joined #ruby-lang
linc01n has joined #ruby-lang
imajes has joined #ruby-lang
ruskie has joined #ruby-lang
faces has joined #ruby-lang
intellitech has joined #ruby-lang
nazty has joined #ruby-lang
rsync has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
GaelanAintAround has joined #ruby-lang
dRbiG has joined #ruby-lang
danrabinowitz has joined #ruby-lang
agile has joined #ruby-lang
weeb1e has joined #ruby-lang
lguardiola_ has joined #ruby-lang
jaimef has joined #ruby-lang
dabradley has joined #ruby-lang
chris2_ has joined #ruby-lang
ioga_wrk has joined #ruby-lang
musl_ has joined #ruby-lang
fumduq- has joined #ruby-lang
bryno has joined #ruby-lang
jayne_ has joined #ruby-lang
Asher1 has joined #ruby-lang
kke_ has joined #ruby-lang
yibe_ has joined #ruby-lang
lucas_ has joined #ruby-lang
tallship_ has joined #ruby-lang
zenspider has joined #ruby-lang
davidbalbert has joined #ruby-lang
setmeaway2 has joined #ruby-lang
mihar_ has joined #ruby-lang
tkuchiki has joined #ruby-lang
adwhit has joined #ruby-lang
tylergillies_ has joined #ruby-lang
Silex^^ has joined #ruby-lang
brianpWins has joined #ruby-lang
vlad_starkov has joined #ruby-lang
postmodern has joined #ruby-lang
Quatrerwin has joined #ruby-lang
KU0N has joined #ruby-lang
hinbody has joined #ruby-lang
freedrul1 has joined #ruby-lang
duckinator has joined #ruby-lang
marr123 has joined #ruby-lang
rails_smith has joined #ruby-lang
KillerFox has joined #ruby-lang
kvs has joined #ruby-lang
andrewvos has joined #ruby-lang
Xzyx987X has joined #ruby-lang
shaman42 has joined #ruby-lang
tbuehlmann has joined #ruby-lang
braidn has joined #ruby-lang
DEac-_ has joined #ruby-lang
swav has joined #ruby-lang
Guest62459 has joined #ruby-lang
sn0wb1rdz_ has joined #ruby-lang
dLog has joined #ruby-lang
melter has joined #ruby-lang
shinh has joined #ruby-lang
eban1 has joined #ruby-lang
thyagobr has joined #ruby-lang
djinni` has joined #ruby-lang
ndrst has joined #ruby-lang
GeissT has joined #ruby-lang
Y_Ichiro has joined #ruby-lang
jbsan has joined #ruby-lang
hakunin has joined #ruby-lang
x0f_ has joined #ruby-lang
brownies has joined #ruby-lang
zomgbie has joined #ruby-lang
retro|cz has joined #ruby-lang
ddfreyne has joined #ruby-lang
robbyoconnor has joined #ruby-lang
ahf has joined #ruby-lang
apeiros_ has joined #ruby-lang
zmike has joined #ruby-lang
wycats_ has joined #ruby-lang
hahuang65 has joined #ruby-lang
netShadow has joined #ruby-lang
dominikh has joined #ruby-lang
yellow5_ has joined #ruby-lang
babinho_ has joined #ruby-lang
vikhyat has joined #ruby-lang
Karql has joined #ruby-lang
matled has joined #ruby-lang
zz_jus has joined #ruby-lang
gjaldon has joined #ruby-lang
ericwood_ has joined #ruby-lang
glebm has joined #ruby-lang
meise has joined #ruby-lang
killthe|afk has joined #ruby-lang
erichmenge has joined #ruby-lang
soraher has joined #ruby-lang
zzak has joined #ruby-lang
zavier has joined #ruby-lang
brixen has joined #ruby-lang
vivekrai has joined #ruby-lang
kuja has joined #ruby-lang
xsdg has joined #ruby-lang
FiXato has joined #ruby-lang
kith has joined #ruby-lang
EvilAww has joined #ruby-lang
achiu2 has joined #ruby-lang
tonni has joined #ruby-lang
rheddry has joined #ruby-lang
drbrain has joined #ruby-lang
ozzloy has joined #ruby-lang
vbatts has joined #ruby-lang
jsaak has joined #ruby-lang
eam has joined #ruby-lang
slightair_ has joined #ruby-lang
lele has joined #ruby-lang
spike|spiegel has joined #ruby-lang
ryanf has joined #ruby-lang
manveru has joined #ruby-lang
drakkhen_ has joined #ruby-lang
lupine has joined #ruby-lang
dvorak has joined #ruby-lang
flori has joined #ruby-lang
Joni_79 has joined #ruby-lang
egypt has joined #ruby-lang
erikh has joined #ruby-lang
wasnotrice has joined #ruby-lang
justinmcp has joined #ruby-lang
canton7 has joined #ruby-lang
_ko10 has joined #ruby-lang
pabs has joined #ruby-lang
heftig has joined #ruby-lang
beawesomeinstead has joined #ruby-lang
yorickpeterse has joined #ruby-lang
jinie has joined #ruby-lang
znz_jp has joined #ruby-lang
pbjorklund has joined #ruby-lang
jarib has joined #ruby-lang
jwollert has joined #ruby-lang
isomorphismes has joined #ruby-lang
athetius has joined #ruby-lang
DefV has joined #ruby-lang
hackeron has joined #ruby-lang
ryez has joined #ruby-lang
Kero has joined #ruby-lang
Rubennn has joined #ruby-lang
lk has joined #ruby-lang
gix- has joined #ruby-lang
gnufied has joined #ruby-lang
badeball has joined #ruby-lang
Avatar[01] has joined #ruby-lang
tommylommykins has joined #ruby-lang
perry has joined #ruby-lang
darix has joined #ruby-lang
gianlucadv has joined #ruby-lang
t0h has joined #ruby-lang
supyo has joined #ruby-lang
Kabaka has joined #ruby-lang
LanceHaig has joined #ruby-lang
fallenhitokiri has joined #ruby-lang
felipe has joined #ruby-lang
naquad has joined #ruby-lang
matthewd has joined #ruby-lang
Nilium has joined #ruby-lang
FastJack has joined #ruby-lang
Bwild has joined #ruby-lang
corundum has joined #ruby-lang
amateurhuman_ has joined #ruby-lang
conceal_rs_____0 has joined #ruby-lang
go|dfish has joined #ruby-lang
thang has joined #ruby-lang
igalic has joined #ruby-lang
mahlon has joined #ruby-lang
kalleth has joined #ruby-lang
snk has joined #ruby-lang
spectra- has joined #ruby-lang
s0ber has joined #ruby-lang
wudofyr___ has joined #ruby-lang
EvilJStoker_ has joined #ruby-lang
rtl has joined #ruby-lang
hachiya has joined #ruby-lang
mbr has joined #ruby-lang
joevandyk has joined #ruby-lang
franckverrot has joined #ruby-lang
khaase_ has joined #ruby-lang
spuk has joined #ruby-lang
sonne has joined #ruby-lang
whitequark has joined #ruby-lang
anekos has joined #ruby-lang
skinny_much_ has joined #ruby-lang
knu has joined #ruby-lang
kirin` has joined #ruby-lang
GarethAdams has joined #ruby-lang
nick_h has joined #ruby-lang
Caius has joined #ruby-lang
segy has joined #ruby-lang
jacknagel has joined #ruby-lang
fbernier has joined #ruby-lang
dbussink has joined #ruby-lang
mame3 has joined #ruby-lang
rondale_sc has joined #ruby-lang
crankharder has joined #ruby-lang
doki_pen_ has joined #ruby-lang
wnd has joined #ruby-lang
maloik has joined #ruby-lang
tdy has joined #ruby-lang
ddd__ has joined #ruby-lang
_dumfries has joined #ruby-lang
cout has joined #ruby-lang
bcardarella has joined #ruby-lang
rebelcan has joined #ruby-lang
samuelkadolph has joined #ruby-lang
Guu has joined #ruby-lang
kennyvb has joined #ruby-lang
ged has joined #ruby-lang
nrk has joined #ruby-lang
TheMoonMaster has joined #ruby-lang
smull_ has joined #ruby-lang
jstemmer has joined #ruby-lang
jwollert- has joined #ruby-lang
bryanl has joined #ruby-lang
Muz has joined #ruby-lang
t_ has joined #ruby-lang
nikky has joined #ruby-lang
eval-in has joined #ruby-lang
Mellett68 has joined #ruby-lang
lianj has joined #ruby-lang
Kuukunen- has joined #ruby-lang
mclee has joined #ruby-lang
neurodamage has joined #ruby-lang
coffeejunk has joined #ruby-lang
a3li has joined #ruby-lang
Guest30040 has joined #ruby-lang
matled has quit [Remote host closed the connection]
platoscave has joined #ruby-lang
Olipro has joined #ruby-lang
bnagy_ has joined #ruby-lang
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
bnagy has quit [Remote host closed the connection]
zz_dlu has joined #ruby-lang
platoscave has joined #ruby-lang
platoscave has quit [Max SendQ exceeded]
fess has quit [Ping timeout: 252 seconds]
gjaldon has quit [Ping timeout: 252 seconds]
matled has joined #ruby-lang
platoscave has joined #ruby-lang
mikewintermute has joined #ruby-lang
goatish_mound has joined #ruby-lang
soahccc__ has joined #ruby-lang
davidbalber|away has joined #ruby-lang
wang_ has joined #ruby-lang
matti_ has joined #ruby-lang
ihme-TTilus has joined #ruby-lang
Asher has joined #ruby-lang
shaman42_ has joined #ruby-lang
hinbody_ has joined #ruby-lang
Gaelane has joined #ruby-lang
dumfries has joined #ruby-lang
face has joined #ruby-lang
platoscave has quit [Ping timeout: 264 seconds]
wang has quit [*.net *.split]
Asher1 has quit [*.net *.split]
soahccc_ has quit [*.net *.split]
faces has quit [*.net *.split]
brownies has quit [*.net *.split]
dumfries_ has quit [*.net *.split]
yibe_ has quit [*.net *.split]
mihar_ has quit [*.net *.split]
agile has quit [*.net *.split]
Voker57 has quit [*.net *.split]
postmodern has quit [*.net *.split]
hinbody has quit [*.net *.split]
rsl has quit [*.net *.split]
mantono has quit [*.net *.split]
bougyman has quit [*.net *.split]
rsync has quit [*.net *.split]
GaelanAintAround has quit [*.net *.split]
matti has quit [*.net *.split]
ruskie has quit [*.net *.split]
davidbalbert has quit [*.net *.split]
shaman42 has quit [*.net *.split]
TTilus has quit [*.net *.split]
Quatrerwin has quit [*.net *.split]
yellow5_ has quit [*.net *.split]
matti_ is now known as matti
mihar has joined #ruby-lang
brownies has joined #ruby-lang
yellow5 has joined #ruby-lang
bougyman has joined #ruby-lang
chendo has quit [Ping timeout: 252 seconds]
mantono has joined #ruby-lang
rsync has joined #ruby-lang
Voker57 has joined #ruby-lang
postmodern has joined #ruby-lang
Quatrerwin has joined #ruby-lang
Quatrerwin has quit [Changing host]
Quatrerwin has joined #ruby-lang
chendo_ has joined #ruby-lang
vlad_starkov has quit [Remote host closed the connection]
agile has joined #ruby-lang
yibe_ has joined #ruby-lang
ruskie has joined #ruby-lang
platoscave has joined #ruby-lang
shinnya has joined #ruby-lang
platoscave has quit [Ping timeout: 252 seconds]
chris2_ is now known as chris2
GeissT has quit [Ping timeout: 240 seconds]
zz_jus has left #ruby-lang [#ruby-lang]
zmike has quit [Quit: ~]
zmike123 has joined #ruby-lang
platoscave has joined #ruby-lang
<gnufied> @drbrain sure
benanne has joined #ruby-lang
platoscave has quit [Read error: Connection reset by peer]
marr123 has quit []
<erikh> hey dudes
<gnufied> hey erikh
Squarepy has joined #ruby-lang
<erikh> hi
platoscave has joined #ruby-lang
vikhyat_ has joined #ruby-lang
vikhyat has quit [Ping timeout: 246 seconds]
rails_smith has quit [Quit: Leaving.]
grandy has joined #ruby-lang
MaddinXx has joined #ruby-lang
mikewintermute has quit [Quit: mikewintermute]
matti has quit [Ping timeout: 240 seconds]
matti has joined #ruby-lang
matti has joined #ruby-lang
benlovell has joined #ruby-lang
maxmanders has joined #ruby-lang
vikhyat has joined #ruby-lang
vikhyat_ has quit [Ping timeout: 252 seconds]
akahn has joined #ruby-lang
Voker57 has quit [*.net *.split]
Gaelane has quit [*.net *.split]
ihme-TTilus has quit [*.net *.split]
Asher has quit [*.net *.split]
northelks has quit [*.net *.split]
tkuchiki has quit [*.net *.split]
Phoop has quit [*.net *.split]
heftig has quit [Quit: Quitting]
TTilus has joined #ruby-lang
Asher has joined #ruby-lang
northelks has joined #ruby-lang
Voker57 has joined #ruby-lang
tkuchiki has joined #ruby-lang
benlovell has quit [Ping timeout: 257 seconds]
vikhyat_ has joined #ruby-lang
vikhyat has quit [Ping timeout: 246 seconds]
sn0wb1rdz_ is now known as sn0wb1rdz
jxie has quit [Quit: leaving]
_ffio_ has joined #ruby-lang
ffio_ has quit [Ping timeout: 264 seconds]
benlovell has joined #ruby-lang
bzb has joined #ruby-lang
Bwild has quit [Ping timeout: 260 seconds]
zomgbie has quit [Read error: Connection reset by peer]
zomgbie has joined #ruby-lang
Bwild has joined #ruby-lang
apeiros_ is now known as apeiros
bzb has quit [Read error: Connection reset by peer]
MaddinXx has quit [Remote host closed the connection]
vikhyat_ has quit [Remote host closed the connection]
platoscave has quit []
benlovell has quit [Ping timeout: 240 seconds]
joshuawscott has joined #ruby-lang
banister has joined #ruby-lang
MaddinXx_ has joined #ruby-lang
Cakey has joined #ruby-lang
stamina has joined #ruby-lang
GaelanAintAround has joined #ruby-lang
benlovell has joined #ruby-lang
enebo has joined #ruby-lang
maxmanders has quit [Quit: Computer has gone to sleep.]
enebo has quit [Client Quit]
heftig has joined #ruby-lang
mbj has joined #ruby-lang
stamina has quit [Quit: WeeChat 0.4.1]
stamina has joined #ruby-lang
stamina has quit [Client Quit]
stamina has joined #ruby-lang
heftig has quit [Ping timeout: 245 seconds]
symm- has joined #ruby-lang
_ffio_ is now known as ffio
fenicks has joined #ruby-lang
<andrewvos> lo
Cakey has quit [Ping timeout: 260 seconds]
joshuawscott has quit [Quit: Leaving.]
marr has joined #ruby-lang
Cakey has joined #ruby-lang
pskosinski has joined #ruby-lang
benlovell has quit [Ping timeout: 264 seconds]
fenicks has quit [Read error: Connection reset by peer]
hinbody_ has left #ruby-lang [#ruby-lang]
hinbody has joined #ruby-lang
toretore has joined #ruby-lang
singpolyma has joined #ruby-lang
davetoxa has joined #ruby-lang
joshuawscott has joined #ruby-lang
<erikh> sup andrewvos
<erikh> how goes?
retro|cz has quit [Read error: Operation timed out]
joshuawscott has quit [Ping timeout: 245 seconds]
rickruby has joined #ruby-lang
mikewintermute has joined #ruby-lang
<yorickpeterse> herro
rickruby has quit [Remote host closed the connection]
agile has quit [Remote host closed the connection]
shinh has quit [Read error: Connection timed out]
shinh has joined #ruby-lang
mbj has quit [Ping timeout: 245 seconds]
mdedetrich has joined #ruby-lang
Cakey has quit [Ping timeout: 246 seconds]
joshuawscott has joined #ruby-lang
Cakey has joined #ruby-lang
malev has joined #ruby-lang
KU0N has quit [Quit: Linkinus - http://linkinus.com]
joshuawscott has quit [Ping timeout: 276 seconds]
gix- has quit [Read error: Connection reset by peer]
davetoxa has quit [Remote host closed the connection]
banister has quit [Read error: Connection reset by peer]
mikewintermute has quit [Quit: mikewintermute]
gix has joined #ruby-lang
mikewintermute has joined #ruby-lang
symm- has quit [Ping timeout: 264 seconds]
Cakey has quit [Ping timeout: 246 seconds]
Cakey has joined #ruby-lang
mikewintermute has quit [Quit: mikewintermute]
mikewintermute has joined #ruby-lang
joshuawscott has joined #ruby-lang
rdg has joined #ruby-lang
wallerdev has joined #ruby-lang
realDAB has joined #ruby-lang
benlovell has joined #ruby-lang
rickruby has joined #ruby-lang
zomgbie has quit [Ping timeout: 256 seconds]
tbuehlmann has quit [Remote host closed the connection]
Rubennn has quit [Ping timeout: 240 seconds]
Rubennn has joined #ruby-lang
flip_digits has joined #ruby-lang
rdg has quit [Quit: ttfn]
realDAB has quit [Quit: realDAB]
xxaM has quit [Quit: ZzZz]
mikewintermute has quit [Quit: mikewintermute]
soahccc__ has left #ruby-lang [#ruby-lang]
soahccc has joined #ruby-lang
realDAB has joined #ruby-lang
nathanstitt has joined #ruby-lang
realDAB has quit [Client Quit]
kgrz has joined #ruby-lang
gix has quit [Ping timeout: 248 seconds]
mdedetrich has quit [Quit: Computer has gone to sleep.]
mdedetrich has joined #ruby-lang
mdedetrich has quit [Client Quit]
enebo has joined #ruby-lang
jsullivandigs has joined #ruby-lang
gix has joined #ruby-lang
realDAB has joined #ruby-lang
sstrickl has joined #ruby-lang
sstrickl has joined #ruby-lang
sstrickl has quit [Changing host]
benlovell has quit [Ping timeout: 264 seconds]
kgrz has quit [Ping timeout: 245 seconds]
realDAB has quit [Quit: realDAB]
ecnalyr has quit [Remote host closed the connection]
tomzx_mac has joined #ruby-lang
realDAB has joined #ruby-lang
ngw has joined #ruby-lang
lnormous has joined #ruby-lang
dhruvasagar has joined #ruby-lang
rdg has joined #ruby-lang
zomgbie has joined #ruby-lang
Voker57 has quit []
chrisy2k has joined #ruby-lang
zomgbie has quit [Ping timeout: 276 seconds]
chrisy2k has quit []
sjaq has joined #ruby-lang
rdg has quit [Quit: ttfn]
spuk has quit [Quit: Human beings were created by water to transport it uphill.]
intellitech has quit [Quit: SMOKE BOMB!]
intellitech has joined #ruby-lang
killthe|afk is now known as killtheliterate
dhruvasagar has quit [Ping timeout: 276 seconds]
benlovell has joined #ruby-lang
Squarepy has quit [Quit: Leaving]
ericwood_ has left #ruby-lang [#ruby-lang]
ericwood has joined #ruby-lang
<ericwood> guys, I wrote the best thing ever: https://gist.github.com/eric-wood/18a456a22d6373ea4ca3
josh_ has joined #ruby-lang
realDAB has quit [Quit: realDAB]
arooni-mobile has joined #ruby-lang
glebm has quit [Quit: Computer has gone to sleep.]
havenwood has joined #ruby-lang
ngw has quit [Quit: Bye!]
vikhyat has joined #ruby-lang
vikhyat_ has joined #ruby-lang
mistym has joined #ruby-lang
josh_ has quit [Ping timeout: 250 seconds]
glebm has joined #ruby-lang
vikhyat has quit [Ping timeout: 264 seconds]
<yorickpeterse> what the shit is this
<yorickpeterse> oh, pong
<ericwood> fuck yeah it's pong
<yorickpeterse> holy hell this is trippy
<ericwood> s/trippy/fun
<ericwood> use the arrow keys to move the paddles
spuk has joined #ruby-lang
realDAB has joined #ruby-lang
vikhyat_ has quit [Ping timeout: 248 seconds]
Artheist has joined #ruby-lang
mistym has quit [Remote host closed the connection]
realDAB has joined #ruby-lang
realDAB has quit [Client Quit]
kstuart has joined #ruby-lang
pskosinski has quit [Quit: Til rivido Idisti!]
kstuart has quit [Read error: Connection reset by peer]
kstuart has joined #ruby-lang
henrikhodne has joined #ruby-lang
DEac-_ has quit [Read error: Connection reset by peer]
DEac- has joined #ruby-lang
[dmp] has joined #ruby-lang
[dmp] has joined #ruby-lang
mistym has joined #ruby-lang
enebo has quit [Quit: enebo]
mbj has joined #ruby-lang
pothibo has joined #ruby-lang
tylersmith has joined #ruby-lang
sjaq has quit [Quit: sjaq]
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
havenwood has quit [Ping timeout: 248 seconds]
pskosinski has joined #ruby-lang
pothibo has quit [Quit: pothibo]
bzalasky has joined #ruby-lang
jxie has joined #ruby-lang
mbj has quit [Remote host closed the connection]
mbj has joined #ruby-lang
realDAB has joined #ruby-lang
bzalasky has quit [Remote host closed the connection]
glebm has quit [Quit: Computer has gone to sleep.]
OffTheRails has joined #ruby-lang
OffTheRails has left #ruby-lang [#ruby-lang]
glebm has joined #ruby-lang
dhruvasagar has joined #ruby-lang
benlovell has quit [Ping timeout: 276 seconds]
saarinen has joined #ruby-lang
realDAB has quit [Quit: realDAB]
Cakey has quit [Quit: Lost terminal]
saarinen has quit [Ping timeout: 248 seconds]
sepp2k has joined #ruby-lang
postmodern has quit [Quit: Leaving]
flip_digits has quit [Remote host closed the connection]
dhruvasagar has quit [Ping timeout: 276 seconds]
joast has joined #ruby-lang
GaelanAintAround is now known as Gaelan
henrikhodne has quit [Ping timeout: 264 seconds]
marr has quit [Ping timeout: 246 seconds]
tkuchiki has quit [Remote host closed the connection]
tylersmith has quit [Remote host closed the connection]
zmike123 has quit [Ping timeout: 240 seconds]
dextaa has joined #ruby-lang
Gaelan is now known as GaelanAintAround
GaelanAintAround is now known as Gaelan
TheNotary has joined #ruby-lang
flip_digits has joined #ruby-lang
Gaelan is now known as GaelanAintAround
zmike123 has joined #ruby-lang
lnormous has quit [Read error: Connection reset by peer]
flip_digits has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
TheNotary has quit [Quit: Leaving]
Nisstyre has quit [Quit: Leaving]
arooni-mobile has quit [Ping timeout: 264 seconds]
GaelanAintAround is now known as Gaelan
adambeynon has joined #ruby-lang
hexreel has joined #ruby-lang
TheNotary has joined #ruby-lang
gregmore_ has joined #ruby-lang
yfeldblum has joined #ruby-lang
hahuang65 has quit [Ping timeout: 240 seconds]
gregmore_ has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
mbj_ has joined #ruby-lang
tylersmith has quit [Read error: Connection reset by peer]
mbj has quit [Ping timeout: 264 seconds]
tylersmith has joined #ruby-lang
rails_smith has joined #ruby-lang
mbj_ is now known as mbj
workmad3 has joined #ruby-lang
stamina has quit [Ping timeout: 248 seconds]
brianpWins has quit [Quit: brianpWins]
hahuang65 has joined #ruby-lang
judofyr has joined #ruby-lang
joshuawscott has quit [Quit: Leaving.]
cub1c has joined #ruby-lang
workmad3 has quit [Ping timeout: 276 seconds]
Artheist has quit [Read error: Connection reset by peer]
ffio has quit [Ping timeout: 240 seconds]
ffio_ has joined #ruby-lang
chris2 has quit [Ping timeout: 246 seconds]
Gaelan is now known as GaelanAintAround
ledestin has quit [Quit: ledestin]
realDAB has joined #ruby-lang
banister has joined #ruby-lang
cub1c has quit [Quit: leaving]
realDAB has quit [Quit: realDAB]
zmike123 has quit [Quit: ~]
Mon_Ouie has quit [Read error: Connection reset by peer]
marr has joined #ruby-lang
pkrnj has joined #ruby-lang
mitd has joined #ruby-lang
tylersmith has quit [Remote host closed the connection]
sepp2k has quit [Quit: Leaving.]
judofyr has quit [Read error: Connection reset by peer]
mitd has quit [Quit: Leaving]
cub1c has joined #ruby-lang
henrikhodne has joined #ruby-lang
hahuang65 has quit [Ping timeout: 252 seconds]
<andrewvos> erikh: Pretty good thanks dude
<andrewvos> erikh: And you?
zenspider has quit [Quit: bye]
Mon_Ouie has joined #ruby-lang
henrikhodne has quit [Ping timeout: 264 seconds]
saarinen has joined #ruby-lang
saarinen has quit [Ping timeout: 264 seconds]
mistym has quit [Remote host closed the connection]
TheNotary has quit [Quit: Leaving]
Nisstyre has joined #ruby-lang
<erikh> alright
<erikh> weird, I haven't touched this computer since around the time I said hi before
<erikh> we're on the same schedule or something
mistym has joined #ruby-lang
symm- has joined #ruby-lang
brianpWins has joined #ruby-lang
arooni-mobile has joined #ruby-lang
platoscave has joined #ruby-lang
PaulePanter has quit [Remote host closed the connection]
realDAB has joined #ruby-lang
_jpb_ has joined #ruby-lang
realDAB has quit [Client Quit]
jxweng has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 246 seconds]
jxweng has quit [Client Quit]
GaelanAintAround is now known as Gaelan
mistym has quit [Remote host closed the connection]
mistym has joined #ruby-lang
mistym has quit [Remote host closed the connection]
tylersmith has joined #ruby-lang
henrikhodne has joined #ruby-lang
tylersmith has quit [Read error: Operation timed out]
brianpWins has quit [Quit: brianpWins]
<andrewvos> hehehe
<andrewvos> This is useful ^
nathanstitt has quit [Quit: I growing sleepy]
<andrewvos> Wonder how I can get rid of having to do two loops
skmp has joined #ruby-lang
duphus has joined #ruby-lang
brianpWins has joined #ruby-lang
kstuart has quit [Ping timeout: 260 seconds]
adambeynon has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
s0ber_ has joined #ruby-lang
pkrnj has quit [Quit: Textual IRC Client: www.textualapp.com]
havenwood has quit [Remote host closed the connection]
s0ber has quit [Ping timeout: 256 seconds]
havenwood has joined #ruby-lang
s0ber_ is now known as s0ber
havenwood has quit [Ping timeout: 264 seconds]
glebm has quit [Ping timeout: 260 seconds]
nathanstitt has joined #ruby-lang
iliketurtles has joined #ruby-lang
Gaelan is now known as GaelanAintAround
GaelanAintAround is now known as Gaelan
brianpWins has quit [Quit: brianpWins]
glebm has joined #ruby-lang
flip_digits has joined #ruby-lang
pskosinski has quit [Quit: Til rivido Idisti!]
brianpWins has joined #ruby-lang
x0f has joined #ruby-lang
kstuart has joined #ruby-lang
Olipro has quit [Ping timeout: 246 seconds]
dextaa has quit [Quit: Leaving]
x0f_ has quit [Ping timeout: 240 seconds]
workmad3 has joined #ruby-lang
spuk has quit [Quit: Human beings were created by water to transport it uphill.]
henrikhodne has quit [Ping timeout: 260 seconds]
spuk has joined #ruby-lang
realDAB has joined #ruby-lang
banister has left #ruby-lang [#ruby-lang]
arooni-mobile has joined #ruby-lang
weeb1e has quit [Ping timeout: 256 seconds]
weeb1e has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
realDAB has quit [Quit: realDAB]
brianpWins has joined #ruby-lang
adwhit has quit [Ping timeout: 240 seconds]
adwhit has joined #ruby-lang
henrikhodne has joined #ruby-lang
arooni-mobile has quit [Ping timeout: 264 seconds]
MaddinXx_ has quit [Remote host closed the connection]
arooni-mobile has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
workmad3 has quit [Ping timeout: 248 seconds]
PaulePanter has joined #ruby-lang
rails_smith has quit [Quit: Leaving.]
gregmore_ has joined #ruby-lang
thyagobr has quit [Ping timeout: 264 seconds]
zenspider has joined #ruby-lang
henrikhodne has quit [Ping timeout: 246 seconds]
Mon_Ouie has quit [Ping timeout: 248 seconds]
arooni-mobile has quit [Ping timeout: 252 seconds]
ilyam has joined #ruby-lang
bryno has quit [Quit: leaving]
malev has quit [Quit: Leaving]
joshuawscott has joined #ruby-lang
kstuart has quit [Read error: Connection reset by peer]
ilyam has quit [Quit: ilyam]
<zenspider> can someone test this? time curl -v https://api.github.com/orgs/seattlerb/repos
pskosinski has joined #ruby-lang
symm-_ has joined #ruby-lang
duphus has quit [Quit: Leaving.]
symm- has quit [Ping timeout: 260 seconds]
duphus has joined #ruby-lang
symm-_ has quit [Read error: Connection reset by peer]
<matti> real0m1.244s
duphus has left #ruby-lang [#ruby-lang]
<zenspider> thanks. I think I can blame it on packet loss
symm-__ has joined #ruby-lang
flip_digits has quit [Remote host closed the connection]
<erikh> maybe ben broke something else
brianpWins has quit [Quit: brianpWins]
symm-__ has left #ruby-lang [#ruby-lang]
brianpWins has joined #ruby-lang
pskosinski has quit [Ping timeout: 240 seconds]
cmaxw_ has joined #ruby-lang
flip_digits has joined #ruby-lang
ilyam has joined #ruby-lang
firstdayonthejob has joined #ruby-lang
flip_digits has quit [Ping timeout: 248 seconds]
hashkey has joined #ruby-lang
Gaelan is now known as GaelanAintAround
flip_digits has joined #ruby-lang
postmodern has joined #ruby-lang
cmaxw_ has quit [Quit: cmaxw_]
cmaxw_ has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
benanne has quit [Quit: kbai]
<postmodern> has anyone forced capybara-webkit to claim it supports flash?
<postmodern> so that the JS will add the embed tag instead of adding some "you must install flash" message