| 2026-02-25 00:00:02 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 00:04:20 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 00:07:49 +0100 | <lantti> | mine was https://privatebin.net/?97447d6805a0ea49#CfnZntNYLfYtSvpCod6DSKRYS8xDhzqycvhjmKNhppjv |
| 2026-02-25 00:07:59 +0100 | <haskellbridge> | <ijouw> My solution fails locally at readLn? I am confused. |
| 2026-02-25 00:10:11 +0100 | emmanuelux | (~em@user/emmanuelux) emmanuelux |
| 2026-02-25 00:10:36 +0100 | <haskellbridge> | <ijouw> I was using a library which wraps reads with Maybe and forgot to adjust the type... |
| 2026-02-25 00:10:50 +0100 | <haskellbridge> | <ijouw> When removing it so i can submit with fewer deps |
| 2026-02-25 00:15:24 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 00:19:15 +0100 | <mauke> | lantti: I suggest changing "otherwise" to "print" for even more confusion |
| 2026-02-25 00:19:45 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds) |
| 2026-02-25 00:20:59 +0100 | snek | (sid280155@id-280155.lymington.irccloud.com) (Server closed connection) |
| 2026-02-25 00:21:11 +0100 | snek | (sid280155@id-280155.lymington.irccloud.com) snek |
| 2026-02-25 00:21:44 +0100 | <lantti> | mauke: is it not meant to be used like that? is it only for gurads then? |
| 2026-02-25 00:22:21 +0100 | <lantti> | guards, even |
| 2026-02-25 00:23:39 +0100 | saolsen | (sid26430@id-26430.lymington.irccloud.com) (Server closed connection) |
| 2026-02-25 00:23:50 +0100 | saolsen | (sid26430@id-26430.lymington.irccloud.com) saolsen |
| 2026-02-25 00:25:00 +0100 | <lantti> | but looking at my code now I do admit that there are some decisions that only make sense if you consider that they were the smallest change to the previous version, like the decision to include the lengths of the sets in the same list as the sets themselves |
| 2026-02-25 00:25:38 +0100 | <lantti> | (the previous version used length on the generated lists) |
| 2026-02-25 00:26:53 +0100 | <lantti> | (and the term "step squad" comes from the BBC childrens series called Numberblocks) |
| 2026-02-25 00:29:25 +0100 | <lantti> | (which I can recommend to anyone with children in the 1-3 primary school or earlier) |
| 2026-02-25 00:30:47 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 00:32:16 +0100 | <lantti> | should I use _ -> as the catch all case then? I'm not working with haskell all that much as one may notice |
| 2026-02-25 00:33:05 +0100 | Comstar | (~Comstar@user/Comstar) Comstar |
| 2026-02-25 00:33:39 +0100 | acidsys | (~crameleon@openSUSE/member/crameleon) (Server closed connection) |
| 2026-02-25 00:33:54 +0100 | acidsys | (~crameleon@openSUSE/member/crameleon) crameleon |
| 2026-02-25 00:34:09 +0100 | emmanuelux | (~em@user/emmanuelux) (Quit: bye) |
| 2026-02-25 00:35:05 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds) |
| 2026-02-25 00:36:05 +0100 | <int-e> | mauke: Yeah that looks like the best solution. Kind of sad; the simple greedy algorithm for the knapsack problem would work here. |
| 2026-02-25 00:36:15 +0100 | emmanuelux | (~em@user/emmanuelux) emmanuelux |
| 2026-02-25 00:37:02 +0100 | <int-e> | (but then you'd have to accumulate a full result before printing anything) |
| 2026-02-25 00:38:57 +0100 | chenjf | (~chenjf@68.64.178.54) |
| 2026-02-25 00:39:39 +0100 | tamer | (~tamer@user/tamer) (Server closed connection) |
| 2026-02-25 00:40:00 +0100 | tamer | (~tamer@5.2.74.82) |
| 2026-02-25 00:40:59 +0100 | bjs | (sid190364@user/bjs) (Server closed connection) |
| 2026-02-25 00:41:15 +0100 | bjs | (sid190364@user/bjs) bjs |
| 2026-02-25 00:44:58 +0100 | <Comstar> | I can't think of a way to implement breadth-first searches (for the sake of discussion assume for a binary tree) that doesn't use a `Control.Monad.State` implementation |
| 2026-02-25 00:45:29 +0100 | <Comstar> | do y'all know of a more pure approach? I guess I could do like, some folding magic |
| 2026-02-25 00:45:49 +0100 | <Comstar> | I feel like I could probably find some neat code examples searching around github &al |
| 2026-02-25 00:46:11 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 00:46:25 +0100 | chenjf | (~chenjf@68.64.178.54) (Quit: WeeChat 4.8.1) |
| 2026-02-25 00:47:13 +0100 | <int-e> | Comstar: If you have a state S and function branch :: S -> [S] then the list monad's bind (aka concatMap) can produce the next level of a tree from the previous one. (This gets a bit awkward if you also want to record history, but you can make that part of S) |
| 2026-02-25 00:47:36 +0100 | <Comstar> | yeah that makes sense |
| 2026-02-25 00:47:54 +0100 | <int-e> | "history" being the path through the underlying tree |
| 2026-02-25 00:48:15 +0100 | <Leary> | Comstar: There was a haskell challenge for this a while back. This was my solution: https://gist.github.com/LSLeary/5083d1dfe403d1562e7778713d97b22a |
| 2026-02-25 00:49:31 +0100 | <int-e> | Leary: that task is related but abuses Foldable on an infinite tree that you already have as a value. |
| 2026-02-25 00:50:18 +0100 | <int-e> | (and it's an abuse because that Semigroup instance isn't lawful) |
| 2026-02-25 00:50:40 +0100 | <Comstar> | Leary, oh wow line 25 in `Search.hs` is really interesting, I didn't know you could do `\case` like that, does that trick have a name? |
| 2026-02-25 00:50:51 +0100 | <Comstar> | oh it's prob the LambdaCase language extension |
| 2026-02-25 00:50:56 +0100 | <int-e> | it is |
| 2026-02-25 00:50:56 +0100 | <Leary> | int-e: Do we not have a (foldable) binary tree to search? And yes, I agree, but specialising the code to a binary tree means we can kill the evil. |
| 2026-02-25 00:50:57 +0100 | <Comstar> | that'll be fun to explore |
| 2026-02-25 00:51:32 +0100 | <int-e> | Leary: I don't know whether we have one. My main point was that it's abuse. |
| 2026-02-25 00:51:56 +0100 | earthy | (~arthurvl@2a02-a469-f5e2-1-83d2-ca43-57a2-dc81.fixed6.kpn.net) (Ping timeout: 268 seconds) |
| 2026-02-25 00:53:06 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2026-02-25 00:53:16 +0100 | peterbecich | (~Thunderbi@71.84.33.135) peterbecich |
| 2026-02-25 00:53:22 +0100 | <lantti> | mauke: oh, now i see. so the "otherwise" only worked because any identifier would have worked there |
| 2026-02-25 00:53:41 +0100 | <int-e> | I've implemented quite a few breadth first searches in Haskell and I've never materialized the tree; only levels (usually as lists because it's convenient, or as sets because I expected a significant number of transpositions.) |
| 2026-02-25 01:04:13 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 01:04:16 +0100 | GdeVolpiano | (~GdeVolpia@user/GdeVolpiano) (Ping timeout: 268 seconds) |
| 2026-02-25 01:05:12 +0100 | Tuplanolla | (~Tuplanoll@88-114-89-88.elisa-laajakaista.fi) Tuplanolla |
| 2026-02-25 01:05:55 +0100 | <Comstar> | what's materializing the tree mean? |
| 2026-02-25 01:07:54 +0100 | <int-e> | I mean constructing a (potentially infinite) value of type `Tree S` where `data Tree s = Node s [Tree s]` from a root :: S and a branching function as above. |
| 2026-02-25 01:08:45 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds) |
| 2026-02-25 01:11:08 +0100 | <EvanR> | lantti, going through String is probably not great, and then i/o on the Char is doing unicode stuff, and ... |
| 2026-02-25 01:11:43 +0100 | GdeVolpiano | (~GdeVolpia@user/GdeVolpiano) GdeVolpiano |
| 2026-02-25 01:16:27 +0100 | peterbecich | (~Thunderbi@71.84.33.135) (Ping timeout: 246 seconds) |
| 2026-02-25 01:19:04 +0100 | <Comstar> | int-e, heard, thanks! |
| 2026-02-25 01:19:36 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 01:20:33 +0100 | <EvanR> | materialize = have the normal form all in memory ? |
| 2026-02-25 01:20:57 +0100 | <int-e> | EvanR: well, no; laziness will still be a factor. |
| 2026-02-25 01:22:11 +0100 | <int-e> | EvanR: But yes, I may be abusing terminology a bit here. |
| 2026-02-25 01:23:55 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 01:26:39 +0100 | <int-e> | EvanR: The main reason I think of it that way is that it becomes harder to ensure that you expand exactly the parts of the tree that you need and you also release them to the garbage collector once you're done with them. |
| 2026-02-25 01:29:43 +0100 | robobub | (uid248673@id-248673.uxbridge.irccloud.com) robobub |
| 2026-02-25 01:34:42 +0100 | <EvanR> | yes constructing an infinite value seems kind of vague operationally, so agree that makes it hard to predict the memory usage pattern |
| 2026-02-25 01:34:58 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 01:39:20 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 01:39:39 +0100 | tritlo | (sid58727@id-58727.hampstead.irccloud.com) (Server closed connection) |
| 2026-02-25 01:39:50 +0100 | tritlo | (sid58727@id-58727.hampstead.irccloud.com) |
| 2026-02-25 01:40:59 +0100 | lally | (sid388228@id-388228.uxbridge.irccloud.com) (Server closed connection) |
| 2026-02-25 01:41:14 +0100 | lally | (sid388228@id-388228.uxbridge.irccloud.com) lally |
| 2026-02-25 01:46:17 +0100 | xff0x | (~xff0x@ai083101.d.east.v6connect.net) (Ping timeout: 265 seconds) |
| 2026-02-25 01:50:21 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 01:55:03 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 272 seconds) |
| 2026-02-25 02:05:43 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 02:10:10 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 02:21:05 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 02:24:27 +0100 | Sgeo | (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
| 2026-02-25 02:27:49 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 02:39:06 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 02:40:15 +0100 | Sgeo | (~Sgeo@user/sgeo) Sgeo |
| 2026-02-25 02:43:30 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 02:43:57 +0100 | Tuplanolla | (~Tuplanoll@88-114-89-88.elisa-laajakaista.fi) (Ping timeout: 246 seconds) |
| 2026-02-25 02:52:44 +0100 | wickedjargon | (~user@2605:8d80:5430:8458:d04:837d:bf6b:e6b3) wickedjargon |
| 2026-02-25 02:54:28 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 02:56:23 +0100 | Vizious | (~bes@user/Vizious) (Quit: WeeChat 4.8.1) |
| 2026-02-25 02:58:55 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 02:59:57 +0100 | uli-fem | (~uli-fem@118.210.1.123) |
| 2026-02-25 03:01:23 +0100 | uli-fem | (~uli-fem@118.210.1.123) (Changing host) |
| 2026-02-25 03:01:23 +0100 | uli-fem | (~uli-fem@user/uli-fem) uli-fem |
| 2026-02-25 03:01:31 +0100 | uli-fem | ulipink |
| 2026-02-25 03:01:32 +0100 | rainbyte_ | (~rainbyte@186.22.19.214) (Quit: rainbyte_) |
| 2026-02-25 03:08:08 +0100 | Googulator | (~Googulato@2a01-036d-0106-499d-1c5a-0e4b-5795-d7e3.pool6.digikabel.hu) (Quit: Client closed) |
| 2026-02-25 03:08:24 +0100 | Googulator | (~Googulato@2a01-036d-0106-499d-1c5a-0e4b-5795-d7e3.pool6.digikabel.hu) |
| 2026-02-25 03:09:50 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 03:14:03 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds) |
| 2026-02-25 03:25:12 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 03:29:45 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 03:33:39 +0100 | mstruebing | (~mstruebin@ns343649.ip-188-165-193.eu) (Server closed connection) |
| 2026-02-25 03:33:47 +0100 | mstruebing | (~mstruebin@ns343649.ip-188-165-193.eu) |
| 2026-02-25 03:40:33 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 03:42:59 +0100 | chiselfuse | (~chiselfus@user/chiselfuse) (Server closed connection) |
| 2026-02-25 03:43:13 +0100 | abiss27 | (~abiss27@user/abiss) () |
| 2026-02-25 03:43:33 +0100 | chiselfuse | (~chiselfus@user/chiselfuse) chiselfuse |
| 2026-02-25 03:44:45 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 03:45:34 +0100 | philopsos1 | (~caecilius@user/philopsos) philopsos |
| 2026-02-25 03:48:03 +0100 | robobub | (uid248673@id-248673.uxbridge.irccloud.com) (Quit: Connection closed for inactivity) |
| 2026-02-25 03:51:11 +0100 | prdak | (~Thunderbi@user/prdak) prdak |
| 2026-02-25 03:55:56 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 03:56:07 +0100 | prdak | (~Thunderbi@user/prdak) (Ping timeout: 264 seconds) |
| 2026-02-25 03:57:49 +0100 | xff0x | (~xff0x@2405:6580:b080:900:a3f9:c0ee:35e6:d3d1) |
| 2026-02-25 04:02:33 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds) |
| 2026-02-25 04:02:36 +0100 | zfnmxt | (~m-gkkevi@209.209.10.107) |
| 2026-02-25 04:04:59 +0100 | jakzale | (6291399afa@user/jakzale) (Server closed connection) |
| 2026-02-25 04:05:06 +0100 | jakzale | (6291399afa@user/jakzale) jakzale |
| 2026-02-25 04:13:19 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 04:14:24 +0100 | Fischmiep | (~Fischmiep@user/Fischmiep) (Ping timeout: 255 seconds) |
| 2026-02-25 04:18:03 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds) |
| 2026-02-25 04:25:56 +0100 | housemate | (~housemate@202.7.248.67) housemate |
| 2026-02-25 04:28:40 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 04:33:32 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds) |
| 2026-02-25 04:35:41 +0100 | rekahsoft | (~rekahsoft@bras-base-orllon1103w-grc-20-76-67-111-168.dsl.bell.ca) (Remote host closed the connection) |
| 2026-02-25 04:39:39 +0100 | pmk | (6afe4476a1@2a03:6000:1812:100::26d) (Server closed connection) |
| 2026-02-25 04:39:47 +0100 | pmk | (6afe4476a1@2a03:6000:1812:100::26d) pmk |
| 2026-02-25 04:41:50 +0100 | machinedgod | (~machinedg@d172-219-48-230.abhsia.telus.net) (Ping timeout: 245 seconds) |
| 2026-02-25 04:44:00 +0100 | Square2 | (~Square4@user/square) Square |
| 2026-02-25 04:44:04 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 04:47:08 +0100 | philopsos1 | (~caecilius@user/philopsos) (Ping timeout: 256 seconds) |
| 2026-02-25 04:49:07 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds) |
| 2026-02-25 04:51:50 +0100 | arandombit | (~arandombi@2a02:2455:8656:7100:d189:bf2e:3659:938e) |
| 2026-02-25 04:51:50 +0100 | arandombit | (~arandombi@2a02:2455:8656:7100:d189:bf2e:3659:938e) (Changing host) |
| 2026-02-25 04:51:50 +0100 | arandombit | (~arandombi@user/arandombit) arandombit |
| 2026-02-25 04:58:00 +0100 | wickedjargon | (~user@2605:8d80:5430:8458:d04:837d:bf6b:e6b3) (Ping timeout: 246 seconds) |
| 2026-02-25 04:59:27 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 05:03:57 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds) |
| 2026-02-25 05:10:10 +0100 | arandombit | (~arandombi@user/arandombit) (Ping timeout: 245 seconds) |
| 2026-02-25 05:10:18 +0100 | weary-traveler | (~user@user/user363627) user363627 |
| 2026-02-25 05:12:59 +0100 | ymherklotz | (cb2c9cfbdd@2a03:6000:1812:100::29a) (Server closed connection) |
| 2026-02-25 05:13:06 +0100 | ymherklotz | (cb2c9cfbdd@2a03:6000:1812:100::29a) ymherklotz |
| 2026-02-25 05:14:47 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 05:15:39 +0100 | akspecs | (00cc8321af@sourcehut/user/akspecs) (Server closed connection) |
| 2026-02-25 05:15:49 +0100 | akspecs | (00cc8321af@sourcehut/user/akspecs) akspecs |
| 2026-02-25 05:19:26 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds) |
| 2026-02-25 05:22:15 +0100 | ulipink | (~uli-fem@user/uli-fem) (Ping timeout: 245 seconds) |
| 2026-02-25 05:30:10 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 05:34:59 +0100 | rprospero | (eadde01e73@user/rprospero) (Server closed connection) |
| 2026-02-25 05:35:07 +0100 | rprospero | (eadde01e73@user/rprospero) rprospero |
| 2026-02-25 05:35:10 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 05:36:59 +0100 | chaitlatte0 | (ea29c0bb16@user/chaitlatte0) (Server closed connection) |
| 2026-02-25 05:37:08 +0100 | chaitlatte0 | (ea29c0bb16@user/chaitlatte0) chaitlatte0 |
| 2026-02-25 05:38:07 +0100 | emaczen | (~user@user/emaczen) (Ping timeout: 264 seconds) |
| 2026-02-25 05:43:30 +0100 | uli-fem | (~uli-fem@118.210.1.123) |
| 2026-02-25 05:46:13 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 05:49:30 +0100 | earthy | (~arthurvl@2a02-a469-f5e2-1-83d2-ca43-57a2-dc81.fixed6.kpn.net) earthy |
| 2026-02-25 05:50:23 +0100 | wickedjargon | (~user@2605:8d80:5431:2a54:ed64:7112:3bc:303c) wickedjargon |
| 2026-02-25 05:50:35 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 06:01:35 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 06:05:06 +0100 | jmcantrell | (~weechat@user/jmcantrell) (Ping timeout: 255 seconds) |
| 2026-02-25 06:05:54 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds) |
| 2026-02-25 06:07:39 +0100 | wickedjargon | (~user@2605:8d80:5431:2a54:ed64:7112:3bc:303c) (Ping timeout: 246 seconds) |
| 2026-02-25 06:14:20 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 06:17:40 +0100 | Square2 | (~Square4@user/square) (Ping timeout: 245 seconds) |
| 2026-02-25 06:18:55 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 06:22:19 +0100 | RalphStalfos | (~kvirc@164.sub-174-251-240.myvzw.com) |
| 2026-02-25 06:28:19 +0100 | RalphStalfos | (~kvirc@164.sub-174-251-240.myvzw.com) (Quit: Changing server...) |
| 2026-02-25 06:29:42 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 06:30:59 +0100 | ajrdck | (e0a4b72d53@user/ajrdck) (Server closed connection) |
| 2026-02-25 06:31:08 +0100 | ajrdck | (e0a4b72d53@user/ajrdck) ajrdck |
| 2026-02-25 06:33:55 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 06:34:19 +0100 | slondr | (cf9f9e8f44@2a03:6000:1812:100::10b6) (Server closed connection) |
| 2026-02-25 06:34:27 +0100 | slondr | (cf9f9e8f44@2a03:6000:1812:100::10b6) slondr |
| 2026-02-25 06:36:26 +0100 | agspades | (~agspades@2401:4900:cab9:e332:4c8e:11ae:4084:30ac) |
| 2026-02-25 06:37:46 +0100 | sefidel | (~sefidel@user/sefidel) (Remote host closed the connection) |
| 2026-02-25 06:38:33 +0100 | sefidel | (~sefidel@user/sefidel) sefidel |
| 2026-02-25 06:38:54 +0100 | agspades | (~agspades@2401:4900:cab9:e332:4c8e:11ae:4084:30ac) (Quit: Konversation terminated!) |
| 2026-02-25 06:39:14 +0100 | agspades | (~agspades@2401:4900:cab9:e332:4c8e:11ae:4084:30ac) |
| 2026-02-25 06:40:17 +0100 | michalz | (~michalz@185.246.207.218) |
| 2026-02-25 06:40:25 +0100 | agspades | (~agspades@2401:4900:cab9:e332:4c8e:11ae:4084:30ac) (Client Quit) |
| 2026-02-25 06:43:54 +0100 | wickedjargon | (~user@2605:8d80:5c40:245c:9d0a:1dbd:b59f:8c37) wickedjargon |
| 2026-02-25 06:45:04 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 06:45:39 +0100 | rselim | (ce261f06ff@user/milesrout) (Server closed connection) |
| 2026-02-25 06:45:48 +0100 | rselim | (ce261f06ff@user/milesrout) milesrout |
| 2026-02-25 06:49:39 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds) |
| 2026-02-25 06:55:45 +0100 | filwisher | (2e6936c793@2a03:6000:1812:100::170) |
| 2026-02-25 07:00:36 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 07:05:10 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 07:05:54 +0100 | wickedjargon | (~user@2605:8d80:5c40:245c:9d0a:1dbd:b59f:8c37) (Read error: Connection reset by peer) |
| 2026-02-25 07:08:01 +0100 | wickedjargon | (~user@2605:8d80:5c40:eae6:dd0f:ce4e:9d20:20f0) wickedjargon |
| 2026-02-25 07:10:54 +0100 | takuan | (~takuan@d8D86B9E9.access.telenet.be) |
| 2026-02-25 07:11:11 +0100 | Googulator | (~Googulato@2a01-036d-0106-499d-1c5a-0e4b-5795-d7e3.pool6.digikabel.hu) (Quit: Client closed) |
| 2026-02-25 07:11:27 +0100 | Googulator | (~Googulato@2a01-036d-0106-499d-1c5a-0e4b-5795-d7e3.pool6.digikabel.hu) |
| 2026-02-25 07:15:20 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 07:18:19 +0100 | jkoshy | (99b9359beb@user/jkoshy) (Server closed connection) |
| 2026-02-25 07:18:20 +0100 | shr\ke | (~shrike@user/shrke:31298) (Ping timeout: 265 seconds) |
| 2026-02-25 07:18:28 +0100 | jkoshy | (99b9359beb@user/jkoshy) jkoshy |
| 2026-02-25 07:19:27 +0100 | shr\ke | (~shrike@user/paxhumana) paxhumana |
| 2026-02-25 07:19:27 +0100 | shr\ke | (~shrike@user/paxhumana) (Changing host) |
| 2026-02-25 07:19:27 +0100 | shr\ke | (~shrike@user/shrke:31298) shr\ke |
| 2026-02-25 07:19:45 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds) |
| 2026-02-25 07:23:10 +0100 | uli-fem | (~uli-fem@118.210.1.123) (Ping timeout: 265 seconds) |
| 2026-02-25 07:26:59 +0100 | bheesham | (3aa22d8375@2a03:6000:1812:100::e40) (Server closed connection) |
| 2026-02-25 07:27:08 +0100 | bheesham | (3aa22d8375@2a03:6000:1812:100::e40) bheesham |
| 2026-02-25 07:30:43 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 07:31:39 +0100 | whereiseveryone | (206ba86c98@2a03:6000:1812:100::2e4) (Server closed connection) |
| 2026-02-25 07:31:47 +0100 | whereiseveryone | (206ba86c98@2a03:6000:1812:100::2e4) jgart |
| 2026-02-25 07:34:19 +0100 | arcadewise | (52968ed80d@2a03:6000:1812:100::3df) (Server closed connection) |
| 2026-02-25 07:34:27 +0100 | arcadewise | (52968ed80d@2a03:6000:1812:100::3df) l3gacyb3ta |
| 2026-02-25 07:34:55 +0100 | uli-fem | (~uli-fem@118.210.1.123) |
| 2026-02-25 07:35:10 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 07:37:36 +0100 | wickedjargon | (~user@2605:8d80:5c40:eae6:dd0f:ce4e:9d20:20f0) (Ping timeout: 246 seconds) |
| 2026-02-25 07:37:39 +0100 | JoelMcCracken | (5ea8252fbb@2a03:6000:1812:100::10e3) (Server closed connection) |
| 2026-02-25 07:37:50 +0100 | JoelMcCracken | (5ea8252fbb@2a03:6000:1812:100::10e3) JoelMcCracken |
| 2026-02-25 07:38:26 +0100 | RussetParrotBear | (45ce440a48@2a03:6000:1812:100::e2) |
| 2026-02-25 07:39:39 +0100 | simendsjo | (34b0550437@2a03:6000:1812:100::1441) (Server closed connection) |
| 2026-02-25 07:39:47 +0100 | simendsjo | (34b0550437@2a03:6000:1812:100::1441) simendsjo |
| 2026-02-25 07:42:17 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 07:44:19 +0100 | stureplan | (22e45d5caf@user/stureplan) (Server closed connection) |
| 2026-02-25 07:44:28 +0100 | stureplan | (22e45d5caf@user/stureplan) stureplan |
| 2026-02-25 07:44:35 +0100 | Lord_of_Life | (~Lord@user/lord-of-life/x-2819915) (Excess Flood) |
| 2026-02-25 07:46:08 +0100 | Lord_of_Life | (~Lord@user/lord-of-life/x-2819915) Lord_of_Life |
| 2026-02-25 07:46:20 +0100 | myxokephale | (~myxos@174-18-44-59.tcso.qwest.net) myxokephale |
| 2026-02-25 07:46:51 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds) |
| 2026-02-25 07:47:43 +0100 | foul_owl | (~kerry@94.156.149.97) (Ping timeout: 264 seconds) |
| 2026-02-25 07:48:34 +0100 | myxos | (~myxos@174-18-58-141.tcso.qwest.net) (Ping timeout: 268 seconds) |
| 2026-02-25 07:51:00 +0100 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) humasect |
| 2026-02-25 07:51:39 +0100 | probie | (cc0b34050a@user/probie) (Server closed connection) |
| 2026-02-25 07:51:47 +0100 | probie | (cc0b34050a@user/probie) probie |
| 2026-02-25 07:52:40 +0100 | prdak | (~Thunderbi@user/prdak) prdak |
| 2026-02-25 07:53:39 +0100 | lane | (809450f172@2a03:6000:1812:100::1300) (Server closed connection) |
| 2026-02-25 07:53:46 +0100 | lane | (809450f172@2a03:6000:1812:100::1300) lane |
| 2026-02-25 07:56:58 +0100 | prdak | (~Thunderbi@user/prdak) (Ping timeout: 256 seconds) |
| 2026-02-25 07:57:41 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 08:01:57 +0100 | foul_owl | (~kerry@94.156.149.91) foul_owl |
| 2026-02-25 08:04:37 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 276 seconds) |
| 2026-02-25 08:11:51 +0100 | agspades | (~agspades@2401:4900:cab9:e332:4c8e:11ae:4084:30ac) |
| 2026-02-25 08:12:06 +0100 | agspades | (~agspades@2401:4900:cab9:e332:4c8e:11ae:4084:30ac) (Client Quit) |
| 2026-02-25 08:15:33 +0100 | tromp | (~textual@2001:1c00:3487:1b00:7955:9591:6018:7ef9) |
| 2026-02-25 08:15:43 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 08:20:10 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 08:26:19 +0100 | mauke | (~mauke@user/mauke) (Server closed connection) |
| 2026-02-25 08:26:29 +0100 | mauke | (~mauke@user/mauke) mauke |
| 2026-02-25 08:31:04 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 08:35:35 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2026-02-25 08:36:19 +0100 | preflex | (~preflex@user/mauke/bot/preflex) (Server closed connection) |
| 2026-02-25 08:36:31 +0100 | preflex | (~preflex@user/mauke/bot/preflex) preflex |
| 2026-02-25 08:46:27 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 08:50:45 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds) |
| 2026-02-25 08:53:00 +0100 | misterfish | (~misterfis@84.53.85.146) misterfish |
| 2026-02-25 08:54:08 +0100 | Sgeo | (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
| 2026-02-25 08:58:45 +0100 | misterfish | (~misterfis@84.53.85.146) (Ping timeout: 272 seconds) |
| 2026-02-25 09:00:26 +0100 | misterfish | (~misterfis@84.53.85.146) misterfish |
| 2026-02-25 09:01:03 +0100 | Fischmiep | (~Fischmiep@user/Fischmiep) Fischmiep |
| 2026-02-25 09:01:10 +0100 | __monty__ | (~toonn@user/toonn) toonn |
| 2026-02-25 09:01:49 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) merijn |
| 2026-02-25 09:06:09 +0100 | merijn | (~merijn@host-cl.cgnat-g.v4.dfn.nl) (Ping timeout: 246 seconds) |
| 2026-02-25 09:06:57 +0100 | peterbecich | (~Thunderbi@71.84.33.135) peterbecich |
| 2026-02-25 09:09:13 +0100 | uli-fem | (~uli-fem@118.210.1.123) (Ping timeout: 248 seconds) |
| 2026-02-25 09:24:09 +0100 | Pozyomka | (~pyon@user/pyon) (Ping timeout: 268 seconds) |
| 2026-02-25 09:25:59 +0100 | uli-fem | (~uli-fem@118.210.1.123) |
| 2026-02-25 09:27:02 +0100 | philopsos1 | (~caecilius@user/philopsos) philopsos |
| 2026-02-25 09:29:43 +0100 | chele | (~chele@user/chele) chele |
| 2026-02-25 09:33:06 +0100 | uli-fem | (~uli-fem@118.210.1.123) (Ping timeout: 246 seconds) |
| 2026-02-25 09:35:16 +0100 | uli-fem | (~uli-fem@118.210.1.123) |
| 2026-02-25 09:39:37 +0100 | uli-fem | (~uli-fem@118.210.1.123) (Ping timeout: 248 seconds) |
| 2026-02-25 09:43:28 +0100 | tzh | (~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz) |
| 2026-02-25 09:45:29 +0100 | emmanuelux | (~em@user/emmanuelux) (Quit: bye) |
| 2026-02-25 09:46:25 +0100 | peterbecich | (~Thunderbi@71.84.33.135) (Ping timeout: 245 seconds) |
| 2026-02-25 09:47:08 +0100 | merijn | (~merijn@77.242.116.146) merijn |
| 2026-02-25 09:50:20 +0100 | oskarw | (~user@user/oskarw) oskarw |
| 2026-02-25 10:09:39 +0100 | gabiruh | (~gabiruh@vps19177.publiccloud.com.br) (Server closed connection) |
| 2026-02-25 10:09:55 +0100 | lbseale | (~quassel@user/ep1ctetus) (Ping timeout: 265 seconds) |
| 2026-02-25 10:09:56 +0100 | gabiruh | (~gabiruh@vps19177.publiccloud.com.br) gabiruh |
| 2026-02-25 10:10:06 +0100 | tromp | (~textual@2001:1c00:3487:1b00:7955:9591:6018:7ef9) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2026-02-25 10:11:37 +0100 | uli-fem | (~uli-fem@118.210.1.123) |
| 2026-02-25 10:11:58 +0100 | slomp_ | (~slomp@47-158-212-88.lsan.ca.frontiernet.net) |
| 2026-02-25 10:12:14 +0100 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection) |
| 2026-02-25 10:14:45 +0100 | slomp | (~slomp@47-158-212-88.lsan.ca.frontiernet.net) (Ping timeout: 272 seconds) |
| 2026-02-25 10:15:10 +0100 | philopsos1 | (~caecilius@user/philopsos) (Ping timeout: 245 seconds) |
| 2026-02-25 10:16:31 +0100 | uli-fem | (~uli-fem@118.210.1.123) (Ping timeout: 264 seconds) |
| 2026-02-25 10:18:08 +0100 | fp | (~Thunderbi@130.233.70.214) fp |
| 2026-02-25 10:20:24 +0100 | mange | (~mange@user/mange) mange |
| 2026-02-25 10:24:09 +0100 | housemate | (~housemate@202.7.248.67) (Quit: https://ineedsomeacidtocalmmedown.space/) |
| 2026-02-25 10:29:39 +0100 | j0lol | (~j0lol@132.145.17.236) (Server closed connection) |
| 2026-02-25 10:29:53 +0100 | j0lol | (~j0lol@132.145.17.236) j0lol |
| 2026-02-25 10:37:09 +0100 | shr\ke | (~shrike@user/shrke:31298) (Ping timeout: 246 seconds) |
| 2026-02-25 10:39:40 +0100 | housemate | (~housemate@202.7.248.67) housemate |
| 2026-02-25 10:43:36 +0100 | shr\ke | (~shrike@user/paxhumana) paxhumana |
| 2026-02-25 10:43:36 +0100 | shr\ke | (~shrike@user/paxhumana) (Changing host) |
| 2026-02-25 10:43:36 +0100 | shr\ke | (~shrike@user/shrke:31298) shr\ke |
| 2026-02-25 10:47:01 +0100 | Digit | (~user@user/digit) (Ping timeout: 264 seconds) |
| 2026-02-25 10:47:15 +0100 | fp | (~Thunderbi@130.233.70.214) (Ping timeout: 245 seconds) |
| 2026-02-25 10:49:37 +0100 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) humasect |
| 2026-02-25 10:50:34 +0100 | prdak | (~Thunderbi@user/prdak) prdak |
| 2026-02-25 10:52:19 +0100 | vulpine | (xfnw@user/meow/xfnw) (Server closed connection) |
| 2026-02-25 10:52:39 +0100 | vulpine | (xfnw@user/meow/xfnw) xfnw |
| 2026-02-25 11:05:47 +0100 | Digit | (~user@user/digit) Digit |
| 2026-02-25 11:06:05 +0100 | prdak | (~Thunderbi@user/prdak) (Remote host closed the connection) |
| 2026-02-25 11:06:24 +0100 | prdak | (~Thunderbi@user/prdak) prdak |
| 2026-02-25 11:10:39 +0100 | prdak1 | (~Thunderbi@user/prdak) prdak |
| 2026-02-25 11:10:51 +0100 | prdak | (~Thunderbi@user/prdak) (Read error: Connection reset by peer) |
| 2026-02-25 11:10:51 +0100 | prdak1 | prdak |
| 2026-02-25 11:14:23 +0100 | prdak1 | (~Thunderbi@user/prdak) prdak |
| 2026-02-25 11:14:34 +0100 | prdak | (~Thunderbi@user/prdak) (Read error: Connection reset by peer) |
| 2026-02-25 11:14:34 +0100 | prdak1 | prdak |
| 2026-02-25 11:16:29 +0100 | prdak1 | (~Thunderbi@user/prdak) prdak |
| 2026-02-25 11:19:31 +0100 | prdak | (~Thunderbi@user/prdak) (Ping timeout: 264 seconds) |
| 2026-02-25 11:19:31 +0100 | prdak1 | prdak |
| 2026-02-25 11:23:42 +0100 | prdak | (~Thunderbi@user/prdak) (Ping timeout: 246 seconds) |
| 2026-02-25 11:26:42 +0100 | divlamir | (~divlamir@user/divlamir) (Read error: Connection reset by peer) |
| 2026-02-25 11:27:02 +0100 | natto17 | (~natto@129.154.243.159) (Read error: Connection reset by peer) |
| 2026-02-25 11:27:03 +0100 | divlamir | (~divlamir@user/divlamir) divlamir |
| 2026-02-25 11:28:18 +0100 | carbolymer | (~carbolyme@delirium.systems) (Read error: Connection reset by peer) |
| 2026-02-25 11:28:24 +0100 | natto17 | (~natto@129.154.243.159) natto |
| 2026-02-25 11:28:27 +0100 | prdak | (~Thunderbi@user/prdak) prdak |
| 2026-02-25 11:28:48 +0100 | carbolymer | (~carbolyme@delirium.systems) carbolymer |
| 2026-02-25 11:35:37 +0100 | mangoiv | (~mangoiv@2a01:4f9:c012:6c0e::) (Changing host) |
| 2026-02-25 11:35:37 +0100 | mangoiv | (~mangoiv@user/mangoiv) mangoiv |
| 2026-02-25 11:38:21 +0100 | uli-fem | (~uli-fem@118.210.1.123) |
| 2026-02-25 11:42:28 +0100 | ec | (~ec@gateway/tor-sasl/ec) (Ping timeout: 252 seconds) |
| 2026-02-25 11:42:59 +0100 | systemfault | (sid267009@about/typescript/member/systemfault) (Server closed connection) |
| 2026-02-25 11:43:14 +0100 | systemfault | (sid267009@about/typescript/member/systemfault) systemfault |
| 2026-02-25 11:50:16 +0100 | Arsen | (16abab341f@gentoo/developer/managarm.dev.Arsen) (Remote host closed the connection) |
| 2026-02-25 11:50:24 +0100 | Arsen | (16abab341f@gentoo/developer/managarm.dev.Arsen) Arsen |
| 2026-02-25 11:51:38 +0100 | uli-fem | (~uli-fem@118.210.1.123) (Ping timeout: 252 seconds) |
| 2026-02-25 11:53:36 +0100 | fp | (~Thunderbi@2001:708:20:1406::10c5) fp |
| 2026-02-25 11:56:57 +0100 | humasect | (~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection) |
| 2026-02-25 11:57:39 +0100 | PotatoGim | (sid99505@id-99505.lymington.irccloud.com) (Server closed connection) |
| 2026-02-25 11:58:05 +0100 | PotatoGim | (sid99505@id-99505.lymington.irccloud.com) PotatoGim |
| 2026-02-25 12:00:16 +0100 | uli-fem | (~uli-fem@118.210.1.123) |
| 2026-02-25 12:08:25 +0100 | uli-fem | (~uli-fem@118.210.1.123) (Ping timeout: 248 seconds) |
| 2026-02-25 12:12:19 +0100 | Kamuela | (sid111576@id-111576.tinside.irccloud.com) (Server closed connection) |
| 2026-02-25 12:12:34 +0100 | Kamuela | (sid111576@id-111576.tinside.irccloud.com) Kamuela |
| 2026-02-25 12:14:29 +0100 | prdak | (~Thunderbi@user/prdak) (Ping timeout: 245 seconds) |
| 2026-02-25 12:31:17 +0100 | housemate | (~housemate@202.7.248.67) (Quit: https://ineedsomeacidtocalmmedown.space/) |
| 2026-02-25 12:36:02 +0100 | Pozyomka | (~pyon@user/pyon) pyon |
| 2026-02-25 12:40:02 +0100 | uli-fem | (~uli-fem@118.210.1.123) |