| 2025-11-18 00:02:51 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-11-18 00:07:46 +0000 | turlando_ | (~turlando@user/turlando) (Ping timeout: 244 seconds) |
| 2025-11-18 00:08:08 +0000 | trickard_ | (~trickard@cpe-50-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 00:08:22 +0000 | trickard_ | (~trickard@cpe-50-98-47-163.wireline.com.au) |
| 2025-11-18 00:12:53 +0000 | mange | (~mange@user/mange) mange |
| 2025-11-18 00:13:53 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 00:15:04 +0000 | trickard_ | trickard |
| 2025-11-18 00:17:05 +0000 | jmcantrell | (~weechat@user/jmcantrell) jmcantrell |
| 2025-11-18 00:18:23 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds) |
| 2025-11-18 00:23:03 +0000 | jmcantrell | (~weechat@user/jmcantrell) (Ping timeout: 260 seconds) |
| 2025-11-18 00:23:41 +0000 | <yin> | I'm trying to understant FRP in haskell and the hypothetical Monad instance for Signals. My mind immediately went to call/cc from Scheme. Am I way off base? |
| 2025-11-18 00:25:35 +0000 | <EvanR> | Signal doesn't sound like the original formulation of FRP. Which library is this from |
| 2025-11-18 00:27:20 +0000 | <EvanR> | in conal's old blog, he mentioned maybe something about a monad instance for Events then later abandoned it |
| 2025-11-18 00:28:44 +0000 | <yin> | EvanR: Signal would be Behaviour from Conal's. (>>=) :: Signal a -> (a -> Signal b) -> Signal b |
| 2025-11-18 00:28:58 +0000 | peterbecich | (~Thunderbi@172.222.148.214) peterbecich |
| 2025-11-18 00:29:16 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 00:30:25 +0000 | <EvanR> | oh |
| 2025-11-18 00:30:44 +0000 | chiselfuse | (~chiselfus@user/chiselfuse) (Remote host closed the connection) |
| 2025-11-18 00:30:47 +0000 | <EvanR> | then monad can make sense in the same sense as the monad instance for Stream of Stream of a |
| 2025-11-18 00:30:55 +0000 | <EvanR> | er, stream |
| 2025-11-18 00:30:58 +0000 | bggd | (~bgg@2a01:e0a:819:1510:2461:8c52:600a:b549) (Remote host closed the connection) |
| 2025-11-18 00:31:02 +0000 | <EvanR> | join :: Stream (Stream a) -> Stream a |
| 2025-11-18 00:31:21 +0000 | chiselfuse | (~chiselfus@user/chiselfuse) chiselfuse |
| 2025-11-18 00:32:42 +0000 | trickard | (~trickard@cpe-50-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 00:32:55 +0000 | trickard_ | (~trickard@cpe-50-98-47-163.wireline.com.au) |
| 2025-11-18 00:33:44 +0000 | <EvanR> | join :: Signal (Signal a) -> Signal a, assuming Signal = Behavior |
| 2025-11-18 00:34:02 +0000 | <EvanR> | how useful that is I don't know |
| 2025-11-18 00:34:13 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-11-18 00:35:36 +0000 | petrichor | (~jez@user/petrichor) (Ping timeout: 256 seconds) |
| 2025-11-18 00:37:49 +0000 | turlando | (~turlando@user/turlando) turlando |
| 2025-11-18 00:42:30 +0000 | turlando | (~turlando@user/turlando) (Ping timeout: 265 seconds) |
| 2025-11-18 00:43:44 +0000 | <yin> | my intuition is that bind would offer a way to dynamically change the control flow or dependency graph |
| 2025-11-18 00:43:46 +0000 | <yin> | https://paste.jrvieira.com/1763426541194 |
| 2025-11-18 00:44:00 +0000 | turlando | (~turlando@user/turlando) turlando |
| 2025-11-18 00:44:40 +0000 | infinity0 | (~infinity0@pwned.gg) (Ping timeout: 256 seconds) |
| 2025-11-18 00:45:03 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 00:45:09 +0000 | <EvanR> | Signal f <*> Signal x |
| 2025-11-18 00:45:15 +0000 | <EvanR> | to make it more clear what's going on |
| 2025-11-18 00:45:15 +0000 | synchromesh | (~john@2406:5a00:2412:2c00:71c7:e357:fc79:c8b6) (Read error: Connection reset by peer) |
| 2025-11-18 00:45:37 +0000 | <EvanR> | would give you, basically (not actual syntax), Signal (f x) |
| 2025-11-18 00:45:41 +0000 | synchromesh | (~john@2406:5a00:2412:2c00:6993:feea:8b51:a565) synchromesh |
| 2025-11-18 00:45:45 +0000 | <yin> | right. i had that but (x t) looked weird to me :) |
| 2025-11-18 00:46:36 +0000 | <EvanR> | the usual way to introduce a way to "dynamically" replace a behavior is to use an event |
| 2025-11-18 00:46:55 +0000 | <EvanR> | something like Signal a -> Event (Signal a) -> Signal a |
| 2025-11-18 00:47:16 +0000 | <EvanR> | the signal is replaced with the event payload when/if it happens. Before before any events, the first argument applies |
| 2025-11-18 00:49:19 +0000 | xff0x | (~xff0x@2405:6580:b080:900:fb28:6c11:a653:72c4) (Ping timeout: 260 seconds) |
| 2025-11-18 00:49:59 +0000 | <monochrom> | If you think call/cc, you're a low-level person. It's not wrong, it just may be very helpful or very distracting depending on your purpose. |
| 2025-11-18 00:51:40 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 255 seconds) |
| 2025-11-18 00:52:33 +0000 | <jackdk> | I got a lot out of (in order): this old "FRP - Events and Behaviours" talk: https://www.youtube.com/watch?v=GXW1jBijhlk, the diagrams in the reactive-banana package, and https://github.com/qfpl/reflex-workshop/ (for hands-on experience). They might help you get your head around the mental models |
| 2025-11-18 00:52:35 +0000 | <yin> | monochrom: it just had the same smell in my purposeless mind, that's all |
| 2025-11-18 00:53:01 +0000 | <monochrom> | It's OK. Lately I smelled Yoneda lemma everywhere anyway. :) |
| 2025-11-18 00:54:10 +0000 | <yin> | jackdk: tyvm |
| 2025-11-18 00:54:35 +0000 | <monochrom> | (The smell was correct. It really was Yoneda lemma. Know every angle, all of them are helpful.) |
| 2025-11-18 00:57:05 +0000 | <EvanR> | was this a programming situation or category theory |
| 2025-11-18 00:58:50 +0000 | <yin> | yes |
| 2025-11-18 00:59:03 +0000 | <yin> | :) |
| 2025-11-18 00:59:58 +0000 | acidjnk | (~acidjnk@p200300d6e717199494cb24f290a326c5.dip0.t-ipconnect.de) (Ping timeout: 256 seconds) |
| 2025-11-18 01:00:43 +0000 | turlando | (~turlando@user/turlando) (Ping timeout: 246 seconds) |
| 2025-11-18 01:02:54 +0000 | turlando | (~turlando@user/turlando) turlando |
| 2025-11-18 01:03:07 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 01:04:34 +0000 | infinity0 | (~infinity0@pwned.gg) infinity0 |
| 2025-11-18 01:07:46 +0000 | <monochrom> | Suppose σ permutes arrays of length n. I can apply it to the "identity array" [0 .. n-1], i.e., define e := σ [0 .. n-1]. Then I can use e instead of σ to permute other arrays: To permute v, (σ v)[i] = v[e[i]] for each i. In the vector library, you can just write `V.backpermute e v`. |
| 2025-11-18 01:08:11 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 250 seconds) |
| 2025-11-18 01:08:13 +0000 | <monochrom> | Turns out this was foretold by the Yoneda lemma too! |
| 2025-11-18 01:08:50 +0000 | peterbecich | (~Thunderbi@172.222.148.214) (Ping timeout: 244 seconds) |
| 2025-11-18 01:10:41 +0000 | <monochrom> | Model "array of length n with elements of type a" as N->a, N = {0 .. n-1}. Then permutations are a special cases of (N->a) -> (N->a). Then Yoneda embedding says that it's isomorphic to N->N, the forward mapping maps σ to σ id, id = [0 .. n-1]. |
| 2025-11-18 01:11:51 +0000 | <haskellbridge> | <Zemyla> So is there a type that represents a combination? |
| 2025-11-18 01:12:01 +0000 | <monochrom> | And the backward mapping maps e to \v -> v ∘ e |
| 2025-11-18 01:12:14 +0000 | <monochrom> | I don't know! Not interested for now. |
| 2025-11-18 01:12:55 +0000 | <EvanR> | sounds like the theory of group action |
| 2025-11-18 01:13:27 +0000 | peterbecich | (~Thunderbi@172.222.148.214) peterbecich |
| 2025-11-18 01:14:38 +0000 | trickard_ | trickard |
| 2025-11-18 01:15:25 +0000 | <monochrom> | Moreover, it also hints that σ id is "backwards": It maps new indexes to old indexes. How to see it: Use N for old indexes, N' for new indexes. Then (N->a) -> (N'->a) is isomorphic to N' -> N. |
| 2025-11-18 01:15:27 +0000 | AlexNoo_ | (~AlexNoo@178.34.162.20) |
| 2025-11-18 01:16:42 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) humasect |
| 2025-11-18 01:16:58 +0000 | AlexZenon | (~alzenon@178.34.151.158) (Ping timeout: 256 seconds) |
| 2025-11-18 01:17:08 +0000 | <monochrom> | So yeah it's both programming and category theory. I was coding up LU factorization with pivoting, and I recorded the permutation of rows by performing the same permutation on [0 .. n-1] and returning it. |
| 2025-11-18 01:18:46 +0000 | Tuplanolla | (~Tuplanoll@91-159-187-167.elisa-laajakaista.fi) (Quit: Leaving.) |
| 2025-11-18 01:18:53 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 01:18:55 +0000 | AlexNoo | (~AlexNoo@178.34.151.158) (Ping timeout: 246 seconds) |
| 2025-11-18 01:21:50 +0000 | <monochrom> | Combination may be N->2. Each of n elements may be chosen or not-chosen. |
| 2025-11-18 01:23:43 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 240 seconds) |
| 2025-11-18 01:24:07 +0000 | <haskellbridge> | <Zemyla> True. |
| 2025-11-18 01:24:50 +0000 | AlexZenon | (~alzenon@178.34.162.20) |
| 2025-11-18 01:27:27 +0000 | Dhark8 | Shark8 |
| 2025-11-18 01:28:20 +0000 | Catty | (~catties@user/meow/catties) (Remote host closed the connection) |
| 2025-11-18 01:31:18 +0000 | sindu | (~sindu@77.19.134.151.tmi.telenormobil.no) (Ping timeout: 260 seconds) |
| 2025-11-18 01:33:33 +0000 | catties | (~catties@user/meow/catties) catties |
| 2025-11-18 01:34:41 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 01:39:22 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2025-11-18 01:44:42 +0000 | xff0x | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) |
| 2025-11-18 01:50:16 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 01:52:58 +0000 | otto_s | (~user@p5de2f6bf.dip0.t-ipconnect.de) (Ping timeout: 256 seconds) |
| 2025-11-18 01:54:27 +0000 | jangerma1 | (~jangermad@104-54-32-17.lightspeed.irvnca.sbcglobal.net) |
| 2025-11-18 01:54:38 +0000 | otto_s | (~user@p4ff27097.dip0.t-ipconnect.de) |
| 2025-11-18 01:55:03 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-11-18 01:57:17 +0000 | petrichor | (~jez@user/petrichor) petrichor |
| 2025-11-18 01:59:53 +0000 | Square3 | (~Square@user/square) Square |
| 2025-11-18 02:03:05 +0000 | Square2 | (~Square4@user/square) (Ping timeout: 244 seconds) |
| 2025-11-18 02:04:30 +0000 | vanishingideal | (~vanishing@user/vanishingideal) (Ping timeout: 245 seconds) |
| 2025-11-18 02:05:26 +0000 | haltingsolver | (~cmo@2604:3d09:207f:8000::d1dc) (Ping timeout: 256 seconds) |
| 2025-11-18 02:05:58 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 02:06:42 +0000 | vanishingideal | (~vanishing@user/vanishingideal) vanishingideal |
| 2025-11-18 02:06:55 +0000 | myxos | (~myxos@2001:579:8380:f20:5f4f:3365:91ae:208d) myxokephale |
| 2025-11-18 02:07:48 +0000 | haltingsolver | (~cmo@2604:3d09:207f:8000::d1dc) |
| 2025-11-18 02:09:17 +0000 | myxokephale | (~myxos@2001:579:8380:f20:6b9e:1a89:7816:af78) (Ping timeout: 244 seconds) |
| 2025-11-18 02:11:25 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds) |
| 2025-11-18 02:13:43 +0000 | DetourNe- | (DetourNetw@user/DetourNetworkUK) DetourNetworkUK |
| 2025-11-18 02:13:46 +0000 | catties | Catty |
| 2025-11-18 02:14:06 +0000 | DetourNetworkUK | (~DetourNet@user/DetourNetworkUK) (Read error: Connection reset by peer) |
| 2025-11-18 02:16:04 +0000 | DetourNe- | DetourNetworkUK |
| 2025-11-18 02:21:49 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 02:25:16 +0000 | haltingsolver | (~cmo@2604:3d09:207f:8000::d1dc) (Ping timeout: 256 seconds) |
| 2025-11-18 02:28:36 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-11-18 02:29:36 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) (Quit: Leaving...) |
| 2025-11-18 02:34:17 +0000 | spew | (~spew@user/spew) spew |
| 2025-11-18 02:37:36 +0000 | trickard | (~trickard@cpe-50-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 02:37:50 +0000 | trickard_ | (~trickard@cpe-50-98-47-163.wireline.com.au) |
| 2025-11-18 02:39:49 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 02:45:06 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2025-11-18 02:49:45 +0000 | vardhan | (~vardhan@122.172.80.248) |
| 2025-11-18 02:50:55 +0000 | xff0x_ | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) |
| 2025-11-18 02:53:12 +0000 | xff0x | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) (Ping timeout: 244 seconds) |
| 2025-11-18 02:55:37 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 02:55:54 +0000 | peterbecich | (~Thunderbi@172.222.148.214) (Ping timeout: 260 seconds) |
| 2025-11-18 02:58:23 +0000 | spew | (~spew@user/spew) (Quit: WeeChat 4.6.3) |
| 2025-11-18 03:00:07 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 240 seconds) |
| 2025-11-18 03:05:39 +0000 | Zemy | (~Zemy@2600:100c:b03d:4841:7c2c:68ff:fe38:b3c8) |
| 2025-11-18 03:05:39 +0000 | Zemy_ | (~Zemy@72.178.108.235) (Read error: Connection reset by peer) |
| 2025-11-18 03:06:15 +0000 | Zemy_ | (~Zemy@72.178.108.235) |
| 2025-11-18 03:08:36 +0000 | trickard_ | (~trickard@cpe-50-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 03:08:49 +0000 | trickard_ | (~trickard@cpe-50-98-47-163.wireline.com.au) |
| 2025-11-18 03:10:02 +0000 | Zemy | (~Zemy@2600:100c:b03d:4841:7c2c:68ff:fe38:b3c8) (Ping timeout: 256 seconds) |
| 2025-11-18 03:11:24 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 03:16:21 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-11-18 03:23:31 +0000 | td__ | (~td@i53870917.versanet.de) (Ping timeout: 246 seconds) |
| 2025-11-18 03:25:22 +0000 | td_ | (~td@i53870912.versanet.de) td_ |
| 2025-11-18 03:27:11 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 03:28:05 +0000 | peterbecich | (~Thunderbi@172.222.148.214) peterbecich |
| 2025-11-18 03:29:54 +0000 | DetourNetworkUK | (DetourNetw@user/DetourNetworkUK) (Read error: Connection reset by peer) |
| 2025-11-18 03:31:11 +0000 | DetourNetworkUK | (DetourNetw@user/DetourNetworkUK) DetourNetworkUK |
| 2025-11-18 03:32:24 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2025-11-18 03:38:51 +0000 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) bitdex |
| 2025-11-18 03:42:59 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 03:44:39 +0000 | bitdex_ | (~bitdex@gateway/tor-sasl/bitdex) bitdex |
| 2025-11-18 03:46:28 +0000 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Ping timeout: 272 seconds) |
| 2025-11-18 03:48:00 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2025-11-18 03:54:21 +0000 | annamalai | (~annamalai@157.33.255.31) annamalai |
| 2025-11-18 03:58:46 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 04:05:37 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 255 seconds) |
| 2025-11-18 04:10:40 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) (Ping timeout: 256 seconds) |
| 2025-11-18 04:11:36 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) chromoblob\0 |
| 2025-11-18 04:13:42 +0000 | trickard_ | (~trickard@cpe-50-98-47-163.wireline.com.au) (Ping timeout: 244 seconds) |
| 2025-11-18 04:13:59 +0000 | trickard_ | (~trickard@cpe-50-98-47-163.wireline.com.au) |
| 2025-11-18 04:16:49 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 04:18:08 +0000 | peterbecich | (~Thunderbi@172.222.148.214) (Ping timeout: 260 seconds) |
| 2025-11-18 04:20:09 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) (Read error: Connection reset by peer) |
| 2025-11-18 04:20:55 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) chromoblob\0 |
| 2025-11-18 04:22:13 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds) |
| 2025-11-18 04:23:29 +0000 | Googulator | (~Googulato@85-238-67-234.pool.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 04:23:44 +0000 | Googulator | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 04:32:35 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 04:37:28 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-11-18 04:48:23 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 04:52:39 +0000 | synchromesh | (~john@2406:5a00:2412:2c00:6993:feea:8b51:a565) (Read error: Connection reset by peer) |
| 2025-11-18 04:53:25 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds) |
| 2025-11-18 04:53:44 +0000 | Square3 | (~Square@user/square) (Ping timeout: 256 seconds) |
| 2025-11-18 04:54:22 +0000 | synchromesh | (~john@2406:5a00:2412:2c00:6993:feea:8b51:a565) synchromesh |
| 2025-11-18 05:00:08 +0000 | machinedgod | (~machinedg@d75-159-126-101.abhsia.telus.net) (Ping timeout: 240 seconds) |
| 2025-11-18 05:04:10 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 05:07:53 +0000 | gustrb | (~gustrb@user/gustrb) (Read error: Connection reset by peer) |
| 2025-11-18 05:09:02 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2025-11-18 05:09:06 +0000 | gustrb | (~gustrb@191.243.134.87) |
| 2025-11-18 05:10:41 +0000 | Googulator23 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 05:10:41 +0000 | Googulator | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 05:17:42 +0000 | peterbecich | (~Thunderbi@172.222.148.214) peterbecich |
| 2025-11-18 05:19:58 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 05:24:17 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 250 seconds) |
| 2025-11-18 05:35:23 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 05:42:37 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds) |
| 2025-11-18 05:42:44 +0000 | mange | (~mange@user/mange) (Remote host closed the connection) |
| 2025-11-18 05:49:27 +0000 | oppili | (~oppili@user/nerdypepper) nerdy |
| 2025-11-18 05:53:27 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 05:54:11 +0000 | trickard_ | (~trickard@cpe-50-98-47-163.wireline.com.au) (Ping timeout: 250 seconds) |
| 2025-11-18 05:54:22 +0000 | trickard_ | (~trickard@cpe-62-98-47-163.wireline.com.au) |
| 2025-11-18 05:54:56 +0000 | michalz | (~michalz@185.246.207.215) |
| 2025-11-18 05:58:04 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-11-18 06:03:17 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 06:09:56 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2025-11-18 06:10:34 +0000 | takuan | (~takuan@d8D86B9E9.access.telenet.be) |
| 2025-11-18 06:20:28 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 06:21:34 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) (Ping timeout: 256 seconds) |
| 2025-11-18 06:22:50 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) chromoblob\0 |
| 2025-11-18 06:25:13 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds) |
| 2025-11-18 06:27:38 +0000 | Lycurgus | (~juan@user/Lycurgus) Lycurgus |
| 2025-11-18 06:30:34 +0000 | Googulator16 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 06:30:39 +0000 | Googulator23 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 06:33:19 +0000 | peterbecich | (~Thunderbi@172.222.148.214) (Ping timeout: 264 seconds) |
| 2025-11-18 06:35:35 +0000 | Googulator67 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 06:35:40 +0000 | Googulator16 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 06:36:00 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 06:41:07 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds) |
| 2025-11-18 06:45:37 +0000 | Googulator67 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 06:45:43 +0000 | Googulator2 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 06:51:55 +0000 | Lycurgus | (~juan@user/Lycurgus) (Quit: alsoknownas.renjuan.org ( juan@acm.org )) |
| 2025-11-18 06:52:19 +0000 | trickard_ | trickard |
| 2025-11-18 06:53:17 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 06:53:42 +0000 | otto_s | (~user@p4ff27097.dip0.t-ipconnect.de) (Ping timeout: 252 seconds) |
| 2025-11-18 06:57:27 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) (Ping timeout: 250 seconds) |
| 2025-11-18 06:57:58 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 255 seconds) |
| 2025-11-18 07:03:16 +0000 | trickard | (~trickard@cpe-62-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 07:03:29 +0000 | trickard | (~trickard@cpe-62-98-47-163.wireline.com.au) |
| 2025-11-18 07:08:35 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer) |
| 2025-11-18 07:08:39 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 07:10:42 +0000 | peterbecich | (~Thunderbi@172.222.148.214) peterbecich |
| 2025-11-18 07:13:43 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 255 seconds) |
| 2025-11-18 07:15:47 +0000 | Googulator2 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 07:15:53 +0000 | Googulator71 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 07:20:41 +0000 | elbartol` | (~user@user/elbartol) (Remote host closed the connection) |
| 2025-11-18 07:21:15 +0000 | elbartol | (~user@user/elbartol) elbartol |
| 2025-11-18 07:23:20 +0000 | annamalai | (~annamalai@157.33.255.31) (Ping timeout: 256 seconds) |
| 2025-11-18 07:24:27 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 07:30:42 +0000 | CiaoSen | (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) CiaoSen |
| 2025-11-18 07:31:32 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2025-11-18 07:34:22 +0000 | emmanuelux | (~emmanuelu@user/emmanuelux) (Remote host closed the connection) |
| 2025-11-18 07:39:55 +0000 | kadobanana | (~mud@user/kadoban) kadoban |
| 2025-11-18 07:42:26 +0000 | mud | (~mud@user/kadoban) (Ping timeout: 244 seconds) |
| 2025-11-18 07:42:30 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 07:44:37 +0000 | sord937 | (~sord937@gateway/tor-sasl/sord937) sord937 |
| 2025-11-18 07:45:49 +0000 | Frostillicus | (~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) (Read error: Connection reset by peer) |
| 2025-11-18 07:47:05 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-11-18 07:47:16 +0000 | Frostillicus | (~Frostilli@pool-71-174-119-69.bstnma.fios.verizon.net) |
| 2025-11-18 07:51:59 +0000 | trickard | (~trickard@cpe-62-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 07:52:13 +0000 | trickard_ | (~trickard@cpe-62-98-47-163.wireline.com.au) |
| 2025-11-18 07:54:26 +0000 | sord937 | (~sord937@gateway/tor-sasl/sord937) (Remote host closed the connection) |
| 2025-11-18 07:54:46 +0000 | sord937 | (~sord937@gateway/tor-sasl/sord937) sord937 |
| 2025-11-18 07:56:21 +0000 | lucabtz | (~lucabtz@user/lucabtz) lucabtz |
| 2025-11-18 07:57:53 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 08:00:07 +0000 | acidjnk | (~acidjnk@p200300d6e717199494cb24f290a326c5.dip0.t-ipconnect.de) acidjnk |
| 2025-11-18 08:01:22 +0000 | mud | (~mud@user/kadoban) kadoban |
| 2025-11-18 08:02:09 +0000 | kadobanana | (~mud@user/kadoban) (Ping timeout: 260 seconds) |
| 2025-11-18 08:03:01 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds) |
| 2025-11-18 08:05:26 +0000 | trickard_ | trickard |
| 2025-11-18 08:06:12 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 08:10:35 +0000 | Googulator82 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 08:10:56 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2025-11-18 08:13:47 +0000 | Googulator71 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Ping timeout: 250 seconds) |
| 2025-11-18 08:15:36 +0000 | Googulator82 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 08:15:39 +0000 | Googulator33 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 08:18:50 +0000 | kadobanana | (~mud@user/kadoban) kadoban |
| 2025-11-18 08:20:40 +0000 | Googulator33 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 08:20:41 +0000 | Googulator34 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 08:21:35 +0000 | peterbecich | (~Thunderbi@172.222.148.214) (Ping timeout: 245 seconds) |
| 2025-11-18 08:21:57 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 08:22:16 +0000 | mud | (~mud@user/kadoban) (Ping timeout: 256 seconds) |
| 2025-11-18 08:22:29 +0000 | nek0 | (~nek0@user/nek0) (Read error: Connection reset by peer) |
| 2025-11-18 08:22:33 +0000 | nek02 | (~nek0@user/nek0) nek0 |
| 2025-11-18 08:25:41 +0000 | Googulator96 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 08:26:14 +0000 | Googulator34 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 08:27:28 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds) |
| 2025-11-18 08:30:42 +0000 | Googulator96 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 08:30:44 +0000 | Googulator21 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 08:36:05 +0000 | Sgeo | (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
| 2025-11-18 08:44:33 +0000 | tzh | (~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz) |
| 2025-11-18 08:45:48 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) humasect |
| 2025-11-18 08:55:20 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) chromoblob\0 |
| 2025-11-18 08:59:20 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) (Ping timeout: 240 seconds) |
| 2025-11-18 09:06:19 +0000 | chele | (~chele@user/chele) chele |
| 2025-11-18 09:13:33 +0000 | trickard | (~trickard@cpe-62-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 09:13:47 +0000 | trickard_ | (~trickard@cpe-62-98-47-163.wireline.com.au) |
| 2025-11-18 09:15:17 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-11-18 09:15:28 +0000 | Googulator21 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 09:15:35 +0000 | Googulator25 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 09:15:57 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) chromoblob\0 |
| 2025-11-18 09:20:18 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) (Ping timeout: 260 seconds) |
| 2025-11-18 09:20:37 +0000 | Googulator74 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 09:20:44 +0000 | Googulator25 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 09:23:22 +0000 | ft | (~ft@p4fc2aaeb.dip0.t-ipconnect.de) (Quit: leaving) |
| 2025-11-18 09:24:07 +0000 | mud | (~mud@user/kadoban) kadoban |
| 2025-11-18 09:25:40 +0000 | Googulator62 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 09:25:40 +0000 | Googulator74 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 09:27:52 +0000 | kadobanana | (~mud@user/kadoban) (Ping timeout: 246 seconds) |
| 2025-11-18 09:30:43 +0000 | Googulator79 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 09:30:49 +0000 | Googulator62 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 09:35:29 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 260 seconds) |
| 2025-11-18 09:36:47 +0000 | img | (~img@user/img) (Quit: ZNC 1.8.2 - https://znc.in) |
| 2025-11-18 09:38:07 +0000 | img | (~img@user/img) img |
| 2025-11-18 09:42:26 +0000 | kuribas | (~user@2a02:1808:e7:cecd:ef16:f030:ae55:9416) kuribas |
| 2025-11-18 09:44:29 +0000 | econo_ | (uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity) |
| 2025-11-18 09:46:57 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-11-18 09:54:01 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 264 seconds) |
| 2025-11-18 09:56:42 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-11-18 09:58:09 +0000 | srazkvt | (~sarah@user/srazkvt) srazkvt |
| 2025-11-18 09:58:26 +0000 | oneeyedalien | (~oneeyedal@user/oneeyedalien) oneeyedalien |
| 2025-11-18 10:02:21 +0000 | chromoblob | (~chromoblo@user/chromob1ot1c) chromoblob\0 |
| 2025-11-18 10:07:13 +0000 | myxokephale | (~myxos@2001:579:8380:f20:a8ed:41b7:d57f:8d02) myxokephale |
| 2025-11-18 10:09:55 +0000 | myxos | (~myxos@2001:579:8380:f20:5f4f:3365:91ae:208d) (Ping timeout: 245 seconds) |
| 2025-11-18 10:21:37 +0000 | xff0x_ | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) (Ping timeout: 264 seconds) |
| 2025-11-18 10:22:21 +0000 | annamalai | (~annamalai@157.33.250.15) annamalai |
| 2025-11-18 10:30:54 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 256 seconds) |
| 2025-11-18 10:36:49 +0000 | nek02 | (~nek0@user/nek0) (Ping timeout: 246 seconds) |
| 2025-11-18 10:40:23 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-11-18 10:51:18 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 256 seconds) |
| 2025-11-18 10:55:03 +0000 | <kaol> | I'm looking at network library's source and I see lines like "sizeOf ~_ = #const sizeof(struct addrinfo)" in it. What's that #const thing? |
| 2025-11-18 10:59:43 +0000 | <Leary> | kaol: Looks like a "label": https://downloads.haskell.org/ghc/latest/docs/users_guide/exts/overloaded_labels.html |
| 2025-11-18 11:01:18 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-11-18 11:02:36 +0000 | gustrb | (~gustrb@191.243.134.87) (Changing host) |
| 2025-11-18 11:02:36 +0000 | gustrb | (~gustrb@user/gustrb) gustrb |
| 2025-11-18 11:03:00 +0000 | nek0 | (~nek0@user/nek0) nek0 |
| 2025-11-18 11:04:27 +0000 | <tomsmeding> | is there some way I can obtain a Coercible Int Int64? I'm fine if it's in a Maybe that is Nothing whenever this is not a 64-bit system or something |
| 2025-11-18 11:04:50 +0000 | <kaol> | I'm not seeing that extension mentioned anywhere in the library. |
| 2025-11-18 11:04:59 +0000 | <tomsmeding> | kaol: c2hs? |
| 2025-11-18 11:05:11 +0000 | <tomsmeding> | is this in a .chs file? |
| 2025-11-18 11:05:13 +0000 | kuribas` | (~user@ip-188-118-57-242.reverse.destiny.be) kuribas |
| 2025-11-18 11:06:18 +0000 | <kaol> | tomsmeding: Thanks, that explains what's going on. I suspect you mean .hsc because that's what they are using. |
| 2025-11-18 11:06:37 +0000 | <tomsmeding> | ah yes, I misremembered |
| 2025-11-18 11:06:42 +0000 | kuribas | (~user@2a02:1808:e7:cecd:ef16:f030:ae55:9416) (Ping timeout: 252 seconds) |
| 2025-11-18 11:06:52 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 256 seconds) |
| 2025-11-18 11:07:35 +0000 | <kaol> | I need to do something similar but my use is limited enough that I think I'll just use capi for what I need. |
| 2025-11-18 11:17:07 +0000 | xff0x | (~xff0x@2405:6580:b080:900:d0b4:2969:7511:437b) |
| 2025-11-18 11:18:35 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-11-18 11:24:55 +0000 | <mauke> | for reference, https://github.com/haskell/hsc2hs?tab=readme-ov-file#input-syntax |
| 2025-11-18 11:25:20 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 245 seconds) |
| 2025-11-18 11:26:51 +0000 | <mauke> | and https://github.com/haskell/hsc2hs/blob/master/data/template-hsc.h |
| 2025-11-18 11:30:23 +0000 | srazkvt | (~sarah@user/srazkvt) (Quit: Konversation terminated!) |
| 2025-11-18 11:30:38 +0000 | srazkvt | (~sarah@user/srazkvt) srazkvt |
| 2025-11-18 11:31:52 +0000 | srazkvt | (~sarah@user/srazkvt) (Client Quit) |
| 2025-11-18 11:32:20 +0000 | __monty__ | (~toonn@user/toonn) toonn |
| 2025-11-18 11:35:38 +0000 | trickard_ | trickard |
| 2025-11-18 11:37:16 +0000 | Inline | (~inlinE@2001-4dd7-ae97-0-4674-ae6d-2607-c022.ipv6dyn.netcologne.de) (Remote host closed the connection) |
| 2025-11-18 11:37:39 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-11-18 11:48:03 +0000 | fp | (~Thunderbi@2001:708:20:1406::10c5) fp |
| 2025-11-18 11:56:58 +0000 | <Leary> | tomsmeding: Only by cheating egregiously: https://gist.github.com/LSLeary/91103a2fbb35d1c908802fa81d82c110 |
| 2025-11-18 11:57:57 +0000 | <Leary> | Worse, since GHC can actually see the declarations for all types involves, it /knows/ the `Coercible` instances are bogus and raises all kinds of warnings ... not sure if that will cause issues in practice. |
| 2025-11-18 11:58:02 +0000 | <Leary> | involved* |
| 2025-11-18 11:59:53 +0000 | <tomsmeding> | Leary: right -- I tried something like this too, and got the same warnings |
| 2025-11-18 12:00:14 +0000 | <Leary> | I mean, it considers the (useful) RHSs of `archWS` as unreachable, so it's free to compile them away. `_test` works in the REPL, but might segfault in actual use. |
| 2025-11-18 12:00:22 +0000 | <tomsmeding> | beautiful! |
| 2025-11-18 12:00:39 +0000 | <tomsmeding> | If it compiles, it works. |
| 2025-11-18 12:02:46 +0000 | Googulator79 | Googulator |
| 2025-11-18 12:08:23 +0000 | srazkvt | (~sarah@user/srazkvt) srazkvt |
| 2025-11-18 12:09:44 +0000 | srazkvt | (~sarah@user/srazkvt) (Client Quit) |
| 2025-11-18 12:09:59 +0000 | srazkvt | (~sarah@user/srazkvt) srazkvt |
| 2025-11-18 12:17:15 +0000 | <Leary> | tomsmeding: Looking at the core under optimisation, it does compile just fine on my GHC 9.10. But I don't see why a future GHC could not choose to treat it as: `archWS = case wordSize of { 32 -> case unsafeWord32 of {}; 64 -> case unsafeWord64 of {}; _ -> UNK }`, producing core `archWS = case patError "ArchWS.hs:20:66-88|case"# of {}`. |
| 2025-11-18 12:18:57 +0000 | <tomsmeding> | yes |
| 2025-11-18 12:19:40 +0000 | <tomsmeding> | we'd need some kind of guarantee from GHC that conjuring up custom Coercible evidence is okay and respected by GHC, and there is no such guarantee currently, I think |
| 2025-11-18 12:19:53 +0000 | <tomsmeding> | especially in the context of it being explicitly disallowed to write manual instances for Coercible |
| 2025-11-18 12:33:24 +0000 | wootehfoot | (~wootehfoo@user/wootehfoot) wootehfoot |
| 2025-11-18 12:34:41 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) L29Ah |
| 2025-11-18 12:34:42 +0000 | Zemy_ | (~Zemy@72.178.108.235) (Read error: Connection reset by peer) |
| 2025-11-18 12:34:43 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:6c30:fdff:fe2e:3217) |
| 2025-11-18 12:35:16 +0000 | Zemy_ | (~Zemy@72.178.108.235) |
| 2025-11-18 12:37:59 +0000 | <Leary> | tomsmeding: I want to include (lightly edited) logs of this conversation in the gist as a warning to posterity; do you mind? |
| 2025-11-18 12:38:14 +0000 | <tomsmeding> | sure, they are public anyway :) |
| 2025-11-18 12:39:05 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:6c30:fdff:fe2e:3217) (Ping timeout: 245 seconds) |
| 2025-11-18 12:40:40 +0000 | <Leary> | There is a certain irony in asking that of the guy who hosts public logs of the whole channel, but it just felt a bit rude to quote a casual conversation somewhere less transient without asking. |
| 2025-11-18 12:42:25 +0000 | <tomsmeding> | Leary: heh. Thanks for asking though, I appreciate it :) |
| 2025-11-18 12:45:29 +0000 | SlackCoder | (~SlackCode@64-94-63-8.ip.weststar.net.ky) SlackCoder |
| 2025-11-18 12:47:15 +0000 | omidmash | (~omidmash@user/omidmash) omidmash |
| 2025-11-18 12:48:32 +0000 | <omidmash> | Good day. I need to install Haskell on lots of PCs that I manage using ansible playbooks. These computers are in computer labors, so I need GHC/I to work reliably. The official instruction installs in home folder (which I have set to reset on reboot), and needs user prompts. Is there a way to install Haskell systemwide that is automatable, for |
| 2025-11-18 12:48:32 +0000 | <omidmash> | instance with ansible? |
| 2025-11-18 12:53:49 +0000 | <omidmash> | Ah I have just noticed the haskell-ops channel |
| 2025-11-18 12:54:01 +0000 | <tomsmeding> | omidmash: solves only half of your problem, but the ghcup install script responds to the BOOTSTRAP_HASKELL_NONINTERACTIVE environment variable |
| 2025-11-18 12:54:15 +0000 | <kaol> | If this is about a linux distribution going with the package provided by them is one option. |
| 2025-11-18 13:05:43 +0000 | trickard | (~trickard@cpe-62-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 13:05:57 +0000 | trickard_ | (~trickard@cpe-62-98-47-163.wireline.com.au) |
| 2025-11-18 13:09:39 +0000 | trickard_ | (~trickard@cpe-62-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 13:16:50 +0000 | trickard_ | (~trickard@cpe-62-98-47-163.wireline.com.au) |
| 2025-11-18 13:25:56 +0000 | Nachtgespenst | (~user@user/siracusa) (Quit: Bye!) |
| 2025-11-18 13:26:40 +0000 | Googulator | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 13:26:54 +0000 | Square2 | (~Square4@user/square) Square |
| 2025-11-18 13:30:15 +0000 | fp | (~Thunderbi@2001:708:20:1406::10c5) (Ping timeout: 252 seconds) |
| 2025-11-18 13:35:56 +0000 | fp | (~Thunderbi@2001:708:150:10::7e06) fp |
| 2025-11-18 13:44:47 +0000 | Lycurgus | (~juan@user/Lycurgus) Lycurgus |
| 2025-11-18 13:51:02 +0000 | spew | (~spew@user/spew) spew |
| 2025-11-18 13:54:15 +0000 | <haskellbridge> | <Morj> Is there no function in base to get the bit length of a positive Integer? |
| 2025-11-18 13:54:30 +0000 | <haskellbridge> | <Morj> I would google myself but stackoverflow is down with cloudflare |
| 2025-11-18 13:54:47 +0000 | <lucabtz> | isnt it just log2 |
| 2025-11-18 13:54:56 +0000 | <lucabtz> | with some flooring or ceiling |
| 2025-11-18 13:55:23 +0000 | <lucabtz> | maybe not efficient though |
| 2025-11-18 13:59:27 +0000 | <haskellbridge> | <Morj> There's logBase, but that's for Floating. I don't see a log2 function |
| 2025-11-18 13:59:52 +0000 | bitdex_ | (~bitdex@gateway/tor-sasl/bitdex) (Quit: = "") |
| 2025-11-18 13:59:55 +0000 | <haskellbridge> | <Morj> That's fine, I already wrote "lb a = flip Data.Function.fix (abs a, 0) $ \go (x, r) -> if x == 0 then r else go (Data.Bits.shiftR x 1, r + 1)" |
| 2025-11-18 14:00:25 +0000 | <haskellbridge> | <Morj> It's off by one but that's fine |
| 2025-11-18 14:01:15 +0000 | trickard_ | (~trickard@cpe-62-98-47-163.wireline.com.au) (Ping timeout: 244 seconds) |
| 2025-11-18 14:01:38 +0000 | trickard_ | (~trickard@cpe-62-98-47-163.wireline.com.au) |
| 2025-11-18 14:02:25 +0000 | srazkvt | (~sarah@user/srazkvt) (Ping timeout: 264 seconds) |
| 2025-11-18 14:07:37 +0000 | <lucabtz> | Morj by log2 i didnt mean anything specific about haskell, just the natural logarithm in base 2, but you are right it is for floating |
| 2025-11-18 14:08:28 +0000 | <lucabtz> | that's why i said maybe not good for efficiency |
| 2025-11-18 14:08:46 +0000 | Lycurgus | (~juan@user/Lycurgus) (bye room!) |
| 2025-11-18 14:10:09 +0000 | trickard_ | trickard |
| 2025-11-18 14:11:56 +0000 | weary-traveler | (~user@user/user363627) (Remote host closed the connection) |
| 2025-11-18 14:12:00 +0000 | vanishingideal | (~vanishing@user/vanishingideal) (Ping timeout: 245 seconds) |
| 2025-11-18 14:13:41 +0000 | <haskellbridge> | <Morj> It's not only not good for efficiency, but logBase 2 (2^1024) == NaN |
| 2025-11-18 14:13:52 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:84d9:a0ff:fe3d:6f11) |
| 2025-11-18 14:13:55 +0000 | <haskellbridge> | <Morj> I don't care about efficiency in ghci, more about usefulness |
| 2025-11-18 14:14:19 +0000 | CiaoSen | (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 260 seconds) |
| 2025-11-18 14:16:39 +0000 | Zemy_ | (~Zemy@72.178.108.235) (Ping timeout: 244 seconds) |
| 2025-11-18 14:18:26 +0000 | <lucabtz> | sure sure, i just meant its related to log2, didnt know about the specific haskell functions |
| 2025-11-18 14:20:25 +0000 | srazkvt | (~sarah@user/srazkvt) srazkvt |
| 2025-11-18 14:24:46 +0000 | rekahsoft | (~rekahsoft@70.51.99.245) rekahsoft |
| 2025-11-18 14:27:17 +0000 | <Leary> | Morj: `GHC.Num.integerLog2` |
| 2025-11-18 14:29:05 +0000 | <haskellbridge> | <Morj> Thanks, that's exactly what I wanted |
| 2025-11-18 14:30:58 +0000 | morj | (~morj@user/morj) morj |
| 2025-11-18 14:31:24 +0000 | <morj> | The tagging of my bridged account still doesn't work, but what if I write out @morj:morj.men ? |
| 2025-11-18 14:31:35 +0000 | <haskellbridge> | <Morj> morj: Hm |
| 2025-11-18 14:31:40 +0000 | <morj> | Morj hm |
| 2025-11-18 14:31:50 +0000 | <haskellbridge> | <Morj> Wait what, this one tagged me |
| 2025-11-18 14:32:07 +0000 | <haskellbridge> | <Morj> What are you all doing wrong? |
| 2025-11-18 14:39:55 +0000 | pr1sm | (~pr1sm@24.91.163.31) |
| 2025-11-18 14:39:58 +0000 | <tomsmeding> | Morj test |
| 2025-11-18 14:39:59 +0000 | <dutchie> | Morj: there was no colon on the second one |
| 2025-11-18 14:40:30 +0000 | Zemy_ | (~Zemy@syn-192-154-181-091.biz.spectrum.com) |
| 2025-11-18 14:43:04 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:84d9:a0ff:fe3d:6f11) (Ping timeout: 256 seconds) |
| 2025-11-18 14:47:37 +0000 | <haskellbridge> | <Morj> Um, now I see both (I was just afk) |
| 2025-11-18 14:49:08 +0000 | <tomsmeding> | Morj: have you considered correlating matrix notification behaviour with the phase of the moon |
| 2025-11-18 14:49:29 +0000 | <haskellbridge> | <Morj> Yes, it's uncorrelated |
| 2025-11-18 14:49:48 +0000 | <tomsmeding> | that's a relief |
| 2025-11-18 14:50:10 +0000 | <haskellbridge> | <Morj> It's not the matrix itself (which also has a million problems), but the bridge misbehaving. But I believe this problem was reported |
| 2025-11-18 14:50:20 +0000 | <tomsmeding> | oh right, I remember |
| 2025-11-18 14:51:31 +0000 | <tomsmeding> | https://github.com/hifi/heisenbridge/issues/310 |
| 2025-11-18 14:51:35 +0000 | SlackCoder | (~SlackCode@64-94-63-8.ip.weststar.net.ky) (Ping timeout: 245 seconds) |
| 2025-11-18 14:52:26 +0000 | <tomsmeding> | Morj: so it's possible that it works _because_ you're now also here with your morj irc user |
| 2025-11-18 14:52:37 +0000 | <haskellbridge> | <Morj> Huh |
| 2025-11-18 14:52:43 +0000 | morj | (~morj@user/morj) (Konversation terminated!) |
| 2025-11-18 14:52:48 +0000 | <haskellbridge> | <Morj> Try now plz |
| 2025-11-18 14:52:54 +0000 | <tomsmeding> | Morj test |
| 2025-11-18 14:52:59 +0000 | <haskellbridge> | <Morj> Yep, no notif |
| 2025-11-18 14:57:02 +0000 | fp | (~Thunderbi@2001:708:150:10::7e06) (Ping timeout: 265 seconds) |
| 2025-11-18 14:57:48 +0000 | <lucabtz> | how about the colon? |
| 2025-11-18 14:57:53 +0000 | <lucabtz> | Morj: test |
| 2025-11-18 14:57:59 +0000 | <haskellbridge> | <Morj> Nope |
| 2025-11-18 14:59:04 +0000 | ss4 | (~wootehfoo@user/wootehfoot) wootehfoot |
| 2025-11-18 14:59:11 +0000 | statusbot | (~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com) statusbot |
| 2025-11-18 15:02:15 +0000 | Xe_ | (~Xe@perl/impostor/xe) Xe |
| 2025-11-18 15:02:25 +0000 | rembo10_ | (~rembo10@main.remulis.com) |
| 2025-11-18 15:02:55 +0000 | Inline | (~inlinE@2001-4dd7-ae97-0-4674-ae6d-2607-c022.ipv6dyn.netcologne.de) Inline |
| 2025-11-18 15:03:07 +0000 | jangerma1 | (~jangermad@104-54-32-17.lightspeed.irvnca.sbcglobal.net) (Remote host closed the connection) |
| 2025-11-18 15:03:45 +0000 | ystael_ | (~ystael@user/ystael) ystael |
| 2025-11-18 15:07:13 +0000 | connrs | (~connrs@user/connrs) (Ping timeout: 264 seconds) |
| 2025-11-18 15:07:15 +0000 | fp | (~Thunderbi@2001:708:20:1406::10c5) fp |
| 2025-11-18 15:07:27 +0000 | fgarcia_ | (~lei@user/fgarcia) fgarcia |
| 2025-11-18 15:08:23 +0000 | rekahsoft | (~rekahsoft@70.51.99.245) (*.net *.split) |
| 2025-11-18 15:08:23 +0000 | spew | (~spew@user/spew) (*.net *.split) |
| 2025-11-18 15:08:23 +0000 | wootehfoot | (~wootehfoo@user/wootehfoot) (*.net *.split) |
| 2025-11-18 15:08:23 +0000 | xff0x | (~xff0x@2405:6580:b080:900:d0b4:2969:7511:437b) (*.net *.split) |
| 2025-11-18 15:08:23 +0000 | synchromesh | (~john@2406:5a00:2412:2c00:6993:feea:8b51:a565) (*.net *.split) |
| 2025-11-18 15:08:23 +0000 | omidmash | (~omidmash@user/omidmash) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | Shark8 | (~Shark8@c-174-56-102-109.hsd1.nm.comcast.net) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | tt12316 | (~tt1231@2603:6010:8700:4a81:a4f6:acff:fe95:3803) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | itaipu | (~itaipu@168.121.97.28) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | xal | (~xal@mx1.xal.systems) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | enikar | (~enikar@user/enikar) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | tremon | (~tremon@83.80.159.219) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | statusbot2 | (~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | EvanR | (~EvanR@user/evanr) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | simplystuart | (~simplystu@c-75-75-152-164.hsd1.pa.comcast.net) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | paddymahoney | (~paddymaho@pool-99-250-10-137.cpe.net.cable.rogers.com) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | traxex | (traxex@user/traxex) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | ystael | (~ystael@user/ystael) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | fgarcia | (~lei@user/fgarcia) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | rembo10 | (~rembo10@main.remulis.com) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | tcard_ | (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | Xe | (~Xe@perl/impostor/xe) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | mstksg | (~jle`@2603:8001:3b00:11:7b1b:9c2a:d864:1c7b) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | sp1ff | (~user@2601:1c2:4c00:6820::8bad) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | arahael | (~wetfoot@user/arahael) (*.net *.split) |
| 2025-11-18 15:08:24 +0000 | elenril | (~elenril@tutturu.khirnov.net) (*.net *.split) |
| 2025-11-18 15:08:27 +0000 | fgarcia_ | fgarcia |
| 2025-11-18 15:09:06 +0000 | connrs | (~connrs@user/connrs) connrs |
| 2025-11-18 15:11:01 +0000 | EvanR | (~EvanR@2600:1700:ba69:10:40ed:456a:b2ec:28ad) |
| 2025-11-18 15:11:01 +0000 | simplystuart | (~simplystu@c-75-75-152-164.hsd1.pa.comcast.net) |
| 2025-11-18 15:11:01 +0000 | Dhark8 | (~Shark8@c-174-56-102-109.hsd1.nm.comcast.net) |
| 2025-11-18 15:11:01 +0000 | spew | (~spew@user/spew) spew |
| 2025-11-18 15:11:01 +0000 | omidmash | (~omidmash@user/omidmash) omidmash |
| 2025-11-18 15:11:01 +0000 | xff0x | (~xff0x@2405:6580:b080:900:d0b4:2969:7511:437b) |
| 2025-11-18 15:11:01 +0000 | synchromesh | (~john@2406:5a00:2412:2c00:6993:feea:8b51:a565) synchromesh |
| 2025-11-18 15:11:01 +0000 | tt12316 | (~tt1231@2603:6010:8700:4a81:a4f6:acff:fe95:3803) tt1231 |
| 2025-11-18 15:11:01 +0000 | xal | (~xal@mx1.xal.systems) xal |
| 2025-11-18 15:11:01 +0000 | enikar | (~enikar@user/enikar) enikar |
| 2025-11-18 15:11:01 +0000 | tcard_ | (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
| 2025-11-18 15:11:01 +0000 | mstksg | (~jle`@2603:8001:3b00:11:7b1b:9c2a:d864:1c7b) jle` |
| 2025-11-18 15:11:01 +0000 | sp1ff | (~user@2601:1c2:4c00:6820::8bad) sp1ff |
| 2025-11-18 15:11:01 +0000 | arahael | (~wetfoot@user/arahael) arahael |
| 2025-11-18 15:11:01 +0000 | elenril | (~elenril@tutturu.khirnov.net) elenril |
| 2025-11-18 15:12:28 +0000 | FANTOM | (~fantom@212.228.181.156) (Ping timeout: 256 seconds) |
| 2025-11-18 15:12:46 +0000 | traxex | (traxex@user/traxex) traxex |
| 2025-11-18 15:13:19 +0000 | Tuplanolla | (~Tuplanoll@91-152-225-194.elisa-laajakaista.fi) Tuplanolla |
| 2025-11-18 15:13:52 +0000 | FANTOM | (~fantom@212.228.181.156) |
| 2025-11-18 15:15:05 +0000 | synchromesh | (~john@2406:5a00:2412:2c00:6993:feea:8b51:a565) (Read error: Connection reset by peer) |
| 2025-11-18 15:15:30 +0000 | tremon | (~tremon@83.80.159.219) tremon |
| 2025-11-18 15:15:33 +0000 | merijn | (~merijn@77.242.116.146) (Quit: leaving) |
| 2025-11-18 15:16:02 +0000 | synchromesh | (~john@2406:5a00:2412:2c00:6993:feea:8b51:a565) synchromesh |
| 2025-11-18 15:16:15 +0000 | itaipu | (~itaipu@168.121.97.28) itaipu |
| 2025-11-18 15:17:14 +0000 | paddymahoney | (~paddymaho@pool-99-250-10-137.cpe.net.cable.rogers.com) |
| 2025-11-18 15:17:31 +0000 | ezzieyguywuf | (~Unknown@user/ezzieyguywuf) ezzieyguywuf |
| 2025-11-18 15:18:13 +0000 | trickard | (~trickard@cpe-62-98-47-163.wireline.com.au) (Read error: Connection reset by peer) |
| 2025-11-18 15:18:13 +0000 | Zemy_ | (~Zemy@syn-192-154-181-091.biz.spectrum.com) (Read error: Connection reset by peer) |
| 2025-11-18 15:18:20 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:fc8a:aeff:fee2:a9bc) |
| 2025-11-18 15:18:27 +0000 | trickard_ | (~trickard@cpe-62-98-47-163.wireline.com.au) |
| 2025-11-18 15:18:50 +0000 | Zemy_ | (~Zemy@12.50.240.58) |
| 2025-11-18 15:18:59 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-11-18 15:20:56 +0000 | Everything | (~Everythin@static.208.206.21.65.clients.your-server.de) Everything |
| 2025-11-18 15:23:09 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:fc8a:aeff:fee2:a9bc) (Ping timeout: 260 seconds) |
| 2025-11-18 15:28:23 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:b45d:eaff:fe8f:4bed) |
| 2025-11-18 15:28:23 +0000 | Zemy_ | (~Zemy@12.50.240.58) (Read error: Connection reset by peer) |
| 2025-11-18 15:32:24 +0000 | srazkvt | (~sarah@user/srazkvt) (Quit: Konversation terminated!) |
| 2025-11-18 15:33:46 +0000 | finsternis | (~X@23.226.237.192) (Read error: Connection reset by peer) |
| 2025-11-18 15:43:26 +0000 | AlexNoo_ | AlexNoo |
| 2025-11-18 15:51:04 +0000 | SlackCoder | (~SlackCode@64-94-63-8.ip.weststar.net.ky) SlackCoder |
| 2025-11-18 15:55:27 +0000 | fp | (~Thunderbi@2001:708:20:1406::10c5) (Ping timeout: 252 seconds) |
| 2025-11-18 16:01:07 +0000 | Zemy_ | (~Zemy@72.178.108.235) |
| 2025-11-18 16:04:16 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:b45d:eaff:fe8f:4bed) (Ping timeout: 255 seconds) |
| 2025-11-18 16:05:11 +0000 | poscat | (~poscat@user/poscat) poscat |
| 2025-11-18 16:05:12 +0000 | Zemy_ | (~Zemy@72.178.108.235) (Read error: Connection reset by peer) |
| 2025-11-18 16:05:17 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:8f2:a6ff:fe96:9039) |
| 2025-11-18 16:06:27 +0000 | Zemy_ | (~Zemy@72.178.108.235) |
| 2025-11-18 16:07:00 +0000 | poscat0x04 | (~poscat@user/poscat) (Ping timeout: 252 seconds) |
| 2025-11-18 16:09:40 +0000 | Zemy | (~Zemy@2600:100c:b0ae:c0b:8f2:a6ff:fe96:9039) (Ping timeout: 264 seconds) |
| 2025-11-18 16:17:28 +0000 | oneeyedalien | (~oneeyedal@user/oneeyedalien) (Quit: Leaving) |
| 2025-11-18 16:19:52 +0000 | haltingsolver | (~cmo@2604:3d09:207f:8000::d1dc) |
| 2025-11-18 16:26:56 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 265 seconds) |
| 2025-11-18 16:28:19 +0000 | Square2 | (~Square4@user/square) (Remote host closed the connection) |
| 2025-11-18 16:28:54 +0000 | Square2 | (~Square4@user/square) Square |
| 2025-11-18 16:29:35 +0000 | Lord_of_Life_ | (~Lord@user/lord-of-life/x-2819915) Lord_of_Life |
| 2025-11-18 16:29:43 +0000 | Lord_of_Life | (~Lord@user/lord-of-life/x-2819915) (Ping timeout: 240 seconds) |
| 2025-11-18 16:30:55 +0000 | Lord_of_Life_ | Lord_of_Life |
| 2025-11-18 16:31:36 +0000 | trickard_ | trickard |
| 2025-11-18 16:32:36 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer) |
| 2025-11-18 16:33:27 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) L29Ah |
| 2025-11-18 16:35:11 +0000 | <geekosaur> | re matrix, yes, we ran into this issue some time ago and I filed a bug report against the bridge software |
| 2025-11-18 16:35:21 +0000 | <geekosaur> | haven't heard anything back, of course |
| 2025-11-18 16:35:42 +0000 | <geekosaur> | (symptoms make me suspect it's passing the wrong side of the bridge's user list to the function that checks for mentions) |
| 2025-11-18 16:36:24 +0000 | <humasect> | error: symptoms: symbol not found |
| 2025-11-18 16:37:26 +0000 | lucabtz | (~lucabtz@user/lucabtz) (Remote host closed the connection) |
| 2025-11-18 16:47:23 +0000 | pr1sm | (~pr1sm@24.91.163.31) (Remote host closed the connection) |
| 2025-11-18 16:53:15 +0000 | Googulator | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 16:53:54 +0000 | kmein_ | kmein |
| 2025-11-18 16:54:07 +0000 | sindu | (~sindu@77.19.134.151.tmi.telenormobil.no) |
| 2025-11-18 17:03:33 +0000 | Everything | (~Everythin@static.208.206.21.65.clients.your-server.de) (Quit: leaving) |
| 2025-11-18 17:17:33 +0000 | SlackCoder | (~SlackCode@64-94-63-8.ip.weststar.net.ky) (Ping timeout: 250 seconds) |
| 2025-11-18 17:23:50 +0000 | Googulator | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 17:24:06 +0000 | Googulator | (~Googulato@85-238-67-234.pool.digikabel.hu) |
| 2025-11-18 17:26:20 +0000 | kuribas` | (~user@ip-188-118-57-242.reverse.destiny.be) (Remote host closed the connection) |
| 2025-11-18 17:32:49 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 17:35:04 +0000 | sord937 | (~sord937@gateway/tor-sasl/sord937) (Quit: sord937) |
| 2025-11-18 17:54:36 +0000 | tromp | (~textual@89-99-43-152.cable.dynamic.v4.ziggo.nl) |
| 2025-11-18 17:58:49 +0000 | sindu | (~sindu@77.19.134.151.tmi.telenormobil.no) (Ping timeout: 264 seconds) |
| 2025-11-18 18:00:26 +0000 | sindu | (~sindu@77.19.134.151.tmi.telenormobil.no) |
| 2025-11-18 18:06:20 +0000 | Zemy_ | (~Zemy@72.178.108.235) (Remote host closed the connection) |
| 2025-11-18 18:07:14 +0000 | myxos | (~myxos@2001:579:8380:f20:acd1:e89a:db86:2b9b) myxokephale |
| 2025-11-18 18:07:23 +0000 | Zemy | (~Zemy@72.178.108.235) |
| 2025-11-18 18:10:22 +0000 | myxokephale | (~myxos@2001:579:8380:f20:a8ed:41b7:d57f:8d02) (Ping timeout: 265 seconds) |
| 2025-11-18 18:17:56 +0000 | target_i | (~target_i@user/target-i/x-6023099) target_i |
| 2025-11-18 18:22:48 +0000 | target_i | (~target_i@user/target-i/x-6023099) (Ping timeout: 260 seconds) |
| 2025-11-18 18:23:16 +0000 | target_i | (~target_i@user/target-i/x-6023099) target_i |
| 2025-11-18 18:24:07 +0000 | tromp | (~textual@89-99-43-152.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-11-18 18:24:12 +0000 | szkl | (uid110435@id-110435.uxbridge.irccloud.com) szkl |
| 2025-11-18 18:25:12 +0000 | haltingsolver | (~cmo@2604:3d09:207f:8000::d1dc) (Ping timeout: 256 seconds) |
| 2025-11-18 18:25:56 +0000 | peterbecich | (~Thunderbi@172.222.148.214) peterbecich |
| 2025-11-18 18:35:28 +0000 | ljdarj | (~Thunderbi@user/ljdarj) ljdarj |
| 2025-11-18 18:36:53 +0000 | tromp | (~textual@2001:1c00:3487:1b00:8d4:6354:928b:6095) |
| 2025-11-18 18:38:11 +0000 | peterbecich | (~Thunderbi@172.222.148.214) (Ping timeout: 244 seconds) |
| 2025-11-18 18:39:36 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection) |
| 2025-11-18 18:39:59 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) humasect |
| 2025-11-18 18:40:54 +0000 | chele | (~chele@user/chele) (Remote host closed the connection) |
| 2025-11-18 18:43:18 +0000 | tzh | (~tzh@c-76-115-131-146.hsd1.or.comcast.net) tzh |
| 2025-11-18 18:56:45 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection) |
| 2025-11-18 18:59:17 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) humasect |
| 2025-11-18 19:05:43 +0000 | acidjnk | (~acidjnk@p200300d6e717199494cb24f290a326c5.dip0.t-ipconnect.de) (Ping timeout: 264 seconds) |
| 2025-11-18 19:11:06 +0000 | Nachtgespenst | (~user@user/siracusa) siracusa |
| 2025-11-18 19:28:17 +0000 | vanishingideal | (~vanishing@user/vanishingideal) vanishingideal |
| 2025-11-18 19:28:53 +0000 | Zemy | (~Zemy@72.178.108.235) (Ping timeout: 264 seconds) |
| 2025-11-18 19:49:48 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection) |
| 2025-11-18 19:51:20 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) humasect |
| 2025-11-18 20:06:11 +0000 | infinity0 | (~infinity0@pwned.gg) (Remote host closed the connection) |
| 2025-11-18 20:07:00 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection) |
| 2025-11-18 20:07:22 +0000 | acidjnk | (~acidjnk@p200300d6e7171905155abf32f6b4a29d.dip0.t-ipconnect.de) acidjnk |
| 2025-11-18 20:08:50 +0000 | infinity0 | (~infinity0@pwned.gg) infinity0 |
| 2025-11-18 20:10:24 +0000 | Shark8 | (~Shark8@c-174-56-102-109.hsd1.nm.comcast.net) |
| 2025-11-18 20:12:18 +0000 | Dhark8 | (~Shark8@c-174-56-102-109.hsd1.nm.comcast.net) (Ping timeout: 256 seconds) |
| 2025-11-18 20:15:49 +0000 | Googulator74 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 20:18:12 +0000 | Googulator | (~Googulato@85-238-67-234.pool.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 20:23:09 +0000 | jreicher | (~user@user/jreicher) (Quit: In transit) |
| 2025-11-18 20:25:02 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-11-18 20:25:44 +0000 | haltingsolver | (~cmo@2604:3d09:207f:8000::d1dc) |
| 2025-11-18 20:29:30 +0000 | michalz | (~michalz@185.246.207.215) (Remote host closed the connection) |
| 2025-11-18 20:30:24 +0000 | CiaoSen | (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) CiaoSen |
| 2025-11-18 20:30:25 +0000 | szkl | (uid110435@id-110435.uxbridge.irccloud.com) (Quit: Connection closed for inactivity) |
| 2025-11-18 20:30:54 +0000 | Dhark8 | (~Shark8@c-174-56-102-109.hsd1.nm.comcast.net) |
| 2025-11-18 20:33:45 +0000 | Shark8 | (~Shark8@c-174-56-102-109.hsd1.nm.comcast.net) (Ping timeout: 252 seconds) |
| 2025-11-18 20:34:57 +0000 | Dhark8 | (~Shark8@c-174-56-102-109.hsd1.nm.comcast.net) (Ping timeout: 244 seconds) |
| 2025-11-18 20:36:00 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 20:37:02 +0000 | ft | (~ft@p4fc2aaeb.dip0.t-ipconnect.de) ft |
| 2025-11-18 20:37:17 +0000 | infinity0 | (~infinity0@pwned.gg) (Remote host closed the connection) |
| 2025-11-18 20:39:56 +0000 | infinity0 | (~infinity0@pwned.gg) infinity0 |
| 2025-11-18 20:53:29 +0000 | CiaoSen | (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 264 seconds) |
| 2025-11-18 20:58:59 +0000 | CiaoSen | (~Jura@ipservice-092-210-206-067.092.210.pools.vodafone-ip.de) CiaoSen |
| 2025-11-18 21:01:16 +0000 | infinity0 | (~infinity0@pwned.gg) (Remote host closed the connection) |
| 2025-11-18 21:03:53 +0000 | spew | (~spew@user/spew) (Quit: WeeChat 4.6.3) |
| 2025-11-18 21:06:47 +0000 | infinity0 | (~infinity0@pwned.gg) infinity0 |
| 2025-11-18 21:11:06 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer) |
| 2025-11-18 21:20:41 +0000 | Googulator74 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) (Quit: Client closed) |
| 2025-11-18 21:20:47 +0000 | Googulator98 | (~Googulato@2a01-036d-0106-0231-4475-80b4-5cdc-43d6.pool6.digikabel.hu) |
| 2025-11-18 21:21:04 +0000 | emmanuelux | (~emmanuelu@user/emmanuelux) emmanuelux |
| 2025-11-18 21:21:37 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 264 seconds) |
| 2025-11-18 21:24:03 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) L29Ah |
| 2025-11-18 21:25:43 +0000 | target_i | (~target_i@user/target-i/x-6023099) (Quit: leaving) |
| 2025-11-18 21:28:54 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 21:32:31 +0000 | jreicher | (~user@user/jreicher) jreicher |
| 2025-11-18 21:34:31 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 250 seconds) |
| 2025-11-18 21:43:04 +0000 | takuan | (~takuan@d8D86B9E9.access.telenet.be) (Remote host closed the connection) |
| 2025-11-18 21:43:55 +0000 | Pozyomka | (~pyon@user/pyon) (Ping timeout: 246 seconds) |
| 2025-11-18 21:45:54 +0000 | Pozyomka | (~pyon@user/pyon) pyon |
| 2025-11-18 21:46:28 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 22:07:38 +0000 | rata2 | (~ohomecham@user/rata2) rata2 |
| 2025-11-18 22:08:16 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) humasect |
| 2025-11-18 22:08:25 +0000 | rata2 | (~ohomecham@user/rata2) (Client Quit) |
| 2025-11-18 22:09:34 +0000 | rata2 | (~ohomecham@user/rata2) rata2 |
| 2025-11-18 22:10:35 +0000 | ljdarj1 | (~Thunderbi@user/ljdarj) ljdarj |
| 2025-11-18 22:10:35 +0000 | ljdarj1 | (~Thunderbi@user/ljdarj) (Client Quit) |
| 2025-11-18 22:13:13 +0000 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 264 seconds) |
| 2025-11-18 22:14:29 +0000 | ljdarj | (~Thunderbi@user/ljdarj) (Ping timeout: 264 seconds) |
| 2025-11-18 22:15:32 +0000 | tromp | (~textual@2001:1c00:3487:1b00:8d4:6354:928b:6095) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-11-18 22:16:29 +0000 | tromp | (~textual@2001:1c00:3487:1b00:8d4:6354:928b:6095) |
| 2025-11-18 22:30:51 +0000 | weary-traveler | (~user@user/user363627) user363627 |
| 2025-11-18 22:36:30 +0000 | vanishingideal | (~vanishing@user/vanishingideal) (Ping timeout: 256 seconds) |
| 2025-11-18 22:38:08 +0000 | vanishingideal | (~vanishing@user/vanishingideal) vanishingideal |
| 2025-11-18 22:38:45 +0000 | divlamir | (~divlamir@user/divlamir) (Read error: Connection reset by peer) |
| 2025-11-18 22:39:06 +0000 | divlamir | (~divlamir@user/divlamir) divlamir |
| 2025-11-18 22:50:32 +0000 | mange | (~mange@user/mange) mange |
| 2025-11-18 22:55:32 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds) |
| 2025-11-18 22:55:56 +0000 | Square3 | (~Square@user/square) Square |
| 2025-11-18 22:59:28 +0000 | Square2 | (~Square4@user/square) (Ping timeout: 256 seconds) |
| 2025-11-18 23:01:17 +0000 | Sgeo | (~Sgeo@user/sgeo) Sgeo |
| 2025-11-18 23:04:50 +0000 | __monty__ | (~toonn@user/toonn) (Quit: leaving) |
| 2025-11-18 23:05:17 +0000 | Fischmie- | (~Fischmiep@user/Fischmiep) Fischmiep |
| 2025-11-18 23:05:50 +0000 | Fischmiep | (~Fischmiep@user/Fischmiep) (Read error: Connection reset by peer) |
| 2025-11-18 23:06:55 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 23:08:31 +0000 | CiaoSen | (~Jura@ipservice-092-210-206-067.092.210.pools.vodafone-ip.de) (Ping timeout: 240 seconds) |
| 2025-11-18 23:09:39 +0000 | tromp | (~textual@2001:1c00:3487:1b00:8d4:6354:928b:6095) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-11-18 23:12:27 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 250 seconds) |
| 2025-11-18 23:18:41 +0000 | Guest55 | (~Guest55@2600:480a:2930:b500:15d4:3bba:ce3f:970) |
| 2025-11-18 23:18:45 +0000 | <Guest55> | hi |
| 2025-11-18 23:19:58 +0000 | karenw | (~karenw@user/karenw) karenw |
| 2025-11-18 23:23:18 +0000 | geekosaur | waves |
| 2025-11-18 23:23:48 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 23:28:33 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-11-18 23:30:05 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 23:31:17 +0000 | vanishingideal | (~vanishing@user/vanishingideal) (Ping timeout: 264 seconds) |
| 2025-11-18 23:32:47 +0000 | vanishingideal | (~vanishing@user/vanishingideal) vanishingideal |
| 2025-11-18 23:33:05 +0000 | sindu | (~sindu@77.19.134.151.tmi.telenormobil.no) (Ping timeout: 264 seconds) |
| 2025-11-18 23:34:45 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-11-18 23:35:02 +0000 | sindu | (~sindu@2.148.32.207.tmi.telenormobil.no) |
| 2025-11-18 23:38:30 +0000 | haltingsolver | (~cmo@2604:3d09:207f:8000::d1dc) (Remote host closed the connection) |
| 2025-11-18 23:38:51 +0000 | haltingsolver | (~cmo@2604:3d09:207f:8000::d1dc) |
| 2025-11-18 23:45:20 +0000 | Guest55 | (~Guest55@2600:480a:2930:b500:15d4:3bba:ce3f:970) (Quit: Client closed) |
| 2025-11-18 23:45:52 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-11-18 23:46:39 +0000 | peterbecich | (~Thunderbi@172.222.148.214) peterbecich |
| 2025-11-18 23:50:55 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 255 seconds) |
| 2025-11-18 23:53:20 +0000 | EvanR | particles |
| 2025-11-18 23:56:29 +0000 | <Inline> | ABC particle soup ? |
| 2025-11-18 23:57:05 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |