| 2025-03-31 00:06:24 +0000 | ljdarj1 | (~Thunderbi@user/ljdarj) ljdarj |
| 2025-03-31 00:10:15 +0000 | ljdarj | (~Thunderbi@user/ljdarj) (Ping timeout: 244 seconds) |
| 2025-03-31 00:10:15 +0000 | ljdarj1 | ljdarj |
| 2025-03-31 00:12:53 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) |
| 2025-03-31 00:14:40 +0000 | <haskellbridge> | <alexfmpe> > ['a'..'z']^..traversed.ifiltered (const . even) |
| 2025-03-31 00:14:40 +0000 | <haskellbridge> | "acegikmoqsuwy" |
| 2025-03-31 00:15:09 +0000 | <haskellbridge> | <alexfmpe> * ['a'..'z'] ^.. traversed . ifiltered |
| 2025-03-31 00:16:21 +0000 | <haskellbridge> | <thirdofmay18081814goya> neat! still indexed though |
| 2025-03-31 00:16:53 +0000 | <haskellbridge> | <alexfmpe> huh is that an issue? |
| 2025-03-31 00:17:15 +0000 | <haskellbridge> | <thirdofmay18081814goya> well I'm trying to find an "Iso" form, otherwise we can just use "['a'..'z'] ^.. itraversed . indices even" |
| 2025-03-31 00:17:54 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) (Ping timeout: 260 seconds) |
| 2025-03-31 00:17:54 +0000 | <haskellbridge> | <alexfmpe> iso between what? |
| 2025-03-31 00:18:06 +0000 | <haskellbridge> | <thirdofmay18081814goya> "iso (map snd) (zip [0..])" |
| 2025-03-31 00:18:13 +0000 | <haskellbridge> | <thirdofmay18081814goya> uh "map fst" I mean |
| 2025-03-31 00:18:21 +0000 | <haskellbridge> | <alexfmpe> that is not an isomorphism |
| 2025-03-31 00:18:43 +0000 | <haskellbridge> | <thirdofmay18081814goya> how so? |
| 2025-03-31 00:19:02 +0000 | <haskellbridge> | <alexfmpe> you're thinking "Iso' [a] [(Int, a)]" or so right? |
| 2025-03-31 00:19:20 +0000 | <haskellbridge> | <thirdofmay18081814goya> clearly it is a bijection, and if we're embedding either side into a monoid wrt "a" it is an isomorphism |
| 2025-03-31 00:19:26 +0000 | <haskellbridge> | <thirdofmay18081814goya> alexfmpe: yeah |
| 2025-03-31 00:19:51 +0000 | <haskellbridge> | <alexfmpe> [1, 'a'] -> ['a'] <-> [(0, 'a')] |
| 2025-03-31 00:19:53 +0000 | <haskellbridge> | <alexfmpe> this is no bijection |
| 2025-03-31 00:19:58 +0000 | <haskellbridge> | <alexfmpe> it's an embedding at best |
| 2025-03-31 00:20:11 +0000 | <haskellbridge> | <thirdofmay18081814goya> right, that has the same type but it is not the same map |
| 2025-03-31 00:20:22 +0000 | <haskellbridge> | <alexfmpe> "[a] -> [(Int, a)]" is invertible, but not surjective |
| 2025-03-31 00:20:30 +0000 | <haskellbridge> | <alexfmpe> so not bijective |
| 2025-03-31 00:21:06 +0000 | <haskellbridge> | <alexfmpe> well, my point is "zip [0..] . fmap snd" is not "id" |
| 2025-03-31 00:21:12 +0000 | <haskellbridge> | <alexfmpe> even though "fmap snd . zip [0..]" is |
| 2025-03-31 00:21:16 +0000 | <haskellbridge> | <alexfmpe> so it's not an iso |
| 2025-03-31 00:21:54 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) |
| 2025-03-31 00:23:00 +0000 | <haskellbridge> | <thirdofmay18081814goya> hm right |
| 2025-03-31 00:30:28 +0000 | <haskellbridge> | <thirdofmay18081814goya> it is however an isomorphism over its range, or over the subtype of "[(Int, a)]" of pairs ordered by the first element |
| 2025-03-31 00:31:45 +0000 | <haskellbridge> | <thirdofmay18081814goya> as long as all function we compose it preserve this range, it will have the expected properties of "Iso" |
| 2025-03-31 00:31:52 +0000 | <haskellbridge> | <thirdofmay18081814goya> we compose it with* |
| 2025-03-31 00:32:13 +0000 | califax | (~califax@user/califx) (Remote host closed the connection) |
| 2025-03-31 00:33:17 +0000 | califax | (~califax@user/califx) califx |
| 2025-03-31 00:34:06 +0000 | <haskellbridge> | <thirdofmay18081814goya> but right the type system can't enforce the well typedness of such an "Iso" and it is not strictly speaking an member of "Iso' [a] [(Int, a)]" |
| 2025-03-31 00:34:47 +0000 | ljdarj | (~Thunderbi@user/ljdarj) (Ping timeout: 265 seconds) |
| 2025-03-31 00:34:57 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) (Ping timeout: 248 seconds) |
| 2025-03-31 00:38:35 +0000 | <haskellbridge> | <thirdofmay18081814goya> yep no it's just straight up not an Iso lol ty |
| 2025-03-31 00:38:40 +0000 | <haskellbridge> | <Bowuigi> To fix this, constrain the first element to be exactly the index. The singleton Vector example does this |
| 2025-03-31 00:39:03 +0000 | <haskellbridge> | <Bowuigi> The first element of "(Int, a)", that is |
| 2025-03-31 00:44:44 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds) |
| 2025-03-31 00:45:39 +0000 | gustavo | (~gustavo@2804:18:588d:4c8:c297:170d:745e:29df) (Quit: Leaving) |
| 2025-03-31 00:49:57 +0000 | otto_s | (~user@p5de2f1f7.dip0.t-ipconnect.de) (Ping timeout: 248 seconds) |
| 2025-03-31 00:51:36 +0000 | Tuplanolla | (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) (Quit: Leaving.) |
| 2025-03-31 00:53:04 +0000 | xff0x | (~xff0x@2405:6580:b080:900:73c3:617e:93dd:971) (Ping timeout: 260 seconds) |
| 2025-03-31 00:55:50 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 00:59:15 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) |
| 2025-03-31 00:59:45 +0000 | otto_s | (~user@p5b044ec8.dip0.t-ipconnect.de) |
| 2025-03-31 01:00:38 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 01:01:44 +0000 | user363627 | (~user@user/user363627) user363627 |
| 2025-03-31 01:05:01 +0000 | weary-traveler | (~user@user/user363627) (Ping timeout: 244 seconds) |
| 2025-03-31 01:05:42 +0000 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Quit: = "") |
| 2025-03-31 01:07:35 +0000 | random-jellyfish | (~developer@85.50.149.196) |
| 2025-03-31 01:07:35 +0000 | random-jellyfish | (~developer@85.50.149.196) (Changing host) |
| 2025-03-31 01:07:35 +0000 | random-jellyfish | (~developer@user/random-jellyfish) random-jellyfish |
| 2025-03-31 01:27:25 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 01:30:48 +0000 | GdeVolpiano | (~GdeVolpia@user/GdeVolpiano) (Ping timeout: 252 seconds) |
| 2025-03-31 01:34:44 +0000 | GdeVolpiano | (~GdeVolpia@user/GdeVolpiano) GdeVolpiano |
| 2025-03-31 01:41:39 +0000 | ambareesh | (~ambareesh@user/ambareesh) (Quit: WeeChat 4.6.0) |
| 2025-03-31 01:41:48 +0000 | xff0x | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) |
| 2025-03-31 01:45:41 +0000 | talismanick | (~user@2601:644:937c:ed10::ae5) talismanick |
| 2025-03-31 01:50:00 +0000 | Unicorn_Princess | (~Unicorn_P@user/Unicorn-Princess/x-3540542) Unicorn_Princess |
| 2025-03-31 01:52:09 +0000 | xff0x_ | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) |
| 2025-03-31 01:54:26 +0000 | xff0x | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) (Ping timeout: 272 seconds) |
| 2025-03-31 01:56:45 +0000 | xff0x | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) |
| 2025-03-31 01:58:52 +0000 | xff0x_ | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) (Ping timeout: 272 seconds) |
| 2025-03-31 01:59:30 +0000 | xff0x_ | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) |
| 2025-03-31 02:02:03 +0000 | xff0x | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) (Ping timeout: 276 seconds) |
| 2025-03-31 02:22:41 +0000 | machinedgod | (~machinedg@d108-173-18-100.abhsia.telus.net) (Ping timeout: 248 seconds) |
| 2025-03-31 02:30:43 +0000 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich |
| 2025-03-31 02:31:56 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 02:38:34 +0000 | bilegeek | (~bilegeek@2600:1008:b099:69a4:46db:68ce:ade4:248f) bilegeek |
| 2025-03-31 02:42:26 +0000 | mu` | (~mu@user/byte) (Quit: Leaving) |
| 2025-03-31 02:42:40 +0000 | byte | (~mu@user/byte) byte |
| 2025-03-31 02:43:52 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 02:50:27 +0000 | jmcantrell | (~weechat@user/jmcantrell) (Quit: WeeChat 4.6.0) |
| 2025-03-31 03:00:32 +0000 | chexum | (~quassel@gateway/tor-sasl/chexum) (Remote host closed the connection) |
| 2025-03-31 03:00:53 +0000 | chexum | (~quassel@gateway/tor-sasl/chexum) chexum |
| 2025-03-31 03:05:46 +0000 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) bitdex |
| 2025-03-31 03:08:44 +0000 | machinedgod | (~machinedg@d108-173-18-100.abhsia.telus.net) machinedgod |
| 2025-03-31 03:10:42 +0000 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 246 seconds) |
| 2025-03-31 03:34:20 +0000 | prasad | (~Thunderbi@c-73-246-138-70.hsd1.in.comcast.net) (Ping timeout: 244 seconds) |
| 2025-03-31 03:35:41 +0000 | user363627 | (~user@user/user363627) (Quit: Konversation terminated!) |
| 2025-03-31 03:35:58 +0000 | user363627 | (~user@user/user363627) user363627 |
| 2025-03-31 03:39:31 +0000 | unter-oe | (~unter-oe@user/unter-oe) unter-oe |
| 2025-03-31 03:43:45 +0000 | unter-oe | (~unter-oe@user/unter-oe) (Ping timeout: 248 seconds) |
| 2025-03-31 03:43:57 +0000 | michalz | (~michalz@185.246.207.193) |
| 2025-03-31 03:45:57 +0000 | bilegeek | (~bilegeek@2600:1008:b099:69a4:46db:68ce:ade4:248f) (Ping timeout: 248 seconds) |
| 2025-03-31 03:47:27 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 03:59:23 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 04:04:33 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds) |
| 2025-03-31 04:15:10 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 04:22:51 +0000 | random-jellyfish | (~developer@user/random-jellyfish) (Remote host closed the connection) |
| 2025-03-31 04:23:09 +0000 | random-jellyfish | (~developer@user/random-jellyfish) random-jellyfish |
| 2025-03-31 04:27:48 +0000 | arahael | (~arahael@user/arahael) (Ping timeout: 252 seconds) |
| 2025-03-31 04:32:28 +0000 | Eoco | (~ian@128.101.131.218) (Quit: WeeChat 4.4.2) |
| 2025-03-31 04:34:01 +0000 | toby-bro | (~toby-bro@user/toby-bro) (Ping timeout: 252 seconds) |
| 2025-03-31 04:41:34 +0000 | random-jellyfish | (~developer@user/random-jellyfish) (Ping timeout: 260 seconds) |
| 2025-03-31 05:11:01 +0000 | JuanDaugherty | (~juan@user/JuanDaugherty) JuanDaugherty |
| 2025-03-31 05:20:33 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-03-31 05:32:23 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 05:37:24 +0000 | JuanDaugherty | (~juan@user/JuanDaugherty) (Quit: praxis.meansofproduction.biz (juan@acm.org)) |
| 2025-03-31 05:37:34 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds) |
| 2025-03-31 05:41:55 +0000 | user363627 | (~user@user/user363627) (Remote host closed the connection) |
| 2025-03-31 05:48:00 +0000 | takuan | (~takuan@d8D86B601.access.telenet.be) |
| 2025-03-31 05:48:24 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 05:52:13 +0000 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich |
| 2025-03-31 05:52:19 +0000 | fp | (~Thunderbi@87-94-142-103.rev.dnainternet.fi) (Ping timeout: 260 seconds) |
| 2025-03-31 06:17:35 +0000 | sord937 | (~sord937@gateway/tor-sasl/sord937) sord937 |
| 2025-03-31 06:35:59 +0000 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 244 seconds) |
| 2025-03-31 06:40:20 +0000 | forell | (~forell@user/forell) (Quit: ZNC - https://znc.in) |
| 2025-03-31 06:42:10 +0000 | forell | (~forell@user/forell) forell |
| 2025-03-31 06:48:35 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds) |
| 2025-03-31 06:50:54 +0000 | ft | (~ft@p508db463.dip0.t-ipconnect.de) (Quit: leaving) |
| 2025-03-31 06:57:09 +0000 | divya | (divya@140.238.251.170) (Ping timeout: 276 seconds) |
| 2025-03-31 06:57:11 +0000 | CiaoSen | (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) CiaoSen |
| 2025-03-31 06:59:17 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 06:59:20 +0000 | j1n37- | (~j1n37@user/j1n37) j1n37 |
| 2025-03-31 06:59:22 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) |
| 2025-03-31 06:59:58 +0000 | j1n37 | (~j1n37@user/j1n37) (Ping timeout: 252 seconds) |
| 2025-03-31 07:00:05 +0000 | caconym | (~caconym@user/caconym) (Quit: bye) |
| 2025-03-31 07:00:59 +0000 | acidjnk | (~acidjnk@p200300d6e71c4f6101a7bfc96b38a12d.dip0.t-ipconnect.de) acidjnk |
| 2025-03-31 07:01:21 +0000 | caconym | (~caconym@user/caconym) caconym |
| 2025-03-31 07:03:59 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 07:04:04 +0000 | divya | (divya@140.238.251.170) divya |
| 2025-03-31 07:15:04 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 07:15:59 +0000 | Lord_of_Life_ | (~Lord@user/lord-of-life/x-2819915) Lord_of_Life |
| 2025-03-31 07:16:55 +0000 | Lord_of_Life | (~Lord@user/lord-of-life/x-2819915) (Ping timeout: 265 seconds) |
| 2025-03-31 07:17:21 +0000 | Lord_of_Life_ | Lord_of_Life |
| 2025-03-31 07:18:12 +0000 | chexum | (~quassel@gateway/tor-sasl/chexum) (Ping timeout: 264 seconds) |
| 2025-03-31 07:18:34 +0000 | chexum | (~quassel@gateway/tor-sasl/chexum) chexum |
| 2025-03-31 07:20:02 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds) |
| 2025-03-31 07:31:52 +0000 | chele | (~chele@user/chele) chele |
| 2025-03-31 07:31:57 +0000 | chiselfuse | (~chiselfus@user/chiselfuse) (Remote host closed the connection) |
| 2025-03-31 07:32:36 +0000 | chiselfuse | (~chiselfus@user/chiselfuse) chiselfuse |
| 2025-03-31 07:34:57 +0000 | tzh | (~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz) |
| 2025-03-31 07:37:38 +0000 | XZDX | boobs_ |
| 2025-03-31 07:37:51 +0000 | boobs_ | XZDX |
| 2025-03-31 07:42:05 +0000 | ChaiTRex | (~ChaiTRex@user/chaitrex) (Remote host closed the connection) |
| 2025-03-31 07:43:04 +0000 | ChaiTRex | (~ChaiTRex@user/chaitrex) ChaiTRex |
| 2025-03-31 07:43:46 +0000 | rit | (~rit@2409:40e0:101e:3313:4dd3:5aa1:e851:e0f) |
| 2025-03-31 07:50:01 +0000 | <hellwolf> | Question about Lens |
| 2025-03-31 07:50:01 +0000 | <hellwolf> | This is Iso: type Iso s t a b = forall p f. (Profunctor p, Functor f) => p a (f b) -> p s (f t) |
| 2025-03-31 07:50:27 +0000 | <hellwolf> | What if there is no functor instance: forall p. Profunctor p => p a b -> p s t |
| 2025-03-31 07:50:29 +0000 | <hellwolf> | what is it? |
| 2025-03-31 07:51:29 +0000 | <EvanR> | you mean f = Identity ? |
| 2025-03-31 07:56:38 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 08:03:37 +0000 | Sgeo | (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
| 2025-03-31 08:03:41 +0000 | vgtw | (~vgtw@user/vgtw) (Quit: ZNC - https://znc.in) |
| 2025-03-31 08:04:05 +0000 | lxsameer | (~lxsameer@Serene/lxsameer) lxsameer |
| 2025-03-31 08:05:41 +0000 | vgtw | (~vgtw@user/vgtw) vgtw |
| 2025-03-31 08:06:18 +0000 | rvalue | (~rvalue@user/rvalue) (Read error: Connection reset by peer) |
| 2025-03-31 08:06:50 +0000 | rvalue | (~rvalue@user/rvalue) rvalue |
| 2025-03-31 08:09:39 +0000 | vgtw | (~vgtw@user/vgtw) (Client Quit) |
| 2025-03-31 08:11:45 +0000 | vanishingideal | (~vanishing@user/vanishingideal) (Ping timeout: 252 seconds) |
| 2025-03-31 08:12:34 +0000 | vgtw | (~vgtw@user/vgtw) vgtw |
| 2025-03-31 08:13:20 +0000 | <Leary> | hellwolf: Should be equivalent. `f = Identity` gives you one direction and `p = PostCompose f q` the other, where `newtype PostCompose f q x y = MkPC (q x (f y))`. |
| 2025-03-31 08:13:32 +0000 | <[exa]> | is there some library way to avoid writing (\(a,b) (c,d) -> (a+c, b+d)) ? |
| 2025-03-31 08:15:40 +0000 | <Leary> | Yes, pester the CLC to let `instance (Num a, Num b) => Num (a, b)` into base. |
| 2025-03-31 08:15:48 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) (Ping timeout: 276 seconds) |
| 2025-03-31 08:16:40 +0000 | <[exa]> | Leary: /me sad |
| 2025-03-31 08:17:25 +0000 | acidjnk | (~acidjnk@p200300d6e71c4f6101a7bfc96b38a12d.dip0.t-ipconnect.de) (Ping timeout: 248 seconds) |
| 2025-03-31 08:17:55 +0000 | <[exa]> | I somehow thought this would be in tuple.extra or in bifunctors, so that I could at least write something like `zipBoth (+) (+)` but nope |
| 2025-03-31 08:18:03 +0000 | pie_ | (~pie_bnc@user/pie/x-2818909) () |
| 2025-03-31 08:18:15 +0000 | pie_ | (~pie_bnc@user/pie/x-2818909) __ |
| 2025-03-31 08:18:38 +0000 | <Leary> | Well, `biliftA2` could be your `zipBoth`. |
| 2025-03-31 08:18:48 +0000 | vanishingideal | (~vanishing@user/vanishingideal) vanishingideal |
| 2025-03-31 08:18:59 +0000 | <[exa]> | ooooh good |
| 2025-03-31 08:20:09 +0000 | <[exa]> | cool, thanks |
| 2025-03-31 08:20:42 +0000 | <[exa]> | (btw this is for use in a fold, I was mildly annoyed that Bifoldable actually doesn't fold the 2 things in parallel but it squashes them together) |
| 2025-03-31 08:21:14 +0000 | rit | (~rit@2409:40e0:101e:3313:4dd3:5aa1:e851:e0f) (Remote host closed the connection) |
| 2025-03-31 08:21:39 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 260 seconds) |
| 2025-03-31 08:21:47 +0000 | <Leary> | In that case, you can leverage the fact that we /do/ have `instance (Monoid a, Monoid b) => Monoid (a, b)` and use `(Sum a, Sum b)`. |
| 2025-03-31 08:22:09 +0000 | <[exa]> | ah wait true |
| 2025-03-31 08:22:23 +0000 | <[exa]> | that's actually very lawfully lawful and thus in base, right |
| 2025-03-31 08:22:51 +0000 | lortabac | (~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) lortabac |
| 2025-03-31 08:24:41 +0000 | rit | (~rit@2409:40e0:101e:3313:4dd3:5aa1:e851:e0f) |
| 2025-03-31 08:27:14 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 08:28:19 +0000 | acidjnk | (~acidjnk@p200300d6e71c4f0201dd6e6931f35b33.dip0.t-ipconnect.de) acidjnk |
| 2025-03-31 08:32:53 +0000 | edwtjo | (~edwtjo@fsf/member/edwtjo) (Ping timeout: 248 seconds) |
| 2025-03-31 08:34:02 +0000 | fp | (~Thunderbi@2001:708:20:1406::1370) fp |
| 2025-03-31 08:41:10 +0000 | zmt01 | (~zmt00@user/zmt00) zmt00 |
| 2025-03-31 08:42:28 +0000 | swamp_ | (~zmt00@user/zmt00) zmt00 |
| 2025-03-31 08:43:06 +0000 | hattckory | (~hattckory@70.27.118.207) |
| 2025-03-31 08:43:22 +0000 | zmt00 | (~zmt00@user/zmt00) (Ping timeout: 252 seconds) |
| 2025-03-31 08:45:09 +0000 | zmt01 | (~zmt00@user/zmt00) (Read error: Connection reset by peer) |
| 2025-03-31 08:45:57 +0000 | edwtjo | (~edwtjo@h-155-4-52-114.A213.priv.bahnhof.se) |
| 2025-03-31 08:45:57 +0000 | edwtjo | (~edwtjo@h-155-4-52-114.A213.priv.bahnhof.se) (Changing host) |
| 2025-03-31 08:45:57 +0000 | edwtjo | (~edwtjo@fsf/member/edwtjo) edwtjo |
| 2025-03-31 08:46:12 +0000 | <[exa]> | Leary: turns out base even has Num a => Num (Sum a) so I don't even have to write the Sum anywhere. Thanks! |
| 2025-03-31 08:47:44 +0000 | hattckory | (~hattckory@70.27.118.207) (Ping timeout: 260 seconds) |
| 2025-03-31 08:56:44 +0000 | swamp_ | (~zmt00@user/zmt00) (Ping timeout: 244 seconds) |
| 2025-03-31 08:58:23 +0000 | random-jellyfish | (~developer@user/random-jellyfish) random-jellyfish |
| 2025-03-31 08:59:41 +0000 | __monty__ | (~toonn@user/toonn) toonn |
| 2025-03-31 09:01:41 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 248 seconds) |
| 2025-03-31 09:02:01 +0000 | unter-oe | (~unter-oe@176.192.243.31) |
| 2025-03-31 09:02:01 +0000 | unter-oe | (~unter-oe@176.192.243.31) (Changing host) |
| 2025-03-31 09:02:01 +0000 | unter-oe | (~unter-oe@user/unter-oe) unter-oe |
| 2025-03-31 09:04:36 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 09:05:56 +0000 | target_i | (~target_i@user/target-i/x-6023099) target_i |
| 2025-03-31 09:06:26 +0000 | ljdarj | (~Thunderbi@user/ljdarj) ljdarj |
| 2025-03-31 09:18:27 +0000 | fsane | (~fsane@2405:8d40:4470:9e14:fdd9:a5e:9977:d022) |
| 2025-03-31 09:19:03 +0000 | fp | (~Thunderbi@2001:708:20:1406::1370) (Ping timeout: 268 seconds) |
| 2025-03-31 09:19:50 +0000 | Ikosit | (~Ikosit@user/ikosit) (Quit: The Lounge - https://thelounge.chat) |
| 2025-03-31 09:28:35 +0000 | mari-estel | (~mari-este@user/mari-estel) mari-estel |
| 2025-03-31 09:32:05 +0000 | mari-estel | (~mari-este@user/mari-estel) (Remote host closed the connection) |
| 2025-03-31 09:32:25 +0000 | mari-estel | (~mari-este@user/mari-estel) mari-estel |
| 2025-03-31 09:35:54 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 252 seconds) |
| 2025-03-31 09:37:11 +0000 | random-jellyfish | (~developer@user/random-jellyfish) (Remote host closed the connection) |
| 2025-03-31 09:37:40 +0000 | fp | (~Thunderbi@130.233.70.95) fp |
| 2025-03-31 09:38:35 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 09:39:31 +0000 | Square2 | (~Square4@user/square) Square |
| 2025-03-31 09:41:43 +0000 | dhil | (~dhil@2a0c:b381:52e:3600:1143:d61d:a64d:dc67) dhil |
| 2025-03-31 09:43:26 +0000 | Ikosit | (~Ikosit@user/ikosit) Ikosit |
| 2025-03-31 09:45:29 +0000 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Remote host closed the connection) |
| 2025-03-31 09:45:56 +0000 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) bitdex |
| 2025-03-31 09:46:04 +0000 | fsane | (~fsane@2405:8d40:4470:9e14:fdd9:a5e:9977:d022) (Ping timeout: 260 seconds) |
| 2025-03-31 09:46:24 +0000 | ChaiTRex | (~ChaiTRex@user/chaitrex) (Ping timeout: 264 seconds) |
| 2025-03-31 09:48:22 +0000 | ChaiTRex | (~ChaiTRex@user/chaitrex) ChaiTRex |
| 2025-03-31 09:48:33 +0000 | lortabac | (~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) (Ping timeout: 248 seconds) |
| 2025-03-31 10:01:22 +0000 | Square2 | Square |
| 2025-03-31 10:07:03 +0000 | lortabac | (~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) lortabac |
| 2025-03-31 10:08:44 +0000 | Smiles | (uid551636@id-551636.lymington.irccloud.com) Smiles |
| 2025-03-31 10:10:38 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 252 seconds) |
| 2025-03-31 10:10:40 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) |
| 2025-03-31 10:14:45 +0000 | lortabac | (~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) (Ping timeout: 276 seconds) |
| 2025-03-31 10:15:13 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) (Ping timeout: 248 seconds) |
| 2025-03-31 10:19:18 +0000 | xff0x_ | (~xff0x@fsb6a9491c.tkyc517.ap.nuro.jp) (Ping timeout: 276 seconds) |
| 2025-03-31 10:20:47 +0000 | unter-oe | (~unter-oe@user/unter-oe) (Remote host closed the connection) |
| 2025-03-31 10:23:28 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 10:23:59 +0000 | ljdarj | (~Thunderbi@user/ljdarj) (Ping timeout: 260 seconds) |
| 2025-03-31 10:25:25 +0000 | CiaoSen | (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 248 seconds) |
| 2025-03-31 10:27:04 +0000 | internatetional | (~internate@103.84.7.87) internatetional |
| 2025-03-31 10:29:49 +0000 | internatetional | (~internate@103.84.7.87) (Remote host closed the connection) |
| 2025-03-31 10:30:05 +0000 | internatetional | (~internate@103.84.7.87) internatetional |
| 2025-03-31 10:32:21 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 248 seconds) |
| 2025-03-31 10:33:43 +0000 | s3 | (~s3@user/bn) (Ping timeout: 245 seconds) |
| 2025-03-31 10:36:00 +0000 | s3 | (~s3@user/bn) bn |
| 2025-03-31 10:40:45 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 10:48:30 +0000 | internatetional | (~internate@103.84.7.87) (Quit: CoreIRC for Android - www.coreirc.com) |
| 2025-03-31 10:49:49 +0000 | internatetional | (~nate@103.84.7.87) internatetional |
| 2025-03-31 10:52:21 +0000 | pabs3 | (~pabs3@user/pabs3) (Ping timeout: 252 seconds) |
| 2025-03-31 10:53:40 +0000 | internatetional_ | (~internate@103.84.7.87) internatetional |
| 2025-03-31 10:55:44 +0000 | zmt00 | (~zmt00@user/zmt00) zmt00 |
| 2025-03-31 10:58:04 +0000 | internatetional_ | (~internate@103.84.7.87) (Remote host closed the connection) |
| 2025-03-31 10:58:11 +0000 | mari-estel | (~mari-este@user/mari-estel) (Remote host closed the connection) |
| 2025-03-31 10:58:25 +0000 | internatetional_ | (~nate@103.84.7.87) internatetional |
| 2025-03-31 11:04:37 +0000 | internatetional | (~nate@103.84.7.87) (Quit: WeeChat 4.6.0) |
| 2025-03-31 11:10:02 +0000 | internatetional_ | (~nate@103.84.7.87) (Ping timeout: 252 seconds) |
| 2025-03-31 11:13:14 +0000 | lortabac | (~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) lortabac |
| 2025-03-31 11:17:46 +0000 | xff0x | (~xff0x@2405:6580:b080:900:bfb1:8756:886a:fcf7) |
| 2025-03-31 11:22:03 +0000 | ljdarj | (~Thunderbi@user/ljdarj) ljdarj |
| 2025-03-31 11:23:57 +0000 | toby-bro | (~toby-bro@user/toby-bro) toby-bro |
| 2025-03-31 11:26:16 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-03-31 11:30:34 +0000 | img | (~img@user/img) (Quit: ZNC 1.8.2 - https://znc.in) |
| 2025-03-31 11:31:57 +0000 | img | (~img@user/img) img |
| 2025-03-31 11:37:48 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 268 seconds) |
| 2025-03-31 11:38:44 +0000 | <haskellbridge> | <alexfmpe> [exa]: bimap (+) (+) |
| 2025-03-31 11:39:19 +0000 | internatetional | (~nate@2400:9800:340:7034:1:0:8d4b:9648) internatetional |
| 2025-03-31 11:40:05 +0000 | hellwolf | (~user@172a-40ae-6125-5458-0f00-4d40-07d0-2001.sta.estpak.ee) (Ping timeout: 252 seconds) |
| 2025-03-31 11:41:09 +0000 | srk | (~sorki@user/srk) (Ping timeout: 248 seconds) |
| 2025-03-31 11:44:22 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 11:45:11 +0000 | hellwolf | (~user@d446-ae4d-8e8d-4d2f-0f00-4d40-07d0-2001.sta.estpak.ee) hellwolf |
| 2025-03-31 11:47:03 +0000 | internatetional | (~nate@2400:9800:340:7034:1:0:8d4b:9648) (Ping timeout: 276 seconds) |
| 2025-03-31 11:53:18 +0000 | CiaoSen | (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) CiaoSen |
| 2025-03-31 12:00:43 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) |
| 2025-03-31 12:01:22 +0000 | malte | (~malte@mal.tc) (Remote host closed the connection) |
| 2025-03-31 12:04:02 +0000 | weary-traveler | (~user@user/user363627) user363627 |
| 2025-03-31 12:04:10 +0000 | malte | (~malte@mal.tc) malte |
| 2025-03-31 12:05:54 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) (Ping timeout: 276 seconds) |
| 2025-03-31 12:06:36 +0000 | hurk | (~user@9.47.7.51.dyn.plus.net) |
| 2025-03-31 12:10:28 +0000 | rit | (~rit@2409:40e0:101e:3313:4dd3:5aa1:e851:e0f) (Remote host closed the connection) |
| 2025-03-31 12:13:20 +0000 | hattckory | (~hattckory@bras-base-toroon4524w-grc-30-70-27-118-207.dsl.bell.ca) |
| 2025-03-31 12:14:11 +0000 | sprotte24 | (~sprotte24@p200300d16f24f500b1cefbd2da3b16f9.dip0.t-ipconnect.de) |
| 2025-03-31 12:21:12 +0000 | jespada | (~jespada@2800:a4:2219:3d00:3c5d:9220:9de:e877) jespada |
| 2025-03-31 12:24:17 +0000 | sabathan | (~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr) (Read error: Connection reset by peer) |
| 2025-03-31 12:26:20 +0000 | sabathan | (~sabathan@amarseille-159-1-12-107.w86-203.abo.wanadoo.fr) |
| 2025-03-31 12:29:50 +0000 | weary-traveler | (~user@user/user363627) (Remote host closed the connection) |
| 2025-03-31 12:30:41 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) () |
| 2025-03-31 12:32:27 +0000 | tabaqui | (~tabaqui@167.71.80.236) tabaqui |
| 2025-03-31 12:39:36 +0000 | rit | (~rit@2409:40e0:101e:3313:4dd3:5aa1:e851:e0f) |
| 2025-03-31 12:46:54 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 260 seconds) |
| 2025-03-31 12:48:02 +0000 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Quit: = "") |
| 2025-03-31 12:49:34 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) |
| 2025-03-31 12:51:01 +0000 | hurk | (~user@9.47.7.51.dyn.plus.net) (Remote host closed the connection) |
| 2025-03-31 12:53:46 +0000 | weary-traveler | (~user@user/user363627) user363627 |
| 2025-03-31 12:55:53 +0000 | <hellwolf> | 03-31 10:51 <EvanR> you mean f = Identity ? Ah, that makes sense. So without function constraint would be equivalent to Iso with identity functor. |
| 2025-03-31 12:56:12 +0000 | xff0x | (~xff0x@2405:6580:b080:900:bfb1:8756:886a:fcf7) (Quit: xff0x) |
| 2025-03-31 12:56:21 +0000 | <hellwolf> | Identity Iso. |
| 2025-03-31 13:00:53 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 13:01:41 +0000 | sprotte24 | (~sprotte24@p200300d16f24f500b1cefbd2da3b16f9.dip0.t-ipconnect.de) (Quit: Leaving) |
| 2025-03-31 13:07:43 +0000 | internatetional | (~nate@2400:9800:d:fb6:1:0:8dba:4857) internatetional |
| 2025-03-31 13:15:49 +0000 | xff0x | (~xff0x@2405:6580:b080:900:6039:ea11:94ce:5df6) |
| 2025-03-31 13:20:21 +0000 | xff0x | (~xff0x@2405:6580:b080:900:6039:ea11:94ce:5df6) (Ping timeout: 248 seconds) |
| 2025-03-31 13:32:30 +0000 | ystael | (~ystael@user/ystael) ystael |
| 2025-03-31 13:33:07 +0000 | srk | (~sorki@user/srk) srk |
| 2025-03-31 13:35:57 +0000 | pabs3 | (~pabs3@user/pabs3) pabs3 |
| 2025-03-31 13:36:42 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 252 seconds) |
| 2025-03-31 13:38:27 +0000 | internatetional | (~nate@2400:9800:d:fb6:1:0:8dba:4857) (Ping timeout: 252 seconds) |
| 2025-03-31 13:41:13 +0000 | merijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 13:47:33 +0000 | comerijn | (~merijn@77.242.116.146) merijn |
| 2025-03-31 13:47:48 +0000 | Smiles | (uid551636@id-551636.lymington.irccloud.com) (Quit: Connection closed for inactivity) |
| 2025-03-31 13:49:41 +0000 | merijn | (~merijn@77.242.116.146) (Ping timeout: 244 seconds) |
| 2025-03-31 13:56:22 +0000 | mari-estel | (~mari-este@user/mari-estel) mari-estel |
| 2025-03-31 13:56:33 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-03-31 13:56:55 +0000 | <haskellbridge> | <Bowuigi> Any recommendations for using UNIX sockets? I'm looking to quickly hack around an Acme-like text editor |
| 2025-03-31 13:57:24 +0000 | noctux | (~noctux@user/noctux) (Ping timeout: 252 seconds) |
| 2025-03-31 14:00:02 +0000 | <mari-estel> | sounds challenging |
| 2025-03-31 14:01:08 +0000 | Digit | (~user@user/digit) (Read error: Connection reset by peer) |
| 2025-03-31 14:01:48 +0000 | noctux | (~noctux@user/noctux) noctux |
| 2025-03-31 14:03:10 +0000 | Digit | (~user@user/digit) Digit |
| 2025-03-31 14:04:12 +0000 | fp | (~Thunderbi@130.233.70.95) (Ping timeout: 252 seconds) |
| 2025-03-31 14:06:12 +0000 | <haskellbridge> | <Bowuigi> Not that much, really. The server part is fairly simple, Haskell makes IPC reasonably easy and the most complex part of the editor is probably handling keybindings and syntax highlighting |
| 2025-03-31 14:07:25 +0000 | <tomsmeding> | what are you using for terminal IO? |
| 2025-03-31 14:07:37 +0000 | <tomsmeding> | escape sequences for cursor movement, drawing, etc. |
| 2025-03-31 14:07:56 +0000 | <haskellbridge> | <Bowuigi> Not sure yet, can't decide between vty and termbox |
| 2025-03-31 14:08:05 +0000 | <haskellbridge> | <Bowuigi> I don't manage windows either |
| 2025-03-31 14:08:13 +0000 | manny2 | (~manny@2601:445:700:69b0:43cb:caf0:77c8:51bc) |
| 2025-03-31 14:08:52 +0000 | <haskellbridge> | <Bowuigi> No minibuffer or command buffer either |
| 2025-03-31 14:09:26 +0000 | <haskellbridge> | <Bowuigi> Might implement basic autocompletion at some point but not now |
| 2025-03-31 14:09:34 +0000 | <tomsmeding> | making editors is fun |
| 2025-03-31 14:09:41 +0000 | <tomsmeding> | watch out for the time sink |
| 2025-03-31 14:10:08 +0000 | <haskellbridge> | <Bowuigi> Yeah, I wanted to make this as small as possible because of that |
| 2025-03-31 14:11:05 +0000 | <haskellbridge> | <Bowuigi> I managed to cut like 90% of the features of a text editor but I still have to do some things lol |
| 2025-03-31 14:11:19 +0000 | <tomsmeding> | :p |
| 2025-03-31 14:12:10 +0000 | mari-estel | (~mari-este@user/mari-estel) (Remote host closed the connection) |
| 2025-03-31 14:12:59 +0000 | <haskellbridge> | <Bowuigi> I don't think I can cut much more, I don't know if a FIFO would work instead of a UNIX socket, it would be annoying if you want to change the settings on a window while something else is running (unless I fix that with some clever trickery) |
| 2025-03-31 14:13:06 +0000 | pabs3 | (~pabs3@user/pabs3) (Read error: Connection reset by peer) |
| 2025-03-31 14:14:03 +0000 | pabs3 | (~pabs3@user/pabs3) pabs3 |
| 2025-03-31 14:19:03 +0000 | <haskellbridge> | <Bowuigi> Oh actually a FIFO would work without clever trickery, that's way easier to work with |
| 2025-03-31 14:21:03 +0000 | xff0x | (~xff0x@2405:6580:b080:900:1654:70d2:c294:d90) |
| 2025-03-31 14:21:08 +0000 | XZDX | (~xzdx@user/XZDX) (Ping timeout: 272 seconds) |
| 2025-03-31 14:21:21 +0000 | jespada | (~jespada@2800:a4:2219:3d00:3c5d:9220:9de:e877) (Quit: My Mac has gone to sleep. ZZZzzz…) |
| 2025-03-31 14:21:36 +0000 | fp | (~Thunderbi@130.233.70.95) fp |
| 2025-03-31 14:24:33 +0000 | <haskellbridge> | <Bowuigi> I would have to use one FIFO to read commands and one FIFO per command reply, which is inmediately closed after the whole reply is read |
| 2025-03-31 14:25:35 +0000 | jespada | (~jespada@2800:a4:2219:3d00:3c5d:9220:9de:e877) jespada |
| 2025-03-31 14:30:21 +0000 | XZDX | (~xzdx@c-68-55-21-207.hsd1.mi.comcast.net) |
| 2025-03-31 14:31:54 +0000 | CiaoSen | (~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 260 seconds) |
| 2025-03-31 14:45:02 +0000 | manny2 | (~manny@2601:445:700:69b0:43cb:caf0:77c8:51bc) (Quit: Client closed) |
| 2025-03-31 14:45:34 +0000 | manny81 | (~manny@2601:445:700:69b0:43cb:caf0:77c8:51bc) |
| 2025-03-31 14:57:00 +0000 | jinsun | (~jinsun@user/jinsun) jinsun |
| 2025-03-31 14:59:49 +0000 | jmcantrell | (~weechat@user/jmcantrell) jmcantrell |
| 2025-03-31 15:21:02 +0000 | acidjnk | (~acidjnk@p200300d6e71c4f0201dd6e6931f35b33.dip0.t-ipconnect.de) (Ping timeout: 268 seconds) |
| 2025-03-31 15:22:51 +0000 | Smiles | (uid551636@id-551636.lymington.irccloud.com) Smiles |
| 2025-03-31 15:27:55 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) L29Ah |
| 2025-03-31 15:29:49 +0000 | lortabac | (~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) (Quit: WeeChat 4.5.2) |
| 2025-03-31 15:35:25 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) |
| 2025-03-31 15:42:03 +0000 | Feuermagier | (~Feuermagi@user/feuermagier) Feuermagier |
| 2025-03-31 15:47:33 +0000 | tessier | (~tessier@ec2-184-72-149-67.compute-1.amazonaws.com) (Ping timeout: 268 seconds) |
| 2025-03-31 15:49:10 +0000 | tessier | (~tessier@ip68-8-117-219.sd.sd.cox.net) tessier |
| 2025-03-31 15:58:01 +0000 | polyphem | (~rod@pd9fbf649.dip0.t-ipconnect.de) polyphem |
| 2025-03-31 15:59:53 +0000 | jespada | (~jespada@2800:a4:2219:3d00:3c5d:9220:9de:e877) (Ping timeout: 268 seconds) |
| 2025-03-31 15:59:56 +0000 | tessier | (~tessier@ip68-8-117-219.sd.sd.cox.net) (Ping timeout: 272 seconds) |
| 2025-03-31 16:01:23 +0000 | tessier | (~tessier@ec2-184-72-149-67.compute-1.amazonaws.com) tessier |
| 2025-03-31 16:03:44 +0000 | Feuermagier_ | (~Feuermagi@user/feuermagier) Feuermagier |
| 2025-03-31 16:03:44 +0000 | Feuermagier | (~Feuermagi@user/feuermagier) (Killed (lead.libera.chat (Nickname regained by services))) |
| 2025-03-31 16:03:44 +0000 | Feuermagier_ | Feuermagier |
| 2025-03-31 16:04:25 +0000 | ft | (~ft@p508db463.dip0.t-ipconnect.de) ft |
| 2025-03-31 16:05:54 +0000 | Feuermagier | (~Feuermagi@user/feuermagier) (Client Quit) |
| 2025-03-31 16:06:53 +0000 | wootehfoot | (~wootehfoo@user/wootehfoot) wootehfoot |
| 2025-03-31 16:13:16 +0000 | tzh | (~tzh@c-76-115-131-146.hsd1.or.comcast.net) |
| 2025-03-31 16:14:37 +0000 | acidjnk | (~acidjnk@p200300d6e71c4f0201dd6e6931f35b33.dip0.t-ipconnect.de) acidjnk |
| 2025-03-31 16:19:30 +0000 | comerijn | (~merijn@77.242.116.146) (Ping timeout: 252 seconds) |
| 2025-03-31 16:19:32 +0000 | barthandelous01 | (barth@triton.blinkenshell.org) (Quit: WeeChat 2.8) |
| 2025-03-31 16:21:14 +0000 | Square2 | (~Square@user/square) Square |
| 2025-03-31 16:22:37 +0000 | fp2 | (~Thunderbi@2001:708:150:10::1d80) fp |
| 2025-03-31 16:22:54 +0000 | fp | (~Thunderbi@130.233.70.95) (Ping timeout: 252 seconds) |
| 2025-03-31 16:22:54 +0000 | fp2 | fp |
| 2025-03-31 16:25:10 +0000 | Square | (~Square4@user/square) (Ping timeout: 268 seconds) |
| 2025-03-31 16:27:45 +0000 | <sclv> | wtf https://arstechnica.com/security/2025/03/computer-scientist-goes-silent-after-fbi-raid-and-purging… |
| 2025-03-31 16:28:06 +0000 | <sclv> | lot of haskellers and FPers at IU. sending my best to them |
| 2025-03-31 16:31:53 +0000 | zungi | (~tory@user/andrewchawk) andrewchawk |
| 2025-03-31 16:43:23 +0000 | notdabs | (~Owner@2600:1700:69cf:9000:6cf0:d644:3911:cb5b) |
| 2025-03-31 16:44:01 +0000 | <davean> | sclv: Yah thats an interesting one. Wonder whats up with the "missing for weeks" part |
| 2025-03-31 16:49:56 +0000 | werneta | (~werneta@syn-071-083-160-242.res.spectrum.com) (Ping timeout: 252 seconds) |
| 2025-03-31 16:54:33 +0000 | j1n37 | (~j1n37@user/j1n37) j1n37 |
| 2025-03-31 16:55:24 +0000 | j1n37- | (~j1n37@user/j1n37) (Ping timeout: 260 seconds) |
| 2025-03-31 17:01:33 +0000 | chele | (~chele@user/chele) (Remote host closed the connection) |
| 2025-03-31 17:11:20 +0000 | Guest4 | (~Guest4@115.243.103.7) |
| 2025-03-31 17:12:02 +0000 | Guest4 | (~Guest4@115.243.103.7) (Client Quit) |
| 2025-03-31 17:14:56 +0000 | bliminse | (~bliminse@user/bliminse) (Quit: leaving) |
| 2025-03-31 17:15:01 +0000 | ljdarj1 | (~Thunderbi@user/ljdarj) ljdarj |
| 2025-03-31 17:16:38 +0000 | ljdarj | (~Thunderbi@user/ljdarj) (Ping timeout: 245 seconds) |
| 2025-03-31 17:16:39 +0000 | ljdarj1 | ljdarj |
| 2025-03-31 17:26:35 +0000 | bliminse | (~bliminse@user/bliminse) bliminse |
| 2025-03-31 17:29:18 +0000 | manny81 | (~manny@2601:445:700:69b0:43cb:caf0:77c8:51bc) (Ping timeout: 240 seconds) |
| 2025-03-31 17:32:11 +0000 | <EvanR> | deleting somebody from the internet? That's annoying |
| 2025-03-31 17:32:51 +0000 | sord937 | (~sord937@gateway/tor-sasl/sord937) (Quit: sord937) |
| 2025-03-31 17:33:54 +0000 | <EvanR> | universities sometimes have interesting ways of dealing with bad publicity |
| 2025-03-31 17:38:52 +0000 | machinedgod | (~machinedg@d108-173-18-100.abhsia.telus.net) (Ping timeout: 244 seconds) |
| 2025-03-31 17:39:59 +0000 | manny69 | (~manny@2601:445:700:69b0:edc8:140b:9839:8c7d) |
| 2025-03-31 17:43:24 +0000 | user363627 | (~user@user/user363627) user363627 |
| 2025-03-31 17:45:09 +0000 | weary-traveler | (~user@user/user363627) (Ping timeout: 260 seconds) |
| 2025-03-31 17:45:17 +0000 | Unicorn_Princess | (~Unicorn_P@user/Unicorn-Princess/x-3540542) (Remote host closed the connection) |
| 2025-03-31 17:47:33 +0000 | acidjnk | (~acidjnk@p200300d6e71c4f0201dd6e6931f35b33.dip0.t-ipconnect.de) (Ping timeout: 248 seconds) |
| 2025-03-31 17:48:27 +0000 | wootehfoot | (~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer) |
| 2025-03-31 17:55:30 +0000 | fp | (~Thunderbi@2001:708:150:10::1d80) (Ping timeout: 246 seconds) |
| 2025-03-31 18:05:03 +0000 | jespada | (~jespada@2800:a4:2231:f700:8971:aafc:a22d:7172) jespada |
| 2025-03-31 18:06:12 +0000 | jespada | (~jespada@2800:a4:2231:f700:8971:aafc:a22d:7172) (Client Quit) |
| 2025-03-31 18:07:50 +0000 | jespada | (~jespada@2800:a4:2231:f700:8971:aafc:a22d:7172) jespada |
| 2025-03-31 18:08:49 +0000 | meltedbrain_y2k | (~meltedbra@47.62.59.136) meltedbrain_y2k |
| 2025-03-31 18:17:32 +0000 | acidjnk | (~acidjnk@p200300d6e71c4f0205a1013c182d2742.dip0.t-ipconnect.de) acidjnk |
| 2025-03-31 18:17:34 +0000 | lxsameer | (~lxsameer@Serene/lxsameer) (Ping timeout: 252 seconds) |
| 2025-03-31 18:18:24 +0000 | sprotte24 | (~sprotte24@p200300d16f24f500b1cefbd2da3b16f9.dip0.t-ipconnect.de) |
| 2025-03-31 18:30:42 +0000 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich |
| 2025-03-31 18:31:52 +0000 | tabaqui | (~tabaqui@167.71.80.236) (Ping timeout: 252 seconds) |
| 2025-03-31 18:32:06 +0000 | tv | (~tv@user/tv) (Read error: Connection reset by peer) |
| 2025-03-31 18:51:59 +0000 | user363627 | (~user@user/user363627) (Remote host closed the connection) |
| 2025-03-31 18:52:02 +0000 | Tuplanolla | (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) Tuplanolla |
| 2025-03-31 18:52:22 +0000 | rit | (~rit@2409:40e0:101e:3313:4dd3:5aa1:e851:e0f) (Remote host closed the connection) |
| 2025-03-31 18:52:31 +0000 | rit | (~rit@2409:40e0:101e:3313:4dd3:5aa1:e851:e0f) |
| 2025-03-31 18:55:44 +0000 | troydm | (~troydm@user/troydm) (Ping timeout: 260 seconds) |
| 2025-03-31 18:57:14 +0000 | ash3en | (~Thunderbi@31.16.203.214) ash3en |
| 2025-03-31 18:59:36 +0000 | zungi | (~tory@user/andrewchawk) (Ping timeout: 264 seconds) |
| 2025-03-31 19:00:00 +0000 | caconym | (~caconym@user/caconym) (Quit: bye) |
| 2025-03-31 19:00:42 +0000 | caconym | (~caconym@user/caconym) caconym |
| 2025-03-31 19:04:08 +0000 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 252 seconds) |
| 2025-03-31 19:08:01 +0000 | euphores | (~SASL_euph@user/euphores) (Quit: Leaving.) |
| 2025-03-31 19:10:17 +0000 | weary-traveler | (~user@user/user363627) user363627 |
| 2025-03-31 19:11:41 +0000 | sroso | (~sroso@user/SrOso) SrOso |
| 2025-03-31 19:13:44 +0000 | euphores | (~SASL_euph@user/euphores) euphores |
| 2025-03-31 19:21:54 +0000 | ChaiTRex | (~ChaiTRex@user/chaitrex) (Quit: ChaiTRex) |
| 2025-03-31 19:25:15 +0000 | robobub | (uid248673@id-248673.uxbridge.irccloud.com) robobub |
| 2025-03-31 19:28:53 +0000 | AlexZenon | (~alzenon@178.34.150.194) (Ping timeout: 248 seconds) |
| 2025-03-31 19:30:54 +0000 | __monty__ | (~toonn@user/toonn) (Quit: leaving) |
| 2025-03-31 19:32:52 +0000 | Eoco | (~ian@128.101.131.218) Eoco |
| 2025-03-31 19:34:12 +0000 | polyphem | (~rod@pd9fbf649.dip0.t-ipconnect.de) (Ping timeout: 252 seconds) |
| 2025-03-31 19:34:32 +0000 | AlexZenon | (~alzenon@178.34.150.194) |
| 2025-03-31 19:36:46 +0000 | tv | (~tv@user/tv) tv |
| 2025-03-31 19:45:12 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) (Ping timeout: 252 seconds) |
| 2025-03-31 19:50:30 +0000 | Square | (~Square4@user/square) Square |
| 2025-03-31 19:52:10 +0000 | hgolden | (~hgolden@2603:8000:9d00:3ed1:6ff3:8389:b901:6363) (Remote host closed the connection) |
| 2025-03-31 19:53:54 +0000 | Square2 | (~Square@user/square) (Ping timeout: 248 seconds) |
| 2025-03-31 19:54:10 +0000 | hgolden | (~hgolden@2603:8000:9d00:3ed1:6ff3:8389:b901:6363) hgolden |
| 2025-03-31 19:58:44 +0000 | rit | (~rit@2409:40e0:101e:3313:4dd3:5aa1:e851:e0f) (Remote host closed the connection) |
| 2025-03-31 20:04:40 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 20:09:41 +0000 | troydm | (~troydm@user/troydm) troydm |
| 2025-03-31 20:11:13 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 20:12:21 +0000 | hgolden | (~hgolden@2603:8000:9d00:3ed1:6ff3:8389:b901:6363) (Ping timeout: 246 seconds) |
| 2025-03-31 20:17:41 +0000 | hurk | (~user@9.47.7.51.dyn.plus.net) |
| 2025-03-31 20:18:30 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 20:21:02 +0000 | hurk | (~user@9.47.7.51.dyn.plus.net) (Client Quit) |
| 2025-03-31 20:22:37 +0000 | hgolden | (~hgolden@2603:8000:9d00:3ed1:1b03:b08c:d961:6530) hgolden |
| 2025-03-31 20:23:49 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 268 seconds) |
| 2025-03-31 20:24:07 +0000 | takuan | (~takuan@d8D86B601.access.telenet.be) (Remote host closed the connection) |
| 2025-03-31 20:26:23 +0000 | michalz | (~michalz@185.246.207.193) (Remote host closed the connection) |
| 2025-03-31 20:31:45 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-03-31 20:32:03 +0000 | ChaiTRex | (~ChaiTRex@user/chaitrex) ChaiTRex |
| 2025-03-31 20:33:45 +0000 | meltedbrain_y2k | (~meltedbra@47.62.59.136) (Quit: Leaving.) |
| 2025-03-31 20:34:32 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 20:39:11 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-03-31 20:41:19 +0000 | hgolden | (~hgolden@2603:8000:9d00:3ed1:1b03:b08c:d961:6530) (Remote host closed the connection) |
| 2025-03-31 20:49:55 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 20:51:36 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) |
| 2025-03-31 20:51:49 +0000 | Smiles | (uid551636@id-551636.lymington.irccloud.com) (Quit: Connection closed for inactivity) |
| 2025-03-31 20:54:30 +0000 | weary-traveler | (~user@user/user363627) (Remote host closed the connection) |
| 2025-03-31 20:54:52 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 20:55:10 +0000 | ash3en | (~Thunderbi@31.16.203.214) (Quit: ash3en) |
| 2025-03-31 21:01:29 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-03-31 21:05:42 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 21:06:33 +0000 | glguy | (glguy@libera/staff/glguy) (Quit: Quit) |
| 2025-03-31 21:07:54 +0000 | glguy | (glguy@libera/staff/glguy) glguy |
| 2025-03-31 21:10:18 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) |
| 2025-03-31 21:10:54 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 272 seconds) |
| 2025-03-31 21:15:48 +0000 | machinedgod | (~machinedg@d108-173-18-100.abhsia.telus.net) machinedgod |
| 2025-03-31 21:16:41 +0000 | gabriel_sevecek | (~gabriel@188-167-229-200.dynamic.chello.sk) (Quit: WeeChat 4.4.4) |
| 2025-03-31 21:18:50 +0000 | gabriel_sevecek | (~gabriel@188-167-229-200.dynamic.chello.sk) gabriel_sevecek |
| 2025-03-31 21:19:30 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 21:24:32 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-03-31 21:24:34 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 21:25:03 +0000 | gabriel_sevecek | (~gabriel@188-167-229-200.dynamic.chello.sk) (Quit: WeeChat 4.6.0) |
| 2025-03-31 21:25:52 +0000 | gabriel_sevecek | (~gabriel@188-167-229-200.dynamic.chello.sk) gabriel_sevecek |
| 2025-03-31 21:28:06 +0000 | euphores | (~SASL_euph@user/euphores) (Quit: Leaving.) |
| 2025-03-31 21:33:48 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) |
| 2025-03-31 21:35:18 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 21:35:43 +0000 | Square | (~Square4@user/square) (Ping timeout: 244 seconds) |
| 2025-03-31 21:36:15 +0000 | emmanuelux | (~emmanuelu@user/emmanuelux) emmanuelux |
| 2025-03-31 21:36:58 +0000 | target_i | (~target_i@user/target-i/x-6023099) (Quit: leaving) |
| 2025-03-31 21:41:36 +0000 | emmanuelux | (~emmanuelu@user/emmanuelux) (Quit: au revoir) |
| 2025-03-31 21:42:10 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 21:46:13 +0000 | emmanuelux | (~emmanuelu@user/emmanuelux) emmanuelux |
| 2025-03-31 21:48:40 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-03-31 21:51:40 +0000 | jinsun | (~jinsun@user/jinsun) () |
| 2025-03-31 21:53:22 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 21:57:53 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2025-03-31 21:59:04 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) |
| 2025-03-31 22:01:54 +0000 | dhil | (~dhil@2a0c:b381:52e:3600:1143:d61d:a64d:dc67) (Ping timeout: 246 seconds) |
| 2025-03-31 22:02:30 +0000 | ljdarj1 | (~Thunderbi@user/ljdarj) ljdarj |
| 2025-03-31 22:02:37 +0000 | weary-traveler | (~user@user/user363627) user363627 |
| 2025-03-31 22:02:52 +0000 | L29Ah | (~L29Ah@wikipedia/L29Ah) L29Ah |
| 2025-03-31 22:06:11 +0000 | ljdarj | (~Thunderbi@user/ljdarj) (Ping timeout: 268 seconds) |
| 2025-03-31 22:06:11 +0000 | ljdarj1 | ljdarj |
| 2025-03-31 22:08:43 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 22:13:42 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 22:20:31 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 22:20:54 +0000 | manny69 | (~manny@2601:445:700:69b0:edc8:140b:9839:8c7d) (Ping timeout: 240 seconds) |
| 2025-03-31 22:23:15 +0000 | tromp | (~textual@2001:1c00:3487:1b00:29bc:7fae:9d9f:d545) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 2025-03-31 22:25:26 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 22:26:13 +0000 | remexre | (~remexre@user/remexre) (Ping timeout: 245 seconds) |
| 2025-03-31 22:27:10 +0000 | Eoco | (~ian@128.101.131.218) (Ping timeout: 244 seconds) |
| 2025-03-31 22:27:17 +0000 | jespada | (~jespada@2800:a4:2231:f700:8971:aafc:a22d:7172) (Quit: My Mac has gone to sleep. ZZZzzz…) |
| 2025-03-31 22:34:00 +0000 | Smiles | (uid551636@id-551636.lymington.irccloud.com) Smiles |
| 2025-03-31 22:34:47 +0000 | Eoco | (~ian@128.101.131.218) Eoco |
| 2025-03-31 22:36:20 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 22:36:46 +0000 | remexre | (~remexre@user/remexre) remexre |
| 2025-03-31 22:38:48 +0000 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) peterbecich |
| 2025-03-31 22:40:49 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 244 seconds) |
| 2025-03-31 22:52:03 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 22:54:14 +0000 | Sgeo | (~Sgeo@user/sgeo) Sgeo |
| 2025-03-31 22:57:00 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds) |
| 2025-03-31 23:02:00 +0000 | ljdarj | (~Thunderbi@user/ljdarj) (Ping timeout: 244 seconds) |
| 2025-03-31 23:07:49 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 23:09:29 +0000 | toby-bro | (~toby-bro@user/toby-bro) (Ping timeout: 260 seconds) |
| 2025-03-31 23:12:44 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 23:21:33 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 23:25:02 +0000 | cptaffe | (~cptaffe@user/cptaffe) (Ping timeout: 265 seconds) |
| 2025-03-31 23:27:50 +0000 | ft | (~ft@p508db463.dip0.t-ipconnect.de) (Quit: Lost terminal) |
| 2025-03-31 23:28:18 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 245 seconds) |
| 2025-03-31 23:30:56 +0000 | peterbecich | (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 244 seconds) |
| 2025-03-31 23:37:45 +0000 | xff0x | (~xff0x@2405:6580:b080:900:1654:70d2:c294:d90) (Quit: xff0x) |
| 2025-03-31 23:38:31 +0000 | sprotte24 | (~sprotte24@p200300d16f24f500b1cefbd2da3b16f9.dip0.t-ipconnect.de) (Quit: Leaving) |
| 2025-03-31 23:38:59 +0000 | sprotte24 | (~sprotte24@p200300d16f24f500b1cefbd2da3b16f9.dip0.t-ipconnect.de) |
| 2025-03-31 23:39:24 +0000 | sprotte24 | (~sprotte24@p200300d16f24f500b1cefbd2da3b16f9.dip0.t-ipconnect.de) (Client Quit) |
| 2025-03-31 23:39:36 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 23:40:30 +0000 | Pixi` | (~Pixi@user/pixi) Pixi |
| 2025-03-31 23:40:39 +0000 | Tuplanolla | (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) (Quit: Leaving.) |
| 2025-03-31 23:42:18 +0000 | ft | (~ft@p508db463.dip0.t-ipconnect.de) ft |
| 2025-03-31 23:42:26 +0000 | forell | (~forell@user/forell) (Ping timeout: 265 seconds) |
| 2025-03-31 23:43:38 +0000 | Pixi | (~Pixi@user/pixi) (Ping timeout: 244 seconds) |
| 2025-03-31 23:43:53 +0000 | acidjnk_new | (~acidjnk@p200300d6e71c4f027cb63b5a22c835f3.dip0.t-ipconnect.de) acidjnk |
| 2025-03-31 23:44:37 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds) |
| 2025-03-31 23:47:03 +0000 | acidjnk | (~acidjnk@p200300d6e71c4f0205a1013c182d2742.dip0.t-ipconnect.de) (Ping timeout: 245 seconds) |
| 2025-03-31 23:49:09 +0000 | acidjnk_new | (~acidjnk@p200300d6e71c4f027cb63b5a22c835f3.dip0.t-ipconnect.de) (Ping timeout: 248 seconds) |
| 2025-03-31 23:52:43 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn |
| 2025-03-31 23:57:09 +0000 | merijn | (~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds) |
| 2025-03-31 23:57:54 +0000 | xff0x | (~xff0x@ai066236.d.east.v6connect.net) |