havenwood changed the topic of #ruby to: Rules & more: https://ruby-community.com | Ruby 2.5.1, 2.4.4, 2.3.7, 2.6.0-preview2: https://www.ruby-lang.org | Paste 4+ lines of text to https://gist.github.com | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby
jcarl43 has quit [Quit: WeeChat 2.1]
Autolycus has joined #ruby
jenrzzz has joined #ruby
c0ncealed1 has quit [Read error: Connection reset by peer]
dendazen has joined #ruby
c0ncealed1 has joined #ruby
derp10327 has quit [Ping timeout: 240 seconds]
derp10327 has joined #ruby
rfoust has joined #ruby
derp10327 has quit [Ping timeout: 265 seconds]
derp10327 has joined #ruby
samosaphile has joined #ruby
nogic has quit [Ping timeout: 240 seconds]
orbyt_ has joined #ruby
samosaphile has quit [Ping timeout: 260 seconds]
jenrzzz has quit [Ping timeout: 265 seconds]
mikkel- has quit [Quit: WeeChat 0.4.3]
sanscoeur has joined #ruby
cagomez has quit [Remote host closed the connection]
apeiros has quit [Ping timeout: 256 seconds]
sanscoeur has quit [Remote host closed the connection]
rfoust has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fmcgeough has joined #ruby
rfoust has joined #ruby
jready has joined #ruby
fmcgeough has quit [Client Quit]
fmcgeough has joined #ruby
kihacviz has quit [Quit: Page closed]
peterR`` has joined #ruby
karapetyan has quit [Remote host closed the connection]
cmhobbs has joined #ruby
<cmhobbs> hey folks! i'm banging my head against a problem. i've got an array of hashes like this: [{foo: 'bar', baz: 'qux'}, {foo: 'quux', baz: 'quuuux'}, ...] and i'd like to just turn that into an array of "tuples" [[key, value], [key, value], ...]
<cmhobbs> at the moment, i've tried foo.map { |element| element.to_a }
<cmhobbs> but that nests multiple arrays [[[key, value], ...], ...]]
<cmhobbs> and calling flatten outside the block just gives me a completely flat array (as expected...)
<havenwood> cmhobbs: flat_map(&:to_a)
<cmhobbs> is flat_map a railsism?
<havenwood> >> [{foo: 'bar', baz: 'qux'}, {foo: 'quux', baz: 'quuuux'}].flat_map(&:to_a)
<havenwood> cmhobbs: It's Ruby core.
<cmhobbs> amazing
<cmhobbs> thanks so much
<havenwood> cmhobbs: you're welcome
<cmhobbs> been doing this ruby stuff for 12 years and i haven't yet heard of #flat_map
<cmhobbs> learn something new everyday i guess
<havenwood> cmhobbs: Alternatively you can `map` then `flatten(1)`, but `flat_map` is better.
<cmhobbs> well, i was doing map and then flatten but i must've had things out of order
<cmhobbs> because i was getting weird nesting
<havenwood> cmhobbs: You'd need: flatten(1)
<havenwood> cmhobbs: Or you flatten too much.
<havenwood> >> [{foo: 'bar', baz: 'qux'}, {foo: 'quux', baz: 'quuuux'}].map(&:to_a).flatten(1)
<cmhobbs> one more stupid question. if i've got a hash that i can always assume (dangerous, yes) will only contain a single key, is there a better way to get only the value out of it than calling foo.keys.first?
<havenwood> #=> [[:foo, "bar"], [:baz, "qux"], [:foo, "quux"], [:baz, "quuuux"]]
<cmhobbs> what is this... flatten takes arguments?
<havenwood> cmhobbs: yerp
<cmhobbs> goodness, i need to read the core docs more closely
<havenwood> cmhobbs: Flat map is like map with flatten one level only.
<havenwood> Which is what you want here.
<cmhobbs> yeah
<cmhobbs> great
<havenwood> cmhobbs: Alternatively you could do: first.first
<cmhobbs> yeah, seems just as ham fisted
SeepingN has quit [Ping timeout: 260 seconds]
<cmhobbs> i know assuming there's only ever one key is dangerous, too
<cmhobbs> but in this case it'll never change. it's a one off with some data munging
kmurphy4 has joined #ruby
<havenwood> cmhobbs: oh, you want the value?
<havenwood> do you know the key?
<cmhobbs> yeah, just the only value that'll be in there
<cmhobbs> i may not know the key, no
<cmhobbs> i just know that i'm getting a single hash each time in this iterator that looks like { foo: 'bar' } (where the value could be a different data structure)
<cmhobbs> all i want is the sole value
<cmhobbs> point is it'll only ever have one key and one value
gizmore|2 has joined #ruby
<havenwood> cmhobbs: i guess you meant: foo.values.first
<cmhobbs> sorry no
<cmhobbs> keys
<cmhobbs> i just want the key
<cmhobbs> there's only ever one key
<cmhobbs> at the moment it's just foo.keys.first
<cmhobbs> but it seems ham fisted
<cmhobbs> but in this case, the input is more likely the problem
<havenwood> gotcha, haha - I got confused by "value of the key"
<havenwood> you want the key
<cmhobbs> yes
<cmhobbs> i want the key and there's only ever one of them in this case
<havenwood> keys.first is best. there's a proposed #one method but it hasn't been accepted.
<havenwood> it's would also ensure there is indeed only one item
<cmhobbs> yeah, seems a little too specific
<cmhobbs> thanks for the input
gizmore has quit [Ping timeout: 256 seconds]
eckhardt has quit [Quit: Textual IRC Client: www.textualapp.com]
cmhobbs has left #ruby ["WeeChat 1.6"]
Auv_ has quit []
Auv has joined #ruby
Auv is now known as JackMc
jud has quit [Ping timeout: 260 seconds]
d_kam has joined #ruby
orbyt_ has quit [Ping timeout: 265 seconds]
<havenwood> They left, but fwiw here are benchmarks of keys, each_key, first and flatten: https://gist.github.com/havenwood/2cfe05dd66b9227706412535c32ed41b
apparition has joined #ruby
<havenwood> TruffleRuby with keys take the cake, with 42M IPS.
<havenwood> JRuby is runner up with 19M.
<havenwood> CRuby's best showing is also keys at 7M.
<havenwood> And Rubinius is odd man out, with first being fastest at 0.8M.
jud has joined #ruby
tdy has quit [Ping timeout: 256 seconds]
karapetyan has joined #ruby
amar has joined #ruby
shinnya has joined #ruby
karapetyan has quit [Ping timeout: 265 seconds]
amar has quit [Ping timeout: 256 seconds]
arekushi has joined #ruby
cschneid has joined #ruby
cschneid has quit [Remote host closed the connection]
cschneid has joined #ruby
aakp has joined #ruby
aakp has quit [Client Quit]
aakp has joined #ruby
cyberg has quit [Quit: Leaving]
cadillac_ has quit [Ping timeout: 256 seconds]
rkazak has joined #ruby
cadillac_ has joined #ruby
shinnya has quit [Quit: ZNC - http://znc.in]
sytherax has joined #ruby
SteenJobs has quit [Quit: peaceee]
<headius> havenwood: I got 34M for JRuby
<headius> the benchmark also doesn't use any of the results and it's likely TR can statically "do nothing"
<havenwood> headius: oh, my mistake! Looking at the reported version, I accidentally ran it with graal.
<headius> havenwood: well that's fine, but throw -Xcompile.invokedynamic on there too
sytherax has quit [Remote host closed the connection]
<havenwood> ah, graal actually does increase performance - i'll add invokedynamic and update the gist
<headius> the benchmark blocks are going to be the biggest cost here
sytherax has joined #ruby
<headius> I modified your bench to call keys.first five times and use the results, and JRuby gets 27M ips to TR's 8M
<headius> on graal with indy
jready has quit [Remote host closed the connection]
<havenwood> headius: ahh, how interesting
arekushi has quit [Quit: Gateway shutdown]
<headius> TR is good at optimizing away unused work...we're getting there :-)
<havenwood> headius: thanks for the heads up! I'm getting 40M now with the original bench with graal and indy
<headius> yay
<headius> I'll gist my changes and numbers in a sec
<headius> TR still manages to eliminate most of the first.first one but the others it's being forced to do the work it seems
<headius> it's hard to benchmark an impl that eliminates useless work because it eliminates the benchmark
aakp has quit [Quit: aakp]
aakp has joined #ruby
shinnya has joined #ruby
<headius> havenwood: FWIW let me know what else you see with JRuby + indy + graal...for small benchmarks here that gives JRuby outstanding perf
<headius> mixed back for large apps though
<headius> bag
arekushi has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
aakp has quit [Client Quit]
aakp has joined #ruby
cadillac_ has quit [Quit: I quit]
cadillac_ has joined #ruby
AJA4350 has quit [Remote host closed the connection]
braincrash has quit [Quit: bye bye]
coderphive has quit [Quit: coderphive]
duderonomy has quit [Quit: Textual IRC Client: www.textualapp.com]
cschneid has quit [Remote host closed the connection]
cschneid has joined #ruby
braincrash has joined #ruby
cschneid has quit [Remote host closed the connection]
cschneid has joined #ruby
coderphi_ has joined #ruby
Autolycus has quit [Quit: Connection closed for inactivity]
eelster has joined #ruby
coderphi_ is now known as coderphive
shinnya has quit [Quit: ZNC - http://znc.in]
shinnya has joined #ruby
emilford has quit [Ping timeout: 268 seconds]
cschneid has quit [Remote host closed the connection]
shinnya has quit [Client Quit]
ciscam has quit [Ping timeout: 248 seconds]
aakp has quit [Quit: aakp]
cschneid has joined #ruby
aakp has joined #ruby
ciscam has joined #ruby
shinnya has joined #ruby
cschneid has quit [Remote host closed the connection]
emilford has joined #ruby
aakp has quit [Client Quit]
cschneid has joined #ruby
aakp has joined #ruby
emilford has quit [Ping timeout: 265 seconds]
bmurt has joined #ruby
emilford has joined #ruby
bmurt has quit [Client Quit]
<havenwood> headius: JRuby indy graal really is fast! Good stuff.
p0p0pr37_ has joined #ruby
<havenwood> headius: JRuby indy graal wins nicely on the pure Ruby SipHash gem I cut this week: https://gist.github.com/havenwood/b526607da727b044b28ecca7c27589ef
amar has joined #ruby
<headius> oh yeah that's a perfect case for JRuby + Graal right now
<headius> given these exciting results we'll be working over the next few weeks to get stuff inlining that isn't currently...that should open up more doors
<havenwood> For an empty SipHash13 digest on my laptop: JRuby indy/graal 99K - TruffleRuby 68K - CRuby 59K - JRuby 56K
p0p0pr37 has quit [Ping timeout: 265 seconds]
p0p0pr37_ is now known as p0p0pr37
<headius> is that a gem I can install?
<headius> I'm curious about jruby indy hotspot now
emilford has quit [Ping timeout: 256 seconds]
<headius> havenwood: you should also try -Xfixnum.cache=false
amar has quit [Ping timeout: 248 seconds]
<headius> to blunt the cost of numerics, we cache -256..256 Fixnum objects
<headius> but on Graal that can get in the way of escape analysis, so it's usually faster to disable it
<headius> sometimes much faster
<havenwood> ah, interesting
gix- has joined #ruby
gix has quit [Disconnected by services]
emilford has joined #ruby
<headius> we may detect graal in the future and only use it in the interpreter, or something
<headius> yeah seems to help some of them
derp10327 has quit [Ping timeout: 240 seconds]
sylario has quit [Quit: Connection closed for inactivity]
apparition has quit [Quit: Bye]
jamesaxl has quit [Quit: WeeChat 2.1]
cschneid has quit [Remote host closed the connection]
Dimik has joined #ruby
aakp has quit [Quit: aakp]
pabs has quit [Ping timeout: 256 seconds]
karapetyan has joined #ruby
phaul has joined #ruby
aakp has joined #ruby
donofrio has quit [Remote host closed the connection]
karapetyan has quit [Ping timeout: 248 seconds]
pabs has joined #ruby
UncleCid__ has joined #ruby
ciscam has quit [Ping timeout: 265 seconds]
pwnd_nsfw` has quit [Ping timeout: 240 seconds]
derp10327 has joined #ruby
ciscam has joined #ruby
aakp has quit [Quit: aakp]
aakp has joined #ruby
alfiemax has joined #ruby
aakp has quit [Client Quit]
ogres has joined #ruby
dendazen has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sanscoeur has joined #ruby
kmurphy4 has quit [Quit: kmurphy4]
russellx has joined #ruby
russellx has quit [Client Quit]
jnix_ is now known as jnix
jnix has quit [Changing host]
jnix has joined #ruby
ldepandis has joined #ruby
gnufied has quit [Ping timeout: 240 seconds]
kmurphy4 has joined #ruby
TinkerT has quit [Read error: Connection reset by peer]
TinkerT has joined #ruby
aakp has joined #ruby
Guest8275 has quit [Ping timeout: 244 seconds]
aakp has quit [Client Quit]
aakp has joined #ruby
dviola has quit [Quit: WeeChat 2.1]
nowhere_man has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
armyriad has joined #ruby
sytherax has quit [Remote host closed the connection]
p0p0pr37_ has joined #ruby
p0p0pr37_ has quit [Changing host]
p0p0pr37_ has joined #ruby
phaul has quit [Ping timeout: 256 seconds]
amar has joined #ruby
p0p0pr37 has quit [Ping timeout: 240 seconds]
p0p0pr37_ is now known as p0p0pr37
sytherax has joined #ruby
amar has quit [Ping timeout: 248 seconds]
tdy has joined #ruby
phaul has joined #ruby
reber has joined #ruby
alfiemax has quit [Remote host closed the connection]
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has joined #ruby
kmurphy4 has quit [Quit: kmurphy4]
pabs has quit [Ping timeout: 265 seconds]
sytherax has quit [Ping timeout: 268 seconds]
pabs has joined #ruby
sytherax has joined #ruby
karapetyan has joined #ruby
postmodern has joined #ruby
karapetyan has quit [Ping timeout: 265 seconds]
aakp has quit [Quit: aakp]
aakp has joined #ruby
sytherax has quit [Ping timeout: 248 seconds]
sytherax has joined #ruby
aakp has quit [Client Quit]
sytherax has quit [Ping timeout: 260 seconds]
Immune has joined #ruby
sytherax has joined #ruby
nowhere_man has quit [Remote host closed the connection]
nowhere_man has joined #ruby
kapil___ has joined #ruby
aakp has joined #ruby
sytherax has quit [Ping timeout: 265 seconds]
aakp has quit [Client Quit]
aakp has joined #ruby
sytherax has joined #ruby
aakp has quit [Quit: aakp]
gigetoo has quit [Ping timeout: 240 seconds]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
aakp has joined #ruby
sytherax has quit [Ping timeout: 248 seconds]
sytherax has joined #ruby
TomyLobo has joined #ruby
trautwein has quit [Quit: ZNC - https://znc.in]
rippa has joined #ruby
aakp has quit [Client Quit]
aakp has joined #ruby
trautwein has joined #ruby
aakp has quit [Client Quit]
troys has quit [Quit: Bye]
b10s_ has quit [Quit: Leaving]
alfiemax has quit [Remote host closed the connection]
alfiemax has joined #ruby
phaul has quit [Ping timeout: 240 seconds]
alfiemax has quit [Read error: Connection reset by peer]
alfiemax has joined #ruby
nickjj_ has joined #ruby
nickjj has quit [Ping timeout: 276 seconds]
alfiemax has quit [Ping timeout: 260 seconds]
alfiemax has joined #ruby
emilford has quit [Ping timeout: 268 seconds]
emilford has joined #ruby
gigetoo has joined #ruby
Immune has quit [Read error: Connection reset by peer]
coderphive has quit [Quit: coderphive]
sytherax has quit [Remote host closed the connection]
ciscam has quit [Ping timeout: 260 seconds]
ciscam has joined #ruby
sytherax has joined #ruby
Dimik has quit [Ping timeout: 265 seconds]
mtkd has joined #ruby
kevinsjoberg has joined #ruby
sytherax has quit [Ping timeout: 240 seconds]
sytherax has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has quit [Changing host]
p0p0pr37 has quit [Ping timeout: 248 seconds]
p0p0pr37_ is now known as p0p0pr37
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
amar has joined #ruby
clemens3 has joined #ruby
alfiemax has quit [Remote host closed the connection]
amar has quit [Ping timeout: 265 seconds]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
wget has quit [Ping timeout: 260 seconds]
quobo has joined #ruby
sytherax has quit [Ping timeout: 265 seconds]
duderonomy has joined #ruby
sytherax has joined #ruby
kevinsjoberg has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
KeyJoo has quit [Remote host closed the connection]
alfiemax has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
karapetyan has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
karapetyan has quit [Ping timeout: 245 seconds]
ogres has quit [Quit: Connection closed for inactivity]
mtkd has quit []
schleppel has joined #ruby
bbobb has joined #ruby
alfiemax has quit [Remote host closed the connection]
phaul has joined #ruby
sanscoeur has quit [Remote host closed the connection]
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
sytherax has quit [Ping timeout: 240 seconds]
mikecmpbll has joined #ruby
amar has joined #ruby
amar has quit [Read error: Connection reset by peer]
amar has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
sytherax has joined #ruby
amar has quit [Ping timeout: 240 seconds]
reber has quit [Remote host closed the connection]
reber has joined #ruby
OS-35301 has joined #ruby
amar has joined #ruby
OS-35301 has quit [Client Quit]
phaul has quit [Ping timeout: 256 seconds]
kapil___ has quit [Quit: Connection closed for inactivity]
sytherax has quit [Ping timeout: 265 seconds]
ldepandis has joined #ruby
emilford has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
phaul has joined #ruby
ldepandis has quit [Client Quit]
sytherax has joined #ruby
ldepandis has joined #ruby
apeiros has joined #ruby
jrm has quit [Quit: ciao]
jrm has joined #ruby
wget has joined #ruby
wget has quit [Changing host]
wget has joined #ruby
emilford has quit [Ping timeout: 248 seconds]
mtkd has joined #ruby
samosaphile has joined #ruby
sytherax has quit [Ping timeout: 260 seconds]
wget has quit [Ping timeout: 265 seconds]
emilford has joined #ruby
sytherax has joined #ruby
ams__ has joined #ruby
wget has joined #ruby
wget has quit [Ping timeout: 265 seconds]
sytherax has quit [Ping timeout: 265 seconds]
bonhoeffer has joined #ruby
wget has joined #ruby
sytherax has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has quit [Changing host]
p0p0pr37_ has joined #ruby
wget has quit [Ping timeout: 245 seconds]
p0p0pr37 has quit [Ping timeout: 265 seconds]
p0p0pr37_ is now known as p0p0pr37
tomphp has joined #ruby
nickjj_ is now known as nickjj
emilford has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
ellcs has joined #ruby
emilford has quit [Ping timeout: 265 seconds]
emilford has joined #ruby
wget has joined #ruby
wget has joined #ruby
wget has quit [Changing host]
psychicist__ has joined #ruby
psychicist__ has quit [Client Quit]
\void has quit [Ping timeout: 256 seconds]
psychicist__ has joined #ruby
wget has quit [Ping timeout: 265 seconds]
\void has joined #ruby
ta_ has quit [Remote host closed the connection]
ta_ has joined #ruby
ta_ has quit [Remote host closed the connection]
sytherax has quit [Remote host closed the connection]
ta_ has joined #ruby
ta_ has quit [Remote host closed the connection]
ta_ has joined #ruby
ta_ has quit [Remote host closed the connection]
ta_ has joined #ruby
ta_ has quit [Remote host closed the connection]
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
\void has quit [Quit: So long, and thanks for all the fish.]
vutral|kali has joined #ruby
<vutral|kali> hello anyone here having strange results from mathematic expressions in ruby?
<apeiros> vutral|kali: that's a rather vague question, don't you think?
<vutral|kali> 64-32.2 = 31.799999999999997 instead of 31.8
<apeiros> ?float vutral|kali
* apeiros pokes ruby[bot]
<apeiros> dang :(
<apeiros> it's dead
<apeiros> vutral|kali: Your numbers don't add up? You get "weird" results? read http://floating-point-gui.de/
<apeiros> in short: floats are not base10 but base2 and have finite space, they're therefore approximations which will not always match your base10 expectations.
zapata has quit [Quit: WeeChat 2.1]
ruby[bot] has joined #ruby
<apeiros> ?float vutral|kali
<ruby[bot]> vutral|kali: Your numbers don't add up? You get "weird" results? read http://floating-point-gui.de/
wget has joined #ruby
<apeiros> >> sprintf "%.60f", 0.1 # you see, not even 0.1 is truly 0.1
<ruby[bot]> apeiros: # => "0.100000000000000005551115123125782702118158340454101562500000" (https://eval.in/1014117)
<vutral|kali> mhm
<vutral|kali> and how do i get the rounded results?
<apeiros> by rounding
<apeiros> or by using rational or bigdecimal
<apeiros> mind you, there are no silver bullets. you have to use solutions which match your requirements & context.
phaul has quit [Ping timeout: 276 seconds]
karapetyan has joined #ruby
clemens3 has quit [Ping timeout: 256 seconds]
wget has quit [Ping timeout: 265 seconds]
phaul has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
karapetyan has quit [Ping timeout: 265 seconds]
emilford has quit [Ping timeout: 265 seconds]
emilford has joined #ruby
zapata has joined #ruby
ellcs has quit [Ping timeout: 256 seconds]
minimalism has quit [Quit: minimalism]
emilford has quit [Ping timeout: 268 seconds]
emilford has joined #ruby
wget has joined #ruby
wget has joined #ruby
wget has quit [Changing host]
emilford has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
Mike11 has joined #ruby
wget has quit [Ping timeout: 265 seconds]
alfiemax has joined #ruby
ta_ has joined #ruby
coderphive has joined #ruby
phaul has quit [Ping timeout: 265 seconds]
alfiemax has quit [Ping timeout: 240 seconds]
emilford has quit [Ping timeout: 240 seconds]
coderphive has quit [Ping timeout: 265 seconds]
emilford has joined #ruby
tomphp has joined #ruby
phaul has joined #ruby
ta_ has quit [Remote host closed the connection]
arekushi is now known as Guest33581
sytherax has joined #ruby
rfoust has quit [Ping timeout: 265 seconds]
sameerynho has joined #ruby
karapetyan has joined #ruby
za1b1tsu has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
karapetyan has quit [Remote host closed the connection]
amar has quit [Remote host closed the connection]
karapetyan has joined #ruby
amar has joined #ruby
mikecmpbll has quit [Quit: inabit.]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gigetoo has quit [Ping timeout: 256 seconds]
gigetoo has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
phaul has quit [Ping timeout: 260 seconds]
d^sh has quit [Quit: ZNC 1.6.1 - http://znc.in]
emilford has quit [Ping timeout: 268 seconds]
alfiemax has joined #ruby
emilford has joined #ruby
d^sh has joined #ruby
sytherax has quit [Ping timeout: 256 seconds]
sytherax has joined #ruby
wget has joined #ruby
alfiemax has quit [Ping timeout: 256 seconds]
wget has quit [Ping timeout: 240 seconds]
AJA4350 has joined #ruby
Guest33581 is now known as arekushi
weird_error has quit [Quit: weird_error]
weird_error has joined #ruby
pabs has quit [Ping timeout: 265 seconds]
pabs has joined #ruby
wget has joined #ruby
alfiemax has joined #ruby
yqt has joined #ruby
sytherax has quit [Remote host closed the connection]
sytherax has joined #ruby
alfiemax has quit [Ping timeout: 240 seconds]
wget has quit [Ping timeout: 265 seconds]
ellcs has joined #ruby
weird_error has quit [Quit: weird_error]
wget has joined #ruby
wget has joined #ruby
wget has quit [Changing host]
ta_ has joined #ruby
sytherax has quit [Remote host closed the connection]
IceDragon has quit [Ping timeout: 256 seconds]
mtkd has quit []
alfiemax has joined #ruby
mtkd has joined #ruby
pabs has quit [Ping timeout: 260 seconds]
IceDragon has joined #ruby
phaul has joined #ruby
wget has quit [Ping timeout: 255 seconds]
alfiemax has quit [Ping timeout: 240 seconds]
wget has joined #ruby
alex`` has quit [Ping timeout: 276 seconds]
emilford has quit [Ping timeout: 265 seconds]
pabs has joined #ruby
emilford has joined #ruby
jhass|off has joined #ruby
alex`` has joined #ruby
jhass has quit [Ping timeout: 256 seconds]
jhass|off is now known as jhass
pavelz has quit [Ping timeout: 256 seconds]
nettie has quit [Ping timeout: 256 seconds]
nettie has joined #ruby
balo_ has quit [Ping timeout: 256 seconds]
wget has quit [Ping timeout: 265 seconds]
balo_ has joined #ruby
c0ncealed1 has quit [Ping timeout: 256 seconds]
cschneid has joined #ruby
alfiemax has joined #ruby
Dbugger has joined #ruby
c0ncealed1 has joined #ruby
postmodern has quit [Quit: Leaving]
emilford has quit [Ping timeout: 256 seconds]
pavelz has joined #ruby
alfiemax has quit [Ping timeout: 260 seconds]
cschneid has quit [Ping timeout: 260 seconds]
biberu has joined #ruby
emilford has joined #ruby
vikaton has quit [Quit: Connection closed for inactivity]
wget has joined #ruby
alfiemax has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
alfiemax_ has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
wget has quit [Ping timeout: 276 seconds]
alfiemax has quit [Ping timeout: 256 seconds]
kmurphy4 has joined #ruby
emilford has joined #ruby
banisterfiend has joined #ruby
cyberg has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
venmx has joined #ruby
venmx has quit [Remote host closed the connection]
wget has joined #ruby
venmx has joined #ruby
wget has quit [Ping timeout: 265 seconds]
fmcgeough has quit [Quit: fmcgeough]
alfiemax_ has quit [Remote host closed the connection]
gigetoo has quit [Ping timeout: 245 seconds]
nowhere_man has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
venmx has quit [Remote host closed the connection]
venmx has joined #ruby
yqt has quit [Ping timeout: 256 seconds]
emilford has quit [Ping timeout: 268 seconds]
bmn has quit [Quit: obai]
coderphive has joined #ruby
al2o3-cr has quit [Quit: WeeChat 2.1]
pavelz has quit [Ping timeout: 256 seconds]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pavelz has joined #ruby
venmx has quit [Ping timeout: 265 seconds]
gr33n7007h has joined #ruby
gigetoo has joined #ruby
bmn has joined #ruby
quobo has quit [Quit: Connection closed for inactivity]
houhoulis has joined #ruby
houhouli_ has joined #ruby
snapcase has quit [Ping timeout: 256 seconds]
snapcase has joined #ruby
sytherax has joined #ruby
psychicist__ has quit [Ping timeout: 268 seconds]
houhoulis has quit [Ping timeout: 265 seconds]
wget has joined #ruby
venmx has joined #ruby
sytherax has quit [Remote host closed the connection]
wget has quit [Ping timeout: 265 seconds]
ta_ has quit [Remote host closed the connection]
jamesaxl has joined #ruby
karapetyan has quit [Remote host closed the connection]
wget has joined #ruby
karapetyan has joined #ruby
emilford has joined #ruby
karapetyan has quit [Remote host closed the connection]
mtkd has quit []
karapetyan has joined #ruby
nowhere_man has joined #ruby
wget has quit [Ping timeout: 265 seconds]
kapil___ has joined #ruby
ta_ has joined #ruby
phaul has quit [Ping timeout: 256 seconds]
sytherax has joined #ruby
phaul has joined #ruby
yqt has joined #ruby
wget has joined #ruby
thebetrayer has joined #ruby
wget has quit [Ping timeout: 245 seconds]
dendazen has joined #ruby
DLSteve has joined #ruby
wget has joined #ruby
sytherax has quit [Remote host closed the connection]
ta_ has quit [Remote host closed the connection]
wget has quit [Ping timeout: 245 seconds]
yqt has quit [Read error: Connection reset by peer]
sagax has quit [Read error: No route to host]
DoubleMalt has joined #ruby
DoubleMalt has quit [Remote host closed the connection]
nowhere_man has quit [Ping timeout: 256 seconds]
t0xik has quit [Quit: Connection closed for inactivity]
ellcs has quit [Ping timeout: 256 seconds]
nertzy has quit [Quit: Leaving]
emilford has quit [Ping timeout: 256 seconds]
ta_ has joined #ruby
emilford has joined #ruby
sagax has joined #ruby
fmcgeough has joined #ruby
venmx has quit [Remote host closed the connection]
ta_ has quit [Ping timeout: 255 seconds]
nertzy has joined #ruby
alfiemax has joined #ruby
wget has joined #ruby
shinnya has quit [Ping timeout: 248 seconds]
ams__ has quit [Quit: Connection closed for inactivity]
bbobb has quit [Ping timeout: 256 seconds]
sytherax has joined #ruby
wget has quit [Ping timeout: 265 seconds]
alfiemax has quit [Remote host closed the connection]
kmurphy4 has quit [Quit: kmurphy4]
kmurphy4 has joined #ruby
dendazen has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
gr33n7007h is now known as al2o3-cr
kmurphy4 has quit [Quit: kmurphy4]
kmurphy4 has joined #ruby
Esa_ has joined #ruby
wget has joined #ruby
sameerynho has quit [Ping timeout: 268 seconds]
ta_ has joined #ruby
cadillac_ has quit [Ping timeout: 265 seconds]
emilford has quit [Ping timeout: 265 seconds]
cadillac_ has joined #ruby
wget has quit [Ping timeout: 265 seconds]
chongtxtx has quit [Remote host closed the connection]
emilford has joined #ruby
cagomez has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
Dbugger has quit [Quit: Leaving]
Dbugger has joined #ruby
emilford has joined #ruby
plexigras has joined #ruby
wget has joined #ruby
wget has joined #ruby
wget has quit [Changing host]
bbobb has joined #ruby
orbyt_ has joined #ruby
crankharder has quit [Remote host closed the connection]
wget has quit [Ping timeout: 265 seconds]
fmcgeough has quit [Quit: fmcgeough]
bbobb has quit [Ping timeout: 256 seconds]
hph^ has joined #ruby
amar_ has joined #ruby
emilford has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
amar has quit [Ping timeout: 265 seconds]
ta_ has quit [Ping timeout: 260 seconds]
tomphp has joined #ruby
fmcgeough has joined #ruby
TvL2386_ has joined #ruby
cschneid has joined #ruby
TvL2386 has quit [Ping timeout: 268 seconds]
fmcgeough has quit [Quit: fmcgeough]
dviola has joined #ruby
cschneid has quit [Ping timeout: 265 seconds]
wget has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jrafanie has joined #ruby
wget has quit [Ping timeout: 245 seconds]
cagomez has quit [Remote host closed the connection]
tomphp has joined #ruby
cagomez has joined #ruby
tomphp has quit [Client Quit]
ogres has joined #ruby
peterR`` has quit [Ping timeout: 265 seconds]
houhouli_ has quit [Remote host closed the connection]
houhoulis has joined #ruby
dendazen has joined #ruby
cagomez has quit [Ping timeout: 276 seconds]
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jaequery has joined #ruby
jaequery has quit [Client Quit]
hph^ has quit [Ping timeout: 240 seconds]
Zaab1t has joined #ruby
houhoulis has quit [Ping timeout: 256 seconds]
ta_ has joined #ruby
hph^ has joined #ruby
hph^ has quit [Max SendQ exceeded]
cschneid has joined #ruby
hph^ has joined #ruby
hph^ has quit [Max SendQ exceeded]
hph^ has joined #ruby
hph^ has quit [Max SendQ exceeded]
User458764 has joined #ruby
hph^ has joined #ruby
hph^ has quit [Max SendQ exceeded]
quobo has joined #ruby
hph^ has joined #ruby
hph^ has quit [Max SendQ exceeded]
hph^ has joined #ruby
hph^ has quit [Max SendQ exceeded]
hph^ has joined #ruby
hph^ has quit [Max SendQ exceeded]
<User458764> Hi, in an argument based program how do you express a range, for example $ foo [--price between 10 20]
cschneid has quit [Ping timeout: 248 seconds]
<apeiros> User458764: that's entirely up on you to decide :)
<apeiros> I'd probably go with `foo --price 10-20`
<User458764> apeiros I mean what is the best practice ;)
<apeiros> I doubt there's established practice
<User458764> does 10-20 is a string?
<apeiros> all command line arguments are strings
<User458764> ok
<User458764> apeiros thanks I will go on that
<elomatreb> That will break or at least be unwieldy if you allow negative values though
<apeiros> -20--10
<User458764> elomatreb right
<apeiros> looks a bit ugly. that's all.
<elomatreb> IMO either space separate, or use ..
<apeiros> however, things like .. are less known outside programming
<apeiros> or two args. --min-price --max-price
<al2o3-cr> yeah, i'd go with --min-price --max-price
OMGBloopMonster has quit [Ping timeout: 268 seconds]
yokel has quit [Read error: Connection reset by peer]
<User458764> apeiros i'd go with it too since I would like to express only --min-price or --max-price
yokel has joined #ruby
<elomatreb> Yeah, in that case this is definitely the correct choice
kapil___ has quit [Quit: Connection closed for inactivity]
Dimik has joined #ruby
tomphp has joined #ruby
coderphive has quit [Quit: coderphive]
DLSteve has quit [Quit: All rise, the honorable DLSteve has left the channel.]
ta_ has quit [Ping timeout: 256 seconds]
wget has joined #ruby
phaul has quit [Ping timeout: 256 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tomphp has joined #ruby
houhoulis has joined #ruby
wget has quit [Ping timeout: 265 seconds]
dviola has quit [Quit: WeeChat 2.1]
tomphp has quit [Client Quit]
tomphp has joined #ruby
peterR`` has joined #ruby
kapil___ has joined #ruby
OMGBloopMonster has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
amatas has joined #ruby
wget has joined #ruby
wget has joined #ruby
wget has quit [Changing host]
wget has quit [Ping timeout: 265 seconds]
alex`` has quit [Ping timeout: 260 seconds]
vikaton has joined #ruby
alex`` has joined #ruby
Mike11 has quit [Quit: Leaving.]
alfiemax has joined #ruby
nowhere_man has joined #ruby
amatas has quit [Quit: amatas]
sytherax has quit [Remote host closed the connection]
<havenwood> User458764: This doesn't answer your question, but I think it's good practice to first check if your long option is on the GNU table of long options: https://www.gnu.org/prep/standards/html_node/Option-Table.html#Option-Table
<havenwood> User458764: (It isn't in this case, but those are nice to standardize on.)
pabs has quit [Ping timeout: 260 seconds]
<havenwood> User458764: If the name of the command already denotes that it's price, i'd say: -a --max, -i --min
<havenwood> Or: -M --max, -m --min
<havenwood> User458764: If you're using OptionParser, I have a recent example of some interesting features: https://gist.github.com/havenwood/02123198a79447543a3ea053e7e592fd
za1b1tsu has quit [Ping timeout: 265 seconds]
pabs has joined #ruby
tomphp has joined #ruby
dendazen has quit [Ping timeout: 256 seconds]
Zaab1t has quit [Quit: Zaab1t]
wget has joined #ruby
wget has joined #ruby
wget has quit [Changing host]
wget has quit [Ping timeout: 265 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
p0p0pr37_ has joined #ruby
p0p0pr37 has quit [Ping timeout: 260 seconds]
p0p0pr37_ is now known as p0p0pr37
rkazak has joined #ruby
ellcs has joined #ruby
wget has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
dviola has joined #ruby
wget has quit [Ping timeout: 265 seconds]
ellcs has quit [Ping timeout: 265 seconds]
wget has joined #ruby
wget has quit [Changing host]
wget has joined #ruby
peterR`` has quit [Ping timeout: 240 seconds]
rkazak has quit [Quit: Sleep.....ing....]
emilford has quit [Ping timeout: 256 seconds]
wget has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
GinoMan has joined #ruby
GinoMan has quit [Remote host closed the connection]
sameerynho has joined #ruby
GinoMan has joined #ruby
bbobb has joined #ruby
ta_ has joined #ruby
tomphp has joined #ruby
wget has joined #ruby
wilbert has joined #ruby
emilford has quit [Ping timeout: 268 seconds]
emilford has joined #ruby
wget has quit [Ping timeout: 276 seconds]
emilford has quit [Ping timeout: 240 seconds]
biberu has quit [Ping timeout: 265 seconds]
biberu has joined #ruby
emilford has joined #ruby
emilford has quit [Ping timeout: 268 seconds]
emilford has joined #ruby
rkazak has joined #ruby
Azure has quit [Read error: Connection reset by peer]
Azure|dc has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
ta_ has quit [Ping timeout: 248 seconds]
emilford has quit [Ping timeout: 248 seconds]
rkazak has quit [Quit: Sleep.....ing....]
emilford has joined #ruby
Paul91 has joined #ruby
banisterfiend has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
emilford has joined #ruby
test123456789 has joined #ruby
mtkd has joined #ruby
ellcs has joined #ruby
agent_white has joined #ruby
tomphp has joined #ruby
KnownSyntax_ has quit []
wget has joined #ruby
KnownSyntax_ has joined #ruby
test123456789 has quit [Ping timeout: 276 seconds]
p0p0pr37_ has joined #ruby
p0p0pr37_ has joined #ruby
p0p0pr37_ has quit [Changing host]
KnownSyntax_ is now known as KnownSyntax
kapil___ has quit [Quit: Connection closed for inactivity]
emilford has quit [Ping timeout: 276 seconds]
Nightmare has quit [Ping timeout: 256 seconds]
KnownSyntax has quit [Client Quit]
jtperreault has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
Nightmare has joined #ruby
amatas has joined #ruby
p0p0pr37 has quit [Ping timeout: 240 seconds]
p0p0pr37_ is now known as p0p0pr37
jtperreault has joined #ruby
wget has quit [Ping timeout: 265 seconds]
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
KnownSyntax has joined #ruby
tomphp has joined #ruby
wget has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
emilford has quit [Ping timeout: 245 seconds]
banisterfiend has joined #ruby
emilford has joined #ruby
amatas has quit [Quit: amatas]
wget has quit [Ping timeout: 265 seconds]
Vingador has joined #ruby
banisterfiend has quit [Client Quit]
houhoulis has quit [Remote host closed the connection]
fmcgeough has joined #ruby
alfiemax has quit [Remote host closed the connection]
amar has joined #ruby
emilford has quit [Ping timeout: 265 seconds]
emilford has joined #ruby
amar_ has quit [Ping timeout: 265 seconds]
wget has joined #ruby
alfiemax has joined #ruby
wget has quit [Ping timeout: 265 seconds]
Yzguy has joined #ruby
GinoMan has quit [Quit: Leaving]
alfiemax has quit [Ping timeout: 240 seconds]
wget has joined #ruby
SCHAPiE has quit [Ping timeout: 256 seconds]
Paul91 has left #ruby [#ruby]
tdy has quit [Ping timeout: 265 seconds]
\void has joined #ruby
wget has quit [Ping timeout: 240 seconds]
emilford has quit [Ping timeout: 260 seconds]
minimalism has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has joined #ruby
emilford has joined #ruby
wilbert has quit [Read error: Connection reset by peer]
jready has joined #ruby
SCHAPiE has joined #ruby
tomphp has joined #ruby
banisterfiend has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
wilbert has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tdy has joined #ruby
VladGh has quit [Remote host closed the connection]
VladGh has joined #ruby
alfiemax has quit [Remote host closed the connection]
emilford has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
banisterfiend has joined #ruby
banisterfiend has quit [Client Quit]
Vingador_ has joined #ruby
alfiemax has joined #ruby
kith has quit [Ping timeout: 240 seconds]
Vingador has quit [Ping timeout: 256 seconds]
ur5us has joined #ruby
alfiemax has quit [Ping timeout: 240 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Yzguy has quit [Quit: Zzz...]
wilbert has quit [Read error: Connection reset by peer]
Vingador has joined #ruby
Vingador_ has quit [Ping timeout: 265 seconds]
tomphp has joined #ruby
wget has joined #ruby
wget has joined #ruby
wget has quit [Changing host]
Yzguy has joined #ruby
alfiemax has joined #ruby
ldepandis has joined #ruby
karapetyan has quit [Remote host closed the connection]
wget has quit [Ping timeout: 265 seconds]
alfiemax has quit [Ping timeout: 265 seconds]
fmcgeough has quit [Quit: fmcgeough]
Yzguy has quit [Quit: Zzz...]
alfiemax has joined #ruby
emilford has quit [Ping timeout: 260 seconds]
emilford has joined #ruby
alfiemax has quit [Ping timeout: 256 seconds]
banisterfiend has joined #ruby
ta_ has joined #ruby
bbobb has quit [Quit: bbobb]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
emilford has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
gigetoo has quit [Ping timeout: 268 seconds]
gigetoo has joined #ruby
alfiemax has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
ogres has quit [Quit: Connection closed for inactivity]
duderonomy has quit [Quit: Textual IRC Client: www.textualapp.com]
emilford has quit [Ping timeout: 240 seconds]
jready has quit [Remote host closed the connection]
tomphp has joined #ruby
alfiemax has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
dinfuehr has quit [Ping timeout: 265 seconds]
p0p0pr37_ has joined #ruby
dinfuehr has joined #ruby
p0p0pr37 has quit [Ping timeout: 260 seconds]
p0p0pr37_ is now known as p0p0pr37
mtkd has quit [Ping timeout: 240 seconds]
reber has quit [Remote host closed the connection]
alfiemax has joined #ruby
mtkd has joined #ruby
desperek has joined #ruby
alfiemax has quit [Ping timeout: 268 seconds]
griffindy has joined #ruby
Dbugger has quit [Remote host closed the connection]
emilford has quit [Ping timeout: 240 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ellcs has quit [Ping timeout: 268 seconds]
ta_ has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
banisterfiend has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sytherax has joined #ruby
wget has joined #ruby
wget has quit [Ping timeout: 265 seconds]
Vingador_ has joined #ruby
sytherax has quit [Read error: Connection reset by peer]
karapetyan has joined #ruby
tomphp has joined #ruby
Vingador has quit [Ping timeout: 268 seconds]
karapetyan has quit [Ping timeout: 265 seconds]
nk121 has quit [Quit: moo]
emilford has quit [Ping timeout: 256 seconds]
ur5us has quit [Remote host closed the connection]
face has quit [Ping timeout: 245 seconds]
ur5us has joined #ruby
plexigras has quit [Ping timeout: 240 seconds]
emilford has joined #ruby
alfiemax has joined #ruby
ur5us has quit [Ping timeout: 268 seconds]
emilford has quit [Ping timeout: 240 seconds]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alfiemax has quit [Ping timeout: 268 seconds]
apeiros has quit [Ping timeout: 268 seconds]
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
emilford has joined #ruby
ta_ has joined #ruby
alfiemax has joined #ruby
emilford has quit [Ping timeout: 248 seconds]
alfiemax has quit [Ping timeout: 240 seconds]
banisterfiend has joined #ruby
<kspencer> in psych, is there a way to declare the root node or any node as a specific class and have ruby recognize that? I want the node to be an Array/sequence, everything I try doesn't seem to work, and I basically want a yaml->ruby conversion to output [] instead of nil
emilford has joined #ruby
amar has quit [Read error: No route to host]
<kspencer> I want to be able to Array.push into it, but so far no go on anything
amar has joined #ruby
shinnya has joined #ruby
karapetyan has joined #ruby
wget has joined #ruby
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
GodFather has quit [Ping timeout: 256 seconds]
GodFather has joined #ruby
kevinsjoberg has joined #ruby
kevinsjoberg has quit [Client Quit]
wget has quit [Ping timeout: 265 seconds]
eelster has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
alfiemax has joined #ruby
alfiemax has quit [Ping timeout: 265 seconds]
ta_ has quit [Ping timeout: 240 seconds]
mtkd has quit []
pabs has quit [Ping timeout: 265 seconds]
emilford has quit [Ping timeout: 256 seconds]
emilford has joined #ruby
carbivore has joined #ruby
pabs has joined #ruby
lytol has quit [Remote host closed the connection]
alfiemax has joined #ruby
emilford has quit [Ping timeout: 248 seconds]
emilford has joined #ruby
wget has joined #ruby
biberu has quit []
karapetyan has quit [Remote host closed the connection]
alfiemax has quit [Ping timeout: 260 seconds]
TomyLobo has quit [Ping timeout: 245 seconds]
karapetyan has joined #ruby
emilford has quit [Ping timeout: 240 seconds]
wget has quit [Ping timeout: 265 seconds]
carbivore has quit [Quit: Textual IRC Client: www.textualapp.com]
carbivore has joined #ruby
pabs has quit [Ping timeout: 265 seconds]
pabs has joined #ruby
alfiemax has joined #ruby
kmurphy4 has quit [Quit: kmurphy4]
segy has quit [Ping timeout: 276 seconds]
alfiemax has quit [Ping timeout: 240 seconds]
fffco has joined #ruby
emilford has joined #ruby
fffco has quit [Remote host closed the connection]
wget has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
emilford has quit [Ping timeout: 240 seconds]
alfiemax has joined #ruby
wget has quit [Ping timeout: 265 seconds]
emilford has joined #ruby
alfiemax has quit [Ping timeout: 240 seconds]
schleppel has quit [Quit: Konversation terminated!]
segy has joined #ruby
samosaphile has quit [Quit: Page closed]
carbivore has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
griffindy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Vingador has joined #ruby
alfiemax has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
Vingador_ has quit [Ping timeout: 265 seconds]
emilford has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
apeiros has joined #ruby
alfiemax has quit [Ping timeout: 276 seconds]
Vingador has quit [Ping timeout: 256 seconds]
tdy has quit [Ping timeout: 260 seconds]
Vingador has joined #ruby
emilford has quit [Ping timeout: 276 seconds]
bonhoeffer has quit [Disconnected by services]
bonhoeffer_win has joined #ruby
emilford has joined #ruby
griffindy has joined #ruby
ogres has joined #ruby
TomyLobo has joined #ruby
emilford has quit [Ping timeout: 256 seconds]
mn3m has joined #ruby
carbivore has joined #ruby
thebetrayer has quit [Ping timeout: 245 seconds]
Vingador_ has joined #ruby
emilford has joined #ruby
fmcgeough has joined #ruby
test007 has joined #ruby
<test007> hi
Vingador has quit [Ping timeout: 276 seconds]
test007 has quit [Quit: test007]
amar has quit [Remote host closed the connection]
amar has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
orbyt_ has joined #ruby
ur5us has joined #ruby
wget has joined #ruby
amar has quit [Ping timeout: 248 seconds]
sameerynho has quit [Ping timeout: 255 seconds]
ur5us has quit [Ping timeout: 240 seconds]
coderphive has joined #ruby
desperek has quit [Quit: xoxo]
wget has quit [Ping timeout: 265 seconds]
griffindy has quit [Ping timeout: 256 seconds]
griffindy has joined #ruby
karapetyan has quit [Remote host closed the connection]
emilford has quit [Ping timeout: 260 seconds]
karapetyan has joined #ruby
karapetyan has quit [Remote host closed the connection]
alfiemax has joined #ruby
karapetyan has joined #ruby
emilford has joined #ruby
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
karapetyan has quit [Remote host closed the connection]
alfiemax has quit [Ping timeout: 265 seconds]
shinnya has quit [Ping timeout: 256 seconds]
emilford has quit [Ping timeout: 265 seconds]