2025/06/24

2025-06-24 00:02:25 +0000jespada(~jespada@r179-25-200-182.dialup.adsl.anteldata.net.uy) (Ping timeout: 248 seconds)
2025-06-24 00:04:37 +0000trickard(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 00:04:50 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 00:06:12 +0000Nosrep(~jimothy@user/nosrep) Nosrep
2025-06-24 00:06:24 +0000finsternis(~X@23.226.237.192) (Read error: Connection reset by peer)
2025-06-24 00:07:36 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 00:12:37 +0000 <Nosrep> anyone notice IntMap being noticeably slower than HashMap Int?
2025-06-24 00:13:14 +0000 <Nosrep> for context i've got a very large (maxes out at a million but i dont actually know how big it is) being added (and removed from if it hits a million) and looked up constantly
2025-06-24 00:13:25 +0000 <Nosrep> very large map*
2025-06-24 00:13:34 +0000 <Nosrep> seems weird because i'd expect intmap to be more specialized
2025-06-24 00:14:18 +0000 <EvanR> noticeably slower
2025-06-24 00:14:22 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-06-24 00:14:51 +0000 <EvanR> in the sense that 999999 is noticably less than a million, or what
2025-06-24 00:15:22 +0000 <EvanR> 10% slower?
2025-06-24 00:16:22 +0000 <EvanR> the cool part of IntMap is the theoretical constant costs
2025-06-24 00:17:19 +0000 <Nosrep> uhhh
2025-06-24 00:17:22 +0000 <Nosrep> let me check
2025-06-24 00:17:54 +0000 <Nosrep> 16% slower if using the hashmap int as a baseline
2025-06-24 00:18:56 +0000humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-06-24 00:19:01 +0000 <geekosaur> I've heard that claim a few times and I think the docs warn of it as well. IntMap is actually a different tree structure as well as having the key specialization, and for some (many?) use cases it may work out slower; you're supposed to benchmark both as needed
2025-06-24 00:19:28 +0000 <geekosaur> oh, yuou're comparing to HashMap. IntMap is a fingertree. hashing will usually be faster
2025-06-24 00:19:59 +0000 <geekosaur> you use IntMap when you want things a tree can do but hashes can't, specifically ordered access
2025-06-24 00:20:46 +0000 <Nosrep> oh ok
2025-06-24 00:22:11 +0000 <Nosrep> i guess ill stick with hashmaps then ordered isnt really a factor
2025-06-24 00:22:26 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich
2025-06-24 00:23:10 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) bitdex
2025-06-24 00:25:40 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 00:26:06 +0000machinedgod(~machinedg@d108-173-18-100.abhsia.telus.net) (Ping timeout: 252 seconds)
2025-06-24 00:30:44 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 272 seconds)
2025-06-24 00:41:27 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 00:46:09 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-06-24 00:46:41 +0000kadobanana(~mud@user/kadoban) kadoban
2025-06-24 00:47:13 +0000mud(~mud@user/kadoban) (Ping timeout: 248 seconds)
2025-06-24 00:48:35 +0000RageD(~unk@user/RageD) RageD
2025-06-24 00:53:09 +0000xff0x(~xff0x@2405:6580:b080:900:55ec:c9f:e8b1:7eb5) (Ping timeout: 252 seconds)
2025-06-24 00:55:44 +0000RageD(~unk@user/RageD) ()
2025-06-24 00:56:10 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 00:56:24 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 00:57:01 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 00:59:13 +0000sam113101(~sam@modemcable200.189-202-24.mc.videotron.ca) (Ping timeout: 252 seconds)
2025-06-24 01:00:34 +0000RageD(~unk@user/RageD) RageD
2025-06-24 01:00:46 +0000RageD(~unk@user/RageD) (Client Quit)
2025-06-24 01:02:09 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds)
2025-06-24 01:02:11 +0000 <EvanR> .oO( patricia / radix tree is also a finger tree ?)
2025-06-24 01:03:00 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 01:03:12 +0000mud(~mud@user/kadoban) kadoban
2025-06-24 01:03:45 +0000kadobanana(~mud@user/kadoban) (Ping timeout: 276 seconds)
2025-06-24 01:05:04 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 01:06:07 +0000RageD(~unk@user/RageD) RageD
2025-06-24 01:06:46 +0000RageD(~unk@user/RageD) (Client Quit)
2025-06-24 01:07:58 +0000RageD(~unk@2600:8800:b4c0:1c:7125:4d80:491c:152a)
2025-06-24 01:08:34 +0000RageD(~unk@2600:8800:b4c0:1c:7125:4d80:491c:152a) (Client Quit)
2025-06-24 01:09:10 +0000RageD(~unk@user/RageD) RageD
2025-06-24 01:10:50 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 252 seconds)
2025-06-24 01:12:49 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 01:14:48 +0000humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 276 seconds)
2025-06-24 01:15:29 +0000RageD(~unk@user/RageD) (Ping timeout: 248 seconds)
2025-06-24 01:17:48 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-06-24 01:18:38 +0000FANTOM(~fantom@33be818f.skybroadband.com) (Ping timeout: 244 seconds)
2025-06-24 01:19:21 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 276 seconds)
2025-06-24 01:23:00 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Read error: Connection reset by peer)
2025-06-24 01:25:09 +0000mange(~mange@user/mange) mange
2025-06-24 01:27:34 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) (Ping timeout: 244 seconds)
2025-06-24 01:28:38 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 01:28:58 +0000FANTOM(~fantom@33be818f.skybroadband.com)
2025-06-24 01:29:49 +0000FANTOM(~fantom@33be818f.skybroadband.com) (Read error: No route to host)
2025-06-24 01:33:48 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds)
2025-06-24 01:35:04 +0000FANTOM(~fantom@33be818f.skybroadband.com)
2025-06-24 01:35:30 +0000mud(~mud@user/kadoban) (Ping timeout: 252 seconds)
2025-06-24 01:35:35 +0000kadobanana(~mud@user/kadoban) kadoban
2025-06-24 01:39:33 +0000 <int-e> EvanR: yeah that was wrong
2025-06-24 01:41:03 +0000 <int-e> tries do have digits though
2025-06-24 01:44:07 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 01:50:37 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 01:50:41 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-06-24 01:51:26 +0000xff0x(~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp)
2025-06-24 01:54:58 +0000prdak(~Thunderbi@user/prdak) prdak
2025-06-24 01:58:21 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich
2025-06-24 01:59:13 +0000prdak(~Thunderbi@user/prdak) (Ping timeout: 248 seconds)
2025-06-24 02:02:09 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 02:07:27 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds)
2025-06-24 02:11:33 +0000ft(~ft@p3e9bcab0.dip0.t-ipconnect.de) (Ping timeout: 248 seconds)
2025-06-24 02:13:24 +0000ft(~ft@p3e9bc4ba.dip0.t-ipconnect.de) ft
2025-06-24 02:17:57 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 02:23:19 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 245 seconds)
2025-06-24 02:23:29 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 272 seconds)
2025-06-24 02:23:50 +0000ljdarj(~Thunderbi@user/ljdarj) (Ping timeout: 265 seconds)
2025-06-24 02:29:19 +0000OftenFaded(~OftenFade@user/tisktisk) (Quit: Client closed)
2025-06-24 02:33:45 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 02:34:38 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr) (Read error: Connection reset by peer)
2025-06-24 02:35:04 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 02:35:17 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 02:37:58 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr)
2025-06-24 02:38:32 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds)
2025-06-24 02:49:17 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 02:54:54 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds)
2025-06-24 02:56:17 +0000tabaqui(~tabaqui@167.71.80.236) (Ping timeout: 248 seconds)
2025-06-24 03:05:02 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 03:10:09 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-06-24 03:16:21 +0000aforemny_(~aforemny@2001:9e8:6cc0:300:cecc:24db:2c1b:968d) aforemny
2025-06-24 03:18:00 +0000aforemny(~aforemny@i577B12AC.versanet.de) (Ping timeout: 268 seconds)
2025-06-24 03:18:27 +0000trickard_trickard
2025-06-24 03:20:51 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 03:25:03 +0000lol_(~lol@2603:3016:1e01:b960:bc51:80a4:4f7b:b6fb)
2025-06-24 03:27:38 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds)
2025-06-24 03:29:16 +0000jcarpenter2(~lol@2603:3016:1e01:b960:99e3:ef0a:3cb8:6763) (Ping timeout: 276 seconds)
2025-06-24 03:30:49 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 03:31:13 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 03:33:36 +0000trickard(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 03:33:50 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 03:36:30 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds)
2025-06-24 03:40:06 +0000califax(~califax@user/califx) (Remote host closed the connection)
2025-06-24 03:40:24 +0000califax(~califax@user/califx) califx
2025-06-24 03:42:21 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 276 seconds)
2025-06-24 03:43:25 +0000chiselfuse(~chiselfus@user/chiselfuse) (Remote host closed the connection)
2025-06-24 03:44:39 +0000chiselfuse(~chiselfus@user/chiselfuse) chiselfuse
2025-06-24 03:45:19 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Read error: Connection reset by peer)
2025-06-24 03:45:23 +0000sim590(~simon@2001:18c0:a82:2400::9fb) (Quit: WeeChat 4.6.3)
2025-06-24 03:47:01 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 03:49:16 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich
2025-06-24 03:50:29 +0000humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-06-24 03:52:33 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds)
2025-06-24 03:58:07 +0000humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection)
2025-06-24 03:58:22 +0000Bad_K4rMa(uid452915@user/Bad-K4rMa:28376) Bad_K4rMa
2025-06-24 03:59:32 +0000dutchie(~dutchie@user/dutchie) (Ping timeout: 265 seconds)
2025-06-24 03:59:51 +0000dutchie(~dutchie@user/dutchie) dutchie
2025-06-24 04:00:41 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 04:00:56 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 04:02:47 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 04:07:29 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds)
2025-06-24 04:10:10 +0000lol_jcarpenter2
2025-06-24 04:11:18 +0000img(~img@user/img) (Quit: ZNC 1.8.2 - https://znc.in)
2025-06-24 04:12:39 +0000img(~img@user/img) img
2025-06-24 04:18:34 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 04:23:20 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-06-24 04:27:46 +0000prdak(~Thunderbi@user/prdak) prdak
2025-06-24 04:33:23 +0000Bad_K4rMa(uid452915@user/Bad-K4rMa:28376) ()
2025-06-24 04:34:21 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 04:37:15 +0000prdak(~Thunderbi@user/prdak) (Ping timeout: 252 seconds)
2025-06-24 04:37:44 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 272 seconds)
2025-06-24 04:38:48 +0000poscat0x04(~poscat@user/poscat) (Remote host closed the connection)
2025-06-24 04:39:17 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-06-24 04:41:59 +0000poscat(~poscat@user/poscat) poscat
2025-06-24 04:50:09 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 04:50:16 +0000michalz(~michalz@185.246.207.201)
2025-06-24 04:52:44 +0000puke(~puke@user/puke) (Quit: puke)
2025-06-24 04:54:18 +0000puke(~puke@user/puke) puke
2025-06-24 04:55:29 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 272 seconds)
2025-06-24 04:58:40 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich
2025-06-24 05:05:55 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 05:07:39 +0000Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2025-06-24 05:10:09 +0000Nosrep(~jimothy@user/nosrep) (Ping timeout: 248 seconds)
2025-06-24 05:17:54 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds)
2025-06-24 05:21:13 +0000soverysour(~soverysou@84.232.150.142)
2025-06-24 05:21:14 +0000soverysour(~soverysou@84.232.150.142) (Changing host)
2025-06-24 05:21:14 +0000soverysour(~soverysou@user/soverysour) soverysour
2025-06-24 05:28:48 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 05:31:29 +0000soverysour(~soverysou@user/soverysour) (Ping timeout: 248 seconds)
2025-06-24 05:33:47 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds)
2025-06-24 05:37:55 +0000haritz(~hrtz@user/haritz) (Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in)
2025-06-24 05:46:56 +0000prdak(~Thunderbi@user/prdak) prdak
2025-06-24 05:51:13 +0000prdak(~Thunderbi@user/prdak) (Ping timeout: 248 seconds)
2025-06-24 05:57:04 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 245 seconds)
2025-06-24 06:05:25 +0000ystael(~ystael@user/ystael) (Ping timeout: 260 seconds)
2025-06-24 06:20:26 +0000shaeto(~Shaeto@94.25.234.84)
2025-06-24 06:22:41 +0000 <[exa]> is there a common pattern/recommendation for the "usual" concurrent haskell on how to communicate with a worker thread that is processing&answering requests asynchronously?
2025-06-24 06:23:16 +0000 <[exa]> I thought I'd make some kind of a Chan as an input, and people would also push in an empty MVar (or such) into the request as a channel for the answer.
2025-06-24 06:31:44 +0000 <Leary> [exa]: I have this lying around: https://gist.github.com/LSLeary/e139dfe025e2ed5a47040106b321dbc3
2025-06-24 06:32:40 +0000 <[exa]> Leary: you're best, thanks!
2025-06-24 06:33:08 +0000 <[exa]> any particular reason for choosing TMVar for sending the results back?
2025-06-24 06:34:19 +0000 <[exa]> (I assume that's for stm capability + put semantics?)
2025-06-24 06:35:05 +0000 <Leary> Just so you can leverage STM when waiting on multiple results. You can replace it with `MVar` and `Chan` if you prefer.
2025-06-24 06:35:52 +0000 <[exa]> ok perfect, thanks for confirm!
2025-06-24 06:51:19 +0000soverysour(~soverysou@84.232.150.142) soverysour
2025-06-24 06:51:19 +0000soverysour(~soverysou@84.232.150.142) (Changing host)
2025-06-24 06:51:19 +0000soverysour(~soverysou@user/soverysour) soverysour
2025-06-24 06:54:50 +0000prdak(~Thunderbi@user/prdak) prdak
2025-06-24 06:55:36 +0000 <[exa]> Leary: the "try work" part is underrated
2025-06-24 06:56:18 +0000hsw_hsw
2025-06-24 06:56:48 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 07:00:01 +0000caconym7(~caconym@user/caconym) (Quit: bye)
2025-06-24 07:00:41 +0000caconym7(~caconym@user/caconym) caconym
2025-06-24 07:01:45 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds)
2025-06-24 07:02:07 +0000lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4)
2025-06-24 07:03:53 +0000prdak(~Thunderbi@user/prdak) (Read error: Connection reset by peer)
2025-06-24 07:04:39 +0000CiaoSen(~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) CiaoSen
2025-06-24 07:06:27 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich
2025-06-24 07:08:29 +0000ljdarj(~Thunderbi@user/ljdarj) ljdarj
2025-06-24 07:21:27 +0000Square2(~Square@user/square) Square
2025-06-24 07:22:27 +0000Katarushisu(~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net) Katarushisu
2025-06-24 07:24:28 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 265 seconds)
2025-06-24 07:27:29 +0000acidjnk(~acidjnk@p200300d6e70b6636cdb308402753529f.dip0.t-ipconnect.de) acidjnk
2025-06-24 07:29:41 +0000trickard_trickard
2025-06-24 07:33:47 +0000sord937(~sord937@gateway/tor-sasl/sord937) sord937
2025-06-24 07:35:04 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 07:35:43 +0000 <tomsmeding> magic_rb: this Thursday I'll be here, sorry https://conf.researchr.org/home/dfdm-2025
2025-06-24 07:36:01 +0000 <tomsmeding> same city though
2025-06-24 07:37:19 +0000 <tomsmeding> magic_rb: what time and where? If it's close by I may sneak out (if you want to send that privately, my email is here https://tomsmeding.com/ )
2025-06-24 07:37:29 +0000soverysour(~soverysou@user/soverysour) (Ping timeout: 245 seconds)
2025-06-24 07:40:29 +0000emmanuelux(~emmanuelu@user/emmanuelux) (Quit: Leaving)
2025-06-24 07:42:50 +0000 <tomsmeding> magic_rb: for similar results as monochrom's example but a little more complex, expand the LogicT newtype in the type of embedLogicT https://hackage-content.haskell.org/package/logict-0.8.2.0/docs/Control-Monad-Logic.html#v:embedLo…
2025-06-24 07:43:36 +0000 <tomsmeding> the name is also not too shabby for such an example ("embedLogicT")
2025-06-24 07:48:09 +0000merijn(~merijn@77.242.116.146) merijn
2025-06-24 07:50:10 +0000alexherbo2(~alexherbo@2a02-8440-3605-68d5-9ce1-6c41-bae0-8a0f.rev.sfr.net) alexherbo2
2025-06-24 07:51:57 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 276 seconds)
2025-06-24 07:52:13 +0000 <[exa]> Leary: still kinda wondering about the design space; why not send through a response-sending function instead of the TMVar?
2025-06-24 07:55:25 +0000 <tomsmeding> [exa]: I guess that depends on whether you will be making use of that additional flexibility
2025-06-24 07:55:47 +0000 <[exa]> yeah, currently wondering what would that additional flexibility be
2025-06-24 07:55:49 +0000 <[exa]> :D
2025-06-24 07:56:07 +0000machinedgod(~machinedg@d108-173-18-100.abhsia.telus.net) machinedgod
2025-06-24 07:56:28 +0000 <tomsmeding> what monad would that response-sending function run in? If STM then as a consumer you're limited to STM stuff, i.e. you can't send the response onto the network immediately
2025-06-24 07:56:46 +0000 <tomsmeding> If IO, then you can't use it as part of a larger STM transaction, like Leary's usecase of waiting on multiple results simultaneously
2025-06-24 07:57:14 +0000prdak(~Thunderbi@user/prdak) prdak
2025-06-24 07:59:11 +0000AlexNoo_AlexNoo
2025-06-24 08:00:33 +0000 <[exa]> ha, multiple results, good
2025-06-24 08:00:35 +0000 <[exa]> didn't notice that
2025-06-24 08:01:13 +0000 <[exa]> anyway there's probably scotty on the other side so I assume I might need to pull in ActionT, which ain't super cool
2025-06-24 08:01:14 +0000trickard(~trickard@cpe-52-98-47-163.wireline.com.au) (Ping timeout: 245 seconds)
2025-06-24 08:01:16 +0000 <[exa]> MVar it is.
2025-06-24 08:01:51 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 08:02:18 +0000[exa]suddenly becomes ultrafunctional
2025-06-24 08:02:26 +0000[exa]will send through a function that sets the mvar
2025-06-24 08:02:37 +0000[exa]hides back to his cellar
2025-06-24 08:04:24 +0000 <tomsmeding> [exa]: so you choose the IO option? :P
2025-06-24 08:05:20 +0000 <tomsmeding> [exa]: ActionT is just a ReaderT, so if it's ActionT IO then you can unlift it to normal IO
2025-06-24 08:05:35 +0000 <[exa]> like, the worker is a totally IO so doesn't make much sense to do anything else in there
2025-06-24 08:05:51 +0000 <tomsmeding> make sense
2025-06-24 08:05:51 +0000 <[exa]> on the other side folks have the choice to adapt it
2025-06-24 08:06:03 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 08:06:22 +0000ft(~ft@p3e9bc4ba.dip0.t-ipconnect.de) (Quit: leaving)
2025-06-24 08:06:26 +0000 <tomsmeding> well it means that you can't do the simultaneous STM waiting trick
2025-06-24 08:06:33 +0000 <tomsmeding> but if you don't need that then it doesn't matter
2025-06-24 08:06:36 +0000 <[exa]> yeah that I don't need
2025-06-24 08:19:32 +0000prdak(~Thunderbi@user/prdak) (Quit: prdak)
2025-06-24 08:20:42 +0000soverysour(~soverysou@84.232.150.142)
2025-06-24 08:20:43 +0000soverysour(~soverysou@84.232.150.142) (Changing host)
2025-06-24 08:20:43 +0000soverysour(~soverysou@user/soverysour) soverysour
2025-06-24 08:23:52 +0000alexherbo2(~alexherbo@2a02-8440-3605-68d5-9ce1-6c41-bae0-8a0f.rev.sfr.net) (Remote host closed the connection)
2025-06-24 08:24:20 +0000alexherbo2(~alexherbo@2a02-8440-3605-68d5-9ce1-6c41-bae0-8a0f.rev.sfr.net) alexherbo2
2025-06-24 08:25:21 +0000merijn(~merijn@77.242.116.146) (Ping timeout: 248 seconds)
2025-06-24 08:29:05 +0000merijn(~merijn@77.242.116.146) merijn
2025-06-24 08:30:00 +0000alexherbo2(~alexherbo@2a02-8440-3605-68d5-9ce1-6c41-bae0-8a0f.rev.sfr.net) (Remote host closed the connection)
2025-06-24 08:32:29 +0000trickard_trickard
2025-06-24 08:34:25 +0000soverysour(~soverysou@user/soverysour) (Ping timeout: 248 seconds)
2025-06-24 08:40:03 +0000jcarpenter2(~lol@2603:3016:1e01:b960:bc51:80a4:4f7b:b6fb) (Ping timeout: 276 seconds)
2025-06-24 08:41:32 +0000jcarpenter2(~lol@96.78.87.197)
2025-06-24 08:45:09 +0000merijn(~merijn@77.242.116.146) (Ping timeout: 248 seconds)
2025-06-24 08:49:22 +0000AlexZenon(~alzenon@178.34.163.228) (Quit: ;-)
2025-06-24 08:51:15 +0000AlexNoo(~AlexNoo@178.34.163.228) (Quit: Leaving)
2025-06-24 08:56:03 +0000merijn(~merijn@77.242.116.146) merijn
2025-06-24 08:58:00 +0000chele(~chele@user/chele) chele
2025-06-24 09:10:36 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 276 seconds)
2025-06-24 09:14:21 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 09:14:58 +0000kuribas(~user@ptr-17d51eov50enbadnzpg.18120a2.ip6.access.telenet.be) kuribas
2025-06-24 09:15:15 +0000 <Leary> [exa]: You could do that, but I don't see any nice way to deal with the exceptions. The `T/MVar` approach ensures they go precisely where they should.
2025-06-24 09:29:22 +0000AlexNoo(~AlexNoo@178.34.163.228)
2025-06-24 09:37:50 +0000__monty__(~toonn@user/toonn) toonn
2025-06-24 09:40:31 +0000AlexZenon(~alzenon@178.34.163.228)
2025-06-24 09:50:06 +0000dhil(~dhil@5.151.29.138) dhil
2025-06-24 09:51:28 +0000acidjnk(~acidjnk@p200300d6e70b6636cdb308402753529f.dip0.t-ipconnect.de) (Ping timeout: 276 seconds)
2025-06-24 09:55:46 +0000tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz)
2025-06-24 10:00:16 +0000trickard(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 10:00:29 +0000trickard(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 10:21:39 +0000xff0x(~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) (Ping timeout: 245 seconds)
2025-06-24 10:22:06 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 276 seconds)
2025-06-24 10:22:06 +0000lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) (Ping timeout: 276 seconds)
2025-06-24 10:24:29 +0000merijn(~merijn@77.242.116.146) (Ping timeout: 252 seconds)
2025-06-24 10:29:00 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr) (Read error: Connection reset by peer)
2025-06-24 10:31:10 +0000acidjnk(~acidjnk@p200300d6e70b66369d18a7843707d3cd.dip0.t-ipconnect.de) acidjnk
2025-06-24 10:32:11 +0000Lord_of_Life_(~Lord@user/lord-of-life/x-2819915) Lord_of_Life
2025-06-24 10:32:19 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr)
2025-06-24 10:33:03 +0000Lord_of_Life(~Lord@user/lord-of-life/x-2819915) (Ping timeout: 272 seconds)
2025-06-24 10:33:34 +0000Lord_of_Life_Lord_of_Life
2025-06-24 10:34:09 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 10:34:23 +0000trickard(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 10:34:38 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 10:37:41 +0000merijn(~merijn@77.242.116.146) merijn
2025-06-24 10:41:40 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 252 seconds)
2025-06-24 10:44:25 +0000merijn(~merijn@77.242.116.146) (Ping timeout: 252 seconds)
2025-06-24 10:45:31 +0000lianhuayu(~lianhuayu@81.28.13.99)
2025-06-24 10:45:40 +0000lianhuayu(~lianhuayu@81.28.13.99) (Client Quit)
2025-06-24 10:52:22 +0000merijn(~merijn@77.242.116.146) merijn
2025-06-24 10:55:26 +0000humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-06-24 10:55:39 +0000humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Read error: Connection reset by peer)
2025-06-24 10:57:17 +0000lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4)
2025-06-24 10:58:23 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 10:59:22 +0000trickard_trickard
2025-06-24 11:00:05 +0000caconym7(~caconym@user/caconym) (Quit: bye)
2025-06-24 11:01:37 +0000jespada(~jespada@r179-25-200-182.dialup.adsl.anteldata.net.uy) jespada
2025-06-24 11:02:18 +0000caconym7(~caconym@user/caconym) caconym
2025-06-24 11:07:12 +0000 <[exa]> Leary: ha, good point
2025-06-24 11:07:14 +0000 <[exa]> thanks
2025-06-24 11:07:33 +0000nacation(~m-3l4s76@user/nacation) (Ping timeout: 248 seconds)
2025-06-24 11:13:57 +0000nacation(~m-3l4s76@user/nacation) nacation
2025-06-24 11:14:04 +0000trickard(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 11:16:46 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 11:19:57 +0000jespada(~jespada@r179-25-200-182.dialup.adsl.anteldata.net.uy) (Ping timeout: 276 seconds)
2025-06-24 11:22:14 +0000xff0x(~xff0x@2405:6580:b080:900:14cc:cd6:9b7c:5d0)
2025-06-24 11:22:33 +0000jespada(~jespada@r179-24-17-8.dialup.adsl.anteldata.net.uy) jespada
2025-06-24 11:28:52 +0000tabaqui(~tabaqui@167.71.80.236) tabaqui
2025-06-24 11:31:55 +0000divya-(divya@140.238.251.170) (Ping timeout: 244 seconds)
2025-06-24 11:44:59 +0000ljdarj(~Thunderbi@user/ljdarj) (Ping timeout: 265 seconds)
2025-06-24 11:46:51 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Read error: Connection reset by peer)
2025-06-24 11:51:20 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 12:10:21 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Read error: Connection reset by peer)
2025-06-24 12:11:48 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 12:18:47 +0000divya(~divya@140.238.251.170) divya
2025-06-24 12:20:17 +0000haritz(~hrtz@2a01:4b00:bc2e:7000:d5af:a266:ca31:5ef8)
2025-06-24 12:20:18 +0000haritz(~hrtz@2a01:4b00:bc2e:7000:d5af:a266:ca31:5ef8) (Changing host)
2025-06-24 12:20:18 +0000haritz(~hrtz@user/haritz) haritz
2025-06-24 12:20:35 +0000haritz(~hrtz@user/haritz) (Remote host closed the connection)
2025-06-24 12:20:35 +0000Unicorn_Princess(~Unicorn_P@user/Unicorn-Princess/x-3540542) (Remote host closed the connection)
2025-06-24 12:21:07 +0000haritz(~hrtz@2a01:4b00:bc2e:7000:d5af:a266:ca31:5ef8)
2025-06-24 12:21:07 +0000haritz(~hrtz@2a01:4b00:bc2e:7000:d5af:a266:ca31:5ef8) (Changing host)
2025-06-24 12:21:07 +0000haritz(~hrtz@user/haritz) haritz
2025-06-24 12:26:05 +0000ljdarj(~Thunderbi@user/ljdarj) ljdarj
2025-06-24 12:27:12 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 12:27:26 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 12:29:19 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 12:31:07 +0000shaeto(~Shaeto@94.25.234.84) (Quit: WeeChat 4.1.1)
2025-06-24 12:40:51 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Read error: Connection reset by peer)
2025-06-24 12:46:29 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 12:48:43 +0000ttybitnik(~ttybitnik@user/wolper) ttybitnik
2025-06-24 13:02:55 +0000ubert(~Thunderbi@2a02:8109:abb3:7000:85d8:5197:27ae:e46d) ubert
2025-06-24 13:10:18 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 13:10:32 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 13:18:17 +0000shaeto(~Shaeto@94.25.234.84)
2025-06-24 13:21:21 +0000piele(~piele@eiseth.creativeserver.net) (Ping timeout: 248 seconds)
2025-06-24 13:22:42 +0000shaeto(~Shaeto@94.25.234.84) (Ping timeout: 244 seconds)
2025-06-24 13:24:35 +0000shaeto(~Shaeto@94.25.234.84)
2025-06-24 13:27:55 +0000piele(~piele@eiseth.creativeserver.net) piele
2025-06-24 13:41:14 +0000gmg(~user@user/gehmehgeh) (Ping timeout: 244 seconds)
2025-06-24 13:51:08 +0000shaeto(~Shaeto@94.25.234.84) (Ping timeout: 265 seconds)
2025-06-24 13:56:30 +0000shaeto(~Shaeto@94.25.234.84)
2025-06-24 13:59:00 +0000jmcantrell(~weechat@user/jmcantrell) jmcantrell
2025-06-24 14:01:01 +0000ystael(~ystael@user/ystael) ystael
2025-06-24 14:03:13 +0000CiaoSen(~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 265 seconds)
2025-06-24 14:07:48 +0000shaeto(~Shaeto@94.25.234.84) (Ping timeout: 252 seconds)
2025-06-24 14:13:57 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 14:14:09 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 276 seconds)
2025-06-24 14:14:10 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 14:14:32 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 14:16:06 +0000jmcantrell(~weechat@user/jmcantrell) (Ping timeout: 276 seconds)
2025-06-24 14:18:03 +0000mange(~mange@user/mange) (Quit: Zzz...)
2025-06-24 14:19:45 +0000shaeto(~Shaeto@94.25.234.84)
2025-06-24 14:20:08 +0000gmg(~user@user/gehmehgeh) gehmehgeh
2025-06-24 14:21:53 +0000gp(~gp@net-188-217-43-7.cust.vodafonedsl.it)
2025-06-24 14:24:17 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 248 seconds)
2025-06-24 14:25:12 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 14:26:52 +0000pounce(~pounce@user/cute/pounce) (WeeChat 4.6.3)
2025-06-24 14:28:45 +0000weary-traveler(~user@user/user363627) user363627
2025-06-24 14:32:30 +0000cawfee(root@2401:c080:3800:3460::babe)
2025-06-24 14:33:39 +0000tabaqui(~tabaqui@167.71.80.236) (Ping timeout: 276 seconds)
2025-06-24 14:34:34 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 245 seconds)
2025-06-24 14:35:20 +0000ttybitnik(~ttybitnik@user/wolper) (Quit: Fading out...)
2025-06-24 14:38:57 +0000Putonlalla(~Putonlall@it-cyan.it.jyu.fi) (Ping timeout: 252 seconds)
2025-06-24 14:47:04 +0000sam113101(~sam@modemcable200.189-202-24.mc.videotron.ca) sam113101
2025-06-24 14:53:04 +0000Putonlalla(~Putonlall@it-cyan.it.jyu.fi) Tuplanolla
2025-06-24 14:55:45 +0000gp(~gp@net-188-217-43-7.cust.vodafonedsl.it) (Ping timeout: 248 seconds)
2025-06-24 15:04:25 +0000Square2(~Square@user/square) (Ping timeout: 260 seconds)
2025-06-24 15:08:20 +0000trickard_trickard
2025-06-24 15:09:43 +0000lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) (Quit: WeeChat 4.5.2)
2025-06-24 15:22:04 +0000weary-traveler(~user@user/user363627) (Read error: Connection reset by peer)
2025-06-24 15:22:20 +0000weary-traveler(~user@user/user363627) user363627
2025-06-24 15:23:20 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 15:27:10 +0000weary-traveler(~user@user/user363627) (Remote host closed the connection)
2025-06-24 15:29:08 +0000weary-traveler(~user@user/user363627) user363627
2025-06-24 15:30:36 +0000acidjnk(~acidjnk@p200300d6e70b66369d18a7843707d3cd.dip0.t-ipconnect.de) (Ping timeout: 268 seconds)
2025-06-24 15:31:16 +0000trickard(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 15:31:29 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 15:37:21 +0000j1n37(~j1n37@user/j1n37) j1n37
2025-06-24 15:38:39 +0000j1n37-(~j1n37@user/j1n37) (Ping timeout: 276 seconds)
2025-06-24 15:41:15 +0000SlackCoder(~SlackCode@64-94-63-8.ip.weststar.net.ky) SlackCoder
2025-06-24 15:43:30 +0000ljdarj1(~Thunderbi@user/ljdarj) ljdarj
2025-06-24 15:43:30 +0000ljdarj(~Thunderbi@user/ljdarj) (Ping timeout: 260 seconds)
2025-06-24 15:43:30 +0000ljdarj1ljdarj
2025-06-24 15:49:28 +0000soverysour(~soverysou@84.232.150.142)
2025-06-24 15:49:28 +0000soverysour(~soverysou@84.232.150.142) (Changing host)
2025-06-24 15:49:28 +0000soverysour(~soverysou@user/soverysour) soverysour
2025-06-24 15:49:55 +0000merijn(~merijn@77.242.116.146) (Ping timeout: 260 seconds)
2025-06-24 15:54:06 +0000merijn(~merijn@77.242.116.146) merijn
2025-06-24 15:58:57 +0000weary-traveler(~user@user/user363627) (Remote host closed the connection)
2025-06-24 16:00:40 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 252 seconds)
2025-06-24 16:01:35 +0000humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-06-24 16:03:21 +0000soverysour(~soverysou@user/soverysour) (Ping timeout: 276 seconds)
2025-06-24 16:06:41 +0000soverysour(~soverysou@84.232.150.142)
2025-06-24 16:06:41 +0000soverysour(~soverysou@84.232.150.142) (Changing host)
2025-06-24 16:06:41 +0000soverysour(~soverysou@user/soverysour) soverysour
2025-06-24 16:07:15 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 16:12:02 +0000nek0(~nek0@user/nek0) (Quit: The Lounge - https://thelounge.chat)
2025-06-24 16:12:42 +0000Nosrep(~jimothy@user/nosrep) Nosrep
2025-06-24 16:16:35 +0000comerijn(~merijn@77.242.116.146) merijn
2025-06-24 16:17:39 +0000merijn(~merijn@77.242.116.146) (Ping timeout: 276 seconds)
2025-06-24 16:20:13 +0000acidjnk(~acidjnk@p200300d6e70b6633447f0ca591f12fea.dip0.t-ipconnect.de) acidjnk
2025-06-24 16:21:16 +0000comerijn(~merijn@77.242.116.146) (Ping timeout: 252 seconds)
2025-06-24 16:27:15 +0000soverysour(~soverysou@user/soverysour) (Ping timeout: 260 seconds)
2025-06-24 16:29:10 +0000soverysour(~soverysou@84.232.150.142)
2025-06-24 16:29:11 +0000soverysour(~soverysou@84.232.150.142) (Changing host)
2025-06-24 16:29:11 +0000soverysour(~soverysou@user/soverysour) soverysour
2025-06-24 16:29:37 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 248 seconds)
2025-06-24 16:33:45 +0000pointlessslippe1(~pointless@62.106.85.17) (Read error: Connection reset by peer)
2025-06-24 16:35:28 +0000poscat(~poscat@user/poscat) (Ping timeout: 265 seconds)
2025-06-24 16:36:17 +0000hseg(~gesh@46.120.20.122)
2025-06-24 16:36:33 +0000pointlessslippe1(~pointless@62.106.85.17) pointlessslippe1
2025-06-24 16:38:05 +0000shaeto(~Shaeto@94.25.234.84) (Quit: WeeChat 4.1.1)
2025-06-24 16:38:19 +0000shaeto(~Shaeto@94.25.234.84)
2025-06-24 16:39:56 +0000poscat(~poscat@user/poscat) poscat
2025-06-24 16:45:11 +0000pavonia(~user@user/siracusa) (Quit: Bye!)
2025-06-24 16:52:05 +0000trickard_trickard
2025-06-24 16:52:49 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr) (Remote host closed the connection)
2025-06-24 16:53:12 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr)
2025-06-24 16:58:05 +0000wootehfoot(~wootehfoo@user/wootehfoot) wootehfoot
2025-06-24 17:00:52 +0000ubert(~Thunderbi@2a02:8109:abb3:7000:85d8:5197:27ae:e46d) (Remote host closed the connection)
2025-06-24 17:04:15 +0000tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net)
2025-06-24 17:05:37 +0000wootehfoot(~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer)
2025-06-24 17:05:52 +0000ft(~ft@p3e9bc4ba.dip0.t-ipconnect.de) ft
2025-06-24 17:09:19 +0000cawfee(root@2401:c080:3800:3460::babe) (Quit: WeeChat 4.6.3)
2025-06-24 17:11:44 +0000ljdarj(~Thunderbi@user/ljdarj) (Ping timeout: 268 seconds)
2025-06-24 17:12:06 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 17:12:33 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich
2025-06-24 17:17:27 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds)
2025-06-24 17:19:46 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 268 seconds)
2025-06-24 17:24:34 +0000ttybitnik(~ttybitnik@user/wolper) ttybitnik
2025-06-24 17:27:46 +0000soverysour(~soverysou@user/soverysour) (Ping timeout: 276 seconds)
2025-06-24 17:27:53 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 17:29:46 +0000soverysour(~soverysou@user/soverysour) soverysour
2025-06-24 17:30:49 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 245 seconds)
2025-06-24 17:31:45 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 17:32:37 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-06-24 17:41:12 +0000soverysour(~soverysou@user/soverysour) (Ping timeout: 265 seconds)
2025-06-24 17:42:17 +0000SlackCoder(~SlackCode@64-94-63-8.ip.weststar.net.ky) (Quit: Leaving)
2025-06-24 17:43:41 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 17:51:15 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds)
2025-06-24 17:55:47 +0000enikar(~enikar@user/enikar) (Quit: WeeChat 3.0)
2025-06-24 18:01:44 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 18:05:09 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 248 seconds)
2025-06-24 18:05:47 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 18:06:49 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-06-24 18:07:43 +0000stilgart(~Christoph@chezlefab.net) (Remote host closed the connection)
2025-06-24 18:17:27 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 18:17:52 +0000OftenFaded(~OftenFade@user/tisktisk) OftenFaded
2025-06-24 18:22:34 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-06-24 18:28:30 +0000humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Quit: Leaving...)
2025-06-24 18:33:14 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 18:36:40 +0000ira-peach(~ira-peach@c-73-88-12-87.hsd1.mn.comcast.net)
2025-06-24 18:36:52 +0000deriamis(nobody@2600:3c0a::f03c:95ff:fee8:f335) (Ping timeout: 252 seconds)
2025-06-24 18:38:02 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-06-24 18:38:03 +0000kuribas(~user@ptr-17d51eov50enbadnzpg.18120a2.ip6.access.telenet.be) (Ping timeout: 276 seconds)
2025-06-24 18:38:15 +0000deriamis(nobody@2600:3c0a::f03c:95ff:fee8:f335) deriamis
2025-06-24 18:40:25 +0000tabaqui(~tabaqui@167.71.80.236) tabaqui
2025-06-24 18:40:50 +0000caubert(~caubert@user/caubert) caubert
2025-06-24 18:42:52 +0000chele(~chele@user/chele) (Remote host closed the connection)
2025-06-24 18:43:14 +0000hseg(~gesh@46.120.20.122) (Ping timeout: 272 seconds)
2025-06-24 18:43:58 +0000cawfee(root@2401:c080:3800:3460::babe)
2025-06-24 18:44:55 +0000target_i(~target_i@user/target-i/x-6023099) target_i
2025-06-24 18:47:04 +0000caubert(~caubert@user/caubert) (Ping timeout: 260 seconds)
2025-06-24 18:48:18 +0000SlackCoder(~SlackCode@64-94-63-8.ip.weststar.net.ky) SlackCoder
2025-06-24 18:49:01 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 18:49:49 +0000rvalue-(~rvalue@about/hackers/rvalue) rvalue
2025-06-24 18:50:29 +0000rvalue(~rvalue@about/hackers/rvalue) (Ping timeout: 248 seconds)
2025-06-24 18:51:59 +0000sprotte24(~sprotte24@p200300d16f2c9d00c1a0dcfcfe8beebe.dip0.t-ipconnect.de)
2025-06-24 18:54:38 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 272 seconds)
2025-06-24 18:55:08 +0000OftenFaded(~OftenFade@user/tisktisk) (Quit: Client closed)
2025-06-24 18:58:57 +0000rvalue-rvalue
2025-06-24 18:59:35 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr) (Remote host closed the connection)
2025-06-24 18:59:53 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr)
2025-06-24 19:00:02 +0000caconym7(~caconym@user/caconym) (Quit: bye)
2025-06-24 19:00:41 +0000caconym7(~caconym@user/caconym) caconym
2025-06-24 19:04:50 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 19:09:34 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds)
2025-06-24 19:10:12 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 244 seconds)
2025-06-24 19:11:20 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 19:15:58 +0000ljdarj(~Thunderbi@user/ljdarj) ljdarj
2025-06-24 19:15:59 +0000shaeto(~Shaeto@94.25.234.84) (Quit: WeeChat 4.1.1)
2025-06-24 19:18:28 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 19:25:34 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-06-24 19:26:06 +0000sord937(~sord937@gateway/tor-sasl/sord937) (Quit: sord937)
2025-06-24 19:32:01 +0000CiaoSen(~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) CiaoSen
2025-06-24 19:35:49 +0000ljdarj(~Thunderbi@user/ljdarj) (Ping timeout: 276 seconds)
2025-06-24 19:36:31 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 19:41:54 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-06-24 19:52:18 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 19:55:58 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 276 seconds)
2025-06-24 19:56:00 +0000weary-traveler(~user@user/user363627) user363627
2025-06-24 19:56:36 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 19:57:14 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-06-24 20:04:40 +0000nek0(~nek0@user/nek0) nek0
2025-06-24 20:08:06 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 20:10:50 +0000caubert(~caubert@user/caubert) caubert
2025-06-24 20:13:02 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds)
2025-06-24 20:17:40 +0000Ekho(~Ekho@user/ekho) (Ping timeout: 260 seconds)
2025-06-24 20:19:12 +0000caubert(~caubert@user/caubert) (Ping timeout: 268 seconds)
2025-06-24 20:19:29 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 20:24:40 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-06-24 20:26:08 +0000Ekho(~Ekho@user/ekho) Ekho
2025-06-24 20:32:41 +0000caubert(~caubert@user/caubert) caubert
2025-06-24 20:35:14 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 20:37:22 +0000trickard(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 20:37:36 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 20:38:02 +0000caubert(~caubert@user/caubert) (Ping timeout: 244 seconds)
2025-06-24 20:38:05 +0000pavonia(~user@user/siracusa) siracusa
2025-06-24 20:40:14 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-06-24 20:42:32 +0000ljdarj(~Thunderbi@user/ljdarj) ljdarj
2025-06-24 20:44:12 +0000caubert(~caubert@user/caubert) caubert
2025-06-24 20:45:04 +0000ira-peach(~ira-peach@c-73-88-12-87.hsd1.mn.comcast.net) (Quit: leaving)
2025-06-24 20:50:12 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 20:55:36 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 272 seconds)
2025-06-24 20:57:41 +0000ttybitnik(~ttybitnik@user/wolper) (Read error: Connection reset by peer)
2025-06-24 20:58:59 +0000ttybitnik(~ttybitnik@user/wolper) ttybitnik
2025-06-24 21:00:58 +0000Unicorn_Princess(~Unicorn_P@user/Unicorn-Princess/x-3540542) Unicorn_Princess
2025-06-24 21:02:10 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 21:02:23 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 21:06:01 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 21:11:38 +0000michalz(~michalz@185.246.207.201) (Remote host closed the connection)
2025-06-24 21:12:27 +0000Square2(~Square@user/square) Square
2025-06-24 21:12:54 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-06-24 21:24:01 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 21:29:34 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds)
2025-06-24 21:30:03 +0000__monty__(~toonn@user/toonn) (Quit: leaving)
2025-06-24 21:32:54 +0000acidjnk(~acidjnk@p200300d6e70b6633447f0ca591f12fea.dip0.t-ipconnect.de) (Ping timeout: 245 seconds)
2025-06-24 21:33:53 +0000acidjnk(~acidjnk@p200300d6e70b6633f9ef2c2f945967a1.dip0.t-ipconnect.de) acidjnk
2025-06-24 21:39:48 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 21:40:58 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) bitdex
2025-06-24 21:41:29 +0000CiaoSen(~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 260 seconds)
2025-06-24 21:41:36 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) (Client Quit)
2025-06-24 21:42:10 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) bitdex
2025-06-24 21:44:23 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds)
2025-06-24 21:45:21 +0000Putonlalla(~Putonlall@it-cyan.it.jyu.fi) (Ping timeout: 248 seconds)
2025-06-24 21:53:50 +0000dhil(~dhil@5.151.29.138) (Ping timeout: 252 seconds)
2025-06-24 21:55:36 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 22:00:44 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-06-24 22:01:55 +0000Putonlalla(~Putonlall@it-cyan.it.jyu.fi) Tuplanolla
2025-06-24 22:09:58 +0000koz(~koz@121.99.240.58) (Ping timeout: 252 seconds)
2025-06-24 22:11:19 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 22:12:20 +0000target_i(~target_i@user/target-i/x-6023099) (Quit: leaving)
2025-06-24 22:16:40 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-06-24 22:18:28 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net)
2025-06-24 22:23:40 +0000Frostillicus(~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Ping timeout: 260 seconds)
2025-06-24 22:27:07 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 22:28:55 +0000sprotte24(~sprotte24@p200300d16f2c9d00c1a0dcfcfe8beebe.dip0.t-ipconnect.de) (Quit: Leaving)
2025-06-24 22:29:22 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 276 seconds)
2025-06-24 22:29:48 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 22:30:29 +0000Square2(~Square@user/square) (Ping timeout: 252 seconds)
2025-06-24 22:31:37 +0000califax(~califax@user/califx) (Remote host closed the connection)
2025-06-24 22:31:52 +0000califax(~califax@user/califx) califx
2025-06-24 22:32:24 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds)
2025-06-24 22:35:40 +0000ystael(~ystael@user/ystael) (Ping timeout: 272 seconds)
2025-06-24 22:37:13 +0000Tuplanolla(~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) Tuplanolla
2025-06-24 22:39:39 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) (Ping timeout: 252 seconds)
2025-06-24 22:39:45 +0000kadobanana(~mud@user/kadoban) (Ping timeout: 248 seconds)
2025-06-24 22:40:27 +0000tmciver(~tim@syn-198-255-177-240.res.spectrum.com) tmciver
2025-06-24 22:42:54 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 22:44:35 +0000kadobanana(~mud@user/kadoban) kadoban
2025-06-24 22:46:08 +0000Sgeo(~Sgeo@user/sgeo) Sgeo
2025-06-24 22:47:31 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-06-24 22:47:44 +0000trickard_(~trickard@cpe-52-98-47-163.wireline.com.au)
2025-06-24 22:50:03 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds)
2025-06-24 22:52:58 +0000califax(~califax@user/califx) (Remote host closed the connection)
2025-06-24 22:53:13 +0000califax(~califax@user/califx) califx
2025-06-24 22:54:49 +0000machinedgod(~machinedg@d108-173-18-100.abhsia.telus.net) (Ping timeout: 252 seconds)
2025-06-24 22:59:50 +0000wbooze(~inline@ip-005-146-197-162.um05.pools.vodafone-ip.de) (Remote host closed the connection)
2025-06-24 23:00:57 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 23:02:31 +0000wbooze(~inline@ip-005-146-197-162.um05.pools.vodafone-ip.de) Inline
2025-06-24 23:02:42 +0000poliquin(~poliquin@access-63-249-67-94.static.cruzio.net)
2025-06-24 23:05:42 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-06-24 23:06:01 +0000mud(~mud@user/kadoban) kadoban
2025-06-24 23:06:29 +0000kadobanana(~mud@user/kadoban) (Ping timeout: 265 seconds)
2025-06-24 23:06:55 +0000acidjnk(~acidjnk@p200300d6e70b6633f9ef2c2f945967a1.dip0.t-ipconnect.de) (Ping timeout: 252 seconds)
2025-06-24 23:10:28 +0000wbooze(~inline@ip-005-146-197-162.um05.pools.vodafone-ip.de) (Ping timeout: 252 seconds)
2025-06-24 23:13:19 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr) (Remote host closed the connection)
2025-06-24 23:13:37 +0000sabathan2(~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr)
2025-06-24 23:15:36 +0000perro(~aaron@syn-072-191-245-069.res.spectrum.com) (Ping timeout: 276 seconds)
2025-06-24 23:16:42 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 23:21:18 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds)
2025-06-24 23:23:25 +0000 <poliquin> I'm having trouble with a space leak. I have solved them before but this (these) have been problematic. I have a boolean network sim using an evolutionary Ai (PSO) for training (lots of individuals being 'rewritten' .. So two potential culprits .. Sim and PSO ..
2025-06-24 23:23:39 +0000 <poliquin> I've tried profiling, hc, hm, force, bangs, not brave enough for NFData etc .. They imply almost every function is leaking. I just need some sane direction as to what to do next .. I've been shotgunning it I'd like to try something more deterministic. Thanks
2025-06-24 23:29:54 +0000jespada(~jespada@r179-24-17-8.dialup.adsl.anteldata.net.uy) (Ping timeout: 252 seconds)
2025-06-24 23:32:24 +0000jespada(~jespada@r186-48-29-79.dialup.adsl.anteldata.net.uy) jespada
2025-06-24 23:32:29 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 23:33:58 +0000tavare(~tavare@150.129.88.189) tavare
2025-06-24 23:33:58 +0000tavare(~tavare@150.129.88.189) (Changing host)
2025-06-24 23:33:58 +0000tavare(~tavare@user/tavare) tavare
2025-06-24 23:34:39 +0000tavare(~tavare@user/tavare) (Remote host closed the connection)
2025-06-24 23:37:14 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-06-24 23:43:34 +0000tabaqui(~tabaqui@167.71.80.236) (Quit: WeeChat 4.6.3)
2025-06-24 23:44:59 +0000inline(~inline@ip-005-146-197-162.um05.pools.vodafone-ip.de) Inline
2025-06-24 23:48:17 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-06-24 23:52:44 +0000 <c_wraith> The only really systematic approach is to consider how every function should work in terms of space invaraints, and rewrite them to work that way.
2025-06-24 23:52:49 +0000j1n37(~j1n37@user/j1n37) (Ping timeout: 244 seconds)
2025-06-24 23:52:56 +0000 <c_wraith> ... invariants
2025-06-24 23:53:15 +0000j1n37(~j1n37@user/j1n37) j1n37
2025-06-24 23:53:19 +0000merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-06-24 23:57:27 +0000 <haskellbridge> <magic_rb> my thesis is reaching a conclusion, final benchmarks running now, spoiler: im getting about 40% of linux kernel performance
2025-06-24 23:58:52 +0000 <haskellbridge> <magic_rb> this is the haskell filesystem thing