ChanServ changed the topic of #ruby-lang to: Ruby 1.9.3-p125: http://ruby-lang.org | Paste >3 lines of text on http://pastie.org or use a gist
slyphon has joined #ruby-lang
s0ra_h is now known as sora_h
chendo has joined #ruby-lang
chendo has quit [Changing host]
chendo has joined #ruby-lang
_soupnazi has joined #ruby-lang
benanne has quit [Quit: kbai]
jolasveinninn has quit [Quit: Leaving]
saxy has joined #ruby-lang
dejongge has joined #ruby-lang
deryl has joined #ruby-lang
_soupnazi has quit [Quit: Page closed]
sora_h is now known as s0ra_h
<rhizmoe> are there any standard algorithms for modeling resource depletion over time?
havenn has joined #ruby-lang
CarlB_the_great has joined #ruby-lang
CarlB_the_great has quit [Remote host closed the connection]
CarlB_the_great has joined #ruby-lang
machuga has joined #ruby-lang
justinseiter has quit [Ping timeout: 246 seconds]
justinseiter has joined #ruby-lang
CarlB_the_great has quit [Remote host closed the connection]
burgestrand has joined #ruby-lang
CarlB_the_great has joined #ruby-lang
t71540 has quit [Remote host closed the connection]
saxy has left #ruby-lang [#ruby-lang]
saxy has joined #ruby-lang
t5571 has joined #ruby-lang
retro|cz has joined #ruby-lang
havenn has quit [Remote host closed the connection]
yxhuvud has quit [Ping timeout: 252 seconds]
justinseiter has quit [Ping timeout: 252 seconds]
jackhammer2022 has joined #ruby-lang
Torrieri has quit [Ping timeout: 268 seconds]
Sambalero has joined #ruby-lang
Sambalero has quit [Remote host closed the connection]
seanstickle has quit [Quit: seanstickle]
pfaff_ has joined #ruby-lang
postmodern has quit [Quit: Leaving]
s0ra_h is now known as sora_h
saxy has quit [Remote host closed the connection]
saxy has joined #ruby-lang
saxy has quit [Remote host closed the connection]
m3nd3s_ has quit []
saxy has joined #ruby-lang
m3nd3s has joined #ruby-lang
saxy has quit [Read error: Connection reset by peer]
saxy_ has joined #ruby-lang
sora_h is now known as s0ra_h
scottj has left #ruby-lang [#ruby-lang]
machuga has quit [Remote host closed the connection]
mwjcomputing has joined #ruby-lang
setmeaway has joined #ruby-lang
t5571 has quit [Remote host closed the connection]
t46222 has joined #ruby-lang
heftig has quit [Ping timeout: 245 seconds]
lun_ has quit [Remote host closed the connection]
gmci has joined #ruby-lang
heftig has joined #ruby-lang
<rhizmoe> is strftime the only way to get sunday as day of week: 0 (vs. 7)
<rhizmoe> strftime('%w'), that is
<hagabaka> not sure what you mean
heftig has quit [Ping timeout: 246 seconds]
saxy_ has left #ruby-lang [#ruby-lang]
saxy_ has joined #ruby-lang
<rhizmoe> Date.today.cwday and .wday all return day-of-week numbers, indexes, that start at 1:monday
<rhizmoe> or, y'know, Date.parse(...).cwday...
<rhizmoe> i'm just trying to get a logical mapping between wday/cwday/or whatever, and the Date::DAYNAMES array
<rhizmoe> if in fact this isn't just a big xy problem
savage- has joined #ruby-lang
perryh_away is now known as perryh
s0ra_h is now known as sora_h
t46222 has quit [Remote host closed the connection]
t74497 has joined #ruby-lang
dejongge has quit [Ping timeout: 252 seconds]
dejongge has joined #ruby-lang
esad has quit [Quit: Computer has gone to sleep.]
sailias has joined #ruby-lang
ilyam has joined #ruby-lang
postmodern has joined #ruby-lang
heftig has joined #ruby-lang
ilyam has quit [Quit: ilyam]
savage- has quit [Remote host closed the connection]
sora_h is now known as s0ra_h
mwjcomputing has left #ruby-lang ["Leaving"]
dejongge has quit [Ping timeout: 252 seconds]
dejongge has joined #ruby-lang
Cherrum has quit [Read error: Connection reset by peer]
Cherrum has joined #ruby-lang
dejongge has quit [Ping timeout: 276 seconds]
saxy_ has quit [Remote host closed the connection]
s0ra_h is now known as sora_h
t74497 has quit [Remote host closed the connection]
t50389 has joined #ruby-lang
setmeaway has quit [Ping timeout: 276 seconds]
sora_h is now known as s0ra_h
SuperTaz has joined #ruby-lang
saxy has joined #ruby-lang
CarlB_the_great has quit [Remote host closed the connection]
gsav has quit [Read error: Connection reset by peer]
Banistergalaxy has joined #ruby-lang
mrsolo has joined #ruby-lang
mrsolo has quit [Quit: Leaving]
vbatts has joined #ruby-lang
s0ra_h is now known as sora_h
<rhizmoe> if i think i need a dynamic while loop, like: while dynamic_value(foo) < amt ... end; # what might i be really looking for?
<banisterfiend> rhizmoe: loop { break if dynamic_value(foo) }
<banisterfiend> rhizmoe: but your 'dynamic value' works in the while
<banisterfiend> teh condition expression is re-evaluated each loop tick
<rhizmoe> oh it does? i should say dynamic_value is a method that calculates from an array of objects in 'foo', but you're saying that's going to be "re-ran" every iteration?
<banisterfiend> of course
<banisterfiend> otherwise while loops would be next to useless
<banisterfiend> if the condition wasn't re-evaluated each time to see if it still holds true :P
<banisterfiend> this is how 'while' behaves in every language, afaik
<rhizmoe> hah, true. is there a way to handle assignment this way? dyn_val(foo) is a qty being used within the loop
<rhizmoe> yeah, i'm just not thinking very rigorously right now. plus i'm not CS
<rhizmoe> i'm thinking that somewhere there's a ruby replacement for this while tangle i'm constructing
<banisterfiend> sure you can assign in teh expression
<rhizmoe> while bar = dyn_val(foo) < amt # ?
<banisterfiend> while (x = dynamic_value(foo)) < amt
<banisterfiend> puts x
<banisterfiend> end
<banisterfiend> probably best to parenthesize it
<banisterfiend> (even if u dont need to)
<rhizmoe> parens necessary? heh :) thanks
<banisterfiend> even if not, it's better to use them
<rhizmoe> sure. UMP is a saying i remember from...bash?
charliesome has joined #ruby-lang
<rhizmoe> maybe perl
<banisterfiend> UMP?
<rhizmoe> "use more parentheses"
<rhizmoe> which i can't find a reference to now, so maybe i dreamt it
<rhizmoe> or it's "use more #{something}"
sora_h is now known as s0ra_h
t50389 has quit [Remote host closed the connection]
t68627 has joined #ruby-lang
savage- has joined #ruby-lang
Xzyx987X has joined #ruby-lang
Xzyx987X_ has quit [Ping timeout: 244 seconds]
ryanf has joined #ruby-lang
sailias has quit [Ping timeout: 248 seconds]
heftig has quit [Remote host closed the connection]
deryl has quit [Quit: deryl]
s0ra_h is now known as sora_h
Cidiomar has joined #ruby-lang
<rhizmoe> oh, it's UMQ, use more quotes
havenn_ has joined #ruby-lang
_|christian|_ has joined #ruby-lang
sora_h is now known as s0ra_h
codewrangler has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
chimkan has joined #ruby-lang
Cidiomar has quit [Quit: Cidiomar]
ryanf has quit [Quit: leaving]
znake has joined #ruby-lang
bluemonk_ has quit [Ping timeout: 252 seconds]
bluemonk has joined #ruby-lang
poga has quit [Remote host closed the connection]
gmci has quit [Quit: Computer has gone to sleep.]
<TTilus> more cowbell!
chimkan has quit [Quit: chimkan]
<banisterfiend> TTilus: what do u mean
sphera has quit [Quit: ZNC - http://znc.in]
<TTilus> banisterfiend: ask youtube
<TTilus> and u shall be enlightened
sepp2k has joined #ruby-lang
jackhammer2022 has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
<banisterfiend> TTilus: no
<banisterfiend> sepp2k: can u explain the 'sexy' ? :))
mistym has quit [Remote host closed the connection]
<sepp2k> banisterfiend: I don't see what there is to explain. It's simply the one word that best describes me.
<banisterfiend> sepp2k: are you the rocco siffredi of #ruby-lang ?
<sepp2k> Who's that?
s0ra_h is now known as sora_h
<erikh> everyone knows I'm the sexiest ruby programmer to ever exist
just4dos_ has quit [Ping timeout: 260 seconds]
areil has joined #ruby-lang
<erikh> yeah but with less shoes and more mustache
<erikh> good lord that man is gayer than gay
<banisterfiend> for the full pic set
<banisterfiend> u will luv it
<erikh> haha
savage- has quit [Remote host closed the connection]
<banisterfiend> erikh: if u want to go into gay overdrive though, check this: http://www.youtube.com/watch?v=P9sQZLtsfp8
<erikh> hahaha wow
<erikh> just fucking wow
sora_h is now known as s0ra_h
just4dos_ has joined #ruby-lang
stardiviner has quit [Quit: my website: http://stardiviner.dyndns-blog.com/]
havenn_ has quit [Remote host closed the connection]
LanceHaig has joined #ruby-lang
LanceHaig has quit [Changing host]
LanceHaig has joined #ruby-lang
s0ra_h is now known as sora_h
Skif has quit [Ping timeout: 240 seconds]
pygmael has joined #ruby-lang
dc5ala has joined #ruby-lang
t68627 has quit [Remote host closed the connection]
t78848 has joined #ruby-lang
Skif has joined #ruby-lang
setmeaway has joined #ruby-lang
areil has quit [Remote host closed the connection]
rippa has joined #ruby-lang
dc5ala has quit [Quit: Ex-Chat]
th3xer0 has joined #ruby-lang
heftig has joined #ruby-lang
Skif has quit [Ping timeout: 240 seconds]
Fullmoon has joined #ruby-lang
Skif has joined #ruby-lang
stardiviner has joined #ruby-lang
havenn has joined #ruby-lang
havenn has quit [Ping timeout: 260 seconds]
workmad3 has joined #ruby-lang
yankov has joined #ruby-lang
pygmael has quit [Read error: Connection reset by peer]
pygmael has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
workmad3 has quit [Ping timeout: 260 seconds]
heftig has quit [Quit: leaving]
neocoin has joined #ruby-lang
thone_ has joined #ruby-lang
thone has quit [Ping timeout: 245 seconds]
lun_ has joined #ruby-lang
t78848 has quit [Remote host closed the connection]
t60869 has joined #ruby-lang
banisterfiend has quit [Remote host closed the connection]
banisterfiend has joined #ruby-lang
banisterfiend has quit [Read error: Connection reset by peer]
banisterfiend` has joined #ruby-lang
yankov has quit [Quit: yankov]
pygmael has quit [Read error: Connection reset by peer]
pygmael has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
brianpWins has joined #ruby-lang
th3xer0 has quit [Quit: leaving]
saxy has quit [Remote host closed the connection]
yxhuvud has joined #ruby-lang
Criztian has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 276 seconds]
<lun_> Which Object to XML mapper you guys would recommend me to use?
pygmael has quit [Read error: Connection reset by peer]
pygmael has joined #ruby-lang
brianpWins has quit [Quit: brianpWins]
Banistergalaxy has joined #ruby-lang
workmad3 has joined #ruby-lang
solars has joined #ruby-lang
guns has quit [Ping timeout: 240 seconds]
stardiviner has quit [Quit: my website: http://stardiviner.dyndns-blog.com/]
th3xer0 has joined #ruby-lang
stardiviner has joined #ruby-lang
t60869 has quit [Remote host closed the connection]
t96331 has joined #ruby-lang
petercooper has joined #ruby-lang
qwerxy has joined #ruby-lang
benanne has joined #ruby-lang
pygmael has quit [Read error: Connection reset by peer]
pygmael has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 276 seconds]
saxy has joined #ruby-lang
icooba has joined #ruby-lang
saxy has quit [Ping timeout: 276 seconds]
woollyams has joined #ruby-lang
toretore has joined #ruby-lang
gsav has joined #ruby-lang
t96331 has quit [Remote host closed the connection]
t39445 has joined #ruby-lang
Banistergalaxy has joined #ruby-lang
bytephilia has joined #ruby-lang
woollyams has quit [Quit: Computer has gone to sleep.]
judofyr has joined #ruby-lang
Torrieri has joined #ruby-lang
pygmael has quit [Read error: Connection reset by peer]
woollyams has joined #ruby-lang
pygmael has joined #ruby-lang
woollyams has quit [Client Quit]
havenn has joined #ruby-lang
x0F_ has joined #ruby-lang
x0F has quit [Disconnected by services]
x0F_ is now known as x0F
havenn has quit [Ping timeout: 260 seconds]
Leeky_afk is now known as Leeky
bytephilia has quit [Quit: Computer has gone to sleep.]
DEac- has quit [Read error: No route to host]
DEac- has joined #ruby-lang
t39445 has quit [Remote host closed the connection]
t50811 has joined #ruby-lang
qwerxy has quit [Quit: offski]
saxy has joined #ruby-lang
lun_ has quit [Remote host closed the connection]
Leeky is now known as Leeky_afk
s1n4 has joined #ruby-lang
saxy has quit [Ping timeout: 276 seconds]
znake has quit [Quit: znake]
ricardovaleriano has joined #ruby-lang
goshakkk has joined #ruby-lang
SubSpawnLnx has quit [Ping timeout: 244 seconds]
singpolyma has quit [Read error: Operation timed out]
judofyr_ has joined #ruby-lang
judofyr has quit [Read error: Connection reset by peer]
judofyr_ has left #ruby-lang [#ruby-lang]
s1n4 has quit [Ping timeout: 252 seconds]
judofyr_ has joined #ruby-lang
s1n4 has joined #ruby-lang
pygmael has quit [Read error: Connection reset by peer]
pygmael has joined #ruby-lang
judofyr_ has quit []
judofyr has joined #ruby-lang
neocoin has quit [Remote host closed the connection]
judofyr has quit [Ping timeout: 276 seconds]
burgestrand has quit [Ping timeout: 240 seconds]
fgsfdsfgsfds has joined #ruby-lang
ricardovaleriano has quit [Remote host closed the connection]
goshakkk has quit [Quit: Computer has gone to sleep.]
burgestrand has joined #ruby-lang
goshakkk has joined #ruby-lang
saxy has joined #ruby-lang
t50811 has quit [Remote host closed the connection]
t81910 has joined #ruby-lang
saxy has quit [Ping timeout: 276 seconds]
gsav has quit [Read error: Connection reset by peer]
postmodern has quit [Quit: Leaving]
petercooper has quit [Remote host closed the connection]
charliesome has quit [Quit: Textual IRC Client: www.textualapp.com]
esad has joined #ruby-lang
esad has quit [Quit: Computer has gone to sleep.]
Torrieri has quit [Ping timeout: 240 seconds]
Dreamer3 has quit [Ping timeout: 240 seconds]
Dreamer3 has joined #ruby-lang
neocoin has joined #ruby-lang
tsou has quit [Quit: leaving]
tsou has joined #ruby-lang
Jake232 has joined #ruby-lang
Jake232 has quit [Read error: Connection reset by peer]
saxy has joined #ruby-lang
fgsfdsfgsfds has quit [Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org]
retro|cz has quit [Ping timeout: 265 seconds]
sailias has joined #ruby-lang
saxy has quit [Ping timeout: 276 seconds]
workmad3 has quit [Ping timeout: 240 seconds]
retro|cz has joined #ruby-lang
vlad_starkov has joined #ruby-lang
esad has joined #ruby-lang
justinmcp has joined #ruby-lang
seanstickle has joined #ruby-lang
icooba has quit [Quit: Computer has gone to sleep.]
ricardovaleriano has joined #ruby-lang
ricardovaleriano has quit [Remote host closed the connection]
stardiviner has quit [Quit: my website: http://stardiviner.dyndns-blog.com/]
sailias has quit [Quit: Leaving.]
tjadc has joined #ruby-lang
jxie has quit [Quit: leaving]
t81910 has quit [Remote host closed the connection]
t59279 has joined #ruby-lang
saxy has joined #ruby-lang
fgsfdsfgsfds has joined #ruby-lang
sepp2k1 has joined #ruby-lang
saxy has quit [Ping timeout: 276 seconds]
sepp2k has quit [Ping timeout: 260 seconds]
m3nd3s has quit [Remote host closed the connection]
esad has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
nXqd has joined #ruby-lang
<nXqd> quick question : what is {} in ruby ?
<rue> {} is the empty Hash
<nXqd> thanks rue
<rue> {a: 1} is a nonempty Hash literal
<rue> And then you also have blocks, like in foo { puts 1 }
<nXqd> empty hash is exactly what I'm looking for :)
<nXqd> ah, is dictionary object in old prog asp classic and hash is the same ?
bytephilia has joined #ruby-lang
fgsfdsfgsfds has quit [Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org]
<nXqd> hi rue ?
<rue> It’s akin to a dictionary
<rue> Keys are mapped via their hash and equality into values
chimkan has joined #ruby-lang
ricardovaleriano has joined #ruby-lang
nXqd_ has joined #ruby-lang
nXqd_ has quit [Client Quit]
nXqd has quit [Remote host closed the connection]
nXqd has joined #ruby-lang
<nXqd> thanks rue ;)
fgsfdsfgsfds has joined #ruby-lang
gmci has joined #ruby-lang
machuga has joined #ruby-lang
bytephilia has quit [Quit: Computer has gone to sleep.]
m3nd3s has joined #ruby-lang
chimkan has quit [Quit: chimkan]
slyphon has quit [Ping timeout: 245 seconds]
chimkan has joined #ruby-lang
t59279 has quit [Remote host closed the connection]
t51430 has joined #ruby-lang
m3nd3s_ has joined #ruby-lang
justinmcp has quit [Remote host closed the connection]
s1n4 has quit [Quit: leaving]
m3nd3s has quit [Ping timeout: 272 seconds]
chimkan has quit [Quit: chimkan]
codewrangler has joined #ruby-lang
m3nd3s_ has quit [Remote host closed the connection]
d3vic3 has joined #ruby-lang
ttilley has joined #ruby-lang
workmad3 has joined #ruby-lang
saxy has joined #ruby-lang
d3vic3 has quit [Quit: leaving]
gmci has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
saxy has quit [Ping timeout: 276 seconds]
gmci has joined #ruby-lang
havenn has joined #ruby-lang
pygmael has quit [Read error: Connection reset by peer]
pygmael has joined #ruby-lang
limeds has joined #ruby-lang
kain_ is now known as kain
fgsfdsfgsfds has quit [Read error: No route to host]
Dreamer3 has quit [Quit: Leaving...]
Dreamer3 has joined #ruby-lang
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
yankov has joined #ruby-lang
savage- has joined #ruby-lang
dfr|mac has joined #ruby-lang
m3nd3s has joined #ruby-lang
saxy has joined #ruby-lang
jxie has joined #ruby-lang
pygmael has quit [Read error: Connection reset by peer]
icooba has joined #ruby-lang
pygmael has joined #ruby-lang
saxy has quit [Ping timeout: 260 seconds]
m3nd3s has quit [Remote host closed the connection]
t51430 has quit [Remote host closed the connection]
t96924 has joined #ruby-lang
tbuehlmann has joined #ruby-lang
seanstickle has quit [Quit: seanstickle]
gmci has quit [Quit: Computer has gone to sleep.]
limeds has quit [Quit: limeds]
havenn has quit [Remote host closed the connection]
m3nd3s has joined #ruby-lang
Carnage\ has joined #ruby-lang
alex_kira has quit [Remote host closed the connection]
dfr|mac has quit [Remote host closed the connection]
savage- has quit [Ping timeout: 265 seconds]
machuga has quit [Remote host closed the connection]
gmci has joined #ruby-lang
just4dos_ has quit [Ping timeout: 276 seconds]
workmad3 has quit [Ping timeout: 252 seconds]
ricardovaleriano has quit [Remote host closed the connection]
gmci has quit [Read error: Operation timed out]
gmci has joined #ruby-lang
seanstickle has joined #ruby-lang
just4dos_ has joined #ruby-lang
havenn has joined #ruby-lang
workmad3 has joined #ruby-lang
deryl has joined #ruby-lang
havenn_ has joined #ruby-lang
danielvdotcom has joined #ruby-lang
workmad3 has quit [Ping timeout: 256 seconds]
havenn_ has quit [Read error: No route to host]
havenn_ has joined #ruby-lang
godfrey999 has joined #ruby-lang
qwerxy has joined #ruby-lang
havenn has quit [Remote host closed the connection]
gsav has joined #ruby-lang
havenn has joined #ruby-lang
s1n4 has joined #ruby-lang
codewrangler has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
codewrangler has joined #ruby-lang
havenn has quit [Ping timeout: 244 seconds]
s1n4 has quit [Client Quit]
sora_h is now known as s0ra_h
guns has joined #ruby-lang
guns is now known as Guest768
gmci has quit [Ping timeout: 244 seconds]
Guest768 has quit [Client Quit]
codewrangler has quit [Client Quit]
brianpWins has joined #ruby-lang
codewrangler has joined #ruby-lang
gmci has joined #ruby-lang
codewrangler has quit [Client Quit]
codewrangler has joined #ruby-lang
codewrangler has quit [Client Quit]
th3xer0 has quit [Quit: leaving]
codewrangler has joined #ruby-lang
havenn_ has quit [Remote host closed the connection]
seanstickle has quit [Quit: seanstickle]
Hakon has joined #ruby-lang
voker57 has quit [Read error: Connection reset by peer]
godfrey999 has quit [Quit: godfrey999]
qwerxy has quit [Quit: offski]
anekos has quit [Remote host closed the connection]
anekos has joined #ruby-lang
towski has joined #ruby-lang
goshakkk has quit [Quit: Computer has gone to sleep.]
t96924 has quit [Remote host closed the connection]
t87549 has joined #ruby-lang
s0ra_h is now known as sora_h
havenn has joined #ruby-lang
havenn has quit [Remote host closed the connection]
havenn has joined #ruby-lang
m3nd3s has quit [Remote host closed the connection]
havenn has quit [Remote host closed the connection]
havenn has joined #ruby-lang
solars has quit [Ping timeout: 245 seconds]
wallerdev has joined #ruby-lang
goshakkk has joined #ruby-lang
havenn has quit [Remote host closed the connection]
sailias has joined #ruby-lang
sora_h is now known as s0ra_h
slyphon has joined #ruby-lang
saxy has joined #ruby-lang
agile has quit [Ping timeout: 272 seconds]
sailias has quit [Quit: Leaving.]
solars has joined #ruby-lang
agile has joined #ruby-lang
crackity_jones has joined #ruby-lang
towski has quit [Remote host closed the connection]
havenn has joined #ruby-lang
<abstr4ct> struggling with nokogiri and sax, im looking for some code that does something similar to the following logic... grabs all text between 2 elements/patterns.. Example: start grabbing text once i see X and stop grabbing once i see Y.
m3nd3s has joined #ruby-lang
agile has quit [Ping timeout: 276 seconds]
havenn has quit [Remote host closed the connection]
<rue> Text?
agile has joined #ruby-lang
nXqd has quit [Ping timeout: 244 seconds]
tonni has quit [Remote host closed the connection]
tonni has joined #ruby-lang
<abstr4ct> yes, im trying to grab text.
gentz_ has quit [Ping timeout: 256 seconds]
saxy has quit [Remote host closed the connection]
gentz has joined #ruby-lang
saxy has joined #ruby-lang
flak has joined #ruby-lang
saxy_ has joined #ruby-lang
flak is now known as Guest78224
saxy has quit [Read error: Connection reset by peer]
havenn has joined #ruby-lang
havenn_ has joined #ruby-lang
rippa has quit [Ping timeout: 244 seconds]
seanstickle has joined #ruby-lang
kiddorails has joined #ruby-lang
s0ra_h is now known as sora_h
Hakon has quit [Quit: Leaving...]
Guest78224 has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
rippa has joined #ruby-lang
tgriffin2081 has quit [Ping timeout: 245 seconds]
emanon_ has joined #ruby-lang
danielvdotcom has quit [Quit: im out of take it easy!]
sora_h is now known as s0ra_h
Hakon has joined #ruby-lang
sepp2k1 has quit [Read error: Connection reset by peer]
saxy_ has quit [Remote host closed the connection]
kain has quit [Quit: exit]
lsegal has joined #ruby-lang
saxy has joined #ruby-lang
kain has joined #ruby-lang
joast has quit [Quit: Leaving.]
kain has quit [Client Quit]
kain has joined #ruby-lang
burgestrand has quit [Quit: Leaving.]
publicvoid__ has quit [Remote host closed the connection]
burgestrand has joined #ruby-lang
nXqd has joined #ruby-lang
tgriffin2081 has joined #ruby-lang
seanstickle has quit [Quit: seanstickle]
saxy has quit [Remote host closed the connection]
goshakkk has quit [Quit: Computer has gone to sleep.]
goshakkk has joined #ruby-lang
s0ra_h is now known as sora_h
tjadc has quit [Ping timeout: 248 seconds]
tjadc has joined #ruby-lang
t87549 has quit [Remote host closed the connection]
t58204 has joined #ruby-lang
ilyam has joined #ruby-lang
ilyam has quit [Client Quit]
nXqd has quit [Ping timeout: 240 seconds]
sora_h is now known as s0ra_h
emanon_ has left #ruby-lang [#ruby-lang]
tgriffin2081 has quit [Ping timeout: 245 seconds]
adambeynon has joined #ruby-lang
adambeynon has quit [Client Quit]
nXqd has joined #ruby-lang
slyphon has quit [Ping timeout: 245 seconds]
ryanf has joined #ruby-lang
benanne has quit [Quit: kbai]
zmack has joined #ruby-lang
kain has quit [Quit: exit]
saxy has joined #ruby-lang
kain has joined #ruby-lang
tgriffin2081 has joined #ruby-lang
saxy has quit [Ping timeout: 276 seconds]
pbjorklund has joined #ruby-lang
goshakkk has quit [Quit: Computer has gone to sleep.]
s0ber has quit [Read error: Connection reset by peer]
neocoin has quit [Remote host closed the connection]
s0ber has joined #ruby-lang
saxy has joined #ruby-lang
justinseiter has joined #ruby-lang
rippa has quit [Ping timeout: 246 seconds]
yxhuvud has quit [Ping timeout: 245 seconds]
saxy has quit [Ping timeout: 276 seconds]
s0ra_h is now known as sora_h
solars has quit [Ping timeout: 245 seconds]
ryanf has quit [Quit: leaving]
tjadc has quit [Ping timeout: 276 seconds]
ryanf has joined #ruby-lang
t58204 has quit [Remote host closed the connection]
justinseiter has quit [Ping timeout: 244 seconds]
t437 has joined #ruby-lang
workmad3 has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
brianpWins has quit [Quit: brianpWins]
fgomez has quit [Remote host closed the connection]
nXqd has quit [Ping timeout: 240 seconds]
dejongge has joined #ruby-lang
brianpWins has joined #ruby-lang
denysonique has quit [Max SendQ exceeded]
sora_h is now known as s0ra_h
qwerxy has joined #ruby-lang
tgriffin2081 has quit [Ping timeout: 252 seconds]
toretore has quit [Quit: This computer has gone to sleep]
denysonique has joined #ruby-lang
neocoin has joined #ruby-lang
agile has quit [Ping timeout: 276 seconds]
Xzyx987X has quit [Ping timeout: 268 seconds]
S1kx has quit [Read error: Connection reset by peer]
qwerxy has quit [Quit: offski]
apeiros_ has joined #ruby-lang
apeiros_ has left #ruby-lang [#ruby-lang]
goshakkk has joined #ruby-lang
agile has joined #ruby-lang
t437 has quit [Remote host closed the connection]
t71054 has joined #ruby-lang
Fullmoon has quit [Quit: Fullmoon]
stardiviner has joined #ruby-lang
havenn__ has joined #ruby-lang
havenn_ has quit [Ping timeout: 244 seconds]
fgomez has joined #ruby-lang
dejongge has quit [Ping timeout: 268 seconds]
workmad3 has quit [Ping timeout: 265 seconds]
goshakkk has quit [Quit: Computer has gone to sleep.]
saxy has joined #ruby-lang
Tearan has joined #ruby-lang
Tearan has quit [Client Quit]
s0ra_h is now known as sora_h
saxy has quit [Remote host closed the connection]
Criztian has quit []
saxy has joined #ruby-lang
banisterfiend` has quit [Remote host closed the connection]
dejongge has joined #ruby-lang
banisterfiend has joined #ruby-lang
banisterfiend has quit [Read error: Connection reset by peer]
banisterfiend has joined #ruby-lang
bytephilia has joined #ruby-lang
saxy has quit [Ping timeout: 272 seconds]
qwerxy has joined #ruby-lang
postmodern has joined #ruby-lang
t71054 has quit [Remote host closed the connection]
t50407 has joined #ruby-lang
sora_h is now known as s0ra_h
Hakon has quit [Read error: Connection reset by peer]
voker57 has joined #ruby-lang
voker57 has quit [Changing host]
voker57 has joined #ruby-lang
dejongge has quit [Quit: Leaving.]
A124 has joined #ruby-lang
deryl has quit [Quit: deryl]
havenn has quit [Remote host closed the connection]
s0ra_h is now known as sora_h
kiddorails has left #ruby-lang [#ruby-lang]
havenn__ has quit [Remote host closed the connection]
qwerxy has quit [Quit: offski]
neocoin has quit [Remote host closed the connection]
nXqd has joined #ruby-lang
pygmael has quit [Read error: Connection reset by peer]
pygmael has joined #ruby-lang
havenn has joined #ruby-lang
sora_h is now known as s0ra_h
havenn has quit [Remote host closed the connection]
s0ra_h is now known as sora_h
qwerxy has joined #ruby-lang
Nisstyre has quit [Quit: Leaving]
Nisstyre_ has quit [Quit: Leaving]
AnarchoTroll has joined #ruby-lang
mistym has quit [Remote host closed the connection]
t50407 has quit [Remote host closed the connection]
t69121 has joined #ruby-lang
justinmcp has joined #ruby-lang
sora_h is now known as s0ra_h
Carnage\ has quit []
justinmcp has quit [Remote host closed the connection]
joast has joined #ruby-lang
ttilley has quit [Ping timeout: 245 seconds]
qwerxy has quit [Quit: offski]
anjen has joined #ruby-lang
anjen has quit [Client Quit]
Torrieri has joined #ruby-lang
Torrieri has quit [Changing host]
Torrieri has joined #ruby-lang
havenn has joined #ruby-lang
banisterfiend has quit [Remote host closed the connection]
seanstickle has joined #ruby-lang
banisterfiend has joined #ruby-lang
m3nd3s has quit [Remote host closed the connection]
banisterfiend has quit [Ping timeout: 244 seconds]
t69121 has quit [Remote host closed the connection]
t59124 has joined #ruby-lang
saxy has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 276 seconds]
Banistergalaxy has joined #ruby-lang
EvilJStoker has quit [Excess Flood]
chendo has quit [Ping timeout: 256 seconds]
moxiemk1 has joined #ruby-lang
chendo has joined #ruby-lang
chendo has quit [Changing host]
chendo has joined #ruby-lang
bytephilia has quit [Read error: Connection timed out]
guns has joined #ruby-lang
canton7 has quit [Remote host closed the connection]
gsav has quit [Ping timeout: 240 seconds]
vlad_starkov has quit [Remote host closed the connection]
zmack has quit [Remote host closed the connection]
s0ra_h is now known as sora_h
m3nd3s has joined #ruby-lang
chendo has quit [Ping timeout: 246 seconds]
toretore has joined #ruby-lang
EvilJStoker has joined #ruby-lang
chendo has joined #ruby-lang
yankov_ has joined #ruby-lang
banisterfiend has joined #ruby-lang
yankov has quit [Ping timeout: 272 seconds]
mistym has joined #ruby-lang
mistym has quit [Changing host]
mistym has joined #ruby-lang
JoshWines has joined #ruby-lang
Banistergalaxy has quit [Ping timeout: 256 seconds]
moxiemk1 is now known as shaskins
shaskins has quit []
shaskins has joined #ruby-lang
Nisstyre has joined #ruby-lang
A124 has quit [Quit: Leaving.]
savage- has joined #ruby-lang
shaskins has left #ruby-lang [#ruby-lang]