apeiros changed the topic of #ruby to: Ruby 2.1.3; 2.0.0-p576; 1.9.3-p545: http://ruby-lang.org || Paste >3 lines of text on http://gist.github.com || this channel is logged at http://irclog.whitequark.org, other public logging is prohibited
<havenwood> siwica: hem, there're many ways
<siwica> the most elegant?
mistergibson has joined #ruby
malcolmva has quit [Ping timeout: 244 seconds]
<volty> >> [1,2,3].map { |i| [i,0] }.flatten
<eval-in__> volty => [1, 0, 2, 0, 3, 0] (https://eval.in/207588)
<havenwood> >> [1, 2, 3].flat_map { |i| [i, 0] }
<eval-in__> havenwood => [1, 0, 2, 0, 3, 0] (https://eval.in/207589)
<volty> >> [1,2,3].inject([]) { |t, i| t << i << 0 }
<eval-in__> volty => [1, 0, 2, 0, 3, 0] (https://eval.in/207590)
<havenwood> >> [1, 2, 3].zip([0].cycle).flatten
<eval-in__> havenwood => [1, 0, 2, 0, 3, 0] (https://eval.in/207591)
<siwica> :)
<siwica> thanks
weemsledeux has joined #ruby
<apeiros> >> [1,2,3].flat_map { |i| [i,0] }
<eval-in__> apeiros => [1, 0, 2, 0, 3, 0] (https://eval.in/207592)
<havenwood> >> [1, 2, 3].each_with_object(0).to_a.flatten
<eval-in__> havenwood => [1, 0, 2, 0, 3, 0] (https://eval.in/207593)
Alx08-ru has joined #ruby
nobitanobi has joined #ruby
AlexRussia has joined #ruby
zaid_h has quit [Quit: ZZZzzz…]
Takle has joined #ruby
weemsledeux has quit [Remote host closed the connection]
<oz> >> [1, 2, 3].product([0]).flatten
<eval-in__> oz => [1, 0, 2, 0, 3, 0] (https://eval.in/207594)
jcdesimp_ has joined #ruby
<volty> oz's best
<siwica> yes, I think he wins the prize so far ;)
nobitanobi has quit [Remote host closed the connection]
nobitanobi has joined #ruby
<volty> a product is a product :)
<oz> :p
<gizmore> codegolf is a bad habbit
skolman_ has quit [Remote host closed the connection]
skolman has joined #ruby
<siwica> It wasn't intended to be one
<volty> why bad habbit ?
<siwica> but I guess everybody learned sth, so why bad habit?
<oz> volty: I think the flat_map's the most readable.
<oz> but I guess YMMV. :)
<nobitanobi> How come if the 'if conditionals' always return IF, the value test gets assigned 3? https://gist.github.com/novito/773ad903054ac7d86699
jcdesimp has quit [Ping timeout: 265 seconds]
Takle has quit [Ping timeout: 265 seconds]
<apeiros> nobitanobi: um, no, if's don't return the value of the conditional
davidhq has joined #ruby
<nobitanobi> * sorry, if conditionals always return NIL, right?
<apeiros> they return the last executed statement in their block, nil if the condition failed
<nobitanobi> oh ok.
<nobitanobi> thanks :)
<apeiros> that's why you can use if/else instead of ternary
<nobitanobi> I thought they always returned nil
<apeiros> >> if true then 1 else 2 end
<eval-in__> apeiros => 1 (https://eval.in/207595)
<apeiros> >> if false then 1 else 2 end
<eval-in__> apeiros => 2 (https://eval.in/207596)
<apeiros> >> if false then 1 end
<eval-in__> apeiros => nil (https://eval.in/207597)
<nobitanobi> perfect
<nobitanobi> apeiros: thanks.
robustus|Off has quit [Ping timeout: 250 seconds]
skolman has quit [Ping timeout: 260 seconds]
<siwica> so using the above, this one solved my particular problem. But would it be considered bad style to chain that much?
<siwica> >> (0..8).to_a.each_slice(3).with_index{|w,i| p w.product([i]).flatten.join(" ") }
<eval-in__> siwica => "0 0 1 0 2 0" ... (https://eval.in/207598)
malcolmva has joined #ruby
davidhq has quit [Ping timeout: 245 seconds]
ndrei has joined #ruby
robustus has joined #ruby
<gizmore> swartwulf: volty: i was kidding.. i just don´t know #product
mchelen has quit [Quit: Leaving]
<gizmore> my solution was #collect#flatten
grieg_ has joined #ruby
Lewix has quit [Remote host closed the connection]
<volty> :)
jack_rabbit has joined #ruby
<grieg_> hello! is x = 3 ; y = x ; x = 0 ; y == 0 => true ?
jcdesimp_ has quit [Remote host closed the connection]
<eval-in__> volty => /tmp/execpad-79995b953e43/source-79995b953e43:2: syntax error, unexpected tLABEL ... (https://eval.in/207601)
payne has quit [Ping timeout: 240 seconds]
jcdesimp has joined #ruby
ramfjord has joined #ruby
<eval-in__> volty => /tmp/execpad-f249f244859c/source-f249f244859c:2: syntax error, unexpected tLABEL ... (https://eval.in/207602)
marr has quit [Ping timeout: 258 seconds]
<volty> oh my gosh, i must have macros that subst [[
<volty> >> [1,2,3].product([ [8,9] ]).flatten
<eval-in__> volty => [1, 8, 9, 2, 8, 9, 3, 8, 9] (https://eval.in/207605)
byprdct_ has quit []
sepp2k1 has joined #ruby
<volty> that's why I prefer product
<jhass> grieg_: why don't you just run it and find out?
sepp2k has quit [Ping timeout: 246 seconds]
<siwica> grieg_: >> x = 3 ; y = x ; x = 0 ; p y == 0
Stalkr^ has joined #ruby
Stalkr_ has quit [Read error: Connection reset by peer]
<siwica> >> x = 3 ; y = x ; x = 0 ; p y == 0
<eval-in__> siwica => false ... (https://eval.in/207606)
Lewix has joined #ruby
<grieg_> allright.. then i m stuck. i ll show you some code i if you dont mind
<jhass> grieg_: sure, use gist.github.com for anything > 3 lines
<siwica> again, is such chaining considered bad style? (0..8).to_a.each_slice(3).with_index{|w,i| p w.product([i]).flatten.join(" ") }
<benzrf> no t necessarily
<jhass> I wouldn't say so
<jhass> some people prefer to use intermediate locals but I don't think there's a general consensus
<siwica> I would probably have a hard time when reading the code, but I dont really know how to make it more clear
<volty> strip out that to_a
<jhass> use proper names for the vars
zorak8 has joined #ruby
<jhass> name them not what they are but what they represent in your usecase
<volty> >> (0..8).each_slice(3).with_index{|w,i| p w.product([i]).flatten.join(" ") }
<eval-in__> volty => "0 0 1 0 2 0" ... (https://eval.in/207607)
whatasunnyday has quit [Quit: whatasunnyday]
<grieg_> https://gist.github.com/anonymous/620938a35789dcf4650f correct input(say 2d6 or 10d10 ... ) gives an "error".
NoNMaDDeN has joined #ruby
<siwica> volty: sure. I already removed it in my actual code. Just forgot to remove it here.
Gnubie_ has quit [Remote host closed the connection]
Gnubie_ has joined #ruby
<jhass> grieg_: start by using true/false instead of 0/1
Stalkr^ has quit [Quit: Leaving...]
russt has quit [Quit: russt]
<volty> >> (0..8).each_slice(3).with_index{|w,i| "#{w.product([i]}").flatten.join(" ") }
<eval-in__> volty => /tmp/execpad-c4efbfb883f1/source-c4efbfb883f1:2: syntax error, unexpected tSTRING_DEND, expecting ')' ... (https://eval.in/207608)
<jhass> grieg_: then check into which condition it runs that sets error to true
<volty> never mind, i prefer ""over p
ramfjord has quit [Ping timeout: 240 seconds]
<jhass> grieg_: try to move backwards as to why it went into that
jlast has joined #ruby
<jhass> grieg_: use p to print out values, verify they are what you think they are
nobitanobi has quit [Remote host closed the connection]
Inoperable has quit [Quit: rectified]
<siwica> in the actual code it's xml.text instead of p
Zesty has joined #ruby
nobitanobi has joined #ruby
NoNMaDDeN has quit [Ping timeout: 272 seconds]
emmesswhy has quit [Quit: This computer has gone to sleep]
x77686d has quit [Quit: x77686d]
<volty> i just installed a new kubuntu, and have escape characters in irb when pressing up and down keys
<shevy> is minitest worth spending time to learn it?
<shevy> haha volty
<shevy> this is the ubuntu factor
<volty> don't laugh - that I am tired
jlast has quit [Ping timeout: 272 seconds]
jottr_ has quit [Ping timeout: 258 seconds]
Timgauthier has quit [Quit: Textual IRC Client: www.textualapp.com]
<volty> it's readline related
coderhs has quit [Ping timeout: 240 seconds]
thedonvaughn has joined #ruby
nobitanobi has quit [Remote host closed the connection]
xcyclist has quit [Ping timeout: 246 seconds]
davidhq has joined #ruby
Juanchito has joined #ruby
nobitanobi has joined #ruby
siwica has quit [Ping timeout: 260 seconds]
zorak8 has quit [Ping timeout: 255 seconds]
Scotteh_ is now known as Scotteh
<volty> was rb-readline fault, uninstalled and installed to 0.5.1
<volty> haha shevy
thsig_ has joined #ruby
Scotteh has quit [Quit: Later, folks]
Scotteh has joined #ruby
zorak8 has joined #ruby
<volty> and I am running an rbenv's ruby - so nothing to do with ubuntu
<shevy> ewww
<shevy> I hate when those things mess up stuff
<grieg_> ok, jhass, command[i] is always a string. how do i check if a character in a string is a number??
<shevy> it's like a big complicated mess, and you have to dissect where and how something went wrong
<jhass> grieg_: for example with .match /\d/
<shevy> grieg_ several ways. regex is one
thsig has quit [Ping timeout: 245 seconds]
skolman has joined #ruby
danguita has quit [Remote host closed the connection]
<jhass> grieg_: I would also recommend to not use ; in real code, it's harder to read
danguita has joined #ruby
<jhass> grieg_: if then too IMO, especially if the code follows on the same line
<jhass> just use your enter key more often
<volty> yes shevy, me to hate to waste time fighting with the errors of the newest --and ruby will be the only exception
ramfjord has joined #ruby
<shevy> volty it's one reason why I tend to compile things from source. it's more work, more time is lost, but afterwards I can be sure that things work as they should
<shevy> I hate the *nix readline/inputrc crap though, it's a mess
duncannz has joined #ruby
<grieg_> shevy,jhass, what are those ways except regexp ? is_a? Integer and .class Fixnum dont see them as such
linojon has joined #ruby
<grieg_> and, jhass, i ll do as you say
<volty> i'm fine with prepackaged binaries, i used to use gentoo but meantime i realized that I can use my time on else. But of course it depends on what one has to do ... .
duncannz has quit [Client Quit]
duncannz has joined #ruby
nobitanobi has quit [Remote host closed the connection]
<TwinkleHood> Hey, anyone know why line 21 of https://coveralls.io/files/322324915 is not considered covered by https://github.com/kholbekj/bencoder/blob/master/test/test_bencoder.rb#L40 ?
<shevy> grieg_ well it depends on the setup. for instance: "abc".to_i leads to 0, so you can treat value as false, whereas string "5".to_i would lead to a Fixnum that is greater than 0, so you could check on that - in C one would typically loop through a character array
<shevy> grieg_ in general, regex is the simplest solution though
diegoviola has joined #ruby
jxf has quit [Ping timeout: 258 seconds]
<shevy> volty use a ruby package manager!
<benzrf> > 'butt'.to_i
<benzrf> >> 'butt'.to_i
<eval-in__> benzrf => 0 (https://eval.in/207609)
<benzrf> >> Integer('butt')
<eval-in__> benzrf => invalid value for Integer(): "butt" (ArgumentError) ... (https://eval.in/207610)
jhass is now known as jhass|off
<shevy> benzrf is on his way to adulthood
jhass|off is now known as jhass
<volty> shevy: like? (ruby package manager)
<shevy> volty yeah precisely :)
<shevy> volty I think there is only machomebrex
<shevy> other than that... hmmmm
<shevy> it's quite a lot of work to create one AND ensure that it works over the years, too
<TwinkleHood> Well, in the same way you can consider homebrew a ruby package manager, you could Aptitude, apt-get etc i suppose
<shevy> yeah - they build on top of dpkg
<shevy> which depends on perl
<shevy> nobody uses ruby :(
mleone has joined #ruby
mleone has quit [Client Quit]
<volty> who said that thread are real ones ?
<volty> threads
<volty> ruby threads
<shevy> on jruby I think they are
<volty> i know about jruby
sinequanon has joined #ruby
<volty> <havenwood> volty: Now they're mapped to real live native threads.
it0a has joined #ruby
spyderman4g63 has joined #ruby
nisstyre is now known as cholera-virus
whatasunnyday has joined #ruby
Zesty has quit [Quit: Linkinus - http://linkinus.com]
<volty> havenwood: i don't see what it is about, i can write multithread in c++ that activates real threads that are going to activate all of the fans there ...
lemur has quit [Remote host closed the connection]
skolman has quit [Remote host closed the connection]
nfk has quit [Quit: yawn]
skolman_ has joined #ruby
pu22l3r has joined #ruby
spyderman4g63 has quit [Ping timeout: 240 seconds]
i_s has joined #ruby
kireevco has quit [Quit: Leaving.]
gr33n7007h has joined #ruby
StephenA1 has joined #ruby
<volty> you can do it with ruby too: spawning extra real processes. I find that article misleading (about who is to blame for the thread slicing)
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
skolman_ has quit [Ping timeout: 250 seconds]
<jhass> grieg_: I guess you intend something like http://paste.mrzyx.de/p30f2b42b/ ;)
NoNMaDDeN has joined #ruby
end_guy has quit [Ping timeout: 264 seconds]
M3M0CooL has quit []
<StephenA1> Any of your ruby devs ever get into the argument about "done better than perfect"?
<StephenA1> "Complete vs Completeness"
i_s has quit [Ping timeout: 246 seconds]
kireevco has joined #ruby
<gr33n7007h> I need some help getting this to work? #=> https://github.com/tiagotobias2003/rbluez
<volty> StephenA1: heh?
linojon has quit [Quit: linojon]
<gr33n7007h> any help appreciated :)
<grieg_> jhass i bet i do, but i ll look into that doc only after i solve it myself, not to spoil :). To answer you - here is what i did in c++ and this i'm trying to replicate on ruby http://pastebin.com/EtkjN1S3
<StephenA1> Any of your work in consulting?
<StephenA1> Where you work by the hour
<volty> in the kitchen
<StephenA1> someone gives your N hours to do a report about your app. You write the report by you only get the table of contents done because "you ran out of time"
<jhass> grieg_: so literally converting C++ code to ruby. And I already wondered about all those forward definitions :P
<StephenA1> But your TOC is very detailed / top quality.
linojon has joined #ruby
hanjianwei has joined #ruby
<volty> what is needed, in a unit of time, is the final product
kireevco has quit [Client Quit]
<volty> you can make masterpiece wheels but the client/boss needs a full car, even if modest
moritzs has joined #ruby
end_guy has joined #ruby
<StephenA1> The scenario that i keep seeing is that if you have to explain what the app does and the app has 5 sections to write about, the person(s) will write each section 1 at a time. Then half way through they run out of budget. The over 2 or 3 sections are completely incomplete. Not even started. But they have the first two sections and they are very detailed
<StephenA1> The dev knows from the beigning they wont have time. And rather than modifying the level of detail and quality to provide a “Done” report, they make the first 1/2 perfect with the last half totally incomplete
<volty> that's the adam smith's real life competition - some will do it, and some will not
<StephenA1> Have any good analogies?
<StephenA1> I like your full car even if modest example
<StephenA1> any others?
jlast has joined #ruby
<volty> peeling potatoes, you can peel 1 kg perfectly, you can peel 10 kg superficially
<StephenA1> lol
jottr_ has joined #ruby
<StephenA1> Have you experienced this mentality?
felipecvo has joined #ruby
<volty> every time i go to a restaurant
<volty> how much sweat, of the pure working under-class, dropped on those potatoes
<pontiki> StephenA1: "better is the enemy of done" -- a frequently stated thing p.much all through my career
<volty> pontiki: go with that one into #haskell :) :)
jlast has quit [Ping timeout: 255 seconds]
<pontiki> no thanks
rkalfane has quit [Quit: Textual IRC Client: www.textualapp.com]
spastorino has quit [Quit: Connection closed for inactivity]
agjacome has joined #ruby
<volty> StephenA1: try asking the same question in #haskell, i'm sure that they will tell you that even the toc was too much
<pontiki> it's p.much concurrent with "get coding, we'll figure out what the product is later"
HewloThere has joined #ruby
jottr_ has quit [Ping timeout: 246 seconds]
<HewloThere> Hey guys, are there any good Ruby purely blog softwares out there that simply provide the functionality and no style?
tylersmith has quit [Read error: Connection reset by peer]
<volty> HewloThere: there are (used to be), but you'd better google for that
<pontiki> if you remove main.css from jekyll's newly built site, you're quite there
StephenA1 has quit [Remote host closed the connection]
<volty> stephen gone to finish that app doc :)
mercwithamouth has joined #ruby
fabrice31 has joined #ruby
<volty> yes, pontiki's right, i was adjusting my personal css (to override the rubbish colors of many sites) to discover, at the end, by a mistake, that an empty css was enough :)
agjacome_ has joined #ruby
<HewloThere> < pontiki > was that directed at me before? =P
<pontiki> ya
<HewloThere> Oh. Lol.
<HewloThere> pontiki, is this what you're talking about? http://jekyllrb.com/
<pontiki> yus
agjacome has quit [Ping timeout: 272 seconds]
<HewloThere> Ruby/OR doesn't require anything to start it right? For example, with some JS things, npm start.
gr33n7007h has quit [Ping timeout: 255 seconds]
weemsledeux has joined #ruby
gr33n7007h has joined #ruby
ChoiKyuSang has quit [Ping timeout: 255 seconds]
fabrice31 has quit [Ping timeout: 246 seconds]
Photism has quit [Quit: Leaving]
<pontiki> rails comes packages with a server, but it's not one you'd want to use in production, typically
it0a has quit [Ping timeout: 245 seconds]
gr33n7007h has quit [Changing host]
gr33n7007h has joined #ruby
mosc_ has joined #ruby
Snowstormer has quit [Ping timeout: 245 seconds]
Snowstormer has joined #ruby
<volty> are the gems cross-checked (for security, etc) ?
eka has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
sinequanon has quit [Remote host closed the connection]
<pontiki> no
sinequanon has joined #ruby
<pontiki> that is, i haven't any clue
it0a has joined #ruby
hanjianwei has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mercwithamouth has quit [Ping timeout: 265 seconds]
weemsledeux has quit [Read error: Connection reset by peer]
<rpag> rails doesn't really "package a server", it just uses whatever is available, which by default would be webrick from the stdlib
<pontiki> well there's something. i didn't even know webrick was stdlib :)
sinequanon has quit [Ping timeout: 272 seconds]
twistedpixels is now known as zz_twistedpixels
<rpag> yeah, it even has its own API for building web apps
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby
agjacome has joined #ruby
boombadaroomba has joined #ruby
mary5030 has quit [Remote host closed the connection]
autonomousdev has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<gizmore> interesting
<gizmore> i have a chatbot that will support plugins via www
tyll_ has joined #ruby
<gizmore> probably i need webrick + rubymyadmin
NoNMaDDeN has quit [Remote host closed the connection]
Dude007 has quit [Remote host closed the connection]
msmith_ has quit [Remote host closed the connection]
banister has quit [Ping timeout: 244 seconds]
volty has quit [Quit: Konversation terminated!]
phutchins has joined #ruby
agjacome_ has quit [Ping timeout: 260 seconds]
IceDragon has quit [Ping timeout: 250 seconds]
agjacome has quit [Client Quit]
tyll has quit [Ping timeout: 258 seconds]
<pontiki> lol, i'm watching this old Gary Numan music video; he looks like Sheldon Cooper...
Cyrax_ has joined #ruby
boombadaroomba has quit [Ping timeout: 260 seconds]
<pontiki> i wonder if Jim Parsons knows this
payne has joined #ruby
threesixes has quit [Remote host closed the connection]
IceDragon has joined #ruby
x77686d has joined #ruby
davidhq has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
xymbol_ has joined #ruby
xymbol has quit [Read error: Connection reset by peer]
St_Marx has quit [Quit: Ex-Chat]
mikecmpbll has quit [Quit: i've nodded off.]
<shevy> more code, less Sheldon Cooper admiration!
charliesome has joined #ruby
zz_twistedpixels is now known as twistedpixels
<gizmore> shevy: less code, more tests
<gizmore> i am working on a javascript app again... and wrote a unit test!
<gizmore> my first test, heyhey
<gizmore> > assertTrue(!!true)
whatasunnyday has quit [Quit: whatasunnyday]
<pontiki> watching a playlist of 80's one-hit wonders
<shevy> gizmore what do you use for tests?
<shevy> pontiki rick roll?
<gizmore> shevy: dojo object harness (doh)
<shevy> no sorry
<shevy> gizmore I meant for ruby
<gizmore> shevy: ruby does not need tests
<gizmore> it is hard to write bad code in ruby
thsig_ has quit [Remote host closed the connection]
<gizmore> read: i never wrote a ruby test
<pontiki> lol, probably the one place it would be appropriate, shevy
<gizmore> join #ricergame for my ruby bot (or icq)
<shevy> I can write bad code in every language out there
<gizmore> shevy: yeah, you showed us
<pontiki> how do you know if you're writing bad code in brainfuck or Oook! ?
<gizmore> pontiki: by size and overall quality
weemsledeux has joined #ruby
<pontiki> what are you using as criteria in those cases?
<gizmore> common sense
<pontiki> hahahaha
<pontiki> no such thing
<pontiki> no really
<gizmore> i feel sorry for you
<pontiki> not as much as i enjoy laughing at you
<gizmore> ;)
earfin_ has quit [Ping timeout: 265 seconds]
<gizmore> monkey island I
drawingthesun has joined #ruby
<gizmore> let the swordfights begin
<shevy> your mother was a hamster
banister has joined #ruby
<gizmore> pontiki: you fight like a cow
<pontiki> you are a cow
<shevy> gizmore and you smell like one!
chrishough has joined #ruby
weemsledeux has quit [Client Quit]
<gizmore> shevy: wins this round
<shevy> oh man, I feel this to be natural IRC energy now
<HewloThere> Hey guys, I was looking at Jekyll and it's not exaxtly what I was looking for. I'm not sure if I was reading it wrong or whatever, however, it separates posts by a hyperlink to the post's page. I'd rather have it in a massive long page (or pages) that have the full content or read more or something...
radic has joined #ruby
<pontiki> HewloThere: jekyll does it how you write it to
<HewloThere> Oh. Really?
<pontiki> yeah, really
emmesswhy has joined #ruby
<gizmore> pebdau? - problem between documentation and user?
<HewloThere> Oh... I'll have a looksy. =)
<pontiki> it's a static site generator that is blog-aware
<HewloThere> Does it need a database?
<pontiki> no, it's a static site
<HewloThere> Right.
<HewloThere> If it's static, I presume it takes info from .txt or .md files then?
<pontiki> yes
thsig has joined #ruby
<HewloThere> Do you know anything similar to Jekyll with a web-based posting thing?
freerobby has quit [Quit: Leaving.]
<pontiki> oh, do you mean like you post and edit from your browser?
<HewloThere> Yep.
<pontiki> ah
radic_ has quit [Ping timeout: 250 seconds]
<HewloThere> Rather than log in to FTP or something and make an MD file.
<shevy> hey that is not so difficult
echevemaster has quit [Quit: Leaving]
<shevy> you just write a ruby-ftp script
<pontiki> i don't off the top of my head, but take a look at ruby-toolbox.com and look for blog software
<HewloThere> It is if it's for professional website.
<shevy> I have had written one ftp_upload
<HewloThere> What do you mean by that?
<shevy> ftp handling :)
cholera-virus is now known as nisstyre
<pontiki> um, it's a web site that compares ruby gems by popularity, usage, and activity?
<shevy> used the well established TIOBE measurement
<HewloThere> What pontiki?
<gizmore> pontiki: github?
<pontiki> ruby-toolbox, HewloThere
<HewloThere> I know.
<HewloThere> I'm looking at that.
thsig has quit [Ping timeout: 245 seconds]
jlast has joined #ruby
NoNMaDDeN has joined #ruby
<HewloThere> Maybe I could use Jekyll and make a page for a markdown editor to log in to?
whatasunnyday has joined #ruby
whatasunnyday has quit [Client Quit]
havenwood has quit [Remote host closed the connection]
jlast has quit [Ping timeout: 258 seconds]
pu22l3r has quit [Remote host closed the connection]
mercwithamouth has joined #ruby
diegoviola has quit [Remote host closed the connection]
davidhq has joined #ruby
jxf has joined #ruby
rpag has quit [Ping timeout: 260 seconds]
benzrf is now known as benzrf|offline
Soda has quit [Remote host closed the connection]
IceDragon has quit [Ping timeout: 260 seconds]
IceDragon has joined #ruby
BTRE has quit [Quit: Leaving]
havenwood has joined #ruby
mercwithamouth has quit [Ping timeout: 272 seconds]
jhass is now known as jhass|off
ndrei has quit [Ping timeout: 244 seconds]
fandi has quit [Ping timeout: 245 seconds]
kaspergrubbe has joined #ruby
lemur has joined #ruby
davidhq has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bmurt has quit []
earfin has joined #ruby
kaspergrubbe has quit [Ping timeout: 250 seconds]
havenwood has quit [Remote host closed the connection]
<epitron> >> (1..36).reduce(:+)
<eval-in__> epitron => 666 (https://eval.in/207612)
<epitron> number sequence of the beast!
havenwood has joined #ruby
jlast has joined #ruby
skolman_ has joined #ruby
oleo__ has joined #ruby
oleo is now known as Guest7168
nobitanobi has joined #ruby
havenwood has quit [Remote host closed the connection]
kireevco has joined #ruby
charliesome has quit [Quit: zzz]
knightblader has joined #ruby
spicerack has joined #ruby
Guest7168 has quit [Ping timeout: 246 seconds]
knightblader has quit [Client Quit]
<shevy> you are so devilish epitron
Left_Turn has quit [Remote host closed the connection]
<epitron> }:)
freerobby has joined #ruby
knightblader has joined #ruby
freerobby has quit [Client Quit]
c107 has quit [Remote host closed the connection]
braincrash has quit [Quit: bye bye]
mercwithamouth has joined #ruby
earfin has quit [Quit: Leaving]
AlSquire has quit [Read error: No route to host]
toretore has quit [Read error: Connection reset by peer]
AlSquire has joined #ruby
i_s has joined #ruby
kedare has quit [Ping timeout: 246 seconds]
toretore has joined #ruby
Esya has quit [Ping timeout: 258 seconds]
braincrash has joined #ruby
atmosx has quit [Ping timeout: 264 seconds]
atmosx has joined #ruby
atmosx has quit [Remote host closed the connection]
atmosx has joined #ruby
Esya has joined #ruby
i_s has quit [Ping timeout: 258 seconds]
chrishough has quit [Quit: Textual IRC Client: www.textualapp.com]
mercwithamouth has quit [Ping timeout: 260 seconds]
spyderman4g63 has joined #ruby
knightblader has quit [Quit: WeeChat 0.3.7]
Juanchito has quit [Quit: Connection closed for inactivity]
Channel6 has joined #ruby
davedev24_ has quit [Read error: Connection reset by peer]
davedev24_ has joined #ruby
skinny_much has joined #ruby
spyderman4g63 has quit [Ping timeout: 245 seconds]
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #ruby
tlarevo has joined #ruby
BTRE has joined #ruby
mercwithamouth has joined #ruby
jottr_ has joined #ruby
Cache_Money has joined #ruby
<HewloThere> Hey, I'm aware this is Ruby. I'm trying to find a blog software/engine that has a web-based markdown editor. Similar to Ghost, but without JavaScript and doesn't require commands to start it. I frankly don't care if it has a database or not, but they are pretty much always better if they do. I'd like it to be barebones that just has things like {{post}} to insert it in a page, etc. Sorry for posting in Ruby.
msmith_ has joined #ruby
<grieg_> jhass|off, shevy, your support is much appreciated. I finished http://pastebin.com/W0q5au5M . Damn, were all those little buggies in the end annoying!
sevvie has quit [Ping timeout: 240 seconds]
<gizmore> HewloThere: use php
<gizmore> you can easily write a markdown parser with a preg_replace
<HewloThere> gizmore, I mean an already existing one I can simply style and insert into pages...
<gizmore> use js?
<HewloThere> Then I need to have like npm or something.
jottr_ has quit [Ping timeout: 255 seconds]
<Nilium> Speaking of javascript, I rewrote an entire work project in LiveScript.
<Nilium> I'm waiting to see how hard this backfires. So far it's been going pretty well.
<gizmore> i once wrote a jquery plugin called "ghostwriter"
<HewloThere> I'm looking for something LIKE Ghost, but without all the fancy CSS, JS, etc.
<Nilium> Like I can write an entire dashes-to-camel-case function as `to-camel-case = (.replace /(?:^|-)(.)/g (m, c) -> c.to-upper-case!)`
<Nilium> And while this is cool and I can comprehend it normally, I have had half a bottle of wine and I'm pretty sure I just typed out fucking magic
td123 has joined #ruby
fabrice31 has joined #ruby
td123 has left #ruby [#ruby]
benzrf|offline is now known as benzrf
<gizmore> Nilium: do you like manowar?
<Nilium> What?
<gizmore> the metal band?
<Nilium> I don't think so
<Nilium> I've never heard of them, but if it's death metal or growly, probably no
mercwithamouth has quit [Ping timeout: 260 seconds]
<gizmore> do you like rpg or mud?
<Nilium> The only death metal I tolerate is Opeth
<Nilium> I don't know if you're referring to game genres or not
<Nilium> I never played MUDs and it depends on the kind of RPG
x77686d has quit [Quit: x77686d]
nateberkopec has quit [Quit: Leaving...]
<gizmore> i made a rpc/mud, you can play in irc
<gizmore> it´s based on shadowrun, a bit... join #shadowlamb
<Nilium> I'll pass. Not a text adventure person.
<gizmore> it´s different from all you have seen
fabrice31 has quit [Ping timeout: 265 seconds]
<gizmore> but i appreciate your cowardness
kenneth has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<HewloThere> Does anyone know of a blog engine I can format like this in a HTML, PHP, .******** page and write the rest in HTML that has a login page (can be not shown) that has a markdown page editor? http://pastebin.com/22uqYz6A
<Nilium> I have a feeling you're in the wrong room
<HewloThere> I know it's #ruby. I just like this channel, it's good.
IceDragon has quit [Read error: Connection reset by peer]
Mon_Ouie has quit [Quit: WeeChat 1.0.1]
jordsmi has quit [Quit: Leaving]
<HewloThere> If ANYONE can help me even though this is the wrong channel, I would be very much appreciative.
lemur has quit [Remote host closed the connection]
aotianlong has joined #ruby
lemur has joined #ruby
rossgeesman has joined #ruby
aotianlong has left #ruby [#ruby]
<benzrf> HewloThere: your question confuses me
<HewloThere> benzrf, have you heard of "Ghost"?
<benzrf> no
soulcake has quit [Quit: Quack.]
lemur has quit [Ping timeout: 255 seconds]
soulcake has joined #ruby
rossgeesman has quit [Ping timeout: 250 seconds]
<Nilium> HewloThere: My blog engine does that, but I don't think anyone sane would use that seeing as I wrote it and use it
kenneth has joined #ruby
iamjarvo has joined #ruby
kireevco has quit [Quit: Leaving.]
x77686d has joined #ruby
NoNMaDDeN has quit [Remote host closed the connection]
NoNMaDDeN has joined #ruby
grieg_ is now known as grieg
sinequanon has joined #ruby
lemur has joined #ruby
AndChat| has joined #ruby
Scotteh has quit [Ping timeout: 246 seconds]
klmlfl has joined #ruby
lkba has quit [Ping timeout: 272 seconds]
skolman_ has quit [Remote host closed the connection]
AndyBotwin has joined #ruby
skolman_ has joined #ruby
arescorpio has quit [Excess Flood]
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<HewloThere> Nilium, can I at least try it out...?
<Nilium> https://github.com/nilium/oaktree ← You can if you want, but I ain't promising anything.
klmlfl has quit [Ping timeout: 246 seconds]
skolman_ has quit [Ping timeout: 246 seconds]
jlast has quit [Read error: Connection reset by peer]
<shevy> ok he is on it
<HewloThere> Nilium, what packages do I need? I've got a fresh install of CentOS with LAMP.
emmesswhy has quit [Quit: This computer has gone to sleep]
jlast has joined #ruby
<Nilium> You install it with gem and run it.
<Nilium> And then you rsync the results.
<Nilium> Or use some other thing, but I use rsync.
NoNMaDDeN has quit [Remote host closed the connection]
ChoiKyuSang has joined #ruby
emmesswhy has joined #ruby
wicked_shell has joined #ruby
<agent_white> Good evenin'
Atttwww has joined #ruby
NoNMaDDeN has joined #ruby
narcan has joined #ruby
<pontiki> hi agent_white
Zettam has quit [Read error: Connection reset by peer]
<agent_white> \o
<nobitanobi> How is it possible that using RVM, if I am in a particular directory and I do 'rvm gemset list' I see a set of gemsets, but if I navigate to another directory, I don't see them?
Guest63337 has joined #ruby
<Guest63337> are there any good libraries or tools for static analysis, contracts, type annotations, etc...
<Guest63337> anything to improve safety outside of texting?
<Guest63337> *testing
Alayde_ has joined #ruby
scruple has joined #ruby
mercwithamouth has joined #ruby
<Alayde_> For the sake of writing a script that contains multiple methods that will all read the same variable, is it better to have everything in a class or turn that one variable into a global variable?
Channel6 has quit [Quit: Leaving]
<Guest63337> Alayde_: depends on if you ever plan to modify it
<pontiki> turn it into a method, and you can implement it however you wish underneath
<Guest63337> global variables are hard to deal with when changing code
<Alayde_> Guest63337: good call, I hadn't really thought of that
goodenough has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
<Alayde_> I may end up re-architecting this script a bit.
<Nilium> Just do a complete rewrite every 6 months to be safe and keep everyone on their toes
<Alayde_> lmao, I like the way you think
<pontiki> ah, too bad avdi's barewords tapas is paid only
grieg has quit [Changing host]
grieg has joined #ruby
Riking is now known as cursed_villager
cursed_villager is now known as Cursed_Villager
lemur has quit [Read error: Connection reset by peer]
i_s has joined #ruby
lemur has joined #ruby
starless has quit [Ping timeout: 272 seconds]
moritzs has quit [Remote host closed the connection]
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
i_s has quit [Ping timeout: 260 seconds]
banister has quit [Ping timeout: 244 seconds]
mercwithamouth has quit [Ping timeout: 255 seconds]
Cursed_Villager is now known as Riking
nobitanobi has quit []
Alayde_ has quit [Ping timeout: 250 seconds]
kenndel has quit [Read error: Connection reset by peer]
klmlfl has joined #ruby
mikecmpbll has joined #ruby
mikecmpbll has quit [Client Quit]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
banister has joined #ruby
jottr_ has joined #ruby
mercwithamouth has joined #ruby
sinequanon has quit [Remote host closed the connection]
goodenough has quit [Remote host closed the connection]
goodenough has joined #ruby
weaksauce has quit [Quit: Textual IRC Client: www.textualapp.com]
klmlfl has quit [Ping timeout: 255 seconds]
HewloThere has left #ruby ["Leaving"]
spyderman4g63 has joined #ruby
jottr_ has quit [Ping timeout: 255 seconds]
Techguy305 has joined #ruby
goodenough has quit [Ping timeout: 240 seconds]
mercwithamouth has quit [Ping timeout: 246 seconds]
fabrice31 has joined #ruby
j_mcnally has joined #ruby
ylluminarious has quit [Quit: Leaving...]
spyderman4g63 has quit [Ping timeout: 255 seconds]
spastorino has joined #ruby
renderful has joined #ruby
mmochan_ has quit [Quit: Connection closed for inactivity]
fabrice31 has quit [Ping timeout: 260 seconds]
lw has joined #ruby
msmith_ has quit [Remote host closed the connection]
renderful has quit [Ping timeout: 245 seconds]
NoNMaDDeN has quit [Remote host closed the connection]
benzrf is now known as benzrf|offline
fandi has joined #ruby
narcan has joined #ruby
Techguy305 has quit [Ping timeout: 245 seconds]
gsd has joined #ruby
az7ar has joined #ruby
mercwithamouth has joined #ruby
j_mcnally has quit [Read error: Connection reset by peer]
Channel6 has joined #ruby
az7ar has quit [Remote host closed the connection]
az7ar has joined #ruby
az7ar has quit [Client Quit]
az7ar has joined #ruby
pu22l3r has joined #ruby
gsd has quit [Ping timeout: 260 seconds]
az7ar has quit [Remote host closed the connection]
mikepack has quit [Remote host closed the connection]
Vile` has quit [Remote host closed the connection]
jlast has quit [Remote host closed the connection]
luckyruby has joined #ruby
Vile` has joined #ruby
pu22l3r has quit [Ping timeout: 250 seconds]
<jeaye> On my Linux machine (ruby 2.1.3p242), I can `require './bin/foo'` where ./bin/foo.so is a native C shared object. On my OS X machine (2.1.3p242), after compiling the same shared object, any time I try to `require './bin'foo'` it is never found. Ideas?
Techguy305 has joined #ruby
fredsir has quit []
banister has quit [Ping timeout: 265 seconds]
msmith_ has joined #ruby
starless has joined #ruby
msmith_ has quit [Ping timeout: 244 seconds]
lxsameer has joined #ruby
nobitanobi has joined #ruby
j_mcnally has joined #ruby
<jeaye> Note that `require_relative 'bin/foo'` also works on Linux, while it fails the same way on OS X.
wldcordeiro has joined #ruby
alem0lars has joined #ruby
rossgeesman has joined #ruby
TheNet has joined #ruby
mosc_ has quit [Read error: Connection reset by peer]
wldcordeiro has quit [Remote host closed the connection]
mercwithamouth has quit [Ping timeout: 260 seconds]
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
banister has joined #ruby
goodenough has joined #ruby
starkhalo has quit [Ping timeout: 265 seconds]
Xiti` has joined #ruby
Xiti` has quit [Changing host]
Xiti` has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
narcan has joined #ruby
Xiti has quit [Ping timeout: 255 seconds]
iamjarvo has joined #ruby
iamjarvo has quit [Max SendQ exceeded]
jlast has joined #ruby
MasterPiece has joined #ruby
iamjarvo has joined #ruby
nobitanobi has quit []
anaeem1_ has joined #ruby
jlast has quit [Ping timeout: 260 seconds]
Xiti` has quit [Quit: Leaving]
Xiti has joined #ruby
goodenough has quit [Remote host closed the connection]
goodenough has joined #ruby
parduse has quit [Ping timeout: 255 seconds]
NoNMaDDeN has joined #ruby
spicerack has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
parduse has joined #ruby
starless has quit [Quit: WeeChat 1.0.1]
weemsledeux has joined #ruby
goodenough has quit [Ping timeout: 244 seconds]
goodenough has joined #ruby
mercwithamouth has joined #ruby
qmfnp has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
MasterPiece has left #ruby ["Leaving"]
renier has quit [Quit: Textual IRC Client: www.textualapp.com]
lw has quit [Quit: s]
ndrei has joined #ruby
<shevy> class RandomSubclass < [Array, Hash, String, Fixnum, Float, TrueClass].sample
Joufflu has joined #ruby
rippa has joined #ruby
<jeaye> Solved the issue. OS X looks for native objects with the .bundle extension, not .so -_-
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Hanmac> shevy that RandomSubclass is also dumb because in 50% of the cases with FixNum/Float&TrueCalss you cant make an instant ;P
i_s has joined #ruby
Mon_Ouie has joined #ruby
az7ar has joined #ruby
BTRE has quit [Ping timeout: 272 seconds]
<shevy> people look at features like a present
<shevy> they wanna open the present
br1ckd has joined #ruby
br1ckd has left #ruby [#ruby]
br1ckd has joined #ruby
rshetty has joined #ruby
<Hanmac> shevy today i will push a new version of rwx ... hm i will call it 0.0.1.1-dev ;P
<shevy> ok
i_s has quit [Ping timeout: 255 seconds]
<shevy> I will test it once it was pushed
phrozen77 has joined #ruby
phrozen77 has quit [Changing host]
<Hanmac> shevy ps they also fixed the gst problem in wx so you might be able to build wx if gst is missing or not the correct version
vyorkin has quit [Ping timeout: 272 seconds]
<shevy> \o/
end_guy has quit [Remote host closed the connection]
end_guy has joined #ruby
rshetty has quit [Remote host closed the connection]
rshetty has joined #ruby
klmlfl has joined #ruby
BTRE has joined #ruby
<csmrfx> shevy: holy cow whats that
kobain has quit [Quit: KVIrc 4.1.3 Equilibrium http://www.kvirc.net/]
<shevy> csmrfx lol
<shevy> some guy posted it
jottr_ has joined #ruby
agent_white has quit [Ping timeout: 258 seconds]
rshetty_ has joined #ruby
rshetty has quit [Read error: No route to host]
rossgeesman has quit [Remote host closed the connection]
<csmrfx> yes, and wow - 2 years ago
klmlfl has quit [Ping timeout: 240 seconds]
<shevy> ruby: error while loading shared libraries: libglib-2.0.so.0: cannot open shared object file: No such file or directory
<shevy> huh
<shevy> why does my ruby have a dependency on libglib
Channel6 has quit [Remote host closed the connection]
jottr_ has quit [Ping timeout: 260 seconds]
Soda has joined #ruby
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
User458764 has joined #ruby
fabrice31 has joined #ruby
rshetty_ has quit [Remote host closed the connection]
rshetty has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
wicked_shell has quit [Ping timeout: 272 seconds]
<csmrfx> GLib provides advanced data structures, such as memory chunks, doubly and singly linked lists, hash tables, dynamic strings and string utilities, such as a lexical scanner, string chunks (groups of strings), dynamic arrays, balanced binary trees, N-ary trees, quarks (a two-way association of a string and a unique integer identifier), keyed data lists, relations and tuples.
<csmrfx> and more
Deejay_ has joined #ruby
<csmrfx> this is up to date, actually http://en.wikipedia.org/wiki/GLib
fabrice31 has quit [Ping timeout: 240 seconds]
<Hanmac> hm yes but shevy is wondering why his ruby does say it needs it
goodenough has quit [Remote host closed the connection]
<csmrfx> hashes?
<csmrfx> string reversal?
<csmrfx> etc.
goodenough has joined #ruby
jlast has joined #ruby
rshetty has quit [Ping timeout: 272 seconds]
mdw has joined #ruby
<Mon_Ouie> Ruby has its own implementation of hash tables, etc. and uses yacc/bison for generating its parser tough
Lucky__ has joined #ruby
arup_r has joined #ruby
carif has quit [Ping timeout: 255 seconds]
<csmrfx> well I'm hardly an expert but looking at glib it provides mountains of fun
weemsledeux has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<shevy> no
a____ has quit [Ping timeout: 250 seconds]
<shevy> I am pretty sure that my older ruby did not have links shown by ldd towards glib
<shevy> could this be because of tcl/tk? then again harfbuzz is also there... and libXrender... what the...
<csmrfx> maybe you can ack-grep all the references to glib from source
spyderman4g63 has joined #ruby
psy_ has quit [Ping timeout: 245 seconds]
goodenough has quit [Ping timeout: 246 seconds]
<Mon_Ouie> Maybe standard C extensions have been linked in statically?
psy_ has joined #ruby
jlast has quit [Ping timeout: 260 seconds]
kaspergrubbe has joined #ruby
<shevy> hmmmm
mdw has quit [Ping timeout: 260 seconds]
<shevy> let's see what happens when I compile anew
<csmrfx> hmm, lets see the debian ruby source code
spyderman4g63 has quit [Ping timeout: 246 seconds]
br1ckd has quit [Quit: leaving]
yfeldblum has quit [Ping timeout: 272 seconds]
kaspergrubbe has quit [Remote host closed the connection]
banister has joined #ruby
wicked_shell has joined #ruby
emmesswhy has joined #ruby
bluOxigen has joined #ruby
tester has joined #ruby
hellangel7 has joined #ruby
<csmrfx> ah
carif has joined #ruby
<shevy> wat
<shevy> I just finished compiling
hellangel7 has quit [Max SendQ exceeded]
hellangel7 has joined #ruby
Techguy305 has quit [Ping timeout: 272 seconds]
<csmrfx> lol
<csmrfx> I didn't get far
<csmrfx> but, I can't find glib references in ruby 1.9.1 code
<csmrfx> (thats default ruby for my debian acienne)
<shevy> the new one has this: http://pastie.org/pastes/9660312/text
<shevy> yeah
zorak8 has quit [Ping timeout: 255 seconds]
<shevy> something sneaked in all those dependencies on my ruby
<shevy> does ruby-gnome do that?
<csmrfx> the wikipedia article says that libglib is low lever, and gtk+ has been taken out of it
explodes has joined #ruby
msmith_ has joined #ruby
<explodes> why is this wrong http://pastie.org/9660313
<explodes> it looks like valid syntax to me
<explodes> Anyone.
<explodes> its 3 lines of code
<explodes> nothing complicated
jcdesimp has quit [Quit: Leaving...]
<explodes> simply wondering why the lexer is breaking
<csmrfx> dont tell us the error
<csmrfx> we will hire a psychic
<explodes> 1-800-miss-cleo
<csmrfx> and guess until the cows come home
<csmrfx> or, just put you on ignore
<explodes> All of the code is:
<explodes> def validate_username (name) true end
ferr has joined #ruby
msmith_ has quit [Ping timeout: 255 seconds]
<explodes> ...lol
<Mon_Ouie> Yes, and those three lines cause no parse errors
<shevy> explodes why did you link to w3 man
<shevy> THERE IS RUBY IN THE URL!!!
Xeago has joined #ruby
kenneth has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<shevy> explodes your comment causes the problem
<explodes> how so?
cmckee has joined #ruby
<shevy> because the ruby parser does not like it
<explodes> Also, when I remove the comment, I get the same error
<shevy> nope
<explodes> Click the w3 link
<shevy> you fixed it
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
<shevy> why would anyone click on w3?
<explodes> That's the lexer that breaks with my code
<explodes> The code sample is embedded in the URL
explodes has quit [Quit: Page closed]
emmesswhy has quit [Quit: This computer has gone to sleep]
kenneth has joined #ruby
<cmckee> Hes so frustrated over this bit of code.
<cmckee> Python dev trying to tackle ruby and Rails for first time.
<csmrfx> debian source code archives can declare a magnificent victory over me
<csmrfx> I cannot download the source, so glib remains a mystery
AndyBotwin has quit [Ping timeout: 240 seconds]
zzach has joined #ruby
AndyBotwin has joined #ruby
* csmrfx forehead slap
<csmrfx> never mind, such brainfardzing
<Mon_Ouie> https://github.com/ruby/ruby/search?utf8=✓&q=glib pretty sure ruby doesn't use it directly
relix has joined #ruby
<shevy> no csmrfx
<shevy> as I wrote above
<shevy> <shevy> something sneaked in all those dependencies on my ruby
yfeldblum has joined #ruby
<csmrfx> yes, shevy
marr has joined #ruby
<shevy> I suspect some GUI related stuff did it
<csmrfx> and those "somethings" I have outputted to this pastie http://pastie.org/9660322
<csmrfx> hapy noe?
<Mon_Ouie> glibc ≠ glib
<csmrfx> test_gem_commands_which_command.rb
<Mon_Ouie> (the glibc is just the GNU implementation of libc)
Joufflu_ has joined #ruby
ferr has quit [Ping timeout: 250 seconds]
AndyBotwin has quit [Max SendQ exceeded]
<Mon_Ouie> Well that's, a unit test to check what happens when a lib is missing, hence 'missinglib'
<csmrfx> lol can you tell my morning coffee is yet to finish
* csmrfx goes back to square one
<csmrfx> although, what I think I just learned, is that at least glib dep is not in libruby2.1
<shevy> csmrfx well that is glibc
emmesswhy has joined #ruby
AndyBotwin has joined #ruby
oo_ has joined #ruby
<shevy> the thing is, I compiled both ruby from source
<shevy> though probably I now have a different set of gtk, glib etc...
<shevy> I'll switch to a new ruby later today
<shevy> I mean, newly compiled
anaeem1_ has quit [Remote host closed the connection]
Joufflu has quit [Ping timeout: 272 seconds]
klaut has joined #ruby
sigurding has joined #ruby
anaeem1_ has joined #ruby
<csmrfx> well, from libruby2.1 the number of libraries goes up exponentially so I think I'll just give it a rest
cmckee has quit [Quit: cmckee]
AndyBotwin has quit [Max SendQ exceeded]
TheNet has quit [Quit: Leaving...]
spastorino has quit [Quit: Connection closed for inactivity]
AndyBotwin has joined #ruby
ferr has joined #ruby
anaeem1_ has quit [Ping timeout: 245 seconds]
klaut has quit [Ping timeout: 272 seconds]
AndyBotwin has quit [Max SendQ exceeded]
rossgeesman has joined #ruby
AndyBotwin has joined #ruby
cmckee has joined #ruby
tester has quit [Ping timeout: 246 seconds]
bfrizzle_ has quit [Quit: leaving]
rossgeesman has quit [Ping timeout: 260 seconds]
lolmaus has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
kostadinss has joined #ruby
oleo__ is now known as oleo
maletor has joined #ruby
it0a has quit [Ping timeout: 240 seconds]
wicked_shell has quit [Ping timeout: 265 seconds]
jlast has joined #ruby
arup_r has quit [Quit: Leaving.]
ferr has quit [Ping timeout: 272 seconds]
davedev24_ has quit [Remote host closed the connection]
jlast has quit [Ping timeout: 272 seconds]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kostadinss has quit [Quit: Leaving]
<epitron> shevy: hah, i like that nested hash trick from the Ruby tricks stackoverflow
defrang has joined #ruby
<epitron> >> nested = Hash.new {|h,k| h[k] = Hash.new(&h.default_proc)}; nested[1][2][3][4] = :yay; nested
<eval-in__> epitron => {1=>{2=>{3=>{4=>:yay}}}} (https://eval.in/207645)
<epitron> hmmm... i wonder how you could split a string and apply its elements in a sequence like that
danguita has quit [Quit: WeeChat 0.4.2]
kostadinss has joined #ruby
<epitron> the best way i can come up with is eval :)
<epitron> oic, inject
banister has joined #ruby
charliesome has joined #ruby
<epitron> >> nested = Hash.new {|h,k| h[k] = Hash.new(&h.default_proc)}; path = "a/b/c/d/e"; path.split("/").inject(nested) { |hash, string| hash[string] }; nested
<eval-in__> epitron => {"a"=>{"b"=>{"c"=>{"d"=>{"e"=>{}}}}}} (https://eval.in/207646)
<epitron> >> nested = Hash.new {|h,k| h[k] = Hash.new(&h.default_proc)}; paths = %w[/usr/lib /usr/bin /usr/lib64 /usr/src /home/awesome]; paths.each { |path| path.split("/").inject(nested) { |hash, string| hash[string] } }; nested
<eval-in__> epitron => {""=>{"usr"=>{"lib"=>{}, "bin"=>{}, "lib64"=>{}, "src"=>{}}, "home"=>{"awesome"=>{}}}} (https://eval.in/207647)
<epitron> printing that as a tree would be really easy too
davedev24_ has joined #ruby
<epitron> "tree", reimplemented in ruby, in one line of code! :D
ramfjord has quit [Ping timeout: 260 seconds]
sinkensabe has joined #ruby
<Hanmac> epitron:
<Hanmac> >> nested = Hash.new {|h,k| h[k] = Hash.new(&h.default_proc)}; paths = %w[/usr/lib /usr/bin /usr/lib64 /usr/src /home/awesome]; paths.each { |path| path.scan(/[^\/]+/).inject(nested,:[]) }; nested
<eval-in__> Hanmac => {"usr"=>{"lib"=>{}, "bin"=>{}, "lib64"=>{}, "src"=>{}}, "home"=>{"awesome"=>{}}} (https://eval.in/207648)
<epitron> hahah
<epitron> nice
j_mcnally has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Doddlin has joined #ruby
<Doddlin> Hi all! I’ve tried googling now for a while, is there an available tool for making it easy to implement bootstrap in ruby? :)
siwica has joined #ruby
i_s has joined #ruby
<epitron> Hanmac: i think it's actually a lot simpler without the initializer
teddyp1cker has joined #ruby
<epitron> >> nested = {}; paths = %w[/usr/lib /usr/bin /usr/lib64 /usr/src /home/awesome]; paths.each { |path| path.scan(/[^\/]+/).inject(nested) { |hash, dir| hash[dir] ||= {} } }; nested
<eval-in__> epitron => {"usr"=>{"lib"=>{}, "bin"=>{}, "lib64"=>{}, "src"=>{}}, "home"=>{"awesome"=>{}}} (https://eval.in/207649)
<epitron> less default_hash voodoo :)
<epitron> *default_proc
HelloFred has joined #ruby
<epitron> and inject voodoo
cmckee has quit [Quit: cmckee]
maletor has quit [Quit: Computer has gone to sleep.]
psy_ has quit [Quit: Leaving]
kostadinss has quit [Quit: Leaving]
i_s has quit [Ping timeout: 255 seconds]
Deejay_ has quit [Quit: Computer has gone to sleep.]
emmesswhy has joined #ruby
<epitron> Doddlin: do you mean rails?
<Doddlin> epitorn, yeah
<Doddlin> wrong room?
<epitron> google "rails bootstrap"
<epitron> there's plenty of things :)
<Doddlin> epitron, yeah I have but I’d love an automatic tool, can’t get it going… :(
DrCode has joined #ruby
<epitron> i mean, bootstrap isn't something that needs to be automated
<epitron> it's just a pile of CSS rules
<epitron> do you want helpers or something?
<epitron> pretty_button_for, icon_for, etc?
<Doddlin> epitron, tbh I’m completely green to ruby and rails, I want to build an app that is going to be used and I want to do it properly from start
<Doddlin> so I want to use bootstrap from the start so I can see the actual result
<epitron> hmmm
<epitron> that's a lot of things to tackle at once
<epitron> you should maybe try to learn rails by itself first
<epitron> then learn bootstrap by itself first
<epitron> then maybe combine them into a thing
<epitron> then maybe build an app that people will want to use
<epitron> :)
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Doddlin> epitron, I know, thing is time is of the essence… :P
<epitron> i mean, rails by itself is already 5 technologies in one
<epitron> if time is of the essence, don't muck around with gems. just drop boostrap into your CSS dir :)
<epitron> rails doesn't really have to know anything about boostrap
gauke has joined #ruby
<Doddlin> hmm, that might be a good one!
klmlfl has joined #ruby
x77686d has quit [Quit: x77686d]
<Doddlin> thanks epitron, will look into it!
carraroj has joined #ruby
<epitron> np
<epitron> simple is almost always better
<Doddlin> epitron, true dat!
jottr_ has joined #ruby
agent_white has joined #ruby
klmlfl has quit [Ping timeout: 245 seconds]
klaut has joined #ruby
jottr_ has quit [Ping timeout: 260 seconds]
Doddlin has quit [Quit: Doddlin]
dangerousdave has joined #ruby
fandi has quit [Remote host closed the connection]
carraroj has quit [Quit: Konversation terminated!]
psy has quit [Ping timeout: 260 seconds]
sinkensabe has quit [Remote host closed the connection]
fabrice31 has joined #ruby
spider-mario has joined #ruby
carraroj has joined #ruby
klaut has quit [Ping timeout: 240 seconds]
lele has quit [Ping timeout: 260 seconds]
rpag has joined #ruby
rshetty has joined #ruby
cmckee has joined #ruby
fabrice31 has quit [Ping timeout: 272 seconds]
carraroj has quit [Quit: Konversation terminated!]
bMalum has joined #ruby
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lele has joined #ruby
olivier_bK has joined #ruby
rossgeesman has joined #ruby
threesixes has joined #ruby
emmesswhy has quit [Quit: This computer has gone to sleep]
User458764 has quit [Ping timeout: 258 seconds]
lw has joined #ruby
schaerli has joined #ruby
HelloFred has quit [Remote host closed the connection]
KC9YDN has quit [Quit: "Let a hundred flowers bloom: let a hundred schools of thought contend." - Mao Zedong]
cmckee has quit [Quit: cmckee]
HelloFred has joined #ruby
KC9YDN has joined #ruby
jlast has joined #ruby
kaspergrubbe has joined #ruby
spyderman4g63 has joined #ruby
NoNMaDDeN has quit [Remote host closed the connection]
jlast has quit [Ping timeout: 260 seconds]
Scotteh has joined #ruby
nonks has joined #ruby
HelloFred has quit [Read error: No route to host]
spyderman4g63 has quit [Ping timeout: 260 seconds]
kyb3r_ has quit [Read error: Connection reset by peer]
HelloFred has joined #ruby
HelloFred has quit [Changing host]
HelloFred has joined #ruby
carraroj has joined #ruby
lw has quit [Quit: s]
msmith_ has joined #ruby
jxf has quit [Ping timeout: 246 seconds]
msmith_ has quit [Remote host closed the connection]
msmith_ has joined #ruby
jnollette has quit [Remote host closed the connection]
jnollette has joined #ruby
HelloFred has quit [Remote host closed the connection]
ht__th has joined #ruby
az7ar has quit [Ping timeout: 255 seconds]
HelloFred has joined #ruby
HelloFred has quit [Changing host]
HelloFred has joined #ruby
msmith_ has quit [Ping timeout: 246 seconds]
luckyruby has quit [Quit: Leaving...]
tlarevo_ has joined #ruby
tlarevo has quit [Ping timeout: 240 seconds]
mercwithamouth has quit [Ping timeout: 265 seconds]
max96at|off is now known as max96at
haroldwu has quit [Ping timeout: 240 seconds]
banister has joined #ruby
NoNMaDDeN has joined #ruby
jottr_ has joined #ruby
Takle has joined #ruby
lolmaus has quit [Ping timeout: 240 seconds]
lolmaus has joined #ruby
haroldwu has joined #ruby
HelloFred has quit [Remote host closed the connection]
fandi has joined #ruby
cmckee has joined #ruby
tyll_ has quit [Ping timeout: 240 seconds]
Deejay_ has joined #ruby
robustus is now known as robustus|Off
rshetty has quit [Remote host closed the connection]
tyll has joined #ruby
mercwithamouth has joined #ruby
oo_ has quit [Remote host closed the connection]
Dude007 has joined #ruby
jack_rabbit has quit [Ping timeout: 244 seconds]
sigurding has quit [Quit: sigurding]
gauke has quit [Quit: gauke]
az7ar has joined #ruby
NoNMaDDeN has quit [Remote host closed the connection]
Xeago has quit [Remote host closed the connection]
joshhartigan has joined #ruby
<joshhartigan> I'm quite new to Ruby, and I'm writing a script to convert a folder of MD to a folder of customised HTML, using redcarpet. When I do something like file.write("hello") it works fine, but file.write'ing rendered html doesn't work - it just doesn't output anything. Any help?
<joshhartigan> Also I've checked the rendered html's type, and it is a String.
Jackneill has joined #ruby
Deejay_ has quit [Quit: Computer has gone to sleep.]
<jle`> joshhartigan: try printing it
<jle`> and seeing if it is really an empty string
<joshhartigan> it isn't, it's proper HTML
<jle`> so when you print it, you see the right thing
<jle`> ?
oo_ has joined #ruby
<joshhartigan> yes
<jle`> it looks like it's going to be difficult to continue without seeing some actual code
<joshhartigan> e.g. <p>Blah blah, <b>foobar</b></p> etc.
<joshhartigan> sure, I'll hastebin it
rbrs has joined #ruby
mikecmpbll has joined #ruby
<joshhartigan> you can see i tried accessing htmlLine through string interpolation, but that doesn't work either
mercwithamouth has quit [Ping timeout: 240 seconds]
AndChat| has quit [Ping timeout: 272 seconds]
sigurding has joined #ruby
jzinedine has joined #ruby
<Hanmac> joshhartigan: your problem is that you use readlines
<joshhartigan> oh yeah
jzinedine has left #ruby [#ruby]
<joshhartigan> i'll try fixing that up
ptrrr has joined #ruby
dangerousdave has joined #ruby
eregon_ is now known as eregon
<joshhartigan> wait - how else could I access each line?
<Hanmac> joshhartigan: hm you dont md > html should be done per file and not per line ... (or why do you want to do it per line?)
weeb1e has joined #ruby
<joshhartigan> I couldn't find per-file usage in the redcarpet docs
jhass|off is now known as jhass
cmckee has quit [Quit: cmckee]
carraroj has quit [Ping timeout: 272 seconds]
<Hanmac> joshhartigan: hm i dont have redcarpet there but what does this do for you? File.write(File.join(htmlFiles,File.basename(file).sub(".md",".html")), markdown.render(File.read(file)))
<joshhartigan> let me try that
Dude007_ has joined #ruby
Dude007 has quit [Read error: Connection reset by peer]
Stalkr_ has joined #ruby
Stalkr_ has joined #ruby
<joshhartigan> Hanmac: that works. thank you :)
jlast has joined #ruby
joshhartigan has left #ruby [#ruby]
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jlast has quit [Ping timeout: 260 seconds]
tkuchiki has joined #ruby
sevenseacat has joined #ruby
toretore has quit [Quit: This computer has gone to sleep]
chipotle has joined #ruby
i_s has joined #ruby
thsig has joined #ruby
vinleod has joined #ruby
St_Marx has joined #ruby
i_s has quit [Ping timeout: 250 seconds]
Stalkr^ has joined #ruby
schaerli has quit [Remote host closed the connection]
schaerli has joined #ruby
duncannz has quit [Remote host closed the connection]
psy has joined #ruby
siwica has quit [Ping timeout: 250 seconds]
Stalkr_ has quit [Ping timeout: 258 seconds]
klmlfl has joined #ruby
schaerli has quit [Remote host closed the connection]
schaerli has joined #ruby
bMalum has quit [Quit: bMalum]
siwica has joined #ruby
Joufflu_ has quit [Read error: Connection reset by peer]
klmlfl has quit [Ping timeout: 255 seconds]
User458764 has joined #ruby
apeiros has quit [Remote host closed the connection]
apeiros has joined #ruby
schaerli has quit [Remote host closed the connection]
Takle has quit [Remote host closed the connection]
sinkensabe has joined #ruby
kirun has joined #ruby
teddyp1cker has quit [Remote host closed the connection]
teddyp1cker has joined #ruby
Takle has joined #ruby
fabrice31 has joined #ruby
wicked_shell has joined #ruby
banister has joined #ruby
teddyp1cker has quit [Ping timeout: 260 seconds]
marr has quit [Read error: Connection reset by peer]
jacobat has joined #ruby
fabrice31 has quit [Ping timeout: 272 seconds]
tkuchiki has quit [Remote host closed the connection]
tkuchiki has joined #ruby
teddyp1cker has joined #ruby
Takle has quit [Remote host closed the connection]
Takle has joined #ruby
tkuchiki has quit [Ping timeout: 245 seconds]
zaid_h has joined #ruby
chipotle has quit [Quit: cya]
banister is now known as banisterfiend
nfk has joined #ruby
thsig_ has joined #ruby
Takle has quit [Ping timeout: 260 seconds]
eka has joined #ruby
x77686d has joined #ruby
jacobat has quit [Ping timeout: 245 seconds]
oo_ has quit [Remote host closed the connection]
oo_ has joined #ruby
siwica has quit [Ping timeout: 240 seconds]
thsig has quit [Ping timeout: 260 seconds]
kantakt has joined #ruby
x77686d has quit [Ping timeout: 240 seconds]
oo_ has quit [Ping timeout: 255 seconds]
davidhq has joined #ruby
agent_white has quit [Quit: bbl]
robustus|Off is now known as robustus
siwica has joined #ruby
william3 has joined #ruby
davidhq has quit [Client Quit]
siwica1 has joined #ruby
siwica has quit [Ping timeout: 245 seconds]
elaptics`away is now known as elaptics
kartouch has joined #ruby
Atttwww has quit [Ping timeout: 244 seconds]
nonks has quit [Ping timeout: 255 seconds]
St_Marx has quit [Ping timeout: 264 seconds]
jlast has joined #ruby
Lewix has quit [Remote host closed the connection]
spyderman4g63 has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
anaeem1 has joined #ruby
jlast has quit [Ping timeout: 265 seconds]
autonomousdev has joined #ruby
Takle has joined #ruby
spyderman4g63 has quit [Ping timeout: 260 seconds]
lkba has joined #ruby
bMalum has joined #ruby
St_Marx has joined #ruby
hohoho has joined #ruby
jdj_dk has joined #ruby
davedev24_ has quit [Remote host closed the connection]
dorei has joined #ruby
jdj_dk has quit [Remote host closed the connection]
jdj_dk has joined #ruby
Cache_Money has quit [Quit: Cache_Money]
AndChat| has joined #ruby
oo_ has joined #ruby
sinkensabe has quit [Remote host closed the connection]
robustus is now known as robustus|Off
<hohoho> And ye shall know the truth, and the truth shall make you free.
lkba has quit [Ping timeout: 240 seconds]
jottr_ has quit [Ping timeout: 260 seconds]
blackmesa has joined #ruby
jdj_dk has quit [Ping timeout: 260 seconds]
oo_ has quit [Ping timeout: 246 seconds]
<jhass> hail eris! all hail discordia!
andrewlio has joined #ruby
chipotle has joined #ruby
hohoho has quit [Quit: leaving]
<apeiros> if I should ever finish chronos, I'll add a discordian calendar :)
Dude007 has joined #ruby
Dude007_ has quit [Read error: No route to host]
siwica1 has quit [Ping timeout: 260 seconds]
carraroj has joined #ruby
william3 has quit [Remote host closed the connection]
davedev24_ has joined #ruby
jonathanwallace has quit [Read error: Connection reset by peer]
olivier_bK has quit [Ping timeout: 260 seconds]
<wasamasa> chronos?
siwica has joined #ruby
Mia has joined #ruby
jonathanwallace has joined #ruby
AlexRussia has quit [Quit: WeeChat 1.1-dev]
<apeiros> wasamasa: replacement for Time/DateTime. written back when Time was ridiculously limited and DateTime ridiculously slow.
<apeiros> stopped developing it at around 95% finished because I started with a 100% job :-|
Alx08-ru has quit [Read error: Connection reset by peer]
bigkevmcd has joined #ruby
<rpag> apeiros, wow the indentation in chronos is wild :P
bigkevmcd has quit [Client Quit]
<apeiros> rpag: hm? maybe still tabs back then.
<rpag> yup
<apeiros> it is *old*, you know? :D
<rpag> 07' :o
yfeldblum has quit [Ping timeout: 258 seconds]
olivier_bK has joined #ruby
AlexRussia has joined #ruby
blackmesa has quit [Ping timeout: 272 seconds]
mocchi has quit [Ping timeout: 255 seconds]
hanjianwei has joined #ruby
mocchi has joined #ruby
carraroj has quit [Quit: Konversation terminated!]
hanjianwei has quit [Client Quit]
cmckee has joined #ruby
x77686d has joined #ruby
zaid_h has quit [Quit: ZZZzzz…]
i_s has joined #ruby
az7ar has quit [Ping timeout: 245 seconds]
deavid has quit [Ping timeout: 250 seconds]
vinleod has quit [Quit: ["Textual IRC Client: www.textualapp.com"]]
coderhs has joined #ruby
Deele has quit [Ping timeout: 260 seconds]
teddyp1cker has quit [Remote host closed the connection]
banister has joined #ruby
x77686d has quit [Ping timeout: 244 seconds]
i_s has quit [Ping timeout: 240 seconds]
ndrei has quit [Ping timeout: 246 seconds]
banister has quit [Client Quit]
jlast has joined #ruby
carraroj has joined #ruby
<cmckee> Question about rails engines. Anybody had much experiance with them?
spastorino has joined #ruby
<lxsameer> cmckee: just shoot the question
autonomousdev has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<apeiros> cmckee: #rubyonrails
<lxsameer> cmckee: There is a #rubyonrails channel too
Deele has joined #ruby
teddyp1cker has joined #ruby
<cmckee> I’ll have to check out the rails channel as well.
autonomousdev has joined #ruby
jlast has quit [Ping timeout: 272 seconds]
klmlfl has joined #ruby
anaeem1 has quit [Remote host closed the connection]
carraroj has quit [Quit: Konversation terminated!]
parduse has quit [Remote host closed the connection]
postmodern has quit [Quit: Leaving]
parduse has joined #ruby
elaptics is now known as elaptics`away
bMalum has quit [Quit: bMalum]
<cmckee> For learning experiences, im trying to replicate a devise user auth system. I stumbled onto engines and component based rails. If im creating the users model and pssword hasing method or anything else that would fall under the same thing. Would I have to use Warden to get the associations between engines or apps. Or is there a way I can have other compents grab info. example current_user methods, or the created session.
bMalum has joined #ruby
Takle has quit [Remote host closed the connection]
klmlfl has quit [Ping timeout: 245 seconds]
yfeldblum has joined #ruby
anaeem1_ has joined #ruby
mityaz has joined #ruby
ringarin has joined #ruby
gauke has joined #ruby
banister has joined #ruby
ponga has joined #ruby
<ponga> any example of how []= is used please good sirs
<ponga> google search can't comprehend []=
bmurt has joined #ruby
carraroj has joined #ruby
felipecvo has quit [Remote host closed the connection]
yfeldblum has quit [Ping timeout: 272 seconds]
manzo has joined #ruby
<Mon_Ouie> >> x = [1, 2, 3]; x[1] += 1; x
<eval-in__> Mon_Ouie => [1, 3, 3] (https://eval.in/207663)
<Mon_Ouie> Well, maybe too confusing an example
bmurt has quit [Client Quit]
<Mon_Ouie> >> x = [1, 2, 3]; x[1] = 4; x
<eval-in__> Mon_Ouie => [1, 4, 3] (https://eval.in/207664)
<Mon_Ouie> ([]= is just a fancy method name, and Ruby has a special syntax to call it)
threesixes has quit [Ping timeout: 258 seconds]
<ponga> oh
<ponga> ok i see it
<ponga> thanks Mon_Ouie
<ponga> i was looking at it too much of a fancy name
freerobby has joined #ruby
banister has quit [Ping timeout: 260 seconds]
wald0 has joined #ruby
fabrice31 has joined #ruby
<apeiros> ponga: basically with `def []=(a,b,c,d)`, when you call it, the last argument is on the right of the = sign: foo[1,2,3] = 4 # a -> 1, b -> 2, c -> 3, d -> 4
Stalkr^ has quit [Quit: Linkinus - http://linkinus.com]
cmckee has quit [Remote host closed the connection]
fabrice31 has quit [Ping timeout: 260 seconds]
krz has joined #ruby
<jhass> ponga: also symbolhound.com
anaeem1_ has quit [Remote host closed the connection]
AlSquirrel has joined #ruby
AlSquire has quit [Ping timeout: 245 seconds]
davidhq has joined #ruby
codecop has joined #ruby
Soda has quit [Remote host closed the connection]
AlSquirrel has quit [Ping timeout: 245 seconds]
anaeem1_ has joined #ruby
defrang has left #ruby [#ruby]
AlSquire has joined #ruby
Beoran has joined #ruby
defrang has joined #ruby
drager has quit [Changing host]
drager has joined #ruby
defrang has quit [Client Quit]
gauke has quit [Quit: gauke]
gaganjyot has joined #ruby
gaganjyot has quit [Max SendQ exceeded]
gaganjyot has joined #ruby
Timgauthier has joined #ruby
a___ has joined #ruby
siwica1 has joined #ruby
Timgauthier has quit [Read error: Connection reset by peer]
benzrf|offline has quit [Quit: bye]
siwica has quit [Read error: Connection reset by peer]
Timgauthier has joined #ruby
benzrf|offline has joined #ruby
benzrf|offline is now known as benzrf
ptrrr has quit [Quit: ptrrr]
freerobby has quit [Quit: Leaving.]
siwica has joined #ruby
<apeiros> weapons system or weapon system?
<apeiros> hm, dictionary says "weapons system"
siwica1 has quit [Ping timeout: 260 seconds]
Hobogrammer has quit [Ping timeout: 240 seconds]
kantakt has quit []
<jhass> Waffesystem ? ;)
<apeiros> Waffelsystem
ringarin has quit [Ping timeout: 245 seconds]
<jhass> <3
<pontiki> mmmmmwafflesmmmmmmmmm
sailias has joined #ruby
oo_ has joined #ruby
deavid has joined #ruby
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
codecop has quit [Ping timeout: 244 seconds]
dangerousdave has joined #ruby
robustus|Off is now known as robustus
<apeiros> why can't JS be as nice as ruby? *sobs*
<benzrf> apeiros: use coffeescript!!
<apeiros> benzrf: doesn't solve underlying problems
<benzrf> then it's half as nice!
<benzrf> apeiros: i find that many of js's problems are syntactical
<apeiros> benzrf: many, not all though
<benzrf> once you clean that up, it's merely slightly unpleasant
<benzrf> not full-on bad
oo_ has quit [Ping timeout: 245 seconds]
WormDrink has quit [Ping timeout: 272 seconds]
kartouch is now known as kartouch|gone
kobain has joined #ruby
blackmesa has joined #ruby
oo_ has joined #ruby
rossgeesman has quit [Quit: Leaving...]
jlast has joined #ruby
<csmrfx> ecmascript 7 may be as nice as ruby
<csmrfx> in 2022
spyderman4g63 has joined #ruby
<apeiros> you mean, JS in 2022 might be as nice as ruby was in 2008?
<csmrfx> mwahah
jamto11 has joined #ruby
<ponga> while we are still on subject of JS, is Javascript V8 engine THAT fast?
<apeiros> it's faster than ruby
vyorkin has joined #ruby
<csmrfx> well it has plenty fastness
oo_ has quit [Ping timeout: 244 seconds]
felipecvo has joined #ruby
c107 has joined #ruby
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jlast has quit [Ping timeout: 260 seconds]
cmckee has joined #ruby
dangerousdave has joined #ruby
yfeldblu_ has joined #ruby
<benzrf> ponga: of course it's fast
spyderman4g63 has quit [Ping timeout: 240 seconds]
bMalum has quit [Quit: bMalum]
n1x has joined #ruby
<benzrf> ponga: it's worked on by the #1 experts and funded by google
<benzrf> ruby could probably get comparable speeds if it had the same kind of backing, but of course it doesn't
codecop has joined #ruby
<benzrf> well... ruby's inherent dynamism compared to js might slow it down just a little
<apeiros> was just going to say :)
<benzrf> if you took away some of the less-used really evil reflective stuff, maybe@!
<apeiros> optimizing ruby is probably quite a bit harder than optimizing JS
<apeiros> jS, the language, is very small actually
<benzrf> now, you know what's easy to optimize
<benzrf> haskell!!!
weemsledeux has joined #ruby
weemsledeux has joined #ruby
<benzrf> ;^)
sailias has quit [Quit: Leaving.]
<apeiros> I wonder how much its weak typing system makes optimization harder, though
renderful has joined #ruby
<apeiros> benzrf: I didn't know, but I knew you were going to say that :-p
<benzrf> apeiros: not at all i'd expect
jamto11 has quit [Remote host closed the connection]
<benzrf> well, given that pure haskell code is known to be pure by the compiler
<benzrf> you can do all kinds of insane tricks
<apeiros> oy, I'll have run >50km this week. noice :D
freerobby has joined #ruby
az7ar has joined #ruby
yfeldblu_ has quit [Ping timeout: 244 seconds]
siwica has quit [Read error: Connection reset by peer]
<benzrf> haskell is so incredibly non-dynamic that the compiler can know pretty much everything about it
<csmrfx> apeiros: thats just 2 x 20 min per day ?
siwica has joined #ruby
Dreamer3__ has quit [Ping timeout: 250 seconds]
<benzrf> equational reasoning is wonderful
Takle has joined #ruby
<benzrf> especially for optimization
<apeiros> csmrfx: that'd be a rather bad way to spread it
earfin has joined #ruby
<csmrfx> I try to do 3 km the minute I wake up
renderful has quit [Ping timeout: 246 seconds]
<csmrfx> horrible 0 C wind+raind
<apeiros> csmrfx: also does not account for height :-p
Dreamer3 has quit [Ping timeout: 272 seconds]
narendraj9__ has joined #ruby
<csmrfx> haha its quite flat course
arup_r has joined #ruby
<csmrfx> beach
<apeiros> but yes, it's about 350min total of running
epsylon has quit [Quit: ZNC - http://znc.in]
qmfnp has joined #ruby
ndrei has joined #ruby
Takle has quit [Ping timeout: 260 seconds]
<shevy> benzrf in other words - haskell is boring
<ponga> lol
* ponga grabs popcorn and sits back
<csmrfx> apeiros: you running for charity?
<apeiros> csmrfx: no
<csmrfx> marathon?
<apeiros> only half marathon
siwica has quit [Ping timeout: 260 seconds]
<apeiros> and quite slowly too :)
jlast has joined #ruby
jnollette has quit [Quit: Leaving...]
ringarin has joined #ruby
mchelen has joined #ruby
<csmrfx> well, excercise is for fulife
<csmrfx> oops, fun life
<benzrf> shevy: haskell is probably the least boring language i know =D
<benzrf> it is just extremely undynamic
<mchelen> one of my app's output logs includes a bunch of characters, any ideas what is going on?
<csmrfx> characters, in a log!?
<benzrf> mchelen: well, that's expected
lele has quit [Ping timeout: 260 seconds]
<benzrf> you see when an app logs, it outputs characters
<csmrfx> I've, never...
oo_ has joined #ruby
<mchelen> oh i think irc is stripping out the odd character
<mchelen> `001B`
tomaw has quit [Changing host]
tomaw has joined #ruby
<shevy> why is that an odd character
<csmrfx> encoding fun
<csmrfx> define encodings
<mchelen> well a bunch of text editors are having issues with it
earfin has quit [Ping timeout: 244 seconds]
<mchelen> i guess it's a valid UTF-8 character but it doesn't come out right in vim
<mchelen> so i'd like to remove it
<apeiros> csmrfx: yeah, trying to reach the level again I had when I was twenty. takes a bit after 10y of neglect :-/
pu22l3r has joined #ruby
Azure has quit [Quit: Blue Sky Fish]
<apeiros> 1b is in the range of ctrl chars
oo_ has quit [Ping timeout: 246 seconds]
<apeiros> 0x1b is ESC
<apeiros> aka \e
VTLob has joined #ruby
jnollette has joined #ruby
<apeiros> which is emitted e.g. in color codes
<apeiros> anyway, if "a bunch of editors" have trouble with that character, then you're using a bunch of shitty editors (I mean it)
siwica has joined #ruby
ringaring has joined #ruby
<csmrfx> mchelen: :h enc
lw has joined #ruby
<mchelen> csmrfx: ?
<csmrfx> mchelen: then :h fenc
<csmrfx> mchelen: vim encoding fun!
n3b has joined #ruby
kireevco has joined #ruby
kireevco has quit [Max SendQ exceeded]
kireevco has joined #ruby
<mchelen> cschneid: any idea what encoding i should be using?
Azure has joined #ruby
gregf has joined #ruby
ringarin has quit [Ping timeout: 245 seconds]
<csmrfx> no... utf-8 is often useful
jbw has quit [Ping timeout: 250 seconds]
unshadow has joined #ruby
siwica1 has joined #ruby
lele has joined #ruby
<apeiros> 0x1b is valid in any ascii compatible encoding. which there's a metric ton of (utf-8 included)
sinkensabe has joined #ruby
az7ar has quit [Ping timeout: 255 seconds]
<unshadow> Hi, Is it possible to upgrade a TCPServer.accept to sslServer.accept without disconnecting the user ? as in the user connecting to a reguilar TCP server and then moving him or the socket to an SSL connection ?
siwica has quit [Ping timeout: 250 seconds]
cmckee has quit [Quit: cmckee]
<csmrfx> are you sure the user is "connected"?
<mchelen> apeiros: vi is set to utf-8 already, the character comes out like: ^[
<apeiros> mchelen: and why do you think that's wrong?
<unshadow> csmrfx: yeha, I'll do it on TCPServer.accept , so... the user is connected
ringaring has quit [Ping timeout: 245 seconds]
<mchelen> apeiros: i'm not saying its wrong, just that i dont want it in my logs
<mchelen> because it makes them hard to read
<apeiros> mchelen: then remove it
Spami has joined #ruby
<mchelen> apeiros: hmm ok im trying to find where it is coming from
<apeiros> but probably it's part of a whole sequence, most likely a color sequence (as mentioned earlier)
<csmrfx> unshadow: such as http://linux.die.net/man/1/redir ?
<apeiros> mchelen: also note that "editor displays non-printable char as ^[" is *totally not the same* as "editor has problems"
<unshadow> csmrfx: well.. I thought about manipulating the socket more then actually create two different services
<mchelen> apeiros: i should probably say that *i* am having issues with how the editor displays it
<apeiros> mchelen: yes. that's quite a different problem description :-p
<unshadow> csmrfx: MAybe likr the STARTTLS in SMTP protocol
<mchelen> apeiros: it was confusing because 3 different editors all display the character somewhat differently
<benzrf> mchelen: probably ansi escape sequences
<apeiros> mchelen: that's why "has problems" sucks as a description
<benzrf> try catting it
<benzrf> see if it's fancy
<apeiros> (same as "doesn't work")
<apeiros> benzrf: we already know that it is \e
narendraj9__ has quit [Ping timeout: 256 seconds]
Rx_o has joined #ruby
<mchelen> apeiros: yup its just hard to describe a problem when you are still confused about what exactly is going on
teddyp1cker has quit [Remote host closed the connection]
Rx_o has quit [Client Quit]
oo_ has joined #ruby
<apeiros> mchelen: it's not so hard to be specific, no. even when confused. just describe what you see. e.g. "^[ in vim, \e in foobaredit, \u001b in blablaed"
siwica1 has quit [Ping timeout: 244 seconds]
<apeiros> almost anything is better than "has problems", as that's says pretty much nothing at all.
<mchelen> apeiros: thats what i tried to do at first, but the character i copied got eaten by irc
siwica has joined #ruby
i_s has joined #ruby
klmlfl has joined #ruby
siwica has quit [Read error: Connection reset by peer]
_line_noise has joined #ruby
jbw has joined #ruby
oo_ has quit [Ping timeout: 272 seconds]
siwica has joined #ruby
dawkirst has joined #ruby
boombadaroomba has joined #ruby
havenwood has joined #ruby
i_s has quit [Ping timeout: 260 seconds]
wicked_shell has quit [Ping timeout: 260 seconds]
siwica has quit [Ping timeout: 245 seconds]
ryantm has joined #ruby
dawkirst has quit [Ping timeout: 250 seconds]
ryantm has left #ruby [#ruby]
boombadaroomba has quit [Ping timeout: 258 seconds]
manzo has quit [Ping timeout: 240 seconds]
<benzrf> lol
robustus is now known as robustus|Off
blackmesa has quit [Ping timeout: 258 seconds]
weaksauce has joined #ruby
siwica has joined #ruby
xymbol_ has quit [Read error: Connection reset by peer]
rdark has joined #ruby
xymbol_ has joined #ruby
<unshadow> quit
unshadow has quit [Quit: leaving]
pskosinski has joined #ruby
chipotle has quit [Quit: cya]
dawkirst has joined #ruby
yfeldblum has joined #ruby
tier has joined #ruby
siwica has quit [Ping timeout: 260 seconds]
gaganjyot has quit [Quit: Leaving]
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
hamakn_ has quit [Remote host closed the connection]
hamakn has joined #ruby
yfeldblum has quit [Ping timeout: 255 seconds]
vyorkin has quit [Ping timeout: 255 seconds]
jbw has quit [Ping timeout: 240 seconds]
sigurding has quit [Quit: sigurding]
fabrice31 has joined #ruby
WormDrink has joined #ruby
arup_r has quit [Quit: Leaving.]
anaeem1_ has quit [Remote host closed the connection]
davidhq_ has joined #ruby
it0a has joined #ruby
teddyp1cker has joined #ruby
davidhq has quit [Ping timeout: 245 seconds]
defrang has joined #ruby
anaeem1_ has joined #ruby
Terabyte has joined #ruby
<Terabyte> hey
fabrice31 has quit [Ping timeout: 250 seconds]
anaeem1_ has quit [Remote host closed the connection]
mercwithamouth has joined #ruby
SilkFox_ has joined #ruby
siwica has joined #ruby
rpag has quit [Ping timeout: 245 seconds]
<jhass> hi
benzrf is now known as benzrf|offline
hamakn has quit [Read error: No route to host]
dawkirst has quit [Quit: Leaving...]
hamakn has joined #ruby
Xeago has joined #ruby
ndrei has quit [Ping timeout: 260 seconds]
mercwithamouth has quit [Ping timeout: 260 seconds]
SilkFox has joined #ruby
spicerack has joined #ruby
dangerousdave has joined #ruby
teddyp1cker has quit [Remote host closed the connection]
earfin has joined #ruby
jbw has joined #ruby
SilkFox_ has quit [Ping timeout: 272 seconds]
freerobby has quit [Quit: Leaving.]
siwica1 has joined #ruby
ptrrr has joined #ruby
siwica has quit [Ping timeout: 255 seconds]
freerobby has joined #ruby
rippa has joined #ruby
<shevy> ho
radic has quit [Quit: ZNC - http://znc.in]
<pontiki> HA
radic has joined #ruby
nrsk has joined #ruby
SilkFox_ has joined #ruby
Xeago has quit [Remote host closed the connection]
nrsk has quit [Read error: Connection reset by peer]
Xeago has joined #ruby
jasooon has joined #ruby
oo_ has joined #ruby
lxsameer has quit [Ping timeout: 246 seconds]
SilkFox has quit [Ping timeout: 272 seconds]
<shevy> who wants to get rick rolled today
nurrb has joined #ruby
mike32 has joined #ruby
lxsameer has joined #ruby
<pontiki> i'll give you up
<pontiki> i'll let you go
<pontiki> run around and desert you
<havenwood> mmm, desert
siwica has joined #ruby
siwica1 has quit [Ping timeout: 250 seconds]
Xeago has quit [Ping timeout: 240 seconds]
charliesome has quit [Quit: zzz]
iamjarvo has joined #ruby
oo_ has quit [Ping timeout: 244 seconds]
nurrb has quit [Quit: EKG2 - It's better than sex!]
pu22l3r has quit [Remote host closed the connection]
siwica1 has joined #ruby
ndrei has joined #ruby
n1x has left #ruby ["ERC Version 5.3 (IRC client for Emacs)"]
pu22l3r has joined #ruby
siwica has quit [Ping timeout: 260 seconds]
it0a has quit [Quit: WeeChat 1.0.1]
it0a has joined #ruby
govg has quit [Ping timeout: 240 seconds]
siwica has joined #ruby
zorak8 has joined #ruby
diegoviola has joined #ruby
siwica1 has quit [Ping timeout: 260 seconds]
<pontiki> you don't eat desert, you eat dessert
<havenwood> >> 'dessert'.squeeze
<eval-in__> havenwood => "desert" (https://eval.in/207674)
govg has joined #ruby
<havenwood> pontiki: i'm on a diet ^
<pontiki> if you squeeze all the liquid out, i suppose it might seem like a desert...
pandaant has joined #ruby
AndyBotwin has quit [Quit: Leaving]
<shevy> you could be eating dessert in the desert
<havenwood> shevy: or desert your dessert in the desert
<havenwood> these words don't appear real anymore
<shevy> neither does Rick Roll
nrsk has joined #ruby
siwica has quit [Ping timeout: 258 seconds]
jasooon has quit [Quit: leaving]
govg has quit [Ping timeout: 265 seconds]
jamto11 has joined #ruby
nrsk has quit [Read error: Connection reset by peer]
Akagi201 has quit []
gaganjyot has joined #ruby
siwica has joined #ruby
rkalfane has joined #ruby
oo_ has joined #ruby
rockdon_ has joined #ruby
Spami has quit [Quit: This computer has gone to sleep]
AndChat| has quit [Ping timeout: 258 seconds]
obs has joined #ruby
siwica1 has joined #ruby
narendraj9 has joined #ruby
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
narendraj9 is now known as Guest88873
siwica has quit [Ping timeout: 260 seconds]
oo_ has quit [Ping timeout: 258 seconds]
sevenseacat has quit [Quit: Leaving.]
NoNMaDDeN has joined #ruby
siwica has joined #ruby
yfeldblum has joined #ruby
carraroj has quit [Ping timeout: 240 seconds]
pu22l3r has quit [Remote host closed the connection]
siwica1 has quit [Ping timeout: 260 seconds]
<pontiki> groove instead of roll: http://youtu.be/WdnhwLSBnl8
User458764 has quit [Quit: Textual IRC Client: www.textualapp.com]
jpierre03 has quit [Read error: Connection reset by peer]
Rylee has quit [Read error: Connection reset by peer]
mikepack has joined #ruby
jpierre03 has joined #ruby
Rylee has joined #ruby
bigmac has joined #ruby
bigmac is now known as i8igmac
yfeldblum has quit [Ping timeout: 240 seconds]
Guest88873 has quit [Quit: Leaving]
i_s has joined #ruby
earfin has quit [Quit: Leaving]
narendraj9__ has joined #ruby
oleo is now known as Guest85160
oleo__ has joined #ruby
oleo__ has quit [Read error: Connection reset by peer]
Guest85160 has quit [Ping timeout: 265 seconds]
siwica1 has joined #ruby
spider-mario has quit [Read error: Connection reset by peer]
oleo__ has joined #ruby
havenwood has quit []
phutchins has quit [Ping timeout: 240 seconds]
oleo__ is now known as oleo
spyderman4g63 has joined #ruby
siwica has quit [Ping timeout: 260 seconds]
havenwood has joined #ruby
i_s has quit [Ping timeout: 255 seconds]
siwica has joined #ruby
x77686d has joined #ruby
rockdon_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
siwica1 has quit [Ping timeout: 255 seconds]
carraroj has joined #ruby
psykotron has joined #ruby
bbloom has quit [Read error: Connection reset by peer]
<gr33n7007h> anyone like to share their ~/.pryrc :)
psykotron has quit [Client Quit]
bbloom has joined #ruby
spyderman4g63 has quit [Ping timeout: 272 seconds]
teddyp1cker has joined #ruby
AriaMoKr has joined #ruby
<havenwood> gr33n7007h: Pry.config.prompt = Pry::SIMPLE_PROMPT; Pry.pager = false; Pry.config.theme = 'railscasts'
Terabyte has left #ruby [#ruby]
<havenwood> gr33n7007h: And when i want to name my top level barewords `cat`...: Pry.commands.rename_command '%cat', 'cat'
<havenwood> >.>
<gr33n7007h> heh thanks havenwood, try to get a glimpse to get the perfect pry :)
siwica1 has joined #ruby
AriaMoKr has quit [Client Quit]
AriaMoKr has joined #ruby
kireevco has quit [Quit: Leaving.]
<gr33n7007h> havenwood, what is Pry.pager ?
ndrei has quit [Ping timeout: 250 seconds]
siwica has quit [Ping timeout: 255 seconds]
Kricir has joined #ruby
<havenwood> gr33n7007h: like: less
<gr33n7007h> ah, ok thanks i'll take a look
oo_ has joined #ruby
phutchins has joined #ruby
grieg has quit [Quit: Laterz]
mattp_ has quit [Read error: Connection reset by peer]
oo_ has quit [Ping timeout: 255 seconds]
phutchins has quit [Remote host closed the connection]
siwica has joined #ruby
dangerousdave has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
echooo1 has quit [Remote host closed the connection]
mattp_ has joined #ruby
siwica1 has quit [Ping timeout: 272 seconds]
zorak8 has quit [Ping timeout: 265 seconds]
pskosinski has quit [Quit: Til rivido Idisti! | http://www.ido.li]
pushpak has joined #ruby
echooo has joined #ruby
kireevco has joined #ruby
yeticry has quit [Ping timeout: 250 seconds]
jpierre03 has quit [Ping timeout: 265 seconds]
yeticry has joined #ruby
Darryl has quit [Quit: Connection closed for inactivity]
SilkFox_ has quit [Ping timeout: 260 seconds]
chipotle has joined #ruby
Kricir has quit [Remote host closed the connection]
ponga has quit []
jamto11 has quit [Remote host closed the connection]
Kricir has joined #ruby
nrsk has joined #ruby
jamto11 has joined #ruby
nrsk has quit [Client Quit]
diegoviola has quit [Quit: WeeChat 1.0.1]
Techguy305 has joined #ruby
tier has quit [Remote host closed the connection]
ndrei has joined #ruby
multi_io_ has joined #ruby
relix has joined #ruby
spicerack has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Pumukel has joined #ruby
threesixes has joined #ruby
andrewlio has quit [Quit: Leaving.]
mikepack has quit [Remote host closed the connection]
blackmesa has joined #ruby
Kricir has quit [Ping timeout: 240 seconds]
siwica1 has joined #ruby
jamto11 has quit [Ping timeout: 245 seconds]
Mon_Ouie has quit [Ping timeout: 245 seconds]
multi_io has quit [Ping timeout: 260 seconds]
hmsimha has quit [Quit: Leaving]
dangerousdave has joined #ruby
siwica has quit [Ping timeout: 240 seconds]
Techguy305 has quit [Read error: Connection reset by peer]
Techguy305 has joined #ruby
prasselpikachu has quit [Ping timeout: 265 seconds]
kireevco has quit [Quit: Leaving.]
livathinos has joined #ruby
siwica has joined #ruby
prasselpikachu has joined #ruby
az7ar_ has joined #ruby
siwica1 has quit [Ping timeout: 240 seconds]
mercwithamouth has joined #ruby
az7ar_ is now known as az7ar
schaerli has joined #ruby
mikepack has joined #ruby
jpierre03 has joined #ruby
freezey has joined #ruby
schaerli has quit [Remote host closed the connection]
goodenough has joined #ruby
spastorino has quit [Quit: Connection closed for inactivity]
JohnBat26 has joined #ruby
elaptics`away is now known as elaptics
oo_ has joined #ruby
mikepack has quit [Ping timeout: 260 seconds]
Techguy305 has quit [Ping timeout: 272 seconds]
mikepack has joined #ruby
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Deejay_ has joined #ruby
mistermocha has joined #ruby
gsd has joined #ruby
bagackiz has quit [Ping timeout: 272 seconds]
oo_ has quit [Ping timeout: 244 seconds]
gsd has quit [Client Quit]
sevvie has joined #ruby
claymore has joined #ruby
payne has quit [Read error: Connection reset by peer]
payne has joined #ruby
drawingthesun has quit [Ping timeout: 245 seconds]
payne has quit [Client Quit]
mercwithamouth has quit [Ping timeout: 258 seconds]
Xeago has joined #ruby
claymore has quit [Ping timeout: 255 seconds]
jamto11 has joined #ruby
kireevco has joined #ruby
claymore has joined #ruby
Takle has joined #ruby
dangerousdave has quit [Read error: Connection reset by peer]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
Heskie has joined #ruby
siwica1 has joined #ruby
siwica has quit [Ping timeout: 240 seconds]
oo_ has joined #ruby
jamto11 has quit [Ping timeout: 272 seconds]
_line_noise has quit [Quit: no specific reason]
Takle has quit [Ping timeout: 258 seconds]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
SilkFox_ has joined #ruby
goodenough has quit [Remote host closed the connection]
goodenough has joined #ruby
siwica1 has quit [Ping timeout: 255 seconds]
Deejay_ has quit [Quit: Computer has gone to sleep.]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
oo_ has quit [Ping timeout: 260 seconds]
wompwomp9000 has joined #ruby
starless has joined #ruby
benzrf|offline is now known as benzrf
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
jheg has joined #ruby
wompwomp9000 has quit [Client Quit]
rpag has joined #ruby
SilkFox_ has quit [Ping timeout: 255 seconds]
rshetty has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
goodenough has quit [Ping timeout: 255 seconds]
narendraj9__ has quit [Read error: Connection reset by peer]
hellangel7 has quit [Remote host closed the connection]
arup_r has joined #ruby
jheg has quit [Client Quit]
coderhs has quit [Read error: Connection reset by peer]
lkba has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
kireevco has quit [Quit: Leaving.]
siwica has joined #ruby
michaeldeol has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
blackmesa has quit [Ping timeout: 240 seconds]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
it0a has quit [Ping timeout: 245 seconds]
coderhs has joined #ruby
jamto11 has joined #ruby
moritzs has joined #ruby
ndrei has quit [Ping timeout: 245 seconds]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
rockdon_ has joined #ruby
robbyoconnor has quit [Ping timeout: 255 seconds]
klmlfl has quit [Remote host closed the connection]
az7ar has quit [Quit: times up.]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
az7ar has joined #ruby
az7ar has quit [Client Quit]
kireevco has joined #ruby
Rollabunna has quit [Quit: Leaving...]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
robbyoconnor has joined #ruby
robbyoconnor has joined #ruby
robbyoconnor has quit [Changing host]
az7ar has joined #ruby
az7ar has quit [Client Quit]
jamto11 has quit []
az7ar has joined #ruby
oo_ has joined #ruby
az7ar has quit [Client Quit]
autonomousdev has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
az7ar has joined #ruby
payne has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
mistermocha has quit []
narendraj9__ has joined #ruby
alec-c4 has joined #ruby
vyorkin has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
oo_ has quit [Ping timeout: 260 seconds]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
lw has quit [Quit: s]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
kireevco has quit [Quit: Leaving.]
ocx has joined #ruby
Takle has joined #ruby
emmesswhy has joined #ruby
rpag has quit [Ping timeout: 245 seconds]
Heskie has quit []
i_s has joined #ruby
gaganjyot has quit [Ping timeout: 240 seconds]
aCicloid is now known as cicloid
fuhgeddaboudit has joined #ruby
havenwood has quit [Remote host closed the connection]
<ocx> is this correct?
<ocx> it is always returning 1
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
i_s has quit [Ping timeout: 258 seconds]
iamjarvo has joined #ruby
blackmesa has joined #ruby
<ocx> anyone?
rkazak_ has joined #ruby
Channel6 has joined #ruby
bMalum has joined #ruby
Timgauthier is now known as timgauthier_away
<oz> ocx: `command` typically gives you the output of that command, check "system" if you're only interested in the command exit-codes
<crome> or grab $?
<oz> crome++ :)
jottr_ has joined #ruby
ghostmoth has joined #ruby
Lewix has joined #ruby
Pumukel has quit [Quit: ChatZilla 0.9.91 [Firefox 33.0/20141011015303]]
<ocx> no good
last_staff has joined #ruby
benzrf has quit [Quit: bye]
last_staff1 has joined #ruby
az7ar is now known as az7ar_away
Heskie has joined #ruby
ghostmoth has quit [Client Quit]
benzrf has joined #ruby
az7ar_away is now known as az7ar
<crome> what ruby version are you running?
jottr has joined #ruby
havenwood has joined #ruby
<ocx> crome: 1.9.3p448
az7ar is now known as az7ar_away
Channel6 has quit [Ping timeout: 244 seconds]
rkalfane has joined #ruby
ta_ has joined #ruby
thsig_ has quit [Remote host closed the connection]
<crome> how about $?.exitstatus?
Xeago has quit [Remote host closed the connection]
spyderman4g63 has joined #ruby
last_staff has quit [Ping timeout: 255 seconds]
ta has quit [Ping timeout: 246 seconds]
jottr_ has quit [Ping timeout: 258 seconds]
<ocx> checkcon.rb:3:in `<main>': undefined method `exitstatus?' for #<Process::Status: pid 28701 exit 0> (NoMethodError)
<ocx> checkcon.rb:3:in `<main>': undefined method `exitstatus?' for #<Process::Status: pid 28701 exit 0> (NoMethodError)system("wget -q --spider --tries=10 --timeout=20 -O - http://google.com > /dev/null") if $?.exitstatus? == 1
<crome> ah hehe
<crome> I meant without the last question mark
bMalum has quit [Ping timeout: 255 seconds]
<crome> (that was part of the question)
<ocx> crome: still not there, returning disconnected all the time
<crome> it must be because wget actually returns 0 upon success
emmesswhy has quit [Quit: This computer has gone to sleep]
<crome> as like expected of any *nix tool
<crome> -like
<ocx> crome: if i have 10 commands and then check $? it will be the status of the last command righT?
Channel6 has joined #ruby
<crome> yes
spyderman4g63 has quit [Ping timeout: 246 seconds]
chipotle has quit [Quit: cya]
renderful has joined #ruby
hellangel7 has joined #ruby
momomomomo has joined #ruby
<Fire-Dragon-DoL> are there any ruby gem that allows me to delegate all missing methods to an object?
<Fire-Dragon-DoL> obviously if that method is missing from object, it raises
maroloccio has joined #ruby
<momomomomo> ...
jottr has quit [Ping timeout: 260 seconds]
<crome> :D
<crome> Fire-Dragon-DoL: google simpledelegator
cicloid is now known as aCicloid
rdark has quit [Quit: leaving]
<Fire-Dragon-DoL> crome: I googled, but from what I sees I have to manually bind everything using __getobj__.method
thedonvaughn has quit [Quit: WeeChat 1.0.1]
<crome> nope
<Fire-Dragon-DoL> crome: OH looks like I was watching the OLD (1.9.3) thing
teddyp1cker has quit []
renderful has quit [Ping timeout: 255 seconds]
<ocx> crome: http://pastebin.com/bPa1U8EN <-- if i have 2 processes manipulating different yaml parameters in that file, will the dumpdata executed by process one, overwrite the data submited by process 2?
<ocx> like for example: proc 1 reads file, proc 2 reads file, proc1 submits dump, proce2 submit dump afterwards, now proc1 changes have been overwritten
jottr has joined #ruby
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Fire-Dragon-DoL> crome: thanks
it0a has joined #ruby
sinequanon has joined #ruby
<crome> ocx: as far as I understand, correct
<crome> Fire-Dragon-DoL: yw
x77686d has joined #ruby
<ocx> crome: i dont want to dump then, i just want to change what needs to be changed
<ocx> 1 parameter for eaple
<ocx> example*
mmr has joined #ruby
<mmr> hail there, anyone using rugged (ruby lib based on libgit2)?
emmesswhy has joined #ruby
oo_ has joined #ruby
sinequanon has quit [*.net *.split]
JohnBat26 has quit [*.net *.split]
i8igmac has quit [*.net *.split]
qmfnp has quit [*.net *.split]
codecop has quit [*.net *.split]
zwischenzug2 has quit [*.net *.split]
programmerq has quit [*.net *.split]
marlonandrade has quit [*.net *.split]
brendenb has quit [*.net *.split]
zenspider has quit [*.net *.split]
whoojemaflip has quit [*.net *.split]
virtualize has quit [*.net *.split]
Gunni has quit [*.net *.split]
Cork has quit [*.net *.split]
b1nd has quit [*.net *.split]
neersighted has quit [*.net *.split]
sarlalian has quit [*.net *.split]
wang has quit [*.net *.split]
Hanmac has quit [*.net *.split]
mclee has quit [*.net *.split]
happyface_ has quit [*.net *.split]
SegFaultAX has quit [*.net *.split]
pmarreck has quit [*.net *.split]
ckrailo has quit [*.net *.split]
maZtah has quit [*.net *.split]
jokke has quit [*.net *.split]
vcoinminer______ has quit [*.net *.split]
charles81__ has quit [*.net *.split]
ikanobori_ has quit [*.net *.split]
G has quit [*.net *.split]
n1ftyn8 has quit [*.net *.split]
HashNuke has quit [*.net *.split]
ggherdov has quit [*.net *.split]
nisstyre has quit [*.net *.split]
majoh has quit [*.net *.split]
TDJACR has quit [*.net *.split]
teotwaki has quit [*.net *.split]
artgoeshere has quit [*.net *.split]
epochwolf has quit [*.net *.split]
george2 has quit [*.net *.split]
ddv has quit [*.net *.split]
hostess has quit [*.net *.split]
Paradox has quit [*.net *.split]
deed02392 has quit [*.net *.split]
aCicloid has quit [*.net *.split]
F__i__L has quit [*.net *.split]
virtualize has joined #ruby
G has joined #ruby
b1nd has joined #ruby
teotwaki has joined #ruby
zwischenzug2 has joined #ruby
SegFaultAX has joined #ruby
zenspider has joined #ruby
pmarreck_ has joined #ruby
charles81___ has joined #ruby
momomomomo has quit [Quit: momomomomo]
cicloid has joined #ruby
JohnBat26 has joined #ruby
epochwolf has joined #ruby
jokke has joined #ruby
happyface_ has joined #ruby
i8igmac has joined #ruby
mclee has joined #ruby
defrang has left #ruby [#ruby]
Paradox has joined #ruby
codecop has joined #ruby
TDJACR has joined #ruby
wang has joined #ruby
brendenb has joined #ruby
sinequanon has joined #ruby
qmfnp has joined #ruby
n1ftyn8_ has joined #ruby
sarlalian has joined #ruby
george2 has joined #ruby
whoojemaflip has joined #ruby
sinequanon has quit [Remote host closed the connection]
marlonandrade has joined #ruby
vcoinminer______ has joined #ruby
<ocx> crome: still here with me?
ckrailo has joined #ruby
x77686d has quit [Ping timeout: 245 seconds]
maZtah_ has joined #ruby
deed02392 has joined #ruby
ikanobori_ has joined #ruby
programmerq has joined #ruby
HashNuke has joined #ruby
neersighted has joined #ruby
artgoeshere has joined #ruby
claw__ has quit [Ping timeout: 260 seconds]
freezey has quit [Remote host closed the connection]
hostess has joined #ruby
<havenwood> ocx: A HEAD request seems nice. I might: require 'http'; HTTP.follow.head('http://google.com').status
Hanmac has joined #ruby
nisstyre has joined #ruby
<ocx> havenwood: i am using spider as u saw
<ocx> so low bw too
Gunni has joined #ruby
alec-c4 has quit [Remote host closed the connection]
kenndel has joined #ruby
kenndel has quit [Remote host closed the connection]
alec-c4 has joined #ruby
<havenwood> but a GET request, rihgt?
oo_ has quit [Ping timeout: 246 seconds]
<Fire-Dragon-DoL> crap, can't use simple delegator because hash.values returns a new instance each time
<havenwood> checking
<Fire-Dragon-DoL> oh wait, no I can
<jhass> ocx: you need to synchronize access then. Either by piping all modifications through a third process through IPC or by preventing read access for all others while one process reads and writes the file
Cork has joined #ruby
Soda has joined #ruby
<havenwood> mmr: have a rugged question?
emmesswhy has quit [Quit: This computer has gone to sleep]
<mmr> havenwood: yes
<ocx> jhass: cant i write only 1 parameter to that file
<mmr> havenwood: its quite simple, i'm probably doing something really silly
<ocx> i dont wantto dump..
<jhass> not easily
fuhgeddaboudit has quit [Remote host closed the connection]
<ocx> jhass: so i can have a race condition if i dump same file from 2 processes
<jhass> yes, I thought we already recognized that
<mmr> havenwood: just installed the gem (version 0.21.0) and am trying to follow the docs to connect to a remote repo, but am getting an error saying something about NoSuchMethod (Rugged::Remote.lookup)
zaid_h has joined #ruby
rkalfane has quit [Quit: Textual IRC Client: www.textualapp.com]
<mmr> havenwood: the docs this method does exist
ggherdov has joined #ruby
rkalfane has joined #ruby
alec-c4 has quit [Ping timeout: 246 seconds]
<ocx> jhass: why?
<ocx> i mean isnt there a writeLINE
<jhass> ocx: not really. Also what should happen if both modify the same param? maybe at the same time even?
rkalfane has quit [Client Quit]
Dreamer3 has joined #ruby
Dreamer3__ has joined #ruby
<mmr> havenwood: any clues?
Heskie has quit []
AriaMoKr has quit [Quit: Connection closed for inactivity]
kaspergrubbe has quit [Remote host closed the connection]
nichtdiebohne has joined #ruby
weemsledeux has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rkjaer_ is now known as rkjaer
SilkFox_ has joined #ruby
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
rkalfane has joined #ruby
rkalfane has quit [Client Quit]
freezey has joined #ruby
JeffBonds has joined #ruby
lnormous has joined #ruby
emmesswhy has joined #ruby
ramfjord has joined #ruby
andrewlio has joined #ruby
danijoo_ has quit [Read error: Connection reset by peer]
ta_ has quit [Ping timeout: 250 seconds]
danijoo has joined #ruby
HelloFred has joined #ruby
wald0 has quit [Quit: Lost terminal]
andrewlio has quit [Client Quit]
rshetty has quit [Remote host closed the connection]
rshetty has joined #ruby
neoxquick has joined #ruby
<havenwood> mmr: looking
mike32 has quit [Quit: Leaving]
Lewix has quit [Remote host closed the connection]
ta has joined #ruby
Snowstormer has quit [Ping timeout: 255 seconds]
az7ar_away is now known as az7ar
kaspergrubbe has joined #ruby
Snowstormer has joined #ruby
Lewix has joined #ruby
relix has joined #ruby
rshetty has quit [Ping timeout: 272 seconds]
boombadaroomba has joined #ruby
Darryl has joined #ruby
it0a has quit [Ping timeout: 245 seconds]
NoNMaDDeN has quit [Quit: Leaving...]
Lewix has quit [Remote host closed the connection]
arup_r has quit [Quit: Leaving.]
boombadaroomba has quit [Ping timeout: 255 seconds]
TheTopBloke has joined #ruby
tyll has quit [Ping timeout: 272 seconds]
NoNMaDDeN has joined #ruby
mary5030 has joined #ruby
<mmr> havenwood: i think the code was changed to repo.lookup / repo.fetch instead of Rugged::Remote.lookup / fetch but the docs weren't updated
carraroj has quit [Ping timeout: 260 seconds]
pu22l3r has joined #ruby
<mmr> havenwood: i'm using repo.lookup/fetch now and getting NetworkError with git://.../ style url
tyll has joined #ruby
<mmr> 2.1.3 (main):0 > repo.fetch('origin')
<mmr> Rugged::NetworkError: Unsupported URL protocol
<mmr> my origin remote is: git@bitbucket.org:saloote-ondemand/projectwebclient-v2
<mmr> git@bitbucket.org:foo/bar
carraroj has joined #ruby
<havenwood> mmr: your suspicion about lagging documentation is correct
<havenwood> mmr: change occurred between 0.19 and 0.21
<mmr> havenwood: read somewhere that i need libssh2 installed so libgit2 can link to it
obs has quit [Quit: Saliendo]
<havenwood> mmr: dunno whether it's better to use 0.19 till the docs catch up and have to change or plow ahead sans docs
SilkFox_ has quit [Ping timeout: 265 seconds]
pu22l3r has quit [Ping timeout: 244 seconds]
SilkFox_ has joined #ruby
anaeem1_ has joined #ruby
cicloid is now known as aCicloid
pushpak has quit [Quit: Linkinus - http://linkinus.com]
oo_ has joined #ruby
rkalfane has joined #ruby
jack_rabbit has joined #ruby
it0a has joined #ruby
brandonshowers has joined #ruby
brandonshowers has quit [Client Quit]
oo_ has quit [Ping timeout: 244 seconds]
maletor has joined #ruby
TheTopBloke has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
mmr_ has joined #ruby
carraroj has quit [Quit: Konversation terminated!]
fuhgeddaboudit has joined #ruby
claw__ has joined #ruby
aspires has joined #ruby
Olipro has joined #ruby
JeffBonds has left #ruby [#ruby]
mmr has quit [Ping timeout: 255 seconds]
mmr_ has quit [Client Quit]
ylluminarious has joined #ruby
narendraj9__ has quit [Ping timeout: 256 seconds]
emmesswhy has quit [Quit: This computer has gone to sleep]
michaeldeol has joined #ruby
zwischenzug3 has joined #ruby
rkazak_ has quit [Quit: Sleep.....ing....]
timgauthier_away is now known as Timgauthier
gaganjyot has joined #ruby
diegoviola has joined #ruby
JBreit has left #ruby ["Leaving"]
<apeiros> aw man, I forgot how annoyingly and painfully slow solving linear equations by hand was…
zwischenzug2 has quit [Ping timeout: 258 seconds]
<apeiros> good thing I only have to do it once to verify the implementation :D
Lewix has joined #ruby
j_mcnally has joined #ruby
it0a has quit [Quit: WeeChat 1.0.1]
it0a has joined #ruby
[gmi] has joined #ruby
fuhgeddaboudit has quit [Ping timeout: 246 seconds]
Timgauthier has quit [Quit: Textual IRC Client: www.textualapp.com]
HelloFred has quit [Read error: Connection reset by peer]
narendraj9__ has joined #ruby
oo_ has joined #ruby
<yxhuvud> apeiros: what method do you use for solving them automatically?
JBreit has joined #ruby
kaspergrubbe has quit []
starkhalo has joined #ruby
x77686d has joined #ruby
<jhass> wolfram alpha? :P
freezey has quit [Remote host closed the connection]
JBreit has left #ruby [#ruby]
ndrei has joined #ruby
<Hanmac> ping shevy
oo_ has quit [Ping timeout: 272 seconds]
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ylluminarious has quit [Quit: Linkinus - http://linkinus.com]
narendraj9__ has quit [Ping timeout: 256 seconds]
i_s has joined #ruby
Timgauthier has joined #ruby
krz has quit [Quit: WeeChat 1.0.1]
NoNMaDDeN has quit [Remote host closed the connection]
NoNMaDDeN has joined #ruby
weemsledeux has joined #ruby
HelloFred has joined #ruby
Suchit has joined #ruby
tredstone has joined #ruby
tredstone has quit [Max SendQ exceeded]
Doddlin has joined #ruby
unleashy has joined #ruby
tredstone has joined #ruby
tredstone has quit [Max SendQ exceeded]
tredstone has joined #ruby
tredstone has quit [Max SendQ exceeded]
tredstone has joined #ruby
<Doddlin> Hi all! If I want to create a post and then redirect to that post using @, how would I make it go to the newly created ID?
tredstone has quit [Max SendQ exceeded]
tredstone has joined #ruby
tredstone has quit [Max SendQ exceeded]
i_s has quit [Ping timeout: 265 seconds]
<Doddlin> I wanted to use redirect_to @space:id but that was too simple apparently...
tredstone has joined #ruby
tredstone has quit [Max SendQ exceeded]
tlarevo_ has quit []
rpag has joined #ruby
tredstone has joined #ruby
tredstone has left #ruby [#ruby]
<benzrf> wha?
<benzrf> "redirect to that post using @"?
<benzrf> the heck does that mean o_O
<Doddlin> I have defined @space = New.Space(space_params)
<jhass> Doddlin: Please join #RubyOnRails for Rails questions. You need to be identified with NickServ, see /msg NickServ help
<Doddlin> aah, thanks! :D
<benzrf> >using capitalized names for methods
tredstone has joined #ruby
<benzrf> >20145
NoNMaDDeN has quit [Ping timeout: 265 seconds]
gaganjyot has quit [Remote host closed the connection]
Soda has quit [Remote host closed the connection]
<csmrfx> using "New"
x77686d has quit [Quit: x77686d]
<apeiros> yxhuvud: gaussian elimination
<apeiros> yxhuvud: sorry, was afk
<Hanmac> benzrf & apeiros pushed new rwx version ... "0.0.1.dev" -> "0.0.1.1.dev" still dev versions but fixed and tested against multiple OS ... travis will be added later for that too
<benzrf> why did u ping e
<benzrf> *me
ylluminarious has joined #ruby
<Hanmac> i dont know, i need to tell it someone and you might be interested ;P
hfp_ has joined #ruby
hfp has quit [Ping timeout: 250 seconds]
hfp_work has quit [Ping timeout: 244 seconds]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
hfp__work has joined #ruby
hfp_ is now known as hfp
hfp__work is now known as hfp_work
[gmi] has quit [Quit: Leaving]
unleashy has left #ruby [#ruby]
<benzrf> m8 i'm not a ruby
<benzrf> i'm a haskell
<benzrf> it's way more practical
sinkensabe has quit [Remote host closed the connection]
unleashy has joined #ruby
<benzrf> >not having types
<benzrf> lol
<unleashy> hey all
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
kenneth has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
michaeldeol has joined #ruby
starless has quit [Ping timeout: 250 seconds]
banister has joined #ruby
tredstone has quit [Quit: Leaving.]
banister has quit [Max SendQ exceeded]
andrewlio has joined #ruby
banister has joined #ruby
banister has quit [Max SendQ exceeded]
mikepack has quit [Remote host closed the connection]
sinkensabe has joined #ruby
anaeem1_ has quit [Remote host closed the connection]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
yfeldblum has joined #ruby
<benzrf> hey unleashy
mary5030 has quit [Remote host closed the connection]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
<Hanmac> apeiros: banister & bagackiz does have "Max SendQ" problems ... should you do something about that?
mary5030 has joined #ruby
<unleashy> sup
alem0lars has quit [Quit: Quit!]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
Takle has quit [Remote host closed the connection]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
banister has joined #ruby
kenneth has joined #ruby
banister has quit [Max SendQ exceeded]
az7ar is now known as az7ar_away
banister has joined #ruby
banister has quit [Max SendQ exceeded]
hellangel7 has quit [Remote host closed the connection]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
M-Technic has quit [Quit: leaving]
banister has joined #ruby
banister has quit [Max SendQ exceeded]
banister has joined #ruby
spyderman4g63 has joined #ruby
banister has quit [Max SendQ exceeded]
lw has joined #ruby
fuhgeddaboudit has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
banister has joined #ruby
Suchit has quit [Quit: (null)]
banister has quit [Max SendQ exceeded]
jdj_dk has joined #ruby
mercwithamouth has joined #ruby
maletor has quit [Quit: Computer has gone to sleep.]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
oo_ has joined #ruby
spyderman4g63 has quit [Ping timeout: 265 seconds]
starless has joined #ruby
mercwithamouth has quit [Ping timeout: 258 seconds]
devdazed has quit [Quit: Computer has gone to sleep.]
Morkel has joined #ruby
Takle has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
emmesswhy has joined #ruby
ndrei has quit [Ping timeout: 272 seconds]
Morkel has quit [Client Quit]
oo_ has quit [Ping timeout: 258 seconds]
mdw has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
Takle has quit [Remote host closed the connection]
devdazed has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
davedev24_ has quit []
oo_ has joined #ruby
nonks has joined #ruby
diegoviola has quit [Quit: WeeChat 1.0.1]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
anaeem1_ has joined #ruby
<Hanmac> ping shevy again
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
AmBienCeD has joined #ruby
aCicloid is now known as cicloid
AmBienCeD has joined #ruby
AmBienCeD has quit [Changing host]
devdazed has quit [Quit: Computer has gone to sleep.]
oo_ has quit [Ping timeout: 255 seconds]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
jdj_dk has quit [Read error: Connection reset by peer]
jdj_dk has joined #ruby
autonomousdev has joined #ruby
Jackneill has quit [Remote host closed the connection]
unleashy has quit [Quit: Page closed]
blah has joined #ruby
<blah> Is there ruby syntax/semantic documentation similar to that of golang or pythons tutorial?
<blah> Goes of classes, etc
<blah> over*
marr has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
troulouliou_dev has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
starless has quit [Quit: WeeChat 1.0.1]
jdj_dk has quit [Read error: Connection reset by peer]
<Hanmac> read also more about http://www.ruby-doc.org/core-2.1.3/
jdj_dk has joined #ruby
<waxjar> there's more for each sections in the files on the left. ruby's docs aren't the best :(
<waxjar> *section
<blah> that's why i posted here; bit hard to find 'non blog' stuff
kaspergrubbe has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
JoshGlzBrk has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
ndrei has joined #ruby
JohnBat26 has quit [Quit: KVIrc 4.3.1 Aria http://www.kvirc.net/]
cicloid is now known as aCicloid
psy has quit [Quit: Leaving]
<shevy> Hanmac yo
mary5030_ has joined #ruby
<Hanmac> shevy i pushed newest version of rwx ... tested against ubuntu & osx and Fedora
<Hanmac> shevy is still a dev version so you still need --pre
chrishough has joined #ruby
oo_ has joined #ruby
banister has joined #ruby
<Hanmac> huhu banister
<banister> Hanmac wassu
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
<Hanmac> banister: newest version of rwx https://rubygems.org/gems/rwx with version jump from 0.0.1 to 0.0.1.1 now with rspec
<shevy> how do I use --pre again?
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
mary5030 has quit [Ping timeout: 258 seconds]
<banister> Hanmac congrats :)
diegoviola has joined #ruby
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
<Hanmac> after i fixed it yard will be supported later (currently yard cant parse my code) ... then maybe the next thing for adding might be travis or something like that
VTLob has left #ruby [#ruby]
<Hanmac> shevy: https://rubygems.org/gems/rwx << you can see there how you need to use -pre
davedev24_ has joined #ruby
oo_ has quit [Ping timeout: 258 seconds]
ht__th has quit [Remote host closed the connection]
<shevy> gem install rwx --pre
<shevy> k
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
iamjarvo has joined #ruby
iamjarvo has quit [Max SendQ exceeded]
iamjarvo has joined #ruby
livathinos has quit [Remote host closed the connection]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
BBBThunda has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
justin_pdx has joined #ruby
_cake has quit [Read error: Connection reset by peer]
livathinos has joined #ruby
_cake has joined #ruby
<Hanmac> shevy if you have questions look at the tests the specs, or the samples ... or just ping me
xvq17 has quit [Quit: leaving]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
mikepack has joined #ruby
nisstyre has joined #ruby
nisstyre has quit [Changing host]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
livathin_ has joined #ruby
aCicloid is now known as cicloid
i_s has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
<shevy> well I got a problem but I only have less than 2 hours left before I have to sleep so I won't make it today
andrewlio has quit [Quit: Leaving.]
gregf has quit [Quit: WeeChat 1.0.1]
blackmesa has quit [Ping timeout: 245 seconds]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
atmosx_ has joined #ruby
livathinos has quit [Ping timeout: 255 seconds]
sinkensabe has quit [Remote host closed the connection]
carraroj has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
jdj_dk has quit [Quit: Leaving...]
blackmesa has joined #ruby
Hobogrammer has joined #ruby
HelloFred has quit [Quit: Saliendo]
i_s has quit [Ping timeout: 258 seconds]
justin_pdx has quit [Quit: justin_pdx]
bitri_ has joined #ruby
aspires has quit []
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
justin_pdx has joined #ruby
alec-c4 has joined #ruby
gtrak has joined #ruby
aspires has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
last_staff1 has quit [Quit: l8r peeps]
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
chipotle has joined #ruby
cicloid is now known as aCicloid
jbueza has joined #ruby
bagackiz has joined #ruby
bagackiz has quit [Max SendQ exceeded]
atmosx_ has quit [Ping timeout: 244 seconds]
<Hanmac> apeiros: bagackiz still has MaxSendQ problems do you want todo about that?
psy has joined #ruby
it0a has quit [Ping timeout: 246 seconds]
<apeiros> grah
obs has joined #ruby
atmosx_ has joined #ruby
atmosx_ has quit [Client Quit]
JoshGlzBrk has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
ptrrr has quit [Quit: ptrrr]
<apeiros> why do I always forget that stupid little +b?
justin_pdx has quit [Quit: justin_pdx]
<jhass> you need a client with aliases :P
<apeiros> I need a useable client :-|
ptrrr has joined #ruby
<jhass> that's what I tried to say...
aCicloid is now known as cicloid
Juzzika has joined #ruby
<threesixes> 0_0
mary5030_ has quit [Remote host closed the connection]
* threesixes pulls out the trout
<apeiros> threesixes: o0
<banister> apeiros what client to u use
<banister> do
<apeiros> still limechat
<apeiros> banister: btw., you should fix your connection too
<apeiros> you quite often have series of quick disconnects/reconnects
<banister> apeiros it's not my connection so much it's cos i'm always travelling
<banister> oh
<banister> and also there's dead spots in my house, but you're right, i need to get a bouncer thing
<banister> i had one for a while
<threesixes> may i suggest qassel or hexchat to thee, or irssi if yer a console gangster
<apeiros> get a bouncer? (I should too :-S)
<apeiros> threesixes: you may. but I don't think I'll switch.
<apeiros> I'm far too lazy.
Lypho has joined #ruby
<threesixes> i dont think i care to be part of this community anymore
threesixes has left #ruby ["Leaving"]
odlox has joined #ruby
mary5030 has joined #ruby
<Hanmac> i use pidgin for my irc stuff ...
godd2 has joined #ruby
oo_ has joined #ruby
<jhass> Hanmac: enabled the Join/Part Hiding plugin?
wasamasa is now known as }}}
timonv_ has joined #ruby
<Hanmac> hm no mostly for some i want to see when they enter or leave ... hm maybe i find a configurable one
SilkFox has joined #ruby
<jhass> that one only shows the ones who speak
ndrei has quit [Ping timeout: 265 seconds]
<jhass> not quite as intelligent as weechats smart filter, but still quite good
}}} is now known as wasamasa
iamjarvo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
agent_white has joined #ruby
SilkFox_ has quit [Ping timeout: 245 seconds]
carif has quit [Quit: Ex-Chat]
michaeldeol has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
oo_ has quit [Ping timeout: 245 seconds]
Lewix has quit [Quit: Leaving...]
havenwood has quit [Remote host closed the connection]
wasamasa is now known as {{{
{{{ is now known as }}}
}}} is now known as wasamasa
michaeldeol has joined #ruby
havenwood has joined #ruby
benzrf is now known as benzrf|offline
SilkFox_ has joined #ruby
chipotle has quit [Read error: Connection reset by peer]
lnormous has quit [Ping timeout: 258 seconds]
averil has joined #ruby
chipotle has joined #ruby
SilkFox has quit [Ping timeout: 250 seconds]
michaeldeol has quit [Ping timeout: 245 seconds]
cmckee has joined #ruby
aspires has quit []
averil has quit [Client Quit]
decoponio has quit [Quit: Leaving...]
aspires has joined #ruby
unclouded has quit [Ping timeout: 265 seconds]
carraroj has quit [Quit: Konversation terminated!]
troulouliou_dev has quit [Quit: Leaving]
timonv_ has quit [Remote host closed the connection]
rbrs has quit [Quit: Leaving]
mary5030 has quit [Remote host closed the connection]
Takle has joined #ruby
aspires has quit []
jlast has quit [Remote host closed the connection]
cmckee has quit [Quit: cmckee]
zaid_h has quit [Quit: ZZZzzz…]
jlast has joined #ruby
claymore has quit [Quit: Leaving]
Joufflu has joined #ruby
sepp2k1 has quit [Read error: Connection reset by peer]
havenwood has quit [Remote host closed the connection]
Timgauthier is now known as timgauthier_away
nfk has quit [Quit: yawn]
timgauthier_away is now known as Timgauthier
jlast has quit [Ping timeout: 240 seconds]
benzrf|offline is now known as benzrf
ta_ has joined #ruby
ferr has joined #ruby
spastorino has joined #ruby
ta has quit [Ping timeout: 240 seconds]
cicloid is now known as aCicloid
jxf has joined #ruby
unclouded has joined #ruby
chipotle has quit [Quit: cya]
Olipro has quit [Read error: Connection reset by peer]
qmfnp has quit [Quit: Textual IRC Client: www.textualapp.com]
thisguy123 has joined #ruby
mmochan_ has joined #ruby
jbueza has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
qmfnp has joined #ruby
pu22l3r has joined #ruby
qmfnp is now known as qmfnp_away
oo_ has joined #ruby
Olipro has joined #ruby
thsig has joined #ruby
anaeem1_ has quit [Remote host closed the connection]
moritzs has quit [Quit: Verlassend]
almostworking has joined #ruby
oo_ has quit [Ping timeout: 246 seconds]
narcan has quit [Quit: -[AppDelegate installMalware]: unrecognized selector sent to instance 0x156109c0]
aspires has joined #ruby
timonv_ has joined #ruby
chrisja has joined #ruby
Timgauthier is now known as timgauthier_away
timgauthier_away is now known as Timgauthier
sevvie has quit [Ping timeout: 245 seconds]
spyderman4g63 has joined #ruby
lw has quit [Quit: s]
vyorkin has quit [Ping timeout: 260 seconds]
mercwithamouth has joined #ruby
livathin_ has quit [Remote host closed the connection]
Lypho has quit [Quit: quit]
lukevinc has joined #ruby
almostworking has left #ruby [#ruby]
livathinos has joined #ruby
ptrrr has quit [Quit: ptrrr]
klaut has joined #ruby
spyderman4g63 has quit [Ping timeout: 265 seconds]
mercwithamouth has quit [Ping timeout: 245 seconds]
aspires has quit []
livathinos has quit [Ping timeout: 245 seconds]
s00pcan has joined #ruby
troulouliou_dev has joined #ruby
chipotle has joined #ruby
SilkFox_ has quit [Ping timeout: 272 seconds]
oo_ has joined #ruby
agent_white has quit [Quit: bbl]
chrishough has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<thisguy123> exit
thisguy123 has quit [Quit: leaving]
fabrice31 has joined #ruby
Takle has quit [Remote host closed the connection]
jxf has quit [Ping timeout: 272 seconds]
totimkopf has quit [Quit: leaving]
robbyoconnor has quit [Ping timeout: 240 seconds]
jbueza has joined #ruby
totimkopf has joined #ruby
aCicloid is now known as cicloid
obs has quit [Quit: Saliendo]
oo_ has quit [Ping timeout: 265 seconds]
olivier_bK has quit [Ping timeout: 260 seconds]
Juzzika has quit []
fabrice31 has quit [Ping timeout: 272 seconds]
jcdesimp has joined #ruby
lw has joined #ruby
lw has quit [Read error: Connection reset by peer]
lw_ has joined #ruby
vyorkin has joined #ruby
dorei has quit []
havenwood has joined #ruby
x77686d has joined #ruby
Snowstormer has quit [Ping timeout: 258 seconds]
x77686d has quit [Client Quit]
robbyoconnor has joined #ruby
Snowstormer has joined #ruby
mityaz has quit [Quit: See ya!]
cicloid is now known as aCicloid
alec-c4 has quit [Remote host closed the connection]
alec-c4 has joined #ruby
alec-c4 has quit [Remote host closed the connection]
codecop has quit [Remote host closed the connection]
mistergibson has quit [Quit: Quitting ... be good to each other :)]
livathinos has joined #ruby
alec-c4 has joined #ruby
pu22l3r has quit [Remote host closed the connection]
robbyoconnor has quit [Ping timeout: 240 seconds]
kirun has quit [Quit: Client exiting]
i_s has joined #ruby
max96at is now known as max96at|off
alec-c4 has quit [Ping timeout: 245 seconds]
livathinos has quit [Ping timeout: 245 seconds]
lw_ has quit [Read error: Connection reset by peer]
volty has joined #ruby
lw has joined #ruby
troulouliou_dev has quit [Quit: Leaving]
chrishough has joined #ruby
robbyoconnor has joined #ruby
chrishough has quit [Client Quit]
segmond has quit [Ping timeout: 240 seconds]
chrishough has joined #ruby
Takle has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mikepack has quit [Remote host closed the connection]
thsig has quit [Remote host closed the connection]
i_s has quit [Ping timeout: 240 seconds]
relix has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
pasties has quit [Ping timeout: 250 seconds]
pasties has joined #ruby
banister has joined #ruby
einarj has joined #ruby
SolarSailor has joined #ruby
einarj_ has joined #ruby
s00pcan has quit [Remote host closed the connection]
einarj_ has quit [Read error: Connection reset by peer]
einarj has quit [Ping timeout: 265 seconds]
einarj has joined #ruby
alec-c4 has joined #ruby
Takle has quit [Remote host closed the connection]
SolarSailor has quit [Ping timeout: 246 seconds]
segmond has joined #ruby
fuhgeddaboudit has quit [Ping timeout: 255 seconds]
alec-c4 has quit [Remote host closed the connection]
AlSquire has quit [Quit: This computer has gone to sleep]
davasaurous has joined #ruby
banister has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alec-c4 has joined #ruby
Joufflu has quit [Ping timeout: 265 seconds]
monsieurp has quit [Remote host closed the connection]
monsieurp has joined #ruby
monsieurp has quit [Changing host]
monsieurp has joined #ruby
Wolland has joined #ruby
lw has quit [Quit: s]
Takle has joined #ruby
zaid_h has joined #ruby
zaid_h has quit [Client Quit]
alec-c4 has quit [Ping timeout: 245 seconds]
oo_ has joined #ruby
Joufflu has joined #ruby
robbyoconnor has quit [Ping timeout: 240 seconds]
gregf has joined #ruby
mary5030 has joined #ruby
oo_ has quit [Ping timeout: 245 seconds]
qmfnp_away is now known as qmfnp
Wolland has quit []
jlast has joined #ruby
wookiehangover has quit [Read error: Connection reset by peer]
yfeldblu_ has joined #ruby
lw has joined #ruby
skolman_ has joined #ruby
oo_ has joined #ruby
yfeldblum has quit [Ping timeout: 258 seconds]
jlast has quit [Ping timeout: 265 seconds]
wookiehangover has joined #ruby
SCHAAP137 has joined #ruby
oo_ has quit [Ping timeout: 250 seconds]
robbyoconnor has joined #ruby
gtrak has quit [Ping timeout: 240 seconds]
banister has joined #ruby
charliesome has joined #ruby
zorak8 has joined #ruby
sinequanon has joined #ruby
Timgauthier has quit [Quit: Textual IRC Client: www.textualapp.com]
oo_ has joined #ruby
klaut has quit [Remote host closed the connection]
jxf has joined #ruby
spyderman4g63 has joined #ruby
spyderman4g63 has quit [Client Quit]
nonks has quit [Ping timeout: 246 seconds]
Takle has quit [Remote host closed the connection]
gsd has joined #ruby
Takle has joined #ruby
oo_ has quit [Ping timeout: 272 seconds]
az has quit [Ping timeout: 260 seconds]
Takle has quit [Ping timeout: 245 seconds]
rkalfane has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
nonks has joined #ruby
twistedpixels is now known as zz_twistedpixels
qmfnp has quit [Quit: Textual IRC Client: www.textualapp.com]
livathinos has joined #ruby
emmesswhy has quit [Quit: Leaving]
mdw has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
lw has quit [Quit: s]
rkalfane has joined #ruby
bricker`work has joined #ruby
ore0s has joined #ruby
gtrak has joined #ruby
agjacome has joined #ruby
charliesome has quit [Quit: zzz]
Doddlin has quit [Quit: Doddlin]
charliesome has joined #ruby
weemsledeux has quit [Quit: Textual IRC Client: www.textualapp.com]
gtrak has quit [Remote host closed the connection]
livathinos has quit [Ping timeout: 260 seconds]
mikecmpbll has quit [Quit: i've nodded off.]
ore0s has quit [Ping timeout: 246 seconds]
mistergibson has joined #ruby
dopie has quit [Remote host closed the connection]
robbyoconnor has quit [Excess Flood]
robbyoconnor has joined #ruby
tier has joined #ruby
mikecmpbll has joined #ruby
oo_ has joined #ruby
hmsimha has joined #ruby
hmsimha_ has joined #ruby
hmsimha_ has quit [Client Quit]
oo_ has quit [Ping timeout: 260 seconds]
DLSteve has quit [Quit: Leaving]
Atttwww has joined #ruby
skolman_ has quit [Remote host closed the connection]
skolman_ has joined #ruby
payne has quit [Read error: Connection reset by peer]
aCicloid is now known as cicloid
narcan has joined #ruby
kaspergrubbe has quit [Remote host closed the connection]
lw has joined #ruby
gsd has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
skolman_ has quit [Ping timeout: 265 seconds]
lw has quit [Client Quit]
ee99ee2 has joined #ruby
lukevinc has quit [Quit: ChatZilla 0.9.91 [Firefox 24.8.0/20000101000000]]
<ee99ee2> I'm new to ruby and trying to understand an error I'm getting when compiling something with SASS. The stack trace is here: https://gist.github.com/ee99ee/75ae0b792dd52db5b2f1
<ee99ee2> Where does this say the error is occurring and what exactly does "superclass mismatch for class Literal" mean?
freerobby has quit [Quit: Leaving.]
lnormous has joined #ruby
gsd has joined #ruby
lw has joined #ruby
moshee has quit [Ping timeout: 240 seconds]
mercwithamouth has joined #ruby
<jhass> that's not a ruby error, go ask the sass guys
<jhass> #sass
xorax has quit [Quit: leaving]
zz_twistedpixels is now known as twistedpixels
lw has quit [Client Quit]
blackmesa has quit [Ping timeout: 265 seconds]
<ee99ee2> I know, but the error is ruby output... I'm trying to pinpoint where the error is being thrown so I can debug it a little
<ee99ee2> I know it's not a ruby bug, just wanted some help reading the error
pu22l3r has joined #ruby
AriaMoKr has joined #ruby
oo_ has joined #ruby
AriaMoKr has left #ruby [#ruby]
fabrice31 has joined #ruby
bitri_ has quit [Quit: Textual IRC Client: www.textualapp.com]
mercwithamouth has quit [Ping timeout: 246 seconds]
moshee has joined #ruby
mikepack has joined #ruby
renderful has joined #ruby
r0bby_ has joined #ruby
robbyoconnor has quit [Ping timeout: 246 seconds]
<havenwood> >> class Example < String; end; class Example < Numeric; end
<eval-in__> havenwood => superclass mismatch for class Example (TypeError) ... (https://eval.in/207764)
<havenwood> ee99ee2: ^
einarj has quit [Remote host closed the connection]
jlast has joined #ruby
oo_ has quit [Ping timeout: 245 seconds]
twoshot_ has joined #ruby
fabrice31 has quit [Ping timeout: 265 seconds]
pu22l3r has quit [Ping timeout: 265 seconds]
oo_ has joined #ruby
mikepack has quit [Ping timeout: 260 seconds]
sinequanon has quit [Remote host closed the connection]
renderful has quit [Ping timeout: 240 seconds]
j_mcnally has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
thsig has joined #ruby
sinequanon has joined #ruby
kireevco has joined #ruby
jlast has quit [Ping timeout: 272 seconds]
michaeldeol has joined #ruby
zorak8 has quit [Ping timeout: 244 seconds]
sinequanon has quit [Client Quit]
oo_ has quit [Ping timeout: 255 seconds]
zaid_h has joined #ruby
jlast has joined #ruby
cicloid is now known as aCicloid
thsig has quit [Ping timeout: 244 seconds]
<shevy> hmm I can do this
<shevy> ruby -r some_file.rb -e NAME_OF_METHOD_HERE
<shevy> but how can I pass ARGV as input to this method, from the commandline?
<volty> send
<havenwood> --
jlast has quit [Ping timeout: 265 seconds]
Spami has joined #ruby
r0bby_ has quit [Excess Flood]
<shevy> aaaah
r0bby_ has joined #ruby
<shevy> I get it... I was using an alias that called several other aliases
<shevy> it works when I invoke the method directly
<volty> of course, the -e content is interpolated --- so it is as if in the code
bricker`work has quit [Ping timeout: 246 seconds]
i_s has joined #ruby
Takle has joined #ruby
diegovio1 has joined #ruby
spicerack has joined #ruby
oo_ has joined #ruby
rkazak_ has joined #ruby
diegoviola has quit [Ping timeout: 255 seconds]
diegovio1 is now known as diegoviola
kireevco has quit [Quit: Leaving.]
<volty> I cannot stand when people lavish their advices on how one should program, but I'm curious on all that aliasing chains -- or it is quite advanced or it will be almost unreadable the next year : ) @ shevy
Spami has quit [Quit: This computer has gone to sleep]
davidhq_ has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
i_s has quit [Ping timeout: 255 seconds]
davasaurous has quit []
Takle has quit [Ping timeout: 245 seconds]
oo_ has quit [Ping timeout: 258 seconds]
jcdesimp_ has joined #ruby
Scotteh has quit [Ping timeout: 265 seconds]
mchelen has quit [Ping timeout: 260 seconds]
Scotteh has joined #ruby
mikepack has joined #ruby
JoshGlzBrk has joined #ruby
KanKava has quit [Remote host closed the connection]
jcdesimp_ has quit [Client Quit]
jcdesimp has quit [Ping timeout: 255 seconds]
kobain has quit [Read error: Connection timed out]
kobain has joined #ruby
bricker`work has joined #ruby
kobain has quit [Max SendQ exceeded]
kobain has joined #ruby