apeiros_ changed the topic of #ruby-lang to: Ruby 2.2.0; 2.1.5; 2.0.0-p598; 1.9.3-p551: http://ruby-lang.org || Paste code on http://gist.github.com
<rbpd5015> +13.5\n-105
<rbpd5015> so that is what i get which is actually worse than +13.5 -105
<rbpd5015> haha
<rbpd5015> I suck
<apeiros_> that's because ' only knows \\ and \' as escapes
<apeiros_> use "
dzejrou has quit [Quit: Leaving]
<rbpd5015> nm
<rbpd5015> ""
<rbpd5015> got it
<rbpd5015> :)
<rbpd5015> thanks
tunaCanBruh has joined #ruby-lang
|jemc| has left #ruby-lang ["WeeChat 1.0.1"]
ta_ has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 272 seconds]
morton has joined #ruby-lang
ta_ has quit [Ping timeout: 264 seconds]
ReinH has joined #ruby-lang
jefus has joined #ruby-lang
<morton> do while loops get compiled to native code?
<jhass> I don't think any ruby gets compiled to native code
<jhass> with MRI at least
Aova has quit [Read error: Connection reset by peer]
<morton> then how does a=5 work
chinmay_dd has quit [Quit: Connection closed for inactivity]
<jhass> I'm not too much into MRIs memory model
<jhass> but I guess locals are essentially instances C structs
<jhass> that have pointers to other structs (the object)
intinig has joined #ruby-lang
morton has quit [Quit: Page closed]
sudoubuntu has joined #ruby-lang
Aova has joined #ruby-lang
fclausen has joined #ruby-lang
ruby-lang520 has joined #ruby-lang
<ruby-lang520> is there a lang that compiles to ruby?
<bougyman> English.
<ruby-lang520> like moonscript
<bougyman> I'd like to see an lolcode => ruby compiler
<bougyman> shouldn't be too hard.
<ruby-lang520> lol
<ruby-lang520> but srsly is there?
djbkd_ has joined #ruby-lang
djbkd_ has quit [Client Quit]
matju has quit [Quit: Tourlou]
ta_ has joined #ruby-lang
intinig has quit [Ping timeout: 255 seconds]
ruby-lang520 has quit [Quit: Page closed]
roamingdog has quit [Remote host closed the connection]
<apeiros_> lolcode -> ruby should be called roflcode instead (for the R as first letter)
sudoubuntu has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ta_ has quit [Ping timeout: 272 seconds]
arBmind has quit [Quit: Leaving.]
roamingdog has joined #ruby-lang
tdy has quit [Ping timeout: 246 seconds]
tdy has joined #ruby-lang
dorei has quit []
<rbpd5015> hey hey guys 95% done
<rbpd5015> WEEE
<rbpd5015> last question about whitespae
<rbpd5015> frustarted
<rbpd5015> so I am getting38.7% 61.3%
<rbpd5015> I need to get rid of whitepace and makie it two numbers on two lines
<jhass> String#split
<jhass> >> "38.7% 61.3%".split
<eval-in__> jhass => ["38.7%", "61.3%"] (https://eval.in/273779)
ta has quit [Quit: Leaving...]
apeiros_ has joined #ruby-lang
morton has joined #ruby-lang
<morton> what are some languages higher level than python/ruby
<jhass> morton: Piet
<oddmunds> :)
<morton> that looks hard to use
<jhass> but pretty!
<jhass> it's art!
<jhass> what higher lever is there?
<jhass> http://www.dangermouse.net/esoteric/piet/samples.html have a look at all these beautiful programs!
arBmind has joined #ruby-lang
ta has joined #ruby-lang
ta_ has joined #ruby-lang
morton has quit [Quit: Page closed]
<jhass> bye ;)
<rbpd5015> ok evan-in
<rbpd5015> I need to figure this out
<rbpd5015> i dont know what the pcts will be each time
<rbpd5015> so I cant hardcode those numbers in
<jhass> >> "i work with anything space delimited. Did you look at my docs?".split
<eval-in__> jhass => ["i", "work", "with", "anything", "space", "delimited.", "Did", "you", "look", "at", "my", "docs?"] (https://eval.in/273791)
lytol has quit [Remote host closed the connection]
<rbpd5015> yeah with .spplit i get an error
<rbpd5015> undefined method ‘split’ for ["38.7%\n 61.3%"]:Array
kenmazaika_ has joined #ruby-lang
<jhass> yeah
<jhass> so you have an array
<jhass> with a single string inside it
<jhass> you want to call split on that string
<jhass> not the array
<rbpd5015> ok i got the array by consensus = doc.xpath('.//*[@class="el-div eventLine-consensus"]').collect {|node| node.text.strip}
<jhass> yup, collect returns an array
ta_ has quit [Remote host closed the connection]
<bnagy> also, use map not collect
<rbpd5015> ok so i do want an array with team x and team y
<rbpd5015> i think?
<rbpd5015> i think i do lol
<jhass> if you only ever want to handle a single element, check Nokogiri's at_* family
<jhass> .at(selector), .at_xpath(xpath), .at_css(css)
<rbpd5015> question would you consider two sides a single element? like this is 1 thing consensours but there is two sides?
<jhass> you get the text of a single element there
<jhass> that text has spaces
<jhass> which you call sides
<rbpd5015> i got you its my call how i save it? so since it is a single element
<jhass> I don't know what you're parsing
<jhass> so I don't magically know the optimal way to do it
martinbmadsen has joined #ruby-lang
<jhass> all I can do is point out what you have by the output you show
<jhass> you showed that you have an array with a string
<jhass> and I guess(!) that you want only the first element of that array, in case there are more
j4cknewt has joined #ruby-lang
<jhass> and then parse the text of that string into two strings
<jhass> so I'm suggesting to use at_xpath, which does .xpath(x).first for you
<rbpd5015> consensus = doc.at_xpath('.//*[@class="el-div eventLine-consensus"]').text.strip
<rbpd5015> ok getting closer
<jhass> note this is 30% guess work of what you actually have and want
<rbpd5015> i got this but now i got the space again
<jhass> .split
<jhass> for the third time
<rbpd5015> consensus = doc.at_xpath('.//*[@class="el-div eventLine-consensus"]').text.strip.split
<rbpd5015> got it
<rbpd5015> HAHA
<jhass> you may want to do a basic ruby tutorial introducing you to the basic data structures and its commonly methods btw
<jhass> I heard chris pine's learn to program is quite good
<jhass> *commonly used
<rbpd5015> yeah i am making progress
<rbpd5015> lol
izietto has quit [Quit: Sto andando via]
Aova has quit [Read error: Connection reset by peer]
Aova has joined #ruby-lang
intinig has joined #ruby-lang
certaint1 has joined #ruby-lang
pipecloud has joined #ruby-lang
ericwood_ has joined #ruby-lang
pd has quit [Ping timeout: 256 seconds]
Mellett68 has quit [Read error: Connection reset by peer]
gregf_ has quit [Ping timeout: 256 seconds]
nisstyre has quit [Ping timeout: 256 seconds]
certainty has quit [Ping timeout: 256 seconds]
pipework has quit [Ping timeout: 256 seconds]
ryotarai has quit [Ping timeout: 256 seconds]
mrgoodcat has quit [Ping timeout: 256 seconds]
stevednd has quit [Ping timeout: 256 seconds]
clauswitt has quit [Ping timeout: 256 seconds]
vlad_starkov has quit [Ping timeout: 256 seconds]
jamo_ has quit [Ping timeout: 256 seconds]
ljarvis has quit [Ping timeout: 256 seconds]
jxport has quit [Ping timeout: 256 seconds]
riotjones has quit [Ping timeout: 256 seconds]
bennyklotz has quit [Ping timeout: 256 seconds]
lianj has quit [Ping timeout: 256 seconds]
tpope has quit [Ping timeout: 256 seconds]
bougyman has quit [Ping timeout: 256 seconds]
sonne has quit [Ping timeout: 256 seconds]
knu has quit [Ping timeout: 256 seconds]
jkyle has quit [Ping timeout: 256 seconds]
justinmcp has quit [Ping timeout: 256 seconds]
sluukkonen has quit [Ping timeout: 256 seconds]
martinbmadsen has quit [Ping timeout: 256 seconds]
roamingdog has quit [Ping timeout: 256 seconds]
symm- has quit [Ping timeout: 256 seconds]
j0n3 has quit [Ping timeout: 256 seconds]
ItSANgo has quit [Ping timeout: 256 seconds]
stardiviner has quit [Ping timeout: 256 seconds]
malconis_ has quit [Ping timeout: 256 seconds]
bryanl has quit [Ping timeout: 256 seconds]
verto has quit [Ping timeout: 256 seconds]
ericwood has quit [Ping timeout: 256 seconds]
j2p2 has quit [Ping timeout: 256 seconds]
Steve_Jobs has quit [Ping timeout: 256 seconds]
kenmazaika_ has quit [*.net *.split]
rbpd5015 has quit [*.net *.split]
mksm has quit [*.net *.split]
rigidspleen has quit [*.net *.split]
dRbiG has quit [*.net *.split]
nifoc has quit [*.net *.split]
mame2 has quit [*.net *.split]
darix has quit [*.net *.split]
kith has quit [*.net *.split]
_mh_ has quit [*.net *.split]
erichmenge has quit [*.net *.split]
ddfreyne has quit [*.net *.split]
KillerFox has quit [*.net *.split]
tbuehlmann has quit [*.net *.split]
symm- has joined #ruby-lang
verto_ has joined #ruby-lang
pipecloud is now known as pipework
mrgoodcat_ has joined #ruby-lang
sluukkonen1 has joined #ruby-lang
pd_ has joined #ruby-lang
Mellett68 has joined #ruby-lang
havenwood has joined #ruby-lang
riotjone_ has joined #ruby-lang
j0n3_ has joined #ruby-lang
weaksauce has joined #ruby-lang
intinig has quit [Ping timeout: 240 seconds]
martinbm1dsen has joined #ruby-lang
justinmcp_ has joined #ruby-lang
tpope_ has joined #ruby-lang
ryotarai_ has joined #ruby-lang
vlad_sta- has joined #ruby-lang
gregf__ has joined #ruby-lang
jxport_ has joined #ruby-lang
ljarvis_ has joined #ruby-lang
clauswitt_ has joined #ruby-lang
bennyklo1z has joined #ruby-lang
roamingd_ has joined #ruby-lang
bryanl_ has joined #ruby-lang
malconis has joined #ruby-lang
ItSANg___ has joined #ruby-lang
tpope_ is now known as tpope
ryotarai_ is now known as ryotarai
Steve_Jobs has joined #ruby-lang
j2p2 has joined #ruby-lang
pipework is now known as Guest81637
Guest81637 has quit [Changing host]
Guest81637 has joined #ruby-lang
pd has joined #ruby-lang
pd has quit [Changing host]
bougyman has joined #ruby-lang
bougyman has quit [Changing host]
bougyman has joined #ruby-lang
roamingd_ has quit [Remote host closed the connection]
jamo__ has joined #ruby-lang
lianj_ has joined #ruby-lang
lianj_ has quit [Changing host]
lianj_ has joined #ruby-lang
stevednd has joined #ruby-lang
sonne has joined #ruby-lang
roamingdog has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
nisstyre has joined #ruby-lang
symm- has quit [Ping timeout: 256 seconds]
kenmazaika_ has joined #ruby-lang
rigidspleen has joined #ruby-lang
rbpd5015 has joined #ruby-lang
mksm has joined #ruby-lang
j0n3_ has quit [Read error: Connection reset by peer]
dRbiG has joined #ruby-lang
nifoc has joined #ruby-lang
mame2 has joined #ruby-lang
darix has joined #ruby-lang
_mh_ has joined #ruby-lang
ddfreyne has joined #ruby-lang
KillerFox has joined #ruby-lang
tbuehlmann has joined #ruby-lang
kith has joined #ruby-lang
erichmenge has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 276 seconds]
stardiviner has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
AlexAltea has quit [Ping timeout: 272 seconds]
rbpd5015 has quit [Ping timeout: 246 seconds]
face has quit [Ping timeout: 244 seconds]
nertzy2 has joined #ruby-lang
nertzy has quit [Ping timeout: 246 seconds]
trajing|Mobile has joined #ruby-lang
trajing|Mobile has quit [Read error: Connection reset by peer]
ta has quit [Remote host closed the connection]
face has joined #ruby-lang
nertzy2 has quit [Ping timeout: 264 seconds]
martinbm1dsen has quit [Ping timeout: 244 seconds]
cornerma1 has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
deol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
cornerman has quit [Ping timeout: 272 seconds]
cornerma1 is now known as cornerman
roamingdog has joined #ruby-lang
jkyle has joined #ruby-lang
Sadin has joined #ruby-lang
Aova has joined #ruby-lang
Sadin has quit [Read error: Connection reset by peer]
ta has joined #ruby-lang
intinig has joined #ruby-lang
mkosaki has joined #ruby-lang
ta has quit [Ping timeout: 276 seconds]
intinig has quit [Ping timeout: 272 seconds]
harly has joined #ruby-lang
chills42 has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
iamninja has quit [Quit: ZZZzzz…]
skade has joined #ruby-lang
face has quit [Ping timeout: 264 seconds]
ta has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
lytol has joined #ruby-lang
lytol has quit [Remote host closed the connection]
ta has quit [Ping timeout: 276 seconds]
mattyohe has joined #ruby-lang
ta has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
face has joined #ruby-lang
yfeldblu_ has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
Aova has joined #ruby-lang
ta has quit [Ping timeout: 276 seconds]
aemeredith has quit [Remote host closed the connection]
aemeredith has joined #ruby-lang
skade has joined #ruby-lang
martinbmadsen has joined #ruby-lang
aemeredith has quit [Ping timeout: 276 seconds]
skade has quit [Quit: Computer has gone to sleep.]
knu has joined #ruby-lang
intinig has joined #ruby-lang
jgpawletko has quit [Quit: jgpawletko]
tunaCanBruh has joined #ruby-lang
tcopeland has quit [Quit: Leaving.]
tunaCanBruh has quit [Ping timeout: 265 seconds]
SilentNuke has joined #ruby-lang
intinig has quit [Ping timeout: 255 seconds]
ta has joined #ruby-lang
Bwild has joined #ruby-lang
[H]unt3r has quit [Quit: Leaving]
malconis has quit [Ping timeout: 255 seconds]
ta has quit [Ping timeout: 272 seconds]
Pugsley_ has quit [Quit: Lingo: www.lingoirc.com]
SilentNuke has quit []
j4cknewt has quit [Remote host closed the connection]
deol has joined #ruby-lang
aemeredith has joined #ruby-lang
pabloh has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 264 seconds]
aemeredith has quit [Ping timeout: 276 seconds]
malconis has joined #ruby-lang
yfeldblum has joined #ruby-lang
yfeldblu_ has joined #ruby-lang
roamingdog has joined #ruby-lang
Miphix has joined #ruby-lang
yfeldblum has quit [Ping timeout: 255 seconds]
roamingdog has quit [Ping timeout: 264 seconds]
j4cknewt has joined #ruby-lang
ta has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
aemeredith has quit [Read error: Connection reset by peer]
nertzy has joined #ruby-lang
aemeredith has joined #ruby-lang
pr0ton has joined #ruby-lang
ta has quit [Ping timeout: 272 seconds]
Aova has joined #ruby-lang
aemeredith has quit [Ping timeout: 244 seconds]
ta has joined #ruby-lang
ta has quit [Ping timeout: 276 seconds]
ta has joined #ruby-lang
ta has quit [Ping timeout: 272 seconds]
intinig has joined #ruby-lang
ta has joined #ruby-lang
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
intinig has quit [Ping timeout: 264 seconds]
ta has quit [Ping timeout: 265 seconds]
AlexAltea has joined #ruby-lang
gix has quit [Ping timeout: 265 seconds]
pr0ton has quit [Quit: pr0ton]
gix has joined #ruby-lang
stardiviner has quit [Quit: Weird in coding now, or make love, only two things push me away from IRC.]
Aova has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Aova has joined #ruby-lang
aemeredith has quit [Ping timeout: 264 seconds]
nathanstitt has quit [Quit: I growing sleepy]
tunaCanBruh has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 246 seconds]
roamingdog has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
aemeredith has joined #ruby-lang
roamingdog has quit [Ping timeout: 244 seconds]
aemeredith has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
pr0ton has joined #ruby-lang
martinbmadsen has joined #ruby-lang
aemeredith has quit [Ping timeout: 265 seconds]
intinig has joined #ruby-lang
ta has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
Lewix has joined #ruby-lang
Lewix has quit [Changing host]
Lewix has joined #ruby-lang
ta has quit [Ping timeout: 246 seconds]
deol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MartynKeigher has quit [Read error: Connection reset by peer]
Lewix has quit [Ping timeout: 256 seconds]
intinig has quit [Ping timeout: 276 seconds]
mksm has quit [Ping timeout: 246 seconds]
timanema has joined #ruby-lang
lytol has joined #ruby-lang
mattyohe has quit [Quit: Connection closed for inactivity]
duderonomy has joined #ruby-lang
aemeredith has joined #ruby-lang
aemeredith has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
aemeredith has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
Aova has joined #ruby-lang
roamingdog has joined #ruby-lang
aemeredith has quit [Ping timeout: 264 seconds]
pr0ton has quit [Quit: pr0ton]
timanema has quit [Ping timeout: 245 seconds]
pabloh has quit [Quit: Saliendo]
face has quit [Read error: Connection reset by peer]
intinig has joined #ruby-lang
llakey has quit [Excess Flood]
martinbmadsen has quit [Ping timeout: 245 seconds]
llakey has joined #ruby-lang
tkuchiki has joined #ruby-lang
intinig has quit [Ping timeout: 276 seconds]
yfeldblum has joined #ruby-lang
face has joined #ruby-lang
yfeldblu_ has quit [Ping timeout: 255 seconds]
dellavg_ has joined #ruby-lang
ta has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
ta has quit [Ping timeout: 272 seconds]
tunaCanBruh has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 244 seconds]
aemeredith has quit [Ping timeout: 256 seconds]
Aova has joined #ruby-lang
godd2 has joined #ruby-lang
fclausen has quit [Ping timeout: 272 seconds]
ta has joined #ruby-lang
lytol has quit [Remote host closed the connection]
sudoubuntu has joined #ruby-lang
ta has quit [Ping timeout: 255 seconds]
chinmay_dd has joined #ruby-lang
SuMo_D has joined #ruby-lang
intinig has joined #ruby-lang
AlexAltea has quit [Ping timeout: 244 seconds]
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby-lang
ta has joined #ruby-lang
simi has joined #ruby-lang
tkuchiki has quit [Ping timeout: 265 seconds]
morton has joined #ruby-lang
intinig has quit [Ping timeout: 246 seconds]
rippa has joined #ruby-lang
<morton> is there something like coffeescript for ruby
ta has quit [Ping timeout: 272 seconds]
ledestin has joined #ruby-lang
morton has quit [Quit: Page closed]
skade has joined #ruby-lang
skade has quit [Client Quit]
<harly> ruby too verbose for ya?
<harly> oh he left.
ta has joined #ruby-lang
futilegames has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
amclain has quit [Quit: Leaving]
aemeredith has joined #ruby-lang
godd2 has quit [Ping timeout: 244 seconds]
ta has quit [Ping timeout: 272 seconds]
hahuang61 has quit [Ping timeout: 276 seconds]
aemeredith has quit [Ping timeout: 245 seconds]
Aova has joined #ruby-lang
hahuang61 has joined #ruby-lang
hahuang62 has joined #ruby-lang
tkuchiki has joined #ruby-lang
skade has joined #ruby-lang
hahuang61 has quit [Ping timeout: 272 seconds]
martinbmadsen has joined #ruby-lang
fclausen has joined #ruby-lang
sross_work|2 has joined #ruby-lang
ItSANgo_ has joined #ruby-lang
nertzy2 has joined #ruby-lang
kyb3r_ has quit [Ping timeout: 244 seconds]
j4cknewt_ has joined #ruby-lang
mkosaki_ has joined #ruby-lang
faces has joined #ruby-lang
SuMo_D_ has joined #ruby-lang
vozcelik has joined #ruby-lang
gix has quit [Ping timeout: 265 seconds]
kyb3r_ has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 264 seconds]
vozcelik has quit [Client Quit]
riotjones has joined #ruby-lang
jxie_ has joined #ruby-lang
bradland_ has joined #ruby-lang
martinbmadsen has joined #ruby-lang
enkristoffer has quit [Ping timeout: 244 seconds]
alakran has joined #ruby-lang
_br_- has joined #ruby-lang
bennyklotz has joined #ruby-lang
Gate_ has joined #ruby-lang
ozzloy_ has joined #ruby-lang
gix has joined #ruby-lang
mqt_ has joined #ruby-lang
funnel_ has joined #ruby-lang
SuMo_D_ has quit [Remote host closed the connection]
bryanl has joined #ruby-lang
ta has joined #ruby-lang
fragamus has joined #ruby-lang
matp_ has joined #ruby-lang
jkyle has quit [*.net *.split]
ItSANg___ has quit [*.net *.split]
bryanl_ has quit [*.net *.split]
riotjone_ has quit [*.net *.split]
Gate has quit [*.net *.split]
funnel has quit [*.net *.split]
Voker57 has quit [*.net *.split]
xybre has quit [*.net *.split]
cawil has quit [*.net *.split]
king313 has quit [*.net *.split]
jxie has quit [*.net *.split]
ozzloy has quit [*.net *.split]
SuMo_D has quit [*.net *.split]
face has quit [*.net *.split]
j4cknewt has quit [*.net *.split]
nertzy has quit [*.net *.split]
mkosaki has quit [*.net *.split]
bennyklo1z has quit [*.net *.split]
jxport_ has quit [*.net *.split]
bradland has quit [*.net *.split]
mqt has quit [*.net *.split]
alakra has quit [*.net *.split]
_br_ has quit [*.net *.split]
matp has quit [*.net *.split]
crazysim has quit [*.net *.split]
sross07 has quit [*.net *.split]
funnel_ is now known as funnel
crazysim_ has joined #ruby-lang
crazysim_ is now known as crazysim
enkristoffer has joined #ruby-lang
cdtaylor has quit [Ping timeout: 244 seconds]
ta has quit [Ping timeout: 276 seconds]
Voker57 has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
xybre has joined #ruby-lang
cawil has joined #ruby-lang
jxport has joined #ruby-lang
jxport has quit [Max SendQ exceeded]
pr0ton has joined #ruby-lang
king313 has joined #ruby-lang
jxport has joined #ruby-lang
fclausen has quit [Ping timeout: 272 seconds]
jkyle has joined #ruby-lang
cdtaylor has joined #ruby-lang
kenmazaika_ has quit [Ping timeout: 246 seconds]
ta has joined #ruby-lang
EvilJStoker has quit [Ping timeout: 276 seconds]
marcdel has quit [Ping timeout: 276 seconds]
lacrosse__ has quit [Ping timeout: 276 seconds]
dbussink has quit [Ping timeout: 276 seconds]
shinnya has quit [Ping timeout: 277 seconds]
Xzyx987X_ has quit [Ping timeout: 277 seconds]
Kuukunen has quit [Ping timeout: 276 seconds]
ozzloy_ has quit [Remote host closed the connection]
Xzyx987X has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
EvilJStoker_ has joined #ruby-lang
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
SuMo_D has joined #ruby-lang
marcdel has joined #ruby-lang
intinig has joined #ruby-lang
Kuukunen- has joined #ruby-lang
EvilJStoker_ is now known as EvilJStoker
ozzloy has joined #ruby-lang
ozzloy has quit [Changing host]
ozzloy has joined #ruby-lang
dbussink has joined #ruby-lang
lacrosse__ has joined #ruby-lang
shinnya has joined #ruby-lang
adambeynon has quit [Ping timeout: 275 seconds]
adambeynon has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
Bwild has quit [Ping timeout: 264 seconds]
Bwild has joined #ruby-lang
intinig has quit [Ping timeout: 245 seconds]
mrgoodcat_ has quit [Ping timeout: 246 seconds]
tunaCanBruh has quit [Ping timeout: 255 seconds]
ta has quit [Ping timeout: 276 seconds]
arBmind has joined #ruby-lang
Bwild has quit [Remote host closed the connection]
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
sudoubuntu has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Aova has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
futilegames_ has joined #ruby-lang
SuMo_D has quit [Ping timeout: 264 seconds]
futilegames has quit [Ping timeout: 245 seconds]
futilegames_ is now known as futilegames
wallerdev has quit [Quit: wallerdev]
lytol has joined #ruby-lang
Aova has joined #ruby-lang
aemeredith has quit [Ping timeout: 264 seconds]
chris2 has quit [Ping timeout: 265 seconds]
futilegames_ has joined #ruby-lang
futilegames has quit [Ping timeout: 245 seconds]
futilegames_ is now known as futilegames
GBrawl has joined #ruby-lang
gix has quit [Ping timeout: 255 seconds]
kyb3r_ has quit [Read error: Connection reset by peer]
intinig has joined #ruby-lang
GBrawl has quit [Client Quit]
araujo has quit [Quit: Leaving]
ta has joined #ruby-lang
ur5us has joined #ruby-lang
gix has joined #ruby-lang
futilegames_ has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 264 seconds]
futilegames has quit [Ping timeout: 255 seconds]
futilegames_ is now known as futilegames
havenwood has quit []
ta has quit [Ping timeout: 252 seconds]
gix has quit [Ping timeout: 246 seconds]
gix has joined #ruby-lang
mrgoodcat_ has joined #ruby-lang
stamina has joined #ruby-lang
fclausen has joined #ruby-lang
apeiros_ has quit []
apeiros_ has joined #ruby-lang
fclausen has quit [Client Quit]
intinig has quit [Remote host closed the connection]
intinig has joined #ruby-lang
banister has joined #ruby-lang
ta has joined #ruby-lang
symm- has joined #ruby-lang
ta has quit [Ping timeout: 255 seconds]
intinig has quit [Ping timeout: 264 seconds]
intinig has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
aemeredith has quit [Ping timeout: 250 seconds]
Aova has joined #ruby-lang
yellowgh0st has joined #ruby-lang
yellowgh0st has quit [Client Quit]
ur5us has quit [Remote host closed the connection]
lytol has quit [Remote host closed the connection]
ta has joined #ruby-lang
sarkyniin has joined #ruby-lang
AlexAltea has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
ta has quit [Ping timeout: 252 seconds]
AlexAltea has quit [Ping timeout: 264 seconds]
intinig has quit [Remote host closed the connection]
tunaCanBruh has quit [Ping timeout: 245 seconds]
intinig has joined #ruby-lang
intinig has quit [Remote host closed the connection]
intinig has joined #ruby-lang
sarkyniin has quit [Ping timeout: 264 seconds]
futilegames_ has joined #ruby-lang
futilegames has quit [Ping timeout: 264 seconds]
futilegames_ is now known as futilegames
Kuukunen- has quit [Ping timeout: 240 seconds]
jxport has quit [Ping timeout: 240 seconds]
jxport has joined #ruby-lang
Kuukunen has joined #ruby-lang
yellowgh0st has joined #ruby-lang
ta has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
ta has quit [Ping timeout: 252 seconds]
aemeredith has joined #ruby-lang
futilegames_ has joined #ruby-lang
futilegames has quit [Ping timeout: 244 seconds]
futilegames_ is now known as futilegames
Aova has joined #ruby-lang
aemeredith has quit [Ping timeout: 256 seconds]
aemeredith has joined #ruby-lang
intinig has quit [Remote host closed the connection]
aemeredith has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
intinig has joined #ruby-lang
aemeredith has quit [Ping timeout: 250 seconds]
ta has joined #ruby-lang
zenspider_ has joined #ruby-lang
zenspider has quit [Read error: Connection reset by peer]
ta has quit [Ping timeout: 252 seconds]
oleo has joined #ruby-lang
stamina has quit [Quit: WeeChat 1.1.1]
marcdel has quit [Ping timeout: 264 seconds]
marcdel has joined #ruby-lang
oleo__ has quit [Ping timeout: 265 seconds]
spuk has quit [Ping timeout: 264 seconds]
spuk has joined #ruby-lang
chris2 has joined #ruby-lang
yellowgh0st has quit [Quit: yellowgh0st]
arBmind1 has joined #ruby-lang
arBmind has quit [Ping timeout: 265 seconds]
ta has joined #ruby-lang
ta has quit [Ping timeout: 252 seconds]
tkuchiki has quit [Remote host closed the connection]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
AlexAltea has joined #ruby-lang
aemeredith has joined #ruby-lang
aemeredith has quit [Read error: Connection reset by peer]
intinig has quit [Remote host closed the connection]
chussenot has quit [Quit: chussenot]
aemeredith has joined #ruby-lang
intinig has joined #ruby-lang
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
Aova has quit [Read error: Connection reset by peer]
aemeredith has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
symm- has quit [Read error: Connection reset by peer]
intinig has quit [Ping timeout: 264 seconds]
Aova has joined #ruby-lang
aemeredith has quit [Ping timeout: 255 seconds]
<cdtaylor> I think I'm going to start staying out of more generally oriented programming channels.
<cdtaylor> People really hate all of the languages I code in. Ruby, Smalltalk, Objective-C, and now Scheme.
trivialpackets has joined #ruby-lang
trivialpackets has quit [Quit: Leaving]
chris2 has quit [Quit: trotz alledem!]
trivialpackets has joined #ruby-lang
<harly> pftft, ruby. dude.
aemeredith has joined #ruby-lang
ta has joined #ruby-lang
Bwild has joined #ruby-lang
intinig has joined #ruby-lang
aemeredith has quit [Ping timeout: 264 seconds]
banister has joined #ruby-lang
banister has quit [Max SendQ exceeded]
tunaCanBruh has joined #ruby-lang
banister has joined #ruby-lang
Bwild has quit [Quit: leaving]
tunaCanBruh has quit [Ping timeout: 255 seconds]
chinmay_dd has quit [Quit: Connection closed for inactivity]
harly has quit [Quit: Leaving]
ta_ has joined #ruby-lang
ta has quit [Remote host closed the connection]
sarkyniin has joined #ruby-lang
Forgetful_Lion has quit [Read error: Connection reset by peer]
chris2 has joined #ruby-lang
dzejrou has joined #ruby-lang
ta_ has quit [Ping timeout: 245 seconds]
martinbmadsen has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 252 seconds]
tkuchiki has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
banister has quit [Ping timeout: 245 seconds]
intinig has quit [Remote host closed the connection]
tcopeland has joined #ruby-lang
intinig has joined #ruby-lang
Aova has joined #ruby-lang
Aova has quit [Changing host]
Aova has joined #ruby-lang
intinig has quit [Ping timeout: 245 seconds]
intinig has joined #ruby-lang
dzejrou has quit [Ping timeout: 252 seconds]
intinig has quit [Remote host closed the connection]
sarkyniin has quit [Ping timeout: 264 seconds]
tunaCanBruh has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 245 seconds]
iamninja has joined #ruby-lang
roamingdog has joined #ruby-lang
enebo has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
wizonesolutions is now known as crickets
crickets is now known as wizonesolutions
intinig has joined #ruby-lang
tkuchiki has quit [Remote host closed the connection]
enebo has quit [Client Quit]
Aova has joined #ruby-lang
sarkyniin has joined #ruby-lang
ta has joined #ruby-lang
sudoubuntu has joined #ruby-lang
sarkyniin has quit [Ping timeout: 250 seconds]
red_menace has joined #ruby-lang
ta has quit [Ping timeout: 252 seconds]
intinig has quit [Remote host closed the connection]
intinig has joined #ruby-lang
symm- has joined #ruby-lang
aemeredith has joined #ruby-lang
ta has joined #ruby-lang
intinig has quit [Ping timeout: 240 seconds]
ta has quit [Ping timeout: 245 seconds]
hahuang61 has joined #ruby-lang
aemeredith has quit []
hahuang61 has quit [Ping timeout: 245 seconds]
aemeredith has joined #ruby-lang
timanema has joined #ruby-lang
sudoubuntu has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
king313 has quit [Ping timeout: 245 seconds]
cornerma1 has joined #ruby-lang
fusillicode has joined #ruby-lang
cornerman has quit [Ping timeout: 245 seconds]
fusillicode has quit [Read error: Connection reset by peer]
cornerma1 is now known as cornerman
fusillicode has joined #ruby-lang
ta has joined #ruby-lang
fusillicode1 has quit [Ping timeout: 255 seconds]
fusillicode1 has joined #ruby-lang
ta has quit [Ping timeout: 252 seconds]
fusillicode has quit [Ping timeout: 264 seconds]
aemeredith has quit [Remote host closed the connection]
Aova has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
Aova has joined #ruby-lang
SuMo_D has joined #ruby-lang
trivialpackets has quit [Quit: Leaving]
SuMo_D has quit [Remote host closed the connection]
trivialpackets has joined #ruby-lang
yfeldblum has quit [Ping timeout: 276 seconds]
ta has joined #ruby-lang
aemeredith has quit [Remote host closed the connection]
iamninja has quit [Ping timeout: 250 seconds]
lapide_viridi has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
AlexAltea has quit [Ping timeout: 245 seconds]
ta has quit [Ping timeout: 252 seconds]
iamninja has joined #ruby-lang
[H]unt3r has joined #ruby-lang
intinig has joined #ruby-lang
aemeredith has joined #ruby-lang
bradland_ has quit [Ping timeout: 255 seconds]
bradland has joined #ruby-lang
sankaber has joined #ruby-lang
intinig has quit [Ping timeout: 244 seconds]
tunaCanBruh has joined #ruby-lang
ta has joined #ruby-lang
sankaber has quit [Client Quit]
aemeredith has quit [Remote host closed the connection]
ta has quit [Ping timeout: 252 seconds]
tunaCanBruh has quit [Ping timeout: 255 seconds]
centrx has joined #ruby-lang
fusillicode has joined #ruby-lang
fusillicode1 has quit [Ping timeout: 246 seconds]
ta has joined #ruby-lang
aemeredith has joined #ruby-lang
SuMo_D has joined #ruby-lang
ta has quit [Ping timeout: 250 seconds]
Mon_Ouie has quit [Ping timeout: 245 seconds]
AlexAltea has joined #ruby-lang
izietto has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
ta has joined #ruby-lang
SuMo_D has quit [Ping timeout: 245 seconds]
ta has quit [Ping timeout: 252 seconds]
ta has joined #ruby-lang
SuMo_D has joined #ruby-lang
Pugsley_ has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
timanema has quit [Ping timeout: 250 seconds]
ta has quit [Ping timeout: 255 seconds]
Aova has joined #ruby-lang
martinbmadsen has joined #ruby-lang
timanema has joined #ruby-lang
yfeldblum has joined #ruby-lang
futilegames has quit [Quit: futilegames]
martinbmadsen has quit [Ping timeout: 264 seconds]
yfeldblum has quit [Ping timeout: 245 seconds]
poikon_ has joined #ruby-lang
poikon_ is now known as poikon
intinig has joined #ruby-lang
brooks has joined #ruby-lang
simi has quit [Read error: Connection reset by peer]
intinig has quit [Remote host closed the connection]
intinig has joined #ruby-lang
roamingdog has joined #ruby-lang
centrx has quit [Quit: In the beginning there was nothing, which exploded. - Terry Pratchett]
dellavg_ has quit [Ping timeout: 264 seconds]
roamingdog has quit [Ping timeout: 244 seconds]
futilegames has joined #ruby-lang
roamingdog has joined #ruby-lang
intinig has quit [Ping timeout: 245 seconds]
chinmay_dd has joined #ruby-lang
king313 has joined #ruby-lang
king313 has joined #ruby-lang
futilegames has quit [Quit: futilegames]
AlexAltea has quit [Ping timeout: 265 seconds]
ta has joined #ruby-lang
aemeredith has quit [Remote host closed the connection]
aemeredith has joined #ruby-lang
aemeredith has quit [Read error: Connection reset by peer]
Aova has quit [Read error: Connection reset by peer]
tunaCanBruh has joined #ruby-lang
ta has quit [Ping timeout: 252 seconds]
poikon_ has joined #ruby-lang
intinig has joined #ruby-lang
Aova has joined #ruby-lang
poikon has quit []
tunaCanBruh has quit [Ping timeout: 264 seconds]
poikon_ has quit [Client Quit]
poikon has joined #ruby-lang
iamninja has quit [Remote host closed the connection]
iamninja has joined #ruby-lang
ta has joined #ruby-lang
king313 has quit [Quit: .]
ta has quit [Ping timeout: 252 seconds]
lapide_viridi has quit [Quit: Leaving]
AlexAltea has joined #ruby-lang
fcanela has joined #ruby-lang
brooks has quit [Quit: brooks]
intinig has quit [Remote host closed the connection]
rikkipitt has joined #ruby-lang
ta has joined #ruby-lang
intinig has joined #ruby-lang
amclain has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
<epitron> cdtaylor: do you know why they hate them? :)
<epitron> heheh.. "coffeescript for ruby"
<epitron> i'm going to assume that means "ruby that compiles to javascript", not "a language that compiles to ruby"
ta has quit [Ping timeout: 240 seconds]
SuMo_D has quit [Ping timeout: 245 seconds]
intinig has quit [Ping timeout: 245 seconds]
brooks has joined #ruby-lang
brooks has quit [Client Quit]
brooks has joined #ruby-lang
brooks has quit [Remote host closed the connection]
rikkipitt has quit [Quit: Leaving...]
brooks has joined #ruby-lang
brooks has quit [Client Quit]
brooks has joined #ruby-lang
Lewix has joined #ruby-lang
Lewix has joined #ruby-lang
ta has joined #ruby-lang
rikkipitt has joined #ruby-lang
<yorickpeterse> weow, and that was fosdem
<yorickpeterse> and yay perl 6 _will_ be released this christmas per saint larry himself
ta has quit [Ping timeout: 252 seconds]
martinbmadsen has joined #ruby-lang
JohnBat26 has joined #ruby-lang
yfeldblum has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 264 seconds]
Aova has quit [Read error: Connection reset by peer]
Miphix has quit [Quit: Leaving]
wallerdev has joined #ruby-lang
yfeldblum has quit [Ping timeout: 252 seconds]
dellavg_ has joined #ruby-lang
Aova has joined #ruby-lang
Aova has quit [Changing host]
Aova has joined #ruby-lang
ta has joined #ruby-lang
slawrence00 has joined #ruby-lang
godd2 has joined #ruby-lang
hinbody-mobile has joined #ruby-lang
fusillicode has quit [Quit: Leaving.]
fusillicode has joined #ruby-lang
ta has quit [Ping timeout: 244 seconds]
aemeredith has joined #ruby-lang
skade has joined #ruby-lang
chadwtaylor has joined #ruby-lang
intinig has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
<apeiros_> yorickpeterse: in 12 months?
tunaCanBruh has quit [Ping timeout: 256 seconds]
centrx has joined #ruby-lang
intinig has quit [Ping timeout: 240 seconds]
Mon_Ouie has joined #ruby-lang
futilegames has joined #ruby-lang
ta has joined #ruby-lang
chinmay_dd has quit [Quit: Connection closed for inactivity]
skade has quit [Ping timeout: 246 seconds]
STK_ has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
<STK_> hey could anyone help me out with some basic ruby? I'm new to the language and have to do a project in it
STK_ is now known as Guest44858
Lewix has joined #ruby-lang
Guest44858 is now known as Redhk
Redhk is now known as RedHK
<apeiros_> RedHK: if you ask an actual question, we can see whether we can answer it
<RedHK> so I have an array of strings, and i need to check if a specific string is in that array, but using .include? I only find it if it is the last element in the array
<RedHK> I've printed out the array so I know the array has all of the values
<apeiros_> "using .include? I only find it if it is the last element"
ta has quit [Ping timeout: 264 seconds]
<apeiros_> that statement is not correct
<apeiros_> >> [1,2,3].include?(1)
<eval-in__> apeiros_ => true (https://eval.in/274648)
<apeiros_> include does not only check the last position. that'd be somewhat pointless.
<RedHK> I realize that
<apeiros_> then what makes you think it'd only test the last element?
<RedHK> but for some reason it is not finding elements that aren't last for me
<apeiros_> sounds like your data is not what you think it is. and I can't tell without more information.
Aova has quit [Read error: Connection reset by peer]
<RedHK> is it alright if I copy some code here?
<apeiros_> RedHK: gist.github.com
<apeiros_> `p data` prints you what is in data in a useful form.
skade has joined #ruby-lang
Lewix has quit [Ping timeout: 250 seconds]
trivialpackets has quit [Ping timeout: 245 seconds]
hinbody-mobile has quit [Ping timeout: 255 seconds]
mattyohe has joined #ruby-lang
Aova has joined #ruby-lang
skade has quit [Read error: Connection reset by peer]
<apeiros_> from merely glancing at your code, I assume that you forgot about the newline at the end
<apeiros_> RedHK: also incude? certainly raises. typo.
<apeiros_> oh, also add `p $start_state` before line 29. and the while loop is probably not necessary.
<RedHK> ok I fixed the include but it still doesn't work, I'll try fixing the newline thing
sankaber has joined #ruby-lang
<apeiros_> if you still have problems, gist the output of the `p $states` and `p $start_state` statements.
imperator has joined #ruby-lang
rikkipitt has quit [Remote host closed the connection]
<RedHK> okay I think i've figured it out, the newline is preventing it from finding the states in the middle of the array
ta has joined #ruby-lang
<RedHK> is .strip how i remove those?
<apeiros_> chomp
<RedHK> is $states.chomp correct?
<RedHK> okay nvm it works now
<RedHK> thanks so much
<centrx> >> "".chimp
<eval-in__> centrx => undefined method `chimp' for "":String (NoMethodError) ... (https://eval.in/274668)
<centrx> >> "".chump
<eval-in__> centrx => undefined method `chump' for "":String (NoMethodError) ... (https://eval.in/274669)
ta has quit [Ping timeout: 245 seconds]
hahuang61 has joined #ruby-lang
yfeldblum has joined #ruby-lang
intinig has joined #ruby-lang
izietto has quit [Ping timeout: 264 seconds]
centrx has quit [Quit: In the beginning there was nothing, which exploded. - Terry Pratchett]
rikkipitt has joined #ruby-lang
intinig has quit [Ping timeout: 250 seconds]
martinbmadsen has joined #ruby-lang
ta has joined #ruby-lang
fragamus has quit [Quit: Computer has gone to sleep.]
hinbody-mobile has joined #ruby-lang
martinbmadsen has quit [Ping timeout: 264 seconds]
fragamus has joined #ruby-lang
ta has quit [Ping timeout: 250 seconds]
diegoviola has joined #ruby-lang
marr has joined #ruby-lang
ur5us has joined #ruby-lang
chadwtaylor has quit [Remote host closed the connection]
Aova has quit [Read error: Connection reset by peer]
tdy is now known as tdy[NE]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
vondruch has quit [Ping timeout: 244 seconds]
Aova has joined #ruby-lang
imperator has quit [Quit: Valete!]
diegoviola has quit [Remote host closed the connection]
araujo has joined #ruby-lang
araujo has joined #ruby-lang
aemeredith has quit [Remote host closed the connection]
<yorickpeterse> apeiros_: yes, this christmas
diegoviola has joined #ruby-lang
aemeredith has joined #ruby-lang
aemeredith has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
Lewix has joined #ruby-lang
fragamus has quit [Quit: Computer has gone to sleep.]
aemeredith has quit [Ping timeout: 264 seconds]
ta has joined #ruby-lang
[H]unt3r has quit [Quit: Leaving]
tunaCanBruh has joined #ruby-lang
ta has quit [Ping timeout: 252 seconds]
tunaCanBruh has quit [Ping timeout: 255 seconds]
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby-lang
ta has joined #ruby-lang
roamingdog has quit [Ping timeout: 264 seconds]
ta has quit [Ping timeout: 255 seconds]
RedHK has quit [Quit: No tears, only dreams.]
marcdel has quit []
aemeredith has joined #ruby-lang
marcdel has joined #ruby-lang
aemeredith has quit [Read error: Connection reset by peer]
aemeredith has joined #ruby-lang
deol has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
ta has joined #ruby-lang
futilegames has quit [Quit: futilegames]
aemeredith has quit [Ping timeout: 245 seconds]
ur5us_ has joined #ruby-lang
ur5us has quit [Ping timeout: 256 seconds]
godd2 has quit [Ping timeout: 246 seconds]
ur5us has joined #ruby-lang
ur5us_ has quit [Ping timeout: 245 seconds]
ta has quit [Ping timeout: 252 seconds]
ur5us_ has joined #ruby-lang
btiefert has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
Lewix has quit [Remote host closed the connection]
ur5us has quit [Ping timeout: 244 seconds]
timanema has quit [Ping timeout: 245 seconds]
martinbmadsen has joined #ruby-lang
brooks has quit [Quit: brooks]
JohnBat26 has quit [Ping timeout: 264 seconds]
Aova has joined #ruby-lang
bb010g has joined #ruby-lang
hinbody-mobile has quit [Ping timeout: 250 seconds]
ta has joined #ruby-lang
timanema has joined #ruby-lang
ta has quit [Ping timeout: 252 seconds]
ta has joined #ruby-lang
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
amystephen has joined #ruby-lang
malconis has joined #ruby-lang
enkristoffer has quit [Ping timeout: 255 seconds]
Lewix has joined #ruby-lang
ta_ has joined #ruby-lang
roamingdog has joined #ruby-lang
SHyx0rmZ has quit [Remote host closed the connection]
SHyx0rmZ has joined #ruby-lang
ta has quit [Ping timeout: 256 seconds]
ta_ has quit [Remote host closed the connection]
arBmind1 has quit [Quit: Leaving.]
roamingdog has quit [Ping timeout: 240 seconds]
tunaCanBruh has joined #ruby-lang
tunaCanBruh has quit [Ping timeout: 246 seconds]
banister has joined #ruby-lang
fcanela has quit [Quit: leaving]
roamingdog has joined #ruby-lang
fragamus has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
roamingdog has joined #ruby-lang
chadwtaylor has joined #ruby-lang
GBrawl has joined #ruby-lang
ta has joined #ruby-lang
GBrawl has quit [Client Quit]
mikecmpbll has joined #ruby-lang
ta has quit [Ping timeout: 252 seconds]
Bwild has joined #ruby-lang
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
skade has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
mattyohe has quit [Quit: Connection closed for inactivity]
arBmind has joined #ruby-lang
izietto has joined #ruby-lang
hinbody-mobile has joined #ruby-lang
Aova has joined #ruby-lang
cx has joined #ruby-lang
skade has quit [Read error: Connection reset by peer]
skade has joined #ruby-lang
martinbmadsen has quit [Quit: Lost terminal]
crdpink2 has joined #ruby-lang
crdpink has quit [Ping timeout: 272 seconds]
dagda1 has quit [Quit: Textual IRC Client: www.textualapp.com]
nisstyre has quit [Changing host]
nisstyre has joined #ruby-lang
cx has quit [Ping timeout: 246 seconds]
dellavg_ has quit [Ping timeout: 264 seconds]
ta has joined #ruby-lang
Averna has joined #ruby-lang
stamina has joined #ruby-lang
intinig has joined #ruby-lang
ta has quit [Ping timeout: 252 seconds]
ta has joined #ruby-lang
deol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
deol has joined #ruby-lang
nathanstitt has joined #ruby-lang
[H]unt3r has joined #ruby-lang
intinig has quit [Remote host closed the connection]
intinig has joined #ruby-lang
ta_ has joined #ruby-lang
solars has quit [Ping timeout: 272 seconds]
sankaber has joined #ruby-lang
timanema has quit [Ping timeout: 255 seconds]
ta_ has quit [Ping timeout: 252 seconds]
timanema has joined #ruby-lang
intinig has quit [Ping timeout: 264 seconds]
nathanstitt has quit [Quit: I growing sleepy]
nathanstitt has joined #ruby-lang
nathanstitt has quit [Client Quit]
deol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sankaber has quit [Read error: Connection reset by peer]
sankaber has joined #ruby-lang
ta has quit [Remote host closed the connection]
sankaber has quit [Client Quit]
maso has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
fragamus has quit [Quit: Computer has gone to sleep.]
deol has joined #ruby-lang
rikkipitt has quit [Remote host closed the connection]
ta has joined #ruby-lang
learner has joined #ruby-lang
fclausen has joined #ruby-lang
roamingdog has quit [Remote host closed the connection]
riotjone_ has joined #ruby-lang
Aova has quit [Read error: Connection reset by peer]
riotjones has quit [Ping timeout: 264 seconds]
robbyoconnor has quit [Read error: Connection reset by peer]
ta has quit [Ping timeout: 264 seconds]
robbyoconnor has joined #ruby-lang
chadwtay_ has joined #ruby-lang
Aova has joined #ruby-lang
chadwtaylor has quit [Ping timeout: 264 seconds]
mattyohe has joined #ruby-lang
[spoiler] has quit [Quit: WeeChat 1.1]
hinbody-mobile has quit [Quit: Lost terminal]
brooks has joined #ruby-lang
roamingdog has joined #ruby-lang
gix has quit [Ping timeout: 250 seconds]
pd has quit [Ping timeout: 264 seconds]
tkuchiki has joined #ruby-lang
j4cknewt_ has quit [Remote host closed the connection]
[H]unt3r has quit [Quit: Leaving]
gix has joined #ruby-lang
tunaCanBruh has joined #ruby-lang
fijimunkii has joined #ruby-lang
nathanstitt has joined #ruby-lang
tkuchiki has quit [Ping timeout: 245 seconds]
tunaCanBruh has quit [Ping timeout: 245 seconds]
timanema has quit [Ping timeout: 250 seconds]
chadwtay_ has quit [Remote host closed the connection]
intinig has joined #ruby-lang
Musashi007 has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
tkuchiki has joined #ruby-lang
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
intinig has quit [Ping timeout: 240 seconds]
ta has joined #ruby-lang