adaedra changed the topic of #ruby to: Rules & more: http://ruby-community.com || Ruby 2.3.0; 2.2.4; 2.1.8; 2.0.0-p648: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || log @ http://irclog.whitequark.org/ruby/
mfb2 has quit [Remote host closed the connection]
greynetic has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
chris2 has joined #ruby
tildes has joined #ruby
<mg^> So I did
nerium has quit [Quit: nerium]
<mg^> It works, but sometimes it's crashy. Haven't figured out why but either the GC and I have a disagreement or I've got a leak are the likely candidates.
crowell_ has quit [Ping timeout: 250 seconds]
intrigueD has joined #ruby
pdoherty has quit [Ping timeout: 260 seconds]
<riceandbeans> if I have a variable foo, that contains a number like 1.2.3, what's the cleanest way to just return a version with the .3 stripped off the end?
saneax_AFK is now known as saneax
_kfpratt has quit []
rcvalle has quit [Quit: rcvalle]
crowell has joined #ruby
J4D has joined #ruby
<wolffles> how do you read a number with 2 decimals
<zach2825> jhass, i ran "rvm -v" and got "rvm 1.26.11 (latest) "
dnewkerk has joined #ruby
J4D_ has joined #ruby
<zach2825> jhass, with "ruby -v" i get "ruby 2.0.0p643"
<zach2825> and i ran "gem install bundle" and still no luck.
J4D_ has quit [Client Quit]
<mg^> >> '1.2.3'.split('.')[0..-2].join('.')
last_staff has quit [Quit: last_staff]
<ruby[bot]> mg^: # => "1.2" (https://eval.in/519902)
yfeldblum has quit [Remote host closed the connection]
<mg^> dunno if that's really that clean or fast, but it works
<riceandbeans> mg^: that'll do, that'll do, thank you
gregf has quit [Ping timeout: 240 seconds]
<al2o3-cr> >> 1.2.3"[0,3]
<ruby[bot]> al2o3-cr: # => /tmp/execpad-b4541916141b/source-b4541916141b:2: unexpected fraction part after numeric literal ...check link for more (https://eval.in/519903)
<al2o3-cr> >> "1.2.3"[0,3]
<ruby[bot]> al2o3-cr: # => "1.2" (https://eval.in/519904)
nettoweb has joined #ruby
<mg^> Of course, what I gave breaks if you give it something like '1'
trinaldi has quit [Quit: see ya, thanks!]
J4D has quit [Ping timeout: 265 seconds]
nopolitica has joined #ruby
<havenwood> mg^: Nifty mruby on hexchat! What's the '1.2.3' thing?
karapetyan has joined #ruby
MrSamuel has joined #ruby
<riceandbeans> al2o3-cr: the number could be 12.15.18
sjohnsen has joined #ruby
<mg^> riceandbeans wanted to know how to strip the last bit off of a version-number type of string
<riceandbeans> >> "12.15.18"[0,3]
<ruby[bot]> riceandbeans: # => "12." (https://eval.in/519911)
<havenwood> oh, i totally missed the question, gotcha!
<zach2825> i tried in my Gemfile adding ruby "2.0.0" to force using ruby 2.0.0 but when i run bundle install i get this error
<zach2825> Your Ruby version is 1.9.3, but your Gemfile specified 2.0.0
pawnbox has joined #ruby
<riceandbeans> >> "12.15.18".split('.')[0..-2].join('.')
<ruby[bot]> riceandbeans: # => "12.15" (https://eval.in/519918)
<riceandbeans> and mg^ wins this round
<havenwood> >> File.basename '12.15.18', '.*'
<ruby[bot]> havenwood: # => "12.15" (https://eval.in/519920)
<Ox0dea> Heh.
kent\n has quit [Ping timeout: 252 seconds]
<Ox0dea> I mean, why not?
<havenwood> ;)
Zappa_ has quit [Read error: Connection reset by peer]
<mg^> hahah I like it
<zach2825> has anybody else experienced that problem?
DLSteve has joined #ruby
<Ox0dea> zach2825: Do you have a .ruby-version file in your project directory?
<zach2825> i did
<zach2825> *do
<Ox0dea> That'll be the problem.
<havenwood> zach2825: What's in it?
<Ox0dea> I'm gonna guess 1.9.3. :P
<zach2825> only "2.0.0" without quotes
<Ox0dea> Oh.
<Ox0dea> Burn it all.
<zach2825> i did 2 times today..
<Ox0dea> With fire?
Eiam_ has quit [Quit: ╯°□°)╯︵ǝpouǝǝɹɟ]
<zach2825> lol i thought you meant to remove and re install.
<Ox0dea> I did.
CloCkWeRX has joined #ruby
pawnbox has quit [Ping timeout: 240 seconds]
karapetyan has quit [Ping timeout: 276 seconds]
sonja has joined #ruby
malconis has joined #ruby
TomyLobo has quit [Ping timeout: 252 seconds]
<zach2825> yes, i've done that.
<al2o3-cr> havenwood: nice :)
kent\n has joined #ruby
kent\n has quit [Remote host closed the connection]
<sonja> Python 3 lets you divide 10/3 as floats (instead of int) by default. Is there something like this in Ruby?
<zach2825> i know its something stupid. but i don't know how to tell bundle install to use ruby 2.0.0
<zach2825> no matter what i try it uses 1.9.1
<Ox0dea> sonja: Are you sure you want that?
<zach2825> every setting i can find is pointed to 2.0.0
<Ox0dea> >> require 'mathn'; 10/3 # sonja
<ruby[bot]> Ox0dea: # => (10/3) (https://eval.in/519934)
<Ox0dea> Rational > Float
<al2o3-cr> >> 10/3r
<ruby[bot]> al2o3-cr: # => (10/3) (https://eval.in/519935)
<zach2825> Ox0dea, do you know how to make bundle install use ruby 2.0.0?
Rodya_ has joined #ruby
<Ox0dea> zach2825: You're properly telling it how to use it; the problem is that that's not actually your Ruby version.
<Ox0dea> It takes a kinder soul than mine to help diagnose problems caused by RVM. :/
dlitvak has quit [Remote host closed the connection]
<bnagy> Ox0dea: but you already did
<shevy> he hates it with a passion!
<Ox0dea> bnagy: Oops!
<bnagy> 07:14 < Ox0dea> `rvm implode`
<sonja> Ox0dea: is that a jedi mind trick?
<shevy> lol
<Ox0dea> bnagy: Heh.
<zach2825> i can abondon it. if theres an easier wya
<shevy> you are revealed Ox0dea :)
<Ox0dea> sonja's onto me!
<zach2825> i can abandon it. if theres an easier wayu
<zach2825> i can abandon it. if theres an easier way
<shevy> you really can abandon it
<zach2825> sorry i kept making typos
<shevy> :D
<shevy> havenwood recommends chruby
ready has quit [Ping timeout: 248 seconds]
<shevy> <havenwood> jimeh: chruby supports autoswitching with .ruby-version files
asmodlol has quit [Ping timeout: 256 seconds]
<bnagy> chruby ftw
<bnagy> but if you don't need to switch you can also just install ruby
kent\n has joined #ruby
<bnagy> zach2825: as a heuristic, most of these problems come from your 'ruby' and/or 'gem' commands not invoking the binaries you expect them to invoke
finisherr has quit [Ping timeout: 248 seconds]
<zach2825> right
<bnagy> which is diagnosed with `which xxx`
<zach2825> im looking at chruby right now
<shevy> total chaos, total madness, different prefixes, different rubies!
<bnagy> or fixed with just killing everything with fire
<zach2825> lol
<shevy> hehehe
malconis has quit [Ping timeout: 240 seconds]
<Ox0dea> $ alias rubydo='chruby | tr -d \* | xargs -I ver chruby-exec ver -- ruby -v'
<bnagy> trouble is that all the switchers have different magics that infect rc files
<Ox0dea> bnagy: Not chruby-exec?
JDiPierro has quit [Remote host closed the connection]
<bnagy> well that's not really a switcher
intrigueD has quit [Remote host closed the connection]
mfb2 has joined #ruby
mfb2 has quit [Remote host closed the connection]
sonja has quit [Quit: Lost terminal]
tulak has quit [Remote host closed the connection]
asccigcc has quit [Quit: asccigcc]
solocshaw has joined #ruby
stannard has joined #ruby
gizless has joined #ruby
rgtk has quit [Remote host closed the connection]
JoshGlzBrk has joined #ruby
gizmore has quit [Ping timeout: 276 seconds]
blackmesa has quit [Ping timeout: 272 seconds]
stannard has quit [Ping timeout: 264 seconds]
LoneHermit has quit [Remote host closed the connection]
<zach2825> no luck
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tubulife- has quit [Ping timeout: 265 seconds]
blackmesa has joined #ruby
aupadhye has joined #ruby
<shevy> zach!!!
MrSamuel has quit [Quit: MrSamuel]
cjbottaro has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
duckpuppy has joined #ruby
<zach2825> whats up
jottr_ has joined #ruby
andrewvos has joined #ruby
mfb2 has joined #ruby
yosafbridge has quit [Quit: Leaving]
yfeldblu_ has joined #ruby
<jimeh> zach2825: are you trying to specify Ruby version via a Gemfile?
<zach2825> im trying to force using 2.0.0 because thats the version i need
mfb2 has quit [Remote host closed the connection]
<jimeh> chruby or rbenv+ruby-install is your best bet...
duckpuppy has quit [Ping timeout: 240 seconds]
<havenwood> zach2825: What switcher are you using?
<jimeh> I've not tried chruby yet, but with rbenv and ruby-install you'd just do: rbenv install 2.0.0
<zach2825> i removed the other versions of ruby and now im using symlinks..
<havenwood> jimeh: that's be ruby-build
<havenwood> jimeh: ruby-install can install for rbenv as well, but it's not "integrated" into rbenv
<havenwood> those names are unfortunately close
<jimeh> havenwood: indeed, I meant ruby-build >_<
Guest53489 is now known as BLuEGoD
lemur has joined #ruby
BLuEGoD is now known as Guest51795
<jimeh> zach2825: Bundler doesn't manage or switch Ruby versions, for that you need rbenv, chruby or rvm
yfeldblu_ has quit [Ping timeout: 260 seconds]
<zach2825> sofar i've tried rvm somebody said that sucks so i tried chruby which looks like its for mac im on an ubuntu server..
mfb2 has joined #ruby
<zach2825> in the beginning i tried rvm use 2.0.0 and when i tried bundle install it was still trying to use ruby 1.9.1
<jimeh> in theory chruby should work anywhere that has bash is available...
<postmodern> zach2825, chruby should still work on bash/zsh, but you probably don't need a ruby manager on the server
<jimeh> Did you first install Ruby 2.0.0? If not that'd be why it couldn't use it...
<zach2825> i apt-get install ruby and it installed 1.9.1. but i want to use ruby 2.0.0.
AlphaAtom has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
arescorpio has joined #ruby
<dnewkerk> I’m a regex newbie and struggling to get this regex to match all of the lines of text, was wondering if anyone can give me a hint on how to fix it? http://rubular.com/r/kb0JQDOerh … originally found it on https://regex101.com/r/jV9oV2/3 where it does match in pcre format but not when bringing it to ruby
<postmodern> zach2825, https://launchpad.net/~brightbox/+archive/ubuntu/ruby-ng just install the brightbox ruby-ng package for ruby-2.0.0
<zach2825> the thing is when i run "ruby -v" i get "ruby 2.0.0p648"
lemur has quit [Ping timeout: 240 seconds]
Derailed has quit [Quit: ZNC - http://znc.in]
Derailed has joined #ruby
Inv1s1ble has quit [Remote host closed the connection]
<jimeh> zach2825: so you've got 2.0, probably just a PATH issue then...
andrewvos has quit [Ping timeout: 264 seconds]
<zach2825> i've symlinked everything. no matter which version it asks for it should be 2.0.0 now.
blackmesa has quit [Ping timeout: 276 seconds]
LoneHerm_ has joined #ruby
yosafbridge has joined #ruby
yfeldblum has joined #ruby
<zach2825> ok progress, maybe.
weemsledeux has joined #ruby
<havenwood> zach2825: A nice thing about not needing to switch Rubies is not needing a Ruby switcher. :)
gizless has quit [Ping timeout: 276 seconds]
ropeney has joined #ruby
<zach2825> its complaining about not having some event gem installed so i try to install it and i get this error
<zach2825> rubygems.rb:8:in `require': cannot load such file -- rbconfig
maikowblue has quit [Quit: .]
shazaum_ has quit [Quit: Leaving]
<Ox0dea> dnewkerk: Weird. https://eval.in/519954
rgtk has joined #ruby
<Ox0dea> That works just fine on Ruby 2.4. :/
mfb2 has quit [Remote host closed the connection]
baweaver has quit [Remote host closed the connection]
rgtk has quit [Read error: Connection reset by peer]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Ox0dea> As best I can tell, that regex isn't using any particularly fancy feature that wouldn't be supported by Oniguruma since way back.
rgtk has joined #ruby
<dnewkerk> Ox0dea: interesting… I’m still running 2.2 on my dev machine so hadn’t tried with 2.3
MrSamuel has joined #ruby
pawnbox has joined #ruby
dlitvak has joined #ruby
saneax is now known as saneax_AFK
blackgoat has quit [Quit: WeeChat 1.3]
Prira has quit [Remote host closed the connection]
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rgtk has quit [Read error: Connection reset by peer]
<Ox0dea> dnewkerk: Works on 2.2.2: https://glot.io/snippets/ebzq1td970
rgtk has joined #ruby
<Ox0dea> Not sure what's going on with eval.in there.
<Ox0dea> Oh, never mind. It's not matching all the text. Derp.
diegoviola has quit [Quit: WeeChat 1.4]
tomchapin has quit [Ping timeout: 265 seconds]
casadei_ has joined #ruby
rgtk has quit [Read error: No route to host]
JoshGlzBrk has joined #ruby
Prira has joined #ruby
rgtk has joined #ruby
chouhoulis has quit []
pawnbox has quit [Ping timeout: 252 seconds]
rgtk has quit [Read error: No route to host]
<bnagy> dnewkerk: that kind of regex is unmaintainable shite, don't use it
<bnagy> having said that, change the $ in the lookahead to \z
rgtk has joined #ruby
dlitvak has quit [Ping timeout: 272 seconds]
rgtk has quit [Read error: No route to host]
nopolitica has quit [Quit: Lost terminal]
rgtk has joined #ruby
Diaoer has joined #ruby
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
<jimeh> dnewkerk: here's what bnagy suggests http://rubular.com/r/ivEyFcai0A
<dnewkerk> bnagy: thanks that worked! Thank you too Ox0dea for having a look. Yeah I agree it’s not a good idea to take this route, just came across this snippet and was hoping to just use it to get an early version of my subtitles parser working and then refactor it better (but then got stumped when the regex didn’t work as expected)
<bnagy> that regex makes me mad >:(
<zach2825> thank you for your help. im done for the day.
chouhoulis has joined #ruby
<bnagy> -{2}> >:(
<dnewkerk> lol
<bnagy> [\s\S] >X(
Damien22 has joined #ruby
<Ox0dea> It almost looks computer-generated?
shanemcd has joined #ruby
<jimeh> Yeah, it's some seriously weird regex... lol
c0ncealed has quit [Remote host closed the connection]
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
<dnewkerk> bnagy: as you’re definitely more knowledgable with regex than me, could you refer me to a trusted resource to learn best practices? So far I’m at the point where I can’t tell good from evil so to speak :P
dlitvak has joined #ruby
c0ncealed has joined #ruby
x77686d has quit [Quit: x77686d]
rgtk has quit [Read error: No route to host]
<bnagy> not really. I am a huge regex bigot.
rgtk has joined #ruby
<bnagy> but -{2}> instead of just --> is just bizarre, same with [\s\S] - like.. say what you mean! SPACE OR NOT SPACE LOL
juanfra has quit [Ping timeout: 240 seconds]
<bnagy> lookaheads are a good sign you've gone too far. It's like when you start writing functions in shellscripts
<bnagy> just stop and do it properly
rgtk has quit [Read error: No route to host]
<jimeh> Slightly less weird regex: http://rubular.com/r/QvLj9TMNnV
rgtk has joined #ruby
<jimeh> But yeah, I agree bnagy
dlitvak has quit [Ping timeout: 240 seconds]
shanemcd has quit [Ping timeout: 276 seconds]
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
juanfra has joined #ruby
<dnewkerk> thanks everyone :) and thanks jimeh I’ll compare the two examples and learn how you simplified it
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Dimik has quit [Ping timeout: 250 seconds]
Melpaws1 has joined #ruby
Melpaws1 is now known as Melpaws
rgtk has quit [Read error: No route to host]
Jardayn has quit [Quit: Leaving]
rgtk has joined #ruby
johnmilton has quit [Quit: Namaste]
rgtk has quit [Read error: No route to host]
wwwbukolaycom has quit []
cjbottaro has joined #ruby
rgtk has joined #ruby
dlitvak has joined #ruby
cjbottaro has quit [Client Quit]
<Melpaws> hiya. I need some guru help with scraping a html table with nokogiri . Here is the table : https://gist.githubusercontent.com/dylnnlsn/5baa9d41fe11fbd7a97d/raw/4c9a000f689753f0a80691e0b7121fd372b728df/gistfile1.txt. I'm needing to scrape the page above and return the td data for the hour and the values picked.
cjbottaro has joined #ruby
rgtk has quit [Read error: No route to host]
<jimeh> dnewkerk: I didn't really simplify, more just change confusing stuff to less confusing stuff... lol
rgtk has joined #ruby
akem has quit [Remote host closed the connection]
<dnewkerk> jimeh: it’s a start :)
dopie has quit [Quit: Leaving]
<dnewkerk> jimeh: in the case of parsing a big block of text like this, would you take a different approach? perhaps like breaking it down into single lines and analyzing each with simpler conditions?
rgtk has quit [Read error: No route to host]
<bnagy> very yes
rgtk has joined #ruby
skweek has joined #ruby
kirillzh has joined #ruby
<dnewkerk> thanks I’ll give it a try
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
dlitvak has quit [Ping timeout: 276 seconds]
freerobby has quit [Quit: Leaving.]
hxegon has quit [Ping timeout: 260 seconds]
<jimeh> I would indeed :)
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
kirillzh has quit [Ping timeout: 252 seconds]
rgtk has quit [Read error: No route to host]
I has joined #ruby
rgtk has joined #ruby
I is now known as Guest31201
rgtk has quit [Read error: No route to host]
idefine has quit [Remote host closed the connection]
rgtk has joined #ruby
FooMunki has quit [Quit: FooMunki]
FooMunki has joined #ruby
rgtk has quit [Read error: No route to host]
marr has quit [Ping timeout: 252 seconds]
snguyen has joined #ruby
rgtk has joined #ruby
freerobby has joined #ruby
rgtk has quit [Read error: No route to host]
DEA7TH has joined #ruby
rgtk has joined #ruby
hinbody_ is now known as hinbody
nfk has quit [Quit: Try memory.free_dirty_pages=true in about:config]
rbennacer has quit [Read error: Connection reset by peer]
rbennacer has joined #ruby
rgtk has quit [Read error: No route to host]
rgtk_ has joined #ruby
Cihan has quit []
miguel has joined #ruby
rgtk_ has quit [Read error: No route to host]
miguel is now known as Guest69653
rgtk has joined #ruby
duckpuppy has joined #ruby
zast has joined #ruby
freerobby has quit [Quit: Leaving.]
Guest69653 has quit [Client Quit]
Guest69653 has joined #ruby
freerobby has joined #ruby
cdg has quit [Remote host closed the connection]
juanfra has quit [Ping timeout: 265 seconds]
Guest69653 has quit [Client Quit]
hayden_ has quit [Quit: Connection closed for inactivity]
rgtk has quit [Read error: No route to host]
podman has quit [Quit: Connection closed for inactivity]
rgtk has joined #ruby
msosa has joined #ruby
freerobby has quit [Client Quit]
cjbottaro has quit [Ping timeout: 276 seconds]
freerobby has joined #ruby
freerobby has quit [Client Quit]
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
juanfra has joined #ruby
rgtk has quit [Read error: No route to host]
rkazak has joined #ruby
crdpink has quit [Ping timeout: 240 seconds]
cih has quit [Remote host closed the connection]
crdpink has joined #ruby
duckpuppy has quit [Ping timeout: 252 seconds]
rgtk has joined #ruby
cih has joined #ruby
Guest51795 is now known as BLuEGoD
idefine has joined #ruby
BLuEGoD is now known as Guest20948
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
rgtk has quit [Read error: No route to host]
rgtk has joined #ruby
FooMunki has quit [Quit: FooMunki]
rgtk has quit [Read error: No route to host]
pawnbox has joined #ruby
mary5030 has quit [Ping timeout: 240 seconds]
rgtk has joined #ruby
idefine has quit [Ping timeout: 240 seconds]
dlitvak has joined #ruby
idefine has joined #ruby
rgtk has quit [Read error: No route to host]
duderonomy has joined #ruby
devbug has quit [Ping timeout: 260 seconds]
rgtk has joined #ruby
mary5030 has joined #ruby
pawnbox has quit [Ping timeout: 240 seconds]
x77686d has joined #ruby
DmitryBochkarev has joined #ruby
dlitvak has quit [Ping timeout: 240 seconds]
sneakerhax has quit [Quit: back later]
rgtk has quit [Ping timeout: 248 seconds]
karapetyan has joined #ruby
baweaver has joined #ruby
nbdy has joined #ruby
nbdy has quit [Client Quit]
Ebok has joined #ruby
Moblin has joined #ruby
Ebok has quit [Client Quit]
Moblin has quit [Client Quit]
dlitvak has joined #ruby
Ebok has joined #ruby
karapetyan has quit [Ping timeout: 260 seconds]
Melpaws has quit [Read error: Connection reset by peer]
znz_jp has quit [Quit: kill -QUIT $$]
zeroDivisible has joined #ruby
nfk|laptop has joined #ruby
LoneHerm_ has quit [Remote host closed the connection]
baweaver has quit [Ping timeout: 260 seconds]
LoneHermit has joined #ruby
nisstyre has quit [Ping timeout: 265 seconds]
rgtk has joined #ruby
wolffles has quit [Quit: wolffles]
floatingpoint has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
znz_jp has joined #ruby
LoneHermit has quit [Remote host closed the connection]
pickandmix has joined #ruby
mattwildig has joined #ruby
marxarelli is now known as marxarelli|afk
dlitvak has quit [Ping timeout: 240 seconds]
Guest31201 has quit [Quit: Leaving]
rgtk_ has joined #ruby
yqt has quit [Quit: KVIrc 4.0.4 Insomnia http://www.kvirc.net/]
rgtk has quit [Ping timeout: 248 seconds]
idefine has quit [Remote host closed the connection]
jottr_ has quit [Ping timeout: 265 seconds]
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
maletor has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rgtk has joined #ruby
resin has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
rgtk_ has quit [Ping timeout: 248 seconds]
skade has joined #ruby
tatsuo has quit [Remote host closed the connection]
skade has quit [Client Quit]
idefine has joined #ruby
afaris has quit [Ping timeout: 260 seconds]
ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
bronson has joined #ruby
kies^ has quit [Read error: Connection reset by peer]
casadei_ has quit [Remote host closed the connection]
rgtk_ has joined #ruby
idefine has quit [Remote host closed the connection]
rgtk has quit [Ping timeout: 248 seconds]
rakm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
KnownSyntax has quit [Ping timeout: 240 seconds]
juanfra has quit [Ping timeout: 250 seconds]
idefine has joined #ruby
e4xit has quit [Read error: Connection reset by peer]
idefine has quit [Remote host closed the connection]
rgtk has joined #ruby
rgtk_ has quit [Ping timeout: 248 seconds]
bronson has quit [Ping timeout: 256 seconds]
KnownSyntax has joined #ruby
KnownSyntax has quit [Changing host]
KnownSyntax has joined #ruby
KensoDev has quit [Quit: Textual IRC Client: www.textualapp.com]
juanfra has joined #ruby
LoneHermit has joined #ruby
JoshGlzBrk has joined #ruby
rgtk has quit [Read error: No route to host]
tildes has quit [Ping timeout: 250 seconds]
rgtk has joined #ruby
e4xit has joined #ruby
pwnd_nsfw` has quit [Read error: Connection reset by peer]
kies^ has joined #ruby
pwnd_nsfw` has joined #ruby
DmitryBochkarev has joined #ruby
stannard has joined #ruby
rgtk has quit [Read error: No route to host]
rgtk_ has joined #ruby
arlek_ has quit [Ping timeout: 256 seconds]
Spami has quit [Quit: This computer has gone to sleep]
Zai00 has quit [Quit: Zai00]
Spami has joined #ruby
dlitvak has joined #ruby
dlitvak has quit [Remote host closed the connection]
rgtk_ has quit [Read error: No route to host]
rgtk has joined #ruby
nisstyre has joined #ruby
stannard has quit [Ping timeout: 250 seconds]
dexter_ has joined #ruby
Grays0n has joined #ruby
cih has quit [Remote host closed the connection]
sondr3 has quit [Quit: Sleep]
frozen3 has joined #ruby
rgtk_ has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
zeroDivisible has quit [Quit: WeeChat 1.3]
s00pcan__ has joined #ruby
unl0ckd has joined #ruby
duckpuppy has joined #ruby
bLUEbYTE has joined #ruby
godzillaenlacasa has quit [Quit: ZZZZZ....]
rgtk_ has quit [Ping timeout: 248 seconds]
frozen3 has quit [Ping timeout: 276 seconds]
s00pcan_ has quit [Ping timeout: 250 seconds]
wprice has quit [Quit: wprice]
rakm has joined #ruby
baweaver has joined #ruby
Guest20948 is now known as BLuEGoD
BLuEGoD is now known as Guest57346
graffix222 has quit [Ping timeout: 265 seconds]
rakm has quit [Client Quit]
Rodya_ has quit [Remote host closed the connection]
baweaver has quit [Ping timeout: 240 seconds]
stannard has joined #ruby
rgtk has joined #ruby
graffix222 has joined #ruby
stannard has quit [Ping timeout: 250 seconds]
p1k has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
karapetyan has joined #ruby
mfb2 has joined #ruby
cbednarski has quit []
cbednarski has joined #ruby
moeabdol has joined #ruby
cpup has quit [Ping timeout: 260 seconds]
cpup has joined #ruby
ropeney has joined #ruby
karapetyan has quit [Ping timeout: 250 seconds]
moeabdol1 has joined #ruby
DmitryBochkarev has quit [Quit: This computer has gone to sleep]
cbednarski has left #ruby [#ruby]
duckpuppy has quit [Ping timeout: 265 seconds]
mfb2 has quit [Ping timeout: 276 seconds]
rgtk has joined #ruby
moeabdol has quit [Ping timeout: 272 seconds]
tomchapin has joined #ruby
hxegon has joined #ruby
Sucks has joined #ruby
rgtk has quit [Read error: No route to host]
ropeney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rgtk has joined #ruby
nogic has joined #ruby
bLUEbYTE has quit []
nfk|laptop has quit [Quit: yawn]
bLUEbYTE has joined #ruby
bLUEbYTE has quit [Client Quit]
bLUEbYTE has joined #ruby
LoneHermit has quit [Remote host closed the connection]
bLUEbYTE has quit [Client Quit]
LoneHerm_ has joined #ruby
rbennacer has quit [Remote host closed the connection]
pickandmix has quit [Quit: WeeChat 1.4]
DanKnox_ has joined #ruby
DanKnox has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
Ebok has quit [Quit: Leaving]
bLUE-bYTE has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
Sucks has quit [Read error: Connection reset by peer]
idefine has joined #ruby
Sucks has joined #ruby
Sucks has quit [Max SendQ exceeded]
Sucks has joined #ruby
Rodya_ has joined #ruby
Sucks has quit [Remote host closed the connection]
JoshGlzBrk has quit [Quit: Textual IRC Client: www.textualapp.com]
Sucks has joined #ruby
Sucks has quit [Read error: Connection reset by peer]
Sucks has joined #ruby
rgtk has joined #ruby
zach2825 has quit [Ping timeout: 248 seconds]
DanKnox_ has quit [Ping timeout: 265 seconds]
DanKnox has quit [Ping timeout: 265 seconds]
hxegon has quit [Quit: BRB]
rgtk has quit [Ping timeout: 248 seconds]
skweek has quit [Ping timeout: 260 seconds]
chouhoulis has quit [Remote host closed the connection]
zacstewart has joined #ruby
chouhoulis has joined #ruby
kirillzh has joined #ruby
chris2 has quit [Ping timeout: 240 seconds]
LoneHerm_ has quit [Read error: Connection reset by peer]
Eiam_ has joined #ruby
LoneHermit has joined #ruby
Sucks has quit [Quit: No Ping reply in 180 seconds.]
tomchapin has quit [Ping timeout: 265 seconds]
Sucks has joined #ruby
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
chipotle_ has quit [Quit: cheerio]
cih has joined #ruby
Sucks has quit [Read error: Connection reset by peer]
Sucks has joined #ruby
chris2 has joined #ruby
pawnbox has joined #ruby
cih has quit [Ping timeout: 260 seconds]
baweaver has joined #ruby
pawnbox has quit [Ping timeout: 240 seconds]
davedev24 has quit []
LoneHermit has quit [Remote host closed the connection]
jcdesimp has joined #ruby
Guest57346 is now known as BLuEGoD
BLuEGoD is now known as Guest22299
msosa has quit [Read error: Connection reset by peer]
tomchapin has joined #ruby
babblebre has quit [Quit: Connection closed for inactivity]
zacstewart has quit [Ping timeout: 272 seconds]
zast has quit [Remote host closed the connection]
chipotle has joined #ruby
whiteline has quit [Ping timeout: 265 seconds]
dkam has joined #ruby
howdoi has joined #ruby
Omen has joined #ruby
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tomchapin has quit [Ping timeout: 264 seconds]
treaki__ has joined #ruby
tomchapin has joined #ruby
frem has quit [Quit: Connection closed for inactivity]
moeabdol1 has quit [Ping timeout: 240 seconds]
LoneHerm_ has joined #ruby
braincrash has quit [Quit: bye bye]
treaki_ has quit [Ping timeout: 265 seconds]
moeabdol1 has joined #ruby
graphettion has joined #ruby
tildes has joined #ruby
braincrash has joined #ruby
chouhoulis has quit [Remote host closed the connection]
hippyphysicist has joined #ruby
shadoi has quit [Quit: Leaving.]
rkazak has quit [Quit: Sleep.....ing....]
pickandmix has joined #ruby
<Ox0dea> Interrobang methods.
tomchapin has quit [Read error: Connection reset by peer]
<Ox0dea> #foo?! would be the scarier version of #foo?.
<Ox0dea> Not sure about #foo!? though.
hippyphysicist has quit [Client Quit]
<Radar> Modify this object, but only sometimes.
<Radar> or foo!? always takes an argument which is true/false which decides to modify the existing obj or create a new one
stannard has joined #ruby
<Ox0dea> Adding them is scary-easy...
<eam> the AYFKM method ???? which raises if false
<eam> thing.zero????
<Ox0dea> Those wouldn't be valid.
kent\n has quit [Quit: No Ping reply in 180 seconds.]
<eam> I reject your reality and assert my own
arescorpio has quit [Quit: Leaving.]
kent\n has joined #ruby
solocshaw has quit [Ping timeout: 252 seconds]
<Ox0dea> Even #foo!! and #foo?? would be invalid.
<eam> oh that's just the parser, don't let that constrain your creativity
Grays0n has quit [Ping timeout: 240 seconds]
<eam> define_method and send will save us
fedexo has joined #ruby
voidDotClass has quit [Remote host closed the connection]
<eam> we're going to have to write code to create a method already, so why not write some code in the parser ...
stannard has quit [Ping timeout: 248 seconds]
<Ox0dea> >> define_method(:define_method) { define_method(:define_method) {} }
<ruby[bot]> Ox0dea: # => :define_method (https://eval.in/520044)
<Ox0dea> Don't call it, though.
<Ox0dea> >> [include, extend(Module.new)]
<ruby[bot]> Ox0dea: # => [Object, main] (https://eval.in/520045)
<Ox0dea> That seems wrong?
DLSteve has quit [Remote host closed the connection]
Melpaws has joined #ruby
moeabdol2 has joined #ruby
chipotle has quit [Quit: cheerio]
gix has quit [Ping timeout: 250 seconds]
DanKnox has joined #ruby
DanKnox_ has joined #ruby
yfeldblum has quit [Remote host closed the connection]
moeabdol1 has quit [Ping timeout: 250 seconds]
bronson has joined #ruby
al2o3-cr has quit [Ping timeout: 252 seconds]
tubulife- has joined #ruby
bronson has quit [Remote host closed the connection]
Grays0n has joined #ruby
gix has joined #ruby
asccigcc has joined #ruby
_whitelogger has joined #ruby
DylanJ has quit [Ping timeout: 265 seconds]
voker57 has joined #ruby
voker57 has quit [Changing host]
voker57 has joined #ruby
_whitelogger_ has quit [Remote host closed the connection]
krz has joined #ruby
drPoggs has joined #ruby
pickandmix has quit [Ping timeout: 248 seconds]
DylanJ has joined #ruby
Morrolan has joined #ruby
JStoker has joined #ruby
duncannz has joined #ruby
mwlang has left #ruby [#ruby]
DynamicMetaFlow has joined #ruby
pawnbox has joined #ruby
kp666 has quit [Ping timeout: 256 seconds]
kirillzh has joined #ruby
dkam has quit [Quit: Be back later ...]
skweek has joined #ruby
ramortegui has joined #ruby
sakix has joined #ruby
<ramortegui> Hi All, I'm wondering if there is a way to access to memory objects in a running application.
karapetyan has joined #ruby
Guest22299 is now known as BLuEGoD
<ramortegui> I defined a singleton class in a sinatra app, and I can run racksh in order to get access to a console. But It seems like there is no access to the same namespace, because when I get an instance of an object.. it's new.
BLuEGoD is now known as Guest65756
mattwildig has quit []
<Radar> ?xy
<ruby[bot]> it seems like you are asking for a specific solution to a problem, instead of asking about your problem. This often leads to bad solutions and increases frustration for you and those trying to help you. More: http://meta.stackexchange.com/a/66378
mary5030 has quit [Remote host closed the connection]
karapetyan has quit [Ping timeout: 240 seconds]
graphettion has quit [Remote host closed the connection]
DanKnox has quit [Ping timeout: 250 seconds]
DanKnox_ has quit [Ping timeout: 272 seconds]
kp666 has joined #ruby
godzillaenlacasa has joined #ruby
kp666 has quit [Max SendQ exceeded]
treaki_ has joined #ruby
Guest9703 has quit [Remote host closed the connection]
kp666 has joined #ruby
<ramortegui> I get it. I have a sinatra app that use a chat lib in order to create a chat. The chat app is a singleton, and always get the same instance for any petition to the sinatra app. I'd like to use a shell to access the chat object that is in execution. I use racksh, but I have like a new sinatra app, not the same that is working is in execution. Could I get access to the objects of my sinatra app by a console?
perrier_ has joined #ruby
<Ox0dea> racksh does not give you access to a running instance of your application.
elifoster has quit [Ping timeout: 272 seconds]
darkf has quit [Ping timeout: 240 seconds]
darkf has joined #ruby
darkf has quit [Changing host]
darkf has joined #ruby
treaki__ has quit [Ping timeout: 240 seconds]
asprillia has joined #ruby
pawnbox has quit [Remote host closed the connection]
darkf_ has joined #ruby
<ramortegui> ok 0Ox0dea, thanks! , and is there a way to do that?
<Ox0dea> ramortegui: You want to attach racksh to an instance of your application that you didn't spawn with racksh?
Sucks has quit [Ping timeout: 264 seconds]
darkf has quit [Ping timeout: 260 seconds]
<ramortegui> Yes, I want to get access to the instance of my application by racksh or irb.
d10n-work has quit [Quit: Connection closed for inactivity]
Eiam_ has quit [Quit: ╯°□°)╯︵ǝpouǝǝɹɟ]
<Radar> For what purpose?
chipotle has joined #ruby
godzillaenlacasa has quit [Quit: ZZZZZ....]
LoneHerm_ has quit [Remote host closed the connection]
<ramortegui> I'd like to manage the Objects by console for now, instead of creating a user interface to manage the objects.
chouhoulis has joined #ruby
<ramortegui> I will create the user interface.
diegoviola has joined #ruby
<Radar> Sounds like you're trying to intentionally make things hard for yourself.
Prawnzy has joined #ruby
<ramortegui> lol. and for curiosity.
<Radar> Yeah, I'm not into answering these sort of impossible questions.
stevemackinnon has quit [Remote host closed the connection]
<ramortegui> ok. Thanks Radar.
<Radar> imo: build the damn interface now and stop faffing about
<ramortegui> Yes, I'm doing right now. :)
chouhoulis has quit [Ping timeout: 248 seconds]
idefine has quit [Remote host closed the connection]
DEA7TH has quit [Quit: DEA7TH]
shanemcd has joined #ruby
Prawnzy has left #ruby ["WeeChat 1.3"]
oddalot has quit [Ping timeout: 272 seconds]
<havenwood> ramortegui: One way to do something along those lines is to add pry-remote to your Gemfile then require it in your config.ru: https://github.com/Mon-Ouie/pry-remote
skweek has quit [Ping timeout: 256 seconds]
DEA7TH has joined #ruby
<havenwood> ramortegui: That kinda assumes that you're going to drop a `binding.remote_pry` in your code though. Yay DRb!
DEA7TH has quit [Client Quit]
shanemcd has quit [Ping timeout: 240 seconds]
ziyadb has quit [Quit: Connection closed for inactivity]
skweek has joined #ruby
<havenwood> Rescue errors to a binding.remote_pry and page yourself to hop on the server and fix it with pry-remote.
whiteline has joined #ruby
bLUE-bYTE has quit [Ping timeout: 265 seconds]
Giordano has joined #ruby
DEA7TH has joined #ruby
adgtl has joined #ruby
<ramortegui> thanks havenwood I'll try.
snguyen has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
snguyen has joined #ruby
idefine has joined #ruby
DEA7TH has quit [Client Quit]
chipotle has quit [Quit: cheerio]
idefine has quit [Ping timeout: 250 seconds]
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
KensoDev has joined #ruby
arthropododo has quit [Quit: Leaving]
yfeldblum has joined #ruby
adgtl has quit []
darkf_ has quit [Ping timeout: 240 seconds]
darkf has joined #ruby
skweek has quit [Ping timeout: 260 seconds]
PolarIce has joined #ruby
skweek has joined #ruby
moeabdol2 has quit [Ping timeout: 276 seconds]
swills has joined #ruby
processid has quit [Quit: Connection closed for inactivity]
dkam has joined #ruby
Rodya_ has quit [Quit: Leaving...]
blackgoat has joined #ruby
agentmee1kat has quit [Ping timeout: 276 seconds]
asianMike has joined #ruby
agentmeerkat has joined #ruby
Guest65756 is now known as BLuEGoD
BLuEGoD is now known as Guest77964
DanKnox has joined #ruby
DanKnox_ has joined #ruby
dkam has quit [Ping timeout: 250 seconds]
asccigcc has quit [Quit: asccigcc]
agentmeerkat has quit [Ping timeout: 250 seconds]
terminal_ has joined #ruby
DynamicMetaFlow has quit [Remote host closed the connection]
krz has quit [Ping timeout: 252 seconds]
krzkrz has joined #ruby
agentmeerkat has joined #ruby
DanKnox_ has quit [Ping timeout: 260 seconds]
DanKnox has quit [Ping timeout: 260 seconds]
ramortegui has quit [Quit: Leaving]
karapetyan has joined #ruby
terminal_ is now known as gigatexal
rkazak has joined #ruby
itsgokul has joined #ruby
fedexo has quit [Ping timeout: 260 seconds]
mary5030 has joined #ruby
lxsameer has joined #ruby
saneax_AFK is now known as saneax
karapetyan has quit [Ping timeout: 252 seconds]
mephistophocles has joined #ruby
mary5030 has quit [Ping timeout: 250 seconds]
chipotle has joined #ruby
hakunin has joined #ruby
hakunin has quit [Read error: Connection reset by peer]
hakunin has joined #ruby
LoneHermit has joined #ruby
clauswitt has joined #ruby
chouhoulis has joined #ruby
sauvin has joined #ruby
tildes has quit [Ping timeout: 240 seconds]
Rodya_ has joined #ruby
LoneHermit has quit [Ping timeout: 264 seconds]
pawnbox has joined #ruby
clauswitt has quit [Client Quit]
vandemar has left #ruby [#ruby]
chouhoulis has quit [Ping timeout: 276 seconds]
bluOxigen has joined #ruby
Giordano has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Giordano has joined #ruby
gigatexal has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
agentmeerkat has quit [Read error: Connection reset by peer]
x77686d has quit [Quit: x77686d]
Diaoer has quit [Ping timeout: 260 seconds]
flughafen_ has quit [Ping timeout: 252 seconds]
Diaoer has joined #ruby
Diaoer has quit [Max SendQ exceeded]
Diaoer has joined #ruby
Diaoer has quit [Max SendQ exceeded]
Diaoer has joined #ruby
timmyBsd has joined #ruby
Rodya_ has quit [Remote host closed the connection]
mhoungbo has quit [Ping timeout: 265 seconds]
floatingpoint has joined #ruby
bronson has joined #ruby
Rickmast_ has joined #ruby
chipotle has quit [Quit: cheerio]
asianMike has quit []
ur5us_ has quit [Remote host closed the connection]
Rickmasta has quit [Ping timeout: 250 seconds]
tjohnson has quit [Quit: Connection closed for inactivity]
freeze has quit [Ping timeout: 240 seconds]
bronson has quit [Ping timeout: 256 seconds]
resin has quit [Quit: leaving]
ziyadb has joined #ruby
SusieDerkins has joined #ruby
troulouliou_div2 has joined #ruby
aganov has joined #ruby
stannard has joined #ruby
<SusieDerkins> Hello, any advice for someone who is considering going to a bootcamp?
Melpaws has quit [Ping timeout: 252 seconds]
SweetSoulBro has joined #ruby
<SweetSoulBro> Whoever introduced me to YAML
<SweetSoulBro> thank you
KnownSyntax has quit [Read error: Connection reset by peer]
Melpaws has joined #ruby
zenergi_ has quit [Ping timeout: 256 seconds]
resin has joined #ruby
stannard has quit [Ping timeout: 248 seconds]
htmldrum has quit [Ping timeout: 265 seconds]
SusieDerkins has quit [Quit: Leaving]
intrigueD has joined #ruby
chipotle has joined #ruby
the_drow has joined #ruby
SusieDerkins has joined #ruby
yfeldblum has quit [Remote host closed the connection]
yfeldblum has joined #ruby
Rodya_ has joined #ruby
zenergi has joined #ruby
<Ox0dea> SweetSoulBro: You're welcome. :)
<SweetSoulBro> But
<SweetSoulBro> I have a question
elaptics`away is now known as elaptics
<SweetSoulBro> so I'm working on that thing
<SweetSoulBro> Hmn
shanemcd has joined #ruby
<Ox0dea> The IRC RPG thing?
<SweetSoulBro> Let me post a chunk of my markup
<SweetSoulBro> https://eval.in/520062
<SweetSoulBro> If I wanted them all to state "level 3" because i either entered or rolled for 3rd level
dkam has joined #ruby
<SweetSoulBro> Do I just go Fast Bab [Level 3] ?
<Ox0dea> Huh?
<Ox0dea> If your keys are sequential numbers, you want an Array.
<SweetSoulBro> ...huh.
<SweetSoulBro> Okay
<SweetSoulBro> That was my original thought.
Guest77964 is now known as BLuEGoD
ur5us has joined #ruby
<SweetSoulBro> How do I even do arrays in yaml? like normal?
neanderslob_ has joined #ruby
BLuEGoD is now known as Guest8459
<Ox0dea> "Like normal", or with dashes for bullets.
<SweetSoulBro> They're not outrightly sequentals
neanderslob_ has quit [Remote host closed the connection]
SkepBrain has joined #ruby
<SweetSoulBro> Like level 2 and level 3 for Reflex may be the same.
yardenbar has joined #ruby
<SweetSoulBro> It may go 1,1,2,2,2,3,3,4,4,5
neanderslob_ has joined #ruby
<Ox0dea> Those would be values, though, your keys are 1, 2, 3...
<SweetSoulBro> Ah
<SweetSoulBro> Yes.
shanemcd has quit [Ping timeout: 250 seconds]
neanderslob_ has quit [Remote host closed the connection]
solars has joined #ruby
aufi has joined #ruby
dkam has quit [Ping timeout: 240 seconds]
DanKnox has joined #ruby
diegoviola has quit [Ping timeout: 248 seconds]
jam_ has joined #ruby
<SweetSoulBro> ...I'm still lost
<SweetSoulBro> So if my key(THe level 1, 2, 3, etc) are sequential
DanKnox_ has joined #ruby
<SweetSoulBro> I can just put level 1/2/3/4/5/etc?
chipotle has quit [Quit: cheerio]
<SweetSoulBro> Hmn
<Ox0dea> SweetSoulBro: https://eval.in/520072
<SweetSoulBro> Let me update the list so I can show you what I'm tryi-
<SweetSoulBro> Oh
* SweetSoulBro hugs Ox0dea
<SweetSoulBro> Thank you.
<Ox0dea> <3
<Ox0dea> Happy to help.
<Ox0dea> Be advised that Ruby and YAML arrays are both 0-indexed.
blackmesa has joined #ruby
<SweetSoulBro> Yeah.
<SweetSoulBro> I learned about the 0 index bullshit way back when i started to learn programming in highschool
<SweetSoulBro> Thanks again
futilegames has joined #ruby
<Ox0dea> Having a dummy "Level 0" value is probably better than remembering to have to subtract 1.
<SweetSoulBro> Or adding 1 to the value always
y2mq37 has quit [Ping timeout: 240 seconds]
anisha has joined #ruby
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<SweetSoulBro> Now, here's the other question
<SweetSoulBro> If I say "Select 3", to make sure it does that just make sure the selection value is the same?
<SweetSoulBro> FOr example
srenatus has joined #ruby
<havenwood> >> 3.step.lazy.map { |n| ((Math::PI/Math::E) ** n).floor }.first 10
<ruby[bot]> havenwood: # => [1, 1, 2, 2, 2, 3, 3, 4, 4, 5] (https://eval.in/520073)
Giordano has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
<SweetSoulBro> in your example if I wanted to select the 5th level, i'd just make sure that the same varialbe, is the same for both.
<SweetSoulBro> Got it.
<SweetSoulBro> Thanks
<Ox0dea> SweetSoulBro: Have some Dijkstra: http://www.cs.utexas.edu/users/EWD/ewd08xx/EWD831.PDF
<SweetSoulBro> Bookmarked
<Ox0dea> 0-indexing is objectively superior.
<SweetSoulBro> I'm not saying it's not.
postmodern has quit [Quit: Leaving]
<SweetSoulBro> 0 makes more sense
<SweetSoulBro> the center of everything is not 1
<SweetSoulBro> it is zero
<Ox0dea> You called it bullshit?
<SweetSoulBro> I call a lot of things bullshit.
<Ox0dea> That seems like a bug.
<SweetSoulBro> It's an undocumented feature.
<SweetSoulBro> :D
CloCkWeRX has quit [Ping timeout: 252 seconds]
<SweetSoulBro> But yes, thanks as always.
<Ox0dea> No worries.
<SweetSoulBro> If I have any questions(I shouldn't), I'll be back~
freeze has joined #ruby
Don_John has quit [Quit: Later]
SweetSoulBro has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
Don_John has joined #ruby
DanKnox has quit [Ping timeout: 250 seconds]
DanKnox_ has quit [Ping timeout: 272 seconds]
abrin has quit [Ping timeout: 250 seconds]
<Ox0dea> havenwood: I need a general-purpose sequence-to-equation generator ten years ago.
last_staff has joined #ruby
<havenwood> Ox0dea: mmm
<Ox0dea> Still, the OEIS is a godsend.
rgtk has joined #ruby
PolarIce has quit [Ping timeout: 276 seconds]
<havenwood> indeed!
Deas has left #ruby ["Part"]
shiffles has joined #ruby
anisha has quit [Quit: This computer has gone to sleep]
anisha has joined #ruby
rgtk has quit [Ping timeout: 248 seconds]
chouhoulis has joined #ruby
intrigueD has quit [Remote host closed the connection]
infra-red has joined #ruby
shiffles has quit [Ping timeout: 260 seconds]
infra-re_ has joined #ruby
floatingpoint has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
cih has joined #ruby
chouhoulis has quit [Ping timeout: 248 seconds]
CloCkWeRX has joined #ruby
scepticulous has joined #ruby
PolarIce has joined #ruby
sandstrom has joined #ruby
infra-red has quit [Ping timeout: 264 seconds]
blackgoat has quit [Ping timeout: 252 seconds]
andikr has joined #ruby
tvw has joined #ruby
Mon_Ouie has quit [Ping timeout: 260 seconds]
cih has quit [Ping timeout: 264 seconds]
SusieDerkins has quit [Quit: Leaving]
nofxx has quit [Ping timeout: 250 seconds]
snguyen has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bluOxigen_ has joined #ruby
mhoungbo has joined #ruby
bklane has joined #ruby
bluOxigen has quit [Read error: No route to host]
bluOxigen has joined #ruby
bluOxigen_ has quit [Ping timeout: 250 seconds]
SweetSoulBro has joined #ruby
<SweetSoulBro> Hooray!
<SweetSoulBro> New problem!
<SweetSoulBro> I don't think the yaml gem is installed.
<SweetSoulBro> Complication: I'm using Windows.
blackmesa has quit [Ping timeout: 256 seconds]
the_drow has quit [Quit: This computer has gone to sleep]
PolarIce has quit [Remote host closed the connection]
clauswitt has joined #ruby
[dmp] has quit [Quit: WeeChat 1.3]
[dmp] has joined #ruby
frozen3 has joined #ruby
kent\n has quit [Quit: No Ping reply in 180 seconds.]
kent\n has joined #ruby
firstdayonthejob has joined #ruby
Macaveli has joined #ruby
baweaver has quit [Remote host closed the connection]
frozen3 has quit [Ping timeout: 272 seconds]
kmckelvin has quit [Ping timeout: 240 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
Don_John has quit [Read error: Connection reset by peer]
mdw has joined #ruby
amclain_ has quit [Quit: Leaving]
Macaveli_ has joined #ruby
LoneHermit has joined #ruby
Macaveli has quit [Ping timeout: 240 seconds]
sandstrom has joined #ruby
codecop has joined #ruby
mlehrer has joined #ruby
dkam has joined #ruby
skade has joined #ruby
bklane_ has joined #ruby
<SweetSoulBro> I fixed it
<SweetSoulBro> Nevermind!
SweetSoulBro has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
Guest8459 is now known as BLuEGoD
LoneHermit has quit [Ping timeout: 248 seconds]
BLuEGoD is now known as Guest83594
bklane has quit [Ping timeout: 252 seconds]
sakix has quit [Quit: Leaving]
GriffinHeart has joined #ruby
dionysus69 has joined #ruby
sphex_ has joined #ruby
Giordano has joined #ruby
bluOxigen_ has joined #ruby
lsmola has joined #ruby
sphex has quit [Read error: Connection reset by peer]
bklane_ has quit [Remote host closed the connection]
DanKnox_ has joined #ruby
DanKnox has joined #ruby
dkam has quit [Ping timeout: 250 seconds]
roshanavand has joined #ruby
bluOxigen has quit [Ping timeout: 240 seconds]
jaiks has joined #ruby
chipotle has joined #ruby
ta_ has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
AlphaAtom has joined #ruby
DanKnox_ has quit [Ping timeout: 256 seconds]
DanKnox has quit [Ping timeout: 256 seconds]
bklane has joined #ruby
futilegames has quit [Quit: futilegames]
sandstrom has quit [Quit: My computer has gone to sleep.]
Youngmathimus0 has quit [Read error: Connection reset by peer]
weemsledeux has joined #ruby
SCHAAP137 has joined #ruby
moei has quit [Quit: Leaving...]
jottr_ has joined #ruby
dnewkerk has quit [Quit: dnewkerk]
MuffinPimp has quit [Quit: ZNC - http://znc.in]
MuffinPimp has joined #ruby
chouhoulis has joined #ruby
Macaveli_ has quit [Quit: Textual IRC Client: www.textualapp.com]
Macaveli has joined #ruby
chipotle has quit [Quit: cheerio]
Melpaws has quit [Ping timeout: 252 seconds]
Melpaws has joined #ruby
chouhoulis has quit [Ping timeout: 250 seconds]
sepp2k has joined #ruby
al2o3-cr has joined #ruby
bklane has quit [Read error: Connection reset by peer]
bklane has joined #ruby
Macaveli has quit [Quit: Textual IRC Client: www.textualapp.com]
mwq has joined #ruby
fontain has joined #ruby
karapetyan has joined #ruby
sandstrom has joined #ruby
kmckelvin has joined #ruby
Macaveli has joined #ruby
Macaveli has quit [Max SendQ exceeded]
minimalism has quit [Ping timeout: 250 seconds]
Macaveli has joined #ruby
al2o3-cr has quit [Ping timeout: 260 seconds]
antgel has joined #ruby
timmyBsd has quit [Quit: WeeChat 1.4]
jottr_ has quit [Ping timeout: 252 seconds]
Zai00 has joined #ruby
charlemagne has joined #ruby
dkam has joined #ruby
the_drow has joined #ruby
bronson has joined #ruby
c0m0 has joined #ruby
Rodya_ has quit [Remote host closed the connection]
bluOxigen_ has quit [Ping timeout: 240 seconds]
johnny56_ has quit [Read error: Connection reset by peer]
rgtk has joined #ruby
TinkerTyper has quit [Read error: Connection reset by peer]
c0ncealed has quit [Remote host closed the connection]
pawnbox has joined #ruby
futilegames has joined #ruby
fontain has quit [Remote host closed the connection]
Antiarc has quit [Ping timeout: 240 seconds]
jam_ has quit [Remote host closed the connection]
aryaching has joined #ruby
dkam has quit [Ping timeout: 264 seconds]
resin has quit [Read error: Connection reset by peer]
resin has joined #ruby
yfeldblu_ has joined #ruby
norc_ has joined #ruby
roshanavand has quit [Remote host closed the connection]
bronson has quit [Ping timeout: 256 seconds]
c0ncealed has joined #ruby
einarj has joined #ruby
johnny56_ has joined #ruby
charlemagne has quit []
charlemagne has joined #ruby
Macaveli has quit [Quit: Textual IRC Client: www.textualapp.com]
bklane has quit [Remote host closed the connection]
stannard has joined #ruby
yfeldblum has quit [Ping timeout: 248 seconds]
firstdayonthejob has quit [Ping timeout: 260 seconds]
yfeldblu_ has quit [Ping timeout: 264 seconds]
stannard has quit [Ping timeout: 265 seconds]
neanderslob has joined #ruby
jcdesimp has quit [Remote host closed the connection]
futilegames has quit [Quit: futilegames]
Giordano has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
Antiarc has joined #ruby
roshanavand has joined #ruby
roshanavand has quit [Remote host closed the connection]
nettoweb has joined #ruby
pawnbox has quit [Remote host closed the connection]
last_staff1 has joined #ruby
karapetyan has quit [Remote host closed the connection]
cih has joined #ruby
patchedmonkey has joined #ruby
pawnbox has joined #ruby
TakumoKatekari is now known as Takumo
astrobunny has joined #ruby
last_staff has quit [Ping timeout: 256 seconds]
last_staff1 is now known as last_staff
blaxter has joined #ruby
cih has quit [Ping timeout: 272 seconds]
Guest83594 is now known as BLuEGoD
BLuEGoD is now known as Guest61111
ta has joined #ruby
devbug has joined #ruby
charlemagne has quit [Ping timeout: 240 seconds]
last_staff has quit [Quit: last_staff]
stannard has joined #ruby
mdw has joined #ruby
karapetyan has joined #ruby
elaptics is now known as elaptics`away
Melpaws has quit [Ping timeout: 256 seconds]
DanKnox_ has joined #ruby
DanKnox has joined #ruby
marienz has quit [Quit: upgrades!]
Melpaws has joined #ruby
stannard has quit [Ping timeout: 272 seconds]
marienz has joined #ruby
asprillia has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
astrobunny has quit [Remote host closed the connection]
DanKnox_ has quit [Ping timeout: 248 seconds]
DanKnox has quit [Ping timeout: 248 seconds]
Omen has quit [Read error: Connection reset by peer]
Omen has joined #ruby
astrobunny has joined #ruby
mdw has quit [Quit: Sleeping Zzzzz]
rdark has joined #ruby
minimalism has joined #ruby
chouhoulis has joined #ruby
RTG` has quit [Ping timeout: 252 seconds]
Omen has quit [Ping timeout: 260 seconds]
william3 has joined #ruby
RTG` has joined #ruby
chouhoulis has quit [Ping timeout: 276 seconds]
blaxter has quit [Quit: foo]
toretore has quit [Ping timeout: 240 seconds]
ex0ns_ has quit [Remote host closed the connection]
dangerousdave has joined #ruby
aupadhye has quit [Ping timeout: 250 seconds]
elaptics`away is now known as elaptics
shiver has quit [Remote host closed the connection]
GriffinHeart has quit [Remote host closed the connection]
aibot has quit [Remote host closed the connection]
shiver has joined #ruby
shiver has joined #ruby
shiver has quit [Changing host]
kirillzh has joined #ruby
ajaiswal_ has joined #ruby
ocbtec has joined #ruby
graffix222 has quit [Ping timeout: 265 seconds]
karapetyan has quit [Remote host closed the connection]
cih has joined #ruby
william3 has quit [Remote host closed the connection]
dkam has joined #ruby
Musashi007 has joined #ruby
platzhirsch has joined #ruby
ajaiswal_ has quit [Client Quit]
ajaiswal has quit [Ping timeout: 248 seconds]
blur3d has joined #ruby
the_drow_ has joined #ruby
snowbro has joined #ruby
aganov has quit [Ping timeout: 260 seconds]
paul__ has joined #ruby
rgtk has quit [Read error: Connection reset by peer]
zotherstupidguy has joined #ruby
rgtk has joined #ruby
pandaant has joined #ruby
the_drow has quit [Ping timeout: 248 seconds]
aganov has joined #ruby
unsymbol has quit [Quit: cheerio]
karapetyan has joined #ruby
unsymbol has joined #ruby
blackgoat has joined #ruby
blackgoat has quit [Client Quit]
ocbtec has quit [Quit: leaving]
ocbtec has joined #ruby
Hobbyboy has quit [Ping timeout: 240 seconds]
snowbro is now known as Snowy
berserk_ren has quit [Ping timeout: 252 seconds]
duncannz has quit [Remote host closed the connection]
dkam has quit [Ping timeout: 250 seconds]
baweaver has joined #ruby
ex0ns has joined #ruby
dmolina has joined #ruby
william3 has joined #ruby
Hobbyboy has joined #ruby
roshanavand has joined #ruby
graffix222 has joined #ruby
baweaver has quit [Ping timeout: 250 seconds]
aibot has joined #ruby
william3 has quit [Ping timeout: 250 seconds]
paul__ has quit []
atmosx has joined #ruby
UtkarshRay has joined #ruby
glcx has joined #ruby
glcx has joined #ruby
rodfersou has joined #ruby
Xeago has joined #ruby
roshanavand has quit [Remote host closed the connection]
cih has quit [Read error: Connection reset by peer]
FooMunki has joined #ruby
ljames has quit [*.net *.split]
zapata has quit [*.net *.split]
sol_ has quit [*.net *.split]
pocketprotector has quit [*.net *.split]
aep has quit [*.net *.split]
sarlalian has quit [*.net *.split]
Xat` has quit [*.net *.split]
djellemah has quit [*.net *.split]
patronus has quit [*.net *.split]
braidn has quit [*.net *.split]
olblak has quit [*.net *.split]
shellie_ has quit [*.net *.split]
j0n3 has quit [*.net *.split]
Outlastsheep has quit [*.net *.split]
z3uS has quit [*.net *.split]
thomasfedb has quit [*.net *.split]
kriskropd has quit [*.net *.split]
psmolen has quit [*.net *.split]
jokester has quit [*.net *.split]
roger_rabbit has quit [*.net *.split]
Jamo has quit [*.net *.split]
djbkd has quit [*.net *.split]
dyce_ has quit [*.net *.split]
Diabolik has quit [*.net *.split]
xMopxShell has quit [*.net *.split]
golgaroth has quit [*.net *.split]
gmci has quit [*.net *.split]
bove has quit [*.net *.split]
jmhmccr has quit [*.net *.split]
mrfooo has quit [*.net *.split]
devster31 has quit [*.net *.split]
connor_goodwolf has quit [*.net *.split]
Emmanuel_Chanel has quit [*.net *.split]
olspookishmagus has quit [*.net *.split]
AustinIncognito has quit [*.net *.split]
pmarreck has quit [*.net *.split]
artmann_ has quit [*.net *.split]
boxrick1 has quit [*.net *.split]
ohcibi has quit [*.net *.split]
nemesit|znc has quit [*.net *.split]
segmond has quit [*.net *.split]
heinrich5991 has quit [*.net *.split]
linduxed has quit [*.net *.split]
Fire-Dragon-DoL has quit [*.net *.split]
gnarf has quit [*.net *.split]
Lightsword has quit [*.net *.split]
heftig has quit [*.net *.split]
Guest91807 has quit [*.net *.split]
greenhat_ has quit [*.net *.split]
twistedpixels has quit [*.net *.split]
heyimwill has quit [*.net *.split]
ahuman has quit [*.net *.split]
zenguy_pc has quit [*.net *.split]
heidar has quit [*.net *.split]
philtr has quit [*.net *.split]
deepak has quit [*.net *.split]
arian0n_ has quit [*.net *.split]
raenk_ has quit [*.net *.split]
Ankhers has quit [*.net *.split]
S01780 has quit [*.net *.split]
Amnez777 has quit [*.net *.split]
kireevco has quit [*.net *.split]
Elysia has quit [*.net *.split]
ljarvis has quit [*.net *.split]
HashNuke has quit [*.net *.split]
daxroc has quit [*.net *.split]
swgillespie has quit [*.net *.split]
DefV has quit [*.net *.split]
mistym has quit [*.net *.split]
davidcelis has quit [*.net *.split]
j0bk_ has quit [*.net *.split]
livcd_ has quit [*.net *.split]
sung__ has quit [*.net *.split]
justinweiss has quit [*.net *.split]
benlakey has quit [*.net *.split]
jabreity has quit [*.net *.split]
Veejay has quit [*.net *.split]
Olipro has quit [*.net *.split]
kloeri has quit [*.net *.split]
Keltia has quit [*.net *.split]
jevs has quit [*.net *.split]
tejasmanohar has quit [*.net *.split]
spastorino has quit [*.net *.split]
jpinnix_______ has quit [*.net *.split]
joaomdmoura__ has quit [*.net *.split]
zzak__ has quit [*.net *.split]
df has quit [*.net *.split]
brixen has quit [*.net *.split]
Arcaire has quit [*.net *.split]
angiebadillo has quit [*.net *.split]
deeprave has quit [*.net *.split]
akitada has quit [*.net *.split]
thesheff17 has quit [*.net *.split]
charles81 has quit [*.net *.split]
alxndr has quit [*.net *.split]
jcp has quit [*.net *.split]
callumacrae has quit [*.net *.split]
pizzaops has quit [*.net *.split]
ggherdov_ has quit [*.net *.split]
kalzz has quit [*.net *.split]
fumduq has quit [*.net *.split]
cbetta has quit [*.net *.split]
Petazz_ has quit [*.net *.split]
kiki_lamb has quit [*.net *.split]
SebastianThorn has quit [*.net *.split]
borkdude_ has quit [*.net *.split]
muvbit has quit [*.net *.split]
contradictioned has quit [*.net *.split]
kalleth has quit [*.net *.split]
ByronJohnson has quit [*.net *.split]
th__ has quit [*.net *.split]
fourq has quit [*.net *.split]
moufl has quit [*.net *.split]
rtl has quit [*.net *.split]
DenSchub has quit [*.net *.split]
veloutin has quit [*.net *.split]
spk has quit [*.net *.split]
xybre has quit [*.net *.split]
majjoha has quit [*.net *.split]
\13k has quit [*.net *.split]
mhenrixon has quit [*.net *.split]
miah has quit [*.net *.split]
cscheib_ has quit [*.net *.split]
utkarsh has quit [*.net *.split]
knowtheory has quit [*.net *.split]
ssm has quit [*.net *.split]
lannonbr has quit [*.net *.split]
ELCALOR has quit [*.net *.split]
fuzzyfuzz has quit [*.net *.split]
pabs has quit [*.net *.split]
SuperTux88 has quit [*.net *.split]
silverdust has quit [*.net *.split]
Raboo has quit [*.net *.split]
colstrom has quit [*.net *.split]
kapowaz has quit [*.net *.split]
dukedave has quit [*.net *.split]
schaary has quit [*.net *.split]
djbender has quit [*.net *.split]
shelling__ has quit [*.net *.split]
akahn has quit [*.net *.split]
mroth has quit [*.net *.split]
avdi has quit [*.net *.split]
Eleeleth has quit [*.net *.split]
avelldiroll has quit [*.net *.split]
Drakx has quit [*.net *.split]
soahccc has quit [*.net *.split]
elektronaut has quit [*.net *.split]
KramerC has quit [*.net *.split]
phrozen77 has quit [*.net *.split]
sekrit has quit [*.net *.split]
IceDragon has quit [*.net *.split]
ujjain has quit [*.net *.split]
galeido has quit [*.net *.split]
Paradox has quit [*.net *.split]
krasnus has quit [*.net *.split]
gremax has quit [*.net *.split]
dellavg has quit [*.net *.split]
epitron has quit [*.net *.split]
olblak has joined #ruby
soahccc has joined #ruby
greenhat has joined #ruby
muvbit has joined #ruby
heftig has joined #ruby
th_ has joined #ruby
IceDragon has joined #ruby
Jamo has joined #ruby
twistedpixels has joined #ruby
Drakx has joined #ruby
livcd has joined #ruby
twistedpixels has joined #ruby
Keltia has joined #ruby
cscheib has joined #ruby
FooMunki has quit [Client Quit]
twistedpixels has quit [Changing host]
philtr has joined #ruby
galeido has joined #ruby
galeido has joined #ruby
galeido has quit [Changing host]
ahuman has joined #ruby
arian0n_ has joined #ruby
patronus has joined #ruby
SebastianThorn has joined #ruby
rtl has joined #ruby
miah has joined #ruby
lannonbr has joined #ruby
raenk has joined #ruby
aep has joined #ruby
ljarvis has joined #ruby
sung has joined #ruby
sung has joined #ruby
Xat` has joined #ruby
veloutin has joined #ruby
spk has joined #ruby
shellie_ has joined #ruby
z3uS has joined #ruby
kiki_lamb has joined #ruby
Raboo has joined #ruby
connor_goodwolf has joined #ruby
olspookishmagus has joined #ruby
DefV has joined #ruby
fourq has joined #ruby
j0bk has joined #ruby
Amnez777 has joined #ruby
majjoha has joined #ruby
Paradox has joined #ruby
heinrich5991 has joined #ruby
Petazz has joined #ruby
jokester has joined #ruby
heidar has joined #ruby
elektronaut has joined #ruby
Emmanuel_Chanel has joined #ruby
Olipro has joined #ruby
fuzzyfuzz has joined #ruby
xMopxShell has joined #ruby
KramerC has joined #ruby
sarlalian has joined #ruby
AustinMatherne has joined #ruby
segmond has joined #ruby
pabs has joined #ruby
Veejay has joined #ruby
Diabolik has joined #ruby
kloeri has joined #ruby
moufl has joined #ruby
Elysia has joined #ruby
FooMunki has joined #ruby
\13k has joined #ruby
psmolen has joined #ruby
IceDragon is now known as Guest23154
fumduq has joined #ruby
borkdude has joined #ruby
djbkd has joined #ruby
nemesit|znc has joined #ruby
Lightsword has joined #ruby
berserk_ren has joined #ruby
df has joined #ruby
olspookishmagus is now known as Guest87933
fourq is now known as Guest38198
Olipro is now known as Guest37191
zenguy_pc has joined #ruby
pocketprotector has joined #ruby
davidcelis has joined #ruby
davidcelis has quit [Changing host]
davidcelis has joined #ruby
Ankhers has joined #ruby
djellemah has joined #ruby
mhenrixon has joined #ruby
dellavg has joined #ruby
ssm has joined #ruby
Olipro_ has joined #ruby
roger_rabbit has joined #ruby
mistym has joined #ruby
mistym has joined #ruby
contradictioned has joined #ruby
kalleth has joined #ruby
thomasfedb has joined #ruby
william3 has joined #ruby
ohcibi has joined #ruby
artmann has joined #ruby
thomasfedb has quit [Changing host]
thomasfedb has joined #ruby
utkarsh has joined #ruby
cih has joined #ruby
devster31 has joined #ruby
Fire-Dragon-DoL has joined #ruby
avelldiroll has joined #ruby
g3funk has joined #ruby
phrozen77 has joined #ruby
xybre has joined #ruby
kriskropd has joined #ruby
dyce_ has joined #ruby
DenSchub has joined #ruby
blackgoat has joined #ruby
j0n3 has joined #ruby
gremax has joined #ruby
roshanavand has joined #ruby
ur5us has quit [Remote host closed the connection]
SuperTux88 has joined #ruby
jzigmund_ has quit [Ping timeout: 250 seconds]
sekrit has joined #ruby
kalzz has joined #ruby
mwq has left #ruby [#ruby]
cpup has quit [Ping timeout: 272 seconds]
linduxed has joined #ruby
sol_ has joined #ruby
brixen has joined #ruby
ujjain has joined #ruby
ujjain has quit [Changing host]
ujjain has joined #ruby
Guest61111 is now known as BLuEGoD
gagrio has quit [Ping timeout: 250 seconds]
nibbo has quit [Ping timeout: 265 seconds]
ljames has joined #ruby
kallisti5 has quit [Ping timeout: 272 seconds]
Guest56206 has joined #ruby
silverdust has joined #ruby
kallisti5 has joined #ruby
jzigmund has joined #ruby
angiebadillo has joined #ruby
jevs has joined #ruby
silverdust is now known as Guest13231
justinweiss has joined #ruby
S01780 has joined #ruby
BLuEGoD is now known as Guest19017
Eleeleth has joined #ruby
epitron has joined #ruby
gnarf has joined #ruby
minimalism has quit [Ping timeout: 256 seconds]
nibbo has joined #ruby
jcp has joined #ruby
mroth has joined #ruby
pizzaops has joined #ruby
dangerousdave has quit [Quit: Textual IRC Client: www.textualapp.com]
evidex has joined #ruby
swgillespie has joined #ruby
djbender has joined #ruby
HashNuke has joined #ruby
daxroc has joined #ruby
golgaroth has joined #ruby
Guest13231 is now known as silverdust
dukedave has joined #ruby
schaary has joined #ruby
silverdust is now known as Guest49758
jpinnix_______ has joined #ruby
thesheff17 has joined #ruby
jabreity has joined #ruby
deeprave has joined #ruby
cpup has joined #ruby
roshanavand has quit [Remote host closed the connection]
boxrick1 has joined #ruby
Guest49758 is now known as silverdust
silverdust has quit [Changing host]
silverdust has joined #ruby
joonty has joined #ruby
zapata has joined #ruby
kapowaz has joined #ruby
ELCALOR has joined #ruby
gmci has joined #ruby
colstrom has joined #ruby
Cohedrin_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
tejasmanohar has joined #ruby
_whitelogger has joined #ruby
ddfreyne has joined #ruby
Domaldel has joined #ruby
jokester has joined #ruby
jazzonmymind has joined #ruby
andrewvos has joined #ruby
jaiks has joined #ruby
karapetyan has joined #ruby
shevy has joined #ruby
pawnbox has joined #ruby
william3 has joined #ruby
Xeago has joined #ruby
blackms has joined #ruby
shelling__ has joined #ruby
sepp2k has joined #ruby
voker57 has joined #ruby
voker57 has joined #ruby
shiver has joined #ruby
shiver has quit [Changing host]
shiver has joined #ruby
borkdude has joined #ruby
kalleth has joined #ruby
contradictioned has joined #ruby
artmann has joined #ruby
sarlalian has joined #ruby
Nanuq has joined #ruby
bodgix has joined #ruby
rkazak has quit [Quit: Sleep.....ing....]
clauswitt has joined #ruby
soahccc has joined #ruby
cjk101010 has joined #ruby
ohcibi has joined #ruby
phrozen77 has joined #ruby
blaxter has joined #ruby
brixen has joined #ruby
St1gma has joined #ruby
elektronaut has joined #ruby
drPoggs has joined #ruby
Trieste has joined #ruby
nemesit|znc has joined #ruby
modin has joined #ruby
johnny56_ has joined #ruby
astrobunny has quit [Remote host closed the connection]
RTG` has joined #ruby
DanKnox has joined #ruby
ggherdov_ has joined #ruby
kireevco has joined #ruby
joaomdmoura__ has joined #ruby
akahn has joined #ruby
akitada has joined #ruby
mrfooo has joined #ruby
charles81 has joined #ruby
avdi has joined #ruby
devbug has quit [Ping timeout: 252 seconds]
zzak__ has joined #ruby
william3 has quit [*.net *.split]
ocbtec has quit [*.net *.split]
kallisti5 has quit [*.net *.split]
DenSchub has quit [*.net *.split]
utkarsh has quit [*.net *.split]
berserk_ren has quit [*.net *.split]
FooMunki has quit [*.net *.split]
Emmanuel_Chanel has quit [*.net *.split]
Paradox has quit [*.net *.split]
heinrich5991 has quit [*.net *.split]
Fire-Dragon-DoL has quit [*.net *.split]
j0bk has quit [*.net *.split]
gnarf has quit [*.net *.split]
zenguy_pc has quit [*.net *.split]
shellie_ has quit [*.net *.split]
livcd has quit [*.net *.split]
Jamo has quit [*.net *.split]
nettoweb has quit [*.net *.split]
Zai00 has quit [*.net *.split]
infra-re_ has quit [*.net *.split]
SkepBrain has quit [*.net *.split]
yardenbar has quit [*.net *.split]
Derailed has quit [*.net *.split]
crowell has quit [*.net *.split]
spacemud has quit [*.net *.split]
Suntzu has quit [*.net *.split]
mclee has quit [*.net *.split]
Guest27566 has quit [*.net *.split]
ruisantos has quit [*.net *.split]
groundnuty has quit [*.net *.split]
microt has quit [*.net *.split]
tercenya has quit [*.net *.split]
sonne_ has quit [*.net *.split]
thejoecarroll_ has quit [*.net *.split]
Koshian has quit [*.net *.split]
parus has quit [*.net *.split]
Gadgetoid has quit [*.net *.split]
tenderlove has quit [*.net *.split]
ESpiney has quit [*.net *.split]
dasher00 has quit [*.net *.split]
rikai has quit [*.net *.split]
tokik has quit [*.net *.split]
Terens has quit [*.net *.split]
pseudocumenyl has quit [*.net *.split]
EvilRoey has quit [*.net *.split]
n1colas has quit [*.net *.split]
deepak has joined #ruby
j0bk has joined #ruby
Jamo has joined #ruby
trinaldi has joined #ruby
livcd has joined #ruby
Fire-Dragon-DoL has joined #ruby
heinrich5991 has joined #ruby
Biohazard has joined #ruby
parus has joined #ruby
ruisantos has joined #ruby
Gadgetoid has joined #ruby
Zai00 has joined #ruby
zenguy_pc has joined #ruby
shellie_ has joined #ruby
Suntzu has joined #ruby
SkepBrain has joined #ruby
ex0ns has quit [Remote host closed the connection]
mclee has joined #ruby
tokik has joined #ruby
Mekkis has quit [Max SendQ exceeded]
p1k has quit [Ping timeout: 240 seconds]
Emmanuel_Chanel has joined #ruby
ESpiney has joined #ruby
Koshian has joined #ruby
tenderlove has joined #ruby
dasher00 has joined #ruby
n1colas has joined #ruby
william3 has joined #ruby
Biohazard is now known as Guest94838
spacemud has joined #ruby
tercenya has joined #ruby
infra-red has joined #ruby
Paradox has joined #ruby
ocbtec has joined #ruby
cookiez has joined #ruby
nettoweb has joined #ruby
FooMunki has joined #ruby
kallisti5 has joined #ruby
olblak has joined #ruby
Hobbyboy has joined #ruby
DanKnox_ has joined #ruby
gagrio has joined #ruby
utkarsh has joined #ruby
chipotle has joined #ruby
crowell has joined #ruby
crowell has quit [Changing host]
crowell has joined #ruby
thejoecarroll has joined #ruby
Mekkis has joined #ruby
rikai has joined #ruby
sonne has joined #ruby
knowtheory has joined #ruby
microt has joined #ruby
DenSchub has joined #ruby
berserk_ren has joined #ruby
EvilRoey has joined #ruby
yardenbar has joined #ruby
krzkrz has quit [Ping timeout: 260 seconds]
groundnuty has joined #ruby
joconcepts_ has quit [Remote host closed the connection]
gnarf has joined #ruby
pseudocumenyl has joined #ruby
S01780 has joined #ruby
dellavg has joined #ruby
jmhmccr has joined #ruby
dajobat has joined #ruby
c355e3b has joined #ruby
SuperTux88 has joined #ruby
gremax has joined #ruby
Derailed has joined #ruby
ex0ns has joined #ruby
justinweiss has joined #ruby
Musashi007 has quit [Quit: Musashi007]
Terens has joined #ruby
cbetta has joined #ruby
spastorino has joined #ruby
DanKnox has quit [Ping timeout: 265 seconds]
mroth has joined #ruby
pmarreck has joined #ruby
DanKnox_ has quit [Ping timeout: 252 seconds]
bove has joined #ruby
swgillespie has joined #ruby
deeprave has joined #ruby
kapowaz has joined #ruby
krasnus has joined #ruby
benlakey has joined #ruby
asprillia has joined #ruby
crayfishx has joined #ruby
jottr_ has joined #ruby
joconcepts has joined #ruby
mark1 has joined #ruby
Arcaire has joined #ruby
tvw has quit [Ping timeout: 250 seconds]
chouhoulis has joined #ruby
rgtk has quit []
Guest12896 has joined #ruby
p1k has joined #ruby
chipotle has quit [Quit: cheerio]
chouhoulis has quit [Ping timeout: 252 seconds]
joonty has joined #ruby
zotherstupidguy has quit [Ping timeout: 276 seconds]
andrewvos has quit [Ping timeout: 260 seconds]
andrewvos has joined #ruby
ohcibi has quit [Remote host closed the connection]
Diaoer has quit [Quit: Leaving]
nofxx has joined #ruby
nofxx has quit [Changing host]
nofxx has joined #ruby
dkam has joined #ruby
Melpaws1 has joined #ruby
shanemcd has joined #ruby
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Melpaws has quit [Ping timeout: 248 seconds]
graffix222 has quit [Ping timeout: 265 seconds]
aryaching_ has joined #ruby
platzhirsch has left #ruby [#ruby]
shanemcd has quit [Ping timeout: 248 seconds]
gagrio has quit [Ping timeout: 240 seconds]
graffix222 has joined #ruby
aryaching has quit [Ping timeout: 248 seconds]
aryaching has joined #ruby
jam_ has joined #ruby
yfeldblum has joined #ruby
Hounddog has joined #ruby
yfeldblum has quit [Remote host closed the connection]
Olipro_ is now known as Olipro
yfeldblum has joined #ruby
tvw has joined #ruby
aryaching_ has quit [Ping timeout: 272 seconds]
jam_ has quit [Ping timeout: 276 seconds]
aryaching_ has joined #ruby
minimalism has joined #ruby
sgambino has joined #ruby
aryaching has quit [Ping timeout: 276 seconds]
araujo has joined #ruby
araujo has joined #ruby
araujo has quit [Max SendQ exceeded]
araujo has joined #ruby
andrewvos has quit [Ping timeout: 272 seconds]
araujo has quit [Read error: Connection reset by peer]
abra0 has quit [Quit: ZNC - 1.6.0 - http://znc.in]
gagrio has joined #ruby
andrewvos has joined #ruby
minimalism has quit [Ping timeout: 250 seconds]
joonty has quit [*.net *.split]
spastorino has quit [*.net *.split]
justinweiss has quit [*.net *.split]
S01780 has quit [*.net *.split]
microt has quit [*.net *.split]
knowtheory has quit [*.net *.split]
utkarsh has quit [*.net *.split]
Paradox has quit [*.net *.split]
william3 has quit [*.net *.split]
tenderlove has quit [*.net *.split]
mrfooo has quit [*.net *.split]
voker57 has quit [*.net *.split]
shevy has quit [*.net *.split]
heftig has quit [*.net *.split]
alxndr has quit [*.net *.split]
tejasmanohar has quit [*.net *.split]
thesheff17 has quit [*.net *.split]
dukedave has quit [*.net *.split]
djbender has quit [*.net *.split]
daxroc has quit [*.net *.split]
evidex has quit [*.net *.split]
HashNuke has quit [*.net *.split]
Eleeleth has quit [*.net *.split]
jevs has quit [*.net *.split]
jzigmund has quit [*.net *.split]
xMopxShell has quit [*.net *.split]
kalzz has quit [*.net *.split]
Guest37191 has quit [*.net *.split]
Guest38198 has quit [*.net *.split]
Amnez777 has quit [*.net *.split]
SebastianThorn has quit [*.net *.split]
rtl has quit [*.net *.split]
philtr has quit [*.net *.split]
Drakx has quit [*.net *.split]
g3funk has quit [*.net *.split]
twistedpixels has quit [*.net *.split]
patchedmonkey has quit [*.net *.split]
sandstrom has quit [*.net *.split]
aufi has quit [*.net *.split]
Rickmast_ has quit [*.net *.split]
mephistophocles has quit [*.net *.split]
perrier_ has quit [*.net *.split]
gix has quit [*.net *.split]
howdoi has quit [*.net *.split]
znz_jp has quit [*.net *.split]
mrsolo has quit [*.net *.split]
mprelude_ has quit [*.net *.split]
sorah_ has quit [*.net *.split]
okdas_ has quit [*.net *.split]
ramblinpeck has quit [*.net *.split]
andersh has quit [*.net *.split]
adambeynon has quit [*.net *.split]
sushi_- has quit [*.net *.split]
jtdowney_ has quit [*.net *.split]
Ralf_J has quit [*.net *.split]
sami___ has quit [*.net *.split]
machty has quit [*.net *.split]
avahey has quit [*.net *.split]
blandflakes has quit [*.net *.split]
Spleeze has quit [*.net *.split]
duoi has quit [*.net *.split]
mahk has quit [*.net *.split]
bahar has quit [*.net *.split]
ekem has quit [*.net *.split]
creat has quit [*.net *.split]
gypsydave5 has quit [*.net *.split]
colegatron has quit [*.net *.split]
kalz has quit [*.net *.split]
redondos has quit [*.net *.split]
ProofTechnique has quit [*.net *.split]
llua has quit [*.net *.split]
rfv has quit [*.net *.split]
moshee has quit [*.net *.split]
bigkevmcd has quit [*.net *.split]
Muz_ has quit [*.net *.split]
ELLIOTTCABLE has quit [*.net *.split]
MiracleBlue___ has quit [*.net *.split]
Lloyd has quit [*.net *.split]
jmcc_______ has quit [*.net *.split]
Miron has quit [*.net *.split]
edulix has quit [*.net *.split]
Sou|cutter has quit [*.net *.split]
psyq has quit [*.net *.split]
__main__ has quit [*.net *.split]
sysanthrope has quit [*.net *.split]
shaman42 has quit [*.net *.split]
Nilium has quit [*.net *.split]
Rasi has quit [*.net *.split]
Rutix has quit [*.net *.split]
segy has quit [*.net *.split]
incomprehensibly has quit [*.net *.split]
ruurd has quit [*.net *.split]
CustosLimen has quit [*.net *.split]
jtperreault has quit [*.net *.split]
kaleido has quit [*.net *.split]
pipework has quit [*.net *.split]
Karunamon has quit [*.net *.split]
RealMarc has quit [*.net *.split]
jhass has quit [*.net *.split]
NightMonkey has quit [*.net *.split]
skakri has quit [*.net *.split]
slackR has quit [*.net *.split]
paultreny has quit [*.net *.split]
Cork has quit [*.net *.split]
ndrst has quit [*.net *.split]
riceandbeans has quit [*.net *.split]
peterhu has quit [*.net *.split]
wanderer has quit [*.net *.split]
Brando753 has quit [*.net *.split]
Tristan-Speccy has quit [*.net *.split]
tw1sted has quit [*.net *.split]
G has quit [*.net *.split]
cschneid has quit [*.net *.split]
epochwolf has quit [*.net *.split]
YaknotiS has quit [*.net *.split]
weaksauce has quit [*.net *.split]
bmn_ has quit [*.net *.split]
D9- has quit [*.net *.split]
JoL1hAHN has quit [*.net *.split]
moss has quit [*.net *.split]
ElderFain has quit [*.net *.split]
tim_s007 has quit [*.net *.split]
kies has quit [*.net *.split]
DarkBushido has quit [*.net *.split]
dmarr has quit [*.net *.split]
tylersmith has quit [*.net *.split]
Bilge- has quit [*.net *.split]
twe4ked has quit [*.net *.split]
Guest54293 has quit [*.net *.split]
bnagy has quit [*.net *.split]
yasu has quit [*.net *.split]
HaythamKenway has quit [*.net *.split]
plsk has quit [*.net *.split]
Zarthus has quit [*.net *.split]
pushcx has quit [*.net *.split]
drbrain has quit [*.net *.split]
Bish has quit [*.net *.split]
Nahra has quit [*.net *.split]
alem0lars has quit [*.net *.split]
SegFaultAX has quit [*.net *.split]
NfNitLoop has quit [*.net *.split]
Sigma00 has quit [*.net *.split]
yeltzooo9 has quit [*.net *.split]
`derpy has quit [*.net *.split]
bier_ has quit [*.net *.split]
rfi has quit [*.net *.split]
Apocalypse has quit [*.net *.split]
LiquidInsect has quit [*.net *.split]
clamstar has quit [*.net *.split]
ohcibi has joined #ruby
skakri has joined #ruby
sysanthrope has joined #ruby
Coraline has quit [*.net *.split]
okdas has joined #ruby
voker57 has joined #ruby
okdas has quit [Changing host]
okdas has joined #ruby
philtr has joined #ruby
voker57 has quit [Changing host]
voker57 has joined #ruby
kaleido has joined #ruby
heftig has joined #ruby
dmarr has joined #ruby
Sigma00 has joined #ruby
pushcx has joined #ruby
Nilium has joined #ruby
Zarthus has joined #ruby
moshee has joined #ruby
SebastianThorn has joined #ruby
jhass has joined #ruby
moshee has quit [Changing host]
moshee has joined #ruby
rfi has joined #ruby
shaman42 has joined #ruby
jtdowney has joined #ruby
jtdowney has quit [Changing host]
jtdowney has joined #ruby
gix has joined #ruby
Olipro_ has joined #ruby
creat has joined #ruby
shevy has joined #ruby
Muz has joined #ruby
Amnez777 has joined #ruby
mahk has joined #ruby
tim_s007 has joined #ruby
Karunamon has joined #ruby
pipework has joined #ruby
perrier_ has joined #ruby
aufi has joined #ruby
Nahra has joined #ruby
colegatron has joined #ruby
jzigmund has joined #ruby
epochwolf has joined #ruby
redondos has joined #ruby
redondos has joined #ruby
Nightmare has joined #ruby
joonty has joined #ruby
NfNitLoop has joined #ruby
mprelude_ has joined #ruby
sorah_ has joined #ruby
`derpy has joined #ruby
kies has joined #ruby
SegFaultAX has joined #ruby
bigkevmcd has joined #ruby
ElderFain has joined #ruby
yasu has joined #ruby
Sou|cutter has joined #ruby
DarkBushido has joined #ruby
tenderlove has joined #ruby
Miron has joined #ruby
Drakx has joined #ruby
cschneid has joined #ruby
evidex has joined #ruby
mephistophocles has joined #ruby
william3 has joined #ruby
bier has joined #ruby
pushcx is now known as Guest57222
Olipro_ is now known as Guest87780
Paradox has joined #ruby
tylersmith has joined #ruby
Rutix has joined #ruby
Rutix has joined #ruby
Brando753 has joined #ruby
ProofTechnique has joined #ruby
yeltzooo has joined #ruby
drbrain has joined #ruby
xMopxShell has joined #ruby
llua^_^AznSmile- has joined #ruby
jtperreault has joined #ruby
ekem has joined #ruby
bahar has joined #ruby
slackR has joined #ruby
segy has joined #ruby
patchedmonkey has joined #ruby
Rasi has joined #ruby
__main__ has joined #ruby
twistedpixels has joined #ruby
ndrst has joined #ruby
Tristan-Speccy has joined #ruby
twistedpixels has joined #ruby
twistedpixels has quit [Changing host]
NightMonkey has joined #ruby
RalfJ has joined #ruby
microt has joined #ruby
riceandbeans has joined #ruby
riceandbeans has quit [Changing host]
riceandbeans has joined #ruby
sami has joined #ruby
sushii has joined #ruby
paultreny has joined #ruby
psyq has joined #ruby
bmn has joined #ruby
ndrst is now known as Guest60723
duoi has joined #ruby
Tristan-Speccy is now known as Guest44167
YaknotiS has joined #ruby
Ariadeno has joined #ruby
D9_ has joined #ruby
utkarsh has joined #ruby
Tempesta has joined #ruby
paultreny is now known as Guest35568
edulix has joined #ruby
tw1sted has joined #ruby
wanderer_ has joined #ruby
g3funk has joined #ruby
CustosLimen has joined #ruby
D9_ is now known as Guest31363
sjohnsen has quit [Ping timeout: 250 seconds]
Apocalypse has joined #ruby
Bish has joined #ruby
Spleeze has joined #ruby
twe4ked has joined #ruby
kalzz has joined #ruby
Bilge has joined #ruby
bnagy has joined #ruby
znz_jp has joined #ruby
fourq has joined #ruby
gypsydave5 has joined #ruby
<EdwardIII> hrm i keep getting caught out by hash symbols vs strings for keys
BlindSight has quit [Quit: ZNC - http://znc.in]
MuffinPimp has quit [Ping timeout: 272 seconds]
ryotarai has quit [Ping timeout: 272 seconds]
gsingh93 has quit [Ping timeout: 272 seconds]
alexblom has quit [Ping timeout: 272 seconds]
<EdwardIII> guess i just need to be more careful
xMopxShell has quit [Max SendQ exceeded]
RealMarc has joined #ruby
fourq is now known as Guest76925
Cork has joined #ruby
BlindSight has joined #ruby
Rickmasta has joined #ruby
G has joined #ruby
MuffinPimp has joined #ruby
kalz has joined #ruby
xMopxShell has joined #ruby
kitallis has quit [Ping timeout: 272 seconds]
shtirlic has quit [Ping timeout: 272 seconds]
abra0 has joined #ruby
Petazz has quit [Ping timeout: 265 seconds]
moss has joined #ruby
Coraline has joined #ruby
LiquidInsect has joined #ruby
abra0 has quit [*.net *.split]
sysanthrope has quit [*.net *.split]
snapcase has quit [*.net *.split]
sysanthrope has joined #ruby
JoL1hAHN has joined #ruby
helpa has quit [Ping timeout: 272 seconds]
araujo has joined #ruby
araujo has joined #ruby
Petazz has joined #ruby
Macaveli has joined #ruby
ryotarai has joined #ruby
kitallis has joined #ruby
mondok has joined #ruby
ltd has quit [Ping timeout: 272 seconds]
peterhu has joined #ruby
Kryptonic has quit [Ping timeout: 250 seconds]
blackmesa has joined #ruby
ltd has joined #ruby
Eleeleth has joined #ruby
jmcc_______ has joined #ruby
S01780 has joined #ruby
gsingh93 has joined #ruby
alem0lars has joined #ruby
alexblom has joined #ruby
Spami has joined #ruby
rtl has joined #ruby
plsk has joined #ruby
doublemalt_ has joined #ruby
rfv has joined #ruby
thesheff17 has joined #ruby
gregf has joined #ruby
HashNuke has joined #ruby
ldnunes has joined #ruby
KervyN has quit [Quit: Au revoir -www.kervyn.de]
KervyN has joined #ruby
howdoi has joined #ruby
Guest19017 is now known as BLuEGoD
incomprehensibly has joined #ruby
Xeago has quit [Remote host closed the connection]
avahey has joined #ruby
jevs has joined #ruby
tejasmanohar has joined #ruby
Xeago has joined #ruby
zacstewart has joined #ruby
snapcase has joined #ruby
atmosx has quit [Quit: This is aparting message!]
daxroc has joined #ruby
Guest62344 has joined #ruby
ELLIOTTCABLE has joined #ruby
justinweiss has joined #ruby
Lloyd has joined #ruby
dukedave has joined #ruby
MiracleBlue___ has joined #ruby
adambeynon has joined #ruby
knowtheory has joined #ruby
djbender has joined #ruby
alxndr has joined #ruby
mrfooo has joined #ruby
sjohnsen has joined #ruby
machty has joined #ruby
hayden_ has joined #ruby
al2o3-cr has joined #ruby
mondok has quit [Ping timeout: 272 seconds]
spastorino has joined #ruby
ramblinpeck has joined #ruby
adambeynon has quit [*.net *.split]
avahey has quit [*.net *.split]
incomprehensibly has quit [*.net *.split]
rfv has quit [*.net *.split]
Spami has quit [*.net *.split]
jmcc_______ has quit [*.net *.split]
znz_jp has quit [*.net *.split]
Bilge has quit [*.net *.split]
YaknotiS has quit [*.net *.split]
Tempesta has quit [*.net *.split]
tylersmith has quit [*.net *.split]
Rasi has quit [*.net *.split]
william3 has quit [*.net *.split]
Miron has quit [*.net *.split]
drbrain has quit [*.net *.split]
redondos has quit [*.net *.split]
bmn has quit [*.net *.split]
perrier_ has quit [*.net *.split]
aufi has quit [*.net *.split]
Nahra has quit [*.net *.split]
jzigmund has quit [*.net *.split]
mahk has quit [*.net *.split]
DarkBushido has quit [*.net *.split]
epochwolf has quit [*.net *.split]
tim_s007 has quit [*.net *.split]
Karunamon has quit [*.net *.split]
creat has quit [*.net *.split]
Muz has quit [*.net *.split]
yfeldblum has quit [*.net *.split]
Melpaws1 has quit [*.net *.split]
deeprave has quit [*.net *.split]
cbetta has quit [*.net *.split]
mroth has quit [*.net *.split]
jmhmccr has quit [*.net *.split]
DenSchub has quit [*.net *.split]
thejoecarroll has quit [*.net *.split]
ocbtec has quit [*.net *.split]
ESpiney has quit [*.net *.split]
Guest94838 has quit [*.net *.split]
deepak has quit [*.net *.split]
avdi has quit [*.net *.split]
sepp2k has quit [*.net *.split]
jaiks has quit [*.net *.split]
ddfreyne has quit [*.net *.split]
Domaldel has quit [*.net *.split]
jazzonmymind has quit [*.net *.split]
angiebadillo has quit [*.net *.split]
mistym has quit [*.net *.split]
davidcelis has quit [*.net *.split]
avelldiroll has quit [*.net *.split]
dyce_ has quit [*.net *.split]
z3uS has quit [*.net *.split]
kiki_lamb has quit [*.net *.split]
Raboo has quit [*.net *.split]
connor_goodwolf has quit [*.net *.split]
miah has quit [*.net *.split]
unsymbol has quit [*.net *.split]
aganov has quit [*.net *.split]
blur3d has quit [*.net *.split]
norc_ has quit [*.net *.split]
AlphaAtom has quit [*.net *.split]
kent\n has quit [*.net *.split]
andikr has quit [*.net *.split]
srenatus has quit [*.net *.split]
zenlot2 has quit [*.net *.split]
dexter_ has quit [*.net *.split]
pwnd_nsfw` has quit [*.net *.split]
Damien22 has quit [*.net *.split]
Prira has quit [*.net *.split]
avenj has quit [*.net *.split]
yo61 has quit [*.net *.split]
iamdevnul has quit [*.net *.split]
Luna_Moonfang has quit [*.net *.split]
Liothen has quit [*.net *.split]
camilasann has quit [*.net *.split]
twodayslate has quit [*.net *.split]
cardoni has quit [*.net *.split]
bihi has quit [*.net *.split]
sponjii__ has quit [*.net *.split]
kellabyte has quit [*.net *.split]
chrisseaton has quit [*.net *.split]
sideshowcoder has quit [*.net *.split]
jord has quit [*.net *.split]
frankS2 has quit [*.net *.split]
mg^ has quit [*.net *.split]
Azure has quit [*.net *.split]
decoponio has quit [*.net *.split]
infernix has quit [*.net *.split]
async_prince has quit [*.net *.split]
Canar has quit [*.net *.split]
nlsun has quit [*.net *.split]
csaunders has quit [*.net *.split]
Mr0rris0 has quit [*.net *.split]
nickjj has quit [*.net *.split]
lipoqil has quit [*.net *.split]
tinnvec has quit [*.net *.split]
samuelkadolph has quit [*.net *.split]
stan has quit [*.net *.split]
Contigi has quit [*.net *.split]
tomaw has quit [*.net *.split]
cajone has quit [*.net *.split]
yorickpeterse has quit [*.net *.split]
FastJack has quit [*.net *.split]
acerna has quit [*.net *.split]
code_ has quit [*.net *.split]
Zacketh has quit [*.net *.split]
nwhirschfeld_ has quit [*.net *.split]
iooner has quit [*.net *.split]
vcoinminer___ has quit [*.net *.split]
skarn has quit [*.net *.split]
jlyndon has quit [*.net *.split]
imanc has quit [*.net *.split]
bluntman has quit [*.net *.split]
canton7 has quit [*.net *.split]
[spoiler] has quit [*.net *.split]
Affix has quit [*.net *.split]
Eising has quit [*.net *.split]
jokke has quit [*.net *.split]
bauruine has quit [*.net *.split]
Eiam has quit [*.net *.split]
existensil has quit [*.net *.split]
Cyrus has quit [*.net *.split]
bougyman has quit [*.net *.split]
ddv has quit [*.net *.split]
moncky has quit [*.net *.split]
ruby[bot] has quit [*.net *.split]
Seich has quit [*.net *.split]
pwned has quit [*.net *.split]
romero has quit [*.net *.split]
Esya- has quit [*.net *.split]
nomadic has quit [*.net *.split]
LBRapid has quit [*.net *.split]
catbusters has quit [*.net *.split]
tobiasvl has quit [*.net *.split]
Y_Ichiro has quit [*.net *.split]
cfloare has quit [*.net *.split]
vqrs has quit [*.net *.split]
kspencer has quit [*.net *.split]
oniMaker has quit [*.net *.split]
Anderson69s_Deb has quit [*.net *.split]
sponjii has joined #ruby
jzigmund has joined #ruby
csaunders has joined #ruby
romero has joined #ruby
tvl has joined #ruby
avenj has joined #ruby
avenj has quit [Changing host]
avenj has joined #ruby
andikr has joined #ruby
Damien22 has joined #ruby
DarkBushido has joined #ruby
bluntman has joined #ruby
Nahra has joined #ruby
camilasan has joined #ruby
ddfreyne has joined #ruby
Domaldel has joined #ruby
Bilge has joined #ruby
connor_goodwolf has joined #ruby
Biohazard_ has joined #ruby
canton7 has joined #ruby
Seich has joined #ruby
tylersmith has joined #ruby
jazzonmymind has joined #ruby
ocbtec has joined #ruby
Melpaws has joined #ruby
Anderson69s_Deb has joined #ruby
drbrain has joined #ruby
code_ has joined #ruby
perrier_ has joined #ruby
dexter_ has joined #ruby
nickjj has joined #ruby
yorickpeterse has joined #ruby
nlsun has joined #ruby
jokke has joined #ruby
aganov has joined #ruby
Spami has joined #ruby
pwned has joined #ruby
chthon has joined #ruby
zenlot2 has joined #ruby
cajone has joined #ruby
clamstar has joined #ruby
redondos has joined #ruby
tvl is now known as tobiasvl
SenpaiSilver has joined #ruby
oniMaker has joined #ruby
Cyrus has joined #ruby
yfeldblum has joined #ruby
epochwolf has joined #ruby
william3 has joined #ruby
decoponio has joined #ruby
bauruine has joined #ruby
thejoecarroll has joined #ruby
romero is now known as Guest55849
z3uS has joined #ruby
Azure has joined #ruby
iooner has joined #ruby
creat has joined #ruby
[spoiler] has joined #ruby
AlphaAtom has joined #ruby
norc_ has joined #ruby
Contigi has joined #ruby
Miron has joined #ruby
Tempesta has joined #ruby
Cyrus is now known as Guest71168
Prira has joined #ruby
aufi has joined #ruby
Luna_Moonfang has joined #ruby
Mr0riss0 has joined #ruby
Rasi has joined #ruby
ESpiney has joined #ruby
jzigmund has quit [Changing host]
jzigmund has joined #ruby
andikr has quit [Changing host]
andikr has joined #ruby
Karunamon has joined #ruby
jaiks has joined #ruby
blur3d has joined #ruby
miah has joined #ruby
async_prince has joined #ruby
Canar has joined #ruby
sepp2k has joined #ruby
Y_Ichiro has joined #ruby
mahk has joined #ruby
Y_Ichiro has quit [Changing host]
Y_Ichiro has joined #ruby
kent\n has joined #ruby
nomadic has joined #ruby
nwhirschfeld has joined #ruby
avelldiroll has joined #ruby
stan has joined #ruby
LBRapid has joined #ruby
samuelkadolph has joined #ruby
mg^ has joined #ruby
Muz has joined #ruby
Y_Ichiro has quit [Max SendQ exceeded]
tim_s007 has joined #ruby
SenpaiSilver has quit [Max SendQ exceeded]
catbusters has joined #ruby
bmn has joined #ruby
bougyman has joined #ruby
vqrs has joined #ruby
nomadic has quit [Changing host]
nomadic has joined #ruby
existensil has joined #ruby
tinnvec has joined #ruby
ddv has joined #ruby
mrsolo has joined #ruby
unsymbol has joined #ruby
dyce_ has joined #ruby
davidcelis has joined #ruby
davidcelis has quit [Changing host]
davidcelis has joined #ruby
patchedmonkey has quit [Read error: Connection reset by peer]
kspencer has joined #ruby
DenSchub has joined #ruby
Esya- has joined #ruby
FastJack has joined #ruby
SenpaiSilver has joined #ruby
pwnd_nsfw` has joined #ruby
tomaw has joined #ruby
Zackio has joined #ruby
andersh has joined #ruby
karapetyan has quit [Remote host closed the connection]
pawnbox has quit [Remote host closed the connection]
SenpaiSilver has quit [Max SendQ exceeded]
mistym has joined #ruby
Y_Ichiro has joined #ruby
bihi has joined #ruby
mistym has joined #ruby
mistym has quit [Changing host]
Icey has quit [Quit: No Ping reply in 180 seconds.]
colstrom has quit [Ping timeout: 257 seconds]
znz_jp has joined #ruby
Guest15707 has quit [Quit: No Ping reply in 180 seconds.]
lancetw has quit [Read error: Connection reset by peer]
fumduq has quit [Ping timeout: 272 seconds]
SenpaiSilver has joined #ruby
Liothen has joined #ruby
sysanthrope has quit [Ping timeout: 250 seconds]
CustosLimen has quit [Ping timeout: 265 seconds]
karapetyan has joined #ruby
zenlot2 is now known as zenlot
pabs has quit [Ping timeout: 272 seconds]
Papierkorb has quit [Ping timeout: 272 seconds]
<ljarvis> always use symbols. problem solved :)
cfloare has joined #ruby
tim_s007 has quit [Max SendQ exceeded]
Eising has joined #ruby
Raboo has joined #ruby
DanKnox has joined #ruby
DanKnox_ has joined #ruby
pabs has joined #ruby
rgs has quit [Ping timeout: 272 seconds]
tim_s007 has joined #ruby
fumduq has joined #ruby
rgs has joined #ruby
Affix has joined #ruby
Icey has joined #ruby
ruurd has joined #ruby
Papierkorb has joined #ruby
karapetyan has quit [Remote host closed the connection]
Affix is now known as Guest91025
pawnbox has joined #ruby
sysanthrope has joined #ruby
glcx has quit [Quit: This computer has gone to sleep]
jlyndon has joined #ruby
kiki_lamb has joined #ruby
moncky has joined #ruby
lipoqil has joined #ruby
vcoinminer has joined #ruby
nfsnobody has quit [*.net *.split]
cibs has quit [*.net *.split]
matt_d has quit [*.net *.split]
zack6849 has quit [*.net *.split]
fullstack has quit [*.net *.split]
voxxit has quit [*.net *.split]
fulgore_ has quit [*.net *.split]
RushPL has joined #ruby
skarn has joined #ruby
cbetta has joined #ruby
cardoni has joined #ruby
acerna has joined #ruby
ziyadb has quit [Quit: Connection closed for inactivity]
chrisseaton has joined #ruby
chthon has quit [Quit: Ex-Chat]
waka has quit [Remote host closed the connection]
srenatus has joined #ruby
kellabyte has joined #ruby
CustosLimen has joined #ruby
imanc has joined #ruby
sideshowcoder has joined #ruby
avahey has joined #ruby
jmcc_______ has joined #ruby
doublemalt_ has quit [Remote host closed the connection]
<apeiros> ljarvis: I tend to go the other route
Guest91025 has quit [Changing host]
Guest91025 has joined #ruby
waka has joined #ruby
Guest91025 is now known as Affix
<apeiros> if in doubt, never use symbols. but given that we now have GCable symbols, I might actually reconsider :)
DanKnox has quit [Ping timeout: 265 seconds]
incomprehensibly has joined #ruby
avdi has joined #ruby
<apeiros> o/ avdi
DanKnox_ has quit [Ping timeout: 276 seconds]
heyimwill has joined #ruby
jord has joined #ruby
deepak has joined #ruby
iamdevnul has joined #ruby
nfsnobody has joined #ruby
frankS2 has joined #ruby
adambeynon has joined #ruby
rfv has joined #ruby
ocbtec has quit [Quit: leaving]
twodayslate has joined #ruby
Jet4Fire has joined #ruby
chouhoulis has joined #ruby
charlemagne has joined #ruby
ocbtec has joined #ruby
Damien22 has quit [Ping timeout: 256 seconds]
angiebadillo has joined #ruby
deeprave has joined #ruby
jmhmccr has joined #ruby
dionysus69 has quit [Ping timeout: 256 seconds]
mroth has joined #ruby
matt_d has joined #ruby
infernix has joined #ruby
colstrom has joined #ruby
yo61 has joined #ruby
gagrio has quit [Ping timeout: 250 seconds]
stannard has joined #ruby
TheHodge has joined #ruby
lancetw has joined #ruby
chouhoulis has quit [Ping timeout: 250 seconds]
waka has quit [Remote host closed the connection]
moeabdol2 has joined #ruby
waka has joined #ruby
ready has joined #ruby
rdark has quit [Ping timeout: 276 seconds]
openstruct has joined #ruby
stannard has quit [Ping timeout: 240 seconds]
araujo has quit [Read error: Connection timed out]
gagrio has joined #ruby
dkam has quit [Remote host closed the connection]
araujo has joined #ruby
dkam has joined #ruby
moeabdol2 has quit [Ping timeout: 240 seconds]
BLuEGoD is now known as Guest17591
araujo has quit [Max SendQ exceeded]
araujo has joined #ruby
darkf_ has joined #ruby
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Xeago has quit [Remote host closed the connection]
charlema_ has joined #ruby
charlemagne has quit [Ping timeout: 250 seconds]
darkf has quit [Ping timeout: 260 seconds]
<EdwardIII> apeiros: heh
<EdwardIII> apeiros: why not 'if in doubt, always use symbols'?
<adaedra> Use ducks.
<adaedra> \_o<
<apeiros> because until ruby 2.2, symbols were never garbage collected
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<EdwardIII> got it, if in doubt, always use ducks
<EdwardIII> why symbols anyway? you get a tiny perf benefit i guess, any other reasons?
<EdwardIII> they look cool in the editor i guess
<apeiros> performance and memory, yes
wanderer_ is now known as wanderer
gregf has quit [Quit: WeeChat 1.4]
Spami has quit [Quit: This computer has gone to sleep]
bigkevmcd has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
moncky has quit [*.net *.split]
bihi has quit [*.net *.split]
mistym has quit [*.net *.split]
Muz has quit [*.net *.split]
Guest76925 has quit [*.net *.split]
gypsydave5 has quit [*.net *.split]
Ariadeno has quit [*.net *.split]
sami has quit [*.net *.split]
bnagy has quit [*.net *.split]
riceandbeans has quit [*.net *.split]
kallisti5 has quit [*.net *.split]
livcd has quit [*.net *.split]
devster31 has quit [*.net *.split]
Guest56206 has quit [*.net *.split]
sung has quit [*.net *.split]
rodfersou has quit [*.net *.split]
aibot has quit [*.net *.split]
pandaant has quit [*.net *.split]
codecop has quit [*.net *.split]
CloCkWeRX has quit [*.net *.split]
KensoDev has quit [*.net *.split]
whiteline has quit [*.net *.split]
kappy_ has quit [*.net *.split]
rethi_ has quit [*.net *.split]
sjums_ has quit [*.net *.split]
peteyg_ has quit [*.net *.split]
isene has quit [*.net *.split]
ammar has quit [*.net *.split]
hays has quit [*.net *.split]
wjimenez5271 has quit [*.net *.split]
havenwood has quit [*.net *.split]
TheMoonMaster has quit [*.net *.split]
guardian has quit [*.net *.split]
s00pcan has quit [*.net *.split]
Xiti has quit [*.net *.split]
ReK2 has quit [*.net *.split]
uxp has quit [*.net *.split]
ckrailo has quit [*.net *.split]
tommylom1ykins has quit [*.net *.split]
tabakhase has quit [*.net *.split]
matti has quit [*.net *.split]
oz has quit [*.net *.split]
attractiveape has quit [*.net *.split]
claw has quit [*.net *.split]
musl has quit [*.net *.split]
IanMalcolm has quit [*.net *.split]
iszak has quit [*.net *.split]
low-profile has quit [*.net *.split]
lilvim has quit [*.net *.split]
Shapeshifter has quit [*.net *.split]
Kero has quit [*.net *.split]
stryek has quit [*.net *.split]
giraffe has quit [*.net *.split]
programmerq has quit [*.net *.split]
nug has quit [*.net *.split]
ja has quit [*.net *.split]
michael_mbp has quit [*.net *.split]
Log1x has quit [*.net *.split]
ikonia has quit [*.net *.split]
codehotter has quit [*.net *.split]
gbailey has quit [*.net *.split]
Danielss89 has quit [*.net *.split]
tessier-ashpool has quit [*.net *.split]
_ko10 has quit [*.net *.split]
lguardiola_ has quit [*.net *.split]
pjaspers_ has quit [*.net *.split]
lady3bean_ has quit [*.net *.split]
theRoUS has quit [*.net *.split]
Kuukunen has quit [*.net *.split]
joevandyk has quit [*.net *.split]
Fraeon has quit [*.net *.split]
ammar has joined #ruby
rethi has joined #ruby
hays has joined #ruby
oz has joined #ruby
tessier-ashpool has joined #ruby
IanMalcolm has joined #ruby
devster31 has joined #ruby
sjums has joined #ruby
tommylommykins has joined #ruby
sami has joined #ruby
Danielss89 has joined #ruby
Shapeshifter has joined #ruby
pseudocumenyl is now known as CrazEd
Fraeon has joined #ruby
peteyg has joined #ruby
claw has joined #ruby
sung has joined #ruby
sung has quit [Changing host]
sung has joined #ruby
s00pcan has joined #ruby
fourq has joined #ruby
kappy has joined #ruby
uxp has joined #ruby
livcd has joined #ruby
rodfersou has joined #ruby
mistym has joined #ruby
mistym has quit [Changing host]
mistym has joined #ruby
moncky has joined #ruby
attractiveape has joined #ruby
matti has joined #ruby
kallisti5 has joined #ruby
Muz has joined #ruby
pjaspers has joined #ruby
Xiti has joined #ruby
aibot has joined #ruby
codecop has joined #ruby
matti has quit [Changing host]
matti has joined #ruby
giraffe has joined #ruby
iszak has joined #ruby
stryek has joined #ruby
iszak has joined #ruby
fourq is now known as Guest4785
havenwood has joined #ruby
havenwood has quit [Changing host]
havenwood has joined #ruby
Kuukunen has joined #ruby
joevandyk has joined #ruby
guardian has joined #ruby
bnagy has joined #ruby
tabakhase has joined #ruby
riceandbeans has joined #ruby
riceandbeans has quit [Changing host]
riceandbeans has joined #ruby
musl has joined #ruby
abra0 has joined #ruby
programmerq has joined #ruby
isene has joined #ruby
lady3bean has joined #ruby
codehotter has joined #ruby
CrazEd is now known as Guest78261
low-profile has joined #ruby
ReK2 has joined #ruby
ReK2 has quit [Changing host]
ReK2 has joined #ruby
ckrailo has joined #ruby
zapata has quit [Ping timeout: 260 seconds]
lguardiola has joined #ruby
itsgokul has quit [Quit: Leaving]
CloCkWeRX has joined #ruby
theRoUS has joined #ruby
Ariadeno has joined #ruby
whiteline has joined #ruby
baweaver has joined #ruby
_ko1 has joined #ruby
DanKnox has joined #ruby
DanKnox_ has joined #ruby
callumacrae has joined #ruby
Log1x has joined #ruby
gbailey has joined #ruby
Shaboum_ has joined #ruby
wjimenez5271 has joined #ruby
gnarld_ has joined #ruby
lilvim has joined #ruby
Kero has joined #ruby
tsunamie has joined #ruby
<apeiros> Coraline: regarding https://www.ruby-lang.org/en/conduct/ - what's your take on it?
gypsydave5 has joined #ruby
TheMoonMaster has joined #ruby
Guest62344 has quit [Remote host closed the connection]
<apeiros> I think it lacks procedures. i.e. what to do if you observer, or are the target of, a violation of the CoC :-/
bihi has joined #ruby
<apeiros> *observe
ikonia has joined #ruby
baweaver has quit [Ping timeout: 268 seconds]
<apeiros> hrm, actually -> #ruby-offtopic. sorry that I brought it up in here.
<shevy> let's discuss!!!
DanKnox_ has quit [Ping timeout: 276 seconds]
DanKnox has quit [Ping timeout: 276 seconds]
TheMoonMaster has quit [*.net *.split]
Shaboum_ has quit [*.net *.split]
theRoUS has quit [*.net *.split]
musl has quit [*.net *.split]
uxp has quit [*.net *.split]
Fraeon has quit [*.net *.split]
araujo has quit [*.net *.split]
waka has quit [*.net *.split]
pawnbox has quit [*.net *.split]
Icey has quit [*.net *.split]
davidcelis has quit [*.net *.split]
vqrs has quit [*.net *.split]
nickjj has quit [*.net *.split]
yorickpeterse has quit [*.net *.split]
Anderson69s_Deb has quit [*.net *.split]
canton7 has quit [*.net *.split]
connor_goodwolf has quit [*.net *.split]
peterhu has quit [*.net *.split]
Guest31363 has quit [*.net *.split]
joonty has quit [*.net *.split]
Sou|cutter has quit [*.net *.split]
Amnez777 has quit [*.net *.split]
tercenya has quit [*.net *.split]
Emmanuel_Chanel has quit [*.net *.split]
n1colas has quit [*.net *.split]
RTG` has quit [*.net *.split]
linduxed has quit [*.net *.split]
blackgoat has quit [*.net *.split]
kriskropd has quit [*.net *.split]
majjoha has quit [*.net *.split]
Xat` has quit [*.net *.split]
ahuman has quit [*.net *.split]
greenhat has quit [*.net *.split]
antgel has quit [*.net *.split]
[dmp] has quit [*.net *.split]
solars has quit [*.net *.split]
lxsameer has quit [*.net *.split]
Morrolan has quit [*.net *.split]
tesuji has quit [*.net *.split]
beawesomeinstead has quit [*.net *.split]
j2k_ has quit [*.net *.split]
ghoti_ has quit [*.net *.split]
mickey_mouse_3 has quit [*.net *.split]
ghr has quit [*.net *.split]
Ox0dea has quit [*.net *.split]
AlexRussia has quit [*.net *.split]
Mia has quit [*.net *.split]
mikeiniowa has quit [*.net *.split]
niko has quit [*.net *.split]
hfp has quit [*.net *.split]
v1n has quit [*.net *.split]
jhill__ has quit [*.net *.split]
theRealAlexz_ has quit [*.net *.split]
go|dfish has quit [*.net *.split]
coffeejunk has quit [*.net *.split]
yxhuvud has quit [*.net *.split]
devyn has quit [*.net *.split]
SirCmpwn has quit [*.net *.split]
LuckyABA has quit [*.net *.split]
mgorbach has quit [*.net *.split]
hightower3 has quit [*.net *.split]
hogetaro has quit [*.net *.split]
cats has quit [*.net *.split]
sts has quit [*.net *.split]
AnoHito_ has quit [*.net *.split]
ricer2 has quit [*.net *.split]
jinie has quit [*.net *.split]
ec\ has quit [*.net *.split]
mattpatt has quit [*.net *.split]
valeri_ufo has quit [*.net *.split]
Lorn has quit [*.net *.split]
lianj has quit [*.net *.split]
adam^ has quit [*.net *.split]
Meeh_ has quit [*.net *.split]
arthurnn has quit [*.net *.split]
dualbus has quit [*.net *.split]
jimeh has quit [*.net *.split]
zenspider has quit [*.net *.split]
lagweezle has quit [*.net *.split]
PaulePanter has quit [*.net *.split]
[ace] has quit [*.net *.split]
mhb has quit [*.net *.split]
woodruffw has quit [*.net *.split]
Drakevr has quit [*.net *.split]
tyil has quit [*.net *.split]
fold3 has quit [*.net *.split]
ericwood has quit [*.net *.split]
Phanes has quit [*.net *.split]
raldu has quit [*.net *.split]
isomorphismes has quit [*.net *.split]
Omni_ has quit [*.net *.split]
euoia has quit [*.net *.split]
mahlon has quit [*.net *.split]
justinmcp has quit [*.net *.split]
bogdanteleaga has quit [*.net *.split]
EdwardIII has quit [*.net *.split]
imajes has quit [*.net *.split]
wedgwood has quit [*.net *.split]
bob_f has quit [*.net *.split]
ged has quit [*.net *.split]
sevin has quit [*.net *.split]
bob_f has joined #ruby
_ko1 has quit [Quit: Quit Nadoka 0.8.4+git(v0.8.3-5-g0ae819a-dt)]
peterhu has joined #ruby
graffix222 is now known as graffix
ericwood has joined #ruby
Phanes has joined #ruby
Phanes has quit [Changing host]
Phanes has joined #ruby
connor_goodwolf has joined #ruby
sts has joined #ruby
ahuman has joined #ruby
Amnez777 has joined #ruby
Icey has joined #ruby
ricer2 has joined #ruby
jottr_ has quit [Ping timeout: 248 seconds]
PaulePanter has joined #ruby
isomorphismes has joined #ruby
yxhuvud has joined #ruby
hfp has joined #ruby
canton7 has joined #ruby
lxsameer has joined #ruby
lagweezle has joined #ruby
[ace] has joined #ruby
niko has joined #ruby
j2k has joined #ruby
Drakevr has joined #ruby
theRoUS has joined #ruby
bogdanteleaga has joined #ruby
Omni has joined #ruby
euoia has joined #ruby
AnoHito_ has joined #ruby
Anderson69s_Deb has joined #ruby
Mia has joined #ruby
Mia has quit [Changing host]
Mia has joined #ruby
joonty has joined #ruby
waka has joined #ruby
mgorbach has joined #ruby
mhb has joined #ruby
cats has joined #ruby
nickjj has joined #ruby
Ox0dea has joined #ruby
adam^ has joined #ruby
greenhat has joined #ruby
Sou|cutter has joined #ruby
tercenya has joined #ruby
ec\ has joined #ruby
blackgoat has joined #ruby
valeri_ufo has joined #ruby
pawnbox has joined #ruby
Omni is now known as Guest12587
araujo has joined #ruby
zenspider has joined #ruby
AlexRussia has joined #ruby
abra0 has quit [Quit: ZNC - 1.6.0 - http://znc.in]
ghoti has joined #ruby
jinie has joined #ruby
D9_ has joined #ruby
davidcelis has joined #ruby
davidcelis has joined #ruby
ged has joined #ruby
v1n has joined #ruby
woodruffw has joined #ruby
Emmanuel_Chanel has joined #ruby
hightower3 has joined #ruby
woodruffw has quit [Excess Flood]
raldu has joined #ruby
go|dfish has joined #ruby
coffeejunk has joined #ruby
uxp has joined #ruby
Shaboum_ has joined #ruby
EdwardIII has joined #ruby
beawesomeinstead has joined #ruby
Shaboum_ is now known as Shaboum
mickey_mouse has joined #ruby
imajes has joined #ruby
mahlon has joined #ruby
D9_ is now known as Guest87165
justinmcp has joined #ruby
majjoha has joined #ruby
mattpatt has joined #ruby
sts is now known as Guest53909
woodruffw has joined #ruby
Meeh has joined #ruby
fold3 has joined #ruby
[dmp] has joined #ruby
SirCmpwn has joined #ruby
platzhirsch has joined #ruby
pandaant has joined #ruby
n1colas has joined #ruby
kriskropd has joined #ruby
araujo has quit [Max SendQ exceeded]
tesuji has joined #ruby
arthurnn has joined #ruby
tyil has joined #ruby
Amnez777 has quit [Changing host]
Amnez777 has joined #ruby
dlitvak has joined #ruby
yorickpeterse has joined #ruby
solars has joined #ruby
_ko1 has joined #ruby
araujo has joined #ruby
jhill__ has joined #ruby
araujo has quit [Read error: Connection reset by peer]
Lorn has joined #ruby
dualbus has joined #ruby
zapata has joined #ruby
theRealAlexz has joined #ruby
jimeh has joined #ruby
TheMoonMaster has joined #ruby
blackmesa has quit [Ping timeout: 248 seconds]
Fraeon has joined #ruby
Morrolan has joined #ruby
roshanavand has joined #ruby
devyn has joined #ruby
Xeago has joined #ruby
chipotle has joined #ruby
<EdwardIII> hrm, when soap docs say <s:element name="RoomTypes" type="tns:ArrayOfString" minOccurs="0" maxOccurs="1"> what exactly do you think they mean heh?
<EdwardIII> i don't think savon is doing what they expect
niko has quit [*.net *.split]
gbailey has quit [*.net *.split]
CloCkWeRX has quit [*.net *.split]
giraffe has quit [*.net *.split]
codecop has quit [*.net *.split]
rodfersou has quit [*.net *.split]
Shapeshifter has quit [*.net *.split]
tommylommykins has quit [*.net *.split]
sami has quit [*.net *.split]
kiki_lamb has quit [*.net *.split]
SenpaiSilver has quit [*.net *.split]
sepp2k has quit [*.net *.split]
norc_ has quit [*.net *.split]
william3 has quit [*.net *.split]
code_ has quit [*.net *.split]
aganov has quit [*.net *.split]
perrier_ has quit [*.net *.split]
redondos has quit [*.net *.split]
Melpaws has quit [*.net *.split]
Guest71168 has quit [*.net *.split]
ldnunes has quit [*.net *.split]
rtl has quit [*.net *.split]
clamstar has quit [*.net *.split]
Guest44167 has quit [*.net *.split]
mephistophocles has quit [*.net *.split]
tenderlove has quit [*.net *.split]
kies has quit [*.net *.split]
mprelude_ has quit [*.net *.split]
shaman42 has quit [*.net *.split]
NfNitLoop has quit [*.net *.split]
psyq has quit [*.net *.split]
Guest57222 has quit [*.net *.split]
Sigma00 has quit [*.net *.split]
Derailed has quit [*.net *.split]
groundnuty has quit [*.net *.split]
FooMunki has quit [*.net *.split]
Suntzu has quit [*.net *.split]
Jamo has quit [*.net *.split]
galeido has quit [*.net *.split]
zenergi has quit [*.net *.split]
ujjain has quit [*.net *.split]
cpup has quit [*.net *.split]
djbkd has quit [*.net *.split]
fuzzyfuzz has quit [*.net *.split]
df has quit [*.net *.split]
patronus has quit [*.net *.split]
Keltia has quit [*.net *.split]
kloeri has quit [*.net *.split]
th__ has quit [*.net *.split]
Guest23154 has quit [*.net *.split]
the_drow_ has quit [*.net *.split]
resin has quit [*.net *.split]
scepticulous has quit [*.net *.split]
kp666 has quit [*.net *.split]
unl0ckd has quit [*.net *.split]
danzilio has quit [*.net *.split]
noodle has quit [*.net *.split]
PaulCapestany has quit [*.net *.split]
hadronzoo has quit [*.net *.split]
f4cl3y has quit [*.net *.split]
dtordable has quit [*.net *.split]
swistak35 has quit [*.net *.split]
Radar has quit [*.net *.split]
cyphactor has quit [*.net *.split]
drale2k has quit [*.net *.split]
zzerp has quit [*.net *.split]
SHyx0rmZ has quit [*.net *.split]
nchambers has quit [*.net *.split]
WebDawg has quit [*.net *.split]
A124 has quit [*.net *.split]
hplar has quit [*.net *.split]
bhaak has quit [*.net *.split]
Dreamer3 has quit [*.net *.split]
rhg135 has quit [*.net *.split]
Shidash has quit [*.net *.split]
p0p0pr37 has quit [*.net *.split]
jsaak has quit [*.net *.split]
SirFunk has quit [*.net *.split]
angelixd has quit [*.net *.split]
huyderman has quit [*.net *.split]
Kruppe has quit [*.net *.split]
papercode has quit [*.net *.split]
jud has quit [*.net *.split]
scottymeuk has quit [*.net *.split]
patteh has quit [*.net *.split]
euphoria has quit [*.net *.split]
guacamole has quit [*.net *.split]
BraddPit1 has quit [*.net *.split]
quarcu_ has quit [*.net *.split]
awk has quit [*.net *.split]
nertzy has quit [*.net *.split]
aredridel has quit [*.net *.split]
badeball has quit [*.net *.split]
ozzloy has quit [*.net *.split]
tris has quit [*.net *.split]
Laaw has quit [*.net *.split]
stevednd has quit [*.net *.split]
bafbomb has quit [*.net *.split]
kegster has quit [*.net *.split]
mmasaki has quit [*.net *.split]
hackeron has quit [*.net *.split]
Kamilion has quit [*.net *.split]
duracrisis has quit [*.net *.split]
shortdudey123 has quit [*.net *.split]
passcod has quit [*.net *.split]
eam has quit [*.net *.split]
redlegion has quit [*.net *.split]
kenichi has quit [*.net *.split]
pietr0 has quit [*.net *.split]
mc_fail has quit [*.net *.split]
conrfrmn has quit [*.net *.split]
chrisarcand has quit [*.net *.split]
mosez has quit [*.net *.split]
pleiosaur has quit [*.net *.split]
slash_nick has quit [*.net *.split]
MissionCritical has quit [*.net *.split]
chihhsin has quit [*.net *.split]
jericon_ has quit [*.net *.split]
headius has quit [*.net *.split]
Silex has quit [*.net *.split]
svkurowski_ has quit [*.net *.split]
ghormoon has quit [*.net *.split]
elaptics has quit [*.net *.split]
crankharder has quit [*.net *.split]
brainslug has quit [*.net *.split]
ebertx has quit [*.net *.split]
\pub\bash0r has quit [*.net *.split]
mburns has quit [*.net *.split]
csmb has quit [*.net *.split]
jpterry has quit [*.net *.split]
jtoy has quit [*.net *.split]
Djole has quit [*.net *.split]
sindork_ has quit [*.net *.split]
janelleb has quit [*.net *.split]
nitrix has quit [*.net *.split]
sunya7a__ has quit [*.net *.split]
alol_ has quit [*.net *.split]
wlanboy has quit [*.net *.split]
rcs has quit [*.net *.split]
bakedb has quit [*.net *.split]
jayne has quit [*.net *.split]
Scient has quit [*.net *.split]
dfoolz has quit [*.net *.split]
marens has quit [*.net *.split]
Davey has quit [*.net *.split]
apeiros has quit [*.net *.split]
raz has quit [*.net *.split]
maxmanders has quit [*.net *.split]
spectra has quit [*.net *.split]
martinbjeldbak has quit [*.net *.split]
Rush has quit [*.net *.split]
monoprotic has quit [*.net *.split]
joeyjones has quit [*.net *.split]
oddmunds has quit [*.net *.split]
suffice has quit [*.net *.split]
bradland has quit [*.net *.split]
bodie_ has quit [*.net *.split]
nirix has quit [*.net *.split]
marsjaninzmarsa has quit [*.net *.split]
Synthead has quit [*.net *.split]
bqscott has quit [*.net *.split]
znz_jp has quit [Quit: kill -QUIT $$]
th_ has joined #ruby
ujjain has joined #ruby
ujjain has quit [Changing host]
ujjain has joined #ruby
badeball has joined #ruby
alol has joined #ruby
ghormoon has joined #ruby
Shapeshifter has joined #ruby
suffice has joined #ruby
bafbomb has joined #ruby
pleiosaur has joined #ruby
marens has joined #ruby
marens has quit [Changing host]
marens has joined #ruby
Sigma00 has joined #ruby
conrfrmn has joined #ruby
galeido has joined #ruby
galeido has quit [Changing host]
galeido has joined #ruby
Djole has joined #ruby
patronus has joined #ruby
Radar has joined #ruby
perrier_ has joined #ruby
scottymeuk has joined #ruby
sami has joined #ruby
sami has quit [Changing host]
sami has joined #ruby
svkurowski has joined #ruby
aredridel has joined #ruby
mmasaki has joined #ruby
norc_ has joined #ruby
monoprotic has joined #ruby
monoprotic has quit [Changing host]
monoprotic has joined #ruby
maxmanders has joined #ruby
Suntzu has joined #ruby
th_ is now known as th__
rodfersou has joined #ruby
janelleb has joined #ruby
eam has joined #ruby
zenergi has joined #ruby
mprelude_ has joined #ruby
swistak35 has joined #ruby
bakedb has joined #ruby
Derailed has joined #ruby
the_drow_ has joined #ruby
kp666 has joined #ruby
codecop has joined #ruby
raz has joined #ruby
NfNitLoop has joined #ruby
<EdwardIII> i hate xml
pushcx has joined #ruby
fuzzyfuzz has joined #ruby
jericon has joined #ruby
f4cl3y has joined #ruby
aganov has joined #ruby
stevednd has joined #ruby
apeiros has joined #ruby
Guest71168 has joined #ruby
ozzloy has joined #ruby
ozzloy has quit [Changing host]
ozzloy has joined #ruby
DoubleMalt has joined #ruby
shaman42 has joined #ruby
william3 has joined #ruby
crankharder has joined #ruby
Silex has joined #ruby
elaptics has joined #ruby
SirFunk has joined #ruby
redondos has joined #ruby
mephistophocles has joined #ruby
Dreamer3 has joined #ruby
hplar has joined #ruby
djbkd has joined #ruby
duracrisis has joined #ruby
Radar is now known as Guest76880
IceDragon has joined #ruby
code_ has joined #ruby
quarcu has joined #ruby
mosez has joined #ruby
papercode has joined #ruby
tommylommykins has joined #ruby
PaulCapestany has joined #ruby
mburns has joined #ruby
pushcx is now known as Guest52280
arlek has joined #ruby
joeyjones has joined #ruby
tris has joined #ruby
kiki_lamb has joined #ruby
sepp2k has joined #ruby
joeyjones has quit [Changing host]
joeyjones has joined #ruby
cpup has joined #ruby
headius has joined #ruby
spectra has joined #ruby
IceDragon is now known as Guest7926
FooMunki has joined #ruby
duracrisis is now known as Guest49715
pietr0 has joined #ruby
PedramT has joined #ruby
WebDawg has joined #ruby
sindork has joined #ruby
Amnez777 has quit [Max SendQ exceeded]
scepticulous has joined #ruby
gbailey has joined #ruby
Scient has joined #ruby
patteh has joined #ruby
CloCkWeRX has joined #ruby
drale2k has joined #ruby
kies has joined #ruby
kenichi has joined #ruby
oddmunds has joined #ruby
passcod has joined #ruby
dfoolz has joined #ruby
Amnez777 has joined #ruby
psyq has joined #ruby
tenderlove has joined #ruby
p0p0pr37 has joined #ruby
clamstar has joined #ruby
Davey has joined #ruby
Davey has quit [Changing host]
Davey has joined #ruby
redlegion has joined #ruby
giraffe has joined #ruby
rcs has joined #ruby
dextertzu has quit [Quit: WeeChat 1.3]
huyderman has joined #ruby
Laaw has joined #ruby
Melpaws has joined #ruby
cyphactor has joined #ruby
Guest76594 has joined #ruby
groundnuty has joined #ruby
<shevy> EdwardIII I used to hate it too
<shevy> then I abandoned it
<shevy> then I no longer hated it :)
<EdwardIII> heh now life is good
<EdwardIII> for you, anyway
<shevy> I think there are more! like how json became popular quite quickly
Rush has joined #ruby
spastorino has quit [Ping timeout: 246 seconds]
schaary has quit [Ping timeout: 246 seconds]
halfdan has quit [Ping timeout: 246 seconds]
im0b has quit [Ping timeout: 246 seconds]
<apeiros> EdwardIII: it means the element is optional. occurs at least zero times, at max once.
marr has joined #ruby
\pub\bash0r has joined #ruby
hadronzoo has joined #ruby
bodie_ has joined #ruby
zack6849 has joined #ruby
zack6849 has joined #ruby
znz_jp has joined #ruby
kloeri has joined #ruby
muvbit has quit [Ping timeout: 248 seconds]
euphoriaa has joined #ruby
jpterry has joined #ruby
<EdwardIII> apeiros: yeah but i can't get examples from the vendor, and savon doesn't complain if you put bogus elements in there. so if you're doing stuff wrong, based on the wsdl (e.g. you've misnamed a parameter or nested it incorrectly) you don't know
<EdwardIII> which makes optional parameters trickier
nchambers has joined #ruby
shortdudey123 has joined #ruby
Kruppe has joined #ruby
kellabyte has quit [Ping timeout: 260 seconds]
hayden_ has quit [Ping timeout: 260 seconds]
akahn has quit [Ping timeout: 260 seconds]
jpinnix_______ has quit [Ping timeout: 260 seconds]
AdamMeghji has quit [Ping timeout: 260 seconds]
troter_______ has quit [Ping timeout: 260 seconds]
sevin has joined #ruby
wlanboy has joined #ruby
jud has joined #ruby
SenpaiSilver has joined #ruby
slash_nick has joined #ruby
ebertx has joined #ruby
ghr has joined #ruby
Tristan-Speccy has joined #ruby
linduxed has joined #ruby
RTG` has joined #ruby
resin has joined #ruby
Keltia has joined #ruby
nertzy has joined #ruby
kegster has joined #ruby
BraddPitt has joined #ruby
bradland has joined #ruby
musl has joined #ruby
A124 has joined #ruby
hackeron has joined #ruby
ldnunes has joined #ruby
df has joined #ruby
dtordable has joined #ruby
brainslug has joined #ruby
nirix has joined #ruby
bqscott has joined #ruby
Synthead has joined #ruby
marsjaninzmarsa has joined #ruby
Tristan-Speccy has quit [Max SendQ exceeded]
A124 has quit [Max SendQ exceeded]
SenpaiSilver has quit [Max SendQ exceeded]
vbatts|work has joined #ruby
kegster has quit [Changing host]
kegster has joined #ruby
wlanboy has quit [Changing host]
wlanboy has joined #ruby
A124 has joined #ruby
csmb has joined #ruby
vqrs has joined #ruby
rhg135 has joined #ruby
im0b has joined #ruby
cibs has joined #ruby
fullstack has joined #ruby
mc_fail has joined #ruby
chrisarcand has joined #ruby
jtoy has joined #ruby
bhaak has joined #ruby
angelixd has joined #ruby
Jamo has joined #ruby
guacamole has joined #ruby
G has quit [Ping timeout: 260 seconds]
skade has quit [Quit: Computer has gone to sleep.]
zzerp has joined #ruby
chihhsin has joined #ruby
rtl has joined #ruby
awk has joined #ruby
sunya7a_ has joined #ruby
jsaak has joined #ruby
cibs has quit [Max SendQ exceeded]
fullstack has quit [Max SendQ exceeded]
jud is now known as Guest16234
sevin is now known as Guest75122
abra0 has joined #ruby
Tristan-Speccy has joined #ruby
cibs has joined #ruby
fullstack has joined #ruby
awk is now known as Guest79148
<EdwardIII> savon takes an array of params to mean this: https://gist.github.com/EdwardIII/90f515bca7176802aebd#file-1-xml so it tweaked it in order to make it come out like this when it didn't seem to be working: https://gist.github.com/EdwardIII/90f515bca7176802aebd#file-2-xml
G has joined #ruby
chris2 has quit [Ping timeout: 250 seconds]
Tristan-Speccy is now known as Guest98597
<EdwardIII> which felt kinda more logical
Shidash has joined #ruby
<EdwardIII> but still doesn't work heh
chipotle has quit [Quit: cheerio]
sinkensabe has joined #ruby
danzilio has joined #ruby
SenpaiSilver has joined #ruby
michael_mbp has joined #ruby
voxxit has joined #ruby
jayne has joined #ruby
halfdan has joined #ruby
dextertzu has joined #ruby
martinbjeldbak has joined #ruby
Xat` has joined #ruby
lianj has joined #ruby
lianj has joined #ruby
SenpaiSilver has quit [Max SendQ exceeded]
<apeiros> EdwardIII: you mean savon doesn't run the xsd against the xml?
<EdwardIII> i'm not too sure about what's happening under the hood tbh
<EdwardIII> but it seems possible that it's not testing it against it if i can just put any param in there and get no errors, right?
akahn has joined #ruby
kith has quit [Ping timeout: 246 seconds]
<apeiros> I don't use savon for my stuff, I use custom built solutions and run nokogiri's xsd validator against input. and that will complain just fine about such things.
brainslug has quit [*.net *.split]
nirix has quit [*.net *.split]
marsjaninzmarsa has quit [*.net *.split]
Synthead has quit [*.net *.split]
bqscott has quit [*.net *.split]
SShrike has joined #ruby
<EdwardIII> hmm
MissionCritical has joined #ruby
SenpaiSilver has joined #ruby
brainslug has joined #ruby
spastorino has joined #ruby
nirix has joined #ruby
bluOxigen has joined #ruby
kellabyte has joined #ruby
<EdwardIII> looks like it doesn't do xsd itself, but that i can add it myself easily enough before it sends the req
hayden_ has joined #ruby
AdamMeghji has joined #ruby
schaary has joined #ruby
jpinnix_______ has joined #ruby
ged has quit [Ping timeout: 265 seconds]
marsjaninzmarsa has joined #ruby
zotherstupidguy has joined #ruby
noodle has joined #ruby
Spami has joined #ruby
Shaboum has quit [Ping timeout: 240 seconds]
troter_______ has joined #ruby
lsmola has quit [Ping timeout: 250 seconds]
flughafen_ has joined #ruby
chipotle has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Shaboum has joined #ruby
araujo has joined #ruby
araujo has joined #ruby
duckpuppy has joined #ruby
sandstrom has joined #ruby
YaknotiS has joined #ruby
chris2 has joined #ruby
araujo has quit [Max SendQ exceeded]
levifig has quit [Ping timeout: 248 seconds]
araujo has joined #ruby
yfeldblum has quit [Ping timeout: 250 seconds]
JohnBat26 has joined #ruby
araujo has quit [Max SendQ exceeded]
levifig has joined #ruby
araujo has joined #ruby
abra0 has quit [Quit: ZNC - 1.6.0 - http://znc.in]
avenj has quit [Ping timeout: 240 seconds]
saneax is now known as saneax_AFK
Mon_Ouie has joined #ruby
abra0 has joined #ruby
krzkrz has joined #ruby
pawnbox_ has joined #ruby
Outlastsheep has joined #ruby
anisha_ has joined #ruby
openstruct has quit [Ping timeout: 268 seconds]
pawnbox has quit [Ping timeout: 240 seconds]
anisha has quit [Ping timeout: 248 seconds]
Freeaqingme has joined #ruby
sgambino has joined #ruby
niko has joined #ruby
abra0 has quit [Client Quit]
chipotle has quit [Quit: cheerio]
_whitelogger has joined #ruby
Diabolik has joined #ruby
sarbs has joined #ruby
tokik has joined #ruby
Amnez777 has joined #ruby
mclee has joined #ruby
c0m0 has joined #ruby
sponjii has joined #ruby
bjmllr has joined #ruby
pabs has joined #ruby
alol has joined #ruby
Klumben has joined #ruby
flughafen_ has joined #ruby
paultreny has joined #ruby
Olipro has joined #ruby
RazorX has joined #ruby
EvilRoey has joined #ruby
jzigmund has joined #ruby
kam270 has joined #ruby
pragmatism has joined #ruby
mc_fail has joined #ruby
Petazz has joined #ruby
raimumizu has joined #ruby
yardenbar has joined #ruby
xMopxShell has joined #ruby
twistedpixels has joined #ruby
malcolmva has joined #ruby
ex0ns has joined #ruby
stan has joined #ruby
LBRapid has joined #ruby
andrewvos has joined #ruby
craysiii has joined #ruby
pwnd_nsfw` has joined #ruby
nofxx has joined #ruby
nullwarp has joined #ruby
Esya- has joined #ruby
hakunin has joined #ruby
nofxx has quit [Changing host]
nofxx has joined #ruby
fn2187 has joined #ruby
greynetic has joined #ruby
sts__ has joined #ruby
julieeharshaw has joined #ruby
FifthWall has joined #ruby
gf3 has joined #ruby
twintail has joined #ruby
KrzaQ has joined #ruby
ocbtec has joined #ruby
crdpink has joined #ruby
conrfrmn has joined #ruby
bahar has quit [Excess Flood]
x0f has joined #ruby
sushii has joined #ruby
mg^ has joined #ruby
timonv has joined #ruby
blackms has joined #ruby
sfr^ has joined #ruby
ericwood has joined #ruby
znz_jp has quit [Quit: kill -QUIT $$]
Steve_Jo1 has joined #ruby
xybre has joined #ruby
jzigmund has quit [Changing host]
jzigmund has joined #ruby
Grays0n has joined #ruby
xsdg has joined #ruby
ta has joined #ruby
aryaching has joined #ruby
twe4ked has joined #ruby
duoi has joined #ruby
Papierkorb has joined #ruby
shiver has joined #ruby
shiver has joined #ruby
paultreny is now known as Guest72653
pestle has joined #ruby
sinaeftekhari has joined #ruby
bahar_ has joined #ruby
juanfra has joined #ruby
sulky has joined #ruby
Bugboy1028 has joined #ruby
aspiers has joined #ruby
parus has joined #ruby
danieli has joined #ruby
borkdude has joined #ruby
Bugboy1028 has quit [Changing host]
Bugboy1028 has joined #ruby
Mr_Pancake has joined #ruby
utkarsh has joined #ruby
matti has joined #ruby
Skelz0r has joined #ruby
matti has quit [Changing host]
matti has joined #ruby
tinnvec has joined #ruby
djellemah has joined #ruby
flughafen has joined #ruby
andikr has joined #ruby
Shidash has joined #ruby
abra0 has joined #ruby
codecop has quit [Remote host closed the connection]
GGMethos has joined #ruby
ereslibre has joined #ruby
ereslibre has quit [Changing host]
ereslibre has joined #ruby
tw1sted has joined #ruby
e4xit has joined #ruby
duckpupp1 has joined #ruby
jidar has joined #ruby
blaxter has joined #ruby
gnarf has joined #ruby
mozzarella has joined #ruby
wldcordeiro has joined #ruby
lsmola has joined #ruby
skullcrasher has joined #ruby
Amnez777 has quit [Changing host]
Amnez777 has joined #ruby
s00pcan_ has joined #ruby
basic` has joined #ruby
basic` has joined #ruby
crank1988 has joined #ruby
nuck has joined #ruby
duckpuppy has quit [Ping timeout: 240 seconds]
nuck is now known as Guest25605
znz_jp has joined #ruby
DanKnox has joined #ruby
roshanavand has quit [Remote host closed the connection]
Guest17591 is now known as BLuEGoD
DanKnox_ has joined #ruby
blackjid has joined #ruby
<EdwardIII> hrm nokigiri keeps crying: *** Nokogiri::XML::SyntaxError Exception: The XML document 'in_memory_buffer' is not a schema document.
skade has joined #ruby
tpendragon has joined #ruby
saneax_AFK has joined #ruby
saneax_AFK is now known as saneax
alem0lars has joined #ruby
russt has joined #ruby
greynetic has quit [Quit: Textual IRC Client: www.textualapp.com]
<EdwardIII> hrm i guess actually it's more likely because i'm just trying to read in a big fat wsdl as an xsd when it's not really
TTilus has joined #ruby
eggoez has joined #ruby
sepp2k has quit [Ping timeout: 255 seconds]
lele` has joined #ruby
devsterknight|ZN has joined #ruby
Danielss89_ has joined #ruby
techietrash_ has joined #ruby
rideh has joined #ruby
Lightsword_ has joined #ruby
Zarthus_ has joined #ruby
JStoker has quit [Killed (sinisalo.freenode.net (Nickname regained by services))]
Fridtjof_ has joined #ruby
hostess_ has joined #ruby
stryek has joined #ruby
michael_mbp has quit [*.net *.split]
CloCkWeRX has quit [*.net *.split]
AlexRussia has quit [*.net *.split]
isene has quit [*.net *.split]
mistym has quit [*.net *.split]
pjaspers has quit [*.net *.split]
moncky has quit [*.net *.split]
livcd has quit [*.net *.split]
Danielss89 has quit [*.net *.split]
devster31 has quit [*.net *.split]
lancetw has quit [*.net *.split]
mroth has quit [*.net *.split]
jord has quit [*.net *.split]
jmcc_______ has quit [*.net *.split]
jlyndon has quit [*.net *.split]
ruurd has quit [*.net *.split]
Raboo has quit [*.net *.split]
Y_Ichiro has quit [*.net *.split]
mrsolo has quit [*.net *.split]
unsymbol has quit [*.net *.split]
nwhirschfeld has quit [*.net *.split]
catbusters has quit [*.net *.split]
Mr0riss0 has quit [*.net *.split]
AlphaAtom has quit [*.net *.split]
[spoiler] has quit [*.net *.split]
zenlot has quit [*.net *.split]
Miron has quit [*.net *.split]
epochwolf has quit [*.net *.split]
nlsun has quit [*.net *.split]
tylersmith has quit [*.net *.split]
DarkBushido has quit [*.net *.split]
Seich has quit [*.net *.split]
Lloyd has quit [*.net *.split]
justinweiss has quit [*.net *.split]
ELLIOTTCABLE has quit [*.net *.split]
tejasmanohar has quit [*.net *.split]
HashNuke has quit [*.net *.split]
ltd has quit [*.net *.split]
wanderer has quit [*.net *.split]
edulix has quit [*.net *.split]
Rutix has quit [*.net *.split]
sorah_ has quit [*.net *.split]
SegFaultAX has quit [*.net *.split]
gix has quit [*.net *.split]
rfi has quit [*.net *.split]
Zarthus has quit [*.net *.split]
cschneid has quit [*.net *.split]
Hounddog has quit [*.net *.split]
swgillespie has quit [*.net *.split]
bove has quit [*.net *.split]
pmarreck has quit [*.net *.split]
c355e3b has quit [*.net *.split]
Terens has quit [*.net *.split]
rikai has quit [*.net *.split]
Koshian has quit [*.net *.split]
zenguy_pc has quit [*.net *.split]
spacemud has quit [*.net *.split]
sonne has quit [*.net *.split]
akitada has quit [*.net *.split]
shelling__ has quit [*.net *.split]
jokester has quit [*.net *.split]
ELCALOR has quit [*.net *.split]
boxrick1 has quit [*.net *.split]
jabreity has quit [*.net *.split]
ggherdov_ has quit [*.net *.split]
pizzaops has quit [*.net *.split]
jcp has quit [*.net *.split]
nibbo has quit [*.net *.split]
j0n3 has quit [*.net *.split]
ssm has quit [*.net *.split]
Ankhers has quit [*.net *.split]
pocketprotector has quit [*.net *.split]
Lightsword has quit [*.net *.split]
segmond has quit [*.net *.split]
Elysia has quit [*.net *.split]
veloutin has quit [*.net *.split]
spk has quit [*.net *.split]
psmolen has quit [*.net *.split]
Guest87933 has quit [*.net *.split]
raenk has quit [*.net *.split]
arian0n_ has quit [*.net *.split]
UtkarshRay has quit [*.net *.split]
marienz has quit [*.net *.split]
skweek has quit [*.net *.split]
dopamean_ has quit [*.net *.split]
yosafbridge has quit [*.net *.split]
meinside has quit [*.net *.split]
AckZ has quit [*.net *.split]
hanmac has quit [*.net *.split]
dubek has quit [*.net *.split]
lele has quit [*.net *.split]
PlasmaStar has quit [*.net *.split]
Guest49360 has quit [*.net *.split]
mighty_gorilla has quit [*.net *.split]
rideh- has quit [*.net *.split]
demophoon has quit [*.net *.split]
denym_` has quit [*.net *.split]
skmp has quit [*.net *.split]
bjeanes has quit [*.net *.split]
pfg has quit [*.net *.split]
shadeslayer has quit [*.net *.split]
[BNC]WizJin has quit [*.net *.split]
marxarelli|afk has quit [*.net *.split]
whippythellama has quit [*.net *.split]
hostess has quit [*.net *.split]
rvchangue has quit [*.net *.split]
Fridtjof has quit [*.net *.split]
janno has quit [*.net *.split]
Billias has quit [*.net *.split]
zacts has quit [*.net *.split]
techietrash has quit [*.net *.split]
johnnyt has quit [*.net *.split]
arthurix_ has quit [*.net *.split]
Junaos has quit [*.net *.split]
icedp has quit [*.net *.split]
braderhart has quit [*.net *.split]
manveru has quit [*.net *.split]
donnoc has quit [*.net *.split]
sts_ has quit [*.net *.split]
matp has quit [*.net *.split]
edwardly has quit [*.net *.split]
tubbo has quit [*.net *.split]
yokel has quit [*.net *.split]
TDJACR has quit [*.net *.split]
greister has quit [*.net *.split]
Meow-J has quit [*.net *.split]
ItSANgo has quit [*.net *.split]
zipkid has quit [*.net *.split]
aef has quit [*.net *.split]
Roa has quit [*.net *.split]
SilentEc1 has quit [*.net *.split]
Puffball_ has quit [*.net *.split]
Plas has joined #ruby
Hounddog_ has joined #ruby
cschneid_ has joined #ruby
ltp has quit [*.net *.split]
EvilJStoker has quit [*.net *.split]
boogibugs has quit [*.net *.split]
zarubin has quit [*.net *.split]
Platini has quit [*.net *.split]
j416 has quit [*.net *.split]
sirecote has quit [*.net *.split]
varesa has quit [*.net *.split]
juniorism has quit [*.net *.split]
Sp4rKy has quit [*.net *.split]
Liam` has quit [*.net *.split]
kaspergrubbe has quit [*.net *.split]
david2 has quit [*.net *.split]
tekk has quit [*.net *.split]
LoganG has quit [*.net *.split]
tekacs has quit [*.net *.split]
JStoker has joined #ruby
mistym- has joined #ruby
Seich_ has joined #ruby
sts has joined #ruby
sorah_ has joined #ruby
unsymbol has joined #ruby
shadeslayer has joined #ruby
<EdwardIII> apeiros: i don't suppose you have an example of doing this, do you?
SilentEcho has joined #ruby
LoganG_ has joined #ruby
nibbo has joined #ruby
omninonsense has joined #ruby
arian0n has joined #ruby
varesa has joined #ruby
jokester_ has joined #ruby
epochwolf|2 has joined #ruby
Creator|away has joined #ruby
Billias_ has joined #ruby
zz_denym_ has joined #ruby
tcrypt has joined #ruby
Billias_ is now known as Billias
zenguy_pc has joined #ruby
akkad has joined #ruby
greister has joined #ruby
Raboo has joined #ruby
skweek has joined #ruby
Puffball has joined #ruby
ltp has joined #ruby
j416 has joined #ruby
whippythellama has joined #ruby
dopamean_ has joined #ruby
segmond has joined #ruby
jxf has joined #ruby
boogibugs has joined #ruby
johnnyt has joined #ruby
donnoc has joined #ruby
Weethus has joined #ruby
dubek has joined #ruby
nibbo has joined #ruby
nibbo has quit [Changing host]
Mr0riss0 has joined #ruby
Miron_ has joined #ruby
DarkBushido_ has joined #ruby
demophoon has joined #ruby
david2 has joined #ruby
epochwolf|2 is now known as epochwolf
Junaos has joined #ruby
<apeiros> EdwardIII: nope, not on this computer anyway
Sp4rKy has joined #ruby
yokel has joined #ruby
ssm has joined #ruby
sts is now known as Guest86418
Roa has joined #ruby
Lightsword_ is now known as Lightsword
EvilJStoker has joined #ruby
moncky has joined #ruby
wanderer has joined #ruby
marienz has joined #ruby
SegFaultAX has joined #ruby
matp has joined #ruby
edwardly has joined #ruby
livcd has joined #ruby
LoganG_ is now known as LoganG
Y_Ichiro has joined #ruby
Y_Ichiro has joined #ruby
ltd has joined #ruby
olspookishmagus has joined #ruby
cbetta has joined #ruby
rfi has joined #ruby
zenlot has joined #ruby
zacts has joined #ruby
raenk has joined #ruby
janno has joined #ruby
veloutin has joined #ruby
Platini has joined #ruby
juniorism has joined #ruby
isene has joined #ruby
edulix has joined #ruby
kaspergrubbe has joined #ruby
nwhirschfeld has joined #ruby
arthurix has joined #ruby
olspookishmagus is now known as Guest44880
AlexRussia has joined #ruby
Platini has quit [Max SendQ exceeded]
CloCkWeRX has joined #ruby
rikai has joined #ruby
_mak has joined #ruby
zacts is now known as Guest49472
Liam` has joined #ruby
edwardly has quit [Changing host]
edwardly has joined #ruby
Koshian has joined #ruby
bronson has joined #ruby
ItSANgo_ has joined #ruby
Rutix has joined #ruby
Rutix has quit [Changing host]
Rutix has joined #ruby
duckpupp1 has quit [Ping timeout: 264 seconds]
Platini has joined #ruby
<EdwardIII> apeiros: do you do something in ruby to extract the xsd from the wsdl?
catbusters has joined #ruby
jam_ has joined #ruby
<apeiros> hm, been a while since I touched those parts. I think I actually extracted it manually.
TDJACR_ has joined #ruby
DanKnox_ has quit [Ping timeout: 248 seconds]
DanKnox has quit [Ping timeout: 250 seconds]
aef has joined #ruby
<EdwardIII> using a tool using soapui or something you mean?
<apeiros> sublime :)
yosafbridge has joined #ruby
<EdwardIII> heh ok
<EdwardIII> without ending up in namespace soup. you must be a master hacker!
<apeiros> iirc it wasn't difficult and change was expected to happen very rarely.
<apeiros> so doing it by hand was less time consuming than doing a "proper" solution.
<apeiros> not sure if I ever wrote a tool to automate it, though :-/
pawnbox_ has quit [Remote host closed the connection]
ged has joined #ruby
tekacs has joined #ruby
AlphaAtom has joined #ruby
spk has joined #ruby
gnarld_ is now known as nug
FernandoBasso has joined #ruby
<EdwardIII> well that sounds ace
Ankhers has joined #ruby
C0deMaver1ck has joined #ruby
rvchangue has joined #ruby
Terens has joined #ruby
psmolen has joined #ruby
pjaspers has joined #ruby
<EdwardIII> trying to do it now. <wsdl:types> is basically the xsd afaik
shaman42 has quit [Ping timeout: 250 seconds]
spacemud has joined #ruby
tekk has joined #ruby
icedp has joined #ruby
sirecote has joined #ruby
pocketprotector has joined #ruby
hollywood has joined #ruby
tubbo has joined #ruby
C0deMaver1ck is now known as Guest91232
nlsun has joined #ruby
shaman42 has joined #ruby
sonne has joined #ruby
dayjo has joined #ruby
dajobat has quit [Read error: Connection reset by peer]
dayjo has quit [Client Quit]
bronson has quit [Ping timeout: 244 seconds]
roshanavand has joined #ruby
dajobat has joined #ruby
<dajobat> Afternoon everyone.
michael_mbp has joined #ruby
dkam_ has joined #ruby
WizJin has joined #ruby
jam_ has quit [Ping timeout: 255 seconds]
gix has joined #ruby
sdothum has joined #ruby
zarubin has joined #ruby
bcavileer has joined #ruby
lipoqil has joined #ruby
Kamilion has joined #ruby
bestie has joined #ruby
golgaroth has joined #ruby
Miron_ is now known as Miron
jpinnix_______ has joined #ruby
charles81 has joined #ruby
MiracleBlue___ has joined #ruby
tonini has joined #ruby
S01780 has joined #ruby
Eleeleth has joined #ruby
frode15243 has joined #ruby
duckpupp1 has joined #ruby
daxroc has joined #ruby
dkam has quit [Ping timeout: 248 seconds]
djbender has joined #ruby
zzak__ has joined #ruby
acerna has joined #ruby
deimos has joined #ruby
bttf has joined #ruby
jord has joined #ruby
jmcc_______ has joined #ruby
boxrick1 has joined #ruby
alxndr has joined #ruby
frankS2 has joined #ruby
c355e3b has joined #ruby
HashNuke has joined #ruby
y2mq37 has joined #ruby
Musashi007 has joined #ruby
godzillaenlacasa has joined #ruby
lucasb has joined #ruby
rflot has joined #ruby
pizzaops has joined #ruby
Guest4184______ has joined #ruby
dkam__ has joined #ruby
tejasmanohar has joined #ruby
ELCALOR has joined #ruby
err_ok has joined #ruby
LoneHerm_ has joined #ruby
im0b has joined #ruby
justinweiss has joined #ruby
LoneHerm_ has quit [Remote host closed the connection]
ruurd has joined #ruby
ruurd is now known as Guest30342
manveru has joined #ruby
bjeanes has joined #ruby
anekos has quit [Quit: Tiarra 0.1+svn-39036: SIGTERM received; exit]
hanmac has joined #ruby
amitchellbullard has joined #ruby
anekos has joined #ruby
y2mq37 has quit [Ping timeout: 240 seconds]
meinside has joined #ruby
frudo has joined #ruby
Mon_Ouie has quit [Ping timeout: 268 seconds]
Guest60723 is now known as ndrst
swgillespie has joined #ruby
dkam_ has quit [Ping timeout: 250 seconds]
blackmesa has joined #ruby
SShrike has quit [Quit: SShrike]
<lucasb> Hey kids<333
zipkid has joined #ruby
mostlybadfly has joined #ruby
nofxx has quit [Ping timeout: 240 seconds]
skmp has joined #ruby
<frudo> fluentd stopped or start automatic wt would cause the reason? i checked in log but not shows error for restart ot stopped
jcp has joined #ruby
nofxx has joined #ruby
roshanavand has quit [Remote host closed the connection]
jlyndon has joined #ruby
anekos has quit [Client Quit]
pfg has joined #ruby
mroth has joined #ruby
Amnez777 has quit [Ping timeout: 244 seconds]
ruby-lang043 has joined #ruby
ELLIOTTCABLE has joined #ruby
johnmilton has joined #ruby
Arcaire has quit [Remote host closed the connection]
benlakey has quit [Remote host closed the connection]
joaomdmoura__ has quit [Remote host closed the connection]
yo61 has quit [Remote host closed the connection]
machty has quit [Remote host closed the connection]
howdoi has quit [Remote host closed the connection]
imanc has quit [Remote host closed the connection]
twodayslate has quit [Remote host closed the connection]
iamdevnul has quit [Remote host closed the connection]
im0b has quit [Remote host closed the connection]
andersh has quit [Remote host closed the connection]
ruby-lang043 has left #ruby [#ruby]
ggherdov_ has joined #ruby
LoneHermit has joined #ruby
dkam__ has quit [Quit: Be back later ...]
LoneHermit has quit [Remote host closed the connection]
angiebadillo has joined #ruby
<lucasb> now that ruby is getting a Dir.empty? method, do you think it makes sense to have a File.empty? as an alias to File.zero? ?
zacstewart has quit [Ping timeout: 248 seconds]
braderhart has joined #ruby
casadei_ has joined #ruby
<EdwardIII> hrm, nokogiri is saying: Element '{http://schemas.xmlsoap.org/soap/envelope/}Envelope': No matching global declaration available for the validation root.
pawnbox has joined #ruby
<EdwardIII> which kinda makes sense. i don't find any references to soap stuff in the wsdl's types at all
shanemcd has joined #ruby
<EdwardIII> e.g. Envelope, Header etc
sepp2k has joined #ruby
<apeiros> you probably have a declaration referencing the standard
y2mq37 has joined #ruby
FooMunki has quit [Quit: FooMunki]
frozen3 has joined #ruby
FooMunki has joined #ruby
PedramT has quit [Ping timeout: 255 seconds]
frozen3 has quit [Remote host closed the connection]
frozen3 has joined #ruby
gmci has joined #ruby
joonty has quit [Ping timeout: 264 seconds]
<EdwardIII> apeiros: hrm so what do you think? it seems to be failing at the first hurdle
<EdwardIII> not having much joy googling, answered or puzzling questions: http://stackoverflow.com/questions/4019244/soap-response-schema-validation
dravine has joined #ruby
<apeiros> iirc nokogiri does not handle imports
TheHodge has joined #ruby
Creator|away is now known as Creator
TheHodge has quit [K-Lined]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
casadei_ has quit []
Musashi007 has quit [Quit: Musashi007]
al2o3-cr has quit [Ping timeout: 248 seconds]
Guest12896 has joined #ruby
anisha__ has joined #ruby
anisha_ has quit [Ping timeout: 244 seconds]
sonOfRa has quit [Quit: Bye!]
cih has quit [Remote host closed the connection]
sonOfRa has joined #ruby
moeabdol has joined #ruby
roshanavand has joined #ruby
roshanavand has quit [Remote host closed the connection]
sinaeftekhari has quit [Ping timeout: 250 seconds]
Guest30342 is now known as ruurd
chouhoulis has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
dravine has quit [Ping timeout: 240 seconds]
tulak has joined #ruby
joonty has joined #ruby
Grays0n has quit [Read error: Connection reset by peer]
glcx has joined #ruby
Grays0n has joined #ruby
chouhoulis has quit [Ping timeout: 265 seconds]
godzillaenlacasa has quit [Quit: ZZZZZ....]
tulak has quit [Remote host closed the connection]
dayjo has joined #ruby
kaleido has quit [Ping timeout: 248 seconds]
dayjo has quit [Client Quit]
tulak has joined #ruby
Shaboum has quit [Ping timeout: 268 seconds]
sonOfRa has quit [Quit: Bye!]
dajobat has quit [Ping timeout: 250 seconds]
llua^_^AznSmile- is now known as llua
llua has joined #ruby
llua has quit [Changing host]
hxegon has joined #ruby
swills has quit [Ping timeout: 265 seconds]
godzillaenlacasa has joined #ruby
Shaboum has joined #ruby
dravine has joined #ruby
sonOfRa has joined #ruby
FernandoBasso has quit [Quit: Leaving]
<EdwardIII> apeiros: hrm don't suppose you remember how you handled it?
clauswitt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
darkf_ has quit [Read error: Connection reset by peer]
DanKnox has joined #ruby
DanKnox_ has joined #ruby
darkf_ has joined #ruby
lucasb has quit [Quit: leaving]
jazzonmymind has quit [Quit: peace]
hxegon has quit [Client Quit]
<apeiros> not really, sorry. and not at work where I'd have access to it.
al2o3-cr has joined #ruby
<EdwardIII> ok, thanks for all the pointers
darkf_ has quit [Quit: Leaving]
chipotle has joined #ruby
codecop has joined #ruby
GeorgesLeYeti has joined #ruby
<GeorgesLeYeti> Hi
shanemcd has quit [Remote host closed the connection]
Kruppe has quit [Ping timeout: 244 seconds]
<adaedra> Coucou
lucasb has joined #ruby
sponjii has quit [Remote host closed the connection]
stannard has joined #ruby
baweaver has joined #ruby
s00pcan_ has quit [Remote host closed the connection]
anisha has joined #ruby
Kruppe has joined #ruby
zz_denym_ is now known as denym_
Kruppe is now known as Guest6199
anisha has quit [Remote host closed the connection]
anisha__ has quit [Quit: Leaving]
anisha has joined #ruby
blackgoat has quit [Quit: WeeChat 1.3]
freerobby has joined #ruby
baweaver has quit [Ping timeout: 268 seconds]
stannard has quit [Ping timeout: 268 seconds]
s00pcan_ has joined #ruby
shanemcd has joined #ruby
goodcodeguy has joined #ruby
gregf has joined #ruby
s00pcan_ has quit [Remote host closed the connection]
howdoi has joined #ruby
s00pcan_ has joined #ruby
tsunamie has quit [*.net *.split]
BLuEGoD has quit [*.net *.split]
vifino has quit [*.net *.split]
DarthGandalf has quit [*.net *.split]
92AACA3RA has quit [*.net *.split]
vifino has joined #ruby
goodcodeguy has quit [Client Quit]
clauswitt has joined #ruby
DarthGandalf has joined #ruby
goodcodeguy has joined #ruby
s00pcan_ has quit [Remote host closed the connection]
s00pcan_ has joined #ruby
ramortegui has joined #ruby
shanemcd has quit [Ping timeout: 268 seconds]
openstruct has joined #ruby
openstruct has joined #ruby
cih has joined #ruby
joast has joined #ruby
hxegon has joined #ruby
pmarreck has joined #ruby
zenergi has quit [Read error: Connection reset by peer]
cdg has joined #ruby
cdg has quit [Remote host closed the connection]
cdg has joined #ruby
ruby[bot] has joined #ruby
godzillaenlacasa has quit [Quit: ZZZZZ....]
RTG` has quit [Ping timeout: 240 seconds]
frudo has quit [Ping timeout: 248 seconds]
patchedmonkey has joined #ruby
Guest6199 has quit [Ping timeout: 244 seconds]
im0b has joined #ruby
BLuEGoD has joined #ruby
charlema_ has quit [Remote host closed the connection]
Kruppe- has joined #ruby
BLuEGoD is now known as Guest15018
akitada has joined #ruby
duderonomy is now known as 5EXAAE7KY
bqscott has joined #ruby
Guest15018 is now known as BLuEGoD
shelling__ has joined #ruby
BLuEGoD is now known as Guest66609
Guest7926 is now known as IceDragon
Synthead has joined #ruby
snguyen has joined #ruby
twodayslate has joined #ruby
Melpaws has quit [Quit: Leaving.]
malconis has joined #ruby
RTG` has joined #ruby
DanKnox_ has quit [Ping timeout: 248 seconds]
AckZ has joined #ruby
DanKnox has quit [Ping timeout: 265 seconds]
malconis has quit [Remote host closed the connection]
malconis has joined #ruby
benlakey has joined #ruby
bove has joined #ruby
yo61 has joined #ruby
mrsolo has joined #ruby
machty has joined #ruby
Yiota has joined #ruby
JDiPierro has joined #ruby
lancetw has joined #ruby
freerobby has quit [Quit: Leaving.]
Billias has quit [Ping timeout: 268 seconds]
mfb2 has joined #ruby
adambeynon has quit [Read error: Connection reset by peer]
adambeynon has joined #ruby
slackbotgz has joined #ruby
minimalism has joined #ruby
sandstrom has joined #ruby
mfb2 has quit [Ping timeout: 268 seconds]
infra-re_ has joined #ruby
kies^ has joined #ruby
imanc has joined #ruby
jottr has joined #ruby
Axy has joined #ruby
kam270 has quit [Quit: Leaving]
sankaber has joined #ruby
ziyadb has joined #ruby
infra-red has quit [Ping timeout: 264 seconds]
sgambino has joined #ruby
Billias has joined #ruby
y2mq37 has quit [Read error: Network is unreachable]
y2mq37 has joined #ruby
sponjii has joined #ruby
dopamean_ has quit [Ping timeout: 264 seconds]
blackmesa has quit [Ping timeout: 255 seconds]
avenj has joined #ruby
chouhoulis has joined #ruby
JDiPierro has quit [Remote host closed the connection]
failshell has joined #ruby
Mia has quit [Ping timeout: 268 seconds]
roshanavand has joined #ruby
Guest4785 has left #ruby ["twip"]
fourq has joined #ruby
fourq is now known as Guest56756
Guest56756 has left #ruby ["twip"]
roshanavand has quit [Remote host closed the connection]
voidDotClass has joined #ruby
roshanavand has joined #ruby
roshanavand has quit [Remote host closed the connection]
iamdevnul has joined #ruby
Meow-J has joined #ruby
<voidDotClass> Why does RoR turn numeric types to strings when sending them as json?
<adaedra> ?rails
<ruby[bot]> Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
roshanavand has joined #ruby
chouhoulis has quit [Ping timeout: 248 seconds]
fourq has joined #ruby
anisha has quit [Ping timeout: 240 seconds]
Lloyd has joined #ruby
dkam__ has joined #ruby
<voidDotClass> Can someone ask them to unban me. I made a joke one day and they got ban hammer heavy and banned me. :(
bMalum has joined #ruby
joaomdmoura__ has joined #ruby
patchedmonkey has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
kies^ has quit [Ping timeout: 250 seconds]
cih has quit []
arian0n has quit [Ping timeout: 268 seconds]
atmosx has joined #ruby
Arcaire has joined #ruby
Mia has joined #ruby
Mia has quit [Changing host]
Mia has joined #ruby
<andrewvos> what was your joke?
jabreity has joined #ruby
arian0n has joined #ruby
bMalum has quit [Quit: Textual IRC Client: www.textualapp.com]
tulak has quit [Read error: Connection reset by peer]
bigkevmcd has joined #ruby
sesquipedalian has joined #ruby
iamdevnul has quit [K-Lined]
Lloyd has quit [K-Lined]
im0b has quit [K-Lined]
AckZ has quit [K-Lined]
machty has quit [K-Lined]
twodayslate has quit [K-Lined]
jabreity has quit [K-Lined]
yo61 has quit [K-Lined]
imanc has quit [K-Lined]
bMalum has joined #ruby
lancetw has quit [K-Lined]
pmarreck has quit [K-Lined]
tulak has joined #ruby
Axy has quit [Ping timeout: 268 seconds]
CloCkWeRX has quit [Ping timeout: 240 seconds]
freerobby has joined #ruby
jam_ has joined #ruby
frankS2 has quit [Ping timeout: 268 seconds]
<adaedra> I suggest you ask smathy nicely and apologize or any other #RoR operator and see what can be done about your ban.
meinside has quit [Quit: Connection closed for inactivity]
Lloyd has joined #ruby
shredding has joined #ruby
<EdwardIII> pm-me-babe type deal
wprice has joined #ruby
krobzaur has joined #ruby
patchedmonkey has joined #ruby
openstruct has quit [Ping timeout: 240 seconds]
chouhoulis has joined #ruby
jam_ has quit [Ping timeout: 268 seconds]
aganov has quit [Remote host closed the connection]
aegis3121 has joined #ruby
kent\n has quit [Quit: No Ping reply in 180 seconds.]
j0n3 has joined #ruby
frankS2 has joined #ruby
fontain has joined #ruby
juanpablo_ has joined #ruby
juanpablo_ has quit [Remote host closed the connection]
kent\n has joined #ruby
zacstewart has joined #ruby
juanpablo_ has joined #ruby
slackbotgz has quit [Remote host closed the connection]
slackbotgz has joined #ruby
swills has joined #ruby
sankaber has quit [Remote host closed the connection]
stannard has joined #ruby
shanemcd has joined #ruby
y2mq37 has quit [Read error: Network is unreachable]
sankaber has joined #ruby
denym_ is now known as zz_denym_
y2mq37 has joined #ruby
openstruct has joined #ruby
openstruct has joined #ruby
ponga has joined #ruby
T5u has joined #ruby
steffkes has joined #ruby
<steffkes> hey there
pwnd_nsfw` is now known as pwnd_nsfw
pandaant has quit [Remote host closed the connection]
DanKnox has joined #ruby
DanKnox_ has joined #ruby
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby
floatingpoint has joined #ruby
babblebre has joined #ruby
rodfersou is now known as rodfersou|lunch
rkazak has joined #ruby
kappy has quit [Quit: Lost terminal]
abra0 has quit [Ping timeout: 248 seconds]
KensoDev has joined #ruby
abra0 has joined #ruby
T5u is now known as tsunamie
mostlybadfly has quit [Quit: Connection closed for inactivity]
CloCkWeRX has joined #ruby
<steffkes> probably i'm not seeing the right way to go since i've worked a bit with php and phpunit (test framework) is offering something they call "data provider". works like the following: you specific a separated method which returns a list of lists, where each record of the parent list is executed with the test where you've specified the data provider.
<steffkes> my scenario is: i have a bunch of files (containing http requests) which i'd like to iterate over.
<hanmac> steffkes: do you use rails? if yes: #rubyonrails might be better
zast has joined #ruby
<steffkes> hanmac: i do, but i'm not sure how rails specific the question is?
<apeiros> doesn't seem to be a rails question to me either
<hanmac> because you did talk about data provider and records
DanKnox_ has quit [Ping timeout: 240 seconds]
DanKnox has quit [Ping timeout: 240 seconds]
<hanmac> thats why i thought it might be rails related
moei has joined #ruby
<steffkes> well, that might be due to poor wording on my side :)
rkazak has quit [Quit: Sleep.....ing....]
dopamean_ has joined #ruby
<steffkes> first of, i'm curious if the question on its own does even make sense for you guys?
abra0 has left #ruby [#ruby]
futilegames has joined #ruby
<steffkes> i can share some code, i'm currently using (warning, kinda hacky) if that helps to understand what i'm trying to do.
Guest66609 is now known as BLuEGoD
jottr has quit [Ping timeout: 240 seconds]
BLuEGoD is now known as Guest1557
<apeiros> steffkes: the question made sense to me. I had something you describe in my own testframework (discontinued), but since I didn't need something like that in minitest (which I use now) I don't know how I'd do it there.
<apeiros> steffkes: but it would help for others to help if you told us which testframework you're using.
<ddv> steffkes: dependency injection?
<steffkes> ah sure apeiros, i'm using minitest - started with rspec, but switched to minitest during the project
marr has quit [Ping timeout: 265 seconds]
Shaboum has quit [Quit: WeeChat 1.4]
<EdwardIII> curious
blur3d has quit [Quit: blur3d]
mostlybadfly has joined #ruby
solars has quit [Quit: WeeChat 0.4.2]
jottr has joined #ruby
<steffkes> ddv: sounds always like a good thing, i'm not sure how it might help in my case?
abra0 has joined #ruby
<ddv> steffkes: what is your real question/problem?
<steffkes> ddv: that i'd like to execute a specific test for a series of files i'm having.
<steffkes> and what i'd like to avoid is having one test iterating over those files
g3funk is now known as braidn
andikr has quit [Remote host closed the connection]
c0m0 has quit [Ping timeout: 240 seconds]
weemsledeux has joined #ruby
FooMunki has quit [Quit: FooMunki]
tildes has joined #ruby
kappy has joined #ruby
rippa has joined #ruby
FooMunki has joined #ruby
avahey has quit [Quit: Connection closed for inactivity]
Rodya_ has joined #ruby
FernandoBasso has joined #ruby
<steffkes> might very well be, that the typical ruby approach looks different - i'm open for everything. that's just the way i'm supposed to given the test framework i've used in php
SkepBrain has quit [Quit: Konversation terminated!]
abra0 has left #ruby [#ruby]
snguyen has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<steffkes> which had the advance, that it would tell me .. execution of test foo failed while using parameters x,y,z as context
<ddv> steffkes: what are you testing?
synthroid has joined #ruby
s00pcan_ has quit [Remote host closed the connection]
<steffkes> i'm playing around with api testing. did a quick port of an existing solution i had. which iterates over a bunch of files (pairs of request/response) and issues the given request to verify if the response equals what i'm expecting
Shaboum has joined #ruby
<ddv> steffkes: for api testing I usually create spec file for each endpoint
<ddv> +a
<ddv> steffkes: this is one such spec: https://gist.github.com/ddevaal/91a2debd05cf1a3731fb
s00pcan_ has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
Rodya_ has quit [Remote host closed the connection]
Sucks has joined #ruby
roshanav_ has joined #ruby
blandflakes has joined #ruby
aufi has quit [Ping timeout: 248 seconds]
<steffkes> ddv: which leads to (almost) duplicated files for me, wouldn't it?
<steffkes> ddv: i mean .. it will always test the status-code, a bunch of headers as well as the body
blandflakes has quit [Client Quit]
blandflakes has joined #ruby
kappy has quit [Quit: leaving]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sgambino has joined #ruby
kappy has joined #ruby
<steffkes> the files i'm already having (came up with that structure a few projects ago) looks like this: http://pastie.org/private/mxkuuzuduqeiqnszsmbpag
roshanavand has quit [Ping timeout: 255 seconds]
slackbotgz has quit [Remote host closed the connection]
x77686d has joined #ruby
<steffkes> allows me to create a http request from the file .. issue that and compare it to the response. adding another test is just adding another file, in a format that most of the people are used to
FernandoBasso has quit [Read error: Connection reset by peer]
y2mq37 has quit [Write error: Connection reset by peer]
Sucks has quit [Read error: Connection reset by peer]
roshanav_ has quit [Ping timeout: 265 seconds]
pwnd_nsfw has quit [Read error: Network is unreachable]
<steffkes> a little bit like what VCR does for external api tests or rather mocks thereof
y2mq37 has joined #ruby
Sucks has joined #ruby
Kero has quit [Remote host closed the connection]
FernandoBasso has joined #ruby
pwnd_nsfw has joined #ruby
Xeago has quit [Remote host closed the connection]
crdpink has quit [Excess Flood]
crdpink has joined #ruby
sgambino has quit [Client Quit]
sgambino has joined #ruby
lancetw has joined #ruby
tcrypt has quit [Ping timeout: 268 seconds]
Xeago has joined #ruby
Rodya_ has joined #ruby
y2mq37 has quit [Read error: Network is unreachable]
idefine has joined #ruby
tylersmith has joined #ruby
y2mq37 has joined #ruby
dkam__ has quit [Ping timeout: 248 seconds]
lucasb has quit [Quit: leaving]
hyperdrive has joined #ruby
hxegon is now known as hxegon_AFK
Grays0n has quit [Ping timeout: 255 seconds]
dopie has joined #ruby
hostess_ has quit [Quit: No Ping reply in 180 seconds.]
Mon_Ouie has joined #ruby
sinkensabe has quit [Remote host closed the connection]
sinkensabe has joined #ruby
_stu_ has joined #ruby
hostess has joined #ruby
tonini has quit [Ping timeout: 268 seconds]
incomprehensibly has quit [Ping timeout: 268 seconds]
aufi has joined #ruby
axisys has joined #ruby
incomprehensibly has joined #ruby
tonini has joined #ruby
hxegon_AFK is now known as hxegon
sinkensabe has quit [Ping timeout: 240 seconds]
x0f has quit [Ping timeout: 268 seconds]
yardenbar has quit [Ping timeout: 268 seconds]
terlar has joined #ruby
zenergi has joined #ruby
GGMethos has quit [Ping timeout: 268 seconds]
Guest38 has joined #ruby
nogic has quit [Ping timeout: 248 seconds]
sinkensabe has joined #ruby
malcolmva has quit [Ping timeout: 244 seconds]
roshanavand has joined #ruby
mdw has joined #ruby
idefine has quit [Read error: Connection reset by peer]
idefine has joined #ruby
x0f has joined #ruby
charlemagne has joined #ruby
GGMethos has joined #ruby
bronson has joined #ruby
msosa has joined #ruby
nofacade has joined #ruby
tw1sted has quit [Changing host]
tw1sted has joined #ruby
zackzorman has joined #ruby
roshanavand has quit [Ping timeout: 248 seconds]
mary5030 has joined #ruby
patchedmonkey has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
GriffinHeart has joined #ruby
mary5030 has quit [Remote host closed the connection]
mary5030 has joined #ruby
kmckelvin has quit [Read error: Connection reset by peer]
kmckelvi1 has joined #ruby
flughafen_ has quit [Ping timeout: 264 seconds]
idefine has quit [Read error: Connection reset by peer]
Sucks has quit [Read error: Connection reset by peer]
kies^ has joined #ruby
snguyen has joined #ruby
idefine has joined #ruby
nfk has joined #ruby
d10n-work has joined #ruby
s00pcan_ has quit [Remote host closed the connection]
malcolmva has joined #ruby
s00pcan_ has joined #ruby
arlek has quit [Ping timeout: 255 seconds]
dkam__ has joined #ruby
ready has quit [Ping timeout: 264 seconds]
krzkrz has quit [Read error: Connection reset by peer]
sinkensabe has quit [Remote host closed the connection]
Grays0n has joined #ruby
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
GeorgesLeYeti has quit [Quit: Quitte]
krzkrz has joined #ruby
nogic has joined #ruby
einarj has quit [Remote host closed the connection]
DanKnox_ has joined #ruby
DanKnox has joined #ruby
nogic has quit [Max SendQ exceeded]
aufi has quit [Ping timeout: 255 seconds]
nogic has joined #ruby
Jardayn has joined #ruby
nogic has quit [Max SendQ exceeded]
cjbottaro has joined #ruby
abrin has joined #ruby
clauswitt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
nogic has joined #ruby
blandflakes has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
podman has joined #ruby
slash_nick has quit [Changing host]
slash_nick has joined #ruby
blandflakes has joined #ruby
futilegames has quit [Quit: futilegames]
clauswitt has joined #ruby
flughafen_ has joined #ruby
krzkrz has quit [Remote host closed the connection]
lxsameer has quit [Quit: Leaving]
clauswitt has quit [Client Quit]
<shevy> anyone of you working on some fun stuff in ruby?
charlemagne has quit []
howdoi has quit [Quit: Connection closed for inactivity]
aegis3121 has quit [Ping timeout: 244 seconds]
Abrin2 has joined #ruby
abrin has quit [Ping timeout: 248 seconds]
sandstrom has quit [Quit: My computer has gone to sleep.]
haylon has joined #ruby
ta has quit [Remote host closed the connection]
Guest1557 is now known as BLuEGoD
BLuEGoD is now known as Guest43378
idefine_ has joined #ruby
theRoUS has quit [Changing host]
theRoUS has joined #ruby
tjohnson has joined #ruby
ready has joined #ruby
idefine has quit [Ping timeout: 268 seconds]
renderful has joined #ruby
steffkes has quit [Ping timeout: 268 seconds]
karapetyan has joined #ruby
r4z3r has quit [Max SendQ exceeded]
r4z3r has joined #ruby
AlexRussia has quit [Quit: WeeChat 1.4-dev]
mfb2 has joined #ruby
AlexRussia has joined #ruby
sesquipedalian has quit [Read error: Connection reset by peer]
devbug has joined #ruby
Xeago has quit [Remote host closed the connection]
Xeago has joined #ruby
adgtl has joined #ruby
Xeago has quit [Remote host closed the connection]
r4z3r has quit [Max SendQ exceeded]
r4z3r has joined #ruby
Coldblackice has quit [Ping timeout: 248 seconds]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
TheHodge has joined #ruby
futilegames has joined #ruby
baweaver has joined #ruby
andersh has joined #ruby
infra-re_ has quit [Remote host closed the connection]
roshanavand has joined #ruby
jabreity has joined #ruby
rdark has joined #ruby
Grays0n has quit [Read error: Connection reset by peer]
rdark has quit [Changing host]
rdark has joined #ruby
patchedmonkey has joined #ruby
sgambino has joined #ruby
Grays0n has joined #ruby
marsjaninzmarsa has quit [Quit: ZNC 1.7.x-git-487-cbf5c38 - http://znc.in]
iamdevnul has joined #ruby
imanc has joined #ruby
AckZ has joined #ruby
im0b has joined #ruby
pmarreck has joined #ruby
fedexo has joined #ruby
roshanavand has quit [Ping timeout: 255 seconds]
jottr has quit [Ping timeout: 268 seconds]
twodayslate has joined #ruby
PhoenixBird has joined #ruby
Xeago has joined #ruby
bronson has quit [Remote host closed the connection]
Rodya_ has quit [Remote host closed the connection]
yo61 has joined #ruby
rakm has joined #ruby
asprillia has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
PhoenixBird has quit [Client Quit]
asprillia has joined #ruby
blandflakes has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
rdark has quit [Ping timeout: 240 seconds]
betafive has joined #ruby
the_drow_ has quit [Quit: This computer has gone to sleep]
machty has joined #ruby
andikr has joined #ruby
marsjaninzmarsa has joined #ruby
Rodya_ has joined #ruby
JDiPierro has joined #ruby
Grays0n has quit [Ping timeout: 268 seconds]
Xeago has quit [Ping timeout: 255 seconds]
theRoUS is now known as GenghisKen
jottr has joined #ruby
JDiPierro has quit [Remote host closed the connection]
GenghisKen is now known as theRoUS
rodfersou|lunch is now known as rodfersou
dkam__ has quit [Ping timeout: 240 seconds]
JDiPierro has joined #ruby
JDiPierro has quit [Remote host closed the connection]
JDiPierro has joined #ruby
failshell has quit [Remote host closed the connection]
DanKnox_ has quit [Ping timeout: 255 seconds]
DanKnox has quit [Ping timeout: 255 seconds]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<tubbo> no
<tubbo> everything is boring
<tubbo> ;)
failshell has joined #ruby
bklane has joined #ruby
<tubbo> actually i haven't beeen doing much "fun stuff" in ruby, mostly in JS these days...but ruby is my rock.
blackmesa has joined #ruby
Marsupermammal has joined #ruby
<baweaver> It's certainly a gem, isn't it?
sgambino has joined #ruby
william3 has quit [Remote host closed the connection]
<tubbo> baweaver: hiyooooooo
<baweaver> 'morning
<tubbo> =D
<tubbo> well like these days i've been making a website/API/central data store for my record label. i want to use that API to build each artist's electronic press kit with ember.js
<tubbo> everyone can use the same data
ixti has joined #ruby
<baweaver> that hits a bit too close to home on those.
SCHAAP137 has quit [Remote host closed the connection]
* baweaver uses angular at work
idefine_ has quit [Remote host closed the connection]
failshell has quit [Ping timeout: 250 seconds]
sgambino has quit [Client Quit]
fedexo has quit [Ping timeout: 268 seconds]
william3 has joined #ruby
weemsledeux has quit [Remote host closed the connection]
jam_ has joined #ruby
Marsupermammal has quit [Quit: Textual IRC Client: www.textualapp.com]
failshell has joined #ruby
failshell has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
Xeago has joined #ruby
weemsledeux has joined #ruby
blackmesa has quit [Ping timeout: 244 seconds]
jaiks has quit [Ping timeout: 248 seconds]
idefine has joined #ruby
tildes has quit [Ping timeout: 250 seconds]
angryz has joined #ruby
Xeago has quit [Read error: Connection reset by peer]
william3 has quit [Ping timeout: 250 seconds]
kfpratt has joined #ruby
idefine has quit [Remote host closed the connection]
jam_ has quit [Ping timeout: 250 seconds]
andikr has quit [Ping timeout: 248 seconds]
blackmesa has joined #ruby
futilegames has quit [Quit: futilegames]
jokester_ is now known as jokester
skade has joined #ruby
Xeago has joined #ruby
DEA7TH has joined #ruby
sandstrom has joined #ruby
Ishido has joined #ruby
rcvalle has joined #ruby
william3 has joined #ruby
ta has joined #ruby
dionysus69 has joined #ruby
idefine has joined #ruby
skade has quit [Client Quit]
Guest76594 has quit [Changing host]
Guest76594 has joined #ruby
Guest76594 is now known as nitrix
JDiPierro has quit [Read error: Connection reset by peer]
ddv has quit [Ping timeout: 268 seconds]
tildes has joined #ruby
futilegames has joined #ruby
JDiPierro has joined #ruby
PhoenixBird has joined #ruby
futilegames has quit [Client Quit]
mondok has joined #ruby
bklane has quit [Ping timeout: 240 seconds]
ddv has joined #ruby
davedev24 has joined #ruby
snguyen has quit [Quit: Textual IRC Client: www.textualapp.com]
stannard has quit []
GriffinHeart has quit [Remote host closed the connection]
* EdwardIII also uses angular
<EdwardIII> f* with it would be considered incorrect here, but i love the sentiment
idefine has quit [Remote host closed the connection]
zacstewart has quit [Ping timeout: 240 seconds]
stannard has joined #ruby
william3 has quit [Remote host closed the connection]
dkam__ has joined #ruby
asccigcc has joined #ruby
heftig has quit [Read error: Connection reset by peer]
ta has quit [Read error: Connection reset by peer]
bauruine has quit [Quit: ZNC - http://znc.in]
heftig has joined #ruby
ta has joined #ruby
symm- has joined #ruby
bauruine has joined #ruby
idefine has joined #ruby
PhoenixBird has left #ruby [#ruby]
ixti has quit [Ping timeout: 240 seconds]
PhoenixBird has joined #ruby
bauruine has quit [Excess Flood]
<EdwardIII> baweaver: my approach was 'sod it, just use angular and dump the .js files in the page' then build it from there
dhollinger has joined #ruby
<EdwardIII> that's not very fresh and exciting though i suppose
PhoenixBird has left #ruby [#ruby]
marxarelli has joined #ruby
GriffinHeart has joined #ruby
tildes has quit [Remote host closed the connection]
swills has quit [Ping timeout: 248 seconds]
amclain has joined #ruby
Kryptonical has joined #ruby
bauruine has joined #ruby
FernandoBasso has quit [Quit: Leaving]
Guest43378 is now known as BLuEGoD
BLuEGoD is now known as Guest54078
DanKnox_ has joined #ruby
DanKnox has joined #ruby
GriffinHeart has quit [Ping timeout: 240 seconds]
mdw has quit [Quit: Sleeping Zzzzz]
Tomasso has joined #ruby
william3 has joined #ruby
jazzonmymind has joined #ruby
fullofcaffeine has joined #ruby
<baweaver> EdwardIII: I find fresh and exciting is more likely to break in equally fresh and exciting ways
<EdwardIII> i have a policy that i try to introduce 1 new tech per project, whether it's 1 big one or 1 little one
<Tomasso> silly question: why when I reference another class from a class inside a module, that module name appends to that class I want to reference? so bothering...
<baweaver> ::TopLevel
<EdwardIII> even if it means doing stuff in a crufty way at first (e.g. an angular app with 10 <script> tags on the page)
dhollinger has quit [Quit: WeeChat 1.4]
infra-red has joined #ruby
bMalum_ has joined #ruby
<EdwardIII> i need to reread the section on constants and module loading again
<baweaver> I think it was an assumption made for Libraries
DmitryBochkarev has joined #ruby
bklane has joined #ruby
<baweaver> though what it probably means is it wasn't found elsewhere
<baweaver> so it got there
<Tomasso> for example I call MongoConnector.get_instance from a method inside class Service , and says uninitialized constant Service::MongoConnector.get_instance grgrgrggrrg
idefine has quit [Remote host closed the connection]
DanKnox_ has quit [Ping timeout: 255 seconds]
DanKnox has quit [Ping timeout: 255 seconds]
<baweaver> ::MongoConnector.get_instance
<baweaver> it'll probably error though. Make sure the gem is installed and required
nogic has quit [Ping timeout: 248 seconds]
Ousmane has joined #ruby
alexherbo2 has joined #ruby
Ousmane has quit [Client Quit]
<EdwardIII> baweaver: well... kinda the same thing applies in my philosophy e.g. if angular is the new tech, you can't also have a new module loader for example
<EdwardIII> or if es6 + babelify is the new tech you have to use a framework you already know well
idefine_ has joined #ruby
bMalum has quit [Ping timeout: 265 seconds]
william3 has quit [Ping timeout: 250 seconds]
dkam__ has quit [Ping timeout: 265 seconds]
shanemcd has quit [Remote host closed the connection]
shanemcd has joined #ruby
bklane has quit [Remote host closed the connection]
atmosx has quit [Quit: This is aparting message!]
<EdwardIII> i remember when i first used knockout, for a couple of complex elements it was beautiful, but it didn't scale up for a more complex SPA for me at all
dima_ has joined #ruby
bMalum_ has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dhollinger has joined #ruby
finisherr has joined #ruby
dhollinger has quit [Client Quit]
DmitryBochkarev has quit [Ping timeout: 244 seconds]
idefine_ has quit [Remote host closed the connection]
sandstrom has quit [Quit: My computer has gone to sleep.]
steffkes has joined #ruby
steffkes has quit [Changing host]
steffkes has joined #ruby
dhollinger has joined #ruby
<baweaver> be back in a bit
baweaver has quit [Remote host closed the connection]
idefine has joined #ruby
kmckelvi1 has quit [Ping timeout: 250 seconds]
mhoungbo has quit [Quit: Quitte]
glcx has quit [Quit: Quitte]
Eiam has joined #ruby
sandstrom has joined #ruby
DanKnox has joined #ruby
DanKnox_ has joined #ruby
synthroid has quit [Remote host closed the connection]
mack25 has joined #ruby
idefine has quit [Remote host closed the connection]
sneakerhax has joined #ruby
lxsameer has joined #ruby
lxsameer has joined #ruby
william3 has joined #ruby
bronson has joined #ruby
treaki_ has quit [Read error: Connection reset by peer]
nogic has joined #ruby
griffindy has joined #ruby
nogic has quit [Max SendQ exceeded]
nogic has joined #ruby
nogic has quit [Max SendQ exceeded]
DanKnox_ has quit [Ping timeout: 240 seconds]
DanKnox has quit [Ping timeout: 240 seconds]
mdw has joined #ruby
mack25 has quit [Client Quit]
mack25 has joined #ruby
mack25 is now known as DJTrey
nogic has joined #ruby
bhaak has quit [Ping timeout: 240 seconds]
linuxhiker has joined #ruby
nogic has quit [Max SendQ exceeded]
<linuxhiker> I am honored that you guys adopted the draft postgresql CoC. That is awesome.
william3 has quit [Remote host closed the connection]
the_drow has joined #ruby
nogic has joined #ruby
idefine has joined #ruby
bhaak has joined #ruby
william3 has joined #ruby
bklane has joined #ruby
nogic has quit [Max SendQ exceeded]
BSaboia has joined #ruby
Xeago has quit [Read error: Connection reset by peer]
synthroid has joined #ruby
nogic has joined #ruby
kmckelvi1 has joined #ruby
griffindy has quit [Ping timeout: 244 seconds]
bronson has quit [Ping timeout: 244 seconds]
bklane has quit [Remote host closed the connection]
<shevy> hey... linuxhiker wrote "guys"
baweaver has joined #ruby
<linuxhiker> shevy: I the unisex version :P
<linuxhiker> shevy: I meant (good lord I need more coffee) the unisex version
shanemcd has quit [Remote host closed the connection]
Rodya_ has quit [Remote host closed the connection]
jabreity has quit [Ping timeout: 268 seconds]
bestie has quit [Ping timeout: 268 seconds]
<shevy> damn ... it's not forbidden by http://ruby-community.com/pages/user_rules :(
william3 has quit [Ping timeout: 250 seconds]
shredding has quit [Ping timeout: 265 seconds]
<baweaver> Let's keep the meta to #ruby-offtopic
tejasmanohar has quit [Ping timeout: 268 seconds]
jabreity has joined #ruby
Kryptonical has quit [Read error: Network is unreachable]
Kryptonical has joined #ruby
y2mq37 has quit [Read error: Network is unreachable]
bklane has joined #ruby
<linuxhiker> baweaver: Sorry, I wasn't trying to start a discussion. I just wanted to express my appreciation. We put a lot of work into something rational and easy to interpret.
bestie has joined #ruby
y2mq37 has joined #ruby
Juan26 has joined #ruby
joonty has quit [Ping timeout: 240 seconds]
<baweaver> fair fair, I just don't want a possible "discussion" on main channel to get heated
<baweaver> as some are incapable of, shall we say, restraint
steffkes has quit [Ping timeout: 240 seconds]
angryz has quit [Ping timeout: 240 seconds]
incomprehensibly has quit [Ping timeout: 240 seconds]
benlakey has quit [Ping timeout: 240 seconds]
angiebadillo has quit [Ping timeout: 240 seconds]
djbender has quit [Ping timeout: 240 seconds]
Weethus has quit [Ping timeout: 240 seconds]
twe4ked has quit [Ping timeout: 240 seconds]
akahn has quit [Ping timeout: 240 seconds]
deepak has quit [Ping timeout: 240 seconds]
RealMarc has quit [Ping timeout: 240 seconds]
kmckelvi1 has quit [Ping timeout: 255 seconds]
karapetyan has quit [Remote host closed the connection]
shanemcd has joined #ruby
Meow-J has quit [Ping timeout: 240 seconds]
lipoqil has quit [Ping timeout: 240 seconds]
drbrain has quit [Ping timeout: 240 seconds]
elifoster has joined #ruby
JDiPierro has quit [Remote host closed the connection]
mrfooo has quit [Ping timeout: 240 seconds]
karapetyan has joined #ruby
Liam` has quit [Quit: http://bouncer.ml]
halfdan has quit [Read error: Connection reset by peer]
jpinnix_______ has quit [Read error: Connection reset by peer]
cbetta has quit [Read error: Connection reset by peer]
frode15243 has quit [Read error: Connection reset by peer]
Eleeleth has quit [Read error: Connection reset by peer]
boxrick1 has quit [Read error: Connection reset by peer]
HashNuke has quit [Read error: Connection reset by peer]
troter_______ has quit [Read error: Connection reset by peer]
ponga has quit [Read error: Connection reset by peer]
acerna has quit [Write error: Connection reset by peer]
deimos has quit [Write error: Connection reset by peer]
zzak__ has quit [Write error: Connection reset by peer]
MiracleBlue___ has quit [Write error: Connection reset by peer]
jimeh has quit [Write error: Connection reset by peer]
chrisseaton has quit [Write error: Connection reset by peer]
mrsolo has quit [Read error: Connection reset by peer]
dukedave has quit [Read error: Connection reset by peer]
bove has quit [Read error: Connection reset by peer]
sideshowcoder has quit [Read error: Connection reset by peer]
alxndr has quit [Read error: Connection reset by peer]
akitada has quit [Read error: Connection reset by peer]
braderhart has quit [Read error: Connection reset by peer]
bttf has quit [Read error: Connection reset by peer]
avdi has quit [Write error: Connection reset by peer]
LoganG has quit [Quit: robots are cool]
tejasmanohar has joined #ruby
sysanthrope has quit [Remote host closed the connection]
speaking1ode has joined #ruby
hostess has quit [Quit: No Ping reply in 180 seconds.]
tylersmith has quit [Ping timeout: 240 seconds]
avenj has quit [Ping timeout: 240 seconds]
WizJin has quit [Ping timeout: 240 seconds]
spk has quit [Ping timeout: 240 seconds]
omninonsense has quit [Ping timeout: 240 seconds]
mistym- has quit [Ping timeout: 240 seconds]
sushii has quit [Ping timeout: 240 seconds]
LBRapid has quit [Ping timeout: 240 seconds]
Phanes has quit [Ping timeout: 240 seconds]
nfsnobody has quit [Ping timeout: 240 seconds]
skarn has quit [Ping timeout: 240 seconds]
Bilge has quit [Ping timeout: 240 seconds]
infernix has quit [Ping timeout: 240 seconds]
bauruine has quit [Ping timeout: 240 seconds]
crdpink has quit [Ping timeout: 240 seconds]
ruurd has quit [Ping timeout: 240 seconds]
DarkBushido_ has quit [Ping timeout: 240 seconds]
TDJACR_ has quit [Ping timeout: 240 seconds]
Hounddog_ has quit [Ping timeout: 240 seconds]
saneax has quit [Ping timeout: 240 seconds]
DenSchub has quit [Ping timeout: 240 seconds]
borkdude has quit [Quit: ZNC - http://znc.sourceforge.net]
flughafen_ has quit [Ping timeout: 240 seconds]
Creator has quit [Ping timeout: 240 seconds]
Miron has quit [Ping timeout: 240 seconds]
epochwolf has quit [Ping timeout: 240 seconds]
Seich_ has quit [Ping timeout: 240 seconds]
cschneid_ has quit [Ping timeout: 240 seconds]
blackjid has quit [Ping timeout: 240 seconds]
duoi has quit [Ping timeout: 240 seconds]
kspencer has quit [Ping timeout: 240 seconds]
Luna_Moonfang has quit [Ping timeout: 240 seconds]
iooner has quit [Ping timeout: 240 seconds]
JoL1hAHN has quit [Ping timeout: 240 seconds]
davedev24 has quit [Read error: Network is unreachable]
DanKnox_ has joined #ruby
DanKnox has joined #ruby
Guest52280 has quit [Changing host]
Guest52280 has joined #ruby
fullofcaffeine has quit [Remote host closed the connection]
Guest52280 is now known as pushcx
crdpink has joined #ruby
Tomasso has quit [Ping timeout: 252 seconds]
craysiii has quit [Ping timeout: 240 seconds]
fullofcaffeine has joined #ruby
sysanthrope has joined #ruby
<Juan26> hi! im new here, im a ui/ux designer looking for learn some basic side server progamming skills, i was wondering if it is better to start with ruby or node.js or Django?
sorah_ has quit [Ping timeout: 240 seconds]
mahk has quit [Ping timeout: 268 seconds]
dkam__ has joined #ruby
Hounddog has joined #ruby
karapetyan has quit [Ping timeout: 248 seconds]
<baweaver> >> 'You should use ' + %w(ruby node python).sample
<ruby[bot]> baweaver: # => "You should use node" (https://eval.in/520369)
<djellemah> baweaver: do it a few more times...
<baweaver> django is a framework
<baweaver> python is its language
<havenwood> node is
<baweaver> honestly it doesn't matter
Seich has joined #ruby
acerna has joined #ruby
lipoqil has joined #ruby
Eleeleth has joined #ruby
LoganG has joined #ruby
hostess has joined #ruby
braderhart has joined #ruby
sushii has joined #ruby
davedev24 has joined #ruby
flughafen_ has joined #ruby
troter_______ has joined #ruby
jpinnix_______ has joined #ruby
fuzzyfuzz has quit [Ping timeout: 265 seconds]
mistym has joined #ruby
mistym has joined #ruby
mistym has quit [Changing host]
Creator has joined #ruby
<baweaver> but asking in a ruby channel is likely to net you ruby
JohnBat26 has joined #ruby
drbrain has joined #ruby
kspencer has joined #ruby
DenSchub has joined #ruby
iooner has joined #ruby
cschneid_ has joined #ruby
<baweaver> node is a framework as well, but that line is a bit blurrier.
duoi has joined #ruby
TDJACR has joined #ruby
mahk has joined #ruby
craysiii has joined #ruby
sorah_ has joined #ruby
<baweaver> well, node is JS on the server side
karapetyan has joined #ruby
<havenwood> Juan26: Give Sinatra a spin: http://www.sinatrarb.com
halfdan has joined #ruby
nfsnobody has joined #ruby
shanemcd has quit [Remote host closed the connection]
Liam` has joined #ruby
JoL1hAHN has joined #ruby
Bilge has joined #ruby
tylersmith has joined #ruby
akahn has joined #ruby
Phanes has joined #ruby
spk has joined #ruby
Phanes has quit [Changing host]
Phanes has joined #ruby
Luna_Moonfang has joined #ruby
adgtl has quit [Remote host closed the connection]
twe4ked has joined #ruby
incomprehensibly has joined #ruby
DarkBushido has joined #ruby
LBRapid has joined #ruby
zzak__ has joined #ruby
bttf has joined #ruby
RealMarc has joined #ruby
angryz has joined #ruby
DanKnox_ has quit [Ping timeout: 248 seconds]
DanKnox has quit [Ping timeout: 248 seconds]
epochwolf has joined #ruby
alxndr has joined #ruby
beanHolez has joined #ruby
<Juan26> yea i know is js, python or ruby the question is in it?
fullofcaffeine has quit [Ping timeout: 240 seconds]
dionysus69 has quit [Ping timeout: 250 seconds]
<baweaver> clarify that a bit
frode15243 has joined #ruby
[spoiler] has joined #ruby
bove has joined #ruby
Miron has joined #ruby
y2mq37 has quit [Read error: Network is unreachable]
fullofcaffeine has joined #ruby
y2mq37 has joined #ruby
benlakey has joined #ruby
voidDotClass has quit [Remote host closed the connection]
borkdude has joined #ruby
mrfooo has joined #ruby
cbetta has joined #ruby
deimos has joined #ruby
SCHAAP137 has joined #ruby
MiracleBlue___ has joined #ruby
boxrick1 has joined #ruby
<Juan26> sorry, my first quesstion was wrong, the question is what language is better to learn, python, ruby o js, i mean, the better one in terms of finding job and more "popular", more used in web app projects
deepak has joined #ruby
HashNuke has joined #ruby
avdi has joined #ruby
jimeh has joined #ruby
DoubleMalt has quit [Remote host closed the connection]
blackjid has joined #ruby
aspiers has quit [Ping timeout: 268 seconds]
chrisseaton has joined #ruby
djbender has joined #ruby
bauruine has joined #ruby
Dios has joined #ruby
<baweaver> they all are
sideshowcoder has joined #ruby
patchedmonkey has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
angiebadillo has joined #ruby
saneax has joined #ruby
dukedave has joined #ruby
lemur has joined #ruby
devbug has quit [Ping timeout: 240 seconds]
aspiers has joined #ruby
<Juan26> they are all, yea, stupid question
<djellemah> python will get you science jobs, ruby will make you smile, js will make you popular.
<baweaver> better question is what do you want to work on?
<Juan26> nice definition
ponga has joined #ruby
mrsolo has joined #ruby
skarn has joined #ruby
akitada has joined #ruby
<Juan26> yeah do you know some tut about making good questions?
<baweaver> healthcare, startups, big companies
<shevy> Juan26 ruby is best
zhomart has joined #ruby
Meow-J has joined #ruby
<zhomart> Helloi
skade has joined #ruby
<zhomart> Can you try on ruby 2.3.0 this line: > nil[asd] = qwe
<Juan26> thats what i need, someone telling me, ruby is the best lets go and get it learned now!
<zhomart> it doesn't raise an error, it just returns nil. Is it correct, do you know?
<Juan26> thanks guy, sorry for my stupid questions, have a nice day
<shevy> zhomart nil has no []
<zhomart> Try it on your irb
<baweaver> best is so subjective you can't hope to make that qualification
<shevy> NoMethodError: undefined method `[]' for nil:NilClass
<zhomart> hm..
<zhomart> ruby 2.3.0?
<shevy> zhomart you could perhaps argue that the parser should give that error, I am not sure why = has a higher priority assumingly
<shevy> yeah ruby 2.3.0p0 (2015-12-25 revision 53290)
bMalum has joined #ruby
lemur has quit [Ping timeout: 255 seconds]
<shevy> oh wait
Shaboum has quit [Quit: WeeChat 1.4]
<shevy> indeed no error :)
nfk|laptop has joined #ruby
beanHolez has quit [Remote host closed the connection]
<zhomart> 2.2.3 returns error
<shevy> what error?
<zhomart> 2.2.3 :001 > nil[asd] = qwe
<zhomart> NameError: undefined local variable or method `asd' for main:Object
<zhomart> from (irb):1
<shevy> hmm
<shevy> yeah that is weird
<baweaver> not really
<zhomart> $ irb
<baweaver> it looks for variables first
<zhomart> 2.3.0 :001 > nil[asd] = qwe
<zhomart> => nil
<baweaver> ah
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<baweaver> odd
Macaveli has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<djellemah> 23>> RUBY_VERSION
<ruby[bot]> djellemah: # => "2.3.0" (https://eval.in/520402)
<djellemah> 23>> nil[1] = 0
<ruby[bot]> djellemah: # => nil (https://eval.in/520403)
Creator has quit [Ping timeout: 240 seconds]
platzhirsch has left #ruby [#ruby]
arlek has joined #ruby
troulouliou_div2 has quit [Quit: Leaving]
<baweaver> 23>> nil.methods.grep('\[\]')
<ruby[bot]> baweaver: # => [] (https://eval.in/520404)
<zhomart> you can write anything on that line https://eval.in/520405
sgambino has joined #ruby
<baweaver> Ox0dea would have a hay day with this
Juan26 has left #ruby [#ruby]
steffkes has joined #ruby
<baweaver> eam: shenanigans above
bMalum has quit [Ping timeout: 250 seconds]
<djellemah> => is hashrocket, []= must be shenanigan
_djbkd has joined #ruby
<apeiros> ast>> nil[1] = 0
<ruby[bot]> apeiros: I have parsed your code, the result is at https://eval.in/520406
<djellemah> &.[]= lonely shenanigans. The operator that matz banished.
mark1 has quit [Quit: Leaving.]
znz_jp has quit [Ping timeout: 268 seconds]
WizJin has joined #ruby
dkam__ has quit [Ping timeout: 268 seconds]
<shevy> djellemah lol
chouhoulis has quit [Remote host closed the connection]
ur5us has joined #ruby
znz_jp has joined #ruby
dima_ has quit [Quit: This computer has gone to sleep]
linuxhiker has left #ruby [#ruby]
fontain has quit [Remote host closed the connection]
kingman has joined #ruby
beanHolez has joined #ruby
baweaver has quit [Remote host closed the connection]
infernix has joined #ruby
dima_ has joined #ruby
GriffinHeart has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
<zhomart> Found the issue
<shevy> cool
ur5us has quit [Ping timeout: 265 seconds]
idefine has quit [Remote host closed the connection]
zhomart has quit [Quit: zhomart]
Kryptonic has joined #ruby
kirillzh has joined #ruby
bklane has quit [Remote host closed the connection]
Guest54078 is now known as BLuEGoD
kirillzh has quit [Client Quit]
skade has joined #ruby
BLuEGoD is now known as Guest96619
fuzzyfuzz has joined #ruby
GriffinHeart has quit [Ping timeout: 255 seconds]
chatzilla has joined #ruby
casadei has joined #ruby
idefine has joined #ruby
Macaveli has joined #ruby
steffkes has quit [Ping timeout: 276 seconds]
<chatzilla> Looking for opinions. I'm looking to get into an entry-level dev gig, I know some Python. Why would Ruby be a better choice for a new developer?
<shevy> because ruby is better
Kryptonical has quit [Ping timeout: 268 seconds]
Macaveli has quit [Client Quit]
Snowy has quit []
finisherr has quit [Ping timeout: 240 seconds]
ponga has quit [Quit: Connection closed for inactivity]
<chatzilla> I've been doing my research, is it true that Ruby only has 1 way to do string formatting?
karapetyan has quit [Remote host closed the connection]
karapetyan has joined #ruby
Liothen has quit [Changing host]
Liothen has joined #ruby
finisherr has joined #ruby
bronson has joined #ruby
bronson has quit [Remote host closed the connection]
Mon_Ouie has quit [Ping timeout: 255 seconds]
<chatzilla> I'm highly annoyed that Python has 4 ways to format strings. %, .format, something else I haven't used, and a new one incoming soon. That's ridiculous. I searched Ruby docs and online, it appears Ruby only has %
bronson has joined #ruby
blaxter has quit [Ping timeout: 268 seconds]
<apeiros> String#% also exists as Kernel#sprintf and #format
<shevy> there is more than one way in ruby
<apeiros> so I guess python and ruby are equally bad in that regard
<apeiros> (bad as per your measure)
<al2o3-cr> and even printf
idefine has quit [Remote host closed the connection]
<shevy> for padding things, I prefer .ljust .center and .rjust these days
<chatzilla> it's just more surface area you have to know when you get someone else's codebase
idefine has joined #ruby
<apeiros> al2o3-cr: printf is printing, though
<chatzilla> adds burden to the noobies for no(?) gain
<al2o3-cr> well, true
<shevy> chatzilla someone else's codebase is always awful :)
<apeiros> chatzilla: I actually concur with aliases being generally a bad thing
<apeiros> with the exception of aliasing methods which have a common name for specific use-cases. e.g. aliasing == and eql? if they do the same.
skade has quit [Quit: Computer has gone to sleep.]
karapetyan has quit [Remote host closed the connection]
Dimik has joined #ruby
blackmesa has quit [Ping timeout: 255 seconds]
<al2o3-cr> >> [1 == 1.0, 1.eql?(1.0)]
<ruby[bot]> al2o3-cr: # => [true, false] (https://eval.in/520428)
betafive has quit [Quit: Leaving]
dima_ has quit [Quit: This computer has gone to sleep]
blackmesa has joined #ruby
<chatzilla> is the Ruby community in general interested in Elixir? I see that as the main perk to diving into Ruby, an exceptional next-step is there if desired/needed
Eiam_ has joined #ruby
<al2o3-cr> apeiros: my bad didn't read that thouroughly enough
kmckelvi1 has joined #ruby
<shevy> chatzilla dunno, there were a few. I think Radar... sevenseacat... probably some more
godzillaenlacasa has joined #ruby
nfk|laptop has quit [Ping timeout: 255 seconds]
blandflakes has joined #ruby
shadoi has joined #ruby
* al2o3-cr needs to learn himself rust
<shevy> you probably will hear crystal more often than elixir here though
nfk has quit [Remote host closed the connection]
kirillzh has joined #ruby
znz_jp has quit [Quit: kill -QUIT $$]
skade has joined #ruby
nfk has joined #ruby
nettoweb has joined #ruby
blandflakes_ has joined #ruby
blandflakes has quit [Disconnected by services]
blandflakes_ is now known as blandflakes
dkam__ has joined #ruby
Dimik has quit [Ping timeout: 244 seconds]
znz_jp has joined #ruby
blandflakes_ has joined #ruby
blandflakes has quit [Client Quit]
davedev24 has quit []
blandflakes_ is now known as blandflakes
kirillzh has quit [Client Quit]
kirillzh has joined #ruby
elaptics is now known as elaptics`away
skade has quit [Quit: Computer has gone to sleep.]
mdw has quit [Quit: Sleeping Zzzzz]
dkam__ has quit [Ping timeout: 240 seconds]
intrigueD has joined #ruby
openstruct has quit [Remote host closed the connection]
<chatzilla> i've heard about crystal on HN. It looks interesting. Does anyone know if IBM's Ruby JIT is near?
openstruct has joined #ruby
blackmesa has quit [Ping timeout: 276 seconds]
<shevy> not sure, one guy here was working on it a some time ago
skade has joined #ruby
idefine has quit [Remote host closed the connection]
andrewvos has quit [Ping timeout: 264 seconds]
spider-mario has joined #ruby
Dios|2 has joined #ruby
poweratom_ has joined #ruby
<chatzilla> is zed shaw hated or loved by the ruby community?
openstruct has quit [Read error: No route to host]
<pushcx> yes
openstruct has joined #ruby
Ishido has quit [Remote host closed the connection]
bklane has joined #ruby
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Dios has quit [Ping timeout: 252 seconds]
<chatzilla> just curious, I was thinking about using LRTHW to get my feet wet
swills has joined #ruby
lsmola has quit [Ping timeout: 250 seconds]
<chatzilla> tryruby.org has been pretty good. I honestly don't see many differences between Ruby and Python, very similar
beanHolez has quit [Remote host closed the connection]
DanKnox_ has joined #ruby
DanKnox has joined #ruby
patchedmonkey has joined #ruby
idefine has joined #ruby
<shevy> chatzilla that is because you don't know either
asprillia has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
william3 has joined #ruby
fmcgeough has joined #ruby
<chatzilla> shevy: if you run down this list http://hyperpolyglot.org/scripting I can't find too many meaningful differences. But yes, I don't know either very well.
infra-re_ has joined #ruby
dionysus69 has joined #ruby
Hounddog has quit [Read error: Connection reset by peer]
shanemcd has joined #ruby
d10n-work has quit [Quit: Connection closed for inactivity]
<shevy> yes that page is useless
idefine has quit [Remote host closed the connection]
Mr0riss0 is now known as Mr0rris0
<shevy> this is a good page - old but good http://www.artima.com/intv/ruby.html
<chatzilla> shevy: thanks, I'll read it
DanKnox_ has quit [Ping timeout: 240 seconds]
DanKnox has quit [Ping timeout: 240 seconds]
Weethus has joined #ruby
idefine has joined #ruby
dmolina has quit [Quit: Leaving.]
<shevy> the philosophy is the biggest difference
infra-red has quit [Ping timeout: 248 seconds]
andikr has joined #ruby
<shevy> you'll see it with () versus no parens, explicit self versus implicit self, omitting return versus requiring it, mandatory indent or parse-does-not-care-about-indent in order to evaluate the code
Amnez777 has joined #ruby
idefine has quit [Remote host closed the connection]
idefine has joined #ruby
PedramT has joined #ruby
cpruitt has joined #ruby
<shevy> a big complaint that you can sometimes read on #ruby is that a constant is not contant :) that is when it can be changed, I think apeiros is still not a big fan (or perhaps of the name/term... constant would mean that it would not change, like Math::PI)
<chatzilla> shevy: isn't that changing with Ruby 3.0? immutable strings (which is how Python does them)
<apeiros> I'd prefer ruby to raise upon reassignment of a constant
<apeiros> warnings are mostly useless.
baweaver has joined #ruby
Amnez777 has quit [Changing host]
Amnez777 has joined #ruby
<shevy> chatzilla no, I think immutable strings are separate from constant/no constant
benlieb has joined #ruby
shanemcd has quit [Ping timeout: 255 seconds]
A124 has quit [Quit: '']
Weethus has quit [Remote host closed the connection]
JDiPierro has joined #ruby
binarix has joined #ruby
yfeldblum has joined #ruby
tildes has joined #ruby
nogic has quit [Ping timeout: 255 seconds]
fmcgeough has quit [Remote host closed the connection]
<shevy> you can see in some projects how a "constant" string is frozen... like module Foo; BAR = "hello world".freeze ... rubocop had that somewhere in its code base or so, like 50 .freeze calls or something like that :P
fmcgeough has joined #ruby
Ishido has joined #ruby
Elysia has joined #ruby
<shevy> VARIABLE_ASSIGNMENT_TYPES = [:casgn, :cvasgn, :gvasgn, :ivasgn, :lvasgn].freeze
<shevy> and so on... ok this is an array with symbols so not a string so perhaps I was wrong
<shevy> no wait ... IF = 'if'.freeze
<shevy> :)
idefine has quit [Remote host closed the connection]
Koshian has quit [Quit: Tiarra 0.1: SIGTERM received; exit]
PedramT has quit [Ping timeout: 255 seconds]
<shevy> apeiros surely approves :D
BSaboia has quit [Quit: Leaving]
p1k has quit [Ping timeout: 265 seconds]
<benlieb> in rspec is there a way to do a expect(subject).to receive(:retrieve).once without actually stubbing the method?
bklane has quit [Remote host closed the connection]
baweaver has quit [Ping timeout: 250 seconds]
cpruitt has left #ruby [#ruby]
bluOxigen_ has joined #ruby
idefine has joined #ruby
binarix has left #ruby [#ruby]
<apeiros> shevy: I have no issue with mutable constants. I have an issue with reassignable constants.
solars has joined #ruby
bluOxigen has quit [Ping timeout: 268 seconds]
Koshian has joined #ruby
al2o3-cr has quit [Ping timeout: 240 seconds]
<chatzilla> that is really interesting. http://ruby.about.com/od/advancedruby/a/Constants-In-Ruby.htm I've never heard of such a thing
rakm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ziyadb has quit [Quit: Connection closed for inactivity]
synthroid has quit []
Asher has quit [Quit: Leaving.]
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<apeiros> chatzilla: that article is dangerous. it doesn't properly differentiate "change".
<apeiros> there's mutate an object, and there's assigning a variable. both can be considered "changes" wrt the variable
A124 has joined #ruby
zeroDivisible has joined #ruby
trinaldi has quit [Quit: thanks!]
djellemah_ has joined #ruby
al2o3-cr has joined #ruby
firstdayonthejob has joined #ruby
sgambino has joined #ruby
<Zarthus_> my code would have looked a lot prettier if I knew that any constant starts with a capital letter
jottr has quit [Ping timeout: 244 seconds]
Zarthus_ is now known as Zarthus
zast has quit [Remote host closed the connection]
last_staff has joined #ruby
rakm has joined #ruby
GriffinHeart has joined #ruby
saneax is now known as saneax_AFK
chouhoulis has joined #ruby
chouhoulis has quit [Remote host closed the connection]
DanKnox has joined #ruby
chouhoulis has joined #ruby
DanKnox_ has joined #ruby
Guest96619 is now known as BLuEGoD
srenatus has quit [Quit: Connection closed for inactivity]
mg^ has left #ruby ["Leaving"]
BLuEGoD is now known as Guest45931
mg^ has joined #ruby
elifoster has quit [Ping timeout: 240 seconds]
skade has quit [Quit: Computer has gone to sleep.]
idefine has quit [Remote host closed the connection]
the_drow has quit [Quit: This computer has gone to sleep]
<djellemah_> benlieb: I think you're be looking for .and_call_original although it may have a different name in the new rspec syntax.
Shaboum has joined #ruby
GriffinHeart has quit [Ping timeout: 265 seconds]
<benlieb> djellemah_: that's it! someone in the rails channel also pointed me in that direction. much thanks.
freerobby has quit [Quit: Leaving.]
steffkes has joined #ruby
fmcgeough has quit [Quit: fmcgeough]
<djellemah_> ;-)
bklane has joined #ruby
darix has quit [Quit: may the packets be with you...]
DanKnox_ has quit [Ping timeout: 250 seconds]
DanKnox has quit [Ping timeout: 276 seconds]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bluOxigen has joined #ruby
bluOxigen_ has quit [Ping timeout: 250 seconds]
idefine has joined #ruby
idefine has quit [Remote host closed the connection]
shanemcd has joined #ruby
cschneid has joined #ruby
kirun has joined #ruby
<cschneid> Which library implement's rail's erb syntax -%> -- it looks like it's an extension on top of the built-in ERB library?
PedramT has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
shanemcd has quit [Ping timeout: 244 seconds]
intrigue_ has joined #ruby
baweaver has joined #ruby
casadei has quit [Remote host closed the connection]
aaeron has joined #ruby
casadei has joined #ruby
casadei has quit [Remote host closed the connection]
darix- has joined #ruby
skade has joined #ruby
darix- is now known as darix
intrigueD has quit [Ping timeout: 250 seconds]
Asher has joined #ruby
A124 has quit [Quit: '']
asprillia has joined #ruby
dkam__ has joined #ruby
yfeldblum has quit [Ping timeout: 240 seconds]
idefine has joined #ruby
thejoecarroll has quit [Quit: ZNC - http://znc.in]
rodfersou is now known as rodfersou|coffee
baweaver has quit [Remote host closed the connection]
bklane has quit [Read error: Connection reset by peer]
angryz has quit [Quit: Connection closed for inactivity]
A124 has joined #ruby
thejoecarroll has joined #ruby
bklane has joined #ruby
despai has joined #ruby
bklane_ has joined #ruby
skade has quit [Quit: Computer has gone to sleep.]
rakm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
weemsledeux has joined #ruby
Axy has joined #ruby
Axy has joined #ruby
thelacce has joined #ruby
dkam__ has quit [Ping timeout: 248 seconds]
skade has joined #ruby
skade has quit [Client Quit]
idefine has quit [Remote host closed the connection]
bklane has quit [Ping timeout: 240 seconds]
Mia has quit [Ping timeout: 244 seconds]
beanHolez has joined #ruby
rakm has joined #ruby
avenj has joined #ruby
al2o3-cr has quit [Ping timeout: 276 seconds]
baweaver has joined #ruby
al2o3-cr has joined #ruby
Dios has joined #ruby
william3 has quit [Remote host closed the connection]
sauvin has quit [Read error: Connection reset by peer]
idefine has joined #ruby
Dios|2 has quit [Ping timeout: 252 seconds]
intrigue_ has quit [Remote host closed the connection]
sandstrom has joined #ruby
idefine_ has joined #ruby
DanKnox has joined #ruby
DanKnox_ has joined #ruby
karapetyan has joined #ruby
jackjackdripper has joined #ruby
idefine_ has quit [Remote host closed the connection]
baweaver has quit [Ping timeout: 248 seconds]
idefine has quit [Ping timeout: 250 seconds]
cdg has quit [Remote host closed the connection]
sandstrom has quit [Quit: My computer has gone to sleep.]
Guest76880 is now known as Radar
sysanthrope has quit [Quit: No Ping reply in 180 seconds.]
helpa has joined #ruby
<Radar> cschneid: Erubis I think
<cschneid> Radar: I ended up researching a bit more, ERB 2.0+ seems to support that syntax if you set a flag when you ERB.new
<Radar> aha
devbug has joined #ruby
DanKnox_ has quit [Ping timeout: 255 seconds]
DanKnox has quit [Ping timeout: 255 seconds]
<cschneid> but I'm writing a library (using ERB to customize yaml config files), and have to deal w/ older rubies.
<cschneid> for now, I'll just tell customers: "Don't do that". :)
rodfersou|coffee is now known as rodfersou
bklane_ has quit [Ping timeout: 250 seconds]
beanHolez has quit [Remote host closed the connection]
sysanthrope has joined #ruby
ur5us has joined #ruby
gizmore has joined #ruby
ixti has joined #ruby
idefine has joined #ruby
FernandoBasso has joined #ruby
bklane has joined #ruby
ElderFain has quit [Max SendQ exceeded]
ElderFain has joined #ruby
ElderFain has joined #ruby
ElderFain has quit [Changing host]
idefine has quit [Remote host closed the connection]
tvw has quit []
intrigueD has joined #ruby
dopie has quit [Quit: Lost terminal]
darkf has joined #ruby
roshanavand has joined #ruby
jottr has joined #ruby
karapetyan has quit [Remote host closed the connection]
dopie has joined #ruby
DJTrey has quit [Quit: Cya]
kirillzh has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dopie has quit [Client Quit]
dopie has joined #ruby
krobzaur has quit [Quit: WeeChat 0.4.2]
stannard has quit [Remote host closed the connection]
dopie has quit [Client Quit]
bklane has quit [Ping timeout: 250 seconds]
PedramT has quit [Remote host closed the connection]
Abrin2 is now known as Abrin
dopie has joined #ruby
kirillzh has joined #ruby
casadei has joined #ruby
aegis3121 has joined #ruby
idefine has joined #ruby
frem has joined #ruby
stannard has joined #ruby
jottr has quit [Ping timeout: 250 seconds]
freerobby has joined #ruby
Melpaws has joined #ruby
stannard has quit [Remote host closed the connection]
idefine has quit [Ping timeout: 250 seconds]
ljames has quit []
codecop has quit [Remote host closed the connection]
sandstrom has joined #ruby
asccigcc has quit [Quit: asccigcc]
TomyLobo has joined #ruby
babblebre has quit [Quit: Connection closed for inactivity]
flughafen_ has quit [Ping timeout: 240 seconds]
kith has joined #ruby
davedev24 has joined #ruby
idefine has joined #ruby
Guest45931 is now known as BLuEGoD
blackmesa has joined #ruby
blandflakes has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
A124 has quit [Quit: '']
BLuEGoD is now known as Guest79762
DanKnox has joined #ruby
DanKnox_ has joined #ruby
karapetyan has joined #ruby
aaeron has quit [Quit: aaeron]
dtordable has quit [Quit: leaving]
dopie has quit [Quit: Lost terminal]
A124 has joined #ruby
replay has joined #ruby
SenpaiSilver has quit [Quit: Leaving]
blandflakes has joined #ruby
baweaver has joined #ruby
infra-red has joined #ruby
Guest49472 has quit [Quit: leaving]
beanHolez has joined #ruby
zacts has joined #ruby
DanKnox_ has quit [Ping timeout: 240 seconds]
DanKnox has quit [Ping timeout: 240 seconds]
pawnbox has quit [Remote host closed the connection]
dopie has joined #ruby
infra-re_ has quit [Ping timeout: 248 seconds]
podman has quit [Quit: Connection closed for inactivity]
cpruitt has joined #ruby
tildes has quit [Ping timeout: 240 seconds]
zackzorman has quit [Ping timeout: 268 seconds]
ldnunes has quit [Quit: Leaving]
william3 has joined #ruby
aaeron has joined #ruby
crowell has quit [Ping timeout: 250 seconds]
eldariof has joined #ruby
hxegon is now known as hxegon_AFK
arthropododo has joined #ruby
crowell has joined #ruby
idefine has quit [Ping timeout: 255 seconds]
baweaver has quit [Remote host closed the connection]
fullofcaffeine has quit [Remote host closed the connection]
babblebre has joined #ruby
jdelaney has joined #ruby
dkam__ has joined #ruby
last_staff has quit [Quit: last_staff]
stannard has joined #ruby
danieli has quit [Changing host]
danieli has joined #ruby
s00pcan_ has quit [Ping timeout: 240 seconds]
zackzorman has joined #ruby
dkam__ has quit [Ping timeout: 255 seconds]
s00pcan_ has joined #ruby
skade has joined #ruby
sysanthrope has quit [Read error: Connection reset by peer]
eldariof has quit []
idefine has joined #ruby
DanKnox has joined #ruby
stannard has quit [Remote host closed the connection]
al2o3-cr has quit [Quit: WeeChat 1.4 %t]
skade has quit [Client Quit]
rbennacer has joined #ruby
sysanthrope has joined #ruby
_djbkd has quit [Remote host closed the connection]
al2o3-cr has joined #ruby
Asher has quit [Quit: Leaving.]
rodfersou has quit [Quit: leaving]
<chatzilla> shevy: I'd forgotten, Py doesn't support true consts either but you can whip up some code for it http://code.activestate.com/recipes/65207-constants-in-python/?in=user-97991
yqt has joined #ruby
idefine has quit [Remote host closed the connection]
asprillia has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
stannard has joined #ruby
DanKnox has quit [Ping timeout: 240 seconds]
yfeldblum has joined #ruby
benlieb has quit [Quit: benlieb]
<shevy> chatzilla there are some things that python does probably better. I think one complaint is in regards to its import system, ruby has mostly just require and load, which works fine because it is super simple but does not allow for much advanced stuff/control
<shevy> perhaps that will change with ruby 3.x!
<shevy> god I hate python syntax ... def __init__(self,i):
PedramT has joined #ruby
jam_ has joined #ruby
stannard has quit [Remote host closed the connection]
<Zarthus> python oop is awful, yeah
jottr has joined #ruby
blackmesa has quit [Ping timeout: 255 seconds]
<Zarthus> I hope they get rid of the whole `self' thing at least.
<EvilRoey> Zarthus: ok hey
<EvilRoey> so ou say it's awful
<EvilRoey> I'm coming from the Python side
<EvilRoey> what do you like about how Ruby does it?
idefine has joined #ruby
nfk|laptop has joined #ruby
<Zarthus> EvilRoey: This is nothing to compare with ruby (nor really an argument fit for this channel)
<EvilRoey> ok
hxegon_AFK is now known as hxegon
<EvilRoey> I mean I'm not arguing, I'm listening to see what I can gain from Ruby
<Zarthus> I've written enough code in python and chose to do it in OOP, and writing it was not a pleasure. that's all
<EvilRoey> ok
<EvilRoey> *so* with that, what do you like about how Ruby does it?
<EvilRoey> (again not arguing, just asking sincerely as I want to get into Ruby more, myself)
<Zarthus> I mean, for one, ruby doesn't require you to pass self in every method, or has the complexity of import statements
<EvilRoey> alright
<Zarthus> I also don't remember but I don't think python has private/protected
<shevy> EvilRoey you just have to scroll up for the last 2 hours or so :P
openstruct has quit []
<EvilRoey> when you mean complexity of import statements, what do you mean? (like, how does Ruby do it?)
<EvilRoey> shevy: aye ok :)"
<EvilRoey> I've done PYthon since 1997 and am madly in love with it. Still I can always learn new languages without getting a complex about judging
<shevy> we should probably come up with some import system for ruby 3.x too
<EvilRoey> *can always stand to learn new languages
benlieb has joined #ruby
<shevy> 1997!
<shevy> that's almost 20 years
<EvilRoey> yep
<EvilRoey> addiction runs deep what can I say heh
<EvilRoey> I mean I started with C when I was 10 back in 1990-ish, then C++ in 1993, then Python since 1997
<shevy> I think I have been doing ruby since ... hmm ... perhaps 12 years I think... roughly
<EvilRoey> wow
jam_ has quit [Ping timeout: 240 seconds]
<EvilRoey> shevy: how old are you now?
<shevy> I am old now
<shevy> I started late too :)
<shevy> chris2 started when he was like 6 years or something :P
<Zarthus> EvilRoey: this part in particular "from core import module; self.ModuleHandler = module.ModuleHandler()" -- granted you can get rid of the module.* thing, it always felt a bit weird.
<shevy> Zarthus the ugly self.!!!
<chris2> i was 11
<shevy> :)
<EvilRoey> hrm
<EvilRoey> Zarthus: ok, and how in Ruby?
<al2o3-cr> Lua oop: Foo = { new = function(self, x) o = {}; o.x = x; self.__index = self; setmetatable(o, self); return o end }; f = Foo:new("foo"); print(f.x) :P
<chatzilla> EvilRoey: I wish I'd found Py or Ruby in 1997. All I knew existed back then was qbasic, perl and vb.
<EvilRoey> aye
<EvilRoey> chatzilla: before that, I only knew a little TCL and Perl
s00pcan_ has quit [Ping timeout: 248 seconds]
<EvilRoey> that's what the scripting world look like to me as well
<Zarthus> EvilRoey: `require 'modhandler'; @mh = ModuleHandler.new` i'd reckoon
Kero has joined #ruby
<chatzilla> EvilRoey: I still regret not getting into RoR back in ~05 when it hit big. I had friends doing it. Just peeking in today. I'd love to be an old Ruby/RoR pro
<al2o3-cr> oops thought this was #ruby-offtopic :(
<Zarthus> I'm excited to program ruby in 2016, because it seems to have decent windows support now :P
steffkes has quit [Ping timeout: 250 seconds]
<Zarthus> Yes, sir. I do like hurting myself. But I'm not suicidal.
s00pcan_ has joined #ruby
rbennace_ has joined #ruby
nogic has joined #ruby
djellemah_ has quit [Ping timeout: 240 seconds]
<EvilRoey> Zarthus: ahhh ok
<Zarthus> anyways, if anything, ruby has a lot of sugar that python doesn't
steffkes has joined #ruby
steffkes has quit [Changing host]
steffkes has joined #ruby
<EvilRoey> chatzilla: you can still do it, just practice
<Zarthus> for being a scripting language, python still forces you to type quite a bit of redundant things
<EvilRoey> ok
last_staff has joined #ruby
<chatzilla> Zarthus: years ago, the weak Windows support was one main reason I went with Python.. just wanted that possibility open
<Zarthus> and while procedural is okay, classes really just... don't... work.
<chatzilla> Zarthus: good to know that has improved, I tried researching on that recently in fact
Asher has joined #ruby
idefine has quit [Remote host closed the connection]
<shevy> I never got into Tcl much, I found it to be quite weird. Perl was how I sorta started
<Zarthus> I started with my IRC client (mIRC) and GTA:San Andreas multiplayer (PAWN)
<shevy> hehe
<shevy> so you were a gamer
<Zarthus> moved on to PHP after that
<EvilRoey> ah
<Zarthus> My life was full of bad decisions.
rbennacer has quit [Ping timeout: 265 seconds]
Dios has quit [Ping timeout: 252 seconds]
sankaber has quit [Read error: Connection reset by peer]
<shevy> my life still is!
<Zarthus> :D
<chatzilla> I've been a hobbyist since my QBASIC days, avoided becoming a professional dev because everyone kept spooking me about India and outsourcing. I regret listening and going another way for my day job since this is my passion
DanKnox has joined #ruby
DanKnox_ has joined #ruby
sankaber has joined #ruby
<Zarthus> I'm pretty young in those regards, 2010 is when I seriously started.
last_staff has quit [Client Quit]
<Zarthus> granted, I'm 20. and I'm just making you all feel old :(
Snowy has joined #ruby
idefine has joined #ruby
yxhuvud has quit [Ping timeout: 264 seconds]
<chatzilla> I'm 34, I'm sure I have plenty I could learn from you.. and instruction is welcome ! :D
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
<al2o3-cr> i'm 177 years young :P
<chatzilla> shoot, I'd work for a 20 year old manager if I could find a willing, open and kind place to start my dev career path. I dont care.
<Zarthus> I'm not a manager though. :P
* Zarthus currently is commiting <strike>slavery</strike> internship at a local startup
agentmeerkat has joined #ruby
idefine has quit [Remote host closed the connection]
Guest25605 has quit [Changing host]
Guest25605 has joined #ruby
Guest25605 is now known as nuck
<chatzilla> ^ that is what I do not want. I've worked insane hours as a devops monkey. I'm over granting myself cancer + diabetes for some abusive employer for not enough money.
<shevy> I wanna be 20 too!
<al2o3-cr> shevy: you are 20 :P
<xpt> "I'm not 50 I'm 18 with 32 years of experience"
_djbkd has joined #ruby
<al2o3-cr> xpt: :)
<shevy> hey that would still be possible
<shevy> but they are looking for 25 years old folks with 50 years of experience! in rails!!!
<al2o3-cr> i'm 10 in the head some days
DanKnox has quit [Ping timeout: 240 seconds]
DanKnox_ has quit [Ping timeout: 255 seconds]
jottr has quit [Ping timeout: 240 seconds]
Coldblackice has joined #ruby
aaeron has quit [Quit: aaeron]
rakm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
toretore has joined #ruby
dkam__ has joined #ruby
JakFrist has joined #ruby
infra-re_ has joined #ruby
<slash_nick> chatzilla: whoa, cancer?
<slash_nick> explain?
idefine has joined #ruby
tfitts has joined #ruby
<slash_nick> diabetes makes perfect sense :)
<apeiros> xpt: hehe, love that
<slash_nick> i'm worried there's some heightened cancer risk for developers
<tfitts> I'm trying to use https://github.com/nehresma/cupsffi and I have cups installed on my system, but when I try to require it I get an error that says libcups not installed
<chatzilla> slash_nick: coworker of mine is only 30 and came down with stage 4 colon cancer. i partially blame the stress of his 24/7 pager as an influence involved
FooMunki has quit [Quit: FooMunki]
<slash_nick> yikes... ok. i'll try and remember to take more deep breaths, stand up breaks, whatnot
shanemcd has joined #ruby
FooMunki has joined #ruby
infra-red has quit [Ping timeout: 250 seconds]
idefine_ has joined #ruby
<Zarthus> remember not to sit in your chair for 8 hours straight!
m8 has joined #ruby
<Zarthus> a small walk to the coffee machine every hour is good for your health.
<chatzilla> treadmill desk if you work at home like me
godzillaenlacasa has quit [Quit: ZZZZZ....]
dkam__ has quit [Ping timeout: 244 seconds]
lxsameer has quit [Quit: Leaving]
andikr has quit [Remote host closed the connection]
baweaver has joined #ruby
al2o3-cr has quit [Quit: WeeChat 1.4 %t]
aaeron has joined #ruby
DoubleMalt has joined #ruby
cdg has joined #ruby
al2o3-cr has joined #ruby
mdw has joined #ruby
idefine_ has quit [Remote host closed the connection]
mfb2 has quit [Read error: Connection reset by peer]
shanemcd has quit [Ping timeout: 240 seconds]
idefine_ has joined #ruby
<eam> you can't get cancer from sitting
mfb2 has joined #ruby
idefine_ has quit [Remote host closed the connection]
idefine has quit [Ping timeout: 276 seconds]
idefine has joined #ruby
jdelaney has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Cohedrin has joined #ruby
stannard has joined #ruby
htmldrum has joined #ruby
Guest79762 is now known as BLuEGoD
william3 has quit [Remote host closed the connection]
BLuEGoD is now known as Guest71445
idefine has quit [Remote host closed the connection]
gizless has joined #ruby
gizmore has quit [Ping timeout: 255 seconds]
poweratom__ has joined #ruby
hayden_ has quit [Quit: Connection closed for inactivity]
rbennace_ has quit [Remote host closed the connection]
william3 has joined #ruby
idefine has joined #ruby
shredding has joined #ruby
DoubleMalt has quit [Remote host closed the connection]
poweratom_ has quit [Ping timeout: 244 seconds]
duckpupp1 has quit [Ping timeout: 255 seconds]
Shaboum has quit [Quit: WeeChat 1.4]
the_drow has joined #ruby
william3 has quit [Ping timeout: 255 seconds]
shanemcd has joined #ruby
shanemcd has quit [Remote host closed the connection]
firstdayonthejob has quit [Quit: WeeChat 1.4-dev]
johnmilton has quit [Remote host closed the connection]
thelacce has quit [Ping timeout: 244 seconds]
PedramT_ has joined #ruby
idefine has quit [Remote host closed the connection]
the_drow has quit [Client Quit]
thelacce has joined #ruby
PedramT has quit [Ping timeout: 276 seconds]
flughafen has quit [Ping timeout: 248 seconds]
firstdayonthejob has joined #ruby
mary5030 has quit [Remote host closed the connection]
al2o3-cr has quit [Quit: WeeChat 1.4 %t]
al2o3-cr has joined #ruby
JakFrist has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ping-pong has quit [Ping timeout: 248 seconds]
roshanavand has quit [Read error: Connection reset by peer]
sinkensabe has joined #ruby
chipotle has quit [Quit: cheerio]
<shevy> tfitts you may have to install cups first?
roshanavand has joined #ruby
chipotle has joined #ruby
frozen3 has quit []
intrigueD has quit [Ping timeout: 240 seconds]
PedramT_ has quit [Ping timeout: 240 seconds]
PedramT has joined #ruby
dravine has quit [Quit: dravine]
wprice_ has joined #ruby
wprice has quit [Ping timeout: 248 seconds]
wprice_ is now known as wprice
ur5us has quit [Remote host closed the connection]
flughafen has joined #ruby
PedramT_ has joined #ruby
blackmesa has joined #ruby
PedramT__ has joined #ruby
PedramT has quit [Read error: Connection reset by peer]
al2o3-cr has quit [Ping timeout: 240 seconds]
sinkensabe has quit [Remote host closed the connection]
al2o3-cr has joined #ruby
idefine has joined #ruby
swills has quit [Ping timeout: 250 seconds]
ping-pong has joined #ruby
PedramT_ has quit [Ping timeout: 248 seconds]
s00pcan_ has quit [Remote host closed the connection]
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
marr has joined #ruby
fullofcaffeine has joined #ruby
gizless has quit [Quit: KVIrc 4.9.1 Aria http://www.kvirc.net/]
roshanavand has quit [Read error: Connection reset by peer]
<darix> tfitts: you might need the devel package of your distro installed
<darix> so you have the .so symlink
roshanavand has joined #ruby
chatzilla is now known as yenic
PedramT has joined #ruby
idefine has quit [Read error: Connection reset by peer]
PedramT__ has quit [Ping timeout: 265 seconds]
ping-pong has quit [Ping timeout: 265 seconds]
rakm has joined #ruby
blackmesa has quit [Ping timeout: 240 seconds]
replay has quit [Ping timeout: 250 seconds]
trinaldi has joined #ruby
steffkes has quit [Ping timeout: 240 seconds]
PedramT has quit [Ping timeout: 240 seconds]
PedramT has joined #ruby
devbug has quit [Ping timeout: 244 seconds]
DanKnox has joined #ruby
DanKnox_ has joined #ruby
sinkensabe has joined #ruby
aegis3121 has quit [Ping timeout: 248 seconds]
<TomyLobo> treadmill desk... always reminds me of this: https://www.youtube.com/watch?v=fuS-3HSnpq4#t=11.7
aegis3121 has joined #ruby
tvw has joined #ruby
idefine has joined #ruby
ping-pong has joined #ruby
Xiti has quit [Quit: Xiti]
Xiti has joined #ruby
Snowy has quit []
idefine has quit [Remote host closed the connection]
skade has joined #ruby
PedramT_ has joined #ruby
jdelaney has joined #ruby
sinkensabe has quit [Remote host closed the connection]
dkam__ has joined #ruby
PedramT has quit [Ping timeout: 244 seconds]
idefine has joined #ruby
poweratom__ has quit [Quit: Be back later ...]
yxhuvud has joined #ruby
poweratom__ has joined #ruby
DanKnox_ has quit [Ping timeout: 255 seconds]
DanKnox has quit [Ping timeout: 255 seconds]
idefine has quit [Remote host closed the connection]
nettoweb has joined #ruby
poweratom___ has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
baweaver has quit [Remote host closed the connection]
<shevy> lol
nettoweb has quit [Max SendQ exceeded]
<shevy> was a bit late for first april
dkam__ has quit [Ping timeout: 240 seconds]
JDiPierro has quit [Remote host closed the connection]
stevemackinnon has joined #ruby
<shevy> TomyLobo isn't that unconstitutional? like you know, torture
sdothum has joined #ruby
poweratom__ has quit [Ping timeout: 240 seconds]
dlitvak_ has joined #ruby
jdelaney has quit [Quit: Textual IRC Client: www.textualapp.com]
nettoweb has joined #ruby
dlitvak__ has joined #ruby
sankaber has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
PedramT has joined #ruby
dlitvak has quit [Ping timeout: 265 seconds]
Guest71445 is now known as BLuEGoD
symm- has quit [Ping timeout: 268 seconds]
BLuEGoD is now known as Guest45911
infra-re_ has quit [Remote host closed the connection]
firstdayonthejob has quit [Quit: WeeChat 1.4-dev]
PedramT_ has quit [Ping timeout: 250 seconds]
nfk has quit [Remote host closed the connection]
_djbkd has quit [Remote host closed the connection]
decoponyo has joined #ruby
sinkensabe has joined #ruby
dlitvak_ has quit [Ping timeout: 250 seconds]
Spami has quit [Quit: Leaving]
graffix has quit [Ping timeout: 265 seconds]
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
graffix has joined #ruby
Spami has joined #ruby
_djbkd has joined #ruby
firstdayonthejob has joined #ruby
PedramT_ has joined #ruby
decoponio has quit [Ping timeout: 250 seconds]
<TomyLobo> shevy, nah, it's good for your colon to walk once in a while
PedramT has quit [Ping timeout: 244 seconds]
symm- has joined #ruby
<TomyLobo> you set it to walking speed, not to usain bolt
dkam__ has joined #ruby
sinkensabe has quit [Remote host closed the connection]
steffkes has joined #ruby
steffkes has joined #ruby
jottr has joined #ruby
tulak has quit [Read error: Connection reset by peer]
dkam__ has quit [Ping timeout: 255 seconds]
_djbkd has quit [Quit: My people need me...]
PedramT has joined #ruby
<shevy> :P
tulak has joined #ruby
goodcodeguy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dkam__ has joined #ruby
sinkensabe has joined #ruby
idefine has joined #ruby
idefine has quit [Remote host closed the connection]
idefine has joined #ruby
poweratom____ has joined #ruby
DoubleMalt has joined #ruby
ramortegui has quit [Quit: Ex-Chat]
PedramT_ has quit [Ping timeout: 276 seconds]
poweratom______ has joined #ruby
blackmesa has joined #ruby
mdw has quit [Quit: Sleeping Zzzzz]
poweratom___ has quit [Ping timeout: 240 seconds]
despai has quit [Quit: This computer has gone to sleep]
Azure has quit [Ping timeout: 264 seconds]
j0n3 has quit [Quit: Leaving]
Azure has joined #ruby
poweratom____ has quit [Ping timeout: 255 seconds]
marxarelli is now known as marxarelli|afk
shanemcd has joined #ruby
Melpaws has quit [Quit: Leaving.]
devbug has joined #ruby
solocshaw has joined #ruby
crdpink2 has joined #ruby
ta has quit [Remote host closed the connection]
rakm has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
binns has joined #ruby
crdpink has quit [Ping timeout: 268 seconds]
mfb2 has quit [Remote host closed the connection]
idefine_ has joined #ruby
mfb2 has joined #ruby
binns has left #ruby [#ruby]
ocbtec has quit [Quit: leaving]
shanemcd has quit [Ping timeout: 244 seconds]
idefine has quit [Ping timeout: 240 seconds]
Ishido has quit [Quit: Roads? Where We're Going We Don't Need Roads.]
swills has joined #ruby
karapetyan has quit [Remote host closed the connection]
weemsledeux has joined #ruby
maletor has joined #ruby
shanemcd has joined #ruby
decoponyo has quit [Quit: Leaving...]
sponjii has quit [Remote host closed the connection]
skade has quit [Quit: Computer has gone to sleep.]
<yenic> 1 to 2 mph tops. it's good for more than just your colon, lose 40lbs in a year and remove all sorts of health nasties
skade has joined #ruby
stannard has quit [Remote host closed the connection]
dopamean_ has quit [Ping timeout: 248 seconds]
tatsuo has joined #ruby
<eam> exercise is mostly irrelevant for weight loss -- caloric intake dominates
shanemcd has quit [Ping timeout: 244 seconds]
<yenic> if you're not fat- you may well be storing fat in and around your organs. which is worse because you dont know unlike us traditional fatties
sandstrom has quit [Quit: My computer has gone to sleep.]
<yenic> i lost 40lbs walking on a treadmill desk 5 hours a day :)
Xeago has joined #ruby
zenlot1 has joined #ruby
swills has quit [Quit: Leaving]
aryaching has quit []
haylon has quit [Quit: WeeChat 1.4]
rbennacer has joined #ruby
zenlot has quit [Ping timeout: 244 seconds]
railsForDaiz has joined #ruby
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
spacemud has quit [Ping timeout: 265 seconds]
<TomyLobo> and you can too! order now!
swills has joined #ruby
<riceandbeans> if foo = 1 and bar = 2, how would I said, if foo == 1 or bar == 2 but not if both foo == 1 and bar == 2, do this?
<TomyLobo> riceandbeans, xor
<al2o3-cr> best way to lose weight SWINMMING if you a little larger than life :P
<al2o3-cr> without the 'N'
G has quit [Remote host closed the connection]
sinkensabe has quit [Read error: Connection reset by peer]
<riceandbeans> TomyLobo: just use ^ or is there a word too?
<Ox0dea> riceandbeans: That's the XOR operator for integers.
<riceandbeans> like, can I say if foo == 1 xor bar == 2 ?
<Ox0dea> No.
<Ox0dea> But that'd be interesting.
spacemud has joined #ruby
<riceandbeans> let's say it's a string or a boolean
<eam> I mean, if you want it to be clear you can literally write: if (foo == 1 or bar == 2) and not (foo == 1 and bar == 2)
<Ox0dea> Ew.
<riceandbeans> eam: :\ yeah...I guess...
<Ox0dea> riceandbeans: `if [foo == 1, bar == 2].count(true) == 1`
aryaching has joined #ruby
<eam> "if you have to ask about an operator, your colleagues probably won't understand it either"
<eam> the way you decided to express it in english is probably optimal for human interpretation
<riceandbeans> Ox0dea: is that the best way to do it?
<Ox0dea> riceandbeans: That's the most intention-revealing way to do logical XOR if that's what you *actually* need to do.
<Ox0dea> Better would probably be to restructure your thing so that it's not what you need to do. :P
<riceandbeans> here's the idea
<riceandbeans> I want to track if an env is set to do something
<riceandbeans> like, prod, preprod, dev
<TomyLobo> riceandbeans, try != as xor
<chris2> my ruby has boolean ^...
<Ox0dea> I keep forgetting that!
<TomyLobo> if (foo == 1) != (bar == 2)
<Ox0dea> Or just ^ as chris2 suggests.
<riceandbeans> or well... let's say multiple prod envs
<riceandbeans> like say prod1 and prod2
<TomyLobo> well i assumed people are testing things before saying they dont work
rakm has joined #ruby
<riceandbeans> so, if prod1 is set for certain action, and prod2 is, as a safety feature, don't do anything, don't let both operate concurrently on something
<chris2> i dont ;)
freeze has quit [Ping timeout: 265 seconds]
<riceandbeans> only let prod2 do said action if prod1 is not set to and vice versa
skade has quit [Quit: Computer has gone to sleep.]
<riceandbeans> prevent concurrent envs from any potential of concurrent downtime
<Ox0dea> Sure, calls for XOR.
intrigueD has joined #ruby
<TomyLobo> but if you have n prods, sum them up
<riceandbeans> Ox0dea: so you'd be like, dev = 1 or dev = 0 and prod1 = 1 or prod1 = 0 and do if ( prod1 ^ prod2 ^ prod3 ) ?
<Ox0dea> Saints preserve us!
<Ox0dea> >> [true, false, true].reduce :^
<ruby[bot]> Ox0dea: # => false (https://eval.in/520567)
kirun has quit [Quit: Client exiting]
<riceandbeans> I don't understand
Rodya_ has joined #ruby
thelacce has quit [Ping timeout: 255 seconds]
<Ox0dea> `a op b op c op d` == `[a,b,c,d].reduce op`
dkam__ has quit [Remote host closed the connection]
<TomyLobo> but as you can see, that wont work
dkam__ has joined #ruby
<Ox0dea> And we're back to `count(true) == 1`.
Rodya_ has quit [Remote host closed the connection]
<Ox0dea> Fancy that.
<TomyLobo> [true, true, true].reduce :^
<TomyLobo> >> [true, true, true].reduce :^
<ruby[bot]> TomyLobo: # => true (https://eval.in/520569)
<TomyLobo> see
DanKnox has joined #ruby
DanKnox_ has joined #ruby
<eam> it sounds like riceandbeans actually wants #one?
<TomyLobo> >> [true, true, true].count(true) == 1
<ruby[bot]> TomyLobo: # => false (https://eval.in/520570)
skade has joined #ruby
<eam> >> [true, false, false, false, true].one? { |x| x }
<Ox0dea> eam: No need for the explicit block there.
<riceandbeans> the hell was that?
<eam> ah is it the arg by default?
<Ox0dea> Aye.
<eam> nice
<havenwood> &:itself, it knows!
<eam> riceandbeans: just use #one?
<eam> if you have a list of things and you want exactly one of them to be true, that's your method
<riceandbeans> >> [true, false, true, false].one?
<ruby[bot]> riceandbeans: # => false (https://eval.in/520571)
<riceandbeans> >> [true, false, true, true].one?
<ruby[bot]> riceandbeans: # => false (https://eval.in/520573)
<riceandbeans> >> [true, true, true, true].one?
<ruby[bot]> riceandbeans: # => false (https://eval.in/520574)
FernandoBasso has quit [Ping timeout: 244 seconds]
<eam> riceandbeans: only one true, the rest must be false
<riceandbeans> >> [true, false, false, false].one?
<havenwood> riceandbeans: true
spacemud has quit [Ping timeout: 240 seconds]
<riceandbeans> havenwood: why didn't the bot answer?
<riceandbeans> flood?
<havenwood> riceandbeans: bot's shift is over, I'm on call now
skade has quit [Client Quit]
<riceandbeans> got it
<riceandbeans> >> puts "riceandbeans is the nicest guy in the world and he deserves a raise."
<ruby[bot]> riceandbeans: # => riceandbeans is the nicest guy in the world and he deserves a raise. ...check link for more (https://eval.in/520578)
<riceandbeans> havenwood: where were you at man?
<havenwood> riceandbeans: nil
<riceandbeans> :P
aryaching has quit [Read error: Connection reset by peer]
juanpablo_ has quit [Quit: (null)]
arlek has quit [Ping timeout: 244 seconds]
<riceandbeans> let's try this one more time....
jottr has quit [Ping timeout: 250 seconds]
shredding has quit [Ping timeout: 250 seconds]
<riceandbeans> >> [true, false, false, false].one?
<ruby[bot]> riceandbeans: # => true (https://eval.in/520581)
idefine_ has quit [Remote host closed the connection]
<riceandbeans> ok, works for me
<Ox0dea> \o/
spacemud has joined #ruby
<Ox0dea> See also: #any?, #all?, and #none?.
marxarelli|afk is now known as marxarelli
<riceandbeans> please no, I'm barely grasping this at .one?
<riceandbeans> hah
<TomyLobo> there's no #two?? aww
dopamean_ has joined #ruby
baweaver has joined #ruby
aryaching has joined #ruby
<eam> reiterating my call to add ???? methods
<Ox0dea> And #count doesn't use the same semantics. :/
idefine has joined #ruby
idefine has quit [Remote host closed the connection]
<Ox0dea> >> [true, false, nil].count
<ruby[bot]> Ox0dea: # => 3 (https://eval.in/520583)
zackzorman has quit [Ping timeout: 250 seconds]
idefine has joined #ruby
<riceandbeans> ???? methods?
<riceandbeans> predicate methods?
<Ox0dea> Super predicates!
<TomyLobo> basically
<eam> four question marks would raise an exception instead of returning false
<TomyLobo> >> [true, false, nil].count(true)
<Ox0dea> Ha.
<ruby[bot]> TomyLobo: # => 1 (https://eval.in/520584)
<Ox0dea> >> [true, false, nil].count { |x| x } # TomyLobo
<ruby[bot]> Ox0dea: # => 1 (https://eval.in/520585)
<eam> so you could be like what? It's num.zero???? # blow up if true, AYFKM
GriffinHeart has joined #ruby
<havenwood> >> module Enumerable; def two?; self.select(&:itself).size == 2 end end; [true, false, true].two?
<ruby[bot]> havenwood: # => true (https://eval.in/520586)
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
lucasb has joined #ruby
tulak_ has joined #ruby
<TomyLobo> havenwood, optimize it :P
<eam> maybe four exclamation points could just unlink $0 and exit!
<havenwood> >> -0.negative?
<ruby[bot]> havenwood: # => false (https://eval.in/520587)
<Ox0dea> Ruby also doesn't have -NaN. :/
<Ox0dea> But it does have -Infinity.
<riceandbeans> what?
<eam> well, that's because IEEE doesn't
sdothum has joined #ruby
<Ox0dea> It does.
DanKnox_ has quit [Ping timeout: 255 seconds]
DanKnox has quit [Ping timeout: 255 seconds]
<lucasb> shevy: ping. still around?
<eam> it does?
<Ox0dea> Oui.
dlitvak has joined #ruby
<havenwood> >> (-Float::INFINITY).negative?
<ruby[bot]> havenwood: # => true (https://eval.in/520588)
<shevy> lucasb sorta... slowly entering sleepy mode
tulak has quit [Ping timeout: 255 seconds]
skade has joined #ruby
<lucasb> shevy: I saw this: https://bugs.ruby-lang.org/issues/9969
<eam> wow, so it does -- but what the heck does it mean
<TomyLobo> >> 1/(-1/0.0)
<ruby[bot]> TomyLobo: # => -0.0 (https://eval.in/520589)
<lucasb> shevy: I fully support your idea :)
<TomyLobo> >> -0.0
<ruby[bot]> TomyLobo: # => -0.0 (https://eval.in/520590)
Eiam_ has quit [Quit: ╯°□°)╯︵ǝpouǝǝɹɟ]
<shevy> lucasb ah... I completely forgot about that :)
skade has quit [Client Quit]
<TomyLobo> >> (-0.0).negative?
<ruby[bot]> TomyLobo: # => false (https://eval.in/520591)
<TomyLobo> bollocks!
baweaver has quit [Ping timeout: 250 seconds]
<lucasb> shevy: I made a comment on #10121. I didn't see the #9969 before.
<shevy> lucasb I am thinking of a bigger thing! some import system for ruby... but fitting to ruby, not just a copy/paste of python
Eiam_ has joined #ruby
GriffinHeart has quit [Ping timeout: 240 seconds]
tulak_ has quit [Remote host closed the connection]
<shevy> lucasb I can't remember anything, I forget a lot
PedramT has quit []
<TomyLobo> >> (1/(-1/0.0)).negative? # sorry, my ruby has no #negative?
<ruby[bot]> TomyLobo: # => false (https://eval.in/520592)
unsymbol has quit [Ping timeout: 240 seconds]
<al2o3-cr> >> 0**0 # like wtf but rfc...
tulak has joined #ruby
<ruby[bot]> al2o3-cr: # => 1 (https://eval.in/520593)
<shevy> I remember that, in the past, I would modify class String, class Dir etc...
dopamean_ has quit [Ping timeout: 265 seconds]
<shevy> but distributing that to other people is cumbersome
dlitvak__ has quit [Ping timeout: 240 seconds]
Guest45911 is now known as BLuEGoD
FernandoBasso has joined #ruby
BLuEGoD is now known as Guest85892
<TomyLobo> al2o3-cr, 0 supremacy!
roshanavand has quit [Read error: Connection reset by peer]
<al2o3-cr> :P
mlehrer has quit [Remote host closed the connection]
roshanavand has joined #ruby
dopamean_ has joined #ruby
<TomyLobo> anyway, sleep time
unsymbol has joined #ruby
ur5us has joined #ruby
jottr has joined #ruby
x64- has joined #ruby
aaeron has quit [Quit: aaeron]
<al2o3-cr> this is true
<al2o3-cr> >> -0 == +0
<ruby[bot]> al2o3-cr: # => true (https://eval.in/520594)
aaeron has joined #ruby
<eam> al2o3-cr: well there's no such thing as a negative zero fixnum
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Snowy has joined #ruby
<al2o3-cr> or positive for that matter
TomyLobo has quit [Ping timeout: 250 seconds]
AlphaAtom has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
dhollinger has quit [Quit: WeeChat 1.4]
unsymbol has quit [Ping timeout: 240 seconds]
<eam> al2o3-cr: in integer math, yes. With floats zero is signed
skade has joined #ruby
solars has quit [Ping timeout: 248 seconds]
skade has quit [Client Quit]
<al2o3-cr> in maths in general non is applicable
<eam> strictly speaking, zero is encoded as a positive integer, but I guess you could argue the definition
Eiam_ has quit [Quit: ╯°□°)╯︵ǝpouǝǝɹɟ]
<Ox0dea> >> nz = -0.0; [nz, nz.negative?] # This is a problem.
<ruby[bot]> Ox0dea: # => [-0.0, false] (https://eval.in/520595)
unsymbol has joined #ruby
kies^ has quit [Ping timeout: 248 seconds]
<al2o3-cr> Ox0dea: like eam said is a positive int
devbug has quit [Ping timeout: 250 seconds]
<al2o3-cr> zero that is
Musashi007 has joined #ruby
<Ox0dea> al2o3-cr: Ruby uses IEEE 754, which supports signed zero.
<havenwood> >> 0.0.equal? -0.0
<ruby[bot]> havenwood: # => false (https://eval.in/520597)
<eam> I said integers are positive zero always. IEEE Floats are signed
lilvim has quit [Remote host closed the connection]
<eam> and can be both + or -
<eam> s/both/either/
<al2o3-cr> yeah my bad
sepp2k has quit [Quit: Leaving.]
<eam> I'm saying ints are either positive or "neither" depending on whether you're strict about the meaning of the sign bit
steffkes has quit [Ping timeout: 240 seconds]
<riceandbeans> if I want to construct something like foo['bar']['boz'] = 1 and foo['bar']['biff'] = 2 and be able to return foo['bar'] showing baz and biff?
poweratom______ has quit [Quit: (null)]
<Ox0dea> Use a Hash...?
<eam> not just one hash!
<Ox0dea> A Matryoshka Hash.
<eam> yo dawg
Don_John has joined #ruby
beanHolez has quit [Remote host closed the connection]
<Ox0dea> I heard you like Russian dolls.
<riceandbeans> >> foo = Hash.new; foo['bar'] = Hash.new; foo['bar']['baz'] = Hash.new
<ruby[bot]> riceandbeans: # => {} (https://eval.in/520598)
<bougyman> who doesn't?
benlieb has quit [Quit: benlieb]
<riceandbeans> did that work?
spacemud has quit [Ping timeout: 240 seconds]
FernandoBasso has quit [Quit: Leaving]
spacemud has joined #ruby
tjohnson has quit [Quit: Connection closed for inactivity]
Don_John has quit [Read error: Connection reset by peer]
patchedmonkey has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Ox0dea> riceandbeans: Go nuts: https://eval.in/520600
lilvim has joined #ruby
<toretore> >> foo = {'bar' => {'boz' => 1, 'biff' => 2}}; foo['bar']
<ruby[bot]> toretore: # => {"boz"=>1, "biff"=>2} (https://eval.in/520601)
<riceandbeans> seems like it did...
<al2o3-cr> &default_proc when did this come out??
<Ox0dea> Forever ago.
skade has joined #ruby
<toretore> riceandbeans: a hash is a k/v table. v can be anything, like another hash
skade has quit [Client Quit]
<al2o3-cr> well, shit, i'm behind the times...
<lucasb> keys also can be anything :)
<Ox0dea> Anything that responds to #hash, anyway.
<apeiros> and #eql?
Don_John has joined #ruby
<Ox0dea> >> {BasicObject.new => 42} rescue $! # lucasb
<ruby[bot]> Ox0dea: # => #<NoMethodError: undefined method `hash' for #<BasicObject:0x410bdb64>> (https://eval.in/520605)
Don_John has quit [Read error: Connection reset by peer]
<lucasb> Ox0dea: indeed, #hash is only on Object :)
<eam> >> x = {}; x[x] = x; x[x]
<eam> why is that nil instead of x?
tatsuo has quit [Remote host closed the connection]
Rodya_ has joined #ruby
Xeago has quit [Remote host closed the connection]
<Ox0dea> lucasb: #hash is actually custom-defined on many classes.
mg^ has quit [Remote host closed the connection]
<eam> is Hash.hash keyed off the hash's entries and not the object_id?
Snowy has quit []
mg^ has joined #ruby
<eam> looks that way
<lucasb> right. makes sense for two different string objects to have the same hash
<mg^> eam: you got me on that one
<mg^> punched it into my MRuby-enabled hexchat
<toretore> iirc you can't just redefine #hash and #eql? and expect Hash to do what you mean though
<Ox0dea> >> x = {}; x[x] = x; x.rehash; x[x] # eam
<ruby[bot]> Ox0dea: # => {{...}=>{...}} (https://eval.in/520606)
spider-mario has quit [Remote host closed the connection]
<mg^> > x = {}; x[x] = x; x[x] => /home/mg/build/mruby-1.2.0/mrblib/array.rb:23: stack level too deep. (limit=(0x40000 - 128)) (SystemStackError)
<eam> mg^: hahah
patchedmonkey has joined #ruby
<al2o3-cr> ... is a feference to itself
<eam> Ox0dea: oh wow
<Ox0dea> eam: Just gotta let it know what's goin' on.
SCHAAP137 has quit [Ping timeout: 244 seconds]
<al2o3-cr> *r.+
swills has quit [Quit: Leaving]
baweaver has joined #ruby
<shevy> advanced trickery saturday night on #ruby live!
<mg^> it crashed hexchat outright though, I guess I should file an issue for myself on github
Jardayn has quit [Quit: Leaving]
<shevy> do you feel appropriately guilty now mg^
Rodya_ has quit [Remote host closed the connection]
<al2o3-cr> i'm on wednesday :P
<mg^> oh yes
mikeiniowa has joined #ruby
<shevy> al2o3-cr I'd wish it was saturday already
mdw has joined #ruby
<al2o3-cr> i'd wish it was friday because i'm coming into alot of money apparently :S
mdw_ has joined #ruby
Brando753 has quit [Ping timeout: 248 seconds]
unsymbol has quit [Ping timeout: 240 seconds]
patchedmonkey has quit [Client Quit]
idefine has quit [Remote host closed the connection]
spacemud has quit [Ping timeout: 265 seconds]
idefine has joined #ruby
idefine has quit [Remote host closed the connection]
<Ox0dea> Of whose alot of money are you coming into possession?
<al2o3-cr> not dollars anyway :P
sankaber has joined #ruby
<Ox0dea> All alots of money are made of dollars.
swills has joined #ruby
idefine has joined #ruby
<al2o3-cr> which ones?
<Ox0dea> All of the alots of money.
<Ox0dea> They share a phenotype.
<al2o3-cr> have you got a few until i get my memory back :P
arlek has joined #ruby
<Ox0dea> Your whole memory's gone? :/
<riceandbeans> ok, new problem
mdw has quit [Ping timeout: 250 seconds]
<al2o3-cr> dta (don't trust anyone)
mary5030 has joined #ruby
Guest77101 has joined #ruby
<riceandbeans> I want to check foo['bar']['baz']['biff'] for .ony? against all values in foo['bar']['baz'] but it's returning the count of hashes in foo['bar']['baz'] which is > 1
unsymbol has joined #ruby
<lucasb> foo['bar']['baz'].values.only?(...) ?
<al2o3-cr> not anymore anyway
<lucasb> or .one? if ony? meant that
spacemud has joined #ruby
nofacade has quit [Ping timeout: 248 seconds]
<al2o3-cr> riceandbeans: just dig it
eregi has joined #ruby
<riceandbeans> lucasb: that totally worked
roshanavand has quit [Read error: Connection reset by peer]
eregi has quit [Client Quit]
benlieb has joined #ruby
<al2o3-cr> dig dig dig!!
r4z3r has quit [Max SendQ exceeded]
skade has joined #ruby
r4z3r has joined #ruby
<al2o3-cr> shit i sound like shevy hehe
<riceandbeans> I don't get it
roshanavand has joined #ruby
<riceandbeans> dig dig dif?
<riceandbeans> s/dif/dig
Musashi007 has quit [Quit: Musashi007]
blur3d has joined #ruby
<al2o3-cr> &ri Hash#dig
symm- has quit [Quit: Leaving...]
m8 has quit [Quit: Sto andando via]
benlieb has quit [Client Quit]
<lucasb> there was an issue about adding a .bury method, with the oposite semantics of .dig :)
mdw_ has quit [Quit: Sleeping Zzzzz]
CloCkWeRX has quit [Ping timeout: 250 seconds]
<riceandbeans> my ruby doesn't have dig
<riceandbeans> must be too old
ropeney has joined #ruby
<lucasb> new in 2.3
<riceandbeans> I'm tied to 2.1 at the moment
<al2o3-cr> riceandbeans: 2.3
<al2o3-cr> riceandbeans: upgrade :)
<riceandbeans> ruby upgrades here are a VERY big deal
weemsledeux has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<riceandbeans> this is a chef shop
<riceandbeans> upgrading ruby can break the entire company
<al2o3-cr> riceandbeans: you work in a chippy?
<riceandbeans> chippy?
blandflakes has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
<al2o3-cr> if you need a new wok, get a new wok :P
Rodya_ has joined #ruby
<riceandbeans> oh, the company is strong...it's not going away any time soon and makes quite a lot of money....
<riceandbeans> but ruby is very integral, and any upgrades to it is very impacting given the hundreds of thousands of systems it affects
marxarelli is now known as marxarelli|afk
* al2o3-cr why do i keep thinking food ....
<riceandbeans> I'm not against upgrading, but it's a vetting process that takes time
Rodya_ has quit [Remote host closed the connection]
<al2o3-cr> sorry riceandbeans my minds in the clouds
Rodya_ has joined #ruby
<al2o3-cr> that just one mind
<al2o3-cr> :P
aegis3121 has quit [Ping timeout: 265 seconds]
CloCkWeRX has joined #ruby
tulak has quit [Read error: Connection reset by peer]
tulak has joined #ruby
aryaching has quit [Excess Flood]
aryaching has joined #ruby
aryaching has quit [Excess Flood]
wprice has quit [Quit: wprice]
Eiam_ has joined #ruby
aryaching has joined #ruby
<shevy> al2o3-cr lol
baweaver has quit [Remote host closed the connection]
Musashi007 has joined #ruby
intrigueD has quit [Read error: Connection reset by peer]
avahey has joined #ruby
dkam__ has quit [Quit: Lingo: www.lingoirc.com]
<al2o3-cr> shevy: i keep thinking fooooddd lol
<al2o3-cr> give me a steak i'm happy :)