havenwood changed the topic of #ruby to: Ruby 3.4.2, 3.3.7 https://www.ruby-lang.org | Log https://libera.irclog.whitequark.org/ruby
cappy has joined #ruby
fercell has quit [Quit: ZNC - https://znc.in]
fercell has joined #ruby
brw has quit [Remote host closed the connection]
manny68 has joined #ruby
brw has joined #ruby
brw has quit [Remote host closed the connection]
brw has joined #ruby
brw has quit [Remote host closed the connection]
brw has joined #ruby
brw has quit [Remote host closed the connection]
TomyWork has quit [Ping timeout: 260 seconds]
brw has joined #ruby
STASIdownunder has joined #ruby
STASIdownunder has quit [Quit: WeeChat 4.5.1]
STASIdownunder has joined #ruby
cappy has quit [Quit: Leaving]
brw has quit [Remote host closed the connection]
brw has joined #ruby
o0x1eef has quit [Ping timeout: 244 seconds]
eddof13 has joined #ruby
eddof13 has quit [Client Quit]
o0x1eef has joined #ruby
manny68 has quit [Quit: Client closed]
o0x1eef has quit [Ping timeout: 272 seconds]
o0x1eef has joined #ruby
Furai has quit [Quit: WeeChat 4.6.0]
Sampersand has joined #ruby
Furai has joined #ruby
gemmaro has quit [Ping timeout: 245 seconds]
gemmaro has joined #ruby
Sampersand has quit [Ping timeout: 240 seconds]
STASIdownunder has quit [Quit: WeeChat 4.5.1]
STASIdownunder has joined #ruby
gAy_Dragon is now known as AI_Dragon
grenierm has joined #ruby
andy-turner has joined #ruby
R2robot has quit [Ping timeout: 260 seconds]
R2robot has joined #ruby
STASIdownunder has quit [Quit: WeeChat 4.5.1]
jmcantrell has quit [Ping timeout: 265 seconds]
CRISPR has joined #ruby
TomyWork has joined #ruby
<nakilon> positional arguments are cognitive overhead
<nakilon> yeah I didn't understand at start what's the purpose of cycle there
<nakilon> I've got a question
<nakilon> I have a method that does some calculations and then calls MyClass.new with the results to build an object with some handy methods
<nakilon> sometimes the object "corrupts", i.e. its methods start throwing different exceptions and that means I have to reinstantiate my class
<nakilon> this object is used all over the places, it many files, and so I don't want to put begin-rescue in so many places -- instead I want the MyClass to catch the exception and reinit itself
<nakilon> but to call MyClass.new from within the methods of itself feels wrong
<nakilon> I need to somehow repeat that "calculations" routine I do to pass the results to the ::new
___nick___ has joined #ruby
<nakilon> this does not really answer my hesitation https://stackoverflow.com/q/5739131/322020
<nakilon> I have no idea why both responders did the same "move this code out of this method", no reason
sunyour has quit [Quit: sunyour]
___nick___ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
sunyour has joined #ruby
<nakilon> also I didn't want to move the calculations to constructor; I wanted to the "initialize" to accept already calculated data to just store them as attributes and do no more processing at that moment
___nick___ has joined #ruby
___nick___ has quit [Client Quit]
<havenwood> nakilon: For your particular case, it sounds like you might consider a `rescue` inside your #initialize with a `retry` rather than a separate init helper method.
<havenwood> For the SO question, I'd have recommended using #clear rather than fresh Arrays to reduce object churn and for clarity.
<nakilon> i.e. not to have the exceptions of "unable to calculate the results" from within the class; but maybe that's where I do a mistake; maybe if the event "reinit" exists then I should allow it happen from within the class and stop hesitating making initialize fat
<nakilon> yeah the retry loop is also a thing
<havenwood> nakilon: This is hand wavey with the error, but: https://gist.github.com/havenwood/272941c879ac64f75daf713f308681ba
___nick___ has joined #ruby
<havenwood> And yeah, you might wanna not retry infinitely. :)
<nakilon> the subject is a wrapper on Capybara, so I init a thing that represents, for example, a Table with useful methods, and if there was animation or slow loafing the found nodes might be corrupted, dead, not rectangular, etc., so I need to reinit my structure
<nakilon> *loading
<nakilon> *not transposable
<nakilon> for example, JS can be made in the way that it recreated the <td> and after some scroll or click the node is gone
<nakilon> and I need to handle this for guys who use the library
<nakilon> havenwood: your gist; how often did you do things like this? is this a real practice?
<nakilon> I just never did a thing a that would reinit itself
<nakilon> for example, pretty sure it's impossible in basic class, like in Array you can't call self.replace from within a custom method
Linux_Kerio has joined #ruby
Linux_Kerio has quit [Read error: Connection reset by peer]
<nakilon> for custom classes it's possible to assign the attributes at any time, but is it ruby-idiomatic
___nick___ has quit [Ping timeout: 252 seconds]
___nick___ has joined #ruby
STASIdownunder has joined #ruby
<nakilon> maybe I can do it via assigning nils to memoized attributes, so the resetting will happen not in initialize but elsewhere on demand
STASIdownunder has quit [Read error: Connection reset by peer]
<havenwood> nakilon: Using retry with rescue in a method is for sure real practice. Agree it's not common to have initialization raising. Hopefully it's rather exceptional.
STASIdownunder has joined #ruby
<havenwood> nakilon: It's best to assign instance variables during initialization, but it doesn't matter if you use a helper method or not. It's fine to reassign them later, but nice to do instance variable assignment and any freezing up front to establish a single object shape.
factor4 has joined #ruby
<havenwood> As long as multiple instances of the class assign instance variables initially, up front in the same order, they'll be the same shape which can be really beneficial if you have lots of them. It's generally a good practice for code readability but object shapes give a good additional reason to set them during initialization rather than later, even
<havenwood> if they're going to be set again. A `nil` is a fine placeholder.
factor has quit [Ping timeout: 248 seconds]
factor4 is now known as factor
grenierm has quit [Ping timeout: 240 seconds]
STASIdownunder has quit [Read error: Connection reset by peer]
<nakilon> meanwhile, "up front to establish a single object shape." -- the thing that "let" in rspec is avoiding
<nakilon> I pray every day for my coworkers not to ask me when to let and when to def
<nakilon> now probably should add the same error handling to find_row_by and maybe make a private error handling method to dry them
CRISPR has quit [Ping timeout: 252 seconds]
<nakilon> I hate that I have to pass the "page" so the instance methods could have access to capybara searchers; maybe I'm missing something
<nakilon> anyway
<havenwood> nakilon: I like the new anonymous block syntax: def find_row_by(&) = rows.filter(&).assert_one
<havenwood> I don't like using `_` alone, since it has discrete meaning in IRB. I'd rather `it` if it's modern Ruby.
<nakilon> which version is & from?
<nakilon> smth new
<nakilon> I would say it's almost codegolf at this point; I don't ming one line long method as long as it included several method calls
<nakilon> *mind
<nakilon> I might use the "it"; unfortunately it's conflicting with rspec method it
wbooze is now known as Inline
ikonia has joined #ruby
STASIdownunder has joined #ruby
___nick___ has quit [Ping timeout: 272 seconds]
STASIdownunder has quit [Read error: Connection reset by peer]
STASIdownunder has joined #ruby
STASIdownunder has quit [Read error: Connection reset by peer]
STASIdownunder has joined #ruby
STASIdownunder has quit [Read error: Connection reset by peer]
STASIdownunder has joined #ruby
STASIdownunder has quit [Read error: Connection reset by peer]
STASIdownunder has joined #ruby
o0x1eef has quit [Ping timeout: 252 seconds]
STASIdownunder has quit [Read error: Connection reset by peer]
TomyWork has quit [Ping timeout: 248 seconds]
o0x1eef has joined #ruby
STASIdownunder has joined #ruby
GreenResponse has joined #ruby
STASIdownunder has quit [Read error: Connection reset by peer]
STASIdownunder has joined #ruby
CRISPR has joined #ruby
CRISPR has quit [Ping timeout: 246 seconds]
GreenResponse has quit [Quit: Leaving]
STASIdownunder has quit [Read error: Connection reset by peer]
STASIdownunder has joined #ruby
STASIdownunder has quit [Read error: Connection reset by peer]
eddof13 has joined #ruby
eddof13 has quit [Client Quit]
victori has quit [Quit: ZNC 1.9.1 - https://znc.in]
victori has joined #ruby
user71 has joined #ruby
Inline has quit [Quit: Leaving]
STASIdownunder has joined #ruby
STASIdownunder has quit [Read error: Connection reset by peer]
jmjl has quit [Remote host closed the connection]
jmjl has joined #ruby
STASIdownunder has joined #ruby
jmcantrell has joined #ruby
johnjaye has quit [Ping timeout: 260 seconds]
STASIdownunder has quit [Read error: Connection reset by peer]
johnjaye has joined #ruby
eddof13 has joined #ruby
brokkoli_origin has quit [Ping timeout: 244 seconds]
rvalue has quit [Read error: Connection reset by peer]
rvalue has joined #ruby
brokkoli_origin has joined #ruby
STASIdownunder has joined #ruby
eddof13 has quit [Quit: eddof13]
Linux_Kerio has joined #ruby
Linux_Kerio has quit [Client Quit]
Linux_Kerio has joined #ruby
eddof13 has joined #ruby
eddof13 has quit [Quit: eddof13]
polishdub has quit [Remote host closed the connection]
eddof13 has joined #ruby
nmollerup has quit [Remote host closed the connection]
nmollerup has joined #ruby
GreenResponse has joined #ruby
polishdub has joined #ruby
mms has joined #ruby
cappy has joined #ruby
Sampersand has joined #ruby
eddof13 has quit [Ping timeout: 260 seconds]
rvalue- has joined #ruby
rvalue has quit [Ping timeout: 252 seconds]
hwpplayer1 has joined #ruby
rvalue- is now known as rvalue
FetidToot1 has joined #ruby
FetidToot has quit [Ping timeout: 245 seconds]
FetidToot1 is now known as FetidToot
Sampersand has quit [Quit: Client closed]
hwpplayer1 has quit [Read error: Connection reset by peer]
hwpplayer1 has joined #ruby
hwpplayer1 has quit [Read error: Connection reset by peer]
hwpplayer1 has joined #ruby
hwpplayer1 has quit [Remote host closed the connection]
hwpplayer1 has joined #ruby
levitating has joined #ruby
user71 has quit [Quit: Leaving]
jess has joined #ruby
SebastianM has joined #ruby
SebastianM has quit [Quit: -a- IRC for Android 2.1.59]
hwpplayer1 has quit [Read error: Connection reset by peer]
andy-turner has quit [Quit: Leaving]
cappy has quit [Quit: Leaving]
ruby[bot] has quit [Remote host closed the connection]
ruby[bot] has joined #ruby
GreenResponse has quit [Quit: Leaving]
cappy has joined #ruby
sarna has quit [Ping timeout: 245 seconds]
Sampersand has joined #ruby
sarna has joined #ruby
lutherann has quit [Quit: WeeChat 4.4.3]
Sampersand has quit [Quit: Client closed]
Sampersand has joined #ruby
Sampersand8 has joined #ruby