baweaver changed the topic of #ruby to: Rules & more: https://ruby-community.com || Ruby 2.5.1, 2.4.4, 2.3.7, 2.6.0-preview1: https://www.ruby-lang.org || Paste 4+ lines of text to https://gist.github.com || Rails questions? Ask in #RubyOnRails || Books: https://goo.gl/wpGhoQ || Logs: https://irclog.whitequark.org/ruby
<gizmore> you get that No ports are being checked error?
alfiemax has joined #ruby
jenrzzz has quit [Ping timeout: 248 seconds]
jnollette has quit [Ping timeout: 255 seconds]
bmurt has joined #ruby
alfiemax has quit [Ping timeout: 264 seconds]
jnollette has joined #ruby
MikasiCoyote has quit [Read error: Connection reset by peer]
jyaworski has joined #ruby
x77686d has joined #ruby
jyaworski has quit [Ping timeout: 240 seconds]
muffiny has joined #ruby
nitric_ has quit [Ping timeout: 264 seconds]
RougeR has quit [Ping timeout: 248 seconds]
Yzguy has quit [Quit: Zzz...]
ta_ has joined #ruby
eckhardt_ has joined #ruby
random_auroras has joined #ruby
<random_auroras> In Gemfiles, what does %r!^(stuff1|stuff2)!i do? I presume it's a regex, but can other important details are there? (Is ^ part of Ruby syntax or is it the regex start-of-line?
jcarl43 has quit [Quit: WeeChat 2.1]
alfiemax has joined #ruby
alfiemax has quit [Ping timeout: 240 seconds]
mroutis has joined #ruby
marxarelli is now known as marxarelli|afk
segy_ has joined #ruby
eckhardt_ has quit [Quit: Textual IRC Client: www.textualapp.com]
raynold has joined #ruby
segy has quit [Ping timeout: 260 seconds]
segy_ is now known as segy
gizmore|2 has joined #ruby
gizmore has quit [Ping timeout: 260 seconds]
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
gizmore|2 is now known as gizmore
hlmjr has joined #ruby
ta_ has quit [Ping timeout: 264 seconds]
kurko_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cagomez has quit [Ping timeout: 264 seconds]
sylario has quit [Quit: Connection closed for inactivity]
jamiejackson has quit [Ping timeout: 260 seconds]
<Zarthus> random_auroras: pretty confident that's part of the regex, where ! is the delimiter
shtirlic has quit [Ping timeout: 240 seconds]
shtirlic has joined #ruby
Dimik has joined #ruby
jeffreylevesque has joined #ruby
<havenwood> random_auroras: It's the same delimiter rules as the other % literals.
<havenwood> random_auroras: You'll most often see: %r()
<havenwood> err
<havenwood> various delimiters - i guess I shouldn't say "most often" without data in this case
<havenwood> >> %r||
<ruby[bot]> havenwood: # => // (https://eval.in/997536)
<random_auroras> For some reason, I'm having trouble getting jekyll 'index.html' to be included from a gem plugin.
<random_auroras> Theme, that is.
<havenwood> I guess %r{} is popular.
sarmiena_ has quit [Quit: sarmiena_]
sarmiena_ has joined #ruby
sarmiena_ has quit [Client Quit]
jaequery has joined #ruby
cyberg has quit [Quit: Leaving]
gix- has quit [Ping timeout: 260 seconds]
<random_auroras> -_- I think I've been struggling with something Jekyll doesn't do by design.
x77686d has quit [Quit: x77686d]
gix has joined #ruby
gix has quit [Client Quit]
gix has joined #ruby
dinfuehr_ has quit [Ping timeout: 264 seconds]
arescorpio has joined #ruby
mroutis has quit [Ping timeout: 264 seconds]
dinfuehr has joined #ruby
chocoelho has quit [Quit: Konversation terminated!]
jyaworski has joined #ruby
marxarelli|afk has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<random_auroras> Well, thanks people.
jyaworski has quit [Ping timeout: 248 seconds]
kurko_ has joined #ruby
jyaworski has joined #ruby
rwb has quit [Ping timeout: 268 seconds]
white_lilies has quit [Ping timeout: 260 seconds]
ramfjord has quit [Ping timeout: 260 seconds]
Yzguy has joined #ruby
random_auroras has left #ruby ["WeeChat 1.6"]
rivalomega has quit []
Yzguy has quit [Client Quit]
kapil___ has joined #ruby
Yzguy has joined #ruby
alfiemax has joined #ruby
alfiemax has quit [Ping timeout: 240 seconds]
jyaworski has quit [Ping timeout: 248 seconds]
jyaworski has joined #ruby
x77686d has joined #ruby
white_lilies has joined #ruby
jyaworski has quit [Ping timeout: 260 seconds]
jready has joined #ruby
jready has quit [Remote host closed the connection]
jready has joined #ruby
gnufied has quit [Quit: Leaving]
lystra_ has quit [Read error: Connection reset by peer]
x77686d has quit [Quit: x77686d]
lystra_ has joined #ruby
alfiemax has joined #ruby
Dimik has quit [Ping timeout: 240 seconds]
jready has quit [Ping timeout: 255 seconds]
alfiemax_ has joined #ruby
<Vashy> hi all, I'm trying to capture the output of airmon-ng, I tried something like: IO.popen(`airmon-ng wlan0`) but that doesn't work (or at least not as I expected)
<Vashy> basically the output of airmon-ng is constantly changing
<Vashy> sorry airodump-ng is what I'm trying to get the output for
<Vashy> here's an example of it running: https://youtu.be/AUPw15m-6uM?t=29s
<Vashy> does anyone know how to capture that kind of output?
alfiemax has quit [Ping timeout: 260 seconds]
jready has joined #ruby
muffiny has quit [Quit: Connection closed for inactivity]
jready has quit [Remote host closed the connection]
ResidentBiscuit has joined #ruby
jaequery has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
AJA4350 has quit [Quit: AJA4350]
alfiemax_ has quit [Remote host closed the connection]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
x77686d has joined #ruby
x77686d has quit [Client Quit]
ta_ has joined #ruby
alfiemax has joined #ruby
<garyserj> I can't figure out how to get my ruby program to see a file uploaded from a form. I am using sinatra. I have a form with action and method and <input type="file" /> and <input type="submit" /> And when I click submit it goes to that route in sinatra, I wrote "posted#{params}" so I could view the params thinking maybe the file might be there but it isn't. I can't see where the file is sent
<garyserj> or how to access it. I tried adding enctype="multipart/form-data" as an attribute to the opening form tag, but it didn't help.
kurko_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
arescorpio has quit [Quit: Leaving.]
alfiemax has quit [Ping timeout: 260 seconds]
govg has joined #ruby
konsolebox has quit [Ping timeout: 264 seconds]
konsolebox has joined #ruby
ResidentBiscuit has quit [Remote host closed the connection]
jready has joined #ruby
ta_ has quit [Ping timeout: 268 seconds]
orbyt_ has joined #ruby
jyaworski has joined #ruby
jeffreylevesque has quit [Read error: Connection reset by peer]
tomphp has joined #ruby
Matthew1 has joined #ruby
jyaworski has quit [Ping timeout: 256 seconds]
rikai has quit [Ping timeout: 265 seconds]
rikai has joined #ruby
tomphp has quit [Ping timeout: 240 seconds]
white_lilies has quit [Ping timeout: 240 seconds]
jyaworski has joined #ruby
gix- has joined #ruby
gix has quit [Disconnected by services]
marxarelli has joined #ruby
vasilakisfil has quit [Ping timeout: 260 seconds]
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby
<garyserj> weaksauce: i get an error from that code, but my params is blank as mentioned so that is probably why i get an error. the q is why is my params blank
jyaworski has quit [Ping timeout: 264 seconds]
chouhoulis has quit [Ping timeout: 256 seconds]
mrBen2k2k2k has quit [Read error: Connection reset by peer]
jyaworski has joined #ruby
Psybur has quit [Ping timeout: 240 seconds]
devyn has quit [Ping timeout: 256 seconds]
vasilakisfil has joined #ruby
devyn has joined #ruby
jyaworski has quit [Ping timeout: 248 seconds]
jready has quit []
sarmiena_ has joined #ruby
ta_ has joined #ruby
jyaworski has joined #ruby
nadir has joined #ruby
jyaworski has quit [Ping timeout: 256 seconds]
vasilakisfil has quit [Ping timeout: 248 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
biberu has joined #ruby
n008f4g_ has joined #ruby
ur5us has quit [Remote host closed the connection]
sarmiena_ has quit [Quit: sarmiena_]
x77686d has joined #ruby
Matthew1 has quit [Remote host closed the connection]
sauvin has joined #ruby
<garyserj> weaksauce: turned out to be https://stackoverflow.com/questions/6464205/eoferror-bad-content-body-when-trying-to-upload-file-to-rails?rq=1 the input element was missing a name attribute
ujjain has quit [Ping timeout: 276 seconds]
lystra_ has quit [Ping timeout: 240 seconds]
lystra_ has joined #ruby
jyaworski has joined #ruby
conta has joined #ruby
conta has quit [Ping timeout: 256 seconds]
rippa has joined #ruby
dr3w_ has quit [Read error: Connection reset by peer]
jyaworski has quit [Ping timeout: 240 seconds]
dr3w_ has joined #ruby
ldepandis has joined #ruby
ryzokuken has joined #ruby
amar has joined #ruby
marxarelli has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jyaworski has joined #ruby
amar has quit [Ping timeout: 248 seconds]
ta_ has quit [Remote host closed the connection]
gregoryja has quit [Read error: Connection reset by peer]
Yzguy has quit [Quit: Zzz...]
amelliaa has joined #ruby
jyaworski has quit [Ping timeout: 240 seconds]
Guest88543 has quit [Ping timeout: 268 seconds]
baweaver is now known as baweaver_away
amelliaa has quit [Quit: -]
phaul has joined #ruby
amar has joined #ruby
troys has quit [Quit: Bye]
marxarelli has joined #ruby
twe4ked has quit [Ping timeout: 276 seconds]
ta_ has joined #ruby
twe4ked has joined #ruby
alex`` has quit [Read error: Connection reset by peer]
<garyserj> I know in sinatra i can do e.g. haml :blahpage but what if I want to do a symbol with a variable name .. I can't get these to work haml :#{filename} or haml(:#{filename})
<apeiros> garyserj: filename = :yourfile; haml filename
<apeiros> don't overcomplicate symbols. they are values, just like strings or integers. they have no special relation with variables.
<garyserj> in my code I don't know the name of the file
<garyserj> the name of the file is a string stored in filename
tomphp has joined #ruby
<phaul> &ri String#to_sym
<apeiros> derpy is off :(
<apeiros> adaedra seems to be off too
<phaul> oh, :(
<garyserj> i find some results on google that relate to to_sym that i will try, thanks
tomphp has quit [Client Quit]
<apeiros> garyserj: just use the `ri` command in your shell or ruby-doc.org
<apeiros> google is a *terrible* replacement for language docs.
suukim has joined #ruby
dionysus69 has joined #ruby
jyaworski has joined #ruby
jyaworski has quit [Ping timeout: 260 seconds]
ta_ has quit [Remote host closed the connection]
ta_ has joined #ruby
marius has quit [Quit: baj]
marius has joined #ruby
blackmesa has joined #ruby
conta has joined #ruby
marius has quit [Quit: baj]
marius has joined #ruby
dionysus69 has quit [Read error: Connection reset by peer]
dionysus69 has joined #ruby
ta_ has quit [Remote host closed the connection]
amar has quit [Remote host closed the connection]
amar has joined #ruby
ujjain has joined #ruby
amar has quit [Ping timeout: 260 seconds]
marxarelli has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tomphp has joined #ruby
nadir has quit [Quit: Connection closed for inactivity]
clemens3_ has joined #ruby
jyaworski has joined #ruby
gustavn64 has joined #ruby
<gustavn64> I haven't used Ruby for a very long time now. What's the canonical way to install it? I'm using Windows 10 so I can use "Ubuntu on Windows"
<gustavn64> Is there any good guide about this kind of stuff? Kind of like that guide for Python (I forgot its name)
ryzokuken has quit [Remote host closed the connection]
ta_ has joined #ruby
<jokester> if you are familiar with linux, WSL (linux on windows stuff) may be the faster way to go
<gustavn64> jokester: Yeah, I have that installed.
jyaworski has quit [Ping timeout: 268 seconds]
Matthew1 has joined #ruby
<livcd> gustavn64: rvm? docker?
<gustavn64> livcd: Alright, I'll use RVM. Is it recommended to install that through APT?
<gustavn64> or, I don't even know if it's there
<livcd> I would decide first what's the use case
amar has joined #ruby
amar has quit [Ping timeout: 248 seconds]
amar has joined #ruby
amar has quit [Remote host closed the connection]
amar has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dhollin3 has joined #ruby
dhollinger has quit [Ping timeout: 260 seconds]
ByronJohnson has quit [Ping timeout: 264 seconds]
ByronJohnson has joined #ruby
amar has quit [Ping timeout: 248 seconds]
darix has quit [Remote host closed the connection]
Mike11 has joined #ruby
tomphp has joined #ruby
saTchymoto has joined #ruby
<saTchymoto> test
minimalism has quit [Quit: minimalism]
venmx has joined #ruby
<Radar> did someone say something?
ur5us has joined #ruby
deathwishdave has joined #ruby
jyaworski has joined #ruby
x77686d has quit [Quit: x77686d]
ipe has joined #ruby
alex`` has joined #ruby
jyaworski has quit [Ping timeout: 240 seconds]
schneider- has joined #ruby
weaksauce has quit [Ping timeout: 256 seconds]
ur5us has quit [Read error: Connection reset by peer]
karapetyan has joined #ruby
ellcs has joined #ruby
karapetyan has quit [Read error: Connection reset by peer]
kapil___ has quit [Quit: Connection closed for inactivity]
schneider- has quit [Ping timeout: 256 seconds]
jyaworski has joined #ruby
deathwishdave has quit [Quit: Textual IRC Client: www.textualapp.com]
deathwishdave has joined #ruby
dr3w_ has quit [Read error: Connection reset by peer]
leitz has joined #ruby
x77686d has joined #ruby
schneider- has joined #ruby
dr3w_ has joined #ruby
jyaworski has quit [Ping timeout: 260 seconds]
<Matthew1> lol
karapetyan has joined #ruby
schneider- has quit [Ping timeout: 248 seconds]
x77686d has quit [Quit: x77686d]
ellcs has quit [Ping timeout: 240 seconds]
tvw has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Matthew1 has quit [Remote host closed the connection]
gustavn64 has quit [Read error: Connection reset by peer]
AJA4350 has joined #ruby
darix has joined #ruby
<leitz> Newb question. If "my_method" takes a file and returns a line from the file, should the exception handling be in the method or in whatever calls it? Method will get called several times in varieous ways.
GodFather_ has quit [Read error: Connection reset by peer]
GodFather_ has joined #ruby
<apeiros> leitz: if your exception handling is in the method, what will the method do about the exception?
nickjj has joined #ruby
<leitz> apeiros, my_method woudl return nil, and let the caller deal with it. That's the theory, anyway.
<leitz> When I did it before the method was failing but I had covered the exception so well I missed the failure.
<apeiros> so the method doesn't really deal with it anyway - but that's the point of exception handling: dealing with it.
workmad3 has quit [Quit: Lost terminal]
<apeiros> in other words: if you can't actually do anything about an exception, then don't handle it. let it propagate up to a point where you *can* do something meaningful about it.
tomphp has joined #ruby
<leitz> Ah. So the caller has to decide to put in a different value, raise the exception higher, or whatever?
<apeiros> caller obeys the same rule - if it can't do any meaningful thing about an exception, it shouldn't even rescue and just let it propagate.
<apeiros> so the thing you as a programmer have to think about is: where can you do something meaningful about which exception? and then place the exception handling there.
ur5us has joined #ruby
<leitz> I'm bouncing between reading "Refactoring (Ruby edition)" and "Growing opbject oriented software guided by tests".
<apeiros> yeah, from a glance I'd say I'd check on program startup whether all expected files exist and are readable and abort there with a user-friendly message
<apeiros> and in get_random_line_from_file I'd just crash hard
<leitz> While my code may be Apprentice level I'd like it to be well documented, clean, and tested Apprentice level. :)
RougeR has joined #ruby
RougeR has joined #ruby
kapil___ has joined #ruby
<leitz> Not sure "all exepected files" is the right path as there are several files that don't get called, depending on the options chosen.
<apeiros> File.readlines(fname).grep(/(?!.*#).{4{/).sample.chomp
<leitz> This is the character generation thing I've been working on for a while.
<apeiros> leitz: does that matter? i.e., even if a file is not used in one invocation, is it reasonable to have an installation of your program where one of the files is missing?
ur5us has quit [Ping timeout: 264 seconds]
<apeiros> yes, I'm aware. travelers iirc
howdoi has quit [Quit: Connection closed for inactivity]
<leitz> Traveller, yup.
* leitz is thinking about "does it matter"...
<apeiros> I'm not talking about reading all files. just ensuring they're there and readable. i.e. `all_files = ["array", "with", "all", "paths"]; all_files.all? { |path| File.readable?(path) }`
<leitz> Understood. Your question hits on another big issue that I need to learn; "program building". The code I have has grown bit by bit and pretty much only works on my machine.
jinie has quit [Quit: ZNC 1.6.1 - http://znc.in]
<leitz> I understand the idea of Modules as mixins but I'm not really understanding Modules as transportable code.
jinie has joined #ruby
<leitz> Building a gem by reading a line from a book is one thing, setting up your gem to work in a totally clean environment is another.
<leitz> Setting up the gem to make sense to a real programmer is something else, too.
<apeiros> the "mixin" aspect is the "transportable" (IMO rather "reusable") code part…
<apeiros> i.e. you can mix it into multiple classes and all use the same methods.
<apeiros> Enumerable being a prominent example of reusing code
saTchymoto has quit [Ping timeout: 276 seconds]
saTchymoto has joined #ruby
dr3w_ has joined #ruby
conta has quit [Ping timeout: 248 seconds]
Puffball has quit [Remote host closed the connection]
silviu has joined #ruby
<leitz> Ah, various dogs and cats fed. Back to Ruby....
<leitz> I've seen Modules and Classes in Modules, which confused me.
<apeiros> are files and folders in folders confusing too?
<leitz> I've also seen the lib directory of a gem just hold a reference to other files elsewhere.
<apeiros> (or directories, if you prefer that term)
<leitz> I don't understand the levels of indirection and encapsulation. Module as mixin, but multimple levels of "mixin", to include classes?
<leitz> Or is there a different use for Module?
<apeiros> you're confusing unrelated things
<apeiros> you can mix in a module.
<leitz> Not surprised.
<apeiros> you can use a module to namespace things.
<apeiros> the two things are not related.
<leitz> Ah, that makes sense.
<apeiros> (or barely related)
<apeiros> namespace things -> nest modules/classes within modules/classes. works almost exactly the same as nesting files/directories in directories. it's mostly organizational.
<apeiros> ::Foo and ::Bar::Foo are two different constants. e.g. you could have YourProject::Array which is not the same as Array.
<leitz> Seeing a second use of Module as "Namespace" explains it. I understand the concept but most of my coding has been pretty small stuff so far.
silviu has quit [Remote host closed the connection]
silviu has joined #ruby
silviu has quit [Ping timeout: 264 seconds]
dr3w_ has joined #ruby
dr3w_ has quit [Client Quit]
dr3w_ has joined #ruby
dr3w_ has quit [Client Quit]
ryzokuken has joined #ruby
silviu has joined #ruby
psychicist__ has joined #ruby
silviu has quit [Client Quit]
schneider- has joined #ruby
nnm has joined #ruby
<leitz> Cool! My program is 5.25% documented, per rdoc. I see an opportunity here. :)
saTchymoto has quit []
amar has joined #ruby
dcvetkovic has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
synthroid has joined #ruby
karapetyan has quit [Remote host closed the connection]
conta has joined #ruby
tomphp has joined #ruby
kenichi has quit [Quit: ZNC - http://znc.in]
amar has quit [Ping timeout: 268 seconds]
conta has quit [Ping timeout: 256 seconds]
Mike11 has quit [Ping timeout: 256 seconds]
_antares_ has joined #ruby
FunkyChunky has joined #ruby
karapetyan has joined #ruby
ciscam has quit [Ping timeout: 265 seconds]
deathwishdave has quit [Quit: Textual IRC Client: www.textualapp.com]
ciscam has joined #ruby
jyaworski has joined #ruby
ellcs has joined #ruby
jyaworski has quit [Ping timeout: 255 seconds]
dhollin3 is now known as dhollinger
<darix> leitz: too much documentation. you should remove some.
<leitz> Hey darix.
<leitz> Too late! I'm now at an overwhelming 6.50%!
conta has joined #ruby
FunkyChunky has quit [Quit: Leaving]
conta has quit [Ping timeout: 240 seconds]
schneider- has quit [Ping timeout: 240 seconds]
conta has joined #ruby
blackmesa has quit [Quit: WeeChat 2.1]
rfoust has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alt155 has quit [Ping timeout: 240 seconds]
karapetyan has quit [Ping timeout: 256 seconds]
karapetyan has joined #ruby
ogres has joined #ruby
karapetyan has quit [Remote host closed the connection]
jcalla has joined #ruby
bmurt has joined #ruby
bmurt has quit [Client Quit]
<dcvetkovic> hi guys, I have searched the Ruby docs and Googled the matter as well... I am looking for a loop construct that would something along the lines of do...while... but which would have that one more extra iteration
clemens3 has joined #ruby
clemens3_ has quit [Ping timeout: 260 seconds]
DTZUZO has quit [Ping timeout: 240 seconds]
c0ncealed1 has quit [Remote host closed the connection]
<havenwood> dcvetkovic: Technically you can begin/while, but it seems hard to read to me so I'd loop/break.
<havenwood> >> n = 0; begin; n += 1; puts n; end while n < 4 # dcvetkovic
<ruby[bot]> havenwood: # => 1 ...check link for more (https://eval.in/997668)
c0ncealed1 has joined #ruby
n0m4d1c has joined #ruby
<havenwood> >> n = 0; loop do; n += 1; puts n; break unless n < 4; end # dcvetkovic
<ruby[bot]> havenwood: # => 1 ...check link for more (https://eval.in/997673)
saTchymoto has joined #ruby
<dcvetkovic> havenwood: yeah, I kinda did similiar, but I dislike the < :) I'd rather have = so its clear to humans
<havenwood> dcvetkovic: Assignment instead of less-than?
<apeiros> dcvetkovic: what problem are you trying to solve with that loop?
bmurt has joined #ruby
<apeiros> asking since ruby often has proper methods to do stuff
<dcvetkovic> havenwood, I meant ==... actually I used .zero?
unshadow has joined #ruby
<dcvetkovic> apeiros, simply obtain a start date, end date, and iterate through them. I calculate the difference between in days, and loop through number of days decrementing with each loop. Issue is I want both the end and start date to be processed. If I use .zero? it stops short of end date (or start date, depending how you iterate)
<leitz> Any good examples of excluding direcotries in ".rdoc_exclude"? What I'm finding isn't helping.
<apeiros> dcvetkovic: (start_date..end_date).each do |date| process(date)
<leitz> Ah...that might work...
kurko_ has joined #ruby
<apeiros> dcvetkovic: requires start_ and end_date to be instances of Date, not Time
<dcvetkovic> apeiros, wow, thats deadly :)
<havenwood> and a good example of Ruby having a proper method to do stuff!
<apeiros> actually… I prefer start_date.upto(end_date) do |date| …
DTZUZO has joined #ruby
<apeiros> end_date.downto(start_date) do |date| works too
<apeiros> if you want the reverse order
<havenwood> apeiros: I like that too. I always thought it was odd that Ranges can't decrement.
<apeiros> yeah, (bigger..lower).each and (lower..bigger).reverse_each would both be nice.
<havenwood> An aside, but endless Range in Ruby 2.6!: Date.today..
<havenwood> #=> #<Date: 2018-05-01 ((2458240j,0s,0n),+0s,2299161j)>..nil
<havenwood> Oh, look - it's May!
<apeiros> yupp. I'm still not too fond of the syntax, though. it looks like something is amiss :D but maybe that's just a matter of getting used to.
zod_ has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
* dcvetkovic grabs a jack and starts jacking his jaw back into place from the ground
<dcvetkovic> I am never using any other language again :)
bmurt has joined #ruby
gnufied has joined #ruby
dr3w_ has joined #ruby
Psybur has joined #ruby
<dcvetkovic> apeiros, havenwood, thanks for the education
<apeiros> yw
dr3w_ has quit [Client Quit]
<apeiros> with more information comes more advice ;-)
<leitz> dcvetkovic, Ruby has its warts but it is the most fun language I have ever tried. Lots of differnet things you can do with it too.
dr3w_ has joined #ruby
<leitz> Now that I figured out rdoc_options exclude to skip my toys directory I'm up to 11.02% documentation. Yay!
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nhh^ has quit []
<zod_> does anyone have a job using ruby that isn't a rails job?
drale2k_ has joined #ruby
psychicist__ has quit [Ping timeout: 240 seconds]
emph^ has joined #ruby
Rapture has joined #ruby
<leitz> zod_, I don't, but there do seem to be non-Rails Ruby jobs out there.
<leitz> Some places use Ruby in other places besides their Rails "department".
<zod_> I made a terminal application when I studied for my qualifications. But now that I'm seeking employment, all the jobs are only rails... so far
dr3w_ has joined #ruby
<leitz> Absent Rails I think Ruby has a negative % market shere. There are some jobs, just not a lot.
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<apeiros> I'd say after rails/webdev, the biggest ruby job market is in devops, i.e. chef, puppet etc.
<havenwood> zod_: Are you looking remotely or in a particular location or willing to relocate?
tomphp has joined #ruby
tomphp has quit [Client Quit]
<leitz> My theory, and I wouldn't put a lot of stock in this, is that I code more in Ruby. Coding is what makes me a better coder, and I work on general coding skills (tests, documents, refactoring). So I'm using Ruby to become a better programmer first, and occasionally look for a job in it.
<havenwood> zod_: It seems a lot of companies here in San Francisco have a bunch of internal tooling in Ruby.
tomphp has joined #ruby
rfoust has joined #ruby
jaequery has joined #ruby
tomphp has quit [Client Quit]
<havenwood> Square included!
<leitz> zod_, you'll soon discover havenwood is one of the people to listen to. :)
<leitz> Listen to apeiros too, but I think he's in Europe. So it depends on where you are.
tomphp has joined #ruby
tomphp has quit [Client Quit]
tomphp has joined #ruby
akahn has joined #ruby
tomphp has quit [Client Quit]
tomphp has joined #ruby
tomphp has quit [Client Quit]
tomphp has joined #ruby
tomphp has quit [Client Quit]
<zod_> Yes I'm in Berlin. I can't relocate though. I would love to work remotely, but I think I need more experience before that would be realistic.
<zod_> The thing is, if my options are so limited, I'm wondering whether to invest more time learning another language, because even though I love ruby, ...I need a job!
<leitz> Hehe...jobs are nice to have.
<zod_> I wouldn't give up on ruby. But there are only so many hours in the day and I'm deciding how to invest my time
schneider- has joined #ruby
<leitz> I don't know the market or culture of Berlin, so can't give you specific advice. What I will say is my usual; figure out what area of programming you prefer (OS, systems, web, database, whatever), and try the languages best for that domain.
<apeiros> zod_: I took a rails job because it allows me to use ruby. I found it an acceptable "price" to pay.
<leitz> Learn the one that encourages you to code more.
akahn has left #ruby [#ruby]
<leitz> The more you code the better you'll be and the better you will be able to find "the" job. Doing a language you love makes the improvement cycle faster.
<zod_> thanks guys for the advice ;)
stairmast0r has quit [Quit: bye]
jrafanie has joined #ruby
stairmast0r has joined #ruby
jsrn_ has quit [Ping timeout: 260 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
unshadow has quit [Quit: leaving]
Pisuke has quit [Ping timeout: 248 seconds]
coderphive has joined #ruby
nowhere_man has quit [Remote host closed the connection]
jaequery has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pilne has quit [Quit: Leaving]
nowhere_man has joined #ruby
ta_ has quit [Remote host closed the connection]
chouhoulis has joined #ruby
dionysus69 has quit [Ping timeout: 264 seconds]
amar has joined #ruby
amar has quit [Remote host closed the connection]
govg has quit [Ping timeout: 264 seconds]
guille-moe has joined #ruby
n0m4d1c has quit [Remote host closed the connection]
govg has joined #ruby
ciscam has quit [Ping timeout: 255 seconds]
<haylon> Has anyone seen/read this book before? https://chriskottom.com/minitestcookbook/
ciscam has joined #ruby
<haylon> Looking for a good book, tutorial about doing some testing for things outside of just testing input and output
govg has quit [Ping timeout: 240 seconds]
_antares_ has quit [Quit: Connection closed for inactivity]
troys has joined #ruby
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
<leitz> haylon, I just read the first few chapters of "Effective Testing with RSpec3", It uses a simple web app (sinatra, sequel, json) to show the concepts.
govg has joined #ruby
guille-moe has quit [Ping timeout: 248 seconds]
govg has quit [Ping timeout: 248 seconds]
<haylon> Ahh, nice Thank you leitz
<haylon> I might pull the trigger and buy it
amar has joined #ruby
chouhoulis has quit [Remote host closed the connection]
chouhoulis has joined #ruby
cyberg has joined #ruby
n008f4g_ has quit [Ping timeout: 264 seconds]
alfiemax has joined #ruby
amar has quit [Ping timeout: 264 seconds]
saTchymoto has quit []
n008f4g_ has joined #ruby
saTchymoto has joined #ruby
saTchymoto has quit [Client Quit]
cschneid_ has joined #ruby
alt155 has joined #ruby
chocoelho has joined #ruby
n008f4g_ has quit [Ping timeout: 276 seconds]
ghoti has quit [Ping timeout: 264 seconds]
govg has joined #ruby
szulak has quit [Remote host closed the connection]
tomphp has joined #ruby
mattp__ has joined #ruby
tomphp has quit [Client Quit]
Asher has quit [Ping timeout: 255 seconds]
mattp_ has quit [Ping timeout: 268 seconds]
samort7 has joined #ruby
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
tomphp has joined #ruby
synthroid has quit [Remote host closed the connection]
ciscam has quit [Ping timeout: 240 seconds]
ipe has quit [Ping timeout: 260 seconds]
ciscam has joined #ruby
ipe has joined #ruby
Phage has quit [Ping timeout: 265 seconds]
balo has quit [Ping timeout: 240 seconds]
drale2k_ has joined #ruby
synthroid has joined #ruby
badeball has quit [Remote host closed the connection]
suukim has quit [Quit: Konversation terminated!]
Mon_Ouie has quit [Ping timeout: 248 seconds]
Mon_Ouie has joined #ruby
Kilobyte22 has quit [Quit: ZNC - 1.6.0 - http://znc.in]
ruby[bot] has quit [Ping timeout: 256 seconds]
Kilo`byte has joined #ruby
ruby[bot] has joined #ruby
balo has joined #ruby
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
drale2k_ has joined #ruby
ta_ has joined #ruby
badeball has joined #ruby
Phage has joined #ruby
Phage has joined #ruby
Phage has quit [Changing host]
jottr has joined #ruby
ta_ has quit [Remote host closed the connection]
ta_ has joined #ruby
Asher has joined #ruby
karapetyan has joined #ruby
chocoelho has quit [Quit: Konversation terminated!]
ryzokuken has quit [Remote host closed the connection]
Asher has quit [Ping timeout: 256 seconds]
zod_ has left #ruby [#ruby]
rubemlrm has quit [Quit: ZNC 1.6.5 - http://znc.in]
szulak has joined #ruby
rubemlrm has joined #ruby
cagomez has joined #ruby
tomphp has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
HemmE has quit [Quit: Ex-Chat]
samort7 has quit [Read error: Connection reset by peer]
AJA4350 has quit [Ping timeout: 276 seconds]
venmx has quit [Ping timeout: 264 seconds]
ryzokuken has joined #ruby
jyaworski has joined #ruby
tipyn has joined #ruby
jcarl43 has joined #ruby
samort7 has joined #ruby
[Butch] has joined #ruby
Sembei has joined #ruby
jyaworski has quit [Ping timeout: 248 seconds]
Sembei has quit [Client Quit]
Sembei has joined #ruby
tipyn has quit [Remote host closed the connection]
RougeR has quit [Ping timeout: 240 seconds]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ellcs has quit [Ping timeout: 260 seconds]
jyaworski has joined #ruby
bmurt has joined #ruby
clemens3 has quit [Quit: WeeChat 1.0.1]
tipyn has joined #ruby
havenwood has quit [Quit: ZNC 1.6.6 - http://znc.in]
havenwood has joined #ruby
havenwood has joined #ruby
rwb has joined #ruby
plexigras has quit [Ping timeout: 256 seconds]
jottr has quit [Quit: WeeChat 2.1]
synthroid has quit [Remote host closed the connection]
plexigras has joined #ruby
jyaworski has quit [Ping timeout: 240 seconds]
havenwood has quit [Client Quit]
marxarelli has joined #ruby
dionysus69 has joined #ruby
alfiemax has quit [Ping timeout: 265 seconds]
alfiemax has joined #ruby
tipyn has quit [Quit: Leaving...]
havenwood has joined #ruby
havenwood has joined #ruby
Sembei has quit [Quit: WeeChat 2.2-dev]
Sembei has joined #ruby
Sembei has quit [Client Quit]
nitric has joined #ruby
eckhardt_ has joined #ruby
Sembei has joined #ruby
rubemlrm has quit [Ping timeout: 255 seconds]
rubemlrm has joined #ruby
amar has joined #ruby
clemens3 has joined #ruby
amar has quit [Read error: Connection reset by peer]
DoubleMalt has joined #ruby
amar has joined #ruby
DoubleMalt has quit [Remote host closed the connection]
rubemlrm_ has joined #ruby
jyaworski has joined #ruby
amar has quit [Ping timeout: 264 seconds]
synthroid has joined #ruby
RougeR has joined #ruby
rubemlrm has quit [Ping timeout: 240 seconds]
href has quit [Quit: -]
href has joined #ruby
rubemlrm has joined #ruby
AJA4350 has joined #ruby
rubemlrm_ has quit [Ping timeout: 256 seconds]
eckhardt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
orbyt_ has joined #ruby
adelyne has joined #ruby
eckhardt_ has joined #ruby
eckhardt_ has quit [Client Quit]
fullstack_ has quit [Ping timeout: 256 seconds]
adelyne has quit [Quit: leaving]
jyaworski has quit [Ping timeout: 260 seconds]
n0m4d1c has joined #ruby
fullstack_ has joined #ruby
amar has joined #ruby
jeffreylevesque has joined #ruby
<mli> hi
<havenwood> mli: hi
amar has quit [Remote host closed the connection]
alfiemax_ has joined #ruby
alfiemax has quit [Ping timeout: 255 seconds]
amar has joined #ruby
Yzguy has joined #ruby
<mli> line 20 is giving me an issue https://bpaste.net/show/f9ca25a9d93d
<mli> whats the proper syntax for line 9?
n13z has quit [Ping timeout: 248 seconds]
r3m has quit [Ping timeout: 240 seconds]
<mli> i literally have this > phx-dash01.hq.phxlabs.net:80 and still spits out that error
n13z has joined #ruby
lucas has quit [Ping timeout: 256 seconds]
greveritt has joined #ruby
nadir has joined #ruby
<havenwood> mli: Wouldn't it not be empty if you have it one port?
<havenwood> *gave it
greveritt has quit [Client Quit]
<havenwood> mli: It seems you have one port, and you're doing the error unless you have no ports.
greveritt has joined #ruby
<mli> well i havent shown you yet what it looks like when i have the ports in there
<mli> just a moment
<havenwood> Oh, I read that backwards. Error if zero ports.
<greveritt> Hi everyone. If I specify :TLSv1 when creating an SSLContext, does that force the use of TLS 1.0? I have to integrate with a very old third-party service using Faraday.
BTRE has quit [Read error: Connection reset by peer]
BTRE has joined #ruby
<havenwood> mli: Can you print what `option(:ports)` is? I'm assuming it's `nil` for whatever reason.
ghoti has joined #ruby
<mli> nevermind i think ill read this first lol
Sembei has quit [Quit: WeeChat 2.2-dev]
Sembei has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
kurko_ has quit [Quit: Textual IRC Client: www.textualapp.com]
alfiemax_ has quit [Remote host closed the connection]
griffindy has joined #ruby
griffindy has quit [Client Quit]
jyaworski has joined #ruby
rubemlrm has quit [Read error: Connection reset by peer]
armyriad has quit [Read error: Connection reset by peer]
ellcs has joined #ruby
armyriad has joined #ruby
nitric_ has joined #ruby
Yzguy has quit [Ping timeout: 256 seconds]
nitric has quit [Ping timeout: 264 seconds]
ramfjord has joined #ruby
mrBen2k2k2k_ has joined #ruby
bmurt has quit [Ping timeout: 240 seconds]
sameerynho has joined #ruby
lucas has joined #ruby
venmx has joined #ruby
hlmjr has quit [Remote host closed the connection]
psychicist__ has joined #ruby
Morrolan has quit [Quit: Goodbye]
donofrio has joined #ruby
conta has quit [Ping timeout: 240 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
bmurt has joined #ruby
jyaworski has quit [Ping timeout: 265 seconds]
chouhoulis has quit []
jordanm has quit [Ping timeout: 255 seconds]
chouhoulis has joined #ruby
weaksauce has joined #ruby
SeepingN has joined #ruby
alfiemax has joined #ruby
jottr has joined #ruby
n13z has quit [Ping timeout: 268 seconds]
jottr has quit [Client Quit]
sauvin has quit [Remote host closed the connection]
alfiemax has quit [Ping timeout: 240 seconds]
n13z has joined #ruby
alfiemax has joined #ruby
jottr has joined #ruby
nnm- has joined #ruby
x77686d has joined #ruby
GodFather_ has quit [Quit: Ex-Chat]
GodFather_ has joined #ruby
jottr has quit [Client Quit]
Morrolan has joined #ruby
nnm has quit [Ping timeout: 268 seconds]
alfiemax has quit [Ping timeout: 248 seconds]
eblip is now known as eb0t
ogres has quit [Quit: Connection closed for inactivity]
cthulchu has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
elcontrastador has joined #ruby
r3m has joined #ruby
Psybur has quit [Quit: Leaving]
jaequery has joined #ruby
jottr has joined #ruby
karapetyan has quit [Remote host closed the connection]
cthulchu_ has joined #ruby
szulak has quit [Ping timeout: 255 seconds]
venmx has quit [Remote host closed the connection]
cthu| has joined #ruby
cthulchu has quit [Ping timeout: 260 seconds]
dr3w_ has joined #ruby
rfoust has quit [Ping timeout: 265 seconds]
cthulchu_ has quit [Ping timeout: 248 seconds]
drale2k_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Mike11 has joined #ruby
havenwood has quit [Remote host closed the connection]
warrshrike has joined #ruby
<warrshrike> hey
<warrshrike> how to efficiently rotate a singly linked list by k places in ruby
ldepandis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<warrshrike> most solutions i see are either swapping the values (as opposed to actual nodes) or just making a circle, taking new head, and breaking the circle.
marxarelli has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kenichi has joined #ruby
Rapture has joined #ruby
havenwood has joined #ruby
havenwood has quit [Changing host]
havenwood has joined #ruby
jsrn has joined #ruby
jordanm has joined #ruby
<cagomez> what's the difference between hash['foo'] and hash["foo"]?
<warrshrike> nothing
<cagomez> I get nil in the former, but can fetch the attribute in the latter
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<z64> 'foo' and "foo" are string literals with the same exact value
synthroid has quit [Remote host closed the connection]
conta has joined #ruby
<z64> there must be something else going on if you're getting different results, i.e. the hash is changing since you accessed it last
greveritt has quit [Quit: Page closed]
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
szulak has joined #ruby
minimalism has joined #ruby
conta has quit [Ping timeout: 256 seconds]
c0ncealed1 has quit [Remote host closed the connection]
synthroid has joined #ruby
c0ncealed1 has joined #ruby
bmurt has joined #ruby
<havenwood> You can't even override String#eql?, either - since it's ^ optimized.
jaequery has quit [Ping timeout: 260 seconds]
rubemlrm has joined #ruby
jottr_ has joined #ruby
jottr has quit [Disconnected by services]
jottr_ is now known as jottr
ogres has joined #ruby
jyaworski has joined #ruby
<havenwood> z64: Check the bytes?
<havenwood> >> 'foo'.bytes
<ruby[bot]> havenwood: # => [102, 111, 111] (https://eval.in/997843)
naftilos76 has joined #ruby
marxarelli has joined #ruby
<z64> havenwood: ...??
<havenwood> z64: Can you check the bytes of the two "foo"s?
<havenwood> z64: Are they both?: [102, 111, 111]
<z64> yes?
<havenwood> z64: Is it really a Hash?
<z64> i have no idea what you're talking about. you know it was cagomez asking about this right?
<havenwood> z64: Nope, I got confused who asked. >.>
<havenwood> cagomez: ^
<havenwood> z64: Sorry for the confusion.
<z64> no problem lmao
jottr has quit [Ping timeout: 240 seconds]
<havenwood> >> "𝖿𝗈𝗈" == "foo"
<ruby[bot]> havenwood: # => false (https://eval.in/997844)
ta_ has quit [Remote host closed the connection]
ellcs has quit [Ping timeout: 248 seconds]
<phaul> nice :)
biberu has quit []
jyaworski has quit [Ping timeout: 264 seconds]
orbyt_ has joined #ruby
karapetyan has joined #ruby
troulouliou_dev has joined #ruby
karapetyan has quit [Ping timeout: 248 seconds]
drona6 has joined #ruby
drona6 has quit [Client Quit]
TvL2386_ has joined #ruby
TvL2386 has quit [Ping timeout: 256 seconds]
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
amelliaa has joined #ruby
ta_ has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sanscoeu_ has joined #ruby
naftilos76 has quit [Quit: Αποχώρησε]
chouhoul_ has joined #ruby
alexday has quit [Quit: ZNC 1.6.5 - http://znc.in]
jeffreylevesque has quit [Ping timeout: 256 seconds]
Asher has joined #ruby
npgm has joined #ruby
sanscoeur has quit [Ping timeout: 264 seconds]
jyaworski has joined #ruby
drona6 has joined #ruby
chouhoulis has quit [Ping timeout: 240 seconds]
conta has joined #ruby
jyaworski has quit [Ping timeout: 264 seconds]
alfiemax has joined #ruby
conta has quit [Ping timeout: 264 seconds]
alfiemax has quit [Ping timeout: 268 seconds]
tdy has quit [Ping timeout: 248 seconds]
Mike11 has quit [Quit: Leaving.]
marxarelli has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jyaworski has joined #ruby
rwb has quit [Ping timeout: 248 seconds]
ellcs has joined #ruby
jyaworski has quit [Ping timeout: 240 seconds]
rubemlrm has quit [Remote host closed the connection]
Lyubo1 has quit [Quit: and I'm out]
Lyubo1 has joined #ruby
FrostCandy has joined #ruby
amar has quit [Remote host closed the connection]
jottr has joined #ruby
ta_ has quit [Remote host closed the connection]
rubemlrm has joined #ruby
rubemlrm has quit [Remote host closed the connection]
jyaworski has joined #ruby
jottr has quit [Client Quit]
rubemlrm has joined #ruby
mli has quit [Quit: Page closed]
ta_ has joined #ruby
rubemlrm has quit [Read error: Connection reset by peer]
rubemlrm has joined #ruby
jyaworski has quit [Ping timeout: 256 seconds]
n0m4d1c has quit [Remote host closed the connection]
synthroid has quit []
ta_ has quit [Ping timeout: 268 seconds]
sanscoeu_ has quit [Remote host closed the connection]
sanscoeur has joined #ruby
Asher has quit [Ping timeout: 264 seconds]
mroutis has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
marxarelli has joined #ruby
cagomez has quit [Remote host closed the connection]
cagomez has joined #ruby
ramfjord has quit [Ping timeout: 256 seconds]
cagomez has quit [Ping timeout: 248 seconds]
UncleCid__ has joined #ruby
ur5us has joined #ruby
nitric_ has quit [Quit: quit]
orbyt_ has joined #ruby
dionysus69 has quit [Ping timeout: 255 seconds]
dviola has joined #ruby
nitric has joined #ruby
pwnd_nsfw` has quit [Ping timeout: 264 seconds]
n13z has quit [Ping timeout: 264 seconds]
warrshrike has quit [Ping timeout: 260 seconds]
amelliaa has quit [Quit: -]
n13z has joined #ruby
ramfjord has joined #ruby
amar has joined #ruby
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Asher has joined #ruby
jenrzzz has quit [Ping timeout: 268 seconds]
ramfjord has quit [Ping timeout: 264 seconds]
ramfjord has joined #ruby
psychicist__ has quit [Ping timeout: 256 seconds]
moei has quit [Quit: Leaving...]
ramfjord has quit [Ping timeout: 240 seconds]
tdy has joined #ruby
ramfjord has joined #ruby
alfiemax has joined #ruby
rwb has joined #ruby
ramfjord has quit [Ping timeout: 240 seconds]
ta_ has joined #ruby
alfiemax has quit [Ping timeout: 240 seconds]
UncleCid__ has quit [Remote host closed the connection]
ramfjord has joined #ruby
UncleCid__ has joined #ruby
eckhardt_ has joined #ruby
camilasan has joined #ruby
jeffreylevesque has joined #ruby
jenrzzz has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
ramfjord has quit [Ping timeout: 240 seconds]
schneider- has quit [Ping timeout: 265 seconds]
ccrow has quit [Quit: Ex-Chat]
samort7 has quit []
tvw has quit [Remote host closed the connection]
dviola has quit [Quit: WeeChat 2.1]
rubemlrm has quit [Remote host closed the connection]
banisterfiend has joined #ruby
dviola has joined #ruby
dviola has quit [Changing host]
dviola has joined #ruby
emph^ has quit []
ur5us has quit [Read error: No route to host]
ur5us has joined #ruby
nhh^ has joined #ruby
mroutis has quit [Ping timeout: 264 seconds]
postmodern has joined #ruby
nhh^ has quit [Read error: Connection reset by peer]
ramfjord has joined #ruby
schneider- has joined #ruby
schneider- has quit [Ping timeout: 264 seconds]
[Butch] has quit [Quit: Textual IRC Client: www.textualapp.com]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ced_ has joined #ruby
ta_ has quit [Ping timeout: 240 seconds]
n008f4g_ has joined #ruby
nadir has quit [Quit: Connection closed for inactivity]
jenrzzz has quit [Ping timeout: 240 seconds]
ced_ has quit [Quit: ced_]
amar has quit [Remote host closed the connection]
ced_ has joined #ruby
banisterfiend has joined #ruby
n13z has quit [Ping timeout: 260 seconds]
ced_ is now known as MoskitoHero
jyaworski has joined #ruby
n13z has joined #ruby
MoskitoHero has quit [Client Quit]
MoskitoHero has joined #ruby
chouhoul_ has quit [Remote host closed the connection]
marxarelli is now known as marxarelli|afk
chouhoulis has joined #ruby
MoskitoHero has quit [Client Quit]
venmx has joined #ruby
chouhoulis has quit [Ping timeout: 264 seconds]
n0m4d1c has joined #ruby
jyaworski has quit [Ping timeout: 248 seconds]
<Radar> jhass: hi! Do you know how I can get in contact with the maintainer of https://github.com/assaf/uuid?
coderphive has quit [Quit: coderphive]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ta_ has joined #ruby
pilne has joined #ruby
Yzguy has joined #ruby
x77686d has quit [Quit: x77686d]
banisterfiend has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cagomez has joined #ruby
jrafanie has quit [Quit: Textual IRC Client: www.textualapp.com]
jeffreylevesque has quit [Remote host closed the connection]
orbyt_ has joined #ruby
venmx has quit [Ping timeout: 248 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Changing host]
jenrzzz has joined #ruby
tfitts has joined #ruby
cagomez has quit [Remote host closed the connection]
cschneid_ has quit [Remote host closed the connection]
ogres has quit [Quit: Connection closed for inactivity]
FrostCandy has quit []
cagomez has joined #ruby
alt155 has quit [Ping timeout: 240 seconds]
venmx has joined #ruby
lucas has quit [Remote host closed the connection]
cagomez has quit [Ping timeout: 263 seconds]
ta_ has quit [Ping timeout: 240 seconds]
cthulchu_ has joined #ruby
chouhoulis has joined #ruby
cagomez has joined #ruby
venmx has quit [Remote host closed the connection]
venmx has joined #ruby
morenoh149 has joined #ruby
rfoust has joined #ruby
Yzguy has quit [Quit: Zzz...]
orbyt_ has quit [Quit: Textual IRC Client: www.textualapp.com]
cthu| has quit [Ping timeout: 264 seconds]
cagomez_ has joined #ruby
marxarelli|afk is now known as marxarelli
marxarelli is now known as marxarelli|afk
jyaworski has joined #ruby
karapetyan has joined #ruby
cagomez_ has quit [Remote host closed the connection]
cagomez_ has joined #ruby
cagomez has quit [Ping timeout: 264 seconds]
banisterfiend has joined #ruby
coderphive has joined #ruby
ellcs has quit [Ping timeout: 256 seconds]
Yzguy has joined #ruby
karapetyan has quit [Ping timeout: 260 seconds]
jyaworski has quit [Ping timeout: 256 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
venmx has quit [Ping timeout: 264 seconds]
alfiemax has joined #ruby
jenrzzz has joined #ruby
dcvetkovic has quit [Quit: Leaving]
eckhardt_ has quit [Ping timeout: 240 seconds]
sameerynho has quit [Ping timeout: 256 seconds]
alfiemax has quit [Ping timeout: 256 seconds]
mroutis has joined #ruby
morenoh149 has quit [Ping timeout: 240 seconds]
phaul has quit [Ping timeout: 255 seconds]
ur5us has quit [Read error: Connection reset by peer]
ur5us has joined #ruby
ccrow has joined #ruby
coderphive has quit [Quit: coderphive]
kapil___ has quit [Quit: Connection closed for inactivity]
jready has joined #ruby
chouhoulis has quit [Remote host closed the connection]