apeiros changed the topic of #ruby-lang to: Ruby 2.2.1; 2.1.5; 2.0.0-p643: https://ruby-lang.org || Paste code on https://gist.github.com
kevin_lomax has joined #ruby-lang
<kevin_lomax> hi everyone!
<jhass> hi
<kevin_lomax> does any of you know why "true and true and false" == true ?
<jhass> >> true && true && false
<eval-in_> jhass => false (https://eval.in/297514)
akkad has quit [Excess Flood]
<jhass> kevin_lomax: do you know irb?
<kevin_lomax> this caused a bug in my code and it took me a really long time to figure out what is going on
<kevin_lomax> yes
<kevin_lomax> i tried running it in irb and got false
<kevin_lomax> sorry i mean true
<jhass> >> true and true and false
<eval-in_> jhass => false (https://eval.in/297516)
<jhass> ?
<kevin_lomax> irb(main):002:0> true and true and false
<kevin_lomax> => false
<jhass> that's weird, I just proved it wrong above
<jhass> what's your ruby version?
<jhass> oh, wait
<kevin_lomax> Ruby 2.0.0 on Windows 8
<jhass> you got false
<jhass> why you think you got true?
<kevin_lomax> sorry you're totally right
<kevin_lomax> i was having that problem in my rails code and for some reason i thought i had the same issue in irb
<kevin_lomax> the bug was resolved by going from "true and true and false" to "true && true && false"
<womble> The nit-picky answer would be because all strings are true values in Ruby. <grin>
<jhass> kevin_lomax: maybe it'd be less confusing for the real expression
<jhass> but you probably hit the reason why I banned and/or in my code and use &&/|| only
<kevin_lomax> completed = saved && current_section && @response_set.mandatory_questions_complete_in_section?(current_section.id)
<kevin_lomax> this is the actual code
<jhass> so it's not even and in your real code?
<jhass> that was a really badly abstracted question :P
<kevin_lomax> it was
<kevin_lomax> but i changed it to &&
<kevin_lomax> and now it's working
<kevin_lomax> haha
akkad has joined #ruby-lang
<jhass> yeah, that's because a = b and c is (a = b) and c whereas a = b && c is a = (b && c) as you expect
<jhass> as in and has a lower precedence than = while && has a higher one
<kevin_lomax> and has a lower precedence than = or just == ?
<jhass> than = (or equal? I don't exactly remember actually)
<kevin_lomax> oh wow i had no idea
<kevin_lomax> that resolves it
<kevin_lomax> is there any reason to use "and" or should i just stick to && from now on?
<kevin_lomax> seems really counter-intuitive
nedp has joined #ruby-lang
<kevin_lomax> here we go in irb
<jhass> I found no sane one yet
<kevin_lomax> irb(main):003:0> temp = true and true and false
<kevin_lomax> => false
<kevin_lomax> irb(main):004:0> temp
<kevin_lomax> => true
<jhass> yeah
<kevin_lomax> that's why i was confused but when I tried it the second time to show you i forgot the temp = part
<jhass> some use and / or for control flow
<jhass> but I hate that
<kevin_lomax> ok so no real reason
<kevin_lomax> i'll take a page from your book and stick to && / ||
<jhass> condition and return some_value
<kevin_lomax> thanks a bunch jhass
<jhass> things like that
<kevin_lomax> oh yes i've done that before
<kevin_lomax> without problems
<jhass> instead of the sane return some_value if condition
<kevin_lomax> it's just style though, i can still use && right?
<jhass> as said, I ban and/or in my code and live perfectly fine with that
fujimura has quit [Remote host closed the connection]
<kevin_lomax> i found it handy for "render :page and return" in rails
<kevin_lomax> how would you write that differently?
<jhass> two lines
<jhass> or whole method body being a if / else
<kevin_lomax> ok :)
<kevin_lomax> thanks a lot
<kevin_lomax> have a good evening
<jhass> you're welcome, have a nice evening too
kevin_lomax has quit [Quit: Leaving]
houhoulis has joined #ruby-lang
houhoulis has quit [Remote host closed the connection]
* apeiros_ usually writes `render :page and return` as `render :page` in rails
<apeiros_> but then again, I value cleanly structured code which doesn't require mid-code returns :)
<vhlfd> It's a lifestyle.
|jemc| has left #ruby-lang ["WeeChat 1.1.1"]
apeiros_ has quit [Remote host closed the connection]
apeiros_ has joined #ruby-lang
tris has quit [Ping timeout: 265 seconds]
j4cknewt has joined #ruby-lang
greenarrow has quit [Remote host closed the connection]
stef204 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
kbsa has joined #ruby-lang
cornerma1 has joined #ruby-lang
cornerman has quit [Ping timeout: 265 seconds]
cornerma1 is now known as cornerman
michael_mbp has quit [Excess Flood]
michael_mbp has joined #ruby-lang
fujimura has joined #ruby-lang
ghostpl_ has joined #ruby-lang
marr has quit []
riotjones has joined #ruby-lang
cornerman has quit [Ping timeout: 240 seconds]
cornerman has joined #ruby-lang
chills42 has joined #ruby-lang
riotjones has quit [Ping timeout: 252 seconds]
charliesome has joined #ruby-lang
gaoyuehua225 has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
bruno- has quit [Ping timeout: 256 seconds]
sankaber has quit [Ping timeout: 246 seconds]
sankaber has joined #ruby-lang
justinweiss has joined #ruby-lang
red_menace has quit [Quit: leaving...]
sankaber has quit [Client Quit]
hahuang65_ has quit [Quit: Connection closed for inactivity]
hendranata_ has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 272 seconds]
cornerman has quit [Ping timeout: 252 seconds]
j4cknewt has quit [Remote host closed the connection]
Iskarlar_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nedp has quit [Remote host closed the connection]
kbsa has quit [Quit: Textual IRC Client: www.textualapp.com]
cornerman has joined #ruby-lang
hahuang61 has joined #ruby-lang
mattyohe has joined #ruby-lang
shinnya has quit [Ping timeout: 240 seconds]
martinbmadsen has quit [Ping timeout: 240 seconds]
tkuchiki has joined #ruby-lang
womble has quit [Excess Flood]
womble has joined #ruby-lang
SuMo_D has joined #ruby-lang
symm- has quit [Ping timeout: 246 seconds]
hendranata_ has quit [Ping timeout: 245 seconds]
hendranata_ has joined #ruby-lang
nathanstitt has joined #ruby-lang
Xney has quit [Remote host closed the connection]
Xney has joined #ruby-lang
sankaber has joined #ruby-lang
sankaber has quit [Client Quit]
lytol has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
Thecrazylumberja has joined #ruby-lang
Sirupsen has joined #ruby-lang
zdennis has quit [Quit: zdennis]
lytol has quit [Remote host closed the connection]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
amystephen has quit [Quit: amystephen]
mberk has joined #ruby-lang
j4cknewt has joined #ruby-lang
Sirupsen has quit [Quit: Textual IRC Client: www.textualapp.com]
octodoodle has joined #ruby-lang
lytol has joined #ruby-lang
ghostpl_ has joined #ruby-lang
martinbmadsen has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
postmodern has joined #ruby-lang
hahuang65_ has joined #ruby-lang
lytol has quit [Remote host closed the connection]
gaoyuehua225 has quit [Remote host closed the connection]
zdennis has joined #ruby-lang
rbowlby has quit [Remote host closed the connection]
zenspider has quit [Ping timeout: 246 seconds]
mberk has quit [Remote host closed the connection]
zdennis has quit [Quit: zdennis]
Miphix has joined #ruby-lang
havenn has joined #ruby-lang
lytol has joined #ruby-lang
zenspider has joined #ruby-lang
havenwood has quit [Ping timeout: 246 seconds]
ghostpl_ has quit [Ping timeout: 252 seconds]
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
tkuchiki_ has joined #ruby-lang
SuMo_D has quit [Read error: Connection reset by peer]
SuMo_D has joined #ruby-lang
bruno- has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
tkuchiki has quit [Ping timeout: 246 seconds]
djbkd has quit [Remote host closed the connection]
djbkd has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
caseypatrickdris has quit [Remote host closed the connection]
djbkd has joined #ruby-lang
bruno- has quit [Ping timeout: 264 seconds]
caseypatrickdris has joined #ruby-lang
caseypatrickdris has quit [Ping timeout: 255 seconds]
Iskarlar has joined #ruby-lang
charliesome has quit [Quit: zzz]
kyb3r_ has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
rbowlby has joined #ruby-lang
dellavg_ has joined #ruby-lang
rbowlby has quit [Ping timeout: 256 seconds]
Iskarlar_ has joined #ruby-lang
ur5us has quit [Ping timeout: 264 seconds]
Iskarlar has quit [Ping timeout: 245 seconds]
tkuchiki has joined #ruby-lang
pepperbreath has quit [Quit: Leaving.]
pepperbreath has joined #ruby-lang
gix has quit [Ping timeout: 264 seconds]
tkuchiki_ has quit [Ping timeout: 245 seconds]
dellavg_ has quit [Ping timeout: 264 seconds]
gix has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
chills42 has joined #ruby-lang
caseypatrickdris has quit [Ping timeout: 256 seconds]
billy_ran_away has quit [Ping timeout: 244 seconds]
mikecmpbll has quit [Quit: ciao.]
chills42 has quit [Ping timeout: 272 seconds]
mrod has joined #ruby-lang
<mrod> I have a script to keep an up-to-date copy of the Coinbase Exchange order book. I'm trying to modularize it but I can't get this part to work. Basically it listens on a websocket and puts incoming messages in a Queue. Despite creating the queue object, I get an "undefined method <<" everytime an object comes in. https://gist.github.com/mikerodrigues/a43f5d9b240f0cec7817
mqt has quit [Quit: leaving]
hahuang65_ has quit [Quit: Connection closed for inactivity]
<womble> mrod: What's the *full* error message, including stacktrace?
rippa has joined #ruby-lang
<mrod> womble: I added the error, and full backtrace for the << operation to the gist
apoc has joined #ruby-lang
ghostpl_ has joined #ruby-lang
lytol has quit [Remote host closed the connection]
rbowlby has joined #ruby-lang
jo__ has quit [Quit: Connection closed for inactivity]
octodoodle has quit [Read error: Connection reset by peer]
rbowlby has quit [Ping timeout: 265 seconds]
mkaesz has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
michael_mbp has quit [Excess Flood]
billy_ran_away has joined #ruby-lang
michael_mbp has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
billy_ran_away has quit [Ping timeout: 265 seconds]
ghostpl_ has quit [Ping timeout: 252 seconds]
lytol has joined #ruby-lang
lytol has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 265 seconds]
Iskarlar_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
p3ery has quit [Quit: (null)]
Mon_Ouie has joined #ruby-lang
Bwild has quit [Ping timeout: 256 seconds]
Bwild has joined #ruby-lang
kohgpat has joined #ruby-lang
charliesome has joined #ruby-lang
kohgpat has quit [Quit: leaving]
j4cknewt has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
mberk has joined #ruby-lang
billy_ran_away has joined #ruby-lang
j4cknewt has joined #ruby-lang
rbowlby has joined #ruby-lang
mberk has quit [Ping timeout: 256 seconds]
apeiros__ has joined #ruby-lang
apeiros_ has quit [Read error: Connection reset by peer]
mattyohe has quit [Quit: Connection closed for inactivity]
j4cknewt has quit [Remote host closed the connection]
apeiros__ has quit [Remote host closed the connection]
MXfive has joined #ruby-lang
MXfive has joined #ruby-lang
ghostpl_ has joined #ruby-lang
meschi has quit [Ping timeout: 252 seconds]
hahuang61 has joined #ruby-lang
sross_work|2 has joined #ruby-lang
<apoc> this code crashes in 2.2.0: range = /[\x5b-\x60\x7b-\x7d]/; re = /#{range}|[[:alpha:]]/
<apoc> but it works in 2.1.X, how do I fix this?
sross07 has quit [Ping timeout: 245 seconds]
hahuang61 has quit [Ping timeout: 272 seconds]
michael_mbp has quit [Excess Flood]
<womble> >> range = /[\x5b-\x60\x7b-\x7d]/; re = /#{range}|[[:alpha:]]/
<eval-in_> womble => premature end of char-class: /(?-mix:[\x5b-\x60\x7b-\x7d])|[[:alpha:]]/ (RegexpError) ... (https://eval.in/297606)
<apoc> >> re = /(?-mix:[\x5b-\x60\x7b-\x7d])|[[:alpha:]]/
<eval-in_> apoc => /(?-mix:[\x5b-\x60\x7b-\x7d])|[[:alpha:]]/ (https://eval.in/297607)
<apoc> is that a ruby bug?
michael_mbp has joined #ruby-lang
<womble> It feels that way to me, but I'm no expert.
michael_mbp has quit [Excess Flood]
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
octodoodle has joined #ruby-lang
michael_mbp has joined #ruby-lang
antifone has joined #ruby-lang
ammar has joined #ruby-lang
MXfive has joined #ruby-lang
<bnagy> >> s="[\\]^_`{|}"; /[#{Regexp.escape(s)}]|[[:alpha"]]/.match "]"
<eval-in_> bnagy => #<MatchData "]"> (https://eval.in/297608)
riotjones has joined #ruby-lang
riotjones has quit [Ping timeout: 272 seconds]
<bnagy> >>range = /[\x5b-\x60\x7b-\x7d]/; re = Regexp.union range, /[[:alpha:]]/
<eval-in_> bnagy => /(?-mix:[\x5b-\x60\x7b-\x7d])|(?-mix:[[:alpha:]])/ (https://eval.in/297609)
<bnagy> special place in hell for devs who use hex codes for printable ascii
<antifone> anyone using Gosu here ?
ghostpl_ has quit [Ping timeout: 265 seconds]
Averna has quit [Quit: Leaving.]
stan has joined #ruby-lang
xsdg has quit [Ping timeout: 246 seconds]
xsdg has joined #ruby-lang
vondruch has quit [Ping timeout: 255 seconds]
arBmind has joined #ruby-lang
michael_mbp has quit [Excess Flood]
ta has quit [Remote host closed the connection]
michael_mbp has joined #ruby-lang
Miphix has quit [Quit: Leaving]
strixd has joined #ruby-lang
mkaesz has joined #ruby-lang
ur5us has joined #ruby-lang
Forgetful_Lion has joined #ruby-lang
Bwild has quit [Quit: leaving]
ta has joined #ruby-lang
havenn has quit [Remote host closed the connection]
sheldonh has joined #ruby-lang
ta has quit [Remote host closed the connection]
ItSANgo has joined #ruby-lang
<sheldonh> Aside from "Why?", are there downsides to assigning objects to constant names (e.g. Registry), such that consumers think they're interacting with a class?
mkaesz has quit [Remote host closed the connection]
_shinnc has joined #ruby-lang
_shinnc has quit [Changing host]
_shinnc has joined #ruby-lang
solars has joined #ruby-lang
postmodern has quit [Quit: Leaving]
stan has quit [Remote host closed the connection]
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<womble> sheldonh: Why would they think they're interacting with a class?
ghostpl_ has joined #ruby-lang
mkaesz has joined #ruby-lang
vondruch has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
stan has joined #ruby-lang
caseypatrickdris has quit [Ping timeout: 246 seconds]
bruno- has joined #ruby-lang
bruno- has quit [Ping timeout: 245 seconds]
martinbmadsen has quit [Ping timeout: 264 seconds]
ta has joined #ruby-lang
marr has joined #ruby-lang
relix has joined #ruby-lang
djinni` has quit [*.net *.split]
CM-Punk has quit [*.net *.split]
djinni`_ has joined #ruby-lang
riotjones has joined #ruby-lang
godd2__ has joined #ruby-lang
godd2 has quit [Disconnected by services]
godd2__ is now known as godd2
CM-Punk has joined #ruby-lang
ghostpl_ has quit [Ping timeout: 256 seconds]
riotjones has quit [Ping timeout: 255 seconds]
b_hoffman has joined #ruby-lang
<godd2> antifone I'm familiar with Gosu. There's also the #gosu channel.
nertzy2 has joined #ruby-lang
JamesDH has joined #ruby-lang
<antifone> thanks godd2
nertzy has quit [Ping timeout: 252 seconds]
b_hoffman has quit [Quit: b_hoffman]
JamesDH has quit [Read error: Connection reset by peer]
mkaesz has quit [Ping timeout: 246 seconds]
mkaesz has joined #ruby-lang
kyb3r_ has quit [Read error: Connection reset by peer]
martinbmadsen has joined #ruby-lang
MXfive has joined #ruby-lang
j4cknewt has joined #ruby-lang
ruby-lang631 has joined #ruby-lang
ruby-lang631 has quit [Quit: Page closed]
ghostpl_ has joined #ruby-lang
<yorickpeterse> morning
ruby-lang631 has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
_shinnc has quit [Quit: _shinnc]
knu has quit [Remote host closed the connection]
ur5us has quit [Remote host closed the connection]
_shinnc has joined #ruby-lang
workmad3 has joined #ruby-lang
hendranata_ has quit [Ping timeout: 256 seconds]
ghostpl_ has quit [Ping timeout: 246 seconds]
arBmind has quit [Quit: Leaving.]
ruby-lang631 has quit [Ping timeout: 246 seconds]
hendranata_ has joined #ruby-lang
MXfive has quit [Remote host closed the connection]
MXfive has joined #ruby-lang
<sheldonh> womble: well, they'd do SomeConstant.foo(...) so the expectation would be a class or a module. that would be *my* expectation, anyway. maybe i should just let go of that and trust everyone else to do the same :)
j4cknewt has joined #ruby-lang
rbowlby has quit [Remote host closed the connection]
hendranata_ has quit [Ping timeout: 264 seconds]
Torrieri has joined #ruby-lang
Torrieri has joined #ruby-lang
ArchRogem has joined #ruby-lang
charliesome has quit [Quit: zzz]
aadam21 has joined #ruby-lang
aadam21_ has joined #ruby-lang
aadam21 has quit [Read error: Connection reset by peer]
michael_mbp has quit [Excess Flood]
JamesDH has joined #ruby-lang
michael_mbp has joined #ruby-lang
jds has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
Torrieri has quit [Ping timeout: 256 seconds]
michael_mbp has quit [Excess Flood]
symm- has joined #ruby-lang
stamina has joined #ruby-lang
x44x45x41x4E has joined #ruby-lang
michael_mbp has joined #ruby-lang
caseypatrickdris has quit [Ping timeout: 256 seconds]
bruno- has joined #ruby-lang
ghostpl_ has joined #ruby-lang
ghostpl_ has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
MXfive has quit [Remote host closed the connection]
MXfive has joined #ruby-lang
bruno- has quit [Ping timeout: 255 seconds]
michael_mbp has quit [Excess Flood]
_shinnc has quit [Quit: _shinnc]
j4cknewt has quit [Remote host closed the connection]
bruno- has joined #ruby-lang
michael_mbp has joined #ruby-lang
knu has joined #ruby-lang
MXfive has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<yorickpeterse> How to recognize solid Ruby:
<yorickpeterse> last_period_result = result[0]["count"].to_i rescue 0
* yorickpeterse cries
<yorickpeterse> cry evry tiem
<workmad3> yorickpeterse: that looks pretty :P
<yorickpeterse> I'm looking at a whole file of this crap
<yorickpeterse> no docs, no tests, the usual drill
* yorickpeterse gets his hammer
<yorickpeterse> I think I also need some holy water
JamesDH has quit [Read error: Connection reset by peer]
JamesDH has joined #ruby-lang
JamesDH has quit [Client Quit]
<yorickpeterse> also yay xfce4-screenshot can upload to imgur
<yorickpeterse> (the grey block thingies is trailing whitespace)
Thecrazylumberja has quit [Quit: Leaving]
arBmind has joined #ruby-lang
nwhirschfeld has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
arBmind has quit [Ping timeout: 256 seconds]
tkuchiki has quit [Read error: Connection reset by peer]
tkuchiki has joined #ruby-lang
chills42 has joined #ruby-lang
arBmind has joined #ruby-lang
tkuchiki has quit [Read error: Connection reset by peer]
mikecmpbll has joined #ruby-lang
j4cknewt has joined #ruby-lang
tkuchiki has joined #ruby-lang
fujimura has joined #ruby-lang
aadam21_ has quit [Remote host closed the connection]
ur5us has joined #ruby-lang
ur5us has quit [Ping timeout: 255 seconds]
j4cknewt has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
mkaesz has quit [Ping timeout: 245 seconds]
ldnunes has joined #ruby-lang
piotrj has joined #ruby-lang
caseypatrickdris has quit [Remote host closed the connection]
piotrj has quit [Remote host closed the connection]
mathie has joined #ruby-lang
piotrj has joined #ruby-lang
ghostpl_ has quit [Remote host closed the connection]
rikkipitt has joined #ruby-lang
symm- has quit [Ping timeout: 252 seconds]
AugustoCesar has joined #ruby-lang
apeiros_ has joined #ruby-lang
chouhoulis has joined #ruby-lang
ghostpl_ has joined #ruby-lang
mkaesz has joined #ruby-lang
intinig has joined #ruby-lang
mkaesz has quit [Ping timeout: 252 seconds]
mkaesz has joined #ruby-lang
piotrj has quit [Remote host closed the connection]
piotrj has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
riotjones has joined #ruby-lang
b_hoffman has joined #ruby-lang
octodoodle has quit [Quit: Textual IRC Client: www.textualapp.com]
fujimura has quit [Remote host closed the connection]
fujimura has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
fujimura has joined #ruby-lang
ta has quit [Remote host closed the connection]
fujimura has quit [Remote host closed the connection]
riotjones has quit [Ping timeout: 256 seconds]
stamina has quit [Quit: WeeChat 1.1.1]
intinig has quit [Remote host closed the connection]
tkuchiki has quit [Ping timeout: 245 seconds]
Miphix has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
b_hoffman has quit [Quit: b_hoffman]
j4cknewt has quit [Remote host closed the connection]
chills42 has joined #ruby-lang
b_hoffman has joined #ruby-lang
x44x45x41x4E has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
piotrj has quit []
piotrj has joined #ruby-lang
sgambino has joined #ruby-lang
intinig has joined #ruby-lang
caseypatrickdris has joined #ruby-lang
shinnya has joined #ruby-lang
aadam21 has joined #ruby-lang
bradland_ has joined #ruby-lang
bradland_ has quit [Client Quit]
godd2 has quit [Remote host closed the connection]
godd2 has joined #ruby-lang
b_hoffman has quit [Quit: b_hoffman]
jgpawletko has joined #ruby-lang
caseypatrickdris is now known as caseydriscoll
rbowlby has joined #ruby-lang
Forgetful_Lion has quit [Remote host closed the connection]
amystephen has joined #ruby-lang
zdennis has joined #ruby-lang
b_hoffman has joined #ruby-lang
enebo has joined #ruby-lang
rbowlby has quit [Ping timeout: 252 seconds]
banister has joined #ruby-lang
malconis has joined #ruby-lang
skade has joined #ruby-lang
relix has joined #ruby-lang
hahuang61 has joined #ruby-lang
Sgeo has quit [Read error: Connection reset by peer]
malconis has quit [Remote host closed the connection]
hahuang61 has quit [Ping timeout: 252 seconds]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
antifone has quit [Quit: Page closed]
lektrik has joined #ruby-lang
nathanstitt has joined #ruby-lang
Dmr has joined #ruby-lang
mkaesz has quit [Ping timeout: 256 seconds]
malconis has joined #ruby-lang
mattyohe has joined #ruby-lang
j4cknewt has joined #ruby-lang
SuMo_D has joined #ruby-lang
ArchRogem has quit [Quit: Textual IRC Client: www.textualapp.com]
relix has joined #ruby-lang
bruno- has quit [Ping timeout: 246 seconds]
whippythellama has joined #ruby-lang
fujimura has joined #ruby-lang
mkaesz has joined #ruby-lang
setanta_ has joined #ruby-lang
tkuchiki has joined #ruby-lang
lele|w has joined #ruby-lang
ghostpl_ has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
tenderlove has joined #ruby-lang
jo__ has joined #ruby-lang
mcclurmc has joined #ruby-lang
mustmodify has joined #ruby-lang
<mustmodify> this might be OT for this channel... how do I calculate the probability of collision for Hash#to_hash? I assume it's pretty low but I want to know if it's low enough to use as a caching strategy.
cornerma1 has joined #ruby-lang
<jhass> what do you mean? Hash#to_hash just returns self
<mustmodify> hm...
<mustmodify> jhass: Sorry, my fault.
<mustmodify> Hash#hash
<jhass> Hash#hash is not stable across processes
<jhass> >> {}.hash
<eval-in_> jhass => -415843387 (https://eval.in/297765)
<jhass> >> {}.hash
<eval-in_> jhass => -37092332 (https://eval.in/297766)
<mustmodify> I guess the odds are 1 in whatever-is-the-maximum-value assume equal distribution, whatever equal distribution means for a hash.
cornerman has quit [Ping timeout: 250 seconds]
<mustmodify> bah! Really? What?
cornerma1 is now known as cornerman
<jhass> it's not a checksum or anything
<mustmodify> I get zero
<mustmodify> >>ENV['RUBY_VERSION']
<eval-in_> mustmodify => nil (https://eval.in/297767)
<jhass> >> RUBY_DESCRIPTION
<eval-in_> jhass => "ruby 2.2.0p0 (2014-12-25 revision 49005) [i686-linux]" (https://eval.in/297768)
<jhass> 18>> {}.hash
<eval-in_> jhass => 0 (https://eval.in/297769)
<jhass> 18>> {}.hash
<eval-in_> jhass => 0 (https://eval.in/297770)
<jhass> 18>> {"foo" => "bar"}.hash
<eval-in_> jhass => -245358099 (https://eval.in/297771)
<jhass> 18>> {"foo" => "bar"}.hash
<eval-in_> jhass => 291512995 (https://eval.in/297772)
<jhass> 19>> {}.hash
<eval-in_> jhass => 0 (https://eval.in/297773)
<jhass> 20>> {}.hash
<eval-in_> jhass => 0 (https://eval.in/297774)
<jhass> interesting
<jhass> 21>> {}.hash
<eval-in_> jhass => 235137865 (https://eval.in/297775)
<jhass> there, 2.1 changed it
<jhass> anyway, don't depend on it
<jhass> if there are actual values in it it's not even on 1.8 stable
<mustmodify> ah.
jww_ has joined #ruby-lang
<mustmodify> so they changed hash from consistent to inconsistent in 2.1?
<jhass> no
<jhass> they rather made empty hash consistent with non-empty hash in 2.1
ghostpl_ has quit [Remote host closed the connection]
daften has joined #ruby-lang
<mustmodify> >> 30.times.map{ {a: 8}.hash }.uniq => [-3670446793647847194]
<eval-in_> mustmodify => /tmp/execpad-f2433fdad10c/source-f2433fdad10c:2: syntax error, unexpected =>, expecting keyword_end ... (https://eval.in/297777)
<mustmodify> woops
<mustmodify> >> 30.times.map{ {a: 8}.hash }.uniq
<eval-in_> mustmodify => [-855588852] (https://eval.in/297778)
<jhass> yes, it's stable inside a process
<jhass> it's not stable across processes
<mustmodify> Oh
<mustmodify> I see
<mustmodify> that clears things up.
<jhass> pretty sure I said that initially
<mustmodify> jhass: I must have missed it.
<jhass> 15:40 <jhass> Hash#hash is not stable across processes
shazaum has joined #ruby-lang
jww42 has joined #ruby-lang
daften has left #ruby-lang [#ruby-lang]
jww_ has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
iamninja has joined #ruby-lang
intinig has quit [Remote host closed the connection]
ghostpl_ has quit [Remote host closed the connection]
intinig has joined #ruby-lang
ghostpl_ has joined #ruby-lang
intinig has quit [Remote host closed the connection]
intinig has joined #ruby-lang
ghostpl_ has quit [Remote host closed the connection]
mustmodify has left #ruby-lang [#ruby-lang]
centrx has joined #ruby-lang
bruno- has joined #ruby-lang
havenwood has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
Mon_Ouie has quit [Ping timeout: 252 seconds]
gwendall has joined #ruby-lang
whippythellama has quit [Quit: whippythellama]
whippythellama has joined #ruby-lang
havenn has joined #ruby-lang
havenwood has quit [Ping timeout: 240 seconds]
centrx has quit [Ping timeout: 245 seconds]
whippythellama has quit [Quit: whippythellama]
mustmodify has joined #ruby-lang
whippythellama has joined #ruby-lang
|jemc| has joined #ruby-lang
<mustmodify> jhass: Well then do I need to write my own checsum-kind-of-method using md5 or something? Or is there some other method that already does what I want?
<jhass> I'd look into existing caching solutions
havenn has quit [Ping timeout: 264 seconds]
mustmodify has left #ruby-lang [#ruby-lang]
ta has joined #ruby-lang
dm78 has quit [Remote host closed the connection]
x44x45x41x4E has joined #ruby-lang
dm78 has joined #ruby-lang
ascarter has joined #ruby-lang
symm- has joined #ruby-lang
centrx has joined #ruby-lang
ascarter has quit [Max SendQ exceeded]
ascarter has joined #ruby-lang
micmus has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
skade has joined #ruby-lang
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Rephiax has quit []
ghostpl_ has quit [Remote host closed the connection]
ghostpl_ has joined #ruby-lang
JaRe_Ax has joined #ruby-lang
xcesariox has joined #ruby-lang
JaReAx has quit [Ping timeout: 264 seconds]
JaRe_Ax is now known as JaReAx
chills42 has joined #ruby-lang
havenwood has joined #ruby-lang
ghostpl__ has joined #ruby-lang
ghostpl_ has quit [Read error: Connection reset by peer]
lytol has joined #ruby-lang
rbowlby has joined #ruby-lang
seank_ has quit []
xcesariox has quit [Quit: Textual IRC Client: www.textualapp.com]
rbowlby has quit [Remote host closed the connection]
seank_ has joined #ruby-lang
sc00t has joined #ruby-lang
sc00t has quit [Ping timeout: 255 seconds]
riotjones has joined #ruby-lang
gwendall_ has joined #ruby-lang
mberk has joined #ruby-lang
rbowlby has joined #ruby-lang
rbowlby has quit [Remote host closed the connection]
gwendall has quit [Ping timeout: 272 seconds]
Integralist has joined #ruby-lang
Integralist has quit [Client Quit]
Integralist has joined #ruby-lang
riotjones has quit [Ping timeout: 256 seconds]
skade has quit [Quit: Computer has gone to sleep.]
Integralist has left #ruby-lang [#ruby-lang]
ghostpl__ has quit [Remote host closed the connection]
mberk has quit [Ping timeout: 264 seconds]
ghostpl_ has joined #ruby-lang
stan has quit [Ping timeout: 265 seconds]
skade has joined #ruby-lang
rbowlby has joined #ruby-lang
riotjones has joined #ruby-lang
AugustoCesar has quit [Ping timeout: 252 seconds]
tkuchiki has quit [Ping timeout: 265 seconds]
AugustoCesar has joined #ruby-lang
bb010g has quit [Quit: Connection closed for inactivity]
fujimura has quit [Remote host closed the connection]
dm78_ has joined #ruby-lang
x44x45x41x4E has quit [Remote host closed the connection]
dm78 has quit [Ping timeout: 255 seconds]
apeiros_ has quit [Remote host closed the connection]
deg_ has joined #ruby-lang
Iskarlar has joined #ruby-lang
Iskarlar has quit [Read error: Connection reset by peer]
Iskarlar has joined #ruby-lang
toretore has joined #ruby-lang
yatish27 has joined #ruby-lang
deg has quit [Ping timeout: 245 seconds]
mkaesz has quit [Ping timeout: 246 seconds]
JaReAx has quit [Read error: Connection reset by peer]
ghostpl_ has quit [Remote host closed the connection]
mkaesz has joined #ruby-lang
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby-lang
lytol has quit [Remote host closed the connection]
mberk has joined #ruby-lang
hahuang61 has joined #ruby-lang
ghostpl_ has joined #ruby-lang
havenn has joined #ruby-lang
malconis has quit [Remote host closed the connection]
mberk has quit [Ping timeout: 264 seconds]
ghostpl_ has quit [Ping timeout: 245 seconds]
malconis has joined #ruby-lang
ghostpl_ has joined #ruby-lang
malconis_ has joined #ruby-lang
havenwood has quit [Ping timeout: 256 seconds]
mkaesz has quit [Remote host closed the connection]
mkaesz has joined #ruby-lang
mberk has joined #ruby-lang
malconis has quit [Ping timeout: 264 seconds]
strixd has quit [Quit: 500]
havenwood has joined #ruby-lang
wallerdev has joined #ruby-lang
mkaesz has quit [Ping timeout: 256 seconds]
havenn has quit [Ping timeout: 246 seconds]
JohnBat26 has joined #ruby-lang
intinig has quit [Remote host closed the connection]
jo__ has quit [Quit: Connection closed for inactivity]
havenn has joined #ruby-lang
havenwood has quit [Ping timeout: 272 seconds]
ghostpl_ has quit [Remote host closed the connection]
mberk has quit [Remote host closed the connection]
arBmind has quit [Quit: Leaving.]
dorei has joined #ruby-lang
matp_ has joined #ruby-lang
matp has quit [Ping timeout: 240 seconds]
havenn has quit [Ping timeout: 264 seconds]
apeiros_ has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
fujimura has joined #ruby-lang
ghostpl_ has joined #ruby-lang
havenwood has joined #ruby-lang
_djbkd has joined #ruby-lang
SumoBoy has joined #ruby-lang
skade has joined #ruby-lang
mikecmpbll has quit [Ping timeout: 256 seconds]
lytol has joined #ruby-lang
skade has quit [Client Quit]
bb010g has joined #ruby-lang
rikkipitt has quit [Quit: Leaving...]
b_hoffman has quit [Quit: b_hoffman]
b_hoffman has joined #ruby-lang
symm- has quit [Quit: Leaving...]
ascarter has joined #ruby-lang
ascarter has quit [Client Quit]
ascarter has joined #ruby-lang
Adam____ has joined #ruby-lang
<Adam____> Hello, all
<havenwood> hi
mikecmpbll has joined #ruby-lang
<Adam____> I have a question about methods
<Adam____> and parsing the last element from different object
<Adam____> objects*
malconis_ has quit [Remote host closed the connection]
<centrx> Question unasked, question unanswered.
<Adam____> for example def last("abcde") , last([1,2,3,4,5]), last(1, 2, 3, 4, "a", "b", "c")
malconis has joined #ruby-lang
<Adam____> how would i go about creating a method that parses the last element of each different object?
<centrx> What does "parses the last element" mean and what kind of different objects would it be used on?
akkad has quit [Excess Flood]
<Adam____> return the last element, it would be used on a String, Array, and Arguments
malconis has quit [Remote host closed the connection]
<wallerdev> is the 5 the last element
<wallerdev> or the array itself
<wallerdev> the last element
<Adam____> yes for the examples given it would be e, 5, and c
<wallerdev> and is "abcde" the last element, or is "e" the last "argument"
<wallerdev> well the thing is
akkad has joined #ruby-lang
<wallerdev> youd have to check what type the element is then
<centrx> arguments are turned into an array with splat
<wallerdev> since a string is a single element in ruby
<wallerdev> its not a pretend array
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Adam____> would the easy thing be then to test what the arguments are or to make everything an array first?
ghostpl_ has quit [Remote host closed the connection]
<wallerdev> you cant make a string an array of characters without knowing its a string first
<centrx> string has a last
<centrx> >> "abcde"[-1]
<eval-in_> centrx => "e" (https://eval.in/297834)
<centrx> same as array
malconis has joined #ruby-lang
<wallerdev> >> 'abcde'.last
<eval-in_> wallerdev => undefined method `last' for "abcde":String (NoMethodError) ... (https://eval.in/297835)
ascarter has joined #ruby-lang
ghostpl_ has joined #ruby-lang
<Adam____> This is what I worked with before
<Adam____> def last(value, *args) \n if value == Array \n value.last \n elsif value == String value.slice[-1] else args.last end end
<centrx> I don't see what's wrong with [-1]
<Adam____> however, it works in some cases but not all
<Adam____> I was thinking there might be a more concise answer
<centrx> [-1] is four characters
<centrx> not sure how it could be more concise, you could define a method named #lst on String and Array
<wallerdev> lol
<Adam____> Thanks for your help, @centrx @wallerdev
piotrj has quit [Remote host closed the connection]
bruno- has quit [Ping timeout: 256 seconds]
SuMo_D has joined #ruby-lang
Adam____ has quit [Quit: Page closed]
SuMo_D has quit [Remote host closed the connection]
SuMo_D has joined #ruby-lang
Iskarlar_ has joined #ruby-lang
yfeldblu_ has quit [Ping timeout: 256 seconds]
dagda1 has quit [Ping timeout: 244 seconds]
Iskarlar has quit [Ping timeout: 256 seconds]
SuMo_D has quit [Ping timeout: 244 seconds]
dagda1 has joined #ruby-lang
sarkyniin has joined #ruby-lang
b_hoffman has quit [Quit: b_hoffman]
sc00t has joined #ruby-lang
hahuang61 has quit [Ping timeout: 272 seconds]
tvon has joined #ruby-lang
jgpawletko has quit [Quit: jgpawletko]
sc00t has quit [Ping timeout: 244 seconds]
sc00t has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
bruno- has joined #ruby-lang
jmrepetti has joined #ruby-lang
lytol has quit [Remote host closed the connection]
wallerdev has joined #ruby-lang
lytol has joined #ruby-lang
redtomahawk has joined #ruby-lang
redtomahawk has quit [Client Quit]
sc00t has quit [Ping timeout: 256 seconds]
sarkyniin has quit [Ping timeout: 245 seconds]
bruno- has quit [Ping timeout: 250 seconds]
lytol has quit [Ping timeout: 256 seconds]
Voker57|2 has joined #ruby-lang
sarkyniin has joined #ruby-lang
futilegames has quit [Quit: futilegames]
futilegames has joined #ruby-lang
Voker57 has quit [Ping timeout: 246 seconds]
ghostpl_ has quit [Remote host closed the connection]
unreal_ is now known as unreal
havenwood has quit []
jgpawletko has joined #ruby-lang
yfeldblum has joined #ruby-lang
chills42 has quit [Remote host closed the connection]
jmrepetti has quit [Remote host closed the connection]
jmrepett_ has joined #ruby-lang
piotrj has joined #ruby-lang
micmus has quit [Ping timeout: 264 seconds]
piotrj has quit [Remote host closed the connection]
b_hoffman has joined #ruby-lang
mkaesz has joined #ruby-lang
hahuang61 has joined #ruby-lang
mkaesz has quit [Remote host closed the connection]
hahuang61 has quit [Client Quit]
hahuang62 has joined #ruby-lang
wallerdev has quit [Quit: wallerdev]
seank_ has quit []
stan has joined #ruby-lang
ghostpl_ has joined #ruby-lang
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
jmrepett_ has quit [Remote host closed the connection]
seank_ has joined #ruby-lang
_djbkd has quit [Remote host closed the connection]
_djbkd has joined #ruby-lang
wallerdev has joined #ruby-lang
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Rephiax has joined #ruby-lang
micmus has joined #ruby-lang
JamesDH has joined #ruby-lang
lytol has joined #ruby-lang
lytol has quit [Remote host closed the connection]
lytol has joined #ruby-lang
_djbkd has quit [Remote host closed the connection]
sp4rrow has joined #ruby-lang
chills42 has joined #ruby-lang
Asher has quit [Quit: Leaving.]
dzejrou has joined #ruby-lang
_djbkd has joined #ruby-lang
piotrj has joined #ruby-lang
ascarter has joined #ruby-lang
solars has quit [Ping timeout: 245 seconds]
dellavg_ has joined #ruby-lang
dmr8 has joined #ruby-lang
dmr8 has quit [Remote host closed the connection]
_djbkd has quit [Quit: My people need me...]
tris has joined #ruby-lang
JamesDH has quit [Read error: Connection reset by peer]
JamesDH has joined #ruby-lang
Iskarlar_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
postmodern has joined #ruby-lang
JamesDH has quit [Read error: Connection reset by peer]
JamesDH_ has joined #ruby-lang
tris has quit [Quit: Leaving]
JamesDH has joined #ruby-lang
JamesDH_ has quit [Read error: Connection reset by peer]
solars has joined #ruby-lang
JamesDH_ has joined #ruby-lang
JamesDH has quit [Read error: Connection reset by peer]
caseydriscoll has quit [Remote host closed the connection]
yfeldblum has quit [Remote host closed the connection]
chills42 has quit [Remote host closed the connection]
Asher has joined #ruby-lang
JamesDH_ has quit [Read error: Connection reset by peer]
sarkyniin has quit [Ping timeout: 264 seconds]
tris has joined #ruby-lang
JamesDH_ has joined #ruby-lang
ur5us has joined #ruby-lang
Mon_Ouie has joined #ruby-lang
hahuang61 has joined #ruby-lang
hahuang62 has quit [Read error: Connection reset by peer]
ur5us_ has joined #ruby-lang
futilegames has quit [Quit: futilegames]
sross_work|2 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
sross07 has joined #ruby-lang
sross07 has joined #ruby-lang
Torrieri has joined #ruby-lang
ur5us has quit [Ping timeout: 264 seconds]
houhoulis has joined #ruby-lang
yfeldblum has joined #ruby-lang
SumoBoy has quit [Quit: Leaving]
kadoppe has quit [Ping timeout: 264 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
kadoppe has joined #ruby-lang
lytol has quit [Remote host closed the connection]
lytol_ has joined #ruby-lang
piotrj has quit [Remote host closed the connection]
GBrawl has joined #ruby-lang
Olipro_ has joined #ruby-lang
MXfive has joined #ruby-lang
JamesDH has joined #ruby-lang
JamesDH_ has quit [Read error: Connection reset by peer]
Iskarlar has joined #ruby-lang
Olipro_ has quit [Excess Flood]
JamesDH has quit [Read error: Connection reset by peer]
Olipro_ has joined #ruby-lang
JamesDH has joined #ruby-lang
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
b_hoffman has quit [Quit: b_hoffman]
Iskarlar_ has joined #ruby-lang
sp4rrow has quit [Quit: Leaving.]
Iskarlar has quit [Ping timeout: 246 seconds]
stardiviner has quit [Ping timeout: 256 seconds]
yfeldblum has quit [Remote host closed the connection]
malconis has joined #ruby-lang
Olipro_ has quit [Ping timeout: 252 seconds]
JamesDH_ has joined #ruby-lang
JamesDH_ has quit [Client Quit]
sarkyniin has joined #ruby-lang
JamesDH has quit [Ping timeout: 240 seconds]
lektrik has quit [Ping timeout: 244 seconds]
yfeldblum has joined #ruby-lang
micmus has quit [Ping timeout: 264 seconds]
Olipro_ has joined #ruby-lang
lytol_ has quit [Remote host closed the connection]
lytol has joined #ruby-lang
Iskarlar has joined #ruby-lang
ldnunes has quit [Quit: Leaving]
Iskarlar_ has quit [Ping timeout: 256 seconds]
hahuang61 has quit [Read error: Connection reset by peer]
hahuang61 has joined #ruby-lang
relix has quit [Quit: Textual IRC Client: www.textualapp.com]
bruno- has joined #ruby-lang
micmus has joined #ruby-lang
jmrepetti has joined #ruby-lang
stardiviner has joined #ruby-lang
caseydriscoll has joined #ruby-lang
Iskarlar_ has joined #ruby-lang
bougyman has quit [Quit: ZNC - http://znc.in]
Iskarlar has quit [Ping timeout: 252 seconds]
centrx has quit [Remote host closed the connection]
hotpancakes has joined #ruby-lang
hotpancakes has quit [Remote host closed the connection]
arBmind has joined #ruby-lang
dzejrou has quit [Quit: Leaving]
Dmr has quit [Quit: Leaving]
bougyman has joined #ruby-lang
bougyman is now known as Guest88427
yatish27 has quit [Remote host closed the connection]
GBrawl has quit [Quit: (null)]
Bwild has joined #ruby-lang
Guest88427 has quit [Changing host]
Guest88427 has joined #ruby-lang
sgambino has quit [Remote host closed the connection]
skade has joined #ruby-lang
GBrawl has joined #ruby-lang
Squarepy has joined #ruby-lang
jmrepetti has quit [Remote host closed the connection]
yfeldblum has quit [Remote host closed the connection]
Squarepy has quit [Quit: Leaving]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
aadam21 has quit [Remote host closed the connection]
yfeldblum has joined #ruby-lang
solars has quit [Ping timeout: 246 seconds]
micmus has quit [Quit: Leaving]
Guest88427 is now known as bougytoo
dellavg_ has quit [Ping timeout: 264 seconds]
Iskarlar_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
piotrj has joined #ruby-lang
fusillicode1 has quit [Quit: Leaving.]
caseydriscoll has quit [Remote host closed the connection]
shazaum has quit [Quit: Leaving]
riotjone_ has joined #ruby-lang
riotjones has quit [Ping timeout: 265 seconds]
whippythellama has quit [Quit: whippythellama]
yfeldblum has quit [Remote host closed the connection]
relix has joined #ruby-lang
yfeldblum has joined #ruby-lang
hahuang61 has quit [Ping timeout: 244 seconds]
mpeck has joined #ruby-lang
ghostpl_ has quit [Remote host closed the connection]
lytol has quit [Ping timeout: 252 seconds]
Sgeo has joined #ruby-lang
Asher has quit [Quit: Leaving.]
piotrj has quit [Remote host closed the connection]
yatish27 has joined #ruby-lang
Olipro_ has quit [Ping timeout: 265 seconds]
yfeldblum has quit [Ping timeout: 256 seconds]
mberk has joined #ruby-lang
Rephiax has quit [Ping timeout: 265 seconds]
Rephiax has joined #ruby-lang
hahuang61 has joined #ruby-lang
zdennis has quit [Quit: zdennis]
GBrawl has quit [Ping timeout: 252 seconds]
b_hoffman has joined #ruby-lang
j4cknewt has quit [Remote host closed the connection]
j4cknewt has joined #ruby-lang
mberk has quit [Ping timeout: 265 seconds]
nathanstitt has quit [Quit: I growing sleepy]
mberk has joined #ruby-lang
fujimura has quit [Remote host closed the connection]
fujimura has joined #ruby-lang
tvon has quit [Quit: leaving]
enebo has quit [Quit: enebo]
bougytoo is now known as bougyman
fujimura has quit [Ping timeout: 264 seconds]
b_hoffman has quit [Quit: b_hoffman]
kith has joined #ruby-lang
mberk has quit [Remote host closed the connection]
yfeldblum has joined #ruby-lang
j5s7 has joined #ruby-lang
j5s7 has quit [Client Quit]
sarkyniin has quit [Remote host closed the connection]
jo__ has joined #ruby-lang
mpeck has quit [Quit: Textual IRC Client: www.textualapp.com]
Olipro_ has joined #ruby-lang
tris has quit [Ping timeout: 256 seconds]
fujimura has joined #ruby-lang
havenwood has joined #ruby-lang
zdennis has joined #ruby-lang
SuMo_D has joined #ruby-lang
charliesome has joined #ruby-lang
<zenspider> Got dead code? Don't know if you do? debride version 1.0.0 has been released! | software releases by ryan davis - http://blog.zenspider.com/releases/2015/03/debride-version-1-0-0-has-been-released.html
* womble prefers the old-school way
<womble> gem install maggots
skade has quit [Read error: Connection reset by peer]
skade has joined #ruby-lang
<jefus> ho, sounds like your humors are running low womble
<womble> jefus: Well, at least I've got plenty of bile
<jefus> i expel melancholy in your general direction
<zenspider> wait... so maggots isn't a real gem? you got my hopes up
<zenspider> damn... that's a good gem name too
<jefus> Maggot.debride
ghostpl_ has joined #ruby-lang
SuMo_D has quit [Remote host closed the connection]
<zenspider> doctors debride. maggots chew. :P
zdennis has quit [Quit: zdennis]
ghostpl_ has quit [Ping timeout: 246 seconds]
caseydriscoll has joined #ruby-lang
<womble> Maggot.chew then
<zenspider> \O/
|jemc| has quit [Ping timeout: 245 seconds]
<jefus> there you go
MXfive_ has joined #ruby-lang
MXfive has quit [Ping timeout: 255 seconds]
aadam21 has joined #ruby-lang
ascarter_ has joined #ruby-lang
ascarter has quit [Ping timeout: 246 seconds]
nathanstitt has joined #ruby-lang