havenwood changed the topic of #ruby to: Rules: https://ruby-community.com | Ruby 3.0.0, 2.7.2, 2.6.6: https://www.ruby-lang.org | Paste 4+ lines to: https://gist.github.com | Books: https://goo.gl/wpGhoQ | Logs: https://irclog.whitequark.org/ruby | BLM <3
MalkbabY has quit [Remote host closed the connection]
MalkbabY has joined #ruby
cliluw has joined #ruby
gearnode has quit [Ping timeout: 245 seconds]
gearnode has joined #ruby
eldritch has quit [Read error: Connection reset by peer]
explorier has joined #ruby
explorier has quit [Ping timeout: 240 seconds]
LACampbell has joined #ruby
elcuervo has quit [Read error: Connection reset by peer]
elcuervo has joined #ruby
Rounin has quit [Quit: Rounin]
GodFather has quit [Ping timeout: 246 seconds]
patr0clus has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
BSaboia has joined #ruby
patr0clus has joined #ruby
eldritch has joined #ruby
m27frogy_ has quit [Quit: ZNC - https://znc.in]
m27frogy has joined #ruby
daemonwrangler has quit [Quit: ZNC 1.8.2 - https://znc.in]
daemonwrangler has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
BSaboia has quit [Quit: This computer has gone to sleep]
patr0clus has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
Xiti has quit [Quit: Leaving]
akem_ has quit [Ping timeout: 246 seconds]
akem has quit [Ping timeout: 268 seconds]
TCZ has quit [Quit: Czesc]
Xiti has joined #ruby
jetchisel has quit [Ping timeout: 246 seconds]
patr0clus has joined #ruby
TruffleP1mp has quit [Ping timeout: 258 seconds]
jenrzzz has joined #ruby
jetchisel has joined #ruby
cloaked1 has quit [Ping timeout: 246 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
howdoi has quit [Quit: Connection closed for inactivity]
TruffleP1mp has joined #ruby
gix- has quit [Ping timeout: 240 seconds]
duderonomy has quit [Ping timeout: 240 seconds]
patr0clus has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
duderonomy has joined #ruby
TruffleP1mp has quit [Ping timeout: 258 seconds]
cloaked1 has joined #ruby
cloaked1 has quit [Ping timeout: 252 seconds]
ChmEarl has quit [Quit: Leaving]
patr0clus has joined #ruby
explorier has joined #ruby
jetchisel has quit [Ping timeout: 252 seconds]
patr0clus has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
DTZUZU_ has joined #ruby
Guest54155 is now known as baweaver
DTZUZU has quit [Ping timeout: 246 seconds]
baweaver is now known as Guest15819
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jetchisel has joined #ruby
cow[moo] has joined #ruby
Technodrome has joined #ruby
TruffleP1mp has joined #ruby
baojg has joined #ruby
patr0clus has joined #ruby
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dpl has quit [Ping timeout: 260 seconds]
akem has joined #ruby
cow[moo] has joined #ruby
explorier has quit [Ping timeout: 240 seconds]
cow[moo] has quit [Client Quit]
voker57 has quit [Quit: No Ping reply in 180 seconds.]
voker57 has joined #ruby
baojg has quit [Remote host closed the connection]
baojg has joined #ruby
jenrzzz has joined #ruby
<TruffleP1mp> Has anyone successfully used threading in Ractors? When I try to treat the ractor as a queue and have multiple threads waiting on it and writing to it, Ruby crashes.
explorier has joined #ruby
TruffleP1mp has left #ruby [#ruby]
TrufflePump has joined #ruby
jenrzzz has quit [Ping timeout: 246 seconds]
<TrufflePump> That is, threads inside the ractor waiting on Ractor.receive and writing to Ractor.yield.
explorier has quit [Ping timeout: 246 seconds]
m27frogy has quit [Ping timeout: 260 seconds]
Rudd0 has joined #ruby
Xiti has quit [Quit: Leaving]
Vingador has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
MalkbabY has quit [Remote host closed the connection]
MalkbabY has joined #ruby
Xiti has joined #ruby
explorier has joined #ruby
deviantfero has quit [Ping timeout: 260 seconds]
baojg has quit [Remote host closed the connection]
<havenwood> TrufflePump: I forgot to answer the other day. You mean about this paste, right? https://pastebin.com/1B4Fq3t4
<ruby[bot]> havenwood: we in #ruby do not like pastebin.com, it loads slowly for most, has ads which are distracting and has terrible formatting. Please use https://gist.github.com
<havenwood> Haha.
gearnode has quit [Ping timeout: 250 seconds]
ur5us has quit [Ping timeout: 258 seconds]
jenrzzz has joined #ruby
duderonomy has quit [Quit: Textual IRC Client: www.textualapp.com]
TrufflePump has left #ruby [#ruby]
TrufflePump has joined #ruby
jenrzzz has quit [Ping timeout: 268 seconds]
<TrufflePump> Thanks havenwood, your example works for me. Ractors in ractors, instead of threads in ractors.
<TrufflePump> I managed to avoid the crashing from my example by using a thread to take Ractor receive and dump it into a queue, and an output queue which a single thread pushed into Ractor.yield, then many threads working on those queues. But it's fragile and freezes on r.take, having dropped a message somewhere.
Technodrome has joined #ruby
<havenwood> TrufflePump: I think we could give better advice if you have a more concrete use case?
<havenwood> TrufflePump: I can't tell from the piping to pipes what the goal is. :)
<havenwood> TrufflePump: A worker pool like? https://github.com/ruby/ruby/blob/master/doc/ractor.md#worker-pool
<havenwood> TrufflePump: I'd suggest avoiding Threads unless you have a real good inkling why they're better.
<havenwood> Ractor + Async should have you covered nicely.
<havenwood> Object.send(:remove_const, :Thread)
jmcgnh has quit [Ping timeout: 246 seconds]
<havenwood> TrufflePump: A Ractor pipe is an infinite queue itself. Have a particular goal or experimenting?
akem_ has joined #ruby
<havenwood> TrufflePump: Updated my gist here, but what I'm showing is a pipe that picks a worker which is different from the worker example in the "worker-pool" from the docs where the worker pulls from the pipe. https://gist.github.com/havenwood/74c81ec76e5a2bc1b775838e21818087
<havenwood> TrufflePump: I tried to do what I thought you were going for, and it does work, but maybe consider workers pulling from a pipe instead of a pipe pushing to workers.
akem_ has quit [Read error: Connection reset by peer]
<havenwood> TrufflePump: That way the worker pulling will be one free. Sampling can back up work on a busy worker's queue when another would have been free to pull from the pipe.
akem has quit [Ping timeout: 260 seconds]
<havenwood> Reactors are strange to think of, especially with fluorescent squid.
MalkbabY has quit []
Guest15819 is now known as baweaver
baweaver has quit [Changing host]
baweaver has joined #ruby
Vingador has quit [Read error: Connection reset by peer]
baojg has joined #ruby
akem has joined #ruby
StarOnD has joined #ruby
jmcgnh has joined #ruby
baojg has quit [Remote host closed the connection]
baojg has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cd has quit [Quit: cd]
jla has joined #ruby
jenrzzz has joined #ruby
ua has quit [Ping timeout: 252 seconds]
TomyWork has joined #ruby
akem has quit [Ping timeout: 268 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
jeromelanteri has joined #ruby
neshpion has quit [Quit: neshpion]
patr0clus has quit [Quit: Textual IRC Client: www.textualapp.com]
ua has joined #ruby
bamdad has quit [Remote host closed the connection]
jenrzzz has joined #ruby
bamdad has joined #ruby
Rounin has joined #ruby
vondruch has joined #ruby
dpl has joined #ruby
akem has joined #ruby
akem has quit [Client Quit]
akem has joined #ruby
weaksauce has quit [Ping timeout: 268 seconds]
DaRock has joined #ruby
jenrzzz has quit [Ping timeout: 246 seconds]
KrzaQ- is now known as KrzaQ
maroloccio has joined #ruby
hiroaki has quit [Ping timeout: 246 seconds]
ur5us has joined #ruby
StarOnD has quit [Ping timeout: 240 seconds]
hiroaki has joined #ruby
StarOnD has joined #ruby
gearnode has joined #ruby
baojg has quit [Remote host closed the connection]
ur5us has quit [Ping timeout: 276 seconds]
jetchisel has quit [Ping timeout: 252 seconds]
Tempesta_ has left #ruby ["Closing Channel, bye."]
Tempesta has joined #ruby
baojg has joined #ruby
baojg has quit [Remote host closed the connection]
dpl_ has joined #ruby
dpl has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 268 seconds]
TCZ has joined #ruby
baojg has joined #ruby
BSaboia has joined #ruby
TCZ has quit [Quit: Czesc]
vondruch has quit [Ping timeout: 240 seconds]
maroloccio has quit [Ping timeout: 240 seconds]
StarOnD has quit [Quit: Connection closed]
jla has quit [Ping timeout: 260 seconds]
ljarvis has joined #ruby
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
jerome___ has joined #ruby
jeromelanteri has quit [Ping timeout: 252 seconds]
m27frogy has joined #ruby
jla has joined #ruby
jetchisel has joined #ruby
dpl__ has joined #ruby
dpl_ has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 260 seconds]
baojg_ has joined #ruby
baojg has quit [Ping timeout: 258 seconds]
Vingador has joined #ruby
MuffinPimp has quit [Quit: Goodbye.]
MuffinPimp has joined #ruby
vondruch has joined #ruby
mcr has quit [Ping timeout: 246 seconds]
mcr has joined #ruby
alexherbo2 has joined #ruby
BSaboia has quit [Quit: This computer has gone to sleep]
cow[moo] has joined #ruby
cuerbot has joined #ruby
elcuervo has quit [Ping timeout: 240 seconds]
BSaboia has joined #ruby
BSaboia has quit [Read error: No route to host]
dpl_ has joined #ruby
dpl__ has quit [Ping timeout: 260 seconds]
gearnode has quit [Ping timeout: 245 seconds]
gearnode has joined #ruby
alexherbo2 has quit [Ping timeout: 240 seconds]
fercell- has quit [Remote host closed the connection]
greengriminal has joined #ruby
Vingador has quit [Ping timeout: 240 seconds]
vondruch has quit [Ping timeout: 246 seconds]
ua has quit [Ping timeout: 252 seconds]
cow[moo] has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cow[moo] has joined #ruby
ua has joined #ruby
TCZ has joined #ruby
jla has quit [Ping timeout: 268 seconds]
vondruch has joined #ruby
jenrzzz has joined #ruby
Technodrome has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
GodFather has joined #ruby
klaas_ is now known as klaas
GodFather has quit [Remote host closed the connection]
deviantfero has joined #ruby
baojg_ has quit [Remote host closed the connection]
wallacer has joined #ruby
Iarfen has joined #ruby
TCZ has quit [Quit: Czesc]
fercell has joined #ruby
jimms has joined #ruby
BSaboia has joined #ruby
maroloccio has joined #ruby
dpl_ has quit [Ping timeout: 260 seconds]
marc_ has joined #ruby
<marc_> hey guys, most likely a dumb question, but I'm struggling with a live system that can't send emails after a migration to a new server. SMTP creds are the same, .env is double checked. How can I check from within the rails console if the creds are loaded properly?
ChmEarl has joined #ruby
maroloccio has quit [Ping timeout: 240 seconds]
TCZ has joined #ruby
maroloccio has joined #ruby
maroloccio has quit [Read error: Connection reset by peer]
jenrzzz has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
nixue has joined #ruby
RougeR has joined #ruby
jetchisel has quit [Ping timeout: 240 seconds]
volix_ is now known as volix
volix has quit [Changing host]
volix has joined #ruby
banana35 has joined #ruby
jetchisel has joined #ruby
jetchisel has quit [Quit: Unfortunately time is always against us -- [Morpheus]]
banana35 has quit [Quit: Connection closed]
Xiti` has joined #ruby
Xiti has quit [Ping timeout: 252 seconds]
thebluebanana has joined #ruby
thebluebanana is now known as b
b is now known as Guest16815
Guest16815 is now known as thebluebanana
thebluebanana is now known as venue
deviantfero has quit [Quit: WeeChat 3.1]
venue is now known as venue^e
venue^e is now known as venue
venue is now known as venue^e
venue^e is now known as venue
venue has quit [Quit: venue]
lazypwny[m] has quit [Quit: Idle for 30+ days]
explorier has quit [Remote host closed the connection]
supercoven has joined #ruby
cthulchu_ has joined #ruby
explorier has joined #ruby
musa has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Technodrome has joined #ruby
Xiti` has quit [Quit: Leaving]
akem has quit [Ping timeout: 240 seconds]
BSaboia has quit [Quit: This computer has gone to sleep]
lockweel has joined #ruby
<marc_> exit
marc_ has quit [Quit: leaving]
TCZ has quit [Quit: Czesc]
cthulchu has joined #ruby
cthulchu_ has quit [Ping timeout: 252 seconds]
wallacer has quit [Read error: Connection reset by peer]
jenrzzz has joined #ruby
venue has joined #ruby
explorier has quit [Ping timeout: 246 seconds]
jenrzzz has quit [Ping timeout: 252 seconds]
Jello_Raptor has quit [Ping timeout: 252 seconds]
wallacer has joined #ruby
Jello_Raptor has joined #ruby
TomyWork has quit [Remote host closed the connection]
envex has quit []
venue has left #ruby [#ruby]
vondruch has quit [Read error: Connection reset by peer]
akem has joined #ruby
venue has joined #ruby
musa has quit [Ping timeout: 240 seconds]
roshanavand_ has joined #ruby
explorier has joined #ruby
BSaboia has joined #ruby
brunosaboia_ has joined #ruby
jerome__ has joined #ruby
BSaboia has quit [Ping timeout: 268 seconds]
jerome___ has quit [Ping timeout: 240 seconds]
DTZUZU has joined #ruby
DTZUZU_ has quit [Ping timeout: 268 seconds]
DTZUZU_ has joined #ruby
Xiti has joined #ruby
DTZUZU has quit [Read error: Connection reset by peer]
dostoyevsky has quit [Ping timeout: 268 seconds]
DTZUZU_ is now known as DTZUZU
dostoyevsky has joined #ruby
DaRock has quit [Read error: Connection reset by peer]
DaRock has joined #ruby
jimms has quit [Quit: Leaving]
roshanavand_ has quit [Ping timeout: 260 seconds]
neshpion has joined #ruby
DaRock has quit [Ping timeout: 240 seconds]
DaRock has joined #ruby
DaRock has quit [Ping timeout: 260 seconds]
DaRock has joined #ruby
weaksauce has joined #ruby
cd has joined #ruby
DaRock has quit [Ping timeout: 260 seconds]
DaRock has joined #ruby
howdoi has joined #ruby
dostoyevsky has quit [Quit: leaving]
dostoyevsky has joined #ruby
brunosaboia_ has quit [Ping timeout: 240 seconds]
gix has joined #ruby
brunosaboia_ has joined #ruby
jetchisel has joined #ruby
brunosaboia__ has joined #ruby
bamdad has quit [Remote host closed the connection]
brunosaboia_ has quit [Ping timeout: 240 seconds]
bamdad has joined #ruby
jenrzzz has joined #ruby
dpl_ has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
jenrzzz has joined #ruby
DaRock has quit [Ping timeout: 260 seconds]
DaRock has joined #ruby
Technodrome has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lockweel has quit [Quit: Leaving]
jenrzzz has quit [Ping timeout: 240 seconds]
jla has joined #ruby
roshanavand_ has joined #ruby
jenrzzz has joined #ruby
brunosaboia__ has quit [Quit: This computer has gone to sleep]
rafadc has quit [Ping timeout: 268 seconds]
jenrzzz has quit [Ping timeout: 260 seconds]
rafadc has joined #ruby
croberts has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
Rudd0 has quit [Ping timeout: 260 seconds]
jenrzzz has joined #ruby
hiroaki has quit [Ping timeout: 246 seconds]
mnathani has quit [Read error: Connection reset by peer]
mnathani has joined #ruby
explorier has quit [Ping timeout: 265 seconds]
ur5us has joined #ruby
hiroaki has joined #ruby
supercoven has quit [Ping timeout: 260 seconds]
RougeR has quit [Remote host closed the connection]
RougeR has joined #ruby
roshanavand has joined #ruby
rafadc has quit [Ping timeout: 240 seconds]
rafadc has joined #ruby
roshanavand_ has quit [Ping timeout: 265 seconds]
venue has quit [Remote host closed the connection]
venue has joined #ruby
venue has quit [Client Quit]
roshanavand has quit [Ping timeout: 268 seconds]
venue has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
Iarfen has quit [Remote host closed the connection]
crankharder has joined #ruby
dpl_ has quit [Read error: Connection reset by peer]
explorier has joined #ruby
GodFather has joined #ruby
venue has quit [Quit: venue]
GodFather has quit [Read error: No route to host]
crankharder has quit [Ping timeout: 240 seconds]
venue has joined #ruby
ruby[bot] has quit [Remote host closed the connection]
ruby[bot] has joined #ruby
Rudd0 has joined #ruby
jenrzzz has joined #ruby
barg has quit [Read error: Connection reset by peer]
Vingador has joined #ruby
jenrzzz has quit [Ping timeout: 240 seconds]
jla has quit [Ping timeout: 240 seconds]
GodFather has joined #ruby
GodFather has quit [Read error: Connection reset by peer]
GodFather has joined #ruby
GodFather has quit [Read error: Connection reset by peer]
GodFather has joined #ruby
venue has quit [Quit: venue]
venue has joined #ruby
Vingador has quit [Quit: http://quassel-irc.org - Bate-papo confortável em qualquer lugar.]
Vingador has joined #ruby
crankharder has joined #ruby
venue has quit [Client Quit]
crankharder has quit [Ping timeout: 265 seconds]
vondruch has joined #ruby
gearnode has quit [Quit: WeeChat 3.1]
GodFather has quit [Ping timeout: 265 seconds]
venue has joined #ruby
FetidToot has joined #ruby
FetidToot has quit [Changing host]
RougeR has quit [Read error: Connection reset by peer]
Technodrome has joined #ruby
GodFather has joined #ruby
GodFather has quit [Read error: Connection reset by peer]
greengriminal has quit [Quit: Leaving]
cthulchu has quit [Ping timeout: 240 seconds]
Vingador has quit [Ping timeout: 265 seconds]
venue has quit [Quit: venue]
venue has joined #ruby
venue is now known as venue[away]
venue[away] is now known as venue
venue is now known as ve^ue
duderonomy has joined #ruby
itok has quit [Ping timeout: 240 seconds]
itok has joined #ruby
ur5us has quit [Ping timeout: 258 seconds]
dka has quit [Quit: My Ex-Girlfriend once told me: I'm not a slut, I'm just popular]