#dev 2023-08-22

2023-08-22 UTC
gxt, geoffo, sp1ff`, IWSlackGateway, gRegor, [tantek], [KevinMarks], btrem and [schmarty] joined the channel
#
sknebel
https://skybridge.fly.dev/ bsky-api-to-mastodon-client-api-bridge
[snarfed], btrem, [aciccarello], geoffo and t0nic joined the channel
#
c​apjamesg
[snarfed] I have a Python script that uses Threading and when I run .join() the callback function executes _again_ before finally stopping.
#
c​apjamesg
I assume .join() is supposed to terminate a thread?
geoffo joined the channel
#
[snarfed]
it waits until the thread itself finishes
#
c​apjamesg
Good to know.
#
c​apjamesg
The issue was that I forgot a `return` statement somewhere 🤦
#
c​apjamesg
Gosh threading is complicated.
#
[snarfed]
concurrency at least, yes!
#
[snarfed]
avoid it at unless you really truly need it
#
c​apjamesg
In this case I really truly need it.
#
c​apjamesg
I need to be able to display a video in one thread and process instructions in another.
bterry joined the channel
#
[snarfed]
is this web? are these separate HTTP requests? can you multiprocess, ie run multiple WSGI workers?