apeiros changed the topic of #ruby to: Welcome new users migrating from #ruby-lang! || http://ruby-community.com || Ruby 2.2.2; 2.1.6; 2.0.0-p645: https://ruby-lang.org || Paste >3 lines of text on https://gist.github.com || log @ http://irclog.whitequark.org/ruby/
<jfarmer> But assuming you were being literal and want "0xDD" where "D" is an uppercase hex digit, sprintf is more straightforward.
starless has joined #ruby
<jfarmer> (vs. something like "0x#{n.to_s(16).upcase}")
ghr has quit [Ping timeout: 250 seconds]
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bruno- has quit [Ping timeout: 265 seconds]
<EllisTAA> i’ve been seeing this geometric shapes on so many websites, besides looking good what is the point? is there some reference i’m not getting? http://bowery.io/
freerobby has quit [Quit: Leaving.]
veduardo has quit [Ping timeout: 265 seconds]
phutchins has quit [Ping timeout: 272 seconds]
<pontiki> EllisTAA: i don't know, but i'm assuming it's a template thingie. I saw something about how to make them somewhere in the recent past, but i can't be arsed to go dig it up.
Musashi007 has quit [Quit: Musashi007]
<EllisTAA> i see
ismaelga has quit [Remote host closed the connection]
balazs has joined #ruby
Kharma has quit [Ping timeout: 265 seconds]
meph has quit [Read error: Connection reset by peer]
havenwood has quit [Quit: Textual IRC Client: www.textualapp.com]
meph has joined #ruby
workmad3 has joined #ruby
Kharma has joined #ruby
mrmargolis has joined #ruby
Musashi007 has joined #ruby
keen___________3 has quit [Read error: Connection reset by peer]
dc has joined #ruby
Papierkorb has quit [Quit: ArchLinux completes an endless loop faster than any other distro!]
keen___________3 has joined #ruby
codecop has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 250 seconds]
CloCkWeRX has joined #ruby
balazs has quit [Remote host closed the connection]
oo_ has joined #ruby
bigmac is now known as i8igmac
allcentury has joined #ruby
EllisTAA has quit [Quit: EllisTAA]
_djbkd has quit [Remote host closed the connection]
phizzbuzz has joined #ruby
_djbkd has joined #ruby
<Aeyrix> jfarmer: Worked for me, thanks.
ismaelga has joined #ruby
allcentury has quit [Ping timeout: 265 seconds]
ohaibbq has quit [Quit: Leaving...]
balazs has joined #ruby
govt has joined #ruby
allcentury has joined #ruby
commondream has quit [Remote host closed the connection]
<govt> http://repl.it/qN5 : I am having trouble with an instance variable I'm defining in a module, its turning to nil somehow when I go to call methods from it
neanderslob has joined #ruby
jstanton has joined #ruby
retornam has quit [Ping timeout: 246 seconds]
<Radar> govt: repl.it isn't loading for me. Please gist.github.com it instead
<govt> loads just fine for me
<Radar> That won't help me fix your problem.
<Aeyrix> govt: Under def initialize
<Aeyrix> @stats = CharacterStats.stats
jpfuentes2 has joined #ruby
krz has quit [Ping timeout: 255 seconds]
<govt> I thought thats what the module was supposed to do
Musashi007 has quit [Quit: Musashi007]
<govt> otherwise I might as well just eliminate the module entirely, and generate the stats hash from an array of the stat names for each object
preller has quit [Read error: Connection reset by peer]
Jonah11_ has joined #ruby
<pontiki> an instance variable in a module is not directly accessible to classes that include it
fedexo has quit [Quit: No Ping reply in 180 seconds.]
robustus has quit [Read error: Connection reset by peer]
<pontiki> what you may want in the module is a method that freezes that hash
vivekananda has joined #ruby
havenwood has joined #ruby
<Aeyrix> govt: Let me see properly, hang on.
<Aeyrix> Why is repl.it's formatting so bad?
<pontiki> sorry, not freeze; memoize
Ropeney has joined #ruby
Heartmender has left #ruby ["boop~"]
mistermocha has joined #ruby
retornam has joined #ruby
<jfarmer> govt I strongly recommend against that pattern (using instance variables as an interface between a module and the objects it's included in)
fedexo has joined #ruby
<govt> what would ya recommend? as you can see i have no what im doing
<govt> no idea*
twistedpixels is now known as zz_twistedpixels
<jfarmer> Given the code as it exists, it's hard to see why a module make sense here in the first place.
BadBoy20 is now known as HotCoder
<Aeyrix> jfarmer: I figured it was part of something larger and required the module.
<jfarmer> Sure, maybe
krz has joined #ruby
robustus has joined #ruby
DynamicMetaFlow has joined #ruby
<jfarmer> I'm generally good at imagining "alternate universes" where someone's code makes sense, and I don't really see it here. If every character has the same set of possible stats, plain ol' inheritance from a +Character+ base class makes the most sense.
zz_twistedpixels is now known as twistedpixels
<shadeslayer> so, curious, does anyone know how Array::min is implemented
<shadeslayer> I couldn't grep it in the code
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<jfarmer> shadeslayer It's defined in the numerable module
<shadeslayer> aha
<shadeslayer> thanks jfarmer
<jfarmer> (That's info you could get from the docs.)
<jfarmer> But more generally...
<shadeslayer> yeah, I was merely grepping the code
<shadeslayer> just trying to figure out why [ nil, nil ].min returns nil
<jfarmer> Every C file that defines a class/module/whatever has a big collection of C calls at the bottom of the file that map the name of a method in Ruby-land to a C function
mistermocha has quit [Ping timeout: 258 seconds]
<jfarmer> shadeslayer I would guess that "nil <=> nil" is a totally valid expression
bogdanteleaga has quit [Ping timeout: 256 seconds]
<jfarmer> and returns 0
<shadeslayer> jfarmer: yeah, but nil < nil doesn't
<shadeslayer> so I suppose the spaceship operator is implemented in the NilClass
twistedpixels is now known as zz_twistedpixels
<jfarmer> Sortable things in Ruby generally use <=>
<shadeslayer> but somehow it doesn't include the Comparable module?
<shadeslayer> right, however, with <=> and the comparable module, it'd work out
<pontiki> be careful about treating nil as something
<shadeslayer> pontiki: right, it's just a thought excercise at 3 AM in the morning :P
<shadeslayer> and made me quite curious as to why it's behaving the way it is
<jfarmer> shadeslayer Anyhow, re: finding methods starting from the C code, every file has a big list of calls that bind a Ruby name to an actual C function
zz_twistedpixels is now known as twistedpixels
<pontiki> so does it appear any different than doing [1,1].min #=> 1 ?
RegulationD has joined #ruby
<jfarmer> shadeslayer Using that knowledge, I know that searching for the string +"min"+ will turn up one of those rb_define_method calls
ghr has joined #ruby
<jfarmer> Because it's like rb_define_method(rb_mEnumerable, "min", some_c_function) (IIRC)
nettoweb has joined #ruby
bogdanteleaga has joined #ruby
<shadeslayer> > $ grep -iR rb_define_method array.c | grep -i min
<shadeslayer> jfarmer: ^ gives me nothing
<shadeslayer> ah
<shadeslayer> you meant grepping in the enumerable module?
bruno- has joined #ruby
dorei has quit []
<shadeslayer> so, is there a reason NilClass implements a <=> operator, but then doesn't include the comparable module?
kinduff_ has joined #ruby
<jfarmer> shadeslayer I'm going from memory here
<jfarmer> Also why array.c?
<shadeslayer> jfarmer: I assumed that's what implemented the array class :)
<jfarmer> That's not where the Enumerable module is defined
RegulationD has quit [Ping timeout: 258 seconds]
<shadeslayer> jfarmer: right, I was searching in the wrong place :)
<shadeslayer> as I admitted before
<shadeslayer> jfarmer: I did find enum.c: rb_define_method(rb_mEnumerable, "min", enum_min, -1);
mello has joined #ruby
krz has quit [Quit: WeeChat 1.0.1]
Musashi007 has joined #ruby
ghr has quit [Ping timeout: 265 seconds]
<jfarmer> I was proposing you search for the C string literal +"min"+
<Aeyrix> At a quick guess. This works.
EllisTAA has joined #ruby
kinduff has quit [Ping timeout: 265 seconds]
bruno- has quit [Ping timeout: 252 seconds]
twistedpixels is now known as zz_twistedpixels
<shadeslayer> jfarmer: ah ok
yh has quit [Ping timeout: 272 seconds]
choke has joined #ruby
<jfarmer> But normally I make sure I'm clear on where the method I'm interested in is actually defined in Ruby-land and then look at that file first.
<jfarmer> So Enumerable#min is bound to the C function +enum_min+
<govt> http://repl.it/qN5/1 : reorganized into separate classes, still having same problem of nil instance variable
<Aeyrix> govt: Look at what I pasted.
<jfarmer> +enum_min+ isn't doing anything besides calling another C-level function depending on the argument (was the argument nil, were we given a block, etc. etc.)
freerobby has joined #ruby
AlphaAtom has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mello has quit [Ping timeout: 265 seconds]
kinduff has joined #ruby
zotherstupidguy has joined #ruby
Musashi007_ has joined #ruby
<govt> ive done something similar, but for whatever reason, the instance variable im defining in the base class is nil whenever i use it in the child class
<jfarmer> If you puzzle out what each bit is doing, your +[nil, nil].min+ example will eventually result in +min_i+ getting called, which is here: https://github.com/ruby/ruby/blob/ruby_2_2/enum.c#L1370-L1388
<shadeslayer> govt: your closure is all weird
freerobby has quit [Client Quit]
Musashi007 has quit [Ping timeout: 245 seconds]
Musashi007_ is now known as Musashi007
veduardo has joined #ruby
<shadeslayer> jfarmer: right, going through it
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Aeyrix> govt: That's because you haven't done something similar.
kinduff_ has quit [Ping timeout: 265 seconds]
freerobby has joined #ruby
__chris has joined #ruby
s2013 has joined #ruby
<govt> i just want the child class to recieve the instance variable, and not have to boilerplate @stats = someStatsSomewhereElse everytime I define a new player class
<jfarmer> govt If you override +initialize+ in a subclass, the +initialize+ from the parent class will never get called
choke has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Aeyrix> govt: ... wat
<Aeyrix> What I pasted doesn't do that.
jstanton has quit [Ping timeout: 264 seconds]
<Aeyrix> To define a player is a grand total of four lines.
<govt> jfarmer: gotcha, didnt know about that
<jfarmer> Aeyrix I think govt is just not reading you code (or not reading it closely) and is instead focused on what he's written.
<jfarmer> (explaining, not justifying)
<govt> i read it
<Aeyrix> govt: What you're saying is indicating otherwise.
oo_ has quit [Remote host closed the connection]
<govt> when I inherit a class like A < B how can I give A access to B's instance variables without having to call a separate method in initialize?
sye has joined #ruby
<shadeslayer> jfarmer: while I'm still trying to read that min call code, any thoughts on why NilClass implements <=> but doesn't include comparable?
choke has joined #ruby
<jfarmer> I don't know that it implements it itself; for all I know there's a base <=> defined on every object.
<govt> if I have to go and set each subclass' instance variables to the parent class' by hand each time then there is really no point in bothering making a base class if I'm going to have boilerplate
meph has quit [Quit: Leaving.]
victorkohl has joined #ruby
<Aeyrix> govt: ... by calling the variable?
EllisTAA has quit [Quit: EllisTAA]
choke has quit [Client Quit]
<Aeyrix> if you did, as per my code: class PlayerCharacter < Entity; p @stats; end;
<Aeyrix> it'd work
DynamicMetaFlow has quit [Remote host closed the connection]
Channel6 has joined #ruby
<Aeyrix> It'd be nil, because it's not been defined until you run generate_stats(x), but it's there.
EllisTAA has joined #ruby
<noethics> Aeyrix, ya but do you even m8
nettoweb has joined #ruby
<Aeyrix> tbh govt I don't even know what you're asking. Your question just doesn't even line up with the code I gave you.
<Aeyrix> The only "boilerplate" for the RandomizedCharacter class you had, in my code, is " < Entity".
<jfarmer> He wants some "default" instance variable to be defined in every Character object he creates.
<govt> you know, fuck it
govt has quit [Quit: Page closed]
<jfarmer> without having to call a method or do anything special
oo_ has joined #ruby
balazs_ has joined #ruby
<Aeyrix> jfarmer: You can do that with the #inherited method.
sye has quit [Quit: Bye!]
<shadeslayer> jfarmer: you're probably right that Object implements <=> and would explain why NilClass doesn't include Comparable then
<shadeslayer> jfarmer: thanks for all the help, it's been insightful, I'll try and read this C code tomorrow though :P
<jfarmer> shadeslayer I'm with you in the sense that I think <=> should _always_ return -1, 0, or 1
ismaelga has quit [Remote host closed the connection]
<jfarmer> but don't see how that's possible for a generically-defined <=>
<jfarmer> My guess is that Ruby does something like...
<jfarmer> def <=>(other); self == other ? 0 : nil; end
<shadeslayer> well, the problem is that Object implements <=> but then it doesn't actually use <=> for implementing < , =, or >
Musashi007 has quit [Quit: Musashi007]
<shadeslayer> so you have <=> defined, but not < and causes nil < nil to not work
<jfarmer> In my mind that's a design choice, not a problem.
<jfarmer> Why do we care if nil < nil works or not?
<shadeslayer> right, just trying to understand the justification
moretti has quit [Quit: Leaving...]
<jfarmer> I don't know; if <=> is allowed to return nil in general then I think it's fine to have it defined the way I just described.
<jfarmer> nil could mean "not comparable" or something like that
sye has joined #ruby
<shadeslayer> that would be what I'd prefer honestly
oo_ has quit [Ping timeout: 255 seconds]
allcentury has quit [Ping timeout: 256 seconds]
<shadeslayer> are 2 nil's really comparable? idk ...
<Radar> that govt fellow was charming
<Radar> I really hope he comes back
<shadeslayer> and apparently doesn't allow comparing None types
<noethics> >> class A; attr_accessor :stats; def initialize; @stats = [1,2,3]; end; end; class B < a; end; b = B.new; puts b.stats
<ruboto> noethics # => undefined local variable or method `a' for main:Object (NameError) ...check link for more (https://eval.in/373494)
<shadeslayer> ( just a observation )
choke has joined #ruby
<noethics> >> class A; attr_accessor :stats; def initialize; @stats = [1,2,3]; end; end; class B < A; end; b = B.new; puts b.stats
<ruboto> noethics # => 1 ...check link for more (https://eval.in/373495)
oo_ has joined #ruby
<havenwood> >> public_method(:<=>).owner
<ruboto> havenwood # => Kernel (https://eval.in/373496)
<shadeslayer> :D
<Aeyrix> Someone should implement ruboto parsing with a heredoc so it can be over multiple lines.
<shadeslayer> I did not know that, that's so cool
babykosh has joined #ruby
choke has quit [Client Quit]
balazs has quit [Remote host closed the connection]
CamonZ has quit [Read error: Connection reset by peer]
<noethics> isn't that what the guy wanted
<noethics> lol @ "Page closed" exit message though
<jfarmer> He wants to do other things in his subclass's initialize message
<noethics> oh thats easy
<jfarmer> (without calling super)
<noethics> why lol
<jfarmer> (which he feels "defeats the purpose")
<noethics> wot
krz has joined #ruby
<jfarmer> He could flip it around and have the superclass call a custom initialize method
<jfarmer> And then require his subclasses to define said method
<noethics> the cleanest way is to just call super ofc
<jfarmer> _shrug_
<noethics> what a dumbo
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
tkuchiki has joined #ruby
<Aeyrix> jfarmer: govt?
* Aeyrix doesn't see quit messages for sanity reasons.
WillAmes has joined #ruby
mr_goodcat has quit [Ping timeout: 264 seconds]
<jfarmer> hah same here
kinduff_ has joined #ruby
kinduff has quit [Ping timeout: 265 seconds]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
kinduff_ has quit [Client Quit]
kinduff has joined #ruby
peteykun has joined #ruby
Petey__ has joined #ruby
Petey_ has joined #ruby
Petey_ has quit [Read error: Connection reset by peer]
Petey__ has quit [Client Quit]
s2013 has joined #ruby
charliesome has joined #ruby
Sawbones has joined #ruby
chipotle has quit [Quit: cheerio]
kinduff has quit [Ping timeout: 250 seconds]
Yzguy has joined #ruby
TheHodge has quit [Quit: Connection closed for inactivity]
<Radar> So I have this really messed-in-the-head API that I'm working with.
<Radar> It returns a JSON object if there's only one result returned in the request, or a JSON array if there's more than one.
<Radar> First question: why would anyone design an API like this?
<noethics> that's mean
<Radar> Second question: how can I coerce the result to an Array regardless of whether it's a JSON object or array?
ghr has joined #ruby
<noethics> masochist
<Radar> noethics: I think it's because they have no ethics.
<noethics> hue
<Radar> Re: 2nd question: I mean more than just if result = result.is_a?(Hash) ? [result] : result
<Ox0dea> >> [Array[*1], Array[*[1]]]
<ruboto> Ox0dea # => [[1], [1]] (https://eval.in/373510)
<Ox0dea> Radar: Replace "1" with foo.
<noethics> make your own unmarshaller
<jfarmer> Radar: Array(result)
<Radar> Ox0dea: https://eval.in/373511
<Ox0dea> Radar: jfarmer's suggestion is better.
<Radar> Nope.
<Radar> Array(result) won't work either.
Sawbones has left #ruby [#ruby]
<jfarmer> Oh, huh
<jfarmer> damnit Ruby
<Ox0dea> To be fair, it's doing what the spec says it does.
<jfarmer> Yes
ghr has quit [Ping timeout: 258 seconds]
<jfarmer> Can't even use the splat operator
<jfarmer> with a Hash like that
kinduff has joined #ruby
<jfarmer> Radar: The best I've got: https://gist.github.com/jfarmer/6784a62efc61feca439d
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yh has joined #ruby
<Aeyrix> >why would anyone...
<Aeyrix> the one biggest problem with programming language communities
<jfarmer> haha
<Aeyrix> "Why would you want to do that?"
<Aeyrix> Who cares? That's what they want to do.
CustosLimen has quit [Max SendQ exceeded]
<Ox0dea> Aeyrix: "If I had asked people what they wanted, they would have said faster horses." -- Henry Ford
towski_ has joined #ruby
<noethics> er
<Aeyrix> Ox0dea: Not necessarily relevant.
<Ox0dea> It... clearly is.
CustosLimen has joined #ruby
<Aeyrix> I was talking to someone at Ruxmon on Friday, they told me they were trying to write Ruby bindings for a project they were working on.
<Aeyrix> The response they got when they asked a question specific to that was "why would you want to do that?"
<Aeyrix> As a result, that project doesn't have Ruby bindings.
<Aeyrix> He wrote Python ones instead.
<noethics> Radar, you can probably try setting the object_class and array_class options in JSON.parse to your own object
<noethics> then convert one to the other
<Ox0dea> That's a shame, but it's nevertheless the case that a person's unknown unknowns can cause them to ask the wrong questions.
<Aeyrix> Ox0dea: I feel that in many cases it's not someone's place to assume it's the wrong question initially.
<Aeyrix> You just end up with people like govt, or the person from Ruxmon.
<Aeyrix> Ruxmon is a monthly security meetup in my city, for context. I realised I'm referencing it without explaining it.
<jfarmer> Apropos this problem of having consistent types, I highly recommend this presentation: http://avdi.org/talks/confident-code-railsconf-2011/
choke has joined #ruby
c355E3B has quit [Quit: Connection closed for inactivity]
victorkohl has quit []
creakybones has quit [Read error: Connection reset by peer]
sevenseacat has joined #ruby
zz_twistedpixels is now known as twistedpixels
nateberkopec has joined #ruby
coderkevin has quit [Quit: Connection closed for inactivity]
nettoweb has joined #ruby
darkf has joined #ruby
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
EllisTAA has quit [Quit: EllisTAA]
dseitz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
michael_mbp has quit [Excess Flood]
Mizouri has joined #ruby
nso95 has joined #ruby
michael_mbp has joined #ruby
veduardo has quit [Ping timeout: 276 seconds]
slackbotgz has joined #ruby
kinduff has quit [Quit: see you tomorrow]
s2013 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yqt has quit [Ping timeout: 258 seconds]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
michael_mbp has quit [Excess Flood]
commondream has joined #ruby
commondream has quit [Remote host closed the connection]
michael_mbp has joined #ruby
charliesome has quit [Quit: zzz]
charliesome has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
ohaibbq has joined #ruby
mistermocha has joined #ruby
AphelionZ has joined #ruby
<AphelionZ> shot in the dark - has anybody here worked with the etsy API?
jfarmer has quit [Quit: Textual IRC Client: www.textualapp.com]
pengin has joined #ruby
vdamewood has joined #ruby
rubie has quit [Remote host closed the connection]
Spami has joined #ruby
RegulationD has joined #ruby
mistermocha has quit [Ping timeout: 265 seconds]
e1nh4nd3r has quit [Quit: Leaving.]
babykosh has quit [Ping timeout: 256 seconds]
dc has quit []
__chris has quit [Quit: This computer has gone to sleep]
RegulationD has quit [Ping timeout: 244 seconds]
Soda has joined #ruby
towski_ has quit [Remote host closed the connection]
mello has joined #ruby
nonparfumee has joined #ruby
oo_ has quit [Remote host closed the connection]
pengin has quit [Remote host closed the connection]
krz has quit [Read error: Connection reset by peer]
babykosh has joined #ruby
pengin has joined #ruby
krz has joined #ruby
rubie has joined #ruby
mello has quit [Ping timeout: 264 seconds]
havenwood has quit [Ping timeout: 272 seconds]
ghr has joined #ruby
pengin has quit [Ping timeout: 244 seconds]
neanderslob has quit [Ping timeout: 252 seconds]
yeticry has quit [Quit: leaving]
bluOxigen has joined #ruby
bluOxigen has joined #ruby
bluOxigen has quit [Changing host]
ghr has quit [Ping timeout: 250 seconds]
CustosLimen has quit [Max SendQ exceeded]
oo_ has joined #ruby
braincra- has quit [Quit: bye bye]
CustosLimen has joined #ruby
markfletcher has joined #ruby
Aww has left #ruby ["Leaving"]
bluOxigen has quit [Ping timeout: 252 seconds]
fedexo has quit [Quit: No Ping reply in 180 seconds.]
fedexo has joined #ruby
polyrob has quit [Ping timeout: 265 seconds]
commondream has joined #ruby
braincras has joined #ruby
casadei has quit [Remote host closed the connection]
casadei has joined #ruby
polyrob has joined #ruby
markfletcher has left #ruby [#ruby]
nonparfumee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jpfuentes2 has joined #ruby
_djbkd has quit [Remote host closed the connection]
nonparfumee has joined #ruby
jefus has quit [Ping timeout: 256 seconds]
nettoweb has joined #ruby
segfalt has joined #ruby
GriffinHeart has joined #ruby
uber has quit [Ping timeout: 255 seconds]
Spami has quit [Quit: This computer has gone to sleep]
vikaton has quit [Quit: Connection closed for inactivity]
<Aeyrix> Something something don't ask to ask.
<Aeyrix> ?ask
<ruboto> Don't ask to ask. Just ask your question, and if anybody can help, they will likely try to do so.
vivekananda has quit [Ping timeout: 255 seconds]
slackbotgz has quit [Remote host closed the connection]
I has joined #ruby
I has quit [Client Quit]
arup_r has joined #ruby
Limix has joined #ruby
_seanc_ has quit [Quit: _seanc_]
<baweaver> aand they're never coming back to reask
<Aeyrix> I wasn't sure if I had access to that command.
mmazing has quit [Ping timeout: 265 seconds]
<baweaver> ruboto is normally silenced on #ruby
<baweaver> odd
_seanc_ has joined #ruby
uber has joined #ruby
mistermocha has joined #ruby
claptor has quit [Quit: this channel is bakas]
Musashi007 has joined #ruby
rubie has quit [Remote host closed the connection]
rubie has joined #ruby
<Radar> AphelionZ: Hi.
<AphelionZ> hey Radar
<Radar> baweaver: You're thinking of helpa.
<Radar> AphelionZ: See what ruboto said :)
<AphelionZ> :)
casadei has quit [Remote host closed the connection]
mello has joined #ruby
_seanc_ has quit [Quit: _seanc_]
babykosh has quit [Quit: babykosh]
mistermocha has quit [Ping timeout: 256 seconds]
sye has left #ruby ["undefined"]
psy__ has quit [Remote host closed the connection]
_blizzy_ has quit [Ping timeout: 256 seconds]
mello has quit [Ping timeout: 255 seconds]
djbkd_ has joined #ruby
oo_ has quit [Remote host closed the connection]
_seanc_ has joined #ruby
aliirz has joined #ruby
tkuchiki_ has joined #ruby
ghr has joined #ruby
Neomex has quit [Read error: Connection reset by peer]
mrmargolis has quit [Remote host closed the connection]
oo_ has joined #ruby
tkuchiki has quit [Ping timeout: 272 seconds]
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mcpierce has quit [Ping timeout: 250 seconds]
djbkd_ has quit [Ping timeout: 256 seconds]
ghr has quit [Ping timeout: 264 seconds]
sargas has joined #ruby
nettoweb has quit [Ping timeout: 272 seconds]
nettoweb_ has joined #ruby
<Aeyrix> TTR: 90 minutes.
CloCkWeRX has left #ruby [#ruby]
segfalt has quit [Quit: segfalt]
<sevenseacat> probably to ask the exact same question.
mcpierce has joined #ruby
Musashi007 has quit [Quit: Musashi007]
scripore has quit [Quit: This computer has gone to sleep]
ohaibbq has quit [Remote host closed the connection]
commondream has quit [Remote host closed the connection]
ohaibbq has joined #ruby
<baweaver> Well back to mapping out my presentation on Scala and Spark for tomorrow
* sevenseacat continues playing with phoenix
babykosh has joined #ruby
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<mozzarella> sevenseacat: the elixir web framework?
<sevenseacat> mozzarella: yep
<mozzarella> sevenseacat: do you like it, so far?
<sevenseacat> yep :D
olistik has quit [Ping timeout: 265 seconds]
<sevenseacat> just getting started with it, but so far, all good
<sevenseacat> hardest is getting used to functional programming
nateberkopec has quit [Quit: Leaving...]
ohaibbq has quit [Ping timeout: 255 seconds]
<mozzarella> I really need to learn elixir and start using it
<sevenseacat> i recommend "programming elixir", by dave thomas
jefus has joined #ruby
<Aeyrix> Phoenix 1 In Action
freerobby has quit [Quit: Leaving.]
nettoweb_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
olistik has joined #ruby
nettoweb has joined #ruby
Limix has quit [Quit: Limix]
nettoweb has quit [Client Quit]
jpfuentes2 has joined #ruby
arup_r has quit [Ping timeout: 255 seconds]
sargas has quit [Quit: This computer has gone to sleep]
jpfuentes2 has quit [Client Quit]
babykosh has quit [Remote host closed the connection]
babykosh has joined #ruby
babykosh has quit [Client Quit]
babykosh has joined #ruby
jfarmer has joined #ruby
scripore has joined #ruby
sandelius has joined #ruby
arup_r has joined #ruby
arup_r has quit [Client Quit]
_djbkd has joined #ruby
Ropeney has quit [Read error: No route to host]
jenrzzz has joined #ruby
scripore has quit [Quit: This computer has gone to sleep]
RegulationD has joined #ruby
babykosh has quit [Quit: babykosh]
* nso95 needs to learn functional programming
shakes has joined #ruby
bruno- has joined #ruby
sandelius has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
_ht has joined #ruby
<baweaver> I'll rehash some of my talk tomorrow for FP in the context of Spark on my blog later
<baweaver> if that'd be of interest
RegulationD has quit [Ping timeout: 272 seconds]
CuteStat has joined #ruby
<nso95> sure
bruno- has quit [Ping timeout: 265 seconds]
Musashi007 has joined #ruby
<Aeyrix> Woo baweaver is gonna blog @ us.
<baweaver> I figure if I've already done the legwork might as well share it
<Aeyrix> Yeah sounds good.
_djbkd has quit [Quit: My people need me...]
claptor has joined #ruby
CuteStat has left #ruby [#ruby]
<pontiki> goodo, baweaver
<baweaver> It'll be very much a base level catered towards Java engineers though
yh has quit [Ping timeout: 245 seconds]
Dopagod has joined #ruby
havenwood has joined #ruby
idafyaid has joined #ruby
yh has joined #ruby
nonparfumee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
choke has quit [Read error: Connection reset by peer]
davasaurous has joined #ruby
oo_ has quit [Remote host closed the connection]
lxsameer has joined #ruby
nso95 has quit [Quit: nso95]
ghr has joined #ruby
Soda has quit [Remote host closed the connection]
oo_ has joined #ruby
watchtheblur has joined #ruby
tkuchiki has joined #ruby
arescorpio has quit [Quit: Leaving.]
oo_ has quit [Remote host closed the connection]
jenrzzz has quit [Ping timeout: 250 seconds]
tkuchiki_ has quit [Ping timeout: 244 seconds]
lindii_ has quit [Ping timeout: 244 seconds]
jenrzzz has joined #ruby
CustosLimen has quit [Max SendQ exceeded]
<baweaver> Spark is amazing though after having to suffer through Hadoop
ghr has quit [Ping timeout: 258 seconds]
davasaurous has quit []
<ex0ns> I never used Hadoop but I love spark, but you have to be aware of what's doing under the scene to use it
CustosLimen has joined #ruby
djbkd has quit [Remote host closed the connection]
<baweaver> Indeed
djbkd has joined #ruby
commondream has joined #ruby
<Aeyrix> btw baweaver
<Aeyrix> did you have to deal with the great ddos of 2014?
* baweaver whistles merrily whilst plugging ears
aliirz has quit []
<Aeyrix> ohboy.gif
* baweaver shudders
<Aeyrix> baweaver: How was that for you guys? Serious question.
<baweaver> I wasn't on call that day (lucky!)
<Aeyrix> Hah.
Spami has joined #ruby
<ex0ns> baweaver: yes it's quite amazing, I used Spark along with SCala
<baweaver> but the fallout was intense and had the entire company channels lighting up like a christmas tree
<Aeyrix> lmao
<baweaver> (see what I did there?)
Rickmasta has joined #ruby
<Aeyrix> Aren't you glad Kim Dotcom offered them vouchers? :^)
<baweaver> Heh
<baweaver> At very least there are mitigation measures in place
<baweaver> Though just far enough outside my dept that I couldn't speak competently about them
<Aeyrix> I kind of wonder what it'd be like working for a company doing internal infosec stuff.
<Aeyrix> I can imagine getting bored.
s2013 has joined #ruby
commondream has quit [Ping timeout: 246 seconds]
spiderbyte has joined #ruby
<baweaver> Kinda like raising a todler
<baweaver> NO! Get that out of your web browser right this moment before I have to write you up!
<Aeyrix> ;-;
chrissonar has joined #ruby
<baweaver> End users are normally of an equivalent level of reasonableness
* Aeyrix only deals with sysadmins / internal infosec people.
<Aeyrix> I'm blessed in that regard.
<baweaver> I used to work phone support for an ISP
* baweaver weeps silently in corner
<Aeyrix> Haw.
<pontiki> wait, isn't "used to" a good thing?
<Aeyrix> I used to work as a techie for a VPS host.
<baweaver> It is
<Aeyrix> But I did a lot of support too because it was faster than getting it escalated.
<pontiki> don't weep then...
<baweaver> Bad memories
psy_ has joined #ruby
<Aeyrix> baweaver weeps over the memories.
<pontiki> aww
<Aeyrix> I would too.
<Aeyrix> baweaver: My ISP is garbage and pushing their luck with me.
<baweaver> NO! Don't you dare shove that ethernet cord into your dialup mode... Did that just snap? We're not covering that.
riotjones has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
<baweaver> Phone Support > Infrastructure Automation > Frontend Rails > Hadoop > Rails/AngularJS > Spark/Scala
riotjones has quit [Read error: Connection reset by peer]
<ex0ns> Nice
<baweaver> Not bad for just over 3 years professionally now
riotjones has joined #ruby
<Aeyrix> Frontend dev -> Systemin administrator -> Virtualisation technician -> Security consultant.
<Aeyrix> Systemin what? System *
<ex0ns> Coll > ege xD
<baweaver> Though to be fair I was herding BSD boxen and doing Freelance web design back in Junior High (13-15)
Musashi007 has quit [Quit: Musashi007]
krz has quit [Ping timeout: 265 seconds]
<baweaver> ex0ns: Gotta start somewhere
<ex0ns> Indeed
<baweaver> Apply to internships like mad next winter if you haven't made a habit of it yet
zipace has joined #ruby
aganov has joined #ruby
<Aeyrix> >going to college
jpfuentes2 has joined #ruby
<baweaver> I'll try and look out for people around that time myself and see how many I can swing in this direction
<Aeyrix> >having a degree
<Aeyrix> What is this? America?
<baweaver> Assuming they're keen on the Bay Area
<baweaver> for me yes.
<baweaver> Where I grew up not having a degree was career suicide
<baweaver> here? Not so much
jpfuentes2 has quit [Client Quit]
<ex0ns> Aeyrix: I'm not living in America
<Aeyrix> ex0ns: Neither
riotjones has quit [Ping timeout: 272 seconds]
<ex0ns> baweaver: Yes I should definitely find an intership somewhere
<Aeyrix> I know baweaver is though.
<baweaver> 'muricah
<Aeyrix> murryka
<pontiki> i feel so old
<sevenseacat> aww pontiki
<sevenseacat> these kids make me feel old too
<baweaver> pontiki: That bad?
<baweaver> sevenseacat: ;-;
<Aeyrix> I thought you had to be under 25 to use the cool kids' language that is Ruby?
<pontiki> 15, i wasn't allowed on the computer at school
<pontiki> maybe so
Blaguvest has quit []
<baweaver> Aeyrix: Crap
<pontiki> maybe so...
<Aeyrix> RIP
<sevenseacat> pontiki: neither was i, but for different reasons i suspect >_>
<baweaver> Aeyrix: I turn 25 this month
<Aeyrix> baweaver: haw
<sevenseacat> i remember 25.
<Aeyrix> I'm not even of legal drinking age in America.
<ex0ns> baweaver: so you can't love ruby anymore
<pontiki> it was constantly in use
<sevenseacat> i hadn't even started learning ruby at 25.
<pontiki> never mind
olistik has quit [Remote host closed the connection]
<sevenseacat> was still in php-land
<baweaver> Aeyrix: Wonder how little that does to deter people
<Aeyrix> baweaver: ?
<Aeyrix> What?
<baweaver> drinking age limit
<Aeyrix> I didn't drink until the legal age in my country - 18.
<Aeyrix> I celebrated by having one beer then going and playing WoW I think.
<baweaver> Most tend to ignore it here.
<Aeyrix> i c
<baweaver> Ah well, at least I have Scala and Elixir still
<Aeyrix> No they're even cooler kid languages.
<Aeyrix> You need to use C and COBOL.
<Aeyrix> ... and PASCAL.
* baweaver knows COBOL and RPG
<miah> i was doing Pascal when i was ~14 with Borland Pascal
emocakes has joined #ruby
<baweaver> I know just enough C to get myself into trouble with Broadcom drivers
GriffinHeart has quit [Remote host closed the connection]
<miah> lol
<Aeyrix> That's the perfect amount.
jenrzzz has quit [Ping timeout: 265 seconds]
Channel6 has quit [Quit: Leaving]
* baweaver glares at bcm43xx and Linux
<Aeyrix> ;-;
<baweaver> The amount of tracing of fw-cutter I had to do
<baweaver> nightmares
Blaguvest has joined #ruby
<shevy> hehe
jenrzzz has joined #ruby
oo_ has joined #ruby
ohaibbq has joined #ruby
<baweaver> I had to get real friendly with this page: https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx
mistermocha has joined #ruby
<shevy> poor beaver
mello has joined #ruby
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
workmad3 has joined #ruby
balazs_ has quit [Ping timeout: 265 seconds]
mistermocha has quit [Ping timeout: 256 seconds]
sandelius has joined #ruby
jfarmer has quit [Quit: Textual IRC Client: www.textualapp.com]
krz has joined #ruby
mello has quit [Ping timeout: 264 seconds]
edwinvdgraaf has quit [Remote host closed the connection]
ndrei has quit [Ping timeout: 244 seconds]
workmad3 has quit [Ping timeout: 240 seconds]
mrmargolis has joined #ruby
_seanc_ has quit [Quit: _seanc_]
dseitz has joined #ruby
last_staff has joined #ruby
speaking1ode has joined #ruby
mrmargolis has quit [Ping timeout: 276 seconds]
tomaszba_ has joined #ruby
speakingcode has quit [Ping timeout: 256 seconds]
hanmac1 has joined #ruby
<hanmac1> apeiros: what do you think is better style: WX.const_defined?(:ActivityIndicator) or defined?(WX::ActivityIndicator) ?
ghr has joined #ruby
<apeiros> hanmac1: former
tomaszba_ has quit [Remote host closed the connection]
<hanmac1> so you say the explizit const_defined is better? okay then i will use that
multi_io has quit [Ping timeout: 246 seconds]
multi_io has joined #ruby
ghr has quit [Ping timeout: 272 seconds]
<Ox0dea> apeiros: How come?
<apeiros> Ox0dea: it's the more specific tool
<noethics> i think the secon one reads better
<Mizouri> Ruby is a language for grown-ups; it gives you the tools for writing clear
<Mizouri> and concise code. It’s up to you to use them.
<Mizouri> I liked that.
bruno- has joined #ruby
* baweaver raises eyebrow
riotjones has joined #ruby
hectortrope has joined #ruby
dumdedum has joined #ruby
<Mizouri> baweaver, You probably didn't read Eloquent Ruby therefore you wouldn't understand :)
<apeiros> Mizouri: so you're unable to provide the missing piece of information in order to understand?
<Mizouri> apeiros, There is no missing piece of information.
* baweaver has read about every ruby book on market
<apeiros> then your argument is silly
* baweaver also doesn't feel the need to keep them memorized line for line
<apeiros> or your claim, or whatever you want to call it.
Ropeney has joined #ruby
<Mizouri> apeiros, Your argument makes no sense.
<baweaver> Troll methinks
bruno- has quit [Ping timeout: 245 seconds]
rubie has quit [Remote host closed the connection]
<apeiros> Mizouri: explain then how reading eloquent ruby makes one not understand - without filling in a missing piece of information
Spami has joined #ruby
<Aeyrix> What on Earth is going on in this channel?
unshadow has quit [Ping timeout: 255 seconds]
<Mizouri> apeiros, Google up and read what a metaphor is.
<apeiros> Mizouri: I asked you.
arturaz has joined #ruby
<apeiros> Mizouri: and I know what a metaphor is
<Aeyrix> Help, mods.
<baweaver> !ops
<ruboto> Radar, fflush, jhass, Mon_Ouie, banisterfiend, miah, zzak, seanstickle, apeiros, sevenseacat, Havenn, workmad3, Coraline, drbrain, zenspider, slyphon, rubyhacker1, Aria, ljarvis
<Aeyrix> MODS.
<baweaver> banhammer
<Radar> !kick Mizouri
Mizouri was kicked from #ruby by ruboto [Mizouri]
<Aeyrix> baweaver: lol apeiros runs chan
<sevenseacat> ding!
<Radar> ;)
<Aeyrix> it's theirs iirc
<baweaver> I know
<Aeyrix> o
<apeiros> wow, the day has come when I had more patient than other ops :D
<baweaver> apeiros is just a bit less trigger happy with the hammer
<Radar> :)
<baweaver> fair warning, same person is in elixir-lang sevenseacat
CustosLimen has quit [Max SendQ exceeded]
<Radar> I don't take kindly to pretentious nerds who are not me.
<Radar> baweaver: lol if you think sevenseacat has ops there (yet)
* baweaver chokes on drink
<ex0ns> Hahaha
<baweaver> I figured not, but I know she's on there.
* Radar resumes battling SOAP-ish API
<Aeyrix> Radar: I noticed. :^)
CustosLimen has joined #ruby
<baweaver> Radar: Poor soul
ndrei has joined #ruby
<Radar> It isn't that bad. They return data in a mostly clean XML format, and they also provide JSON
towski_ has joined #ruby
<Radar> The part where they return an array if there's > 1 item in the result, or just an object if there's exactly 1... well that was easy enough to work around
<Radar> thing.is_a?(Array) ? thing : [thing]
<baweaver> Ah, so that explains the tweet
<baweaver> Radar: Array(thing)
<Radar> baweaver: That won't work :)
<apeiros> I hate that kind of anti-normalization
<Aeyrix> The only thing stopping me suggesting that hours ago
<Aeyrix> was assuming you'd already tried it.
<Radar> baweaver: If thing is a Hash, that won't work.
<baweaver> ah
<Aeyrix> apeiros: come again?
<Radar> (and thing is going to be either a Hash or an Array)
<baweaver> that'd do it
<Radar> I don't know why they do it. This is the second API this year that I've worked with that does it.
<apeiros> Aeyrix: the "1 = object, many = array" kind of anti-normalization. I hate that.
<Radar> I'd love an explanation.
<Aeyrix> apeiros: I... kinda like it from a uh
<Aeyrix> I guess from an end-user point of view.
<Aeyrix> From a developmental point of view I can see how it'd be a problem.
<Radar> The API is Item.json, which may return 1) a single item or 2) a list of items
<apeiros> if it can be many, always return an array. less code paths on all sides.
<Aeyrix> But you don't buy a carton of one drink. You buy one drink.
<Aeyrix> If you want many drinks, you buy a carton.
<Radar> When really they should split the API to make it Items.json return an array and Item.json return a single item.
<baweaver> ding ding ding ^
<apeiros> precisely. and usually when you do that you notice it's not even worth it and just use the plural :)
<Radar> Here's their lovely* documentation btw: http://cloud-docs.merchantos.com/API/APIHelp.help
doublemalt_ has quit [Ping timeout: 265 seconds]
<Radar> I'm writing the endpoint for Account.Item now
<Aeyrix> apeiros: ... Yeah I noticed about four seconds after I said it.
<Aeyrix> disregard me, i'm garbage
<Radar> neg
<Radar> You are good people when you want to be
<Aeyrix> since when
kobain has quit [Quit: KVIrc 4.1.3 Equilibrium http://www.kvirc.net/]
rubie has joined #ruby
starless has quit [Quit: Leaving]
<Radar> Don't ruin it :)
RegulationD has joined #ruby
<Aeyrix> :>
<baweaver> leftbind
<baweaver> dangit scala
<Aeyrix> Radar: We have a mutual acquaintance but I forget his name.
<Aeyrix> He leads the Swinburne cyber haquer group, was at Ruby meetup.
<Aeyrix> Maybe he just said he knew you, idk.
<Radar> That isn't useful. I have a lot of acquaintances :)
<Aeyrix> I was talking about your book on Friday.
<Radar> Younger looking guy? Still in uni?
<Aeyrix> Yes.
<Aeyrix> Scraggly a/f beard.
<Radar> I spoke to someone who fits that description at the Ruby meetup. Met him last December at the Envato party thing
<Aeyrix> That would be him.
<Aeyrix> He's trying to get into Envato.
* Aeyrix is trying to help as I have a mate there.
<Radar> He should keep trying. It's a good place so I've heard.
<Aeyrix> Brendan was his name.
<Aeyrix> It is, yeah.
<Radar> I wish they were more open to hiring newbies.
<Aeyrix> They are if you ask the right guy. :^)
<baweaver> Radar: Curious, what do you qualify as newbie?
bluOxigen has joined #ruby
<baweaver> I've seen it range from fresh out of college to 3-5 years exp
<Aeyrix> baweaver: 3-5y exp in <x> is not a newbie in <x>.
<Radar> baweaver: Someone with only a couple of months Ruby experience. They've written a basic Rails application and can demonstrate that they know at least how to write Ruby without syntax erroring all over the place.
RegulationD has quit [Ping timeout: 258 seconds]
<Radar> Essentially: someone who's made it all the way through TWGR and Rails 4 in Action :P
* baweaver hasn't been through R4iA
* baweaver is being cheeky
<Radar> of course
* Aeyrix hasn't even looked at TWGR.
<baweaver> Yeah, some people define Junior as anyone under 5 years
<baweaver> The Well Grounded Rubyist
<baweaver> decent book
<baweaver> Practical Object Oriented Design in Ruby is a good one as well at that stage
<Radar> indeed
sigurding has joined #ruby
GriffinHeart has joined #ruby
<baweaver> Though I really enjoyed Raganwald's Kestrels, Quirky Birds, and Hopeless Egocentricy
<baweaver> (functional combinators in Ruby)
<Ox0dea> baweaver: I assume you've seen Programming with Nothing?
<baweaver> Definitely a trip though for people not versed in Haskell
<baweaver> Not offhand Ox0dea
* baweaver googles it
<Ox0dea> Tom Stuart writes FizzBuzz in, essentially, the lambda calculus.
<baweaver> Ah, that type of one
sinkensabe has joined #ruby
<baweaver> I think he expanded it to a book
<baweaver> church numerals and such
<baweaver> Ha
<baweaver> yeah
<baweaver> that was him
fedexo has quit [Ping timeout: 265 seconds]
User458764 has joined #ruby
jpfuentes2 has joined #ruby
gagrio has joined #ruby
ndrei has quit [Ping timeout: 256 seconds]
SHyx0rmZ has joined #ruby
pwnz0r has joined #ruby
<Aeyrix> Quick, think of a premium dedicated hosting provider that isn't Rackspace.
unshadow has joined #ruby
<baweaver> DigitalOcean
<Aeyrix> >premium
<Aeyrix> >dedicated
<Aeyrix> >only the dead shall know peace from this trolling
GriffinHeart has quit [Remote host closed the connection]
ahmetkapikiran has joined #ruby
* baweaver shrugs and wanders back off
<Aeyrix> thanks for playing baweaver
vdamewood has quit [Quit: Life beckons.]
<last_staff> anybody know what the "endpoint" variable in the winrm gem means?
<last_staff> i.e., is it where winrm requests come from, or is it where they're going to?
neanderslob has joined #ruby
<Ox0dea> last_staff: They didn't not call it "startpoint" for nothing. :P
towski_ has quit [Remote host closed the connection]
anisha has joined #ruby
aryaching has joined #ruby
andikr has joined #ruby
_blizzy_ has joined #ruby
Jonah11_ has quit [Remote host closed the connection]
arup_r has joined #ruby
platosha_ has joined #ruby
platosha has quit [Ping timeout: 276 seconds]
selu has joined #ruby
baweaver_ has joined #ruby
ahmetkapikiran has quit [Quit: ahmetkapikiran]
baweaver_ has quit [Remote host closed the connection]
baweaver_ has joined #ruby
pengin has joined #ruby
fabrice31 has joined #ruby
_blizzy_ has quit [Ping timeout: 256 seconds]
s2013 has quit [Ping timeout: 244 seconds]
ghr has joined #ruby
<zotherstupidguy> i need a gem to monitor my wlan connection traffic?
ta has joined #ruby
<zotherstupidguy> somthing like what tcptrack does
<zotherstupidguy> any ideas?
Ox0dea has quit [Read error: No route to host]
ndrei has joined #ruby
doodleha_ has joined #ruby
sandstrom has joined #ruby
ghr has quit [Ping timeout: 265 seconds]
doodleha_ has quit [Read error: Connection reset by peer]
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
doodleha_ has joined #ruby
<certainty> moin
konsolebox has joined #ruby
<flughafen> moin certainty sevenseacat shevy
<sevenseacat> guten morgen
<flughafen> g'day mate
* certainty waves
<flughafen> do i speak australian good?
Alina-malina has quit [Ping timeout: 264 seconds]
Rickmasta has joined #ruby
pengin has quit [Remote host closed the connection]
bigkevmcd has joined #ruby
doodleha_ has quit [Read error: Connection reset by peer]
pengin has joined #ruby
<certainty> like a native mate
<zotherstupidguy> flughafen how was the final yesterday? who won?
<emocakes> gday cobba
<emocakes> moin flughafen
<emocakes> wie gehts dir?
greenbagels has quit [Read error: Connection reset by peer]
<emocakes> shevy!
<emocakes> liebling!
greenbagels has joined #ruby
Alina-malina has joined #ruby
ndrei has quit [Ping timeout: 264 seconds]
ndrei has joined #ruby
sdwrage has joined #ruby
Hounddog has joined #ruby
<flughafen> zotherstupidguy: i didn't pay attention
<flughafen> sup emocakes
gauke has joined #ruby
<flughafen> i was too busy recovering from the bergkirchweih
<flughafen> need to power down
amclain has quit [Quit: Leaving]
<emocakes> hah
<emocakes> liver shutting down?
flughafen has quit [Remote host closed the connection]
pengin has quit [Ping timeout: 272 seconds]
doodleha_ has joined #ruby
ohaibbq has quit [Quit: Leaving...]
sdwrage has quit [Client Quit]
Musashi007 has joined #ruby
Hounddog has quit [Ping timeout: 246 seconds]
Hounddog has joined #ruby
hanmac has quit [Ping timeout: 256 seconds]
nhhagen has joined #ruby
edwinvdgraaf has joined #ruby
DerisiveLogic has quit [Remote host closed the connection]
doodleh__ has joined #ruby
doodleha_ has quit [Ping timeout: 258 seconds]
doodleh__ has quit [Read error: Connection reset by peer]
pontiki has quit [Quit: Textual IRC Client: www.textualapp.com]
bMalum has joined #ruby
<certainty> seems like it
doodleha_ has joined #ruby
<emocakes> i miss weißwurst
doodleha_ has quit [Read error: Connection reset by peer]
<emocakes> s/wurst/würst
djbkd has quit [Quit: My people need me...]
<emocakes> living in australia sucks
<emocakes> no good food
User458764 has quit [Ping timeout: 272 seconds]
<Aeyrix> Oi.
<Aeyrix> Kangaroo steaks mate.
<emocakes> oi mate, its true though
<Aeyrix> Knock beef out of the park any day of the week.
<emocakes> roo is good
<Aeyrix> Paging Radar.
<Aeyrix> Paging sevenseacat also.
<emocakes> fuck Radar
livathinos has joined #ruby
<Radar> Hi.
<emocakes> fuck you Radar
<Aeyrix> Australian food.
<Aeyrix> DISCUSS
<Radar> Kangaroo is great when it's cooked right,.
User458764 has joined #ruby
<Radar> It might be too tough if it's cooked too long
<Aeyrix> While I wait for this fucking scan to finish so I can go home.
<Radar> But if cooked perfectly it wins over beef by so much.
<emocakes> how bout emu Aeyrix
<Aeyrix> emocakes: Not had emu yet. :(
<emocakes> emu is great
doodleha_ has joined #ruby
<emocakes> unaustralian of you mate
<Aeyrix> I'm not Australian. :^)
<Aeyrix> I just live here.
<emocakes> where you from
bMalum has quit [Ping timeout: 252 seconds]
<Aeyrix> The United Kingdom of Great Britain and Northern Ireland.
djbkd has joined #ruby
<emocakes> which part?
<emocakes> lol
<emocakes> shame though
<Aeyrix> West London.
<emocakes> mainland european food wins hands down
<emocakes> over 'australian cuisine'
doodleha_ has quit [Read error: Connection reset by peer]
dru` has quit [Ping timeout: 255 seconds]
<emocakes> not too sure with like british food, but its kind of boring last i looked, black puddings, meat and three veg
<Aeyrix> Yeah it is.
ScriptGeek has quit [Quit: Leaving.]
aryaching has quit []
sandstrom has quit [Quit: My computer has gone to sleep.]
bayed has joined #ruby
mello has joined #ruby
hanmac has joined #ruby
selu has quit [Quit: Textual IRC Client: www.textualapp.com]
akkad has quit [Ping timeout: 246 seconds]
<sevenseacat> hello.
mello has quit [Ping timeout: 240 seconds]
doodleha_ has joined #ruby
djbkd_ has joined #ruby
<Aeyrix> frank walker from national tiles
djbkd_ has quit [Client Quit]
<zotherstupidguy> in the UFC of the wild, kangros always win
<sevenseacat> Aeyrix: lol.
bentanweihao has joined #ruby
HayesHimself has joined #ruby
tbuehlmann has joined #ruby
mrmargolis has joined #ruby
akkad has joined #ruby
doodleha_ has quit [Read error: Connection reset by peer]
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
doodleha_ has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
Spami has quit [Quit: This computer has gone to sleep]
flughafen has joined #ruby
<flughafen> I'm back guys, who missed me?!
CustosLimen has quit [Max SendQ exceeded]
<Aeyrix> h
doodleha_ has quit [Read error: Connection reset by peer]
<flughafen> i mised you too Aeyrix
<Aeyrix> :>
CustosLimen has joined #ruby
mrmargolis has quit [Ping timeout: 258 seconds]
adamski2600 has joined #ruby
krz has quit [Read error: Connection reset by peer]
msgodf has joined #ruby
krz has joined #ruby
djbkd has quit [Remote host closed the connection]
stoffus has joined #ruby
Spami has joined #ruby
GriffinHeart has joined #ruby
<emocakes> i missed you
<emocakes> i even spoke to you flughafen
<emocakes> but you had lef
<emocakes> I'm thinking of moving to wien next year
<emocakes> anyone in wien / vienna ?
<emocakes> rent is cheap comparatively (sydney)
Musashi007 has quit [Quit: Musashi007]
ValicekB has joined #ruby
<Aeyrix> Do you have any particular wish to live in Vienna?
<emocakes> bored with australia again
<emocakes> lived in germany for a year
<emocakes> have a cousin in linz
<emocakes> prefer euro girls
<adaedra> hello
jenrzzz has quit [Ping timeout: 276 seconds]
<adaedra> shevy: we need an Austrian in here
<emocakes> so yeah, I guess,
<emocakes> its funny Aeyrix, for not much money i could buy some land in austria
jenrzzz has joined #ruby
<Aeyrix> Nice.
<emocakes> close to ski fields
<emocakes> sell my place in sydney
doodleha_ has joined #ruby
<lpaste> Author pasted “CDBurnerXP Direct Downloads To Bypass OpenCandy!” at http://lpaste.net/133690
<adaedra> ok
vdamewood has joined #ruby
Soliah has joined #ruby
<lpaste> Radar pasted “Top 10 tips to painless anal sex” at http://lpaste.net/133691
GriffinHeart has quit [Ping timeout: 264 seconds]
sandstrom has joined #ruby
doodleha_ has quit [Read error: Connection reset by peer]
<adaedra> -_-
<sevenseacat> !ban lpaste !T 1d
lpaste was kicked from #ruby by ChanServ [User is banned from this channel]
* emocakes keks softly
olistik has joined #ruby
<flughafen> emocakes! my boss had to steal my power cord
<emocakes> what a bastard
<adaedra> He got the power
_ixti_ has quit [Ping timeout: 264 seconds]
havenwood has quit [Ping timeout: 276 seconds]
<Aeyrix> hey that last one was useful
doodleha_ has joined #ruby
<flughafen> I got a smaller one in return.
<flughafen> i should quit as a protest
<adaedra> Strangle him with the power cord
<emocakes> make it look like an accident
<flughafen> "ugh, it was raining so he tried to wrap his neck in a power cord?"
AlphaAtom has joined #ruby
<adaedra> Be creative!
<emocakes> heard of michael hutchence?
doodleha_ has quit [Read error: Connection reset by peer]
ghr has joined #ruby
pwnz0r has quit []
<flughafen> emocakes: no?
<emocakes> autoerotic asphyxiation
<emocakes> you never know who it will strike next
ziprar has joined #ruby
_blizzy_ has joined #ruby
<flughafen> ooooh
<flughafen> ok
<flughafen> i know what is
charliesome has quit [Quit: zzz]
<emocakes> of course you do, you are german
<emocakes> :p
<adaedra> bam
<emocakes> he didn't see that one coming did he adaedra ?
<adaedra> seems so
kenndel_ has joined #ruby
Zai00 has joined #ruby
pwnz0r has joined #ruby
zipace has quit [Ping timeout: 244 seconds]
hanmac1 has left #ruby [#ruby]
doodleha_ has joined #ruby
kenndel has quit [Ping timeout: 265 seconds]
livathinos has quit [Ping timeout: 255 seconds]
granthatcher has joined #ruby
mrsolo has joined #ruby
Jackneill has joined #ruby
doodleha_ has quit [Read error: Connection reset by peer]
axl_ has joined #ruby
nhhagen_ has joined #ruby
axl_ is now known as axwel
matled- has joined #ruby
Macaveli has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
<flughafen> adaedra: he's a connoisseur
doodleha_ has joined #ruby
nhhagen has quit [Read error: Connection reset by peer]
matled has quit [Remote host closed the connection]
djbender has quit [Ping timeout: 256 seconds]
jeregrine has quit [Ping timeout: 256 seconds]
matled- is now known as matled
lxsameer has quit [Ping timeout: 256 seconds]
jeregrine has joined #ruby
djbender has joined #ruby
lxsameer has joined #ruby
OrbitalKitten has joined #ruby
pengin has joined #ruby
RegulationD has joined #ruby
doodleha_ has quit [Read error: Connection reset by peer]
djbkd has joined #ruby
n008f4g_ has joined #ruby
<Radar> Not nice to deny me the chance to ban you while I go through the city loop tunnel.
postmodern has quit [Quit: Leaving]
doodleha_ has joined #ruby
doodleha_ has quit [Read error: Connection reset by peer]
RegulationD has quit [Ping timeout: 245 seconds]
livathinos has joined #ruby
neanderslob has quit [Remote host closed the connection]
baweaver_ has quit [Remote host closed the connection]
djbkd has quit [Ping timeout: 272 seconds]
baweaver_ has joined #ruby
ahmetkapikiran has joined #ruby
baweaver_ has quit [Remote host closed the connection]
baweaver_ has joined #ruby
pwnz0r has quit [Remote host closed the connection]
pwnz0r has joined #ruby
pengin has quit [Remote host closed the connection]
pengin has joined #ruby
emocakes was banned on #ruby by Radar [*!*@unaffiliated/emocakes]
emocakes was kicked from #ruby by Radar [Fuck you too, good buddy.]
* Radar enjoys long walks along the beach, chocolate anything and banning idiots.
unshadow has quit [Quit: leaving]
DEA7TH has joined #ruby
pwnz0r has quit [Ping timeout: 265 seconds]
<Radar> Goodnight people.
<apeiros> wow. surprised you didn't kickban.
pengin has quit [Ping timeout: 264 seconds]
TheHodge has joined #ruby
<flughafen> apeiros: don't ever tell radar to eat emu
unshadow has joined #ruby
KrzaQ has quit [Disconnected by services]
<apeiros> o0
KrzaQ has joined #ruby
<apeiros> I think I'll just not go down that rabbit hole.
<adaedra> Tell hello to Morpheus for me, apeiros
doodleha_ has joined #ruby
xxneolithicxx has quit [Ping timeout: 255 seconds]
gr33n7007h has joined #ruby
nhhagen_ has quit []
mello has joined #ruby
al2o3-cr has quit [Ping timeout: 246 seconds]
gr33n7007h is now known as al2o3-cr
<arup_r> ok..
doodleha_ has quit [Read error: Connection reset by peer]
<arup_r> apeiros: Hello!
mrsolo has quit [Quit: This computer has gone to sleep]
<arup_r> I am doing good,,, n U ?
Zai00 has quit [Quit: Zai00]
watchtheblur has quit [Ping timeout: 258 seconds]
Zai00 has joined #ruby
<apeiros> I'm fine
idafyaid has quit [Ping timeout: 252 seconds]
mello has quit [Ping timeout: 246 seconds]
ponga has joined #ruby
rdark has joined #ruby
TinkerTyper has quit [Ping timeout: 240 seconds]
TinkerTyper has joined #ruby
User458764 has joined #ruby
jgt has joined #ruby
doodleha_ has joined #ruby
fabrice31 has quit [Remote host closed the connection]
fabrice31 has joined #ruby
doodleha_ has quit [Read error: Connection reset by peer]
rippa has joined #ruby
sandelius has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
fabrice31_ has joined #ruby
senayar has joined #ruby
<adaedra> I can't find a documentation about using Gemfiles with gem command, does someone has that?
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
doodleha_ has joined #ruby
<ljarvis> adaedra: rubygems doesn't manage Gemfiles, bundler does
<ljarvis> so you want bundler documentation
<adaedra> we discussed that the other day, gem begins to have some support of it
<jhass> is there anything beyond gem install -g?
rubie has quit [Remote host closed the connection]
doodleha_ has quit [Read error: Connection reset by peer]
ndrei has quit [Ping timeout: 244 seconds]
<jhass> adaedra: gem help install has a section
<jhass> "Gem Dependency Files"
<adaedra> Ah, here it is
<adaedra> Thanks
fabrice31 has quit [Ping timeout: 255 seconds]
clauswitt has joined #ruby
kp666 has joined #ruby
charliesome has joined #ruby
ndrei has joined #ruby
doodleha_ has joined #ruby
jenrzzz has quit [Ping timeout: 255 seconds]
doodleha_ has quit [Read error: Connection reset by peer]
chinmay_dd has joined #ruby
GriffinHeart has joined #ruby
meph has joined #ruby
anisha has quit [Ping timeout: 252 seconds]
Eddieh_ has joined #ruby
GriffinHeart has quit [Remote host closed the connection]
ndrei has quit [Ping timeout: 256 seconds]
doodleha_ has joined #ruby
platzhirsch has joined #ruby
ndrei has joined #ruby
doodleha_ has quit [Read error: Connection reset by peer]
<Eddieh_> I have a Ruby gem that provides a binary that can be run from the terminal. How do I go about overriding a specific method in that binary? I already have the code that overrides the method in the library (works if I want to use the override inside my own code), but can't seem to figure out where to put it to make the binary load it :/
dionysus69 has joined #ruby
platzhirsch has left #ruby [#ruby]
ndrei has quit [Ping timeout: 245 seconds]
ndrei has joined #ruby
selu has joined #ruby
selu has quit [Client Quit]
<jhass> binary = ruby script with a hashbang & the executable flag?
mrsolo has joined #ruby
avril14th has joined #ruby
anisha has joined #ruby
ahmetkapikiran has quit [Quit: ahmetkapikiran]
fabrice31_ has quit [Remote host closed the connection]
fabrice31 has joined #ruby
workmad3 has joined #ruby
<Eddieh_> jhass yeah looks like it. Although I don't know what a hashbang is (very new to Ruby)
<jhass> #!/usr/bin/ruby or something
<flughafen> wooo ! new tires arrived
ndrei has quit [Ping timeout: 264 seconds]
<ljarvis> #!/usr/bin/env ruby probably
<Eddieh_> indeed it is: #!/usr/bin/env ruby
quimrstorres has joined #ruby
<jhass> call it executable then ;P
quimrstorres has quit [Remote host closed the connection]
<jhass> and it's no different from any other ruby file, you can do everything there to
<Aeyrix> Technically still incorrect.
<Aeyrix> It's a script.
<jhass> *too
fabrice31_ has joined #ruby
<Eddieh_> alright, awesome! thanks for the help :)
icedp has quit [Ping timeout: 265 seconds]
<apeiros> Eddieh_: hashbang/shebang is a shell thing, not a ruby thing. it tells the shell what executable to use to run a script
<apeiros> just fyi :)
<Eddieh_> oooh. Cool
<Darkwater> for completeness, a ruby script isn't a binary
<Aeyrix> [19:20:34] <Aeyrix>It's a script.
<Aeyrix> late
<Darkwater> a human-unreadable, computer-readable file is often referred to as a binary
<Aeyrix> :^)
ndrei has joined #ruby
<Darkwater> ah, scanned too quick
<Aeyrix> lmao you explained it more than me, probably good supplementary
<Eddieh_> Darkwater it was included in a directory called /bin and referred to as a binary in the docs of the gem haha
fabrice31 has quit [Ping timeout: 256 seconds]
icedp has joined #ruby
<Aeyrix> Eddieh_ wait what gem
<Aeyrix> that sounds like
<Aeyrix> B A D C O D I N G
<Darkwater> yeah 'bin' has partially lost its meaning
mrmargolis has joined #ruby
<Eddieh_> It's kramdown
<Darkwater> mostly means 'executable files' these days
<Aeyrix> Is that an adult entertainment studio?
flynn has quit []
bruno- has joined #ruby
<Eddieh_> It's a markup parser - http://kramdown.gettalong.org/index.html
<Aeyrix> o
sinkensabe has quit [Remote host closed the connection]
mrmargolis has quit [Ping timeout: 250 seconds]
_blizzy_ has quit [Ping timeout: 265 seconds]
sinkensabe has joined #ruby
ruurd has joined #ruby
ta has quit [Remote host closed the connection]
ta has joined #ruby
bruno- has quit [Ping timeout: 264 seconds]
sinkensabe has quit [Remote host closed the connection]
sandelius has joined #ruby
razorgfx has joined #ruby
ruurd has quit [Client Quit]
arup_r has quit [Remote host closed the connection]
ruurd has joined #ruby
baweaver_ has quit [Read error: Connection reset by peer]
ta_ has joined #ruby
User458764 has joined #ruby
baweaver has quit [Remote host closed the connection]
baweaver has joined #ruby
ta has quit [Ping timeout: 250 seconds]
senayar has quit [Remote host closed the connection]
slackbotgz has joined #ruby
quimrstorres has joined #ruby
bkxd has joined #ruby
polysics has joined #ruby
ruurd has quit [Quit: ruurd]
baweaver has quit [Ping timeout: 265 seconds]
olistik has quit [Remote host closed the connection]
A205B064 has quit [Ping timeout: 252 seconds]
sandelius has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bruno- has joined #ruby
senayar has joined #ruby
serivich has joined #ruby
chinmay_dd has quit []
CustosLimen has quit [Ping timeout: 245 seconds]
mello has joined #ruby
serivichi has joined #ruby
chipotle has joined #ruby
jenrzzz has joined #ruby
Ropeney has quit [Quit: Textual IRC Client: www.textualapp.com]
mello has quit [Ping timeout: 250 seconds]
serivich has quit [Ping timeout: 258 seconds]
ndrei has quit [Ping timeout: 258 seconds]
idafyaid has joined #ruby
exadeci has joined #ruby
jenrzzz has quit [Ping timeout: 246 seconds]
CustosLimen has joined #ruby
atmosx has joined #ruby
<zotherstupidguy> whats your favourite language for building internal dsls?
<zotherstupidguy> other than ruby.
fabrice31_ has quit [Remote host closed the connection]
<canton7> depends what tool the dsl is for. If, say, it's a config interface for a C# tool, I'll write a custom grammar and a parser using C# libraries, etc
professor_soap has joined #ruby
fabrice31 has joined #ruby
<sevenseacat> i dont like the term 'dsl'
RegulationD has joined #ruby
wjimenez5271 has quit [Ping timeout: 245 seconds]
<zotherstupidguy> sevenseacat what you suggest?
<sevenseacat> depend what you mean by it. it can mean a buttload of different things.
<jhass> zotherstupidguy: Crystal, how about this one that builds a Crystal class and a corresponding Ruby extension? https://github.com/manastech/crystal_ruby/blob/master/sample/test_ruby.cr :P
<zotherstupidguy> sevenseacat inlightin me, i only know external and internal dsls!
<sevenseacat> how can i enlighten you when you cant tell me what you want?
wjimenez5271 has joined #ruby
<zotherstupidguy> well i thought the term DSL is well defined in the ruby community as there are "many" talks about it
<sevenseacat> and its a term as meaningless as 'service oriented architecture'
<sevenseacat> it can mean just about anything
kirun has joined #ruby
RegulationD has quit [Ping timeout: 272 seconds]
<zotherstupidguy> hmmm
n008f4g_ has quit [Ping timeout: 250 seconds]
mandarinkin has joined #ruby
<zotherstupidguy> if someone said SOA to me i would say a program talking to another program via a protocol, but now i think that a browser is also a program so a webservice talking to a browser negates the original definition
professor_soap has quit []
ndrei has joined #ruby
dseitz_ has joined #ruby
olistik has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bkxd has quit [Ping timeout: 255 seconds]
<zotherstupidguy> but back to the point, a DSL or a domain-speciic langauge fits nice in the much older area of domain engineering
<zotherstupidguy> semantically i mean
Eddieh_ has quit [Read error: Connection reset by peer]
<zotherstupidguy> jhass i didnt know about crystal before! thanks
dseitz has quit [Ping timeout: 252 seconds]
HotCoder has quit [Ping timeout: 252 seconds]
mrsolo has quit [Quit: This computer has gone to sleep]
Xiti` has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
peteykun has quit [Ping timeout: 272 seconds]
Xiti has quit [Ping timeout: 265 seconds]
Guest16 has joined #ruby
ahmetkapikiran has joined #ruby
flak has joined #ruby
flak is now known as Guest43972
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
nfk has joined #ruby
oo__ has joined #ruby
dseitz_ is now known as dseitz
<mandarinkin> crystal still uses 2.6G for building from source?
banister has joined #ruby
<mandarinkin> tmp dir
banister has quit [Max SendQ exceeded]
sigurding has quit [Quit: sigurding]
Rickmasta has joined #ruby
Brock has joined #ruby
yardenbar has joined #ruby
SHyx0rmZ has quit [Ping timeout: 250 seconds]
awwaiid has quit [Ping timeout: 250 seconds]
rippa has quit [Ping timeout: 250 seconds]
oo_ has quit [Ping timeout: 250 seconds]
unreal_ has quit [Ping timeout: 250 seconds]
sumark has quit [Ping timeout: 250 seconds]
psy_ has quit [Ping timeout: 250 seconds]
armyriad has quit [Ping timeout: 250 seconds]
armyriad has joined #ruby
<jhass> well, I guess you can reduce it by not running the checks
sumark has joined #ruby
unreal has joined #ruby
<mandarinkin> what need to do to disable checks?
timonv has joined #ruby
psy_ has joined #ruby
gluten_hell_ has joined #ruby
anytimebutnow has joined #ruby
<jhass> don't run make spec or makepkg --nocheck for AUR the package
ndrei has quit [Ping timeout: 244 seconds]
<mandarinkin> can't find doc about --nocheck
<jhass> man makepkg
senayar has quit [Remote host closed the connection]
fabrice31_ has joined #ruby
doertedev has joined #ruby
bkxd has joined #ruby
sinkensabe has joined #ruby
Guest16 has left #ruby ["Textual IRC Client: www.textualapp.com"]
fabrice31 has quit [Ping timeout: 255 seconds]
lennae has joined #ruby
Guest16 has joined #ruby
tkuchiki_ has joined #ruby
Axy has joined #ruby
hector__ has joined #ruby
User458764 has joined #ruby
MuffinPimp_ has joined #ruby
shakes has quit [Remote host closed the connection]
premera_c has joined #ruby
allcentury has joined #ruby
<atmosx> can .to_json use nelines
razorgfx has quit [Quit: Textual IRC Client: www.textualapp.com]
<atmosx> newlines hmm I wonder.
bkxd has quit [Ping timeout: 265 seconds]
razorgfx has joined #ruby
mcpierce` has joined #ruby
tvw has joined #ruby
slash_ni1k has joined #ruby
jobewan_ has joined #ruby
ndrei has joined #ruby
ptierno has joined #ruby
Luyt has joined #ruby
Zai00 has quit [Quit: Zai00]
sandelius has joined #ruby
<mandarinkin> got error ' Cannot allocate memory'
drizz_ has joined #ruby
sygnorman has joined #ruby
PaulePan1er has joined #ruby
sumark_ has joined #ruby
<mandarinkin> with --nocheck
slackbotgz has quit [Remote host closed the connection]
yqt has joined #ruby
pygospa has joined #ruby
razorgfx has quit [Client Quit]
mcpierce has quit [Ping timeout: 258 seconds]
MuffinPimp has quit [Read error: Connection reset by peer]
tkuchiki has quit [Ping timeout: 258 seconds]
jobewan has quit [Ping timeout: 258 seconds]
moted has quit [Ping timeout: 258 seconds]
premera has quit [Ping timeout: 258 seconds]
j416 has quit [Ping timeout: 258 seconds]
russt has quit [Ping timeout: 258 seconds]
drizz has quit [Ping timeout: 258 seconds]
slash_nick has quit [Ping timeout: 258 seconds]
Guest46133 has quit [Ping timeout: 258 seconds]
ptierno_ has quit [Ping timeout: 258 seconds]
sumark has quit [Ping timeout: 258 seconds]
serivichi has quit [Ping timeout: 258 seconds]
Jackneill has quit [Ping timeout: 258 seconds]
Mia has quit [Ping timeout: 258 seconds]
nickjj has quit [Ping timeout: 258 seconds]
Ankhers has quit [Ping timeout: 258 seconds]
TheRealPygo has quit [Ping timeout: 258 seconds]
ziprar has quit [Ping timeout: 258 seconds]
Dopagod has quit [Ping timeout: 258 seconds]
i8igmac has quit [Ping timeout: 258 seconds]
rikai has quit [Ping timeout: 258 seconds]
bmn has quit [Ping timeout: 258 seconds]
PaulePanter has quit [Ping timeout: 258 seconds]
Luyt__ has quit [Ping timeout: 258 seconds]
cats has quit [Ping timeout: 258 seconds]
CpuID has quit [Ping timeout: 258 seconds]
yxhuvud has quit [Ping timeout: 258 seconds]
dreinull75 has quit [Ping timeout: 258 seconds]
MuffinPimp_ is now known as MuffinPimp
yxhuvvd has joined #ruby
Ankhers_ has joined #ruby
drizz_ is now known as drizz
rikai has joined #ruby
russt has joined #ruby
dfoolz has quit [Ping timeout: 258 seconds]
yh has quit [Ping timeout: 272 seconds]
cats has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
bmn has joined #ruby
i8igmac has joined #ruby
Jackneill has joined #ruby
j416 has joined #ruby
dfoolz has joined #ruby
Dopagod has joined #ruby
johnny_dz has quit [Ping timeout: 258 seconds]
brandon has joined #ruby
brandon is now known as Guest27228
<mandarinkin> seems guys with 4G memory not able install crystal
phutchins has joined #ruby
scripore has joined #ruby
ndrei has quit [Ping timeout: 252 seconds]
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bkxd has joined #ruby
Fluent has left #ruby ["That's how I feel about this channel"]
jacor has quit [Read error: Connection reset by peer]
jacor has joined #ruby
haxrbyte_ has joined #ruby
haxrbyte has quit [Read error: Connection reset by peer]
ndrei has joined #ruby
Papierkorb has joined #ruby
banister has joined #ruby
<jhass> uh, I did manage on a half gig VPS
haxrbyte has joined #ruby
<jhass> just don't build in /tmp and use --nocheck
toretore has joined #ruby
yh_ has joined #ruby
jimms has joined #ruby
haxrbyte_ has quit [Ping timeout: 246 seconds]
sdothum has joined #ruby
Guest16 has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yardenbar has quit [Ping timeout: 244 seconds]
Vile` has quit [Read error: Connection reset by peer]
krz has quit [Quit: WeeChat 1.0.1]
doublemalt_ has joined #ruby
ndrei has quit [Ping timeout: 264 seconds]
dorei has joined #ruby
Vile` has joined #ruby
woodruffw has quit [Remote host closed the connection]
tkuchiki_ has quit [Ping timeout: 256 seconds]
yqt has quit [Ping timeout: 256 seconds]
CamonZ has joined #ruby
ag4ve has quit [Ping timeout: 248 seconds]
edwinvdgraaf has quit []
terlar has quit [Quit: WeeChat 1.2]
ringarin has joined #ruby
woodruffw has joined #ruby
hectortrope has quit [Quit: WeeChat 0.4.2]
bosma has quit [Ping timeout: 272 seconds]
ndrei has joined #ruby
edwinvdgraaf has joined #ruby
mrmargolis has joined #ruby
ahmetkapikiran has quit [Quit: ahmetkapikiran]
oo__ has quit [Remote host closed the connection]
root____4 has joined #ruby
root____4 has quit [Client Quit]
sigurding has joined #ruby
ringaring has joined #ruby
iwishiwerearobot has joined #ruby
arup_r has joined #ruby
yardenbar has joined #ruby
PaulePan1er is now known as PaulePanter
mrmargolis has quit [Ping timeout: 258 seconds]
hectortrope has joined #ruby
<yardenbar> Hi, I'm getting "TypeError: can't convert Timestamp into Rational" when subtracting dates. the purpose is to get the # of milliseconds between two timestamps.
<jhass> ?cdoe
<ruboto> I don't know anything about cdoe
<jhass> meh
<jhass> ?code
<ruboto> We can't help you without your code, please post it to https://gist.github.com
<jhass> Timestamp doesn't seem to be a standard Ruby class
<adaedra> Haha jahss
Pupeno has quit [Quit: Leaving...]
ahmetkapikiran has joined #ruby
rodfersou has joined #ruby
ringaring has quit [Quit: leaving]
dionysus69 has quit [Quit: ChatZilla 0.9.91.1 [Firefox 38.0/20150511103303]]
bentanweihao has quit [Remote host closed the connection]
<yardenbar> My bad, "<TypeError: can't convert Date into Rational>", jhass
<jhass> above stands
bruno- has quit [Read error: Connection reset by peer]
<yardenbar> How can I convert Time.now to millisecond from epoch ?
<apeiros> ?xy
<ruboto> I don't know anything about xy
<apeiros> damn
<jhass> add it!
Eddieh_ has joined #ruby
<jhass> (I thought I had already too btw :D)
<heftig> yardenbar: to_f
<apeiros> !fact add xy You are asking for a specific solution to a problem, instead of asking about your problem. This will lead to bad solutions. Also see http://meta.stackexchange.com/a/66378
<ruboto> apeiros, I will remember that xy is You are asking for a specific solution to a problem, instead of asking about your problem. This will lead to bad solutions. Also see http://meta.stackexchange.com/a/66378
<apeiros> ?xy yardenbar
<ruboto> yardenbar, You are asking for a specific solution to a problem, instead of asking about your problem. This will lead to bad solutions. Also see http://meta.stackexchange.com/a/66378
bkxd_ has joined #ruby
bkxd has quit [Ping timeout: 245 seconds]
ismaelga has joined #ruby
peteykun has joined #ruby
<apeiros> but to answer your question: see Time#to_f
sandelius has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bruno- has joined #ruby
<apeiros> note that you're probably doing it wrong if you use .to_f.
Superflat has joined #ruby
vire has joined #ruby
Eddieh__ has joined #ruby
iamninja has joined #ruby
naftilos76 has joined #ruby
Eddieh_ has quit [Ping timeout: 276 seconds]
scripore has quit [Quit: This computer has gone to sleep]
pulgolino has joined #ruby
aryaching has joined #ruby
sandelius has joined #ruby
mello has joined #ruby
pengin has joined #ruby
nfk has quit [Remote host closed the connection]
yqt has joined #ruby
<yardenbar> apeiros, Didn't want to pollute channel. The question itself is about Logstash, calculate filter processing duration
Eddieh__ has quit [Read error: Connection reset by peer]
Eddieh_ has joined #ruby
catphish has joined #ruby
<catphish> does ruby have a built-in mutable integer?
<apeiros> catphish: no
Mon_Ouie has quit [Ping timeout: 256 seconds]
<yardenbar> I'm creating a field that holds Time.now, and at the end of the processing I execute 'event['processing_time'] = (Time.now - event['start_time'])*1000'
<catphish> i'd like to be able to: my_number++
<catphish> apeiros: thanks, i'll make one
<apeiros> catphish: hf
psy_ has quit [Ping timeout: 246 seconds]
<catphish> high five?
<apeiros> have fun
<apeiros> high five is ^5 ;-)
<catphish> :D
ldnunes has joined #ruby
<apeiros> yardenbar: time - time would work. figure out what event['start_time'] truly is. e.g. using `p event['start_time']`
parduse has joined #ruby
mello has quit [Ping timeout: 265 seconds]
c355E3B has joined #ruby
<yardenbar> apeiros, event['start_time'] is initilized with event['start_time'] = Time.now
workmad3 has quit [Ping timeout: 246 seconds]
<apeiros> yardenbar: that would not give the error you reported.
<yardenbar> Can you elaborate, I'm not a ruby dev, just doing some Logstash
<catphish> is there a way to "def ++"
<apeiros> >> t1 = Time.now; t2 = Time.now; t2 - t1
<ruboto> apeiros # => 1.8062e-05 (https://eval.in/373710)
<catphish> or should i just call it increment
sevenseacat has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<Darkwater> just call it increment
alex88 has joined #ruby
<Darkwater> or += 1
decoponio has joined #ruby
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
workmad3 has joined #ruby
<apeiros> yardenbar: as shown above, time - time works. so you're either looking at the wrong line or event['start_time'] is not (no longer) a Time instance.
OrbitalKitten has joined #ruby
Macaveli has quit [Quit: Textual IRC Client: www.textualapp.com]
Zai00 has joined #ruby
<catphish> "def +=" doesn't work either
<catphish> i'll stick with increment
<yardenbar> apeiros, thanks, checking
<jhass> catphish: you can only def @+ and def +
<jhass> (or was it +@? I can never remember)
<apeiros> +@
sandstrom has joined #ruby
<arup_r> shevy: HI
<catphish> works perfectly: ($counter[key] ||= MutableInteger.new).increment
<Darkwater> + refers to the binary operator
<Darkwater> +@ refers to the unary operator (@ symbolizing self)
pengin has quit [Remote host closed the connection]
mmazing has joined #ruby
CustosLimen has quit [Ping timeout: 255 seconds]
pengin has joined #ruby
<arup_r> +@
<apeiros> catphish: oh dear…
<apeiros> catphish: I hope you're just fooling around
<apeiros> (global variable, custom mutable integer…)
<catphish> apeiros: i asked if there was a build in mutable integer, you said there wasn't
<arup_r> catphish: what are you trying to break ?
<apeiros> catphish: there isn't
<apeiros> catphish: that doesn't make a mutable integer class a good idea
sinkensabe has quit [Remote host closed the connection]
<catphish> global variable is probably not necessary :)
<apeiros> s/probably//
<apeiros> fixed that for you
<catphish> there must be a reason why they exist
alex88 has quit [Remote host closed the connection]
<apeiros> the reason is "legacy"
<catphish> i sometimes use them for caches
<apeiros> and "bad ideas live longer than they should"
<jhass> catphish: http://paste.mrzyx.de/pqf8acqqb scnr
<catphish> but you're right, for any proper modular programming, they're a terrible idea
RegulationD has joined #ruby
pengin has quit [Ping timeout: 256 seconds]
<apeiros> catphish: instead of writing a MutableInteger class, better write a Counter class
<apeiros> and then MyCounter.increment(key)
CustosLimen has joined #ruby
<catphish> apeiros: that's not a bad idea, though actually i'm questioning why i need a mutable integer at all now, as long as += is atomic it doesn't matter
nonparfumee has joined #ruby
doublemalt_ has quit [Ping timeout: 265 seconds]
simi has joined #ruby
mujou has joined #ruby
wohlert has joined #ruby
ndrei has quit [Ping timeout: 246 seconds]
<apeiros> catphish: += isn't atomic. sorry.
nettoweb has joined #ruby
<catphish> oh, i see why i had a problem, i need to create a new key in the hash, default it to zero, and increment it, all at once
RegulationD has quit [Ping timeout: 244 seconds]
<apeiros> you know Hash.new(0), right?
<catphish> i wanted a mutable integer so i could increment it in a threadsafe manner
<apeiros> a mutable integer won't give you that
<catphish> Hash.new?
juanpaucar has joined #ruby
<apeiros> >> c = Hash.new(0); c[:key] += 1; c
<ruboto> apeiros # => {:key=>1} (https://eval.in/373713)
<apeiros> no need to default to zero on assignment
<catphish> apeiros: i did not know about that, that's the best thing ever
<catphish> apeiros: that actually almost entirely solves my problem
<catphish> it doesn't give me a threadsafe += but i can live with that
<apeiros> re "a mutable integer won't give you that" - I retract that statement :)
sevenseacat has joined #ruby
<apeiros> catphish: well, it's like 7 LoC to have a thread safe .increment on a custom hash based counter class
<catphish> is there not a way to just increment the object_id?
sinkensabe has joined #ruby
<apeiros> + 1 LoC for all delegates
<apeiros> catphish: oh dear…
<apeiros> no, no there isn't.
<catphish> that's all += has to do, i'm surprised it doesn't in its default implementation
<apeiros> you make me rethink my stance on "a language should not babysit its developers"
<apeiros> no. the relation between object ids and integer value for Fixnum is an implementation detail.
<ljarvis> oh god object_id increments
<ljarvis> the horror
<apeiros> and it fails too..
gagrio has quit [Ping timeout: 272 seconds]
<apeiros> even if it would work with fixnum - latest it would fail is bignum
<catphish> of course it is, but an implementation that uses predictable values could implement + by incrementing the object_id
wohlert has quit [Quit: wohlert]
senayar has joined #ruby
<apeiros> and it doesn't even work with fixnum
<apeiros> >> 2.object_id - 1.object_id
<ruboto> apeiros # => 2 (https://eval.in/373715)
<catphish> >> (10.object_id - 5.object_id) / 2
<ruboto> catphish # => 5 (https://eval.in/373716)
<wasamasa> let's just use UUIDs for object IDs
<catphish> of course, the user should never do this, only the implementation
<catphish> i assumed the reason for using fixed object IDs for integers was for mathematical simplicity in the implementation
<wasamasa> I suspect it's the tagged pointers
<wasamasa> as all of these end in a zero
<wasamasa> so, if an object's pointer ends in a zero, its value is interpreted as an integer instead by cutting that zero off
<ljarvis> oO
<wasamasa> matz stole this from emacs
<catphish> apeiros: anyway, i'll look at your counter implementation, thanks
<wasamasa> ljarvis: would you prefer boxed integers à la java :P
<catphish> i just want a number i can increment in a threadsafe manner
<ljarvis> wasamasa: meh, I'm actually a fan of Java (though that's not an answer to your question)
<wasamasa> ljarvis: python does this, too (and avoids the native/boxed distinction somehow)
doublemalt_ has joined #ruby
duncannz has quit [Ping timeout: 256 seconds]
<wasamasa> source on my earlier statement
<catphish> apeiros: actually, did you have an idea for me, or were you recommending jhass's code?
<jhass> lol, I wouldn't recommend my code
dwithers1 is now known as pl1ght
<catphish> :)
<wasamasa> such honesty
pl1ght has quit [Quit: WeeChat 0.4.2]
<jhass> it was about fooling around with the syntax really
pl1ght has joined #ruby
<catphish> this is cool: c = Hash.new(0); c[:key] += 1
allcentury has quit [Ping timeout: 264 seconds]
<catphish> i just need a way to make the +=1 atomic
<Darkwater> what's unatomic about it? (I don't exactly understand atomic yet)
nonparfumee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
__chris has joined #ruby
<catphish> Darkwater: imaging you run x +=1 simultaneously in 2 threads, an atomic version would increment the number in one operation, so after both threads has run, the result would be +2
<apeiros> catphish: mostly just a class with an @counter = Hash.new(0), a .increment method protected by either Mutex or Monitor, and Forwardable to forward all hash methods you want
<jhass> Darkwater: it's short for c[:key] = c[:key] + 1
<jhass> 3 method calls
<catphish> Darkwater: but a non-atomic version would fetch the value, add one to it, then put the value back in the variable
<ljarvis> Darkwater: if it were an atomic operation, one could assume that the value would be incremeneted without interference (for example, from another process)
<jhass> catphish: ... if it's still the same as the old one
<apeiros> Darkwater: http://kloobok.com/index.php?option=com_content&view=article&id=114&Itemid=165 - ignore the C code. it's got pretty pictures explaining it nicely.
<apeiros> maybe somebody finds something better
<exadeci> Hello, URI.escape(path, /[^#{URI::REGEXP::PATTERN::UNRESERVED}\/]/) encodes ? and = but that creates a 404 with the url, how can I prevent that ?
<ljarvis> +1 for a class that uses a mutex/monitor
<exadeci> shouldn't ? and = be encoded ,
<exadeci> ?
n008f4g_ has joined #ruby
<catphish> i could just mutex it, or not care :) no idea how expensive a mutex is
<jhass> exadeci: encode the components manually and rebuild the URL
<Darkwater> so how could you make a method like increment atomic?
codecop has joined #ruby
<ljarvis> Darkwater: by wrapping it in a mutex
<apeiros> Darkwater: wrap a mutex around the fetch+inc+store
<catphish> oh, += is purely a syntax alias for x = x + 1, thats why you can't redefine it and why its default implementation is not atomic, i get it now
<apeiros> catphish: correct
User458764 has joined #ruby
<ljarvis> :)
<jhass> there's also stuff like CPU level atomic operations, but I haven't seen interfaces in Ruby for that yet
<Darkwater> ah, I think I understand it now
<Darkwater> thanks
<jhass> talking about stuff like Java's AtomicInteger, forget the general name
<Darkwater> it sounds pretty meta
<Darkwater> the mutex thing
<wasamasa> jhass: wasn't that wat got intel bad headlines for not supporting it properly?
bentanweihao has joined #ruby
<jhass> no idea
<ljarvis> ruby has an atomic gem, so you can do `x = Atomic.new(0); x.update { |v| v += 1 }
<ljarvis> if you dont want your own class
<jhass> that's using a mutex though?
<wasamasa> "Unluckily, the hardware bug that prompted Intel to disable hardware transactional memory (TSX) in August 2014 is still there, and very few new models are available without the bug. So for the moment STMX will be software-only on many CPUs."
<ljarvis> prolly
<apeiros> jhass: I remember looking into hardware concurrency primitives ~10y ago and being surprised how f'ing little there was. I was left with the impression that software defined concurrency was more or less russian roulette with very good survival chances…
<exadeci> jhass: you made me notice that I should have added those in params and not path ... thanks
<catphish> i saw the atomic gem, though that still just uses a retry model of doing things
<wasamasa> jhass: so, perhaps hardware stx is what you're looking for
<jhass> yeah I guess
<wasamasa> err, TSX
* wasamasa shakes fist at acronyms
<catphish> could make a native gem that uses a CPU increment, but i'm not going to
<catphish> thanks for the *pointers anyway
<wasamasa> this readme also suggests performance increases of 5x with hardware support over the software solution
terlar has joined #ruby
<wasamasa> catphish: perhaps you can make use of compiler-specific instructions
<wasamasa> catphish: which is minimally better than depending on very new CPUs
<catphish> wasamasa: it's really not important enough to make a native gem
michael_mbp has quit [Excess Flood]
<catphish> the problem is that the only sane solution would rely on a knowledge of object_ids being sequential
<wasamasa> as for doing it in software, eh
gagrio has joined #ruby
<catphish> and as has been pointed out, thats a bad idea
<wasamasa> it only seems to work well if mutability is eliminated
abuzze has joined #ruby
nonparfumee has joined #ruby
<wasamasa> at least that's what clojure suggests
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
alex88 has joined #ruby
michael_mbp has joined #ruby
goodcodeguy has joined #ruby
vdamewood has quit [Quit: Life beckons.]
iamninja has quit [Ping timeout: 265 seconds]
jimms has quit [Remote host closed the connection]
pwnz0r has joined #ruby
bentanweihao has quit [Ping timeout: 255 seconds]
DexterLB has quit [Ping timeout: 240 seconds]
fgo has joined #ruby
withnale_ has joined #ruby
DexterLB has joined #ruby
naftilos76 has quit [Remote host closed the connection]
pwnz0r has quit [Ping timeout: 256 seconds]
<jhass> wasamasa: looks like the java stuff is using CAS only http://en.wikipedia.org/wiki/Compare-and-swap
sandelius has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
but3k4 has joined #ruby
<wasamasa> jhass: guess that's what I was thinking of regarding compiler-specific support
<wasamasa> jhass: nice that it's a C11 thing
<jhass> yeah
<wasamasa> will just take another decade for it to be a widely supported standard :P
Macaveli has joined #ruby
aryaching_ has joined #ruby
aryaching has quit [Ping timeout: 252 seconds]
stoffus has quit [Quit: Lost terminal]
stoffus has joined #ruby
<alem0lars> a
sandelius has joined #ruby
Pumukel has joined #ruby
arup_r has quit [Remote host closed the connection]
<jhass> b
Jonah11_ has joined #ruby
<Darkwater> c
g0bl1n has joined #ruby
__chris has quit [Ping timeout: 256 seconds]
dseitz has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mello has joined #ruby
__chris has joined #ruby
sonOfRa has quit [Quit: Bye!]
centrx has joined #ruby
allcentury has joined #ruby
sonOfRa has joined #ruby
<apeiros> d
<olistik> is there an equivalent of Object#tap that returns the value returned by the block?
<olistik> sorry
<olistik> e
<ljarvis> olistik: no
<ljarvis> f
<apeiros> olistik: how dare you interrupt the alphabet!
nickjj has joined #ruby
<olistik> I'm a terrible person
<olistik> g
<apeiros> h
<apeiros> and I would have replied, but ljarvis already did that
<apeiros> i
<jhass> j
<olistik> has anybody ever felt the need for such method?
<olistik> k
mello has quit [Ping timeout: 245 seconds]
<ljarvis> olistik: yes someone brought it up a few days ago
<ljarvis> l
<apeiros> I think there have been times, yes
<apeiros> m
<Darkwater> apeiros: no double participations what are you doin
<Darkwater> gyou broke eeet
mcpierce` is now known as mcpierce
<apeiros> sez who?
<apeiros> n
<centrx> z
<centrx> Do I win?
<apeiros> centrx, the ocd nightmare
<apeiros> DeBot: !hangman ruby
<DeBot> ␣␣␣␣␣␣␣␣␣ [] 0/12
<apeiros> DeBot: #esn
<DeBot> ␣␣␣␣␣␣␣␣␣ [#esn] 4/12
<apeiros> eeep
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<apeiros> DeBot: ait
<DeBot> ␣i␣␣␣␣␣␣␣ [#esnat] 6/12
<apeiros> harsh start
<heftig> DeBot: oih
<DeBot> ␣i␣␣␣␣␣o␣ [#esnath] 7/12
<Darkwater> what's the whitespace symbol you're using?
<Darkwater> it's not in my font
<apeiros> whitespace symbol?
<apeiros> me?
<toretore> it's ␣
<Darkwater> yeah that
<Darkwater> what's that
doublemalt_ has quit [Quit: Leaving]
<apeiros> ah, debot
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<apeiros> DeBot: r
<DeBot> ␣ir␣␣␣␣o␣ [#esnath] 7/12
<Darkwater> ah
<apeiros> DeBot: D
<DeBot> Dir␣␣␣␣o␣ [#esnath] 7/12
<apeiros> DeBot: :
<DeBot> Dir::␣␣o␣ [#esnath] 7/12
<apeiros> DeBot: glb
<DeBot> Dir::glob [#esnath] 7/12 You won!
<ljarvis> hah
nettoweb has joined #ruby
<heftig> Darkwater: ah, wikipedia's page is less than helpful this time; it's U+2423 open box
sgambino has joined #ruby
<Darkwater> it actually worked for me :v
<Darkwater> but thanks
<Darkwater> wondering, is it ␲?
anytimebutnow has quit [Remote host closed the connection]
nettoweb has quit [Client Quit]
<heftig> Darkwater: nope, that's 2432
<jhass> Darkwater: you're sure your stuff sends/receives UTF-8?
CustosLimen has quit [Ping timeout: 264 seconds]
<Darkwater> oh fuck
<Darkwater> ␣
<apeiros> löl
<Darkwater> nah just messed it up myself
<apeiros> oh, wait, that's officially:
<apeiros> lele
<Darkwater> ctrl+shift+2423 in urxvt yay
<olistik> something like this
<olistik> should be harmless
<apeiros> olistik: ye
<ljarvis> o
<olistik> p(urrfect)
__chris has quit [Quit: This computer has gone to sleep]
<ljarvis> def
ta has joined #ruby
r4pha has quit [Quit: bye]
ta_ has quit [Ping timeout: 240 seconds]
sandelius has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Tamae has joined #ruby
lxsameer has quit [Quit: Leaving]
workmad3 has quit [Ping timeout: 256 seconds]
platzhirsch has joined #ruby
banister has joined #ruby
gagrio has quit [Ping timeout: 265 seconds]
[k- has joined #ruby
arup_r has joined #ruby
Rapier- has joined #ruby
livathinos has quit [Ping timeout: 264 seconds]
<platzhirsch> yeah installing Ruby on my Raspberry, takes aaages
Jonah11_ has quit [Remote host closed the connection]
livathinos has joined #ruby
sdwrage has joined #ruby
nonparfumee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mwlang has joined #ruby
CustosLimen has joined #ruby
aryaching_ has quit []
riotjones has quit [Quit: Leaving...]
ahmetkapikiran has quit [Quit: ahmetkapikiran]
bmurt has joined #ruby
olistik_ has joined #ruby
olistik has quit [Read error: Connection reset by peer]
segfalt has joined #ruby
victorkohl has joined #ruby
qwertme has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
TheMoonMaster is now known as blake
hanmac1 has joined #ruby
armyriad has quit [Ping timeout: 252 seconds]
victorkohl has quit [Client Quit]
<ljarvis> wow I have the weirdest issue. I have a Dir glob with a sort and an assignment, ie: foo = Dir[...].sort; the specs fail due to some kind of sorting issue; however, when i add a line below with the variable in void context it works fine :|
OrbitalKitten has joined #ruby
armyriad has joined #ruby
<ljarvis> something else must be amiss. HELLO MONDAY
yalue has joined #ruby
davedev24_ has joined #ruby
<mwlang> ljarvis: huh? “void context”? gist some code?
<apeiros> ljarvis: the one time I had that kind of issue (just add a line and it works) I had a syntax error which didn't raise
CamonZ has quit [Remote host closed the connection]
<apeiros> i.e. I had an ongoing open statement, due to a trailing "," on the line before
<ljarvis> hmm
<apeiros> took 2 devs 15min and tons of "what what what whaaat?!?"
<ljarvis> :D
<ljarvis> mwlang: foo <
<ljarvis> there's ya void context
<ljarvis> adding `all` to line 3 (in void context) makes specs pass; ensue confusion
<ljarvis> probably something silly like apeiros mentioned
<mwlang> ljarvis: there’s a square-bracket closing the “glob” call.
<ljarvis> oh come on i just typed it out
<dorei> ljarvis: Dir.glob("#{name}/*.xml"]
<ljarvis> pedants
<dorei> ljarvis: u open with ( and u close with ]
bruno- has quit [Ping timeout: 252 seconds]
<ljarvis> lol
<Darkwater> is that not how they work
<dorei> :p
<Darkwater> i thought so
allcentury has quit [Ping timeout: 245 seconds]
<ljarvis> thank you for pointing out the completed unrelated syntax error
xxneolithicxx has joined #ruby
<mwlang> ljarvis: when you’re talking about unexpected weirdness, every detail counts.
blake is now known as TheMoonMaster
rocknrollmarc has joined #ruby
vikaton has joined #ruby
atmosx has quit [Ping timeout: 245 seconds]
<apeiros> ljarvis: found your misterybug?
<ljarvis> oh my god
failshell has joined #ruby
<ljarvis> i am embarass
<maloik> :D
<maloik> when you say A...
fmcgeough has joined #ruby
sandelius has joined #ruby
dblessing has joined #ruby
User458764 has joined #ruby
claptor has quit [Quit: this channel is bakas]
nfk|laptop has joined #ruby
banister has joined #ruby
banister has quit [Max SendQ exceeded]
alex88 has quit [Remote host closed the connection]
jerius has joined #ruby
gagrio has joined #ruby
scripore has joined #ruby
__chris has joined #ruby
ESpiney has joined #ruby
bollullera has joined #ruby
mary5030 has joined #ruby
mary5030 has quit [Remote host closed the connection]
mary5030 has joined #ruby
allcentury has joined #ruby
bollullera has left #ruby [#ruby]
nettoweb has joined #ruby
polysics has quit []
commondream has joined #ruby
shredding has joined #ruby
Eddieh_ has quit [Quit: Textual IRC Client: www.textualapp.com]
<apeiros> ljarvis: let us participate on your embarrassement
RegulationD has joined #ruby
MrBeardy has joined #ruby
Hamburgl has joined #ruby
freerobby has joined #ruby
commondream has quit [Ping timeout: 252 seconds]
ringarin has quit [Quit: Leaving]
havenwood has joined #ruby
<ljarvis> well
<ljarvis> I was running the spec with a specific line number right
moredhel has joined #ruby
<ljarvis> you know what happens when you add a new line?
<ljarvis> :(
<apeiros> aaaahahaaha
<apeiros> sorry
<apeiros> happens to the best ;-)
<adaedra> congrats ljarvis :)
<apeiros> that would have been hard to find from a pure code analysis :D
<ljarvis> annoying thing is, spec still fails and i think it's related to osx fs case-sensitivity (passes on our ci and other dev boxes)
<ljarvis> haha yeah it would have
nonparfumee has joined #ruby
RegulationD has quit [Ping timeout: 256 seconds]
<adaedra> ljarvis: you can try to create a case-sensitive dmg to test
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<ljarvis> that sounds like a lot of effort
yh_ has quit [Ping timeout: 265 seconds]
<adaedra> meh
mikecmpbll has joined #ruby
<adaedra> I knew how to do it in CLI
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
sevenseacat has joined #ruby
pandaant has joined #ruby
OrbitalKitten has joined #ruby
jimms has joined #ruby
gagrio has quit [Remote host closed the connection]
yh has joined #ruby
<zotherstupidguy> DeBot: !hangman
<DeBot> ␣␣␣ [] 0/12
podman has joined #ruby
<adaedra> :o
<adaedra> DeBot: ae
<DeBot> ␣␣␣ [ae] 2/12
<zotherstupidguy> DeBot: d
<DeBot> ␣␣␣ [aed] 3/12
casadei has joined #ruby
<adaedra> DeBot: oui
<DeBot> ␣o␣ [aedui] 5/12
simurg has joined #ruby
<adaedra> .o.
<apeiros> I bet the missing chars are \/
<zotherstupidguy> DeBot: \
<DeBot> ␣o␣ [aedui\] 6/12
<adaedra> How much, apeiros ?
<adaedra> too late
<apeiros> lele
<adaedra> DeBot: ts
<DeBot> ␣o␣ [aedui\ts] 8/12
<Darkwater> DeBot: asdf
<DeBot> ␣o␣ [aedui\tsf] 9/12
<mwlang> try : and )
<Darkwater> DeBot: :)
<adaedra> mwlang: do it
kobain has joined #ruby
<mwlang> :o)
<Darkwater> DeBot: :o)
manzo has joined #ruby
<mwlang> DeBot: r
<DeBot> ␣o␣ [aedui\tsfr] 10/12
<Darkwater> DeBot: :&)
<adaedra> DeBot: z
<DeBot> ␣o␣ [aedui\tsfrz] 11/12
<mwlang> DeBot: s
<DeBot> ␣o␣ [aedui\tsfrz] 11/12
<zotherstupidguy> Debot: !scoreboard
<Darkwater> DeBot: q
<DeBot> pop [aedui\tsfrzq] 12/12 You lost!
<adaedra> ahah
<zotherstupidguy> lol
<adaedra> DeBot: !hangman
<DeBot> ␣␣␣␣␣␣␣ [] 0/12
<zotherstupidguy> nice one!
<Darkwater> asdf
<Darkwater> DeBot: asdf
<DeBot> ␣a␣␣␣a␣ [sdf] 3/12
<adaedra> DeBot: eiou
<DeBot> ␣a␣u␣a␣ [sdfeio] 6/12
<Darkwater> DeBot: hangman
<DeBot> na␣u␣a␣ [sdfeiohgm] 9/12
arup_r has quit [Remote host closed the connection]
<Darkwater> DeBot: natural
<DeBot> natural [sdfeiohgm] 9/12 You won!
<adaedra> DeBot: numanuma
<Darkwater> I am credit to team
<Darkwater> I like this kind of hangman
<Darkwater> DeBot: !hangman
<DeBot> ␣␣␣␣␣␣␣␣␣␣␣␣ [] 0/12
<Darkwater> asdf
<Darkwater> DeBot: asdf
<DeBot> ␣␣␣␣␣d␣␣␣␣␣␣ [asf] 3/12
arup_r has joined #ruby
<canton7> DeBot, eta
<DeBot> ␣␣t␣␣d␣␣t␣␣␣ [asfe] 4/12
<Darkwater> DeBot: omn
<DeBot> ␣nt␣od␣␣t␣on [asfem] 5/12
<canton7> DeBot, rhs
<DeBot> ␣ntrod␣␣t␣on [asfemh] 6/12
<adaedra> DeBot: u
<DeBot> ␣ntrodu␣t␣on [asfemh] 6/12
<jhass> btw the default wordlist is "nouns mothers should teach their children early" :P
<Darkwater> DeBot: i
<DeBot> introdu␣tion [asfemh] 6/12
<Darkwater> DeBot: introduction
<DeBot> introduction [asfemh] 6/12 You won!
<adaedra> DeBot: c
<zotherstupidguy> where is the sourcecode of debot?
<adaedra> ask jhass
<Darkwater> DeBot: !hangman
<DeBot> ␣␣␣␣␣␣␣␣␣␣ [] 0/12
<Darkwater> asdf
arup_r has quit [Remote host closed the connection]
<Darkwater> DeBot: asdf
<DeBot> ␣␣␣␣␣␣s␣␣␣ [adf] 3/12
<Darkwater> DeBot: omni
<DeBot> ␣ni␣␣␣si␣␣ [adfom] 5/12
<Darkwater> DeBot: g
<DeBot> ␣ni␣␣␣si␣␣ [adfomg] 6/12
<sonOfRa> DeBot: e
<DeBot> ␣ni␣e␣si␣␣ [adfomg] 6/12
<jhass> zotherstupidguy: github.com/jhass/DeBot
pengin has joined #ruby
atmosx has joined #ruby
<sonOfRa> DeBot: u
<DeBot> uni␣e␣si␣␣ [adfomg] 6/12
<Darkwater> DeBot: j
<DeBot> uni␣e␣si␣␣ [adfomgj] 7/12
<Darkwater> DeBot: k
<DeBot> uni␣e␣si␣␣ [adfomgjk] 8/12
<sonOfRa> DeBot: university
<DeBot> university [adfomgjk] 8/12 You won!
<adaedra> ---8<--- snip snip
<canton7> DeBot, university
<canton7> damnit
<sonOfRa> :)
<adaedra> When I run rack, there is some middleware automatically setup, is there a way to not use them?
workmad3 has joined #ruby
* apeiros is tempted to say "yes"
iwishiwerearobot has quit [Ping timeout: 245 seconds]
iwishiwerearobot has joined #ruby
<adaedra> :)
<apeiros> I don't, because I don't know the answer to the follow-up question "how?" :<
gagrio has joined #ruby
<adaedra> Eheh
arturhoo has joined #ruby
shredding has quit [Ping timeout: 264 seconds]
<jhass> apeiros: it's "look at the docs"
senayar has quit [Remote host closed the connection]
quimrsto_ has joined #ruby
dru` has joined #ruby
lordkryss has joined #ruby
ScriptGeek has joined #ruby
mwlang has quit [Quit: mwlang]
<apeiros> jhass: I'm against blanket "RTFM" answers. RTFM is ok if accompanied by a source
<adaedra> :(
ta has quit [Remote host closed the connection]
<jhass> sure, j/k ;)
RegulationD has joined #ruby
<apeiros> and a somewhat narrow source too - "somewhere in those 500 pages you'll find the answer to your question" is not helpful
<apeiros> assumed so :)
<apeiros> I'm more or less also formulating this to check against topic->rules
<zotherstupidguy> jhass diaspora seems like a good idea, is it working out as expected?
User458764 has joined #ruby
quimrstorres has quit [Ping timeout: 256 seconds]
<adaedra> ok, found what I was looking for
<jhass> zotherstupidguy: I don't have expectations
<jhass> (for it)
bootstrappm has joined #ruby
<jhass> we'll keep it running and see what happens
<zotherstupidguy> do you use it daily instead of fb?
clauswitt has quit [Ping timeout: 256 seconds]
<jhass> yeah, I hardly touch Twitter or FB
Ropeney has joined #ruby
<jhass> my FB account is for SSO crap only
treehug8_ has joined #ruby
nonparfumee has quit [Read error: Connection reset by peer]
pengin has quit [Remote host closed the connection]
thiagovsk has joined #ruby
pengin has joined #ruby
<zotherstupidguy> "JoinDiaspora.com Registrations are closed
<zotherstupidguy> ??
<jhass> yup
<jhass> it's decentralized and all that
juanpaucar has quit []
lavros has joined #ruby
<jhass> how did you even find jd.com?
jmignault has joined #ruby
<jhass> is it still that high on the google results? :/
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
senayar has joined #ruby
alex88 has joined #ruby
nonparfumee has joined #ruby
pengin has quit [Ping timeout: 250 seconds]
paulcsmith has joined #ruby
axl_ has joined #ruby
jimms has quit [Remote host closed the connection]
<zotherstupidguy> yeah i found it easily
<zotherstupidguy> i found a couple of sites in langauges other than english, now checking out https://diasp.ca/
yh has quit [Ping timeout: 264 seconds]
bruno- has joined #ruby
sorbo_ has joined #ruby
kp666 has quit [Remote host closed the connection]
ahmetkapikiran has joined #ruby
charliesome has quit [Quit: zzz]
<zotherstupidguy> it got cats too, just like facebook =)
<bootstrappm> morning all
sdothum has joined #ruby
Kricir has joined #ruby
charliesome has joined #ruby
<zotherstupidguy> Howdy
<kaspergrubbe> Wup
<zotherstupidguy> jhass the UI sucks!
<jhass> yah, you should join the design team
kies has joined #ruby
AlphaAtom has quit [Ping timeout: 256 seconds]
<jhass> but should finish https://github.com/diaspora/diaspora/pull/6015 first
sdothum has quit [Client Quit]
<jhass> (stops link spamming now)
<zotherstupidguy> jhass its a rails app, right?
<jhass> right
<jhass> mostly backone/scss/bootstrap on the frontend side
<jhass> hbs/haml
<zotherstupidguy> so each dpod got its own UI?
jacor has quit [Read error: Connection reset by peer]
<jhass> no
<jhass> few customize it a bit
g0bl1n has quit [Quit: g0bl1n]
jacor has joined #ruby
Spami has joined #ruby
<zotherstupidguy> wouldn't it be nicer if they were two seperate projects, one for UI and one for API?
jimms has joined #ruby
nfk|laptop has quit [Quit: yawn]
<zotherstupidguy> UI projects attracts the UI guys
blandflakes has joined #ruby
mrmargolis has joined #ruby
<jhass> long way to go
sdothum has joined #ruby
someword has joined #ruby
yqt has quit [Ping timeout: 250 seconds]
denver has joined #ruby
<zotherstupidguy> jhass is this harder than just one big rails project?
<jhass> it's not been setup that way and moving towards is a lot of work
<jhass> we're basically doing it by porting everything to backbone/handlebars
<jhass> you can do a lot of contributions without touching anything outside app/assets ever
chrissonar has quit [Remote host closed the connection]
yqt has joined #ruby
delianides has joined #ruby
juanpaucar has joined #ruby
<zotherstupidguy> i like backend more, but UI guys maybe a bit scared of most server-side technologies, so if it is just UI project, the UI might have a lot of good contributions, just saying! overall i think its a great movement!!!
msgodf has quit [Remote host closed the connection]
msgodf has joined #ruby
mello has joined #ruby
balazs_ has joined #ruby
bkxd_ has quit [Quit: Reconnecting]
bkxd has joined #ruby
rocknrollmarc has quit [Remote host closed the connection]
amystephen has joined #ruby
<bootstrappm> that loomio site looks cool
<bootstrappm> you're contributing to diaspora jhass?
<jhass> yeah
OrbitalKitten has quit [Ping timeout: 265 seconds]
workmad3 has quit [Ping timeout: 272 seconds]
sandelius has quit [Quit: Textual IRC Client: www.textualapp.com]
bentanweihao has joined #ruby
<zotherstupidguy> jhass in theory this can actually beat fb :) i think
workmad3 has joined #ruby
<bkxd> is that the one where the founder committed suicide?
OrbitalKitten has joined #ruby
<jhass> yep
Macaveli has quit [Ping timeout: 272 seconds]
mello has quit [Ping timeout: 252 seconds]
<bkxd> ouch. yeah, seems like a cool project though
coderkevin has joined #ruby
<jhass> ilya had similar issues like aaron
<jhass> all I'm going to say
catcher has joined #ruby
<bkxd> i don't know what/who ilya is
commondream has joined #ruby
<jhass> the one that committed suicide
<catcher> Is it possible / okay to use string interpolation in variable names?
<bkxd> ah, i see
<jhass> catcher: no, sounds like you want a hash
<catcher> jhass, my goal is to reference 1 of 2 instance variables based on the method arg
<jhass> yeah, sounds like you want a hash or perhaps a simple ternary
n008f4g_ has quit [Ping timeout: 240 seconds]
<catcher> jhass, got it, thanks. I have a ternary now, looking for the most 'ruby way'.
balazs_ has quit [Ping timeout: 265 seconds]
joelataylor has quit [Ping timeout: 264 seconds]
<jhass> depends
senayar has quit [Remote host closed the connection]
aganov has quit [Remote host closed the connection]
<catcher> Here's the idea, which is obviously not ideal: class Foo @new_thing @old_thing; def bar(type) puts "this instance's #{type} val is @#{type}_thing"
<jhass> show your real code and we'll tell whether it's good of theirs a nicer way
<jhass> discussing this on fake code is useless
<jhass> *or if
freerobby has quit [Quit: Leaving.]
freerobby has joined #ruby
Macaveli has joined #ruby
kies has quit [Ping timeout: 258 seconds]
hanmac1 has quit [Quit: Leaving.]
someword has quit [Quit: Leaving.]
bkxd_ has joined #ruby
bkxd_ has quit [Client Quit]
Jonah11_ has joined #ruby
bkxd has quit [Ping timeout: 265 seconds]
enebo has joined #ruby
<dudedudeman> have we all paid our respects to #ruby-lang this morning?
<dudedudeman> or did i already miss that boat
<centrx> dude man
<ccooke> What happened to #ruby-lang?
<dudedudeman> it redirects to here now, as of this morning
<dudedudeman> sup centrx
<havenwood> ccooke: Check the topic. :)
<centrx> What!?
<bootstrappm> what was the community split like before? or was it just random?
<dudedudeman> we've assimilated
tjohnson has joined #ruby
<centrx> bootstrappm, #ruby-lang was the one listed on the Ruby website
bkxd has joined #ruby
<centrx> bootstrappm, So uniquely it had a) some guru crusty experts who refused to join #ruby and b) lots of newbies coming from the website
<dudedudeman> which i guess makes sense, given the website is ruby-lang.org
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
balazs_ has joined #ruby
<havenwood> dudedudeman: Just because ruby.com is selling jewelry. ;)
bluish has joined #ruby
hector__ has quit [Ping timeout: 255 seconds]
darkf has quit [Quit: Leaving]
vivekananda has joined #ruby
umgrosscol has joined #ruby
Hounddog has quit [Read error: Connection reset by peer]
<jhass> the issue was that we weren't able to properly moderate this channel, that has been fixed so #ruby-lang became redundant
CustosLimen has quit [Ping timeout: 258 seconds]
stoffus has quit [Quit: leaving]
aryaching has joined #ruby
IrishGringo has joined #ruby
<catcher> jhass, something like this: http://codepad.org/Ad6x6u7U
<catcher> jhass, I'd like to dry up the legacy/new reuse
<jhass> catcher: you have to decide it on a per query basis?
<catcher> jhass, another method works with the rows of both DBs simultaneously
<jhass> I'd ponder two instances of JoinVerifier
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
livathinos has quit [Ping timeout: 252 seconds]
someword has joined #ruby
<jhass> legacy_db = JoinVerifier.new(creds, legacy_db_name); new_db = JoinVerifier.new(creds, new_db_name)
ndrei has joined #ruby
iwishiwerearobot has quit [Ping timeout: 252 seconds]
iwishiwerearobot has joined #ruby
<catcher> jhass, maybe a different class, ResultSet, which JoinVerifier instantiates. That's a good thought.
<catcher> jhass, from a language standpoint though, is there a better way to do what I'm doing in that method?
atmosx has quit [Quit: parting / quiting]
<jhass> I'd consider making type a bool, use_legacy_db=false
<jhass> but yeah, for something like that just if/ternary it
<catcher> jhass, cool, thanks for the feedback.
atmosx has joined #ruby
jcaho_m has quit [Ping timeout: 256 seconds]
watchtheblur has joined #ruby
arturhoo has quit [Ping timeout: 258 seconds]
arturhoo_ has joined #ruby
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
andikr has quit [Remote host closed the connection]
ahmetkapikiran has quit [Quit: ahmetkapikiran]
byprdct has joined #ruby
dfockler has joined #ruby
byprdct has quit [Max SendQ exceeded]
<dudedudeman> and ruby.org looks like it sells 'more meaningful email addresses'
<dudedudeman> i could get dudedudeman@ruby.org for $35 a year!
byprdct has joined #ruby
CustosLimen has joined #ruby
<jhass> yeah, that should be only like 6000% profit for them!
Jonah11_ has quit []
<dudedudeman> but it's a bargain... each additional email is only $10 more a year!
<dudedudeman> ...
bluish has quit [Quit: bluish]
<dudedudeman> it's a tucows site as well
<dudedudeman> bah
unshadow has quit [Quit: leaving]
jmignault has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
bkxd has quit [Ping timeout: 244 seconds]
sinkensabe has quit [Remote host closed the connection]
sinkensabe has joined #ruby
sinkensabe has quit [Remote host closed the connection]
tkuchiki has joined #ruby
__chris has quit [Quit: Leaving]
_ixti_ has joined #ruby
OrbitalKitten has joined #ruby
simurg has quit [Remote host closed the connection]
kies has joined #ruby
_seanc_ has joined #ruby
treehug8_ has quit [Ping timeout: 265 seconds]
jordanm has joined #ruby
<dfockler> tucows?
<dfockler> realnames?
meph has quit [Quit: Leaving.]
<dfockler> it's like a nicer, "you can buy this domain"
<jhass> more like "domain time sharing!"
paulcsmith has quit [Quit: Be back later ...]
catphish has left #ruby ["Leaving"]
rodferso1 has joined #ruby
qwertme has joined #ruby
paulcsmith_ has joined #ruby
senayar has joined #ruby
senayar has joined #ruby
<adaedra> That awkward moment when looking for a bug gets you mailing lists from 2006
rodfersou has quit [Ping timeout: 252 seconds]
<dfockler> adaedra: are you having an issue with ruby 1.7?
scripore has quit [Quit: This computer has gone to sleep]
lindii_ has joined #ruby
<dudedudeman> hrh
<adaedra> hope not
<dudedudeman> heh*
rkazak has quit [Ping timeout: 245 seconds]
mrsolo has joined #ruby
alex88 has quit []
lennae has quit [Ping timeout: 265 seconds]
krz has joined #ruby
<shevy> adaedra the baguette bug!
<adaedra> no.
juanpaucar has quit [Remote host closed the connection]
IrishGringo has quit [Ping timeout: 240 seconds]
mrsolo has quit [Client Quit]
varunwachaspati has joined #ruby
kubunto has joined #ruby
* dudedudeman wants a baguette
Cache_Money has joined #ruby
* bootstrappm wants a breakfast croissant
fuzzyhorns has joined #ruby
<sorbo_> are... are there other types of croissants?
Macaveli has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<maloik> I've had a croissant after lunch before I'm sure
<maloik> then again I'm a bit of a rebel
<dudedudeman> i eat croissants at midnight, i'm not afraid
chinmay__ has joined #ruby
<dfockler> cronuts are the hot new fad
<dudedudeman> with about a half a stick of butter on because yummy
<dudedudeman> i'd eat that
scripore has joined #ruby
_seanc_ has quit [Quit: _seanc_]
chinmay__ is now known as chinmay_dd
<sorbo_> cronuts are good but over-hyped and not worth the wait
<bootstrappm> never had one, sounds yum
sevenseacat has quit [Quit: Me dun like you no more.]
nateberkopec has joined #ruby
_blizzy_ has joined #ruby
Cache_Money has quit [Quit: Cache_Money]
sargas has joined #ruby
sargas has quit [Max SendQ exceeded]
sargas has joined #ruby
paulcsmith_ has quit [Quit: Lingo: www.lingoirc.com]
Agoldfish has joined #ruby
mase-chatter has joined #ruby
jpfuentes2 has joined #ruby
mase-chatter has quit [Max SendQ exceeded]
Cache_Money has joined #ruby
mase-chatter has joined #ruby
paulcsmith has joined #ruby
nettoweb has joined #ruby
Master44 has joined #ruby
vire has quit [Ping timeout: 240 seconds]
dopie has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
fabrice31_ has quit [Remote host closed the connection]
Master44 has quit [Client Quit]
sdothum has joined #ruby
ag4ve has joined #ruby
HayesHimself has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sdothum has quit [Remote host closed the connection]
commondream has quit [Remote host closed the connection]
Mon_Ouie has joined #ruby
iwishiwerearobot has quit [Quit: >:(]
sdothum has joined #ruby
jimms has quit [Remote host closed the connection]
PaulCapestany has joined #ruby
sdothum has quit [Client Quit]
lkba has joined #ruby
Superflat has quit [Ping timeout: 272 seconds]
snockerton has joined #ruby
jimms has joined #ruby
fuzzyhorns has quit []
dumdedum has quit [Quit: foo]
bentanweihao has quit []
sinkensabe has joined #ruby
sdothum has joined #ruby
nonparfumee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
m8 has joined #ruby
<shevy> sorbo_ I assume there are always variations; I first ate Dunkin' Donuts in london
iamninja has joined #ruby
<shevy> I always thought they to be typical UK food henceforthwith
<shevy> and everywher else, they tasted like garbage :(
<shevy> I could only eat it with hot chocolate though, so perhaps it was a conglomerate meal
kinduff has joined #ruby
bjornar has quit [Ping timeout: 272 seconds]
slackbotgz has joined #ruby
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
olistik_ has quit [Read error: Connection reset by peer]
olistik has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
Lucky__ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rdark has quit [Quit: leaving]
mello has joined #ruby
rdark has joined #ruby
gauke has quit [Quit: gauke]
axwel has quit [Remote host closed the connection]
slash_ni1k has quit [Changing host]
slash_ni1k has joined #ruby
slash_ni1k is now known as slash_nick
banister has joined #ruby
senayar has quit [Remote host closed the connection]
<sorbo_> shevy: haha yeah, fair
nonparfumee has joined #ruby
GriffinHeart has joined #ruby
<sorbo_> Tim Hortons in Canada is somehow way better than TH in the US
<sorbo_> despite their refusal to accept my middling non-Canadian French
platzhirsch has quit [Ping timeout: 256 seconds]
<shevy> what is Tim Hortons? I don't think I have heard that name before
jaequery has joined #ruby
<shevy> and let's be honest here
<shevy> people who speak french are discriminated
<shevy> like adaedra :)
<dudedudeman> it's the canadian version of a dunkin donuts
<shevy> cool
<adaedra> mmmh?
<sorbo_> shevy: coffee & donut place
<shevy> haha sure thing that the dudedudeman knows stuff when it centers around the topic "food"
<dudedudeman> shutup
<dudedudeman> lol
jpfuentes2 has joined #ruby
<dudedudeman> :P
gauke has joined #ruby
<dudedudeman> you're not wrong, though. my dad's a chef, and i love me some food.
mello has quit [Ping timeout: 265 seconds]
<adaedra> I'm discriminated?
<adaedra> Since when?
<dudedudeman> i live in a very dangerous place to be a foodie
<shevy> dudedudeman well, if I ever actually manage to go to canada I'll be sure to visit a Tim Hortons (weird name though... Donkin donut is such a catchy phrase...)
_ixti_ has quit [Ping timeout: 272 seconds]
parduse is now known as Guest58233
Guest58233 has quit [Ping timeout: 256 seconds]
<dudedudeman> it's true. and i believe there are dunkin's in canada, as well
<shevy> adaedra because of your french accent when you speak english
<sorbo_> don't say that, you'll wake the vengeful ghost of Tim Horton
<ljarvis> oh damn i miss timmies
dseitz has joined #ruby
<dudedudeman> i actually went to dunkin this morning
<shevy> you are a true dudedudemanman
<ljarvis> dat french vanilla doe
wookiehangover has quit [Ping timeout: 256 seconds]
<dudedudeman> if you're a coffee conisseruer(i butchered that spelling, i know) you won't like their coffee
pardusf has joined #ruby
<adaedra> shevy: ok, whatever
jcaho has joined #ruby
platzhirsch has joined #ruby
last_staff has quit [Quit: last_staff]
dvxam has joined #ruby
<sorbo_> dudedudeman I'm picky about coffee but I like Dunkin's
gauke has quit [Client Quit]
<sorbo_> I loathe starbucks though
<sorbo_> it tastes like burnt hobo urine
pengin has joined #ruby
<shevy> lol
<dudedudeman> haaaaa. there's a starbucks near me that has a clover machine and real niche, specialty coffees. i do like those
iamninja has quit [Read error: Connection reset by peer]
treehug8_ has joined #ruby
senayar has joined #ruby
senayar has joined #ruby
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jacor has quit [Ping timeout: 265 seconds]
Ropeney has quit [Quit: Leaving]
<dvxam> Hi everyone! I'm having a little problem right using mkmf for a home-made c++ extension. How is it possible to use two different directory : one for headers and one for implementions? If yes, how to tell mkmf#create_makefile method?
sinkensabe has quit [Remote host closed the connection]
<sorbo_> dudedudeman I've heard good things about the clover machine but never experienced one
mrmargolis has quit [Remote host closed the connection]
mrmargol_ has joined #ruby
<ljarvis> dvxam: you want dir_config
granthatcher has quit []
<ljarvis> ow too slow
<sorbo_> ^ what ljarvis said
baroquebobcat has joined #ruby
commondream has joined #ruby
wookiehangover has joined #ruby
<ljarvis> also, ugh @ separating them into different folders
<ljarvis> please reconsider that
chinmay_dd has quit [Remote host closed the connection]
<dvxam> @thx so much @ljarvis
<dvxam> thx @sorbo_ too ;)
<dudedudeman> sorbo_: if you can find one, definitely check it out. it retains so much of the flavor of the original roast. starbucks actually now owns the clover company, so you can find them in some of their locations, or in coffee shops that owned them before starbucks bought them
ismaelga has quit []
delianides has quit [Remote host closed the connection]
iamninja has joined #ruby
scripore has quit [Quit: This computer has gone to sleep]
<kinduff> Morning everyone
<dudedudeman> sup, yo!
<havenwood> kinduff: g'mornin
<bootstrappm> kinduff: morning!
Rickmasta has joined #ruby
<sorbo_> dudedudeman good to know!
<kinduff> havenwood bootstrappm :)
<bootstrappm> anybody have a place where to upload / share their dotfiles?
pengin has quit [Remote host closed the connection]
<bootstrappm> just looked at dotfiles.org and it has no way to signup
nonparfumee has quit [Max SendQ exceeded]
pengin has joined #ruby
jimms has quit [Remote host closed the connection]
<bootstrappm> I'm writing some salt files (from SaltStack) and I always include Vim. I want to my include my config too but not sure where to upload it to subsequently download it from
<bootstrappm> some palce I won't accidentally change like my s3 buckets
chinmay_dd has joined #ruby
mrsolo has joined #ruby
<wasamasa> including vim on your production servers??
<bootstrappm> yep, always do
<wasamasa> that sounds like you don't deploy properly :P
<bootstrappm> sounds like you've never had to debug on production ;)
<wasamasa> at least according to hackernews
* wasamasa coughs
<bootstrappm> ahh
<dudedudeman> could anyone help me out turning a seqel statement in to an activerecord query?
<wasamasa> yeah, I was surprised to read about how people invest a ridiculous amount of time in making sure you don't ever change something in a non-reproducible way
pengin has quit [Ping timeout: 240 seconds]
paulcsmith has quit [Quit: Be back later ...]
Lucky__ has joined #ruby
sandstrom has joined #ruby
<bootstrappm> reading dudedudeman
<dudedudeman> <3
iamninja has quit [Quit: WeeChat 1.1.1]
mrsolo has quit [Client Quit]
mrsolo has joined #ruby
<jhass> bootstrappm: just do github.com/bootstrappm/dotfiles ?
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
jcaho_m has joined #ruby
anisha has quit [Quit: Leaving]
pietr0 has joined #ruby
psy has joined #ruby
iamninja has joined #ruby
<bootstrappm> yeah thats what i'm prob gonna go with jhass
jcaho_m has quit [Client Quit]
freerobby has quit [Quit: Leaving.]
edwinvdgraaf has quit [Ping timeout: 272 seconds]
CustosLimen has quit [Ping timeout: 264 seconds]
momomomomo has joined #ruby
sanguisdex has quit [Quit: Leaving.]
Hijiri has quit [Quit: WeeChat 1.0.1]
varunwachaspati has quit [Ping timeout: 265 seconds]
_seanc_ has joined #ruby
<bootstrappm> hey dudedudeman try: DreamColorMonitor.from('calibrations c').joins('JOIN dream_color_monitors.id = c.dream_color_monitor_id').where("date > date('now'") - 90").group('tag')
tkuchiki has quit [Ping timeout: 258 seconds]
<bootstrappm> assuming you have a DreamColorMonitor model. I changed your where to a join, if you're using postgres it translates to the same thing under the hood
tkuchiki has joined #ruby
<dudedudeman> i do have that model! ok.
<dudedudeman> let me throw it around in irb
psy has quit [Disconnected by services]
mistermocha has joined #ruby
varunwachaspati has joined #ruby
psy_ has joined #ruby
User458764 has joined #ruby
peteykun has quit [Quit: Leaving]
sanguisdex has joined #ruby
<kinduff> >> loop { fork }
<ruboto> kinduff # => (https://eval.in/373858)
msgodf has quit [Ping timeout: 252 seconds]
<dudedudeman> ugh, i hate to have to even ask this, but what does the " mean on a new line in irb?
<kinduff> so the line of code loops and forks nothing and hangs the system?
<atmosx> dudedudeman: you didn't close atag?
<adaedra> kinduff: I'm not sure apeiros will be happy that you try to fork bomb the eval bot
freerobby has joined #ruby
<adaedra> good think fork is forbidden in it
CustosLimen has joined #ruby
tkuchiki has quit [Ping timeout: 240 seconds]
<adaedra> thing*
<kinduff> they're covered with the basic treats, I just wanted to ask why does that work
<Mon_Ouie> Well it's no worse than any kind of bot-based spam
<canton7> dudedudeman, you didn't close some quotes
swgillespie has joined #ruby
swgillespie has quit [Client Quit]
<Mon_Ouie> It doesn't work because ptrace is used to block certain syscalls
<kinduff> dudedudeman, close the quotes, luke
<adaedra> kinduff: you'll create, at each loop, a new process which will do the same thing – a basic fork bomb
<dudedudeman> doh. sorry
<adaedra> depending on the system, it leads to resource exhaustion and hang, yes
imperator has joined #ruby
<imperator> (x-posting from #ruby-lang, don't kick me apeiros)
<Mon_Ouie> lol
<adaedra> :)
yfeldblum has joined #ruby
<adaedra> apeiros, the #ruby frightening founder
yardenbar has quit [Quit: Leaving]
<imperator> need some oauth2/ruby help trying to authenticate against azure
yh has joined #ruby
swgillespie has joined #ruby
sorbo_ has quit []
<imperator> first question is where/if i set the response_mode - docs indicate it needs to be set to "query"
unshadow has joined #ruby
<dudedudeman> bootstrappm: in the the from('calibrations c') bit, what does the c do for me?
sargas has quit [Quit: Leaving]
terlar has quit [Ping timeout: 258 seconds]
swgillespie has quit [Max SendQ exceeded]
atmosx has quit [Quit: WeeChat 0.4.4-dev]
swgillespie has joined #ruby
freerobby has quit [Quit: Leaving.]
<bootstrappm> dudedudeman it's an alias, its just so I didn't have to type out the table name again in the join
<dudedudeman> ah! I see that now. that's kind of cool
CamonZ has joined #ruby
bricker has joined #ruby
towski_ has joined #ruby
manzo has quit [Ping timeout: 256 seconds]
<bootstrappm> dudedudeman sorry went to the bathroom for your quotes question, did you find the extra double quotes i accidentally put in there?
<dudedudeman> i think so..
<dudedudeman> i don't know if they belong on the outside of the 90, or just after the now)
<bootstrappm> its in the where date aggregate function
<bootstrappm> just take 'em out
<bootstrappm> the ones after the 90 are the right ones
<bootstrappm> like that: DreamColorMonitor.from('calibrations c').joins('JOIN dream_color_monitors.id = c.dream_color_monitor_id').where("date > date('now') - 90").group('tag')
freerobby has joined #ruby
Mia has joined #ruby
Mia has joined #ruby
<dudedudeman> ok. that throws a PG::syntax error on the join. where it says dc...id = c.....id
wookiehangover has quit [Ping timeout: 256 seconds]
<bootstrappm> cool, gist the error and send it over
poguez_ has joined #ruby
wookiehangover has joined #ruby
Axy has quit [Ping timeout: 255 seconds]
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yfeldblum has quit [Remote host closed the connection]
<bootstrappm> ups, dudedudeman try: DreamColorMonitor.joins('JOIN calibrations c ON dream_color_monitors.id = c.dream_color_monitor_id').where("date > date('now') - 90").group('tag')
<bootstrappm> just moved the FROM into the JOIN clause
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<dudedudeman> ERROR: column "dream_color_monitors.id" must appear in the GROUP BY clause or be used in an aggregate function
Mon_Ouie has quit [Ping timeout: 256 seconds]
baweaver has joined #ruby
mmazing has quit [Ping timeout: 276 seconds]
<bootstrappm> add .select('date') near the beginning dudedudeman, did the SQL query work as you wrote it?
<dudedudeman> yes
<bootstrappm> OH, I missed your SELECT clause completely
baweaver has quit [Remote host closed the connection]
baweaver has joined #ruby
wookiehangover has quit [Ping timeout: 265 seconds]
<dudedudeman> oh shoot. so did i. lol
<bootstrappm> DreamColorMonitor.select('dream_color_monitors.id, calibrations.dream_color_monitor_id, tag, min(date)').joins('JOIN calibrations c ON dream_color_monitors.id = c.dream_color_monitor_id').where("date > date('now') - 90").group('tag')
swgillespie has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<dudedudeman> ActiveRecord::StatementInvalid: PG::UndefinedTable: ERROR: invalid reference to FROM-clause entry for table "calibrations"
mikecmpbll has quit [Ping timeout: 245 seconds]
jpfuentes2 has joined #ruby
freerobby has quit [Quit: Leaving.]
withnale_ has quit [Ping timeout: 272 seconds]
sigurding has quit [Quit: sigurding]
<bootstrappm> gist the error, I wanna see the SQL AR generates
mrmargolis has joined #ruby
Ziioynx has joined #ruby
troyready has joined #ruby
Cache_Money has quit [Quit: Cache_Money]
Luyt_ has joined #ruby
wookiehangover has joined #ruby
senayar has quit []
mrmargol_ has quit [Read error: Connection reset by peer]
gluten_hell_ has quit [Quit: Computer has gone to sleep.]
Luyt has quit [Read error: Connection reset by peer]
yh has quit [Ping timeout: 256 seconds]
<bootstrappm> PG speaks the truth, I forgot to use the alias everywhere: DreamColorMonitor.select('dream_color_monitors.id, c.dream_color_monitor_id, tag, min(date)').joins('JOIN calibrations c ON dream_color_monitors.id = c.dream_color_monitor_id').where("date > date('now') - 90").group('tag')
<bootstrappm> last go!
nahtnam has quit [Quit: Connection closed for inactivity]
* dudedudeman believes in bootstrappm
<dudedudeman> bootstrappm:
nonparfumee has joined #ruby
Cache_Money has joined #ruby
<dudedudeman> would it need to be .group(dream_color_monitors.id.tag)?
<bootstrappm> hm, now that looks like an error with the actual logic of the query
<bootstrappm> you sure that query was running fine?
lindii_ has quit [Ping timeout: 256 seconds]
<bootstrappm> because the SQL it spit out matches the SQL in your gist now, at least (phew!)
slackbotgz has quit [Remote host closed the connection]
mrsolo has quit [Quit: Leaving]
<bootstrappm> well, dudedudeman, what its saying is that if your doing a GROUP BY, then all the information that identifies individual rows (like IDs) doesn't make sense in the select
<bootstrappm> because you're grouping a ton of rows together
<bootstrappm> so those aggregate results won't have any one specific .id
<dudedudeman> ok, that makes sense
pengin has joined #ruby
alex88 has joined #ruby
paulcsmith has joined #ruby
lkba has quit [Ping timeout: 264 seconds]
<dudedudeman> bah, i'm pretty sure this sql logic is working
<dudedudeman> :(
<dudedudeman> i sat down with a db whiz at work and we worked through it together
bruno- has quit [Ping timeout: 252 seconds]
mary5030 has quit [Ping timeout: 255 seconds]
<bootstrappm> yeah? have no DB to test it on?
<dudedudeman> i'm pushing it through sqlite now
coderhs has joined #ruby
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
baweaver has quit [Remote host closed the connection]
jpfuentes2 has joined #ruby
<dudedudeman> apparently i suck at sqlite3 cli stuff
<dudedudeman> or at least, i have no clue what i'm doing
ThoMe has quit [Ping timeout: 272 seconds]
<bootstrappm> hahah what are you trying to do
<dudedudeman> take that original list of sql statements that i gisted to you and push them through sqlite3 cli to see if they work
Spami has quit [Quit: This computer has gone to sleep]
<bootstrappm> also, FWIW I'm pretty sure if you remove the GROUP BY clause there that query will work in PostgreSQL
baweaver has joined #ruby
snockerton has quit [Quit: Leaving.]
<bootstrappm> and yeah, I don't remember much of sqlite, but I'm pretty sure you can put them in a text file and "cat text_file.sql > sqlite3"
<dudedudeman> wat
kinduff has quit [Quit: leaving]
scripore has joined #ruby
<bootstrappm> wait dudedudeman ... are you on windows? if so that won't work, for obvious reasons hahah
<dudedudeman> oh no, linux boy here
timonv has quit [Ping timeout: 244 seconds]
konsolebox has quit [Quit: Leaving]
<jhass> cat file | command or just command < file
<jhass> cat file > command is actually cp file command
<bootstrappm> ^ that, my mistake
<dudedudeman> that definitely returns something, but i'm not sure that's what i want. lol
<bootstrappm> also, just checked the sqlite3 --help and it takes a filename as an arg "sqlite3 text_file.sql <name_of_database>
<bootstrappm> "
rubie has joined #ruby
casadei has quit [Remote host closed the connection]
sdwrage has quit [Quit: Leaving]
iliketurtles has joined #ruby
snockerton has joined #ruby
<dudedudeman> meh, that's complicated. lol
<dudedudeman> well, it's not. but now i'm trying to learn that. and am missing the sql goodness here
<mistergibson> I have had great results from using sequel gem - makes db handling easy
delianides has joined #ruby
scripore has quit [Quit: This computer has gone to sleep]
<dudedudeman> ok, yeah. i'm in my db and it tells me there's no such column dream_color_monitors.id
<dudedudeman> so there's a giant fail for me
snockerton has quit [Client Quit]
scripore has joined #ruby
lindii_ has joined #ruby
<bootstrappm> gluck :)
dvxam has quit [Ping timeout: 264 seconds]
<dudedudeman> but it's weird...
<dudedudeman> because i'm reading/writing to that database no problems
sorbo_ has joined #ruby
jgt has quit [Ping timeout: 255 seconds]
bb010g has quit [Quit: Connection closed for inactivity]
delianides has quit [Ping timeout: 246 seconds]
paulcsmith has quit [Quit: Be back later ...]
jpfuentes2 has quit [Ping timeout: 265 seconds]
<dudedudeman> well, it could be because the dream_color_monitor_id is a column that is in my calibrations table
paulcsmith has joined #ruby
jackjackdripper has joined #ruby
<bootstrappm> careful, dream_color_monitors.id is not the same as dream_color_monitor_id
<dudedudeman> oh you're right
<dudedudeman> ok, there's an id column in my dream_color_monitors table
<dudedudeman> am i just hooking in to it wrong?
<bootstrappm> probs yes, is the error you're getting in sqlite or postgres?
<dudedudeman> i get the error in both
Spami has joined #ruby
phale has joined #ruby
<dudedudeman> but sqlite3 really should be the focus, as that's truly what i'm using in production
yh has joined #ruby
<dudedudeman> (which, i should have specified earlier and for that i am sorry)(
phale has left #ruby ["Leaving"]
<bootstrappm> I would recommend not using sqlite in production. It's file based, you'll run into contention REALLY FAST if you have more than a few users accessing the same resources
<dudedudeman> well, there's a total of 3 users using this app
baweaver has quit [Remote host closed the connection]
<dudedudeman> lol
<bootstrappm> ok cool, lets troubleshoot this sqlite thing
<bootstrappm> gist the error
Gate has joined #ruby
<dudedudeman> and it'll never be more than 1 of us using it
<dudedudeman> here's a gist of my table info: https://gist.github.com/anonymous/20adb3def8819c79d27d
djbkd has joined #ruby
delianides has joined #ruby
jackjackdripper1 has joined #ruby
djbkd has quit [Remote host closed the connection]
aryaching has quit [Ping timeout: 240 seconds]
djbkd has joined #ruby
<dudedudeman> and here's where i was just trying to run the command of my first sql query: https://gist.github.com/anonymous/0883b309bc6f3e30d959
qwertme has joined #ruby
jackjackdripper has quit [Ping timeout: 246 seconds]
freerobby has joined #ruby
orionstein has quit [Quit: ZNC - http://znc.in]
baweaver has joined #ruby
jpfuentes2 has joined #ruby
orionstein has joined #ruby
<bootstrappm> okay, are you connected to that db? what does `.tables` give you dudedudeman?
alex88 has quit []
n008f4g_ has joined #ruby
mary5030 has joined #ruby
mary5030 has quit [Remote host closed the connection]
mello has joined #ruby
<dudedudeman> ugh, not that, sorry
<dudedudeman> bootstrappm: calibrations dream_color_monitors schema_migrations
mary5030 has joined #ruby
ghr has quit [Ping timeout: 272 seconds]
<bootstrappm> oh I got it dudedudeman, you didn't run the whole query. Just the select part
<dudedudeman> yes yes
<bootstrappm> you need the FROM and all that
_seanc_ has quit [Quit: _seanc_]
ewnd9 has joined #ruby
aryaching has joined #ruby
<dudedudeman> let me run that
rubie has quit [Remote host closed the connection]
<dudedudeman> hot damn it works
<jenksy> \
soulcake has quit [Quit: Quack.]
<dudedudeman> the sql statements at least
<bootstrappm> w/ the group by and everything?
mello has quit [Ping timeout: 244 seconds]
yfeldblum has joined #ruby
soulcake has joined #ruby
phale has joined #ruby
<bootstrappm> not gonna lie to you, I really don't know what that result set means ... logically speaking hahaha
<phale> quantum physics and astrophysics can be applie to a set of ruby programs right
Pumukel has quit [Quit: ChatZilla 0.9.91.1 [Firefox 38.0.1/20150513174244]]
charliesome has quit [Quit: zzz]
<bootstrappm> I would be very suspicious of that data
Zai00 has quit [Quit: Zai00]
failshell has quit [Remote host closed the connection]
<bootstrappm> phale: troll or 4realz?
<dudedudeman> oh, the result set is monitors in the database that have calibrations from over 90 days ago
<phale> bootstrappm: real
chinmay_dd has quit [Remote host closed the connection]
<jhass> bootstrappm: troll
<phale> jhass: i'll k-line him
<phale> dont worry
shevy has quit [Ping timeout: 252 seconds]
<jhass> say what?
Senjai has quit [Ping timeout: 245 seconds]
mrmargol_ has joined #ruby
jimms has joined #ruby
charliesome has joined #ruby
momomomomo has quit [Quit: momomomomo]
yfeldblum has quit [Read error: Connection reset by peer]
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
phale has left #ruby ["Leaving"]
yfeldblum has joined #ruby
mrmargolis has quit [Ping timeout: 258 seconds]
OrbitalKitten has joined #ruby
rocknrollmarc has joined #ruby
<imperator> gem install quantum_leap
User458764 has joined #ruby
mikecmpbll has joined #ruby
casadei has joined #ruby
paulcsmith has quit [Quit: Be back later ...]
<dudedudeman> bootstrappm: i'm goign to have to poke around some more with this. you're a trooper for spending the last couple hours with me
<dudedudeman> this kind of stuff can definitely wear a man out
<jhass> dudedudeman: you've been nowhere here :P
<dudedudeman> meaning?
<dudedudeman> i've gotten nowhere? then yes, that's definitely true. lol
<jhass> in the SQL hell
<dudedudeman> not want
<dudedudeman> lol
yaw has joined #ruby
shevy has joined #ruby
Musashi007 has joined #ruby
yaw has left #ruby [#ruby]
<dudedudeman> jhass: i'd be lying if i said i hadn't toyed with it all weekend, either, after you got me started on working through this
shadoi has joined #ruby
Senjai has joined #ruby
mase-chatter has quit [Quit: Leaving]
finisherr has joined #ruby
baweaver has quit [Remote host closed the connection]
paulcsmith has joined #ruby
<finisherr> Hello Folks. I’m having some issues with the Proxy object ruby koan. I’m not sure how to intercept the method calls. Do I override the send method and wrap it so I can add each method call to a message_log array or something?
Soda has joined #ruby
<finisherr> This is the assignment
catcherdev has joined #ruby
<finisherr> actually, i think that’s someone’s answer
<finisherr> yep
yqt has quit [Ping timeout: 246 seconds]
yfeldblum has quit [Ping timeout: 265 seconds]
GriffinHeart has quit [Remote host closed the connection]
platzhirsch has quit [Quit: Leaving.]
<finisherr> Ahh, method_missing call intercepts
sarkyniin has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
baweaver has joined #ruby
catcherdev has quit [Client Quit]
<jhass> well, it's the code from which the koans you download are generated ;)
charliesome has quit [Quit: zzz]
<finisherr> I’m all good now
baweaver has quit [Remote host closed the connection]
mike_bueti has joined #ruby
j0n3 has joined #ruby
<finisherr> I have to get more familiar with the core and stdlib
jpfuentes2 has quit [Ping timeout: 256 seconds]
workmad3 has quit [Quit: Reconnecting]
<dfockler> The Core, staring Aaron Eckhart and Hilary Swank
workmad3 has joined #ruby
workmad3 has quit [Client Quit]
denver has quit [Remote host closed the connection]
jpfuentes2 has joined #ruby
<dfockler> also starring Matz
workmad3 has joined #ruby
mrsolo has joined #ruby
pengin has quit [Read error: Connection reset by peer]
bb010g has joined #ruby
pengin has joined #ruby
iliketurtles has quit [Quit: zzzzz…..]
delianides has quit [Remote host closed the connection]
ghr has joined #ruby
[k- has quit [Quit: Lingo: www.lingoirc.com]
iceden has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
delianides has joined #ruby
jlast has joined #ruby
ghr has quit [Ping timeout: 264 seconds]
Gate has quit [Quit: Lost terminal]
Guest24 is now known as lele
scripore has quit [Quit: This computer has gone to sleep]
Vendella has joined #ruby
<Vendella> Hey, why can't I load test/unit?
<Vendella> require 'test/unit' fails
<centrx> Use Minitest
<Vendella> ?
<centrx> Test::Unit has been deprecated for a long time and it looks like it was removed in 2.2
<Vendella> Really?
<centrx> "Test::Unit is an implementation of the xUnit testing framework for Ruby. \ If you are writing new test code, please use MiniTest instead of Test::Unit. \ Test::Unit has been left in the standard library to support legacy test suites."
iliketurtles has joined #ruby
<Vendella> I'm not gonna use it, I'm reading Eloquent Ruby.
<centrx> ok
<centrx> I mean you can install the gem, test-unit
<centrx> or just skip over those parts in the book
<apeiros> imperator: awesome! so I've got a reputation! :D
<apeiros> imperator: anyway, #ruby-lang closes today. this issue will be reduced significantly. probably mostly #rubyonrails cross-posts from now on.
someword1 has joined #ruby
baweaver has joined #ruby
djbkd has quit [Remote host closed the connection]
mello has joined #ruby
<Vendella> I see. How about RSpec?
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yfeldblum has joined #ruby
wallerdev has joined #ruby
iliketur_ has joined #ruby
<Vendella> Also, are specs here to replace the artificial checking we do in statically typed languages? Such as, raise unless x.is_a?(Fixnum) etc
someword has quit [Ping timeout: 264 seconds]
givello has quit [Quit: leaving]
nonparfumee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Palmer11 has joined #ruby
dp has joined #ruby
jerius has quit [Quit: /quit]
nofxx has joined #ruby
baweaver has quit [Remote host closed the connection]
drbrain has joined #ruby
jerius has joined #ruby
iliketurtles has quit [Ping timeout: 258 seconds]
djbkd has joined #ruby
djbkd has quit [Read error: Connection reset by peer]
pabs has joined #ruby
aaeron has joined #ruby
pengin has quit [Remote host closed the connection]
djbkd has joined #ruby
pabs has left #ruby [#ruby]
pabs has joined #ruby
pengin has joined #ruby
finisherr has quit [Quit: finisherr]
<dp> hi all
<dp> i need a little help while installing shoppe framework on ubuntu 15.04
<dp> i am new to ruby
rikkipitt has joined #ruby
<ruboto> dp, we in #ruby do not like pastebin.com, I reposted your paste to gist for you: https://gist.github.com/c9409cdb458c361fbfd6
<ruboto> pastebin.com loads slowly for most, has ads which are distracting and has terrible formatting.
gwendall has joined #ruby
coderhs has quit [Quit: Leaving]
Synthbread has joined #ruby
gix has joined #ruby
treehug8_ has quit [Quit: Textual IRC Client: www.textualapp.com]
DarkBushido has joined #ruby
EvilJStoker has joined #ruby
treehug8_ has joined #ruby
surrounder has joined #ruby
pengin has quit [Ping timeout: 264 seconds]
yfeldblum has quit [Read error: Connection reset by peer]
aotg has joined #ruby
blowmage has joined #ruby
olistik has quit [Read error: Connection reset by peer]
hahuang65 has joined #ruby
olistik has joined #ruby
_seanc_ has joined #ruby
yfeldblum has joined #ruby
finisherr has joined #ruby
<canton7> jhass, yeah - it would help if you explain *why* everyone's getting kicked!
hahuang65 has quit [Client Quit]
hahuang65 has joined #ruby
<ddfreyne> too late now!
iooner has joined #ruby
imajes has joined #ruby
nonparfumee has joined #ruby
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
gwendall has quit [Ping timeout: 255 seconds]
knu has joined #ruby
kalzz has joined #ruby
hahuang65 has quit [Client Quit]
b_hoffman has joined #ruby
hahuang65 has joined #ruby
lguardiola has joined #ruby
djbkd has quit [Remote host closed the connection]
olistik has quit [Read error: Connection reset by peer]
olistik_ has joined #ruby
nertzy has joined #ruby
Drakevr has quit [Changing host]
Drakevr has joined #ruby
nfsnobody has joined #ruby
jenrzzz has joined #ruby
sorbo_ has quit []
perry has joined #ruby
hal_9000_ has joined #ruby
reprazent has joined #ruby
<hal_9000_> “mass kick”? what was that about?
VinnyBoy has joined #ruby
segy has joined #ruby
rob_ has joined #ruby
<ddfreyne> hal_9000_: #ruby-lang got merged into #ruby.
soraher has joined #ruby
b_hoffman has left #ruby [#ruby]
<hal_9000_> oh, really?
jenrzzz has quit [Client Quit]
<centrx> True
<hal_9000_> in that case, shouldn’t we update the message here?
jenrzzz has joined #ruby
<centrx> Update what message?
tdy has joined #ruby
qwertme has joined #ruby
<hal_9000_> the signon message?
workmad3 has quit [Ping timeout: 250 seconds]
<centrx> Topic says "Welcome new users migrating from #ruby-lang!"
djbkd has joined #ruby
womble has joined #ruby
<drbrain> yep
centrx has left #ruby ["End transmission"]
centrx has joined #ruby
<hal_9000_> oh ok - all i saw was: Welcome to the ruby channel. Please be nice. http://ruby-community.com || https://ruby-lang.org || Paste >3 lines: https://gist.github.com || Ask good questions: http://www.mikeash.com/getting_answers.html
yorickpeterse has joined #ruby
quimrsto_ has quit [Remote host closed the connection]
Rickmasta has joined #ruby
<centrx> yes there's a ChanServ message and there's a Topic
unsymbol has joined #ruby
OrbitalKitten has joined #ruby
<hal_9000_> now if i could just get colloquy to dismiss this dialog box
caseypat_ has joined #ruby
dblessing has quit [Ping timeout: 255 seconds]
freerobby has quit [Quit: Leaving.]
<centrx> Hi, is this the channel for talking about jewelry
<dfockler> yeah!
<jhass> canton7: yeah sorry, fucked that up
<caseypat_> Great. I saw a movie with some shoes. Where can I get some?
<jhass> it's scripted now...
<jhass> but it's not like the topic didn't announce it for almost a week
freerobby has joined #ruby
<jhass> yes
<jhass> hal_9000_: you mean like "Welcome new users migrating from #ruby-lang" in the topic? ;)
leat4 has joined #ruby
dblessing has joined #ruby
<ericwood> what the hell happened to ruby-lang
<jhass> it got merged to this channel :)
<ericwood> oh wow
<ericwood> yay
voxxit has joined #ruby
<havenwood> Welcome #ruby-lang folk! :)
yqt has joined #ruby
<ericwood> this is the beginning of the end
<wasamasa> oh, is it
<MrBeardy> melodrama much
Mon_Ouie has joined #ruby
<dfockler> welcome -langers!
baroquebobcat has quit [Quit: baroquebobcat]
* jhass prepares the 1000 users party
<ericwood> y'all screwed up my channel numbering in irssi I hope you're happy
<jhass> any time again!
baroquebobcat has joined #ruby
leat4 has quit [Ping timeout: 250 seconds]
leat4 has joined #ruby
nonparfumee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rikkipitt has quit [Remote host closed the connection]
allcentury has quit [Ping timeout: 250 seconds]
txrx has joined #ruby
decoponio has quit [Quit: Leaving...]
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<wmoxam> wat
<wmoxam> why?
pengin has joined #ruby
failshell has joined #ruby
<jhass> why merging channels or why making #ruby the only one?
<wmoxam> yes :P
thang has joined #ruby
<drbrain> user base, op coverage
sinkensabe has joined #ruby
<drbrain> confusion about which channel to join
<jhass> well, the issues that led to the creation of #ruby-lang are gone, so we're no longer in need to fragment the community
aryaching has quit [Read error: Connection reset by peer]
<jhass> and this channel always was the far bigger one, so change for less people
<centrx> This is an outrage, first they take away the channel about trains (#rails), now they take away the channel about gemstones!
djbkd has quit [Remote host closed the connection]
chouhoulis has joined #ruby
lavros has quit [Quit: leaving]
<jhass> centrx: uh, careful, you're getting inconsistent there ;)
<jhass> earlier you claimed this is the gemstone channel ;)
aryaching has joined #ruby
<centrx> Okay good, then stay on topic please
ghr has joined #ruby
d10n-work has joined #ruby
mello has quit [Changing host]
mello has joined #ruby
mrmargolis has joined #ruby
HotCoder has joined #ruby
mrmargol_ has quit [Read error: Connection reset by peer]
<centrx> The Burma rubies, when they exhibit their crystal-form are generally combinations of the rhombohedron, basal planes and prism.
micmus has joined #ruby
ramfjord has joined #ruby
<centrx> The Kashmir sapphires, as well as the common corundums of Madras, often show the steep pyramidal planes in combination with the basal planes.
<centrx> Thoughts?
<dfockler> cleavage, eskers, striations
edwinvdgraaf has joined #ruby
<dfockler> columnar basalt
sanguisdex has quit [Quit: Leaving.]
imperator2 has joined #ruby
leat4 has quit [Remote host closed the connection]
<heftig> jhass: shouldn't you set up a forwarding?
jpfuentes2 has joined #ruby
bougyman has joined #ruby
<jhass> heftig: we did? :)
leat4 has joined #ruby
djbkd has joined #ruby
ghr has quit [Ping timeout: 255 seconds]
<heftig> jhass: no, #ruby-lang is just rejecting joins as invite-only, not forwarding to #ruby
ponga has quit [Quit: Leaving...]
<jhass> heftig: must be your client, +if #ruby is set
edwinvdgraaf has quit [Remote host closed the connection]
<heftig> hm
edwinvdgraaf has joined #ruby
adamski2600 has quit []
<wmoxam> O_o
woodennails has joined #ruby
slawrence00 has joined #ruby
jlast has quit [Remote host closed the connection]
baweaver has joined #ruby
choke has joined #ruby
batasrki has joined #ruby
jhass-web has joined #ruby
DLSteve has joined #ruby
jaequery has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<centrx> heftig, That's the message on Freenode when you are already in the target channel for the redirect (#ruby)
jhass-web has quit [Client Quit]
rhizome has joined #ruby
tubbo has joined #ruby
<tubbo> finally
<drbrain> (jhass I remember when #ruby didn't exist)
<tubbo> one #ruby to rule them all
<tubbo> now we can all argue in the same room together
<ljarvis> no!
pabs has quit [Ping timeout: 255 seconds]
dp has quit [Quit: Konversation terminated!]
edwinvdg_ has joined #ruby
allcentury has joined #ruby
kinduff has joined #ruby
kinduff has joined #ruby
leat4 has quit [Remote host closed the connection]
zendrix has joined #ruby
<jhass> 5 more ...
leat4 has joined #ruby
scripore has joined #ruby
sygnorman is now known as johnny_dz
kriskropd has quit [Ping timeout: 244 seconds]
Zai00 has joined #ruby
edwinvdgraaf has quit [Ping timeout: 256 seconds]
mordocai has joined #ruby
jpfuentes2 has quit [Ping timeout: 250 seconds]
jcaho has quit [Read error: Connection reset by peer]
pabs has joined #ruby
jcaho has joined #ruby
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Iskarlar has joined #ruby
lordkryss has quit [Quit: Connection closed for inactivity]
AlphaAtom has joined #ruby
baweaver has quit [Remote host closed the connection]
AlphaAtom has quit [Max SendQ exceeded]
AlphaAtom has joined #ruby
* dudedudeman is ready to dude hard for the party
sinkensabe has quit [Remote host closed the connection]
OrbitalKitten has joined #ruby
AlphaAtom has quit [Max SendQ exceeded]
_seanc_ has quit [Ping timeout: 264 seconds]
AlphaAtom has joined #ruby
dagda1 has joined #ruby
AlphaAtom has quit [Max SendQ exceeded]
<dfockler> are there any good tdd ruby books?
<dfockler> or is tdd still dead?
AlphaAtom has joined #ruby
kubunto has quit [Ping timeout: 276 seconds]
bosma has joined #ruby
sinkensabe has joined #ruby
jpfuentes2 has joined #ruby
platzhirsch has joined #ruby
platzhirsch has left #ruby [#ruby]
jenksy has quit [Ping timeout: 246 seconds]
finisherr has quit [Quit: finisherr]
<batasrki> dfockler: dead
_seanc_ has joined #ruby
<Sou|cutter> dfockler: http://www.poodr.com/
<dfockler> awww bummer
<dfockler> poo dr
nwhirschfeld has joined #ruby
<batasrki> why tdd when you can switch to a statically typed language and gush about performance
baweaver has joined #ruby
<batasrki> yes, it's sarcasm
<havenwood> 999 users
<batasrki> but a test ain't one?
jenksy has joined #ruby
krz has quit [Ping timeout: 240 seconds]
<dfockler> I'll just switch to rust, and starting writing tests there
<imperator> havenwood, take one down, pass him around...
* dudedudeman bristles with excitment
<imperator> TDD is dead? news to me
<batasrki> dfockler: good idea, :p
* imperator continues writing tests
* dudedudeman tests imperator's test
<imperator> it's tests all the way down
<imperator> written on the back of a turtle
bmurt has quit [Read error: Connection reset by peer]
User458764 has joined #ruby
<batasrki> ha, turtle
<apeiros> 999 members
bmurt has joined #ruby
<dudedudeman> 1000!!!!!!!!!!!!
<apeiros> tadaa
<dfockler> \o/
<imperator> latest language i heard about was Nim
<dudedudeman> \m/
jlast has joined #ruby
<dudedudeman> and there was much rejoicing
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<dfockler> \o/
momomomomo has joined #ruby
finisherr has joined #ruby
<imperator> what's the limit? doesn't it spillover to another channel at some level?
<dfockler> spills over to ruby-lang
Rickmasta has joined #ruby
<dudedudeman> heh
<jhass> uh, doubt it
<MrBeardy> think archlinux has 2000+
<bootstrappm> o/ o/ o/!
<jhass> I've seen 1700+
<bootstrappm> arch is that popular? I had no idea
<jhass> so we still have some slop at least :D
<imperator> i thought some channels would do ##ruby ###ruby and so on
<jhass> oh right, arch is at 2.1k
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<Vendella> Where can I learn more about specs?
baweaver has quit [Remote host closed the connection]
<Vendella> The Eloquent Ruby explains an outdated method.
blandflakes has quit [Ping timeout: 256 seconds]
kriskropd has joined #ruby
rubie has joined #ruby
Iskarlar has joined #ruby
<imperator> Vendella, depends on which camp you're in - minitest or rspec
fgo has quit [Ping timeout: 256 seconds]
<Vendella> I'm not in any. Which one is preferred?
<havenwood> Vendella: Minitest ships with Ruby and is simpler.
angry_cat has joined #ruby
blandflakes has joined #ruby
<Vendella> I see. Well, let's go with Minitest then.
kinduff has quit [Ping timeout: 264 seconds]
Hijiri has joined #ruby
sinkensabe has quit [Remote host closed the connection]
kadoppe has quit [Ping timeout: 245 seconds]
<Vendella> Also, can I finish Eloquent Ruby before diving into Minitest ?
kinduff has joined #ruby
<jhass> most likely
mistym has joined #ruby
<MrBeardy> Vendella: (on eloquent ruby) You might also want to give "Programming Ruby 1.9 & 2.0: The Pragmatic Programmers' Guide" a read, it's more recently up to date
<Vendella> Aight, so I'm skipping the whole, "Write Specs" chapter.
sinkensabe has joined #ruby
kadoppe has joined #ruby
whippythellama has joined #ruby
<dudedudeman> love the pickaxe book!
<Vendella> MrBeardy, I have that book right next to me :)
sinkensabe has quit [Remote host closed the connection]
<MrBeardy> Oh, great then :D
snockerton has joined #ruby
mistym has left #ruby ["Leaving..."]
mistym has joined #ruby
Brozo has joined #ruby
<bootstrappm> what's new between 2.0 and 2.2 that the pickaxe book doesn't cover?
<bootstrappm> stabby arrow?
zendrix has quit [Remote host closed the connection]
<bootstrappm> ah nvm, 1.9
<Vendella> Should I raw read the pickaxe book?
<Vendella> bootstrappm, It's 1.9 and 2.0
<bootstrappm> read it read it read it
yh has quit [Ping timeout: 250 seconds]
<miah> its good, i liked The Well Grounded Rubyist more though
<Vendella> Ah, I don't have that one..
Papierkorb_ has joined #ruby
ewnd9 has quit [Ping timeout: 264 seconds]
<dudedudeman> i like the well grounded pragmatic programmer book
choke has quit [Quit: Textual IRC Client: www.textualapp.com]
<dudedudeman> it's dudedudeman approved and certified
<miah> and poodr http://www.poodr.com/ ; really made the oo/ruby stuff click
clauswitt has joined #ruby
<miah> pickaxe has some great details in it; but i found it more difficult to learn from as a ruby newbie
<MrBeardy> wonder how many people go on that domain looking for help with their IBS
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<dudedudeman> MrBeardy: i feel like that's a joke that shevy would appreciate
angry_cat has quit [Ping timeout: 265 seconds]
<imperator> i guess i don't know http very well, sorta confused by oauth here
<Vendella> imperator, I have a very good book on HTTP
<imperator> basically, got a url from oauth2, paste it into browser, and it gives me a code
<Vendella> David Gourley, Brian Totty, Marjorie Sayer, Sailu Reddy, Anshu Aggarwal HTTP- The Definitive Guide 2002
Papierkorb has quit [Ping timeout: 272 seconds]
<imperator> catch is the code is now part of the url, not in the body
derekv has joined #ruby
clauswitt has quit [Max SendQ exceeded]
<imperator> how do i dig that out of a response?
<imperator> i'm using Faraday, btw
<derekv> feeling dumb here, with rvm I followed the instructions here https://rvm.io/integration/jenkins but my build fails, it seems to be looking for the ruby specified in the .rvmrc and then failing because it tries to install it with sudo (jenkins doesn't have sudo)
dagda1 has joined #ruby
<Vendella> Try Maxwell out.
clauswitt has joined #ruby
<imperator> well, until i understand what it's doing, i don't think using a different http lib will matter for now
<bootstrappm> never using CI, sorry derekv
last_staff has joined #ruby
<bootstrappm> imperator I used to use oauth2 for something, let me refresh my memory and see if i can help
<imperator> bootstrappm, privmsg ok?
<jhass> ?crosspost derekv
<ruboto> derekv, Please do not crosspost without at least telling so and mentioning provided suggestions and their outcome in all channels. Experience shows that people don't do either, and not doing so is considered rude.
<bootstrappm> cool imperator
bertocode has joined #ruby
<derekv> ruboto: sorry, embarrassed here.
<MrBeardy> Don't worry, he's a robot, he can't see your feelings
<derekv> ok
<dudedudeman> oh, he knows
<jhass> also don't worry, just keep it in mind for the future ;)
txrx has quit [Ping timeout: 265 seconds]
bruno- has joined #ruby
TheHodge has quit [Quit: Connection closed for inactivity]
dzejrou has joined #ruby
mrmargolis has quit [Ping timeout: 256 seconds]
<derekv> jhass: heh, I know better anyways... just saw "post and wait" i the topic on #rvm and thought "oh, should have went right to #ruby"
BanzaiJoe has joined #ruby
<jhass> prefix with "already asked in #rvm" and all is fine ;)
jgpawletko has joined #ruby
blueOxigen has joined #ruby
<derekv> cool.
rikkipitt has joined #ruby
bluOxigen has quit [Ping timeout: 265 seconds]
symm- has joined #ruby
fujimura has joined #ruby
_seanc_ has quit [Quit: _seanc_]
<symm-> neat.
<derekv> yep. getting help on #rvm now btw =]
rikkipitt has quit [Client Quit]
iliketur_ has quit [Quit: zzzzz…..]
sorbo_ has joined #ruby
timonv has joined #ruby
choke has joined #ruby
lennae has joined #ruby
cryptarium has quit [Ping timeout: 256 seconds]
DerisiveLogic has joined #ruby
fujimura has quit [Ping timeout: 265 seconds]
phutchins has quit [Ping timeout: 246 seconds]
Voker57 has joined #ruby
dzejrou has quit [Read error: Connection reset by peer]
varunwachaspati has quit [Quit: Leaving]
nonparfumee has joined #ruby
ghr has joined #ruby
woodennails has quit [Quit: Textual IRC Client: www.textualapp.com]
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
yfeldblum has quit [Ping timeout: 256 seconds]
centrx has quit [Ping timeout: 272 seconds]
krz has joined #ruby
OrbitalKitten has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
delianides has quit [Remote host closed the connection]
dagda1 has joined #ruby
jerius has quit [Quit: /quit]
Kricir has quit [Remote host closed the connection]
ghr has quit [Ping timeout: 252 seconds]
qwertme has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
ta has joined #ruby
Musashi007 has quit [Quit: Musashi007]
sorbo_ has quit []
wallerdev has quit [Quit: wallerdev]
yardenbar has joined #ruby
davedev24_ has quit [Ping timeout: 256 seconds]
Juanchito has quit [Quit: Connection closed for inactivity]
atmosx has joined #ruby
zendrix has joined #ruby
davedev24_ has joined #ruby
ur5us has joined #ruby
jerius has joined #ruby
treehug8_ has quit [Ping timeout: 245 seconds]
sarkyniin has quit [Quit: Quit]
d5sx43 has joined #ruby
moretti has joined #ruby
qwertme has joined #ruby
yardenbar has quit [Client Quit]
timonv has quit [Ping timeout: 272 seconds]
mois3x has joined #ruby
haxrbyte has quit [Read error: Connection reset by peer]
haxrbyte has joined #ruby
iliketurtles has joined #ruby
rocknrollmarc has quit [Ping timeout: 246 seconds]
yh has joined #ruby
headius has joined #ruby
zendrix has quit [Remote host closed the connection]
jgt has joined #ruby
zendrix has joined #ruby
victorkohl has joined #ruby
Spami_ has joined #ruby
Spami has quit [Read error: Connection reset by peer]
alex88 has joined #ruby
choke has quit [Quit: Textual IRC Client: www.textualapp.com]
edwinvdg_ has quit [Remote host closed the connection]
Zai00 has quit [Quit: Zai00]
nettoweb has joined #ruby
mois3x has quit [Ping timeout: 244 seconds]
ttilley has joined #ruby
lennae has quit [Ping timeout: 255 seconds]
Zai00 has joined #ruby
f3lp has joined #ruby
OrbitalKitten has joined #ruby
mois3x has joined #ruby
edwinvdgraaf has joined #ruby
yfeldblum has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
rocknrollmarc has joined #ruby
kinduff has quit [Ping timeout: 245 seconds]
scripore has quit [Quit: This computer has gone to sleep]
zendrix has quit [Ping timeout: 264 seconds]
choke has joined #ruby
jaequery has joined #ruby
jackjackdripper1 has quit [Read error: Connection reset by peer]
Palmer11 has left #ruby [#ruby]
jackjackdripper has joined #ruby
Palmer11 has joined #ruby
rocknrollmarc has quit [Ping timeout: 246 seconds]
jlast has quit [Remote host closed the connection]
Axy has joined #ruby
Axy has joined #ruby
t-richards has joined #ruby
waxjar has quit [Ping timeout: 265 seconds]
jlast has joined #ruby
thiagofm has joined #ruby
hahuang65 has quit [Quit: WeeChat 1.1.1]
Mia has quit [Ping timeout: 255 seconds]
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
krz has quit [Quit: WeeChat 1.0.1]
OrbitalKitten has quit [Ping timeout: 272 seconds]
zendrix has joined #ruby
devdazed has joined #ruby
d5sx43 has quit [Remote host closed the connection]
fgo has joined #ruby
weaksauce has quit [Ping timeout: 264 seconds]
tvw has quit [Remote host closed the connection]
_ht has quit [Quit: Konversation terminated!]
atmosx has quit [Quit: parting / quiting]
Soda has quit [Remote host closed the connection]
scripore has joined #ruby
txrx has joined #ruby
rocknrollmarc has joined #ruby
segfalt_ has joined #ruby
frem has joined #ruby
segfalt has quit [Ping timeout: 256 seconds]
segfalt_ is now known as segfalt
waxjar has joined #ruby
workmad3 has joined #ruby
sinkensabe has joined #ruby
gambl0re has joined #ruby
ta has quit [Ping timeout: 265 seconds]
alex88 has quit [Read error: Connection reset by peer]
delianides has joined #ruby
icarus has joined #ruby
dagda1 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
towski__ has joined #ruby
User458764 has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
toretore has quit [Quit: This computer has gone to sleep]
alex88 has joined #ruby
d5sx43 has joined #ruby
fgo has quit [Ping timeout: 246 seconds]
leat4 has quit [Remote host closed the connection]
choke has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yfeldblum has quit [Read error: Connection reset by peer]
towski__ has quit [Read error: Connection reset by peer]
towski_ has quit [Ping timeout: 256 seconds]
ruby_nuby has joined #ruby
towski_ has joined #ruby
edwinvdgraaf has quit [Remote host closed the connection]
yfeldblum has joined #ruby
drefined has joined #ruby
_seanc_ has joined #ruby
sandstrom has joined #ruby
workmad3 has quit [Ping timeout: 252 seconds]
leat4 has joined #ruby
CustosLimen has quit [Max SendQ exceeded]
edwinvdgraaf has joined #ruby
circ-user-dsELh has joined #ruby
workmad3 has joined #ruby
batasrki has left #ruby [#ruby]
<ruby_nuby> Is anyone using Neo4J.rb and ActiveRel? I'm trying to work out how 'find_or_create_by' a relationship so I can increment its weight rather than create a second, third etc relationship
arBmind has joined #ruby
kristofferR has joined #ruby
finisherr has quit [Quit: finisherr]
andereld has joined #ruby
iliketur_ has joined #ruby
mello has quit [Ping timeout: 272 seconds]
jaequery has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
andereld has left #ruby [#ruby]
andereld has joined #ruby
scripore has quit [Quit: This computer has gone to sleep]
wallerdev has joined #ruby
Channel6 has joined #ruby
kinduff has joined #ruby
iliketurtles has quit [Ping timeout: 265 seconds]
_ixti_ has joined #ruby
nobitanobi has joined #ruby
datanoise has joined #ruby
<bougyman> .26
alex88 has quit []
nfk|laptop has joined #ruby
<nobitanobi> If I want to check the boolean value of a hash (:success) I am doing this @my_hash.present && @my_hash[:success] - I do the .present?, because that hash can be nil. Any cleaner way of doing that?
aryaching has quit []
mrdmi has left #ruby ["Leaving"]
_seanc_ has quit [Quit: _seanc_]
CustosLimen has joined #ruby
rocknrollmarc has quit [Ping timeout: 244 seconds]
<apeiros> nobitanobi: make sure @my_hash can't be nil
centrx has joined #ruby
<apeiros> often there's no good reason for such things
rocknrollmarc has joined #ruby
datanoise has quit [Client Quit]
_seanc_ has joined #ruby
<apeiros> if for some reason you can't - `@my_hash.present && @my_hash[:success]` can be shortened to `@my_hash && @my_hash[:success]`
<ruby_nuby> nobitanobi: you can just do @my_hash[:success] as the result will be either true, or nil and nil is a falsy value
datanoise has joined #ruby
<apeiros> ruby_nuby: their problem is @my_hash being nil. and nil[:success] will raise.
<nobitanobi> yep
<ruby_nuby> apeiros: my bad
<nobitanobi> ok, will see how can I change so that var is always defined.
<ruby_nuby> Neo4J.rb — anyone using?
dagda1 has joined #ruby
edwinvdg_ has joined #ruby
j4cknewt has joined #ruby
scripore has joined #ruby
_seanc_ has quit [Client Quit]
dfinninger has joined #ruby
edwinvdgraaf has quit [Read error: Connection reset by peer]
baweaver has joined #ruby
malconis has joined #ruby
hahuang65 has joined #ruby
edwinvdg_ has quit [Read error: Connection reset by peer]
edwinvdgraaf has joined #ruby
dagda1 has quit [Client Quit]
jlast has quit [Remote host closed the connection]
j4cknewt has quit [Remote host closed the connection]
Limix has joined #ruby
ag4ve has quit [Ping timeout: 248 seconds]
Jackneill has quit [Remote host closed the connection]
simi has quit [Ping timeout: 256 seconds]
jlast has joined #ruby
jaequery has joined #ruby
finisherr has joined #ruby
icarus has quit [Quit: leaving]
_seanc_ has joined #ruby
fmcgeough has quit [Quit: fmcgeough]
casadei has quit []
baweaver has quit [Remote host closed the connection]
sinkensabe has quit [Remote host closed the connection]
kinduff has quit [Ping timeout: 256 seconds]
Zai00 has quit [Quit: Zai00]
circ-user-dsELh has quit [Ping timeout: 264 seconds]
sdwrage has joined #ruby
finisherr has quit [Client Quit]
blackmesa has joined #ruby
finisherr has joined #ruby
Zai00 has joined #ruby
spider-mario has joined #ruby
drefined has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
casadei has joined #ruby
d5sx43 has quit [Quit: Leaving...]
datanoise has quit [Quit: WeeChat 1.2]
Rickmasta has joined #ruby
drefined has joined #ruby
jaequery_ has joined #ruby
jaequery has quit [Ping timeout: 264 seconds]
Zai00 has quit [Quit: Zai00]
Zai00 has joined #ruby
baweaver has joined #ruby
blackmesa has quit [Quit: WeeChat 1.1.1]
nonparfumee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
freerobby has quit [Quit: Leaving.]
Vendella has quit [Ping timeout: 258 seconds]
hellboy_1981 has joined #ruby
freerobby has joined #ruby
hellboy_1981 has quit [Quit: ChatZilla 0.9.91.1 [Firefox 38.0.1/20150513174244]]
nettoweb has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
j4cknewt has joined #ruby
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mike_bueti has quit [Quit: Textual IRC Client: www.textualapp.com]
ruby_nuby has quit [Quit: Page closed]
Ziioynx has quit [Quit: Connection closed for inactivity]
simi has joined #ruby
Brozo has left #ruby ["Leaving..."]
caseypat_ has quit [Ping timeout: 276 seconds]
senayar has joined #ruby
datanoise has joined #ruby
Rapier- has quit [Quit: (null)]
ChasedSpade has joined #ruby
dagda1 has joined #ruby
lele is now known as Guest24
workmad3 has quit [Ping timeout: 252 seconds]
dreinull75 has joined #ruby
phutchins has joined #ruby
sinkensabe has joined #ruby
Iskarlar has joined #ruby
qwertme has quit [Read error: Connection reset by peer]
concave has joined #ruby
choke has joined #ruby
Zai00 has quit [Quit: Zai00]
delianides has quit [Remote host closed the connection]
Vile` has quit [Quit: brb]
choke has quit [Client Quit]
<dreinull75> is this a good idea? class A; def foo; A.new; end; end; I'm returning an instance of A inside A because I need a modified version of A. But is this a good idea? Possibly deeply nested objects et al?
workmad3 has joined #ruby
<centrx> dreinull75, Is foo supposed to be a class method?
<dreinull75> Arrays return modified arrays all the time
<dreinull75> centrx no, instance method
<centrx> Seems like a bad idea
Zai00 has joined #ruby
choke has joined #ruby
<dreinull75> I'm using a Sequel dataset and my method returns a modified dataset. Unless I create a new instance of it it's returned as a Dataset without all the bells and whistles I've added before.
doertedev has quit [Ping timeout: 246 seconds]
Zackio has quit [Remote host closed the connection]
BTRE has quit [Quit: Leaving]
jgt has quit [Ping timeout: 258 seconds]
baweaver has quit [Remote host closed the connection]
datanoise has quit [Quit: WeeChat 1.2]
datanoise has joined #ruby
<ljarvis> dreinull75: it's not a bad idea
_ixti_ is now known as ixti
<ljarvis> I would use self.class.new though
<dreinull75> ok, why's that?
<dreinull75> style?
TheHodge has joined #ruby
drefined has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Zackio has joined #ruby
baweaver has joined #ruby
<ljarvis> I've done lots of stuff like this before: https://gist.github.com/leejarvis/65889996aa3237c2d28d when you can't mutate or dont have a dataset. Can't speak about your exact example but it's fine
<ljarvis> dreinull75: mostly, just makes more sense to refer to the current class as self.class
ghr has joined #ruby
<dreinull75> ljarvis definitely looks better than my examle
A205B064 has joined #ruby
<ljarvis> dreinull75: might be worth showing your code, people could suggest a better way of doing something
olistik has joined #ruby
olistik_ has quit [Read error: Connection reset by peer]
codecop has quit [Remote host closed the connection]
merqlove has joined #ruby
bmurt has quit []
blackmesa has joined #ruby
<dreinull75> ljarvis: it's nothing special. I create a Presenter class like this Presenter.new(Data.where(:x => "y")). Then inside Presenter I have a more narrow def like def narrow; self.class.new(self.where(:foo => "bar"))); end;
hectortrope has quit [Read error: Connection reset by peer]
pengin has quit [Remote host closed the connection]
Xiti` has quit [Quit: Xiti`]
datanoise has quit [Ping timeout: 264 seconds]
Xiti has joined #ruby
<dreinull75> ljarvis there's more than one of those extra filters so this just makes it easier for me to continue working with the data as expected. Without creating the Presenter again outside.
woodruffw has quit [Ping timeout: 265 seconds]
jlast has quit [Remote host closed the connection]
ghr has quit [Ping timeout: 255 seconds]
<ljarvis> dreinull75: so it re-uses the existing query and builds upon it? (i.e AND query)
baweaver has quit [Remote host closed the connection]
<dreinull75> ljarvis yes, basically
last_staff has quit [Ping timeout: 265 seconds]
weaksauce has joined #ruby
nettoweb has joined #ruby
<ljarvis> dreinull75: I think that's fine, though I would probably have all of this decision making stuff in my model
mello has joined #ruby
<ljarvis> but it's hard to comment without knowing everything. I think what you have is fine though
<wallerdev> no more #ruby-lang?
<wallerdev> :(
<ljarvis> wallerdev: nope
nettoweb has quit [Client Quit]
<ljarvis> we're one big house
<wallerdev> sigh
<wallerdev> i guess ill socialize with the #ruby plebs
<ljarvis> happy sigh
<ljarvis> aha
<wallerdev> haha
<ljarvis> we are one
<ljarvis> one pleb to rule them all
jpfuentes2 has quit [Ping timeout: 256 seconds]
fujimura has joined #ruby
kirun has quit [Quit: Client exiting]
woodruffw has joined #ruby
sinkensabe has quit [Remote host closed the connection]
Guest43972 has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
<centrx> there's the rub
<merqlove> Hello guys. I need help me with such trouble. Singletones like rails model classes save his state between http requests? Trying to fix multi tenant app. Every part of my app have access to model Tenant, which has Tenant.subdomain methods for read/write. Also I use middleware who starts before rails cache/session middlewares and save subdomain with this
<merqlove> method. This is wrong way? I need to create something which will have call to .new every request?
m8 has quit [Quit: Sto andando via]
<ljarvis> ?ror
<ruboto> I don't know anything about ror
<ljarvis> ?rails
<ruboto> Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
MrBeardy has quit []
<dreinull75> wallerdev were the hoi polloi
<ljarvis> !fact add ror Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
<ruboto> ljarvis, I will remember that ror is Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ HELP
victorko_ has joined #ruby
jpfuentes2 has joined #ruby
jgt has joined #ruby
csmb has quit [Ping timeout: 255 seconds]
<merqlove> Yeah ror and rack
mello has quit [Ping timeout: 276 seconds]
<ljarvis> merqlove: please join #rubyonrails for rails questions
marr has joined #ruby
devyn has quit [Ping timeout: 255 seconds]
datanoise has joined #ruby
<wallerdev> should just merge #rubyonrails next :p
dvxam has joined #ruby
* ljarvis strikes wallerdev
devyn has joined #ruby
<merqlove> Already, thanks
<merqlove> Haha:)
csmb has joined #ruby
spiderbyte has quit [Ping timeout: 272 seconds]
fujimura has quit [Ping timeout: 272 seconds]
iliketur_ has quit [Read error: Connection reset by peer]
iliketurtles has joined #ruby
jpfuente_ has joined #ruby
nonparfumee has joined #ruby
idafyaid has quit [Remote host closed the connection]
jpfuentes2 has quit [Ping timeout: 245 seconds]
<merqlove> Primary question is about Ruby classes with class << self do ... end constructions. This object have to reset its state between requests or not. Seems that not, as i see in Rubymine debugger.
kristofferR has quit [Quit: Textual IRC Client: www.textualapp.com]
<ljarvis> merqlove: that depends on what the state is made up of
<ljarvis> if it's request dependent then yes, it must be reset/re-instantiated for each request
<dreinull75> this channel is really great. I don't know where I'd be without your help.
haxrbyte_ has joined #ruby
northfurr has joined #ruby
ldnunes has quit [Quit: Leaving]
catcher has quit [Quit: Leaving]
<merqlove> Ok, I will try to explain with some code
<ljarvis> super, we like code
KrzaQ has quit [Disconnected by services]
xcesariox has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
jlast has joined #ruby
KrzaQ has joined #ruby
ag4ve has joined #ruby
sdothum has quit [Quit: ZNC - 1.6.0 - http://znc.in]
gf3_ has joined #ruby
nettoweb has joined #ruby
tercenya_ has joined #ruby
e1nh4nd3r has joined #ruby
<shevy> dreinull75 you'd be in #python
<shevy> is there a simple way to find out how layered a hash or array is in ruby?
<shevy> like: array = [[[1,2],[3,4]]] # 3 layers
<shevy> I am contemplating simplifying yaml files
<shevy> the format right now is: foo.yml
<shevy> foo:
<shevy> - other entries
<shevy> I could probably get away with the "foo:" part, because the name is implied by the filename ... hmm
c355E3B has quit [Ping timeout: 276 seconds]
haxrbyte has quit [Ping timeout: 264 seconds]
nettoweb has quit [Max SendQ exceeded]
<ljarvis> shevy: you could write quite a simple recursive method
<dreinull75> shevy that would solvve some problems
but3k4 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<dreinull75> monads do help, too
pengin has joined #ruby
nettoweb has joined #ruby
c355E3B has joined #ruby
finisherr has quit [Quit: finisherr]
sdothum has joined #ruby
<shevy> ljarvis yeah... I have not yet finished my thoughts about that
ta has joined #ruby
<shevy> hmm
felixjet_ has quit [Ping timeout: 276 seconds]
gf3 has quit [Ping timeout: 276 seconds]
tercenya has quit [Ping timeout: 276 seconds]
gf3_ is now known as gf3
nettoweb has quit [Max SendQ exceeded]
finisherr has joined #ruby
<dudedudeman> poo.yaml*
jriese has quit [Quit: welp]
vdamewood has joined #ruby
nobitanobi has quit []
jriese has joined #ruby
nettoweb has joined #ruby
<shevy> poodle?
<shevy> what's with the poodles here
Zai00 has quit [Quit: Zai00]
<shevy> first miah eating a poodle for lunch, now you turning them into a yaml entity
choke has quit [Quit: Textual IRC Client: www.textualapp.com]
<ljarvis> shevy: something like https://gist.github.com/leejarvis/f5e78174b49e12d4af86 could work
nettoweb has quit [Read error: Connection reset by peer]
<shevy> ljarvis oooh let me think
blueOxigen has quit [Ping timeout: 264 seconds]
<shevy> ljarvis not sure I understand how it works
<shevy> so you add one method to Enumerable
<shevy> hmm
BTRE has joined #ruby
<shevy> and apparently that method does the counting somehow...
Zai00 has joined #ruby
<ljarvis> it loops through every element in the enum, and if that element is an enum it'll recursively count how nested it is
elia has joined #ruby
tomkadwill has joined #ruby
<ljarvis> (maybe you just want .first rather than each, i dont know)
<ljarvis> so, it adds 1 (because we have identified that this element is an enum itself), and then adds that enums nested_count to our total count
<shevy> hmm
<ljarvis> if you just want to count if the first elem is enum, it becomes simpler https://gist.github.com/leejarvis/c82c3b95bb7f1fe72d40
<ljarvis> maybe that's easier to figure out
<ljarvis> btw adding stuff to enumerable isn't necessarily the best way to do this (since it'll be everywhere); but it's one way
jaequery_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
momomomomo has quit [Quit: momomomomo]
jaequery has joined #ruby
dvxam has quit [Read error: Connection reset by peer]
RandyT has quit [Ping timeout: 264 seconds]
tjohnson has quit [Quit: Connection closed for inactivity]
momomomomo has joined #ruby
Vile` has joined #ruby
towski__ has joined #ruby
jerius has quit [Quit: /quit]
pengin has quit [Remote host closed the connection]
c355E3B has quit [Quit: Connection closed for inactivity]
RandyT has joined #ruby
allcentury has quit [Ping timeout: 258 seconds]
towski_ has quit [Ping timeout: 256 seconds]
yalue has quit [Read error: Connection reset by peer]
mois3x has quit [Quit: mois3x]
jpfuente_ has quit [Ping timeout: 245 seconds]
imperator has quit [Quit: Leaving]
failshell has quit [Remote host closed the connection]
baweaver has joined #ruby
bkxd has joined #ruby
clauswitt has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
imperator2 has quit [Quit: Valete!]
<ljarvis> and on that night, it's time to sleep. g'night
<ljarvis> note.. :|
OtterCoder has joined #ruby
wallerdev has quit [Quit: wallerdev]
joneshf-laptop has quit [Ping timeout: 256 seconds]
haxrbyte has joined #ruby
haxrbyte_ has quit [Read error: Connection reset by peer]
Meeh has joined #ruby
<apeiros> indeed
<apeiros> gn8
quimrstorres has joined #ruby
mary5030 has quit [Remote host closed the connection]
jpfuentes2 has joined #ruby
TripleK has joined #ruby
<TripleK> hello everyone
rocknrol_ has joined #ruby
baweaver has quit [Remote host closed the connection]
Channel6 has quit [Quit: Leaving]
bricker has quit [Read error: Connection reset by peer]
Hijiri has quit [Quit: WeeChat 1.0.1]
baweaver has joined #ruby
<dudedudeman> hurlo
<TripleK> 0/
dblessing has quit [Quit: Textual IRC Client: www.textualapp.com]
<TripleK> anyone here a neonazi programmer?
<dudedudeman> so i have three databases in my database.yml(test, development, production), and when i do rake db:create, or rake db:setup, it sets up two out of the three. It leaves out production for some reason. am i missing something important?
bricker has joined #ruby
rocknrollmarc has quit [Ping timeout: 276 seconds]
<jhass> !ban TripleK !T 1d TripleK troll
TripleK was kicked from #ruby by ChanServ [Banned: TripleK troll]
<bootstrappm> was just about to call you :)
* dudedudeman is in awe and wonder
rdark has quit [Quit: leaving]
rocknrol_ has quit [Read error: Connection reset by peer]
circ-user-dsELh has joined #ruby
<dudedudeman> so i can set my environment variable in Puma to development or test and it works great, but setting it to production fails, because obviously a production database doesn't exist yet
rocknrollmarc has joined #ruby
Takasm has joined #ruby
mujou has quit [Quit: Leaving...]
<bootstrappm> dudedudeman IIRC that's by design. So you don't accidentally nuke your production DB
rocknrollmarc has quit [Read error: Connection reset by peer]
<bootstrappm> do RAILS_ENV=production rake db:create and you should be good
<dudedudeman> well... dat sinatra doe
rocknrollmarc has joined #ruby
<bootstrappm> hm. RACK_ENV?
rocknrollmarc has quit [Read error: Connection reset by peer]
idafyaid has joined #ruby
<bootstrappm> or alternatively try: rake db:create:all
sgambino has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
commondream has quit [Remote host closed the connection]
rocknrollmarc has joined #ruby
<dudedudeman> well hot damn. that did it
rocknrollmarc has quit [Read error: Connection reset by peer]
rocknrollmarc has joined #ruby
devdazed has quit [Ping timeout: 252 seconds]
e1nh4nd3r has quit [Quit: Leaving.]
<pipework> drbrain: So is the community page gonna change on ruby-lang.org? https://www.ruby-lang.org/en/community/
<jhass> pipework: yes
<jhass> just needs my PR to be merged and deployed
<havenwood> pipework: For now it redirects.
Papierkorb_ is now known as Papierkorb
pengin has joined #ruby
<pipework> havenwood: Actually, it doesn't for existing clients. It shows invite-only, but doesn't banforward.
bkxd has quit [Ping timeout: 264 seconds]
<havenwood> pipework: Ahhh.
<jhass> existing clients=people already in #ruby? yeah
<jhass> what would you expect your client/freenode to do? join you a second time?
<jhass> er, s/you//
caseypatrickdris has joined #ruby
havenwood has left #ruby ["Textual IRC Client: www.textualapp.com"]
havenwood has joined #ruby
<pipework> jhass: I'd expect an op to use banforwarding and then use forwarding on uninvited.
<havenwood> pipework: Leave here, join there, and you'll be back here.
<pipework> Look for 'forward on uninvited'
scripore has quit [Quit: This computer has gone to sleep]
<jhass> +if #ruby is set on #ruby-lang
pipework has left #ruby ["Textual IRC Client: www.textualapp.com"]
pipework has joined #ruby
<havenwood> pipework: Welcome back! :)
<shevy> oh no
<shevy> pipework is back
<shevy> :)
<pipework> Ah, my client just behaves differently than other clients. Normally I'd expect the client to properly just bring up the #ruby channel.
<shevy> do you use the peechat client?
ghr has joined #ruby
WildBamboo-Josh has joined #ruby
circ-user-dsELh has quit [Ping timeout: 265 seconds]
<dudedudeman> it's all about that pidgin baby
rocknrollmarc has quit [Read error: Connection reset by peer]
<drbrain> pipework: I've bugged hsbt about it a couple times, but probably when he is sleeping or AFK so far
paulcsmith has quit [Quit: Be back later ...]
rocknrollmarc has joined #ruby
<pipework> drbrain: No worries, sir. Just trying to recall all the important places where that channel was referenced.
enebo has quit [Quit: enebo]
claptor has joined #ruby
badhatter has quit [Read error: Connection reset by peer]
tomkadwill has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 252 seconds]
rocknrollmarc has quit [Read error: Connection reset by peer]
malconis has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
goodcodeguy has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
olistik has quit [Remote host closed the connection]
bollullera has joined #ruby
rocknrollmarc has joined #ruby
konr has joined #ruby
zendrix has quit [Read error: Connection reset by peer]
circ-user-dsELh has joined #ruby
workmad3 has joined #ruby
ta has quit [Read error: Connection reset by peer]
zendrix has joined #ruby
ta has joined #ruby
bollullera has left #ruby [#ruby]
pengin has quit [Remote host closed the connection]
watchtheblur has quit [Ping timeout: 256 seconds]
<merqlove> This is gist of current question, @ljravis
pengin has joined #ruby
rocknrollmarc has quit [Read error: Connection reset by peer]
datanoise has quit [Read error: Connection reset by peer]
brixen has quit [Ping timeout: 256 seconds]
adeponte has quit [Ping timeout: 256 seconds]
<jhass> merqlove: that's a good property to explicitly pass around (for example set it in your rack env), doing it with global state will only give you headaches, no matter the variant
nitrix has quit [Ping timeout: 256 seconds]
aytch has quit [Ping timeout: 256 seconds]
benlieb has joined #ruby
watchtheblur has joined #ruby
aytch has joined #ruby
adeponte has joined #ruby
rocknrollmarc has joined #ruby
moretti has quit [Quit: Leaving...]
Takasm has quit [Quit: Leaving.]
jlast has quit [Remote host closed the connection]
rocknrollmarc has quit [Read error: Connection reset by peer]
brixen has joined #ruby
rocknrollmarc has joined #ruby
rocknrollmarc has quit [Read error: Connection reset by peer]
ikbenhet has joined #ruby
circ-user-dsELh has quit [Remote host closed the connection]
<merqlove> haha, i can't
rocknrollmarc has joined #ruby
<merqlove> app multi-tenant
davasaurous has joined #ruby
DEA7TH has quit [Ping timeout: 264 seconds]
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rocknrollmarc has quit [Read error: Connection reset by peer]
j0n3 has quit [Quit: Leaving]
rocknrollmarc has joined #ruby
jgt has quit [Ping timeout: 256 seconds]
verto has joined #ruby
rocknrollmarc has quit [Read error: Connection reset by peer]
rocknrollmarc has joined #ruby
djbkd has quit [Remote host closed the connection]
Guest71779 has joined #ruby
freerobby has quit [Quit: Leaving.]
mc_fail has joined #ruby
Iskarlar has joined #ruby
<merqlove> jhass: i will try it now with siege :)
rocknrollmarc has quit [Read error: Connection reset by peer]
rocknrollmarc has joined #ruby
<mc_fail> hi guys, i'm trying to use a "filesize" gem to convert gigabytes to bytes & etc, and i have the following error on it:
<mc_fail> [2015-06-02T01:11:42+03:00] ERROR: /usr/lib/ruby/gems/1.8/gems/filesize-0.1.0/lib/filesize.rb:6: odd number list for Hash
rocknrollmarc has quit [Read error: Connection reset by peer]
jmhmccr has joined #ruby
<mc_fail> does it really has a mistake in gem code?
rocknrollmarc has joined #ruby
baweaver has quit [Remote host closed the connection]
workmad3 has quit [Ping timeout: 258 seconds]
<jhass> probably, why not *1024**3
<jhass> also why are you still using Ruby 1.8?
Kricir has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rocknrollmarc has quit [Read error: Connection reset by peer]
rocknrol_ has joined #ruby
rocknrol_ has quit [Read error: Connection reset by peer]
kies has quit [Ping timeout: 272 seconds]
thiagofm has quit [Remote host closed the connection]
Takasm has joined #ruby
<mc_fail> jhass because i'd like to specify size in user-friendly format, like 500MB, and i'm lazy enought to avoid rewriting code
volkk has joined #ruby
axl_ has quit [Quit: axl_]
iliketurtles has quit [Quit: zzzzz…..]
<jhass> ah, didn't sound like that
volkk has left #ruby [#ruby]
Musashi007 has joined #ruby
DLSteve has quit [Quit: Leaving]
Xiti` has joined #ruby
<shevy> whoa
umgrosscol has quit [Quit: Quit]
<shevy> freshmeat.net died?
<jhass> I see
<miah> freshmeat dead a while ago
<jhass> mc_fail: simply incompatible with your dead version of Ruby
kfpratt has joined #ruby
<shevy> hmm I see
<mc_fail> jhass ok, i guess i should just try an older version of gem...
tubbo has quit [Ping timeout: 250 seconds]
<jhass> mc_fail: no, wrong approach
<shevy> I am slower than a coding poodle
northfurr has quit [Quit: northfurr]
commondream has joined #ruby
<jhass> mc_fail: 1.8 is dead, it's successor 1.9 is dead, 2.0 will die on February 2016
<jhass> you should update your Ruby version
northfurr has joined #ruby
jud^ has joined #ruby
<shevy> you are so negative jhass!
<jhass> what's negative about getting them to an supported Ruby version?
<shevy> you speak about death
<mc_fail> jhass updating ruby is pain
caseypatrickdris has quit [Remote host closed the connection]
<jhass> mc_fail: only because you didn't do it for such a long time
rocknrollmarc has joined #ruby
iliketurtles has joined #ruby
Xiti has quit [Ping timeout: 256 seconds]
headius has quit [Ping timeout: 256 seconds]
<shevy> mc_fail well the error seems to be at the least not very logical
rocknrollmarc has quit [Read error: Connection reset by peer]
Hijiri has joined #ruby
<shevy> ruby loves key->value associations, so it's weird if you provide just a key but no value for it
rocknrollmarc has joined #ruby
<jhass> shevy: it's Ruby 1.9 hash syntax with uppercase key, Ruby 1.8 is just confused about it
queequeg1 has quit [Ping timeout: 256 seconds]
rocknrollmarc has quit [Read error: Connection reset by peer]
<mc_fail> jhass if i have somethig works perfectly, why i should waste time to update it just because developers destroyed compatibility with older versions?
<shevy> oh, then that is even easier to change
ur5us has quit [Remote host closed the connection]
dvxam has joined #ruby
leat4 has quit [Ping timeout: 256 seconds]
kadoppe has quit [Ping timeout: 256 seconds]
rocknrollmarc has joined #ruby
tenseiten has joined #ruby
tenseiten has joined #ruby
queequeg1 has joined #ruby
<shevy> all you have to do is to re-package that gem with backwards compatible syntax
mansel has quit [Ping timeout: 264 seconds]
seitensei has quit [Read error: Connection reset by peer]
DerisiveLogic has quit [Ping timeout: 264 seconds]
vcoinminer has quit [Ping timeout: 256 seconds]
nisstyre has quit [Ping timeout: 256 seconds]
leat4 has joined #ruby
jud has quit [Ping timeout: 264 seconds]
djbkd has joined #ruby
mansel_ has joined #ruby
<jhass> mc_fail: because there are no more security updates, if somebody finds a major security issue in 1.8 (a minor one is already known), you'll have to backport a patch for 1.8 on your own or do the update to a major Ruby version as a security patch
gregf has quit [Quit: WeeChat 1.1.1]
<mc_fail> shevy is there any tools for such kind of repacking?
baweaver has joined #ruby
kadoppe has joined #ruby
vcoinminer has joined #ruby
headius has joined #ruby
<shevy> mc_fail not sure. There are probably not many people who need it, so you may have a niche there. Basically, if the error is really only about :foo => 'bar' versus foo: 'bar' then writing the code that does such a change back should not be impossible to write
baroquebobcat has quit [Quit: baroquebobcat]
<jhass> that's only one easy symptom of a much larger problem here
<shevy> that is your statement here, why should it be valid for anyone else? are you seeking to convince him?
<jhass> yes, in fact I do
<shevy> I mean what is your problem if he wants to use an old ruby version?
<bootstrappm> you know whats annoying? new syntax when constructing mongodb queries in ruby. {$operator: {key: 'val'} } does not work
baroquebobcat has joined #ruby
<mc_fail> jhass i'm using ruby only with chef\puppet, i don't think security in code there is really important, also i have fedora16 with an old kernel on thousland of servers, and update ruby means update fedora, which is impossible
yqt has quit [Ping timeout: 252 seconds]
DerisiveLogic has joined #ruby
Zai00 has quit [Quit: Zai00]
moretti has joined #ruby
<miah> good thing you dont have to pass pci
<jhass> mc_fail: that's sad. I hope I'll never have to be your customer then.
<bootstrappm> mc_fail are you using system ruby?
rocknrol_ has joined #ruby
_seanc_ has quit [Quit: _seanc_]
rocknrollmarc has quit [Ping timeout: 245 seconds]
djbkd has quit [Remote host closed the connection]
fgo has joined #ruby
djbkd has joined #ruby
DEA7TH has joined #ruby
nisstyre has joined #ruby
enebo has joined #ruby
rocknrollmarc has joined #ruby
banister has joined #ruby
<baweaver> As a DevOps / Infrastructure Automation / Security person, I have to say that's a horrible mindframe to have mc_fail
<shevy> mc_fail when you have the .gemspec file of a gem, you can unpack the gem via "gem unpack *.gem", or the name, then change the necessary files in question, and then rebuild the gem: "gem build *.gemspec". if the gem is https://rubygems.org/gems/filesize then it is so tiny, 6 KB, that you can finish in like 5 minutes or so :P note that the gem has not been updated in 6 years
_seanc_ has joined #ruby
enebo has quit [Client Quit]
<shevy> ohhhh
<shevy> it's dominikh right?
rocknrollmarc has quit [Read error: Connection reset by peer]
<shevy> I think he may hang out on #ruby-lang
rocknrollmarc has joined #ruby
<shevy> cinch autor then
<jhass> shevy: funny
<shevy> hehe
<baweaver> shevy: Oh, you mean the channel that no longer exi....
<shevy> well
* baweaver sees what he did there
<shevy> I don't know why the guys on #ruby-lang just can not accept jhass' suggestion to move here :)))
<shevy> I should possibly point it out more often to them
<jhass> shevy: try joining #ruby-lang ;)
rocknrollmarc has quit [Read error: Connection reset by peer]
OtterCoder has quit [Quit: No Ping reply in 180 seconds.]
<shevy> ack
<shevy> * Cannot join #ruby-lang (Channel is invite only).
<shevy> they raised their shields!
scripore has joined #ruby
davedev2_ has joined #ruby
<jhass> yeah...
<baweaver> didn't they make #ruby-pro out of spite?
davedev24_ has quit [Ping timeout: 245 seconds]
rocknrollmarc has joined #ruby
<shevy> Lower your shields and surrender your ships.
<shevy> We will add your biological and technological distinctiveness to our own.
<shevy> lol baweaver
<jhass> shevy: let's have another try, look at the /topic
<miah> lol
sethetter has quit [Quit: leaving]
<shevy> oh yeah "Welcome new users migrating from #ruby-lang!"
<shevy> I normally never look on the topic, it's on the far left upper corner. All fun action happens at the bottom area
<miah> why did they go +i?
yqt has joined #ruby
shawnacscott has joined #ruby
rocknrol_ has quit [Ping timeout: 252 seconds]
OtterCoder has joined #ruby
<bootstrappm> ruby-lang sounds it should be a place for core language devs
<BanzaiJoe> *grumble* aperios something something *grumble*
<shevy> lol
<shevy> perhaps they hate us
<jhass> shevy: miah: they've gone empty, we merged ;)
datanoise has joined #ruby
AlphaAtom has quit [Ping timeout: 258 seconds]
<zenspider> baweaver: ruby-pro wasn't out of spite. gah... what was the one that was... -heros ? something. I remember imagining them as sitting around wearing capes
<miah> lol
<baweaver> Ah
rocknrollmarc has quit [Read error: Connection reset by peer]
<baweaver> that mess
OtterCoder has quit [Client Quit]
<baweaver> well that's a whole other can of worms then
wallerdev has joined #ruby
<zenspider> welcome... here's your cape
rocknrollmarc has joined #ruby
<jhass> there's ##ruby I think?
<zenspider> because it's commercial? isn't that the distinction?
<zenspider> I'm in ##mathematica
<shevy> well it would be cool to have people like chris2 drbrain lianj dominikh etc... etc... etc... here
fgo has quit [Ping timeout: 245 seconds]
<centrx> too bad shevy is still here
<jhass> zenspider: freenode policy is #associated_with_a_project ##whatever
<centrx> ||=
<baweaver> Did they just refuse to migrate?
<jhass> not that it's enforced much
<shevy> centrx I am having way too much fun with you whenever PHP is mentioned
<zenspider> mathematica is certainly associated with a project. just not an open source one
* baweaver ducks
<jhass> shevy: drbrain is here (and appointed as founder), others probably just didn't run into the forward yet
<shevy> ohhhh
<shevy> I did not notice!
<shevy> he was so quiet
b_hoffman has joined #ruby
<dfockler> is his name really drb rain, as in distributed ruby rain?
yaw has joined #ruby
<jhass> dunno, I always split at the dr
<centrx> >> 'drbrain'.split
<ruboto> centrx # => ["drbrain"] (https://eval.in/373998)
yaw has quit [Max SendQ exceeded]
<centrx> >> 'drbrain'.split('dr')
<ruboto> centrx # => ["", "brain"] (https://eval.in/373999)
<shevy> he is like from pinky and the brain
<shevy> more the pinky side
failshell has joined #ruby
<baweaver> So we're done heckling the usage of 1.8 then?
rocknrollmarc has quit [Ping timeout: 258 seconds]
<miah> i am too lagged to heckle
<shevy> well not many people will use 1.8 really
<dfockler> 1.8, It's no longer great!
* baweaver is referring to above case of it
<dfockler> 1.9, It's still fine!
<xxneolithicxx> tell that to people still supporting RHEL 5
<shevy> even they will eventually change!
graft has joined #ruby
graft has joined #ruby
<baweaver> build from source
<bootstrappm> I'm surprised people are still using 1.9, what breaks if you upgrade that to 2.0 at least?
<dfockler> 2.0, Will soon go!
<baweaver> Very very little.
<shevy> bootstrappm good question
<shevy> probably some different warnings will be shown... not sure about any breaks though
arBmind1 has joined #ruby
yaw has joined #ruby
ikbenhet has quit []
datanoise has quit [Quit: WeeChat 1.2]
arBmind has quit [Ping timeout: 256 seconds]
yaw has quit [Max SendQ exceeded]
<mozzarella> maybe they like debian
baweaver has quit [Remote host closed the connection]
Takasm has quit [Quit: Leaving.]
yaw has joined #ruby
<zenspider> I can't stand 1.9. I'd rather use 1.8.
<zenspider> I still test against 1.8. I don't test against 1.9 at all.
<zenspider> I figure if it works in 2.x, it probably works in 1.9
<mozzarella> what was wrong with 1.9? I don't remember
nonparfumee has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
yaw has quit [Max SendQ exceeded]
centrx has quit [Quit: Shutting down, Please wait...]
failshell has quit [Ping timeout: 256 seconds]
DerisiveLogic has quit [Ping timeout: 265 seconds]
kinduff has joined #ruby
kinduff has joined #ruby
failshell has joined #ruby
<bootstrappm> IIRC character encodings were pretty annoying in 1.9.3
Brozo has joined #ruby
yaw has joined #ruby
sandstrom has quit [Quit: My computer has gone to sleep.]
yaw has quit [Max SendQ exceeded]
<zenspider> all of the 1.9s, but yeah.
yaw has joined #ruby
yaw has left #ruby [#ruby]
Palmer11 has quit [Quit: Palmer11]
jgpawletko has quit [Quit: jgpawletko]
<zenspider> the fact that 1.9.0 & 1.9.1 were never really production ready (yet, people tried) and 1.9.2 was buggy as fuck and hard to build... encodings were just awful and not nearly as transparent as they are in 2.x... lots. really. I would like that era to be dead and gone
Iskarlar has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
neanderslob has joined #ruby
dfinninger has quit [Remote host closed the connection]
LMity has joined #ruby
caseypatrickdris has joined #ruby
dru` has quit [Ping timeout: 255 seconds]
Hijiri has quit [Quit: WeeChat 1.0.1]
dvxam has quit [Read error: Connection reset by peer]
mary5030 has joined #ruby
moretti has quit [Quit: Leaving...]
fher503 has joined #ruby
jgpawletko has joined #ruby
<fher503> hi everyone
mello has joined #ruby
mello has joined #ruby
<konr> hello, my little friend
iliketurtles has quit [Quit: zzzzz…..]
jcaho has quit [Read error: Connection reset by peer]
jcaho has joined #ruby
drefined has joined #ruby
whippythellama has quit [Quit: whippythellama]
datanoise has joined #ruby
djbkd has quit [Remote host closed the connection]
fujimura has joined #ruby
jaequery_ has joined #ruby
g0rx has joined #ruby
mary5030 has quit [Ping timeout: 256 seconds]
<g0rx> any ruby coder ?
<fher503> yes i'm here
dopie has quit [Quit: This computer has gone to sleep]
LMity has quit [Ping timeout: 265 seconds]
djbkd has joined #ruby
djbkd has quit [Read error: Connection reset by peer]
djbkd has joined #ruby
mello has quit [Ping timeout: 272 seconds]
psy_ has quit [Read error: No route to host]
jaequery has quit [Ping timeout: 244 seconds]
senayar has quit [Read error: Connection reset by peer]
fujimura has quit [Ping timeout: 244 seconds]
senayar has joined #ruby
iliketurtles has joined #ruby
woodruffw has quit [Quit: And then he took off.]
dfockler has quit [Remote host closed the connection]
woodruffw has joined #ruby
edwinvdgraaf has quit [Remote host closed the connection]
robustus is now known as robustus|Off
mrsolo has quit [Quit: Leaving]
someword1 has quit [Quit: Leaving.]
haxrbyte has quit [Ping timeout: 276 seconds]
SalexW has joined #ruby
<g0rx> any ruby coder ?
<havenwood> g0rx: many ruby coders.
<g0rx> any one
<havenwood> g0rx: Have a question?
fher503 has quit [Ping timeout: 246 seconds]
<g0rx> i need a coder :D
segfalt has quit [Quit: segfalt]
<bootstrappm> g0rx: we're all coders, say something else
jimms has quit []
<miah> ask?
<noethics> i think he wants to hire a programmer
<bootstrappm> yep
mois3x has joined #ruby
simi has quit [Ping timeout: 256 seconds]
<womble> New lows in the world of recruiters.
<merqlove> jhass: Tested, seems that both variants works well if i have not use such cleanup Middleware at the end.
vdamewood has quit [Quit: Life beckons.]
mordocai has quit [Ping timeout: 255 seconds]
<g0rx> i need a programmer :)
<miah> use your words, elaborate.
<kinduff> g0rx: for what?
<g0rx> for coding
* womble sings, "everybody... neeeeeeds somebody, to code!"
<g0rx> i pay by bitcoin
<womble> (Someone to code)
<womble> Sounds legit.
<g0rx> :D
<g0rx> too much
* g0rx slaps womble around a bit with a large trout
* g0rx slaps womble around a bit with a large trout
<jhass> didn't they'd have that macro
<jhass> *think
* kinduff understands all the queen references in the world
<merqlove> updated :)
<womble> Two trout slaps... lucky me.
<kinduff> g0rx: don't ask more, I'm the coder you're looking for
failshell has quit [Read error: Connection reset by peer]
<miah> jhass: mirc =)
<jhass> merqlove: until you use a threading appserver
<merqlove> jhass: i'm use it right now
<merqlove> Puma
<merqlove> this test with Puma
arturhoo_ has quit [Quit: arturhoo_]
<g0rx> done
podman has quit [Quit: Connection closed for inactivity]
Casi has joined #ruby
<g0rx> kinduff ok
choke has joined #ruby
WildBamboo-Josh has quit [Quit: Leaving]
jgpawletko has quit [Quit: jgpawletko]
nateberkope has joined #ruby
c355E3B has joined #ruby
b_hoffman has quit [Quit: b_hoffman]
scripore has quit [Quit: This computer has gone to sleep]
nateberkopec has quit [Ping timeout: 255 seconds]
lindii_ is now known as eddie_v3
momomomomo has quit [Quit: momomomomo]
Musashi007 has quit [Quit: Musashi007]
scripore has joined #ruby
ghr has quit [Ping timeout: 265 seconds]
<Aeyrix> Barista misheard me and gave me a small coffee.
<Aeyrix> Today: Garbage.
<finisherr> are there any sweet process inspection libraries for ruby like psutil?
<Aeyrix> Looks like I'm writing in C today.
<Aeyrix> finisherr: Not that I know of.
WildBamboo-Josh has joined #ruby
<Aeyrix> finisherr: What are you trying to do, specifically?
<finisherr> Nothing write now. I’m just finding that I have to write ruby now so trying to get familiar
momomomomo has joined #ruby
<finisherr> I’m coming from python
Cache_Money has quit [Quit: Cache_Money]
<Aeyrix> Right.
<finisherr> also, i’m an ops guy
momomomomo has quit [Client Quit]
<Aeyrix> Same, ish.
<bootstrappm> i'm doing ops right nwo
<bootstrappm> now*
Musashi007 has joined #ruby
<bootstrappm> not going quickly though :(
mcclurmc has joined #ruby
<finisherr> must ops faster!
<bootstrappm> indeed
<finisherr> Time to go home.
finisherr has quit [Quit: finisherr]
<bootstrappm> safe travels
iliketurtles has quit [Quit: zzzzz…..]
vivekananda has quit [Ping timeout: 272 seconds]
zendrix has quit [Remote host closed the connection]
Brozo has quit [Quit: Leaving...]
fgo has joined #ruby
jackjackdripper1 has joined #ruby
_seanc__ has joined #ruby
_seanc_ has quit [Read error: Connection reset by peer]
_seanc__ is now known as _seanc_
quimrstorres has quit [Remote host closed the connection]
Kricir has quit [Remote host closed the connection]
baroquebobcat has quit [Quit: baroquebobcat]
mistermo_ has joined #ruby
bruno- has quit [Ping timeout: 252 seconds]
mistermo_ has quit [Remote host closed the connection]
Soliah has quit [Quit: Soliah]
choke has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jackjackdripper has quit [Ping timeout: 272 seconds]
nateberkopec has joined #ruby
zendrix has joined #ruby
aaeron has quit [Read error: Connection reset by peer]
<shevy> good old mIRC
_seanc_ has quit [Read error: Connection reset by peer]
aaeron has joined #ruby
fgo has quit [Ping timeout: 250 seconds]
_seanc_ has joined #ruby
Ropeney has joined #ruby
choke has joined #ruby
<Aeyrix> The only good mIRC is an uninstalled mIRC.
mistermocha has quit [Ping timeout: 258 seconds]
nateberkope has quit [Ping timeout: 250 seconds]
baroquebobcat has joined #ruby
jaequery_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
GriffinHeart has joined #ruby
baweaver has joined #ruby
nateberkope has joined #ruby
arBmind1 has quit [Quit: Leaving.]
<shevy> hehe
* shevy slaps Aeyrix around a bit with a large trout
<Aeyrix> Lame.
lennae has joined #ruby
ScriptGeek1 has joined #ruby
failshell has joined #ruby
<Aeyrix> LimeChat best client.
<Aeyrix> or Textual actually, but I'm not paying TWICE for an IRC client
jpfuentes2 has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
baweaver has quit [Remote host closed the connection]
RegulationD has quit []
* symm- uses LimeChat, gets annoyed when ctrl-arrow switches to another channel
jstanton has joined #ruby
AlphaAto_ has joined #ruby
caseypatrickdris has quit [Remote host closed the connection]
nateberkopec has quit [Ping timeout: 264 seconds]
<Aeyrix> symm-: ??
AlphaAto_ has quit [Quit: Textual IRC Client: www.textualapp.com]
<Aeyrix> Doesn't on mine. :x
nateberkopec has joined #ruby
ScriptGeek has quit [Disconnected by services]
ScriptGeek1 is now known as ScriptGeek
<symm-> umm... it's "LimeChat2"
<symm-> if that makes a difference?
nateberkope has quit [Ping timeout: 264 seconds]
<Aeyrix> LimeChat 2.42 here.
slawrence00 has quit [Ping timeout: 240 seconds]
<symm-> oh, this one? http://limechat.net/mac/
scripore has quit [Quit: This computer has gone to sleep]
<Aeyrix> Yeah.
bayed has quit [Quit: Connection closed for inactivity]
<symm-> I have this thing http://limechat.net/
michael_mbp has quit [Excess Flood]
<Aeyrix> From the appstore though.
failshell has quit [Remote host closed the connection]
scripore has joined #ruby
jstanton has quit [Read error: Connection reset by peer]
<Aeyrix> Oh.
gmci has joined #ruby
<symm-> it's hilariously bad but I've changed enough clients not to want to do it again ><
<Aeyrix> Windows?
casadei has quit [Remote host closed the connection]
<symm-> lol
<symm-> yes
<Aeyrix> Use HexChat.
<Aeyrix> Master race Windows client.
<symm-> I might, just too lazy atm
<Aeyrix> I really can't go past Textual though. I wish it existed on Windows. ;-;
michael_mbp has joined #ruby
Steve_Jobs has joined #ruby
jackjackdripper1 has quit [Quit: Leaving.]
baweaver has joined #ruby
DEA7TH has quit [Ping timeout: 244 seconds]
commondream has quit [Remote host closed the connection]
commondream has joined #ruby
Casi has quit [Remote host closed the connection]
commondream has quit [Remote host closed the connection]
commondream has joined #ruby
sankaber has joined #ruby
jgpawletko has joined #ruby
blackmesa has quit [Quit: WeeChat 1.2]
yaw has joined #ruby
elia has quit [Quit: Computer has gone to sleep.]
drefined has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
mustmodify has joined #ruby
workmad3 has joined #ruby
Rickmasta has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rushed has joined #ruby
mistermocha has joined #ruby