apeiros_ changed the topic of #ruby-lang to: Ruby 2.1.2; 2.0.0-p481; 1.9.3-p545: http://ruby-lang.org || Paste >3 lines of text on http://gist.github.com
KM has joined #ruby-lang
KM is now known as Guest72404
sdouglas has quit [Read error: Connection reset by peer]
sdouglas has joined #ruby-lang
Nexus_x1 has joined #ruby-lang
AncientAmateur has joined #ruby-lang
chouhoulis has joined #ruby-lang
sleepee has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
charliesome has joined #ruby-lang
Asher has quit [Quit: Leaving.]
charliesome has quit [Ping timeout: 240 seconds]
mikecmpb_ has quit [Quit: i've nodded off.]
dsaint-pierre has quit [Read error: Connection reset by peer]
<crankharder> why does Date.strptime("2014:26", "%Y:%V") == Wed, 01 Jan 2014
<crankharder> where: %V - Week number of the week-based year (01..53)
dsaint-pierre has joined #ruby-lang
<crankharder> and since that doesn't work, thoughts on getting a date instance for a given week number?
chouhoulis has quit [Remote host closed the connection]
<bnagy> crankharder: well I'm guessing because week 26 has 7 days in it, so it doesn't make any sense for parsing, only strftime
<bnagy> you could probably just add n*7 days to start of year
<bnagy> ugh, not for iso 8601 you can't. ew.
diegoviola has quit [Quit: WeeChat 0.4.3]
valerienc has joined #ruby-lang
sdouglas has quit [Ping timeout: 264 seconds]
ddv has quit [Ping timeout: 245 seconds]
<bnagy> >> Date.strptime("2007W47","%GW%V").to_s
<eval-in> bnagy => undefined method `strptime' for Date:Class (NoMethodError) ... (https://eval.in/167873)
<bnagy> lame
<bnagy> >> require 'date'; Date.strptime("2007W47","%GW%V").to_s
<eval-in> bnagy => "2007-11-19" (https://eval.in/167874)
<bnagy> crankharder: looks like it's just super fussy :<
sdouglas has joined #ruby-lang
stardiviner has joined #ruby-lang
alexju has joined #ruby-lang
<bnagy> oic.. need to use %G for week-based year maybe
ddv has joined #ruby-lang
<bnagy> >> require 'date'; [Date.strptime("2014:26","%G:%V").to_s, Date.strptime("2014:26","%Y:%V").to_s]
<eval-in> bnagy => ["2014-06-23", "2014-01-01"] (https://eval.in/167877)
<bnagy> joy
nathanstitt has quit [Quit: I growing sleepy]
sdouglas has quit [Remote host closed the connection]
sdouglas has joined #ruby-lang
bruno- has joined #ruby-lang
alexju has quit [Remote host closed the connection]
sdouglas has quit [Ping timeout: 244 seconds]
tanema has quit []
AncientA_ has joined #ruby-lang
bruno- has quit [Ping timeout: 248 seconds]
<crankharder> woo, ty :)
AncientAmateur has quit [Ping timeout: 240 seconds]
<bnagy> np, I had no idea what I was doing I just wailed on irb for a bit
havenwood has joined #ruby-lang
AncientA_ has quit [Remote host closed the connection]
stardiviner has quit [Ping timeout: 240 seconds]
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
nathanstitt has joined #ruby-lang
dsaint-pierre has quit [Ping timeout: 255 seconds]
snoopybbt has quit [Ping timeout: 245 seconds]
bantic has joined #ruby-lang
mistym has joined #ruby-lang
Sonja has quit [Ping timeout: 248 seconds]
AncientAmateur has joined #ruby-lang
stardiviner has joined #ruby-lang
cored has quit [Ping timeout: 272 seconds]
MikaAK has quit [Quit: node-irc says goodbye]
hahuang65 has joined #ruby-lang
snsei has joined #ruby-lang
snsei has quit [Remote host closed the connection]
charliesome has joined #ruby-lang
snsei has joined #ruby-lang
chouhoulis has joined #ruby-lang
knu has quit [Ping timeout: 252 seconds]
jackhammer2022 has quit [Quit: Textual IRC Client: http://www.textualapp.com/]
dsaint-pierre has joined #ruby-lang
charliesome has quit [Ping timeout: 260 seconds]
AncientAmateur has quit [Remote host closed the connection]
chouhoulis has quit [Remote host closed the connection]
tharindu has joined #ruby-lang
shinnya has quit [Ping timeout: 248 seconds]
pabs has quit [Ping timeout: 248 seconds]
pabs has joined #ruby-lang
sleepee has quit [Quit: Leaving]
stardiviner has quit [Ping timeout: 248 seconds]
Asher has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
AncientAmateur has joined #ruby-lang
mistym has quit [Remote host closed the connection]
machuga has left #ruby-lang ["Textual IRC Client: www.textualapp.com"]
stardiviner has joined #ruby-lang
Cakey has joined #ruby-lang
havenwood has quit []
AncientAmateur has quit [Remote host closed the connection]
Nexus_x1 has quit [Quit: Computer has gone to sleep.]
jxie has quit [Read error: Connection reset by peer]
mistym has joined #ruby-lang
aero224_ has quit [Remote host closed the connection]
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
jxie has joined #ruby-lang
mykoweb has joined #ruby-lang
aero224 has joined #ruby-lang
charliesome has joined #ruby-lang
tharindu has quit [Ping timeout: 240 seconds]
charliesome has quit [Ping timeout: 272 seconds]
snoopybbt has joined #ruby-lang
brixen_ is now known as brixen
Sonja has joined #ruby-lang
bruno- has joined #ruby-lang
snoopybbt has quit [Ping timeout: 245 seconds]
arBmind1 has joined #ruby-lang
bruno- has quit [Ping timeout: 252 seconds]
arBmind has quit [Ping timeout: 240 seconds]
valerienc has quit [Quit: valerienc]
chouhoulis has joined #ruby-lang
gix has quit [Ping timeout: 245 seconds]
chouhoulis has quit [Ping timeout: 240 seconds]
jonathanmarvens has quit [Remote host closed the connection]
jonathanmarvens has joined #ruby-lang
gix has joined #ruby-lang
jonatha__ has joined #ruby-lang
jonathanmarvens has quit [Ping timeout: 260 seconds]
snoopybbt has joined #ruby-lang
bantic has quit [Quit: bantic]
yfeldblum has joined #ruby-lang
yfeldblum has quit [Ping timeout: 260 seconds]
<bnagy> I don't usually do web stuff. I need a jsonrpc client and looked at jimson because it seemed popular on google
<bnagy> if anyone has personal experiences for / against it those would possibly be useful to me :)
woollyams has joined #ruby-lang
knu has joined #ruby-lang
yfeldblum has joined #ruby-lang
yfeldblum has quit [Read error: Connection reset by peer]
charliesome has joined #ruby-lang
cored has quit [Ping timeout: 272 seconds]
knu has quit [Ping timeout: 260 seconds]
bruno- has joined #ruby-lang
Cakey has quit [Ping timeout: 240 seconds]
charliesome has quit [Read error: Connection reset by peer]
charliesome has joined #ruby-lang
charliesome_ has joined #ruby-lang
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #ruby-lang
bruno- has quit [Ping timeout: 260 seconds]
charliesome has quit [Ping timeout: 248 seconds]
jaimef has quit [Ping timeout: 248 seconds]
charliesome_ has quit [Ping timeout: 240 seconds]
shinnya has joined #ruby-lang
snoopybbt has quit [Ping timeout: 245 seconds]
snoopybbt has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
wallerdev has joined #ruby-lang
spuk has joined #ruby-lang
lidaaa has joined #ruby-lang
jaimef has joined #ruby-lang
snoopybbt has quit [Ping timeout: 245 seconds]
DivineEntity has joined #ruby-lang
DivineEntity has quit [Client Quit]
DivineEntity has joined #ruby-lang
hakunin has quit []
CaptainJet has joined #ruby-lang
snoopybbt has joined #ruby-lang
sdouglas has joined #ruby-lang
AncientAmateur has joined #ruby-lang
diegoviola has joined #ruby-lang
djbkd has joined #ruby-lang
shinnya has quit [Ping timeout: 248 seconds]
snoopybbt has quit [Ping timeout: 245 seconds]
mdub has joined #ruby-lang
woollyams has quit [Ping timeout: 272 seconds]
DivineEntity has quit [Quit: Lost terminal]
AncientAmateur has quit [Remote host closed the connection]
jeffs has joined #ruby-lang
charliesome has joined #ruby-lang
snsei has quit [Remote host closed the connection]
snsei has joined #ruby-lang
diegoviola has quit [Ping timeout: 244 seconds]
charliesome has quit [Ping timeout: 240 seconds]
snsei has quit [Ping timeout: 272 seconds]
stardiviner has quit [Ping timeout: 248 seconds]
mistym has quit [Remote host closed the connection]
hakunin has joined #ruby-lang
mdub has quit [Read error: Connection reset by peer]
woollyams has joined #ruby-lang
snsei has joined #ruby-lang
jonatha__ has quit [Remote host closed the connection]
jonathanmarvens has joined #ruby-lang
vintik has quit [Remote host closed the connection]
stardiviner has joined #ruby-lang
jonathanmarvens has quit [Ping timeout: 248 seconds]
drbrain has quit [Ping timeout: 264 seconds]
vintik has joined #ruby-lang
woollyams has quit [Read error: Connection reset by peer]
Cakey has joined #ruby-lang
woollyams has joined #ruby-lang
jeffs has quit [Ping timeout: 252 seconds]
drbrain has joined #ruby-lang
kith has quit [Read error: Connection reset by peer]
Miphix has joined #ruby-lang
mistym has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
vintik has quit [Remote host closed the connection]
bruno- has joined #ruby-lang
alexju has joined #ruby-lang
charliesome has joined #ruby-lang
djbkd has joined #ruby-lang
woollyams has quit [Ping timeout: 272 seconds]
bruno- has quit [Ping timeout: 248 seconds]
knu has joined #ruby-lang
dsaint-pierre has quit [Remote host closed the connection]
Coincidental has joined #ruby-lang
woollyams has joined #ruby-lang
vintik has joined #ruby-lang
Sonja has quit [Ping timeout: 272 seconds]
vintik has quit [Remote host closed the connection]
pixelhandler has joined #ruby-lang
mistym has quit [Remote host closed the connection]
lsegal has quit [Read error: Connection reset by peer]
lsegal has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
snsei has quit [Remote host closed the connection]
mykoweb has joined #ruby-lang
snsei has joined #ruby-lang
heftig has quit [Quit: Quitting]
woollyams has quit [Read error: Connection reset by peer]
mykoweb has quit [Ping timeout: 240 seconds]
woollyams has joined #ruby-lang
_ht has joined #ruby-lang
snsei has quit [Ping timeout: 240 seconds]
VanderH0ff has joined #ruby-lang
CaptainJet has quit []
h0ff has quit [Ping timeout: 264 seconds]
dsaint-pierre has joined #ruby-lang
vintik has joined #ruby-lang
ur5us has quit [Ping timeout: 240 seconds]
knu has quit [Ping timeout: 260 seconds]
fostertheweb has joined #ruby-lang
dsaint-pierre has quit [Ping timeout: 264 seconds]
jonathanmarvens has joined #ruby-lang
matp has quit [Remote host closed the connection]
bruno- has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
yfeldblum has joined #ruby-lang
apeiros has joined #ruby-lang
bruno- has quit [Ping timeout: 240 seconds]
apeiros has quit [Ping timeout: 240 seconds]
mistym has joined #ruby-lang
yfeldblum has quit [Ping timeout: 272 seconds]
chris2 has quit [Ping timeout: 252 seconds]
chris2 has joined #ruby-lang
jxie has quit [Ping timeout: 248 seconds]
jxie has joined #ruby-lang
<yorickpeterse> morning
Cakey has quit [Ping timeout: 255 seconds]
Cakey has joined #ruby-lang
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MikaAK has joined #ruby-lang
Cakey has quit [Ping timeout: 244 seconds]
dsaint-pierre has joined #ruby-lang
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
lidaaa has quit [Ping timeout: 240 seconds]
MikaAK has quit [Quit: node-irc says goodbye]
apeiros has joined #ruby-lang
robbyoconnor has joined #ruby-lang
kwd has joined #ruby-lang
relix has joined #ruby-lang
matp has joined #ruby-lang
relix has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
mistym has joined #ruby-lang
bruno- has joined #ruby-lang
mistym has quit [Ping timeout: 252 seconds]
Lewix has quit [Remote host closed the connection]
greenarrow has joined #ruby-lang
bruno- has quit [Ping timeout: 244 seconds]
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
pixelhandler has quit [Quit: pixelhandler]
yfeldblum has joined #ruby-lang
rahul_j has joined #ruby-lang
yfeldblum has quit [Ping timeout: 244 seconds]
pixelhandler has joined #ruby-lang
pixelhandler has quit [Client Quit]
tbuehlmann has joined #ruby-lang
jeffs has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
charliesome has joined #ruby-lang
rahul_j_ has joined #ruby-lang
jeffs has quit [Ping timeout: 272 seconds]
rahul_j has quit [Ping timeout: 260 seconds]
rahul_j_ is now known as rahul_j
MikaAK1 has joined #ruby-lang
olivier_bK has joined #ruby-lang
olivier_bK has quit [Remote host closed the connection]
olivier_bK1 has joined #ruby-lang
vondruch has joined #ruby-lang
Coincidental has quit [Remote host closed the connection]
DEac- has joined #ruby-lang
DEac-_ has quit [Read error: Connection reset by peer]
alexju has quit [Remote host closed the connection]
AKASkip has joined #ruby-lang
schaerli has joined #ruby-lang
snsei has joined #ruby-lang
rrdpb has joined #ruby-lang
qba73 has joined #ruby-lang
<rrdpb> Hello, i have a problem with ruby-rrd on OpenBSD-5.5
knu has joined #ruby-lang
symm- has quit [Ping timeout: 264 seconds]
<rrdpb> i explain, in 5.4, i have version of ruby-rrd : 1.2.30 and in 5.5, i have version 1.4.8
<rrdpb> and my app crash
schaerli has quit [Client Quit]
<rrdpb> how can i reach rrd old version ?
schaerli has joined #ruby-lang
bruno- has joined #ruby-lang
<maloik> Assuming you use bundler you'd just add the version to it
knu has quit [Ping timeout: 260 seconds]
kohgpat has joined #ruby-lang
rrdpb has quit [Quit: Page closed]
symm- has joined #ruby-lang
bruno- has quit [Ping timeout: 252 seconds]
relix has joined #ruby-lang
vintik has quit [Remote host closed the connection]
sdouglas has quit [Remote host closed the connection]
Blaguvest has quit []
rahul_j_ has joined #ruby-lang
rahul_j has quit [Ping timeout: 255 seconds]
rahul_j_ is now known as rahul_j
charliesome has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
symm- has quit [Ping timeout: 248 seconds]
arBmind1 has quit [Quit: Leaving.]
|jemc| has quit [Quit: WeeChat 0.4.3]
ddv has quit [Changing host]
ddv has joined #ruby-lang
arBmind has joined #ruby-lang
joonty has joined #ruby-lang
stardiviner has quit [Read error: Connection reset by peer]
elia has joined #ruby-lang
kohgpat has quit [Quit: leaving]
mehlah has joined #ruby-lang
arBmind1 has joined #ruby-lang
marr has joined #ruby-lang
arBmind has quit [Ping timeout: 240 seconds]
michd is now known as MichD
kek has joined #ruby-lang
ironhide_604 has joined #ruby-lang
bruno- has joined #ruby-lang
ironhide_604 has quit [Remote host closed the connection]
stamina has joined #ruby-lang
stardiviner has joined #ruby-lang
rahul_j has quit [Ping timeout: 244 seconds]
ironhide_604 has joined #ruby-lang
bruno- has quit [Ping timeout: 260 seconds]
DEac-_ has joined #ruby-lang
DEac- has quit [Read error: Connection reset by peer]
lsegal has quit [Quit: Quit: Quit: Quit: Stack Overflow.]
ironhide_604 has quit [Remote host closed the connection]
rahul_j has joined #ruby-lang
kiddorails has joined #ruby-lang
bruno- has joined #ruby-lang
schaerli has quit [Remote host closed the connection]
kiddorails has quit [Client Quit]
kiddorails has joined #ruby-lang
schaerli has joined #ruby-lang
ironhide_604 has joined #ruby-lang
kiddorails has quit [Remote host closed the connection]
kiddorails has joined #ruby-lang
yfeldblum has joined #ruby-lang
yfeldblum has quit [Ping timeout: 240 seconds]
kiddorails has quit [Remote host closed the connection]
rpag__ has joined #ruby-lang
schaerli has quit [Remote host closed the connection]
kiddorails has joined #ruby-lang
Cakey has joined #ruby-lang
schaerli has joined #ruby-lang
rpag__ has quit [Quit: ohohohoh]
schaerli has quit [Remote host closed the connection]
schaerli has joined #ruby-lang
Cakey has quit [Ping timeout: 240 seconds]
postmodern has quit [Quit: Leaving]
elia has quit [Quit: Computer has gone to sleep.]
ur5us has joined #ruby-lang
elia has joined #ruby-lang
Jan_ is now known as DefV
MikaAK1 has quit [Quit: node-irc says goodbye]
DEac-_ has quit [Read error: Connection reset by peer]
DEac- has joined #ruby-lang
kiddorails has quit [Remote host closed the connection]
workmad3 has joined #ruby-lang
shinnya has joined #ruby-lang
woollyams has quit [Ping timeout: 272 seconds]
knu has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
cnivolle has joined #ruby-lang
arBmind has joined #ruby-lang
mehlah has quit [Quit: Leaving...]
arBmind1 has quit [Ping timeout: 248 seconds]
mehlah has joined #ruby-lang
elia has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
kiddorails has joined #ruby-lang
workmad3 has quit [Quit: Reconnecting]
workmad3 has joined #ruby-lang
Olipro has quit [Ping timeout: 246 seconds]
jonathanmarvens has quit [Remote host closed the connection]
jonathanmarvens has joined #ruby-lang
Lewix has joined #ruby-lang
Burgestrand has joined #ruby-lang
kiddorails has quit [Remote host closed the connection]
jonathanmarvens has quit [Ping timeout: 240 seconds]
Fushi has joined #ruby-lang
kiddorails has joined #ruby-lang
mikecmpbll has joined #ruby-lang
Olipro has joined #ruby-lang
stayarrr has joined #ruby-lang
woollyams has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
andrewhl has joined #ruby-lang
Olipro has quit [Read error: Connection reset by peer]
elia has joined #ruby-lang
certaint1 has quit [Ping timeout: 252 seconds]
Olipro has joined #ruby-lang
certainty has joined #ruby-lang
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
andrewhl has quit [Quit: andrewhl]
gpg_ has joined #ruby-lang
<gpg_> hello i have wathced ryan bates screencast on pry, but when trying to call pry inside method it doesnt work
<gpg_> i want to inspect local variables to a method
<oddmunds> you should be able to do that
<gpg_> how
<gpg_> i put binding.pry before method
<gpg_> then when pry is invoked at runtime
<oddmunds> you should do it in the method, shouldn't you?
<gpg_> i edit method and put binfing.pry inside method
<gpg_> the call method by name
<gpg_> and get error
<oddmunds> have you "require 'pry'"?
<gpg_> yes
<gpg_> of course
<oddmunds> you should try asking about this in #pry
sarkyniin has joined #ruby-lang
Lewix has quit [Remote host closed the connection]
<gpg_> ok will do
pskosinski has quit [Quit: Til rivido Idisti! | http://www.ido.li]
pskosinski has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
kyb3r_ has quit [Read error: Connection reset by peer]
DEac- has quit [Read error: Connection reset by peer]
DEac- has joined #ruby-lang
marr has quit []
marr has joined #ruby-lang
marr has quit [Client Quit]
funnel has quit [Ping timeout: 264 seconds]
yfeldblum has joined #ruby-lang
K3dare has quit [Read error: No route to host]
funnel has joined #ruby-lang
K3dare has joined #ruby-lang
yfeldblum has quit [Ping timeout: 248 seconds]
beawesomeinstead has quit [Quit: Connection closed for inactivity]
vick_ has joined #ruby-lang
bruno-_ has joined #ruby-lang
<vick_> Is there any good Unicode library for Ruby? Normalization, UCA, casefold etc. ('Unicode' gem doesn't seem to have any real collation routines)
bruno- has quit [Ping timeout: 272 seconds]
<vick_> I guess there isn't.
t0ggah has joined #ruby-lang
Miphix has quit [Ping timeout: 240 seconds]
<oddmunds> :/
vick_ has quit [Ping timeout: 246 seconds]
kiddorails has quit [Remote host closed the connection]
kiddorails has joined #ruby-lang
GBrawl has joined #ruby-lang
ur5us has quit [Remote host closed the connection]
sdouglas has joined #ruby-lang
ldnunes has joined #ruby-lang
marr has joined #ruby-lang
bruno-_ has quit [Ping timeout: 248 seconds]
sdouglas has quit [Ping timeout: 240 seconds]
akshay_kumar has joined #ruby-lang
stayarrr has quit [Quit: Leaving...]
rsl has joined #ruby-lang
elia has joined #ruby-lang
stayarrr has joined #ruby-lang
chouhoulis has joined #ruby-lang
chouhoulis has quit [Read error: Connection reset by peer]
chouhoulis has joined #ruby-lang
* yorickpeterse is writing Java again
relix has joined #ruby-lang
<yorickpeterse> HashMap<Foo, Bar> foo; ...; this.foo = new HashMap<Foo, Bar>(); // WET at its finest
* ledestin is taking a Go tour
<yorickpeterse> omg does it have generics?
* yorickpeterse runs
<matti> LOL
<ledestin> quite entertaining
<ledestin> don’t know yet
* matti see Rob Pike's wrath being unleashed upon yorickpeterse
<matti> ledestin: It does not ;p He was just cheeky ;]
<matti> ledestin: People complain that it does not have generics (among other things).
danijoo has quit [Read error: Connection reset by peer]
danijoo_ has joined #ruby-lang
<yorickpeterse> bro it's not an actual language until it has generics
<yorickpeterse> and cryptic compiler errors
kiddorails has quit [Remote host closed the connection]
mconnolly has joined #ruby-lang
<matti> And compiles for 8 h.
diegoviola has joined #ruby-lang
<matti> I hear ya.
<ledestin> :)
<matti> I am just waiting for isrubyrewritteningoyet.com
<matti> ;]
<ledestin> this Go love of capital letters makes my fingers hurt
<matti> ledestin: CamelCase is OK.
<matti> ;D
t0ggah_ has joined #ruby-lang
rolfb has joined #ruby-lang
<apeiros> matti: what did I miss? (Rob Pike)
mconnolly has quit [Quit: mconnolly]
mconnolly has joined #ruby-lang
t0ggah has quit [Ping timeout: 272 seconds]
mconnolly has quit [Client Quit]
mconnolly has joined #ruby-lang
stayarrr has quit [Quit: Leaving...]
rahul_j has quit [Quit: rahul_j]
cored has joined #ruby-lang
kiddorails has joined #ruby-lang
stayarrr has joined #ruby-lang
diegoviola has quit [Ping timeout: 260 seconds]
<maloik> >> 'forgot the name of this thing'
<eval-in> maloik => "forgot the name of this thing" (https://eval.in/168035)
<maloik> eval.in, right
lele|2 has quit [Ping timeout: 252 seconds]
<matti> apeiros: Ah nothing. yorickpeterse making fun of Go ;]
DEac-_ has joined #ruby-lang
DEac- has quit [Read error: Connection reset by peer]
<maloik> Is the source for that bot online somewhere? I'm going to put it into our hipchat bot
<maloik> if eval-in has an api at least
workmad3 has quit [Ping timeout: 248 seconds]
bantic has joined #ruby-lang
<yorickpeterse> maloik: no, charliesome keeps it private
<maloik> oh, ok
<maloik> too bad
<maloik> what's cinch?
<yorickpeterse> Ruby IRC bot/library
<maloik> ah yes, found it
<maloik> it's not cinch but I can definately use that code
bruno- has joined #ruby-lang
Cakey has joined #ruby-lang
t_ has quit [Ping timeout: 252 seconds]
t_ has joined #ruby-lang
bruno- has quit [Ping timeout: 240 seconds]
kiddorails has quit [Remote host closed the connection]
kiddorails has joined #ruby-lang
woollyams has quit [Ping timeout: 272 seconds]
sdouglas has joined #ruby-lang
ironhide_604 has quit [Ping timeout: 240 seconds]
[spoiler] has joined #ruby-lang
ironhide_604 has joined #ruby-lang
sferik has joined #ruby-lang
sdouglas has quit [Ping timeout: 244 seconds]
momomomomo has joined #ruby-lang
diegoviola has joined #ruby-lang
momomomomo has quit [Remote host closed the connection]
<whitequark> matti: the speed of compilation in Go is merely an implementation choice... say, gccgo would be comparable to C
<yorickpeterse> java.util.concurrent.ConcurrentHashMap
<yorickpeterse> blegh
<yorickpeterse> private static ConcurrentHashMap<Foo,Bar> = new ConcurrentHashMap<Foo,Bar>(); // GENERICS, OMG
woollyams has joined #ruby-lang
<yorickpeterse> I miss Ruby
<yorickpeterse> hash = {} # boom done
lele|w has joined #ruby-lang
milo__ has joined #ruby-lang
<yorickpeterse> though it's not thread-safe
<lele|w> join #intercom
<milo__> Hi, i get this error : "/usr/local/lib/ruby/site_ruby/1.8/i386-openbsd/RRD.so: Cannot load specified object" ; with rrdtool-1.4.8 ; any idea ?
mikecmpbll has quit [Remote host closed the connection]
DEac-_ has quit [Read error: Connection reset by peer]
mikecmpbll has joined #ruby-lang
diegoviola has quit [Ping timeout: 255 seconds]
jeffs has joined #ruby-lang
cored has quit [Ping timeout: 248 seconds]
sferik has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
t0ggah_ has quit [Remote host closed the connection]
woollyams has quit [Ping timeout: 272 seconds]
qba73 has quit [Remote host closed the connection]
Cakey has quit [Ping timeout: 240 seconds]
DEac- has joined #ruby-lang
qba73 has joined #ruby-lang
akshay_kumar has quit [Ping timeout: 240 seconds]
bruno- has joined #ruby-lang
Cakey has joined #ruby-lang
sferik has joined #ruby-lang
machuga has joined #ruby-lang
diegoviola has joined #ruby-lang
sferik has quit [Client Quit]
t0ggah_ has joined #ruby-lang
stayarrr has quit [Quit: Leaving...]
rezident_ninja has joined #ruby-lang
<rezident_ninja> howdy :)
<rezident_ninja> anyone feeling gracious for a method arguments question?
<whitequark> yorickpeterse: yeah, done, and then you pull NoMethodErrors: undefined method blah for nil:NilClass for the rest of your life
<whitequark> milo__: try doing $ file /usr/local/lib/ruby/site_ruby/1.8/i386-openbsd/RRD.so and comparing it to other shared objects on your system
<yorickpeterse> whitequark: that has nothing to do with Hash
<yorickpeterse> whitequark: and everything with NilClass
<whitequark> yorickpeterse: it has everything to do with lack of type system...
<yorickpeterse> ... no
<yorickpeterse> It has to do with there being a null/nil type
<yorickpeterse> A type system doesn't save you from nullpointers/nil values/etc
<yorickpeterse> See: C, Java, etc
<whitequark> it does
<whitequark> if it's a good one. see: any ML-like one
<whitequark> rust, ocaml, haxe, etc, etc
<yorickpeterse> "type system" != "good type system"
<whitequark> thank you, capn obvious
<yorickpeterse> You started it :>
<rezident_ninja> whitequark wouldn't "good type systems" just imply null-behavior objects instead of null pointers?
yfeldblum has joined #ruby-lang
<whitequark> rezident_ninja: it would imply non-nullable references, in the first place
<whitequark> (because there's no reason for them to be nullable. the very guy who invented them deeply regrets the fact)
milo__ has quit [Ping timeout: 246 seconds]
<rezident_ninja> sure. prehaps I didn't phrase that well. this implies to me that you cannot declare a variable without assigning a value to it.
machuga has left #ruby-lang ["Textual IRC Client: www.textualapp.com"]
<whitequark> yeah
<whitequark> no reason to do that as well
<rezident_ninja> ?
diegoviola has quit [Ping timeout: 264 seconds]
<whitequark> there is no need to have such an entity as "declared but unassigned variable" in the language semantics
<rezident_ninja> true
<rezident_ninja> I think I'm too tired to have jumped into that convo :)
mconnolly has quit [Quit: mconnolly]
<rezident_ninja> unrelatedly, anyone know how I can define a method that takes arguments and a block/lambda/proc, and pass the arguments to the proc/block/lambda?
<rezident_ninja> can't find any good examples
yfeldblum has quit [Ping timeout: 240 seconds]
<whitequark> def f(*args, &block) block.(*args) end
dsaint-pierre has quit [Read error: Connection reset by peer]
dsaint-pierre has joined #ruby-lang
ta has quit [Ping timeout: 248 seconds]
<whitequark> or even def f(*args) yield(*args) end
<rezident_ninja> I feel like I tried that. lemme try again
mconnolly has joined #ruby-lang
Guest55034 has quit [Ping timeout: 255 seconds]
ta has joined #ruby-lang
<rezident_ninja> and if I want the block to take another arg, I could do block(other_arg, *args) ?
<whitequark> block.(, but yes
dsaint-pierre has quit [Read error: Connection reset by peer]
<rezident_ninja> sorry, I didn't parse that.
<whitequark> block.(other_arg, *args)
<whitequark> .( is shorthand for .call(
<rezident_ninja> ah
<rezident_ninja> well, I'm doing that, it complains about a syntax error
dsaint-pierre has joined #ruby-lang
<rezident_ninja> expected ) instead of ,
<rezident_ninja> (that being block.call(other_arg, *args))
<whitequark> ruby version?
<rezident_ninja> 1.9.3. but I can run 2.0.0
Caius has joined #ruby-lang
<whitequark> 1.9.3 is fine
workmad3 has joined #ruby-lang
kiddorails has quit [Remote host closed the connection]
<whitequark> 19>> block = method(:p); block.(1, *[2,3,4])
<eval-in> whitequark => 1 ... (https://eval.in/168045)
<rezident_ninja> strangely that loads ok in 2.0.0
<whitequark> well it works in 1.9.3 as well, see above
kiddorails has joined #ruby-lang
<rezident_ninja> this was borking for me in 1.9.3: https://gist.github.com/anonymous/34686153d4f5a9eb35f3
kiddorails has quit [Remote host closed the connection]
<rezident_ninja> probably should have put the zlib require in that, sorry
<rezident_ninja> oh, what hte hell. I must have typo'ed/mis-copied something you wrote. it's working in 1.9.3 now. sorry for the trouble.
kiddorails has joined #ruby-lang
<rezident_ninja> whitequark, thanks :)
kiddorails has quit [Remote host closed the connection]
kiddorails has joined #ruby-lang
qba73 has quit []
qba73 has joined #ruby-lang
bantic has quit [Quit: bantic]
diegoviola has joined #ruby-lang
alexju has joined #ruby-lang
ecnalyr has joined #ruby-lang
luiz_lha has joined #ruby-lang
malconis has joined #ruby-lang
sferik has joined #ruby-lang
luiz_lha has quit [Max SendQ exceeded]
cored has joined #ruby-lang
cored has quit [Changing host]
cored has joined #ruby-lang
t0ggah_ has quit [Remote host closed the connection]
sferik has quit [Read error: Connection reset by peer]
sferik has joined #ruby-lang
diegoviola has quit [Quit: WeeChat 0.4.3]
sferik has quit [Read error: Connection reset by peer]
sferik has joined #ruby-lang
t0ggah has joined #ruby-lang
t0ggah has quit [Remote host closed the connection]
t0ggah has joined #ruby-lang
ppinto has joined #ruby-lang
sferik has quit [Read error: Connection reset by peer]
sferik has joined #ruby-lang
nathanstitt has joined #ruby-lang
centrx has joined #ruby-lang
sferik has quit [Read error: Connection reset by peer]
skade has joined #ruby-lang
sferik has joined #ruby-lang
sferik has quit [Remote host closed the connection]
sferik has joined #ruby-lang
t0ggah has quit [Remote host closed the connection]
centrx has quit [Quit: Mission accomplished. Ready for self-termination.]
t0ggah has joined #ruby-lang
sferik has quit [Client Quit]
luiz_lha has joined #ruby-lang
dsaint-pierre has quit [Read error: Connection reset by peer]
dsaint-pierre has joined #ruby-lang
sferik has joined #ruby-lang
centrx has joined #ruby-lang
AncientAmateur has joined #ruby-lang
sferik has quit [Read error: Connection reset by peer]
sferik has joined #ruby-lang
sferik has quit [Client Quit]
jgpawletko has joined #ruby-lang
luiz_lha has quit [Max SendQ exceeded]
luiz_lha has joined #ruby-lang
luiz_lha has quit [Remote host closed the connection]
momomomomo has joined #ruby-lang
t0ggah has quit []
yfeldblum has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
<yorickpeterse> GUYS I HAVE A GREAT IDEA
<yorickpeterse> LETS WRITE JAVA
<yorickpeterse> AND USE FACTORIES
<yorickpeterse> ON CLASS LEVEL
<yorickpeterse> Who needs threading anyway
<yorickpeterse> grrrr Java
<yorickpeterse> %s/static //g # lets see if this works
yfeldblu_ has joined #ruby-lang
<apeiros> RantFactory.create(PeopleFactory.create(YORICK_PETERSE)).randomRantsIterator
jhass|off is now known as jhass
<yorickpeterse> get off my lawn
<yorickpeterse> Bah, I'm not even going to bother refactoring this
<yorickpeterse> I'll just steal the training data/models and re-do it in Ruby at some point
yfeldbl__ has joined #ruby-lang
yfeldblum has quit [Read error: Connection reset by peer]
<DefV> yorickpeterse: that's what most people say 3 months before they are sent to the asylum
loincloth has joined #ruby-lang
<yorickpeterse> Joke's on you, I'm already in one
pskosinski has quit [Remote host closed the connection]
<DefV> Yes. Joke's on me...
pskosinski has joined #ruby-lang
yfeldblu_ has quit [Ping timeout: 264 seconds]
<centrx> Good joke
yfeldbl__ has quit [Ping timeout: 244 seconds]
<yorickpeterse> I was a comedian in my previous life
<apeiros> installing oracle instant client
<apeiros> always such a joy
<yorickpeterse> feels ya pain
* apeiros ❤️ working with oracle software
<apeiros> it's such a premium experience
<centrx> Oracle is a virus
<apeiros> I can feel how they had the comfort and joy of the users at the very core of their hearts when creating this
<maloik> :D
<yorickpeterse> apeiros: banks are users too
<apeiros> excuse me while I go vomit
<yorickpeterse> at least in Oracle's case
diegoviola has joined #ruby-lang
elia has joined #ruby-lang
monkey171 has joined #ruby-lang
<monkey171> hello?
<centrx> !hi
pixelhandler has joined #ruby-lang
<monkey171> can someone help me?
<monkey171> i am a beginner
<centrx> Ask and you shall receive
<monkey171> puts 'Nonna sorda:' frase = '' while frase != 'CIAO' frase = gets.chomp while frase != frase.upcase puts 'NON SENTO' frase = gets.chomp if frase == frase.upcase puts 'NO, NO NEL ' + (rand(21)+1930).to_s + '!' end end end puts 'CIAO BEDDO!'
<centrx> monkey171, Use gist.github.com
dwknoxy has joined #ruby-lang
<monkey171> thanks
<maloik> you haven't asked yet
<monkey171> yes i do mate :(
<maloik> wat
<monkey171> it reapeats only one time
<monkey171> "NO IT WAS .."
<monkey171> and if u continue with caps
<monkey171> it does not respond
<monkey171> answer*
<ledestin> monkey171: you’re using 2 loops, use 1
<monkey171> this is my first "program"
<monkey171> howdo i do?
mjc__ is now known as mjc_
yfeldblum has joined #ruby-lang
<ledestin> monkey171: use `next'
bantic has joined #ruby-lang
<ledestin> monkey171: I could rewrite it for you, but I think it’ll be better if you do it yourself
sferik has joined #ruby-lang
GBrawl has quit [Quit: Computer has gone to sleep.]
rolfb has quit [Quit: Linkinus - http://linkinus.com]
kiddorails has quit [Remote host closed the connection]
kgrz has joined #ruby-lang
<monkey171> thank you :D
<jhass> monkey171: are you sure that's your program? because it's invalid
yfeldblum has quit [Remote host closed the connection]
<jhass> puts 'CAN'T HEAR' doesn't work
<jhass> (mismatched quoting)
yfeldblum has joined #ruby-lang
<monkey171> i translated it from italian it was not an error, you know
sarkyniin has quit [Quit: Quitte]
diegoviola has quit [Ping timeout: 240 seconds]
sferik has quit [Remote host closed the connection]
<monkey171> this was an exercise from a tutorial
<monkey171> i just know basics and if/else/while
shinnya has quit [Ping timeout: 244 seconds]
<jhass> puts 'NO, NO NEL ' + (rand(21)+1930).to_s + '!' # don't write this, write this instead: puts "NO, NO NEL #{rand(21)+1930}!"
<apeiros> with a modern ruby, rand(1930..1950)
<apeiros> less people who make an off-by-one mistake with that :)
sferik has joined #ruby-lang
<monkey171> thanks mates :D
<jhass> monkey171: it also helps to properly indent
CaptainJet has joined #ruby-lang
<monkey171> i got also a question, ruby can communicate with other programs (like cheats for pinball or something basical)?
havenwood has joined #ruby-lang
<jhass> that mostly depends on the interface other programs provide
<ericwood> monkey171: that's up to the other program!
<ericwood> IPC isn't really standard at all
<jhass> but in theory you can communicate with any interface another program may provide
<ericwood> are you trying to send another program by sending it keystrokes, etc.?
kiddorails has joined #ruby-lang
sferik has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sdouglas has joined #ruby-lang
cored_ has joined #ruby-lang
<monkey171> I think yes i have no idea about how this works but i just was dreaming about something funny i can do when i 'll learn it
valerienc has joined #ruby-lang
cored has quit [Ping timeout: 255 seconds]
<ericwood> monkey171: I'd start with something else but hey, reach for the stars
mistym has joined #ruby-lang
<monkey171> https://pine.fm/LearnToProgram/ i am following this
<monkey171> sounds like it is a good way to start with, isn't it?
cored_ has quit [Ping timeout: 240 seconds]
sdouglas has quit [Ping timeout: 260 seconds]
sferik has joined #ruby-lang
cored has joined #ruby-lang
cored has joined #ruby-lang
cored has quit [Changing host]
AKASkip has quit [Ping timeout: 240 seconds]
amigo99 has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
havenwood has joined #ruby-lang
<jhass> seems to have a good reputation
<jhass> saw people recommending it
mistym has quit [Remote host closed the connection]
<monkey171> yes, i know but i m locked to flows so :(
<monkey171> and i can't understand 'next' idk
sferik_ has joined #ruby-lang
<jhass> If I got your intention right you don't need next to solve it
sferik__ has joined #ruby-lang
<jhass> next is simple though, it just jumps back to the top of your current loop (evaluating the condition first)
pixelhandler has quit [Quit: pixelhandler]
pskosinski has quit [Ping timeout: 264 seconds]
sferik__ has quit [Read error: Connection reset by peer]
swills has quit [Ping timeout: 252 seconds]
sferik has quit [Ping timeout: 252 seconds]
skade has quit [Read error: Connection reset by peer]
<jhass> monkey171: as I said, 1) fix up your indentation 2) you don't need it to solve the problem if I read the intention correctly
skade has joined #ruby-lang
sferik_ has quit [Ping timeout: 252 seconds]
valerienc has quit [Quit: valerienc]
sferik has joined #ruby-lang
jgpawletko is now known as jgpawletko_away
snsei has quit [Remote host closed the connection]
snsei has joined #ruby-lang
kiddorails has quit [Remote host closed the connection]
<monkey171> fixed it, thank you! ^^
swills has joined #ruby-lang
<jhass> monkey171: great. Here's how I'd write it: http://paste.mrzyx.de/pdeea3e18/
symm- has joined #ruby-lang
apeiros has quit [Remote host closed the connection]
kwd has quit [Quit: kwd]
swills has quit [Changing host]
swills has joined #ruby-lang
apeiros has joined #ruby-lang
kiddorails has joined #ruby-lang
<monkey171> Here is how i did it.. seem rough ahah http://paste.mrzyx.de/pee8e8be0/
<jhass> you still didn't fix your indentation :(
<monkey171> i did it man
<monkey171> it is working
snsei has quit [Ping timeout: 240 seconds]
<jhass> no
DEac-_ has joined #ruby-lang
<jhass> http://paste.mrzyx.de/p16d8cfbd/ would be correct indentation
pskosinski has joined #ruby-lang
<monkey171> yea but, is it importnat?
apeiros has quit [Ping timeout: 244 seconds]
<jhass> yes, very
<monkey171> oh wow didn't know it
<jhass> not for ruby, but for you and other people reading your code
<monkey171> thank you for info next time i ll be more orderly
DEac- has quit [Ping timeout: 248 seconds]
mistym has joined #ruby-lang
bantic has quit [Quit: bantic]
<monkey171> cya bye, and thank you!
centrx has quit [Quit: Mission accomplished. Ready for self-termination.]
|jemc| has joined #ruby-lang
kaiserpathos has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
monkey171 has quit [Ping timeout: 246 seconds]
yfeldblum has quit [Ping timeout: 240 seconds]
kek has quit [Remote host closed the connection]
enebo has joined #ruby-lang
ecnalyr has quit [Ping timeout: 244 seconds]
jonathanmarvens has joined #ruby-lang
jonathanmarvens has quit [Remote host closed the connection]
GBrawl has joined #ruby-lang
arBmind has quit [Quit: Leaving.]
sferik has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Burgestrand has quit [Quit: Burgestrand]
rippa has joined #ruby-lang
CaptainJet has quit []
sferik has joined #ruby-lang
ur5us has joined #ruby-lang
kiddorails has quit [Remote host closed the connection]
ur5us has quit [Ping timeout: 248 seconds]
Burgestrand has joined #ruby-lang
Burgestrand has quit [Client Quit]
apeiros has joined #ruby-lang
jonathanmarvens has joined #ruby-lang
jonathanmarvens has quit [Remote host closed the connection]
ironhide_604 has quit [Read error: Connection reset by peer]
ayonkhan has joined #ruby-lang
mykoweb has joined #ruby-lang
amigo99 has quit [Quit: This computer has gone to sleep]
MikaAK1 has joined #ruby-lang
schaerli has quit [Remote host closed the connection]
replay has joined #ruby-lang
greenarrow has quit [Quit: 500]
rezident_ninja has quit [Quit: Leaving]
jperry has quit [Quit: jperry]
sunaku has joined #ruby-lang
DEac-_ has quit [Read error: Connection reset by peer]
valerienc has joined #ruby-lang
DEac- has joined #ruby-lang
jonathanmarvens has joined #ruby-lang
cnivolle has quit [Remote host closed the connection]
stardiviner has quit [Ping timeout: 255 seconds]
jonathanmarvens has quit [Remote host closed the connection]
jonathanmarvens has joined #ruby-lang
qba73 has quit [Remote host closed the connection]
jonathanmarvens has quit [Remote host closed the connection]
mistym has quit [Remote host closed the connection]
sferik has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mehlah has quit [Quit: Leaving...]
AncientAmateur has quit [Remote host closed the connection]
jonathanmarvens has joined #ruby-lang
qba73 has joined #ruby-lang
qba73 has quit [Remote host closed the connection]
jonathanmarvens has quit [Remote host closed the connection]
sferik has joined #ruby-lang
sferik has quit [Client Quit]
jonathanmarvens has joined #ruby-lang
AncientAmateur has joined #ruby-lang
jonathanmarvens has quit [Remote host closed the connection]
sdouglas has joined #ruby-lang
AncientAmateur has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
__butch__ has joined #ruby-lang
djbkd has joined #ruby-lang
skade has joined #ruby-lang
mehlah has joined #ruby-lang
dik_dak has joined #ruby-lang
elia has quit [Quit: Computer has gone to sleep.]
Mon_Ouie has joined #ruby-lang
elia has joined #ruby-lang
ayonkhan has quit [Quit: Lingo - http://www.lingoirc.com]
vintik has joined #ruby-lang
mikecmpbll has quit [Quit: i've nodded off.]
saarinen has joined #ruby-lang
CodeBunny has joined #ruby-lang
dwknoxy has quit [Ping timeout: 272 seconds]
CodeBunny has quit [Quit: CodeBunny needs a carrot. Be back later.]
wallerdev has quit [Quit: wallerdev]
DEac- has quit [Read error: Connection reset by peer]
DEac- has joined #ruby-lang
CodeBunny has joined #ruby-lang
miqui has quit [Read error: Connection reset by peer]
qba73 has joined #ruby-lang
skade has quit [Quit: Computer has gone to sleep.]
djbkd has quit [Remote host closed the connection]
elia has quit [Quit: Computer has gone to sleep.]
replay has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
djbkd has joined #ruby-lang
qba73 has quit [Ping timeout: 248 seconds]
valerienc has quit [Quit: valerienc]
Sonja has joined #ruby-lang
mistym has joined #ruby-lang
replay has joined #ruby-lang
agarie has joined #ruby-lang
wallerdev has joined #ruby-lang
agarie has quit [Client Quit]
agarie has joined #ruby-lang
relix has joined #ruby-lang
schaerli has joined #ruby-lang
schaerli has quit [Remote host closed the connection]
duderonomy has joined #ruby-lang
sdouglas_ has joined #ruby-lang
sferik has joined #ruby-lang
AncientAmateur has joined #ruby-lang
sdouglas has quit [Ping timeout: 244 seconds]
<whitequark> I'm now convinced that whoever maintains 2.0 and 2.1 branches is incompetent
<whitequark> #9308 was backported, and as a result different patchlevels of 2.0.0 accept different syntax.
<whitequark> and #9726, which is almost exactly same thing, was *not* backported
kith has joined #ruby-lang
x0f has quit [Ping timeout: 244 seconds]
<darix> whitequark: did you bring it up on ruby-core already?
<whitequark> darix: too late
<darix> well it still needs to be fixed no?
<whitequark> it's already released
<whitequark> you can't unrelease a version
<whitequark> though this would in my view be appropriate
<darix> well
<darix> bring it up anyway
<darix> maybe they release a new version with the reverted change
x0f has joined #ruby-lang
<whitequark> that would just make the matter worse
<whitequark> besides, it wasn't an accident
<darix> in any case... ruby-core is the better place to argue this than #ruby-lang imho
<whitequark> I'm not arguing, I'm complaining that the maintainers can't do their job.
<whitequark> for all I know about ruby-core, arguing would be useless.
<darix> *sigh*
DEac-_ has joined #ruby-lang
DEac- has quit [Read error: Connection reset by peer]
<matti> It's hopeless then.
<whitequark> oh, #9726 was backported too, just not released yet. and #9308 is in 1.9.3, but #9728 is not in 1.9.3
<whitequark> (╯°□°)╯︵ ┻━┻
<sunaku> perhaps they're still getting used to semantic versioning
miqui has joined #ruby-lang
skade has joined #ruby-lang
<whitequark> it doesn't matter if it's semantic or not. you don't change accepted syntax between patchlevels
amigo99 has joined #ruby-lang
__butch__ has quit [Quit: Leaving.]
duderonomy has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<pipework> It might be semantic, just not semver. It'd definitely be super confusing.
DEac-_ has quit [Read error: Connection reset by peer]
skade_ has joined #ruby-lang
DEac- has joined #ruby-lang
skade has quit [Ping timeout: 260 seconds]
diegoviola has joined #ruby-lang
danijoo has joined #ruby-lang
<sunaku> if they're not told about this, it'll only repeat in the future
danijoo_ has quit [Read error: Connection reset by peer]
__butch__ has joined #ruby-lang
workmad3 has quit [Ping timeout: 248 seconds]
vintik has quit [Remote host closed the connection]
<yorickpeterse> sunaku: there's no semantic versioning in Ruby's versioning scheme
<yorickpeterse> It's pretty much the same crap as before minus the patchlevels
pixelhandler has joined #ruby-lang
<yorickpeterse> 2.X -> 3.X: happens once every 10 years
<yorickpeterse> 2.X -> 2.Y: shit will break
<yorickpeterse> 2.X.Y -> 2.X.Z: shit *might* break
<whitequark> fuck it.
<whitequark> oh lol the backport doesn't even work properly
<whitequark> because it relies on another backport which is not there and probably won't be
symm- has quit [Ping timeout: 244 seconds]
<yxhuvud> sounds like it is time to file a less than happy bug about it?
<whitequark> I simply no longer use ruby for new stuff anymore. but I still have to maintain parser
pglombardo has joined #ruby-lang
<amigo99> given a patch version (2.0.0-p481), is there a way to find out which ruby svn/git commit it points to?
amsi has joined #ruby-lang
<yxhuvud> there is a changelog. I believe it has the refs for that
<whitequark> there's tags, like v2_0_0_481
<whitequark> and git commits refer to svn commits
<amigo99> ah, the tags is helpful
pglombardo has quit [Client Quit]
sepp2k has joined #ruby-lang
sdouglas_ has quit [Remote host closed the connection]
postmodern has joined #ruby-lang
jaimef has quit [Excess Flood]
jaimef has joined #ruby-lang
ascarter has quit [Quit: Textual IRC Client: www.textualapp.com]
mistym has quit [Ping timeout: 244 seconds]
mistym has joined #ruby-lang
Blaguvest has joined #ruby-lang
ascarter has joined #ruby-lang
loincloth has quit [Remote host closed the connection]
Lumio has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
mykoweb has joined #ruby-lang
mykoweb has quit [Read error: Connection reset by peer]
olivier_bK1 has quit [Ping timeout: 272 seconds]
mykoweb has joined #ruby-lang
ecnalyr has joined #ruby-lang
havenwood has quit [Remote host closed the connection]
MikaAK1 has quit [Ping timeout: 240 seconds]
tbuehlmann has quit [Quit: Leaving]
centrx has joined #ruby-lang
davispuh has joined #ruby-lang
ecnalyr has quit [Ping timeout: 244 seconds]
mistym has quit [Ping timeout: 248 seconds]
havenwood has joined #ruby-lang
schaerli has joined #ruby-lang
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
DEac- has quit [Read error: Connection reset by peer]
DEac- has joined #ruby-lang
olivier_bK1 has joined #ruby-lang
dm78 has joined #ruby-lang
jaimef has quit [Excess Flood]
davispuh has quit [Read error: Connection reset by peer]
jaimef has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
workmad3 has joined #ruby-lang
cored_ has joined #ruby-lang
cored has quit [Ping timeout: 255 seconds]
kgrz has quit [Remote host closed the connection]
Lumio has quit [Quit: Lumio]
djbkd has joined #ruby-lang
kgrz has joined #ruby-lang
wallerdev has quit [Read error: Connection reset by peer]
wallerdev has joined #ruby-lang
kgrz has quit [Ping timeout: 244 seconds]
havenwood has quit [Ping timeout: 264 seconds]
cddr has joined #ruby-lang
havenwood has joined #ruby-lang
<cddr> Does anyone who uses tmm1/stackprof know what a high 'miss rate' signifies? https://github.com/tmm1/stackprof/issues/27
pr0ton_ has joined #ruby-lang
agarie has quit [Read error: Connection reset by peer]
agarie has joined #ruby-lang
wallerdev has quit [Ping timeout: 252 seconds]
loincloth has joined #ruby-lang
olivier_bK1 has quit [Ping timeout: 252 seconds]
heftig has joined #ruby-lang
skade_ has quit [Quit: Textual IRC Client: www.textualapp.com]
pr0ton_ has quit [Quit: pr0ton_]
jeffs has quit [Read error: No route to host]
jeffs has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
mykoweb has joined #ruby-lang
malconis has quit [Ping timeout: 244 seconds]
<centrx> cddr, It is probably referring to some kind of cache miss rate
mykoweb has quit [Ping timeout: 255 seconds]
olivier_bK1 has joined #ruby-lang
acalewin has quit [Quit: ZNC - http://znc.in]
malconis has joined #ruby-lang
Fushi has quit [Quit: Connection closed for inactivity]
acalewin has joined #ruby-lang
mykoweb has joined #ruby-lang
tbuehlmann has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
mykoweb has joined #ruby-lang
sunaku has quit [Quit: WeeChat 0.4.3]
<amigo99> it looks like samples are not recorded all the time, looks like sort of locking here, only sampling one at a time - https://github.com/tmm1/stackprof/blob/1c0b5bb2a8c8a04718a7d7de7f3f211671bc6741/ext/stackprof.c#L415
<cddr> Thanks centrx, I figured it out by looking at the source
<amigo99> cddr: so what was the prob?
<amigo99> i mean what does it mean?
<cddr> I think it just means there's lots of GC going on
<cddr> I'm going to try running with the allocation profiler to see if that shows some unecessary GC
Lumio has joined #ruby-lang
<cddr> To be clear, I don't think it's a problem with stackprof, just a property of our code
mykoweb has quit [Ping timeout: 240 seconds]
<amigo99> the code says, overall_samples is incremented even when in gc
<amigo99> if (rb_during_gc()) _stackprof.during_gc++, _stackprof.overall_samples++;
<amigo99> it doesnt get incremented when this condition is true though - https://github.com/tmm1/stackprof/blob/1c0b5bb2a8c8a04718a7d7de7f3f211671bc6741/ext/stackprof.c#L418
Lumio has quit [Client Quit]
danijoo has quit [Quit: Leaving...]
<dostoyevsky> Any ideas why File.read() supports "| command"/pipes and File.open() does not?
<whitequark> File.read does?
<whitequark> wow, that sounds horrible
Lumio has joined #ruby-lang
<cddr> missed_rate = 100*missed_samples/missed_samples+samples
<cddr> overall_samples is only incremented during gc
<cddr> overall_signals is incremented for every signal
<cddr> missed_samples = overall_signals - overall_samples
<cddr> maybe I had it the wrong way around
amsi has quit [Ping timeout: 240 seconds]
<Mon_Ouie> It definitely doesn't
<Mon_Ouie> Errno::ENOENT: No such file or directory @ rb_sysopen - test | cat
replay has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bantic has joined #ruby-lang
<whitequark> nono
<whitequark> > File.read("| echo foo")
<whitequark> => "foo\n"
<Mon_Ouie> Oh, wow
<whitequark> it's an obscure syntax stemming from sendmail or something
<yorickpeterse> wtf
<dostoyevsky> whitequark: It's in the documentation of IO. right on top
<Mon_Ouie> Nice way to run arbitrary code on a machine running a ruby program
<dostoyevsky> * A plain string represents a filename suitable for the underlying operating system.
<dostoyevsky> * A string starting with "|" indicates a subprocess. The remainder of the string following the "|" is invoked as a process with appropriate input/output channels connected to it.
<ohsix> perl :>
replay has joined #ruby-lang
<ohsix> actually might be tcl
<ohsix> there are quite a few things that work the same way
<whitequark> yes, hence my wondering where it originated
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
sferik has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<yorickpeterse> I wonder if drugs were involved
danijoo has joined #ruby-lang
<ohsix> hrm perl and tcl have a similar age
chouhoul_ has joined #ruby-lang
<ohsix> would be work to find out
kgrz has joined #ruby-lang
chouhoulis has quit [Ping timeout: 255 seconds]
luiz_lha has joined #ruby-lang
kgrz has quit [Ping timeout: 240 seconds]
sferik has joined #ruby-lang
lidaaa has joined #ruby-lang
sferik has quit [Read error: Connection reset by peer]
sferik has joined #ruby-lang
tbuehlmann has quit [Remote host closed the connection]
jaimef has quit [Excess Flood]
adphillips has joined #ruby-lang
jaimef has joined #ruby-lang
chouhoul_ has quit [Ping timeout: 248 seconds]
[spoiler] has quit [Quit: Leaving]
lidaaa has quit [Ping timeout: 240 seconds]
schaerli has quit [Remote host closed the connection]
chouhoulis has joined #ruby-lang
diegoviola has quit [Ping timeout: 272 seconds]
diegoviola has joined #ruby-lang
sharpmachine has joined #ruby-lang
sharpmachine has quit [Client Quit]
sharpmachine has joined #ruby-lang
centrx has quit [Quit: Mission accomplished. Ready for self-termination.]
Hightower has joined #ruby-lang
<Hightower> o/
<Hightower> I'm currently learning ruby
<Hightower> Getting a bit worried of the "Ruby is dead" posts I keep seeing
<Hightower> Hoping someone here can tell me it's very much alive
adphillips has quit []
<Mon_Ouie> >> puts "Still alive!"
<eval-in> Mon_Ouie => Still alive! ... (https://eval.in/168191)
<Mon_Ouie> Looks like it still works
_ht has quit [Remote host closed the connection]
replay has quit [Ping timeout: 248 seconds]
jonathanmarvens has joined #ruby-lang
centrx has joined #ruby-lang
mistym has joined #ruby-lang
kyb3r_ has joined #ruby-lang
Hightower has quit [Quit: Me fail English? That's unpossible.]
amsi has joined #ruby-lang
lidaaa has joined #ruby-lang
<yorickpeterse> hm, already left
<yorickpeterse> I was going to link them to http://careers.stackoverflow.com/jobs/tag/ruby
djbkd has quit [Remote host closed the connection]
<yorickpeterse> which should say at least a bit on its own
djbkd has joined #ruby-lang
mykoweb has joined #ruby-lang
sunaku has joined #ruby-lang
chouhoulis has quit [Remote host closed the connection]
touzin has joined #ruby-lang
chouhoulis has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
touzin has left #ruby-lang [#ruby-lang]
kaiserpa_ has joined #ruby-lang
kaiserpathos has quit [Ping timeout: 252 seconds]
wallerdev has joined #ruby-lang
mconnolly has quit [Ping timeout: 240 seconds]
djbkd has joined #ruby-lang
danijoo has quit [Read error: Connection reset by peer]
danijoo has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
touzin has joined #ruby-lang
MikaAK has joined #ruby-lang
MikaAK has quit [Client Quit]
amigo99 has quit [Quit: This computer has gone to sleep]
kaiserpathos has joined #ruby-lang
MikaAK1 has joined #ruby-lang
kaiserpa_ has quit [Ping timeout: 244 seconds]
MikaAK1 has quit [Client Quit]
MikaAK has joined #ruby-lang
Caius has quit [Ping timeout: 255 seconds]
Caius has joined #ruby-lang
ascarter has joined #ruby-lang
sferik has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
djbkd has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
ur5us has joined #ruby-lang
djbkd has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
t0ggah has joined #ruby-lang
replay has joined #ruby-lang
jaimef has quit [Excess Flood]
jaimef has joined #ruby-lang
djbkd has joined #ruby-lang
ldnunes has quit [Quit: Leaving]
GBrawl has quit [Quit: Computer has gone to sleep.]
ppinto has quit [Quit: ppinto]
alexju has quit [Remote host closed the connection]
elia has joined #ruby-lang
valeri_uF0 has joined #ruby-lang
apeiros_ has joined #ruby-lang
t0ggah_ has joined #ruby-lang
sharpmac_ has joined #ruby-lang
ryotarai_ has joined #ruby-lang
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
KM has joined #ruby-lang
KM is now known as Guest80708
Muz_ has joined #ruby-lang
kramsee_ has joined #ruby-lang
lucas has joined #ruby-lang
cout_ has joined #ruby-lang
saltsa_ has joined #ruby-lang
jtoy_ has joined #ruby-lang
_dabradley has joined #ruby-lang
gianluca- has joined #ruby-lang
erichmenge_ has joined #ruby-lang
wallerdev_ has joined #ruby-lang
erichmenge has quit [Ping timeout: 240 seconds]
ryotarai has quit [Ping timeout: 240 seconds]
sonne has quit [Ping timeout: 240 seconds]
ryotarai_ is now known as ryotarai
erichmenge_ is now known as erichmenge
agarie has quit [Ping timeout: 240 seconds]
Muz has quit [Ping timeout: 240 seconds]
GBrawl_ has joined #ruby-lang
GBrawl_ has quit [Client Quit]
cout has quit [Ping timeout: 240 seconds]
saltsa has quit [Ping timeout: 240 seconds]
kramsee has quit [Ping timeout: 240 seconds]
t0ggah has quit [Ping timeout: 240 seconds]
sharpmachine has quit [Ping timeout: 240 seconds]
apeiros has quit [Ping timeout: 240 seconds]
yxhuvud has quit [Ping timeout: 240 seconds]
gianlucadv has quit [Ping timeout: 240 seconds]
jtoy has quit [Ping timeout: 240 seconds]
lucas_ has quit [Ping timeout: 240 seconds]
valeri_ufo has quit [Ping timeout: 240 seconds]
valeri_uF0 is now known as valeri_ufo
stamina has quit [Ping timeout: 240 seconds]
Guest72404 has quit [Ping timeout: 240 seconds]
bougyman has quit [Ping timeout: 240 seconds]
sluukkonen has quit [Ping timeout: 240 seconds]
dabradley has quit [Ping timeout: 240 seconds]
wallerdev has quit [Ping timeout: 240 seconds]
wallerdev_ is now known as wallerdev
sonne has joined #ruby-lang
symm- has joined #ruby-lang
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
diegoviola has quit [Ping timeout: 248 seconds]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yxhuvud has joined #ruby-lang
stamina has joined #ruby-lang
pskosinski has quit [Quit: Til rivido Idisti! | http://www.ido.li]
sluukkonen has joined #ruby-lang
bougyman has joined #ruby-lang
MichD is now known as michd
MikaAK has quit [Quit: node-irc says goodbye]
MikaAK has joined #ruby-lang
_dabradley is now known as dabradley
centrx has quit [Quit: Mission accomplished. Ready for self-termination.]
workmad3 has quit [Ping timeout: 255 seconds]
shinnya has joined #ruby-lang
ascarter has joined #ruby-lang
Blaguvest is now known as Semtex-h
woollyams has joined #ruby-lang
chouhoulis has quit [Ping timeout: 255 seconds]
yubrew has quit [Remote host closed the connection]
wallerdev has quit [Quit: wallerdev]
AncientAmateur has quit [Remote host closed the connection]
wallerdev has joined #ruby-lang
bruno- has quit [Ping timeout: 255 seconds]
nathanstitt has quit [Quit: I growing sleepy]
sunaku has quit [Ping timeout: 255 seconds]
dik_dak has quit [Ping timeout: 240 seconds]
jhass is now known as jhass|off
bantic has quit [Quit: bantic]
sunaku has joined #ruby-lang
VanderH0ff has quit [Quit: Leaving]
<sunaku> whitequark: yorickpeterse: i'd imagine that at least matz would hear you out
<ericwood> nah he's too busy being awesome
<sunaku> hmm, how about our english-native ruby devs like tenderlove?
<sunaku> (not that he isn't awesome)
luiz_lha has quit [Remote host closed the connection]
luiz_lha has joined #ruby-lang
cored_ has quit [Ping timeout: 240 seconds]
gpg_ has quit [Ping timeout: 246 seconds]
kyb3r_ has quit [Ping timeout: 248 seconds]
cnivolle has joined #ruby-lang
MikaAK has quit [Ping timeout: 272 seconds]
sunaku has quit [Quit: WeeChat 0.4.3]
kyb3r_ has joined #ruby-lang
Lumio has quit [Quit: Lumio]
cnivolle has quit [Client Quit]
sunaku has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
Lewix has joined #ruby-lang
saarinen has quit [Quit: saarinen]
loincloth has quit [Remote host closed the connection]
djbkd has joined #ruby-lang
saarinen has joined #ruby-lang
inkblots has joined #ruby-lang
mistym_ has joined #ruby-lang
cddr has quit [Ping timeout: 244 seconds]
MikaAK1 has joined #ruby-lang
mistym has quit [Ping timeout: 244 seconds]
bruno- has joined #ruby-lang
woollyams has quit [Ping timeout: 272 seconds]
t0ggah_ has quit []
t0ggah has joined #ruby-lang
t0ggah has quit [Client Quit]
enebo has quit [Quit: enebo]
mikecmpbll has joined #ruby-lang
kaiserpathos has quit []
<sunaku> oh well, here's hoping for the best *sigh*
bruno- has quit [Ping timeout: 272 seconds]
touzin has quit [Ping timeout: 252 seconds]
apeiros_ is now known as apeiros
Caius has quit [Ping timeout: 255 seconds]
Caius has joined #ruby-lang
Sonja has quit [Ping timeout: 252 seconds]
sunaku has quit [Quit: WeeChat 0.4.3]
franzip has joined #ruby-lang
yubrew_ has joined #ruby-lang
sepp2k has quit [Read error: Connection reset by peer]
momomomomo has quit [Quit: momomomomo]
yubrew_ has quit [Ping timeout: 264 seconds]
sdouglas has joined #ruby-lang
sdouglas_ has joined #ruby-lang
sdouglas has quit [Read error: Connection reset by peer]
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sdouglas_ has quit [Remote host closed the connection]
jaimef has quit [Excess Flood]
jaimef has joined #ruby-lang
ascarter has joined #ruby-lang
symm- has quit [Ping timeout: 240 seconds]
symm-_ has joined #ruby-lang
franzip has quit [Quit: ...]
Caius has quit [Ping timeout: 255 seconds]
Sonja has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
Caius has joined #ruby-lang
mykoweb has joined #ruby-lang
K3dare has quit [Ping timeout: 252 seconds]
woollyams has joined #ruby-lang
K3dare has joined #ruby-lang
mistym_ is now known as mistym
mykoweb has quit [Read error: No route to host]
mykoweb has joined #ruby-lang
mikecmpbll has quit [Quit: ciao.]
touzin has joined #ruby-lang
djbkd has quit [Read error: Connection reset by peer]
replay has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
djbkd has joined #ruby-lang
cored has joined #ruby-lang
touzin has left #ruby-lang [#ruby-lang]
bruno- has joined #ruby-lang
jonathanmarvens has quit [Remote host closed the connection]
jonathanmarvens has joined #ruby-lang
bruno- has quit [Ping timeout: 264 seconds]
djbkd has quit [Remote host closed the connection]
vintik has joined #ruby-lang
ecnalyr has joined #ruby-lang
djbkd has joined #ruby-lang
nathanstitt has joined #ruby-lang
jeffs has quit [Ping timeout: 260 seconds]
Atttwww has joined #ruby-lang
ecnalyr has quit [Remote host closed the connection]
stamina has quit [Ping timeout: 264 seconds]
houhoulis has joined #ruby-lang
ecnalyr has joined #ruby-lang
inkblots has quit [Remote host closed the connection]
charliesome has joined #ruby-lang
djbkd has quit [Remote host closed the connection]
yubrew has joined #ruby-lang
dorei has joined #ruby-lang
ecnalyr_ has joined #ruby-lang
danijoo has quit [Read error: Connection reset by peer]
ecnalyr has quit [Ping timeout: 244 seconds]
danijoo has joined #ruby-lang
mykoweb has quit [Remote host closed the connection]
yubrew has quit [Ping timeout: 240 seconds]
mykoweb has joined #ruby-lang
nathanstitt has quit [Quit: I growing sleepy]
|jemc| has quit [Ping timeout: 272 seconds]
djbkd has joined #ruby-lang
kgrz has joined #ruby-lang
mykoweb has quit [Ping timeout: 240 seconds]
kgrz has quit [Ping timeout: 272 seconds]
dsaint-pierre has quit [Read error: Connection reset by peer]
dsaint-pierre has joined #ruby-lang
ascarter has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
dsaint-pierre has quit [Read error: Connection reset by peer]
dsaint-pierre has joined #ruby-lang