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-preview2: https://www.ruby-lang.org | Paste 4+ lines of text to https://dpaste.de/ and select ruby as the language | Rails questions? Ask in #RubyOnRails | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby | Can't talk? Register/identify with Nickserv first!
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<baweaver> It's not out for a few more years
<baweaver> Not much more to say on it brkkyk
dionysus69 has quit [Ping timeout: 240 seconds]
cagomez has quit [Ping timeout: 272 seconds]
thejs has quit [Remote host closed the connection]
<brkkyk> i heard it will be 3 times faster than version 2
<brkkyk> but i dont have any idea how they'll achieve this
<baweaver> Just google around for Ruby 3x3, and most of the first page articles will go into it.
<baweaver> headed off for now, be back later.
brandoncc has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
skryking has quit [Ping timeout: 246 seconds]
knight33 has quit [Ping timeout: 252 seconds]
<havenwood> brkkyk: Compiling parsed code into Ruby IR is a great speed win after first run. This could also be done for gems at install-time. This cuts out about a third of Ruby execution time. Then a JIT can make it faster to go from IR to machine code.
<havenwood> brkkyk: See the yomikomu and bootsnap gems for examples of compiling Ruby files into YARV IR files so they don't have to be re-parsed to be re-run.
dendazen has joined #ruby
<havenwood> brkkyk: You can try out the new JIT in Ruby 2.6.0-preview2 or nightly builds today.
dendazen has quit [Remote host closed the connection]
<havenwood> Improvements to the JIT should add speed increases for years to come.
dendazen has joined #ruby
<havenwood> brkkyk: Ruby 2.5 already has a number of performance increases on the path to 3.0. The goal is for 3.0 to be 3x faster than 2.0.
dendazen has quit [Remote host closed the connection]
<havenwood> brkkyk: 2.6 and 2.7 will edge closer to that goal.
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
grvgr has quit [Quit: Connection closed for inactivity]
ramfjord has quit [Ping timeout: 252 seconds]
cthulchu has quit [Ping timeout: 244 seconds]
graphene has quit [Read error: Connection reset by peer]
graphene has joined #ruby
orbyt_ has joined #ruby
wojnar has quit [Remote host closed the connection]
Pisuke has joined #ruby
wojnar has joined #ruby
brandoncc has joined #ruby
mroutis has joined #ruby
MyMind has quit [Ping timeout: 245 seconds]
Guest58115 has joined #ruby
bga57 has quit [Read error: Connection reset by peer]
gtramontina has quit []
cagomez has joined #ruby
bga57 has joined #ruby
Guest58115 has quit [Ping timeout: 252 seconds]
cagomez has quit [Ping timeout: 252 seconds]
morfin has quit []
shakes has joined #ruby
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
esrse has joined #ruby
Tharbakim has joined #ruby
matcouto has joined #ruby
shakes has quit [Quit: Leaving]
mroutis has quit [Remote host closed the connection]
brkkyk has quit [Quit: Lost terminal]
tdy has joined #ruby
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
orbyt_ has joined #ruby
AJA4350 has quit [Quit: AJA4350]
exchgr has joined #ruby
exchgr` has quit [Ping timeout: 244 seconds]
gnufied has quit [Quit: Leaving]
ShekharReddy has joined #ruby
duderonomy has joined #ruby
DTZUZO has joined #ruby
wojnar has quit [Quit: Leaving]
tty has quit [Quit: tty]
tty has joined #ruby
braincrash has quit [Quit: bye bye]
braincrash has joined #ruby
brandoncc has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nikivi has quit [Ping timeout: 252 seconds]
thy0 has quit [Quit: TTFN]
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
brandoncc has joined #ruby
nikivi has joined #ruby
orpl has quit [Ping timeout: 240 seconds]
gix has joined #ruby
mrush has quit [Ping timeout: 246 seconds]
planigan has quit [Ping timeout: 240 seconds]
sonOfRa has quit [Ping timeout: 240 seconds]
sonOfRa has joined #ruby
Guest58115 has joined #ruby
duderonomy has joined #ruby
Guest58115 has quit [Ping timeout: 240 seconds]
darix has quit [Ping timeout: 240 seconds]
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
SeepingN has quit [Quit: The system is going down for reboot NOW!]
darix has joined #ruby
hays_ has joined #ruby
<hays_> this is my favorite piece of code today: https://github.com/tablador/rpn_calc/blob/master/rpn_calc.rb
<hays_> not sure i've seen any examples this generic
<hays_> i feel like this might be a good beginning to an obfuscated ruby contest
planigan has joined #ruby
<baweaver> It's also fairly bad Ruby.
<hays_> oh, please tell me all the reasons it is bad
<baweaver> sarcasm?
<hays_> no
<baweaver> It's using a for loop, it's using a case statement for a two-prong branch, it assumes the format of the input to have formatted operators as symbols, it doesn't raise with an error message to clarify the intent of the error, and a few others.
<baweaver> each or reduce would be more in line with common practice
<baweaver> that, and it's not using varadic args
<baweaver> Also send vs public_send
<hays_> i considered reduce, but it seemed that it would reduce clarity. and to me, each isn't an idiom that implies that order is important.
<hays_> i do not see a problem with a two pronged case statement, nor do I see a problem with using the symbols. I should raise a better error message--agreed. varadic args also might be a good idea
<baweaver> RPN typically assumes a string input
<baweaver> Normally one that hasn't been split
<baweaver> Assuming symbols and numbers from the start is interesting
<baweaver> each not implying order is an odd comment
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<hays_> who says it has to be numbers
<hays_> it can be any method.
<hays_> that seems more flexible to me
<hays_> I think that a reasonable implementation of each (maybe not in ruby) would ignore order and happen in parallel
<hays_> whereas a for loop implies ordering
<baweaver> That's... odd
<hays_> If I tell you to chop each of these 5 vegetables, do you think you much chop them in the order i handed them to you?
<baweaver> You're conflating quite a bit here
<baweaver> The first of which is that there's a difference between each and for
<baweaver> Then you're applying that ideal to Ruby syntax as it exists, implying that it _should_ go that direction for an ideal language, but not Ruby
<baweaver> so you don't use that in Ruby
<baweaver> feels hand wavy
<baweaver> I mean sure, one could parallelize a Unit iterator in Haskell or Scala or what have you, and there are implementations of parallel each in Ruby
<hays_> so, are you saying that there is no use case in ruby for a for loop?
<baweaver> but as is Ruby iterates in order, even for Hashes which technically aren't supposed to do that.
<hays_> since .each is equivalent?
<baweaver> Essentially, yes. Idiomatically it's more commonly in use, and lends itself to blocks and functions that exist in other Enumerable methods
<baweaver> as well as allows extension of the Enumerable module, so in ways no, they're not the same
<baweaver> It depends on what you want to define as same
<hays_> I am just surprised to hear the opinion that the use of for loops is bad ruby
<baweaver> That's not remotely new
<hays_> are you saying you've held this opinion for a while?
<baweaver> Find _any_ style guide in common use for Ruby
orpl has joined #ruby
<baweaver> There are other more technical reasons as well including block level scoping
Inline has quit [Quit: Leaving]
<baweaver> Implying further that it's solely my opinion is a bit off too
<baweaver> This goes back to probably 1.8.7 or before.
<hays_> we are just two people talking. I'm just trying to understand your ideas, which are probably coming from a place of deeper understanding of ruby
<baweaver> The point I'm trying to make is this is not something unique to me, it's common across the Ruby ecosystem and across millions of Ruby projects
<hays_> i wouldn't think code is bad if it clearly expresses what is happening, but it does appear that at least the rubocop style guide labels for loops as bad also
<baweaver> It's bad if it goes against common idioms, causing newer programmers confusion.
<hays_> someone who doesn't know what a for loop is
<baweaver> They exist
<havenwood> hays_: Here's a riff on your idea, for fun: https://gist.github.com/havenwood/97fcd886031df964d44f1ae8cef8fb61
<baweaver> I've taught them before.
orbyt_ has joined #ruby
<hays_> i wonder if we counted developers who didn't know what a for loop was and then counted developers who didn't know what .each does, which would be higher
<baweaver> you keep doing that thing
<havenwood> hays_: that ^ version is the same as yours, except it returns nil instead of raising
<baweaver> setting up a strawman
<hays_> havenwood: cool. each_with_object is fancy. yeah
<havenwood> hays_: #reduce and #each_with_object are fun
<baweaver> We're talking about Ruby
<havenwood> hays_: or #with_object if you already have an Enumerator
<baweaver> What other languages do or don't do is irrelevant to conversations on what is or is not common and idiomatic in Ruby
<hays_> baweaver: there is a world where people must know many languages and not know them in great detail. I don't think that's necessarily a strawman. but I am not disagreeing with you, really. Except that I am not sure I would say that a for loop is bad. Maybe less idiomatic, sure
<havenwood> hays_: we just don't use for loops in Ruby - honestly mostly for aesthetic reasons but they're also not optimized
<havenwood> hays_: the idiomatic path is encouraged
<hays_> havenwood: yeah, each_with_object is one of those things that pops up quite a bit
<havenwood> hays_: you can always easily convert a for to an each, so it's kinda hand wavey to do
<havenwood> hays_: it's handy!
<hays_> your version really uses a lot of ruby-specific ideas
<baweaver> I still prefer push to << for clarity
* havenwood chants "shovel! shovel!"
<hays_> some things I am actually reluctant to use in practice, maybe because of the people I work with, including myself, who have to switch between a lot of languages
<baweaver> also because << does bad things to numbers :D
<havenwood> >> 42 << 42
<ruby[bot]> havenwood: # => 184717953466368 (https://eval.in/1055081)
<baweaver> well, shifts, but anyways
<hays_> heh is that SHL
<hays_> i tend to prefer ruby that could be trivially converted to .. say.. python without much deep though
<hays_> t
<baweaver> Then you're not writing Ruby
<havenwood> hays_: I'd prefer it be easily converted to Elixir or Clojure without much deep thought. :-
<baweaver> You _could_ make Ruby like Javascript too
<havenwood> P
<baweaver> Then you'd need polish notation instead of reverse for clojure
<havenwood> haha
<hays_> its the world I live in. in fact, we might be dumping ruby soon. for probably arbitrary reasons
<baweaver> There are ways Ruby makes sense, and ways it doesn't
<baweaver> Use the right tool for the job.
<havenwood> hays_: We're using Ruby as much as ever.
<havenwood> hays_: What're using instead?
<havenwood> More than ever. Morever. Mever. Mer.
<baweaver> We even managed to convince some yahoo over here to speak at RubyConf this year
<havenwood> :-D
<hays_> havenwood: well.. we backed into Ruby via Rails, and its been fine. but we're reconsidering rails, and some other things we're doing would indicate Python as a smart choice because of its rather strong set of libraries for .. well a lot o things
<hays_> I personally don't think the problem is Rails. I think the problem is we don't have a strong enough team and its leading to bad implementations in Rails
<baweaver> Mostly data science, ml, and things around it.
<baweaver> You _really_ don't want to go more wild west with a loose team
<hays_> baweaver: yep, but its also solid with web, comms, and other IT glue stuff
reber has joined #ruby
<hays_> like I can pull down a iec 61850 implementation in python, but not in Ruby. its just so big
<baweaver> If you have a bad team, nothing will save that.
<hays_> It isn't going to be my call--software engineering is going to decide what to do with the Rails stuff
<hays_> baweaver: yep
<baweaver> Well, I say bad
<baweaver> Inexperienced would be better
<hays_> its just not a deep enough bench for the experience
<hays_> im on the sidelines, but I am seeing just huge problems everytime I glance across it. last time I did, I found some huge resource leak with threads and sockets due to the way they were being created and managed. causing the app to crash the server
<hays_> but we have one developer, and then a 'team in India'
<hays_> all managed by the developer--a person who cannot manage a team
<hays_> but this is wayyy off topic sorry
<hays_> The stuff I'm working on is probably best suited to be Python. So I may have less occasion to use Ruby, which will make me a little sad, because I like Ruby
<hays_> havenwood: small bug, your pops are backwards I think
<hays_> [15, 3, :/] should yield 5
<havenwood> oops. you're right
<hays_> my version 1 did that too heh
orbyt_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<hays_> why .instance_of and not .is_a ?
dviola has quit [Quit: WeeChat 2.2]
duderonomy has joined #ruby
sauvin has joined #ruby
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sidepocket has joined #ruby
tdy has quit [Ping timeout: 245 seconds]
marz_d`ghostman has joined #ruby
<marz_d`ghostman> with ruby's logger, can it be customized to roll logs for everytime the app runs instead of daily/weekly/monthly?
hays_ has quit [Remote host closed the connection]
duderonomy has joined #ruby
duderonomy has quit [Max SendQ exceeded]
rlawrence has joined #ruby
v01d4lph4 has joined #ruby
armyriad has quit [Quit: Leaving]
apeiros_ has quit [Remote host closed the connection]
<baweaver> Just don't set a frequency of rotation
<baweaver> Just do a detection on the last log file present in a dir instead
<baweaver> and make that the name
rlawrence_ has joined #ruby
Nicmavr has quit [Read error: Connection reset by peer]
<marz_d`ghostman> baweaver: I currently have this one Logger.new(log_file, formatter: proc {|severity, datetime, progname, msg| "[#{Process.pid}:#{Thread.current.object_id}][#{datetime}] #{severity} -- #{msg}\n" })
MoritaShinobu has joined #ruby
<marz_d`ghostman> baweaver: It seems to rotate daily
Nicmavr has joined #ruby
duderonomy has joined #ruby
<marz_d`ghostman> baweaver: I'll just set the suffix though, maybe it gets appended due to it having the same suffix
<rlawrence_> Hi there! I'm trying to make a ioctl system call via IO#ioctl from ruby and get some information from nvme block device. The code looks like this: https://dpaste.de/6hEz. Unfortunately, I run into errors like 'free(): Invalid pointer' (https://dpaste.de/Dsay). Despite this, I can successfully get the information about first three fields of the struct and then the behaviour is unpredictable. Could somebody explain what's wrong?
<rlawrence_> BTW, I'm also trying to avoid using FFI due to additional dependency. Thanks in advance!
duderonomy has quit [Max SendQ exceeded]
<rlawrence_> The same purpose code in python looks like this: https://gist.github.com/lbernail/d851e5b06eb32180a4b8ead2ce4f45db
duderonomy has joined #ruby
ShekharReddy has quit [Quit: Connection closed for inactivity]
joelroa has joined #ruby
duderonomy has quit [Max SendQ exceeded]
duderonomy has joined #ruby
joelroa has quit [Client Quit]
dionysus69 has joined #ruby
<marz_d`ghostman> is Time.parse() still supported in Ruby 2.4? Cant' seem to see it here: https://ruby-doc.org/core-2.4.0/Time.html#method-i-strftime
duderonomy has quit [Max SendQ exceeded]
duderonomy has joined #ruby
rlawrence_ has quit [Ping timeout: 252 seconds]
aufi has joined #ruby
nowhere_man has joined #ruby
duderonomy has quit [Max SendQ exceeded]
rlawrence has quit [Ping timeout: 246 seconds]
duderonomy has joined #ruby
sidepocket has quit [Ping timeout: 256 seconds]
kapil___ has joined #ruby
brandoncc has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<marz_d`ghostman> How do I make this shortcut work? date = DateTime.parse('2018-09-07 13:38:38 +0800') { |date| date.strftime('%a,%d %b-%H:%M:%S')}
rlawrence has joined #ruby
bomb has joined #ruby
<rlawrence> Anyone?
Guest58115 has joined #ruby
matcouto has quit [Remote host closed the connection]
lomex has joined #ruby
rlawrence has quit [Ping timeout: 252 seconds]
Mark22kk has quit [Ping timeout: 252 seconds]
vondruch has joined #ruby
vondruch has quit [Client Quit]
mikecmpbll has joined #ruby
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
akem has joined #ruby
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rlawrence has joined #ruby
lomex has joined #ruby
DTZUZO has quit [Ping timeout: 252 seconds]
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
clorisu has joined #ruby
Beams has joined #ruby
alem0lars has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
clorisu has quit [Quit: Leaving]
alem0lars has joined #ruby
anikras has quit [Ping timeout: 252 seconds]
<marz_d`ghostman> If I pass a shift_age: 10 to Logger.new, it will keep 10 logs files right?
alem0lars has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
stan has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
<zenspider> man... color math is just grotesque...
alem0lars has joined #ruby
bak1an has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
<zenspider> rlawrence: still there?
DTZUZO has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
leitz has joined #ruby
alem0lars has joined #ruby
<rlawrence> zenspider: yep
alem0lars has quit [Read error: Connection reset by peer]
<zenspider> apropos of nothing, check out a cleaner way to format your templates: https://dpaste.de/AZeG
alem0lars has joined #ruby
<rlawrence> zenspider: yeah, looks good!
alem0lars has quit [Read error: Connection reset by peer]
tristanp has joined #ruby
alem0lars has joined #ruby
redlegion has quit [Ping timeout: 256 seconds]
bak1an_ has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
<zenspider> so your code is getting up to the first null terminated string in the struct and then bombing out?
alem0lars has joined #ruby
alem0lars has quit [Read error: Connection reset by peer]
bak1an has quit [Ping timeout: 240 seconds]
alem0lars has joined #ruby
<rlawrence> kind of
redlegion has joined #ruby
tristanp has quit [Ping timeout: 252 seconds]
<zenspider> I don't have access to the structure or header you're grabbing... it might be nice to isolate whether this is a problem with the pack/unpack side of things or the actual call to ioctl.
alem0lars has quit [Read error: Connection reset by peer]
<zenspider> I found https://wisesciencewise.wordpress.com/2017/07/06/c-program-to-send-identify-controller-command-to-an-nvme-storage-drive/ which has some equivalent C code... maybe run that or the python, grab the blob in question, and just try to unpack that?
alem0lars has joined #ruby
aupadhye has joined #ruby
<zenspider> it _could_ be that you found a bug... but that's pretty unlikely. that said, if there is going to be a dangling free, it's probably in someplace obscure like ioctl
alem0lars has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
<zenspider> this doco is so strange: https://nvmexpress.org/wp-content/uploads/NVM_Express_1_2_Gold_20141209.pdf the byte ranges are literally written backwards
<leitz> Anyone use MongoDB? I'm getting an 'invalid document' but the string passes seems to be a string and works if used manually. https://gist.github.com/LeamHall/0ca34a8bca8f30a2319fb5136faba8a9
alem0lars has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
<zenspider> rlawrence: yeah. I'd use the python to do the same action, save it off into a binary file, then use ruby to read it in and test your template against. assuming that works fine, then try to isolate the ioctl stuff more
<zenspider> mongodb?? really? for your thing?
<leitz> zenspider, yup.
alem0lars has quit [Read error: Connection reset by peer]
alem0lars has joined #ruby
<leitz> Hmm...the issue isn't in the passing of the query, but the translation of the query itself, it seems.
<zenspider> !connection alem0lars
alem0lars was kicked from #ruby by ruby[bot] [repeated join/part detected]
<rlawrence> zenspider: thanks, I'll try
<zenspider> rlawrence: good luck. sorry I couldn't be more help
<leitz> Setting the query inside the find method still fails.
<zenspider> I do find that removing noise and lining stuff up so the human brain can pattern match more does help a lot
<zenspider> leitz: look at line 3
<leitz> zenspider, I had thought it turned the query into a hash, but a "puts query.class" shows it as a string.
<leitz> What am I missing?
<leitz> Besides the usual "brain, clue, and life"?
<zenspider> compare it to line 16, which works...
<leitz> Okay, added spaces, but not seeing the difference. If I cut and past the string that is the query into the db, it works.
<leitz> The "{}" doesn't seem to convert it into a hash, as I earlier thought.
<zenspider> what is the arg on line 16?
* leitz ours coffee and then pours over the question.
<leitz> AH! It's SUPPOSED TO BE a hash. I'm still stuck in the "=>" mode.
clemens3 has joined #ruby
<rlawrence> zenspider: anyhow, thanks for your help!
<zenspider> yup yup
sticaz has joined #ruby
unCork has joined #ruby
Cork has quit [Ping timeout: 260 seconds]
unCork is now known as Cork
bak1an_ has quit [Ping timeout: 245 seconds]
postmodern has quit [Quit: Leaving]
savolla has joined #ruby
doubledup has joined #ruby
bak1an has joined #ruby
esrse has quit [Ping timeout: 245 seconds]
akem has quit [Read error: Connection reset by peer]
akem has joined #ruby
johnny56 has quit [Ping timeout: 272 seconds]
leitz has quit [Quit: Leaving]
dionysus70 has joined #ruby
AJA4350 has joined #ruby
dionysus70 has quit [Client Quit]
doubledup has quit [Quit: Leaving]
aupadhye_ has joined #ruby
aupadhye has quit [Read error: Connection reset by peer]
johnny56 has joined #ruby
aupadhye_ has quit [Ping timeout: 246 seconds]
apeiros_ has joined #ruby
aupadhye_ has joined #ruby
aupadhye_ has quit [Client Quit]
nowhere_man has quit [Ping timeout: 252 seconds]
dellavg_ has quit [Ping timeout: 244 seconds]
dellavg_ has joined #ruby
<rlawrence> zenspider: unpack works as expected: the code: https://dpaste.de/TH3P, output of the script: https://dpaste.de/trmk (nvme id-ctrl -b produces binary string of 4096 symbols)
sticaz has quit [Ping timeout: 252 seconds]
<rlawrence> zenspider: I'm not sure how to correctly pass a pointer to the allocated buffer...
magellanicloud has joined #ruby
akem has quit [Remote host closed the connection]
akem has joined #ruby
jcalla has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
gr33n7007h has joined #ruby
gr33n7007h is now known as al2o3-cr
mostlybadfly has joined #ruby
mike11 has joined #ruby
bak1an has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
wojnar has joined #ruby
stan has quit [Remote host closed the connection]
garyserj has joined #ruby
stan has joined #ruby
thy0 has joined #ruby
nowhere_man has joined #ruby
<garyserj> i'm having trouble getting pry byebug to work. I did require 'pry' and I did binding.pry, Then I run the program and it pauses, which is good. But I can't get it to step through the code. I tried c/continue, no use. I tried n/next. No use. I tried s/step, no use. I tried 'help' but i don't see a command to step!
bmurt has joined #ruby
al2o3-cr has quit [Remote host closed the connection]
al2o3-cr has joined #ruby
<garyserj> ah i think require 'pry-byebug' and binding.pry do it
bak1an has joined #ruby
wolfshappen has quit [Quit: Waffs have technical problems too]
argoneus has quit [Quit: No Ping reply in 180 seconds.]
argoneus has joined #ruby
wolfshappen has joined #ruby
hays_ has joined #ruby
bak1an has quit [Ping timeout: 252 seconds]
hays has quit [Ping timeout: 240 seconds]
BaroMeter has joined #ruby
bak1an has joined #ruby
aufi has quit [Ping timeout: 272 seconds]
al2o3-cr has quit [Quit: WeeChat 2.2]
garyserj has quit [Ping timeout: 244 seconds]
gr33n7007h has joined #ruby
gr33n7007h is now known as al2o3-cr
Rootsudo has quit [Quit: Textual IRC Client: www.textualapp.com]
thejs has joined #ruby
<rlawrence> zenspider: I've found the root cause. I had a doubts about passing the pointer and I was right.
jamesaxl has joined #ruby
<jamesaxl> I hope that you are interested about HardnenedBSD
thy0 has quit [Ping timeout: 244 seconds]
RougeR has joined #ruby
thy0 has joined #ruby
savolla has quit [Remote host closed the connection]
aufi has joined #ruby
<RougeR> anyone able to give me a hand with some s3 stubbing?
aufi has quit [Read error: Connection reset by peer]
<rlawrence> zenspider: diff: https://dpaste.de/0GCW working solution: https://dpaste.de/uqqQ
aufi has joined #ruby
<RougeR> ^code
al2o3-cr has quit [Remote host closed the connection]
Rapture has joined #ruby
yohji has joined #ruby
rippa has joined #ruby
ineb has quit [Quit: WeeChat 2.2]
al2o3-cr has joined #ruby
v01d4lph4 has quit [Remote host closed the connection]
dionysus70 has joined #ruby
apeiros_ is now known as apeiros
RougeR has quit [Ping timeout: 252 seconds]
v01d4lph4 has joined #ruby
brandoncc has joined #ruby
gnufied has joined #ruby
brandoncc has quit [Client Quit]
v01d4lph4 has quit [Ping timeout: 252 seconds]
Tempesta has quit [Quit: See ya!]
v01d4lph4 has joined #ruby
dionysus70 has quit [Remote host closed the connection]
apeiros has quit []
Dbugger has joined #ruby
RougeR has joined #ruby
NL3limin4t0r has joined #ruby
al2o3-cr has quit [Remote host closed the connection]
RougeR has quit [Ping timeout: 245 seconds]
bomb has quit [Remote host closed the connection]
dionysus69 has quit [Ping timeout: 240 seconds]
kapil___ has joined #ruby
gr33n7007h has joined #ruby
gr33n7007h is now known as al2o3-cr
aufi has quit [Remote host closed the connection]
v01d4lph4 has quit [Remote host closed the connection]
duderonomy has joined #ruby
orbyt_ has joined #ruby
DTZUZO has quit [Ping timeout: 240 seconds]
al2o3-cr has quit [Remote host closed the connection]
al2o3-cr has joined #ruby
cagomez has joined #ruby
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mikecmpbll has quit [Quit: inabit. zz.]
Guest58115 has quit [Ping timeout: 246 seconds]
yohji has quit [Remote host closed the connection]
Inline has joined #ruby
Inline has quit [Read error: Connection reset by peer]
cthulchu has joined #ruby
Inline has joined #ruby
Inline has quit [Read error: Connection reset by peer]
segy has quit [Ping timeout: 252 seconds]
Inline has joined #ruby
brandoncc has joined #ruby
Guest58115 has joined #ruby
dionysus69 has joined #ruby
Beams has quit [Quit: .]
Guest58115 has quit [Ping timeout: 272 seconds]
anubhav996 has joined #ruby
mroutis has joined #ruby
duderonomy has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
desperek has joined #ruby
MoritaShinobu has quit [Quit: Leaving]
ShekharReddy has joined #ruby
thejs has quit [Ping timeout: 252 seconds]
johnny56 has quit [Read error: Connection reset by peer]
NL3limin4t0r has quit [Quit: WeeChat 1.9.1]
RougeR has joined #ruby
ellcs has joined #ruby
eckhardt has joined #ruby
wojnar has quit [Remote host closed the connection]
duderonomy has joined #ruby
rlawrence has quit [Ping timeout: 252 seconds]
segy has joined #ruby
ebobby has joined #ruby
dbz has joined #ruby
dionysus69 has quit [Ping timeout: 272 seconds]
Sina has quit [Quit: Connection closed for inactivity]
dbz has quit [Remote host closed the connection]
johnny56 has joined #ruby
rlawrence has joined #ruby
ebobby is now known as fms
illuzion has joined #ruby
phatcat has joined #ruby
<phatcat> heya, has anyone played with https://github.com/lobsters/lobsters?
bak1an_ has joined #ruby
<ule> I did a while ago.. I was planning to help out in the project but never got a chance
<ule> phatcat: are you planning to?
bak1an has quit [Read error: Connection reset by peer]
<phatcat> ule: I managed to bring up a dev instance but am having problems with the production one
<phatcat> no idea what I'm doing wrong
<phatcat> I was wondering whether there's a DO snapshot or smth that I could deploy
dr3w_ has joined #ruby
sauvin has quit [Read error: Connection reset by peer]
bak1an_ has quit [Ping timeout: 252 seconds]
<ule> I didn't run the project in Prod mode. As far as I remember there is a Docker somewhere
mroutis has quit [Ping timeout: 252 seconds]
<phatcat> mind if I pm?
cthu| has joined #ruby
thejs has joined #ruby
akem has quit [Ping timeout: 252 seconds]
johnny56 has quit [Read error: Connection reset by peer]
cthulchu has quit [Ping timeout: 252 seconds]
Guest58115 has joined #ruby
cthulchu has joined #ruby
jottr has joined #ruby
cthu| has quit [Ping timeout: 252 seconds]
Guest58115 has quit [Ping timeout: 252 seconds]
mike11 has quit [Quit: Leaving.]
Guest58115 has joined #ruby
anubhav996 has quit [Quit: Connection closed for inactivity]
Guest58115 has quit [Ping timeout: 240 seconds]
ramfjord has joined #ruby
Guest58115 has joined #ruby
rlawrence has quit [Ping timeout: 240 seconds]
Guest58115 has quit [Ping timeout: 252 seconds]
johnny56 has joined #ruby
jottr has quit [Ping timeout: 240 seconds]
graphene has quit [Remote host closed the connection]
phatcat has quit []
graphene has joined #ruby
jottr has joined #ruby
n13z has joined #ruby
graphene has quit [Remote host closed the connection]
graphene has joined #ruby
mikecmpbll has joined #ruby
akem has joined #ruby
jottr has quit [Ping timeout: 250 seconds]
SeepingN has joined #ruby
akem has quit [Ping timeout: 244 seconds]
discopatrick has quit [Quit: Connection closed for inactivity]
dionysus69 has joined #ruby
lytol_ has quit [Remote host closed the connection]
jottr has joined #ruby
ShekharReddy has quit [Quit: Connection closed for inactivity]
al2o3-cr has quit [Remote host closed the connection]
Rapture has quit [Quit: Textual IRC Client: www.textualapp.com]
jottr has quit [Ping timeout: 252 seconds]
bak1an has joined #ruby
jottr has joined #ruby
marz_d`ghostman has quit [Quit: Page closed]
dionysus69 has quit [Ping timeout: 272 seconds]
jcalla has quit [Quit: Leaving]
jottr has quit [Read error: Connection reset by peer]
Freshnuts has joined #ruby
bak1an has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lomex has joined #ruby
dellavg_ has quit [Ping timeout: 272 seconds]
tdy has joined #ruby
cthu| has joined #ruby
ramfjord has quit [Ping timeout: 246 seconds]
gr33n7007h has joined #ruby
cthulchu has quit [Ping timeout: 252 seconds]
gr33n7007h is now known as al2o3-cr
ramfjord has joined #ruby
SeepingN has quit [Quit: The system is going down for reboot NOW!]
ramfjord has quit [Ping timeout: 240 seconds]
al2o3-cr has quit [Quit: WeeChat 2.2]
desperek has quit [Quit: xoxo]
gr33n7007h has joined #ruby
gr33n7007h is now known as al2o3-cr
knight33 has joined #ruby
SeepingN has joined #ruby
ineb has joined #ruby
mynameisdebian has joined #ruby
nicesignal has quit [Ping timeout: 272 seconds]
beowuff has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
fredlinhares has joined #ruby
Guest58115 has joined #ruby
ivanskie has joined #ruby
Guest58115 has quit [Ping timeout: 272 seconds]
tpendragon has quit [Remote host closed the connection]
blackjid has quit [Remote host closed the connection]
lomex has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
reber has quit [Remote host closed the connection]
al2o3-cr has quit [Remote host closed the connection]
Guest58115 has joined #ruby
kapil___ has quit [Quit: Connection closed for inactivity]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
thejs has quit [Ping timeout: 252 seconds]
rlawrence has joined #ruby
gr33n7007h has joined #ruby
gr33n7007h is now known as al2o3-cr
Guest58115 has quit [Ping timeout: 240 seconds]
beowuff has joined #ruby
Guest58115 has joined #ruby
Guest58115 has quit [Ping timeout: 240 seconds]
postmodern has joined #ruby
bmurt has joined #ruby
graphene has quit [Remote host closed the connection]
stan has quit [Ping timeout: 246 seconds]
graphene has joined #ruby
beowuff has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
Guest58115 has joined #ruby
mynameisdebian has quit [Remote host closed the connection]
magellanicloud has quit [Read error: Connection reset by peer]
Guest58115 has quit [Ping timeout: 246 seconds]
mynameisdebian has joined #ruby
Guest58115 has joined #ruby
BaroMeter has quit [Quit: Leaving]
rlawrence has quit [Read error: Connection reset by peer]
graphene has quit [Read error: Connection reset by peer]
bmurt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
illuzion has quit [Ping timeout: 240 seconds]
graphene has joined #ruby
Guest58115 has quit [Ping timeout: 252 seconds]
agent_white has joined #ruby
Dbugger has quit [Ping timeout: 240 seconds]
Guest58115 has joined #ruby
clemens3 has quit [Ping timeout: 272 seconds]
mynameisdebian has quit [Remote host closed the connection]
Guest58115 has quit [Ping timeout: 245 seconds]
beowuff has joined #ruby
nicesignal has joined #ruby
Guest58115 has joined #ruby
ivanskie has quit [Quit: Textual IRC Client: www.textualapp.com]
Guest58115 has quit [Ping timeout: 272 seconds]
Guest58115 has joined #ruby
Siarkowy has quit [Quit: Out of current.]
pskosinski has quit [Remote host closed the connection]
cthulchu has joined #ruby
cthu| has quit [Ping timeout: 252 seconds]
Guest58115 has quit [Ping timeout: 246 seconds]
mroutis has joined #ruby
nicesignal has quit [Remote host closed the connection]
nicesignal has joined #ruby
Guest58115 has joined #ruby
thejs has joined #ruby
mikecmpbll has quit [Quit: inabit. zz.]
Guest58115 has quit [Ping timeout: 244 seconds]
cthu| has joined #ruby
cthulchu has quit [Ping timeout: 252 seconds]
Guest58115 has joined #ruby
brandoncc has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Guest58115 has quit [Ping timeout: 272 seconds]
jasmith has quit [Quit: Leaving]
RougeR has quit [Ping timeout: 240 seconds]
brandoncc has joined #ruby
Guest58115 has joined #ruby
Guest58115 has quit [Ping timeout: 244 seconds]
Guest58115 has joined #ruby
havenwood has quit [Quit: ZNC 1.7.1 - https://znc.in]
Guest58115 has quit [Ping timeout: 252 seconds]
Guest58115 has joined #ruby
fms has quit [Remote host closed the connection]
Guest58115 has quit [Ping timeout: 272 seconds]
havenwood has joined #ruby
cthulchu has joined #ruby
cthu| has quit [Ping timeout: 252 seconds]
Guest58115 has joined #ruby
bmurt has joined #ruby
eckhardt has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Guest58115 has quit [Ping timeout: 252 seconds]
mroutis has quit [Read error: Connection reset by peer]
mroutis_ has joined #ruby
bmurt has quit [Client Quit]
Guest58115 has joined #ruby
govg has joined #ruby
Guest58115 has quit [Ping timeout: 240 seconds]
Guest58115 has joined #ruby
cthulchu has quit [Ping timeout: 252 seconds]
bmurt has joined #ruby
bmurt has quit [Client Quit]
tdy has quit [Ping timeout: 252 seconds]
Guest58115 has quit [Ping timeout: 252 seconds]