2025/09/15

2025-09-15 00:02:11 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 00:03:21 +0200takuan(~takuan@d8D86B9E9.access.telenet.be) (Remote host closed the connection)
2025-09-15 00:08:32 +0200Ezic(~Ezic@2a02:a31c:2d8:4400:7591:97d9:8a76:62ce)
2025-09-15 00:09:18 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2025-09-15 00:15:58 +0200yinzzz
2025-09-15 00:16:27 +0200 <haskellbridge> <magic_rb> Youre the first person to give me any kind of feedback. So its greatly appreciated. I see that my whole IR is wrong :(
2025-09-15 00:17:21 +0200tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net)
2025-09-15 00:18:21 +0200 <haskellbridge> <magic_rb> Though i still dont understand how moving the arguments into let bindings would help me. Since im having issues with the function bodies, not let bindings
2025-09-15 00:18:24 +0200 <haskellbridge> <magic_rb> I mean
2025-09-15 00:19:53 +0200 <haskellbridge> <magic_rb> Say i have "let f = (\y \x -> x) 5; in f 4" this should return 4 if im doing brain eval right. This would end up being something like
2025-09-15 00:20:25 +0200zzztilde
2025-09-15 00:20:25 +0200sprotte24(~sprotte24@p200300d16f0fa90034a8f8dc2eadcbb1.dip0.t-ipconnect.de) (Quit: Leaving)
2025-09-15 00:21:14 +0200Ezic(~Ezic@2a02:a31c:2d8:4400:7591:97d9:8a76:62ce) (Quit: Client closed)
2025-09-15 00:21:35 +0200 <haskellbridge> <magic_rb> (apply f [ 4 ]) where f is itself a thunk pointing to (apply (FUN (y) (FUN (x) x)) [ 5 ])
2025-09-15 00:22:14 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 00:22:28 +0200 <haskellbridge> <magic_rb> But again, i get into the situation that there is not rule for applying onto an application, so i have to have a thunk there. But then the thunk gets immediately erased and a second call to f will fail
2025-09-15 00:23:40 +0200 <haskellbridge> <magic_rb> I think the actual bit that im doing wrong is in the UPDATE rule. They say "if H[y] is a value" do they mean atom AND function? Or what do they mean?
2025-09-15 00:26:00 +0200 <int-e> With the notation of the paper I think you'd have let f = THUNK (let g = FUN (y -> FUN (x -> x)) in g 5) in f 4
2025-09-15 00:26:02 +0200 <haskellbridge> <magic_rb> Ah wait, ig if they meant value or function, it would actually work
2025-09-15 00:26:28 +0200 <haskellbridge> <magic_rb> Yep okay that notation makes sense, i do that, except for the let
2025-09-15 00:26:43 +0200 <haskellbridge> <magic_rb> I dont think the let is important for semantics, just performance probably.
2025-09-15 00:28:25 +0200swistak(~swistak@185.21.216.141)
2025-09-15 00:28:35 +0200 <int-e> You can't have (g 5) 4 in that syntax, so the (g 5) must be constructed with a `let`.
2025-09-15 00:30:51 +0200tromp(~textual@2001:1c00:3487:1b00:f91c:d27d:e5a1:1629) (Quit: My iMac has gone to sleep. ZZZzzz…)
2025-09-15 00:34:15 +0200jreicher(~user@user/jreicher) jreicher
2025-09-15 00:34:31 +0200 <haskellbridge> <magic_rb> right, in that syntax no
2025-09-15 00:34:34 +0200 <haskellbridge> <magic_rb> in my syntax yes
2025-09-15 00:35:03 +0200 <haskellbridge> <magic_rb> and it works when i only apply UPDATE when the H[y] is a PAP, FUN, or value (think i32, f32, String)
2025-09-15 00:35:52 +0200 <haskellbridge> <magic_rb> i need to figure out how closely do i need to follow the paper, because my thing is interpreting an untyped language and is also not a compiler, but a interpreter/VM
2025-09-15 00:36:01 +0200 <haskellbridge> <magic_rb> so i think im stretching this a bit
2025-09-15 00:36:32 +0200 <int-e> well, the function call rules rely on those restrictions; there's no rule that applies to (g 5) 4; ... because (g 5) is not a variable. You can modify those but then you're on your own and things that work fine with the original rules may go wrong.
2025-09-15 00:37:08 +0200 <haskellbridge> <magic_rb> i dont have (g 5) 4
2025-09-15 00:37:20 +0200 <haskellbridge> <magic_rb> i have (THUNK (g 5)) 4 and that works
2025-09-15 00:37:39 +0200 <haskellbridge> <magic_rb> whether the THUNK is inline or bound through a let is implementation details, it shouldnt affect semantics
2025-09-15 00:38:08 +0200 <haskellbridge> <magic_rb> but i do agree that my STG type being able to represent an invalid tree is problematic
2025-09-15 00:38:43 +0200 <jreicher> What do you mean by an "invalid tree"? (Sorry, coming into this a bit late)
2025-09-15 00:39:15 +0200 <int-e> Right, you have (FUN (y -> FUN (x -> x))) 5, but basically the same comment applies: (FUN ...) is not a variable.
2025-09-15 00:39:29 +0200 <int-e> (as the expression in that thunk)
2025-09-15 00:40:48 +0200 <int-e> And to overcome this within the rules of the paper, you have to let-bind that function.
2025-09-15 00:41:05 +0200 <int-e> hence let g = FUN (y -> FUN (x -> x)) in g
2025-09-15 00:44:05 +0200 <int-e> and actually that's still wrong, because FUN ... is a heap object, and only the rhs of let-s are heap objects. So it'll actually be let g = FUN (y -> let h = FUN (x -> x) in h) in g.
2025-09-15 00:46:51 +0200tildezzz
2025-09-15 00:47:23 +0200 <int-e> the final `in g` is supposed to be `in g 5` both times
2025-09-15 00:48:13 +0200 <haskellbridge> <magic_rb> yes because within the rules of that paper, let bindings create thunks?
2025-09-15 00:48:25 +0200 <haskellbridge> <magic_rb> in the current constraints of my think, i can insert thunks anywhere
2025-09-15 00:48:32 +0200 <haskellbridge> <magic_rb> so that alleviates that problem
2025-09-15 00:48:33 +0200 <int-e> let bindings create new heap objects
2025-09-15 00:48:39 +0200 <haskellbridge> <magic_rb> yep
2025-09-15 00:48:39 +0200 <haskellbridge> <magic_rb> okay
2025-09-15 00:48:43 +0200 <jreicher> And they're not necessarily thunks
2025-09-15 00:49:17 +0200 <int-e> right
2025-09-15 00:49:22 +0200 <haskellbridge> <magic_rb> when can they be not thunks?
2025-09-15 00:49:31 +0200 <jreicher> When they're functions
2025-09-15 00:49:44 +0200 <int-e> or fully saturated constructors
2025-09-15 00:49:58 +0200 <haskellbridge> <magic_rb> i dont have constructors in my thing, and probably wont, nix doesnt have them
2025-09-15 00:49:59 +0200 <haskellbridge> <magic_rb> but uh
2025-09-15 00:50:05 +0200 <haskellbridge> <magic_rb> as for the function thing
2025-09-15 00:50:14 +0200 <haskellbridge> <magic_rb> oh right
2025-09-15 00:50:14 +0200 <haskellbridge> <magic_rb> yes
2025-09-15 00:50:33 +0200 <haskellbridge> <magic_rb> okay, so we have let f = \x -> x in f 4
2025-09-15 00:51:13 +0200 <haskellbridge> <magic_rb> but f = THUNK ( let g = (\y \x -> x) in g 5 ) in f 4
2025-09-15 00:51:29 +0200 <haskellbridge> <magic_rb> right? the inner one doesnt have to be thunk
2025-09-15 00:51:36 +0200 <haskellbridge> <magic_rb> because its a FUN
2025-09-15 00:52:00 +0200 <haskellbridge> <magic_rb> the outer one is neither a let, as such it needs a thunk
2025-09-15 00:52:15 +0200 <int-e> you /can/ have let f = THUNK (let g = FUN (y x -> x) in g 5) in f 4
2025-09-15 00:52:34 +0200 <haskellbridge> <magic_rb> isnt that exactly what i typed
2025-09-15 00:52:55 +0200 <haskellbridge> <magic_rb> jreicher im implementing my own version of the STG, or at least trying to, then building a Nix frontend on top
2025-09-15 00:53:06 +0200 <int-e> let f = THUNK (let g = FUN (y -> let h = FUN (x -> x) in h) in g 5) in f 4 was me being faithful to the distinction betwenn \y -> \x -> x and \y x -> x that is occasionally relevant
2025-09-15 00:53:19 +0200 <int-e> I know that it's different from what you wrote; I corrected it
2025-09-15 00:53:25 +0200 <haskellbridge> <magic_rb> ah sorry
2025-09-15 00:53:37 +0200cyphase_eviltwin(~cyphase@user/cyphase) (Ping timeout: 248 seconds)
2025-09-15 00:53:40 +0200 <int-e> (\y \x -> x) isn't a heap object
2025-09-15 00:53:46 +0200 <haskellbridge> <magic_rb> im a bit too sleepy for this, but i think you unblocked me, because the thing seems to work, so thanks
2025-09-15 00:55:20 +0200 <haskellbridge> <magic_rb> ill go to bed now, my let bindings are wrong still i think, they dont get updated properly (they dont have thunks, so obviously they dont)
2025-09-15 00:56:44 +0200 <jreicher> int-e: OK, but I'm not sure what's "invalid" here? (I'm probably missing something)
2025-09-15 01:00:10 +0200 <int-e> jreicher: this is in reference to https://www.microsoft.com/en-us/research/wp-content/uploads/2016/07/eval-apply.pdf , which describes an STG-like language. And the expression syntax there has let x = obj in e, where `obj` must be a heap object, which starts with FUN, PAP, CON, THUNK, or BLACKHOLE... (\y \x -> x) is none of these.
2025-09-15 01:00:58 +0200cyphase(~cyphase@user/cyphase) cyphase
2025-09-15 01:03:31 +0200 <jreicher> int-e: yep know the paper well. Ironically I last read it too long ago to have everything fresh in my memory.
2025-09-15 01:03:56 +0200 <haskellbridge> <magic_rb> Right i actually have that in my huge match statement lol, the body of an application must be a heap object, which is exactly what i was struggling with, makes sense
2025-09-15 01:04:18 +0200 <haskellbridge> <magic_rb> But yeah, im writing an interpreter so im taking a lot of liberties
2025-09-15 01:05:07 +0200 <haskellbridge> <magic_rb> I will bring this closer to what the paper is describing just for consistency, though ill use a lisp like syntax, im not writing a parser for the stg syntax presented in the paper
2025-09-15 01:05:44 +0200 <haskellbridge> <magic_rb> Then ill expand the nix frontend and then see what needs optimizing. Since i was told that microbenchmarking nix is impossible ....
2025-09-15 01:08:22 +0200mange(~mange@user/mange) mange
2025-09-15 01:21:08 +0200pavonia(~user@user/siracusa) siracusa
2025-09-15 01:27:24 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-09-15 01:38:42 +0200mreh(~matthew@host86-146-25-35.range86-146.btcentralplus.com) (Ping timeout: 260 seconds)
2025-09-15 01:38:44 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 01:43:55 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2025-09-15 01:47:34 +0200Tuplanolla(~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) (Quit: Leaving.)
2025-09-15 01:53:37 +0200Alleria(~Alleria@user/alleria) (Read error: Connection reset by peer)
2025-09-15 01:53:53 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 01:57:07 +0200Alleria(~Alleria@user/alleria) Alleria
2025-09-15 01:57:15 +0200acidjnk(~acidjnk@p200300d6e7171917d8d62854256e96a7.dip0.t-ipconnect.de) (Ping timeout: 248 seconds)
2025-09-15 02:08:52 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 02:10:54 +0200ljdarj(~Thunderbi@user/ljdarj) (Quit: ljdarj)
2025-09-15 02:13:44 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-09-15 02:17:00 +0200otto_s(~user@p4ff27811.dip0.t-ipconnect.de) (Ping timeout: 245 seconds)
2025-09-15 02:18:44 +0200otto_s(~user@p4ff27b4b.dip0.t-ipconnect.de)
2025-09-15 02:24:39 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 02:29:24 +0200infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2025-09-15 02:29:47 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-09-15 02:32:18 +0200califax(~califax@user/califx) (Remote host closed the connection)
2025-09-15 02:33:24 +0200califax(~califax@user/califx) califx
2025-09-15 02:34:05 +0200infinity0(~infinity0@pwned.gg) infinity0
2025-09-15 02:38:41 +0200infinity0(~infinity0@pwned.gg) (Ping timeout: 250 seconds)
2025-09-15 02:40:27 +0200trickard(~trickard@cpe-56-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-09-15 02:40:27 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 02:40:40 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au)
2025-09-15 02:43:17 +0200trickard_trickard
2025-09-15 02:47:21 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 250 seconds)
2025-09-15 02:49:24 +0200califax(~califax@user/califx) (Remote host closed the connection)
2025-09-15 02:49:40 +0200califax(~califax@user/califx) califx
2025-09-15 02:49:48 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 02:50:10 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 265 seconds)
2025-09-15 02:55:00 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds)
2025-09-15 02:56:54 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 02:58:46 +0200infinity0(~infinity0@pwned.gg) infinity0
2025-09-15 03:05:30 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 03:09:30 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection)
2025-09-15 03:10:09 +0200trickard(~trickard@cpe-56-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-09-15 03:10:22 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au)
2025-09-15 03:10:41 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-09-15 03:12:12 +0200andrew(~andrew@138-51-70-206-lsn-2.nat.utoronto.ca)
2025-09-15 03:15:14 +0200tremon(~tremon@83.80.159.219) (Quit: getting boxed in)
2025-09-15 03:15:17 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 03:20:52 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17)
2025-09-15 03:21:06 +0200tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz)
2025-09-15 03:21:18 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 03:22:02 +0200Lycurgus(~juan@user/Lycurgus) Lycurgus
2025-09-15 03:25:37 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au) (Ping timeout: 248 seconds)
2025-09-15 03:26:13 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au)
2025-09-15 03:26:29 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2025-09-15 03:27:04 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0)
2025-09-15 03:27:04 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0) (Changing host)
2025-09-15 03:27:04 +0200arandombit(~arandombi@user/arandombit) arandombit
2025-09-15 03:37:06 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 03:42:04 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 255 seconds)
2025-09-15 03:43:19 +0200arandombit(~arandombi@user/arandombit) (Ping timeout: 260 seconds)
2025-09-15 03:43:54 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 260 seconds)
2025-09-15 03:44:35 +0200andrew(~andrew@138-51-70-206-lsn-2.nat.utoronto.ca) (Quit: Client closed)
2025-09-15 03:52:54 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 03:53:40 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 03:57:53 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-09-15 04:02:17 +0200werneta(~werneta@syn-071-083-160-242.res.spectrum.com) werneta
2025-09-15 04:07:48 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 260 seconds)
2025-09-15 04:08:43 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 04:09:26 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 04:13:48 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2025-09-15 04:13:49 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0)
2025-09-15 04:13:49 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0) (Changing host)
2025-09-15 04:13:49 +0200arandombit(~arandombi@user/arandombit) arandombit
2025-09-15 04:19:28 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 256 seconds)
2025-09-15 04:20:56 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection)
2025-09-15 04:21:39 +0200berberman(~berberman@user/berberman) (Quit: ZNC 1.10.1 - https://znc.in)
2025-09-15 04:22:03 +0200berberman(~berberman@user/berberman) berberman
2025-09-15 04:22:06 +0200berberman(~berberman@user/berberman) (Remote host closed the connection)
2025-09-15 04:23:50 +0200berberman(~berberman@user/berberman) berberman
2025-09-15 04:24:30 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 04:31:06 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2025-09-15 04:36:10 +0200ystael(~ystael@user/ystael) (Ping timeout: 248 seconds)
2025-09-15 04:42:25 +0200poscat(~poscat@user/poscat) (Remote host closed the connection)
2025-09-15 04:42:33 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 04:45:36 +0200poscat(~poscat@user/poscat) poscat
2025-09-15 04:47:29 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-09-15 04:49:35 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 04:56:08 +0200Lycurgus(~juan@user/Lycurgus) (Quit: alsoknownas.renjuan.org ( juan@acm.org ))
2025-09-15 04:58:19 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 04:58:58 +0200vanishingideal(~vanishing@user/vanishingideal) (Remote host closed the connection)
2025-09-15 05:03:34 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 265 seconds)
2025-09-15 05:10:12 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 252 seconds)
2025-09-15 05:10:32 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 05:12:36 +0200vanishingideal(~vanishing@user/vanishingideal) vanishingideal
2025-09-15 05:14:07 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 05:15:52 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 256 seconds)
2025-09-15 05:18:32 +0200arandombit(~arandombi@user/arandombit) (Remote host closed the connection)
2025-09-15 05:18:45 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0)
2025-09-15 05:18:45 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0) (Changing host)
2025-09-15 05:18:45 +0200arandombit(~arandombi@user/arandombit) arandombit
2025-09-15 05:19:16 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2025-09-15 05:29:54 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 05:30:47 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 05:30:58 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 05:35:03 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 250 seconds)
2025-09-15 05:36:27 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-09-15 05:36:59 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 248 seconds)
2025-09-15 05:46:41 +0200peterbecich(~Thunderbi@syn-172-222-149-049.res.spectrum.com) peterbecich
2025-09-15 05:46:44 +0200tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net)
2025-09-15 05:47:31 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 05:51:31 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 05:51:52 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 05:52:49 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-09-15 05:57:50 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 245 seconds)
2025-09-15 05:58:39 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 260 seconds)
2025-09-15 06:03:19 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 06:10:07 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 255 seconds)
2025-09-15 06:11:21 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17)
2025-09-15 06:11:23 +0200ezzieyguywuf(~Unknown@user/ezzieyguywuf) (Ping timeout: 256 seconds)
2025-09-15 06:13:19 +0200ezzieyguywuf(~Unknown@user/ezzieyguywuf) ezzieyguywuf
2025-09-15 06:19:38 +0200takuan(~takuan@d8D86B9E9.access.telenet.be)
2025-09-15 06:21:23 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 06:23:09 +0200trickard_trickard
2025-09-15 06:26:39 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-09-15 06:33:03 +0200vanishingideal(~vanishing@user/vanishingideal) (Ping timeout: 260 seconds)
2025-09-15 06:37:09 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 06:41:53 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 248 seconds)
2025-09-15 06:43:38 +0200vanishingideal(~vanishing@user/vanishingideal) vanishingideal
2025-09-15 06:47:14 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 06:47:22 +0200humasect_(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 06:52:56 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 06:58:08 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-09-15 07:01:39 +0200peterbecich(~Thunderbi@syn-172-222-149-049.res.spectrum.com) (Ping timeout: 260 seconds)
2025-09-15 07:08:44 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 07:10:38 +0200humasect_(~humasect@dyn-192-249-132-90.nexicom.net) (Remote host closed the connection)
2025-09-15 07:13:18 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 260 seconds)
2025-09-15 07:13:57 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-09-15 07:20:01 +0200haritz(~hrtz@user/haritz) (Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in)
2025-09-15 07:23:50 +0200marinelli(~weechat@gateway/tor-sasl/marinelli) (Remote host closed the connection)
2025-09-15 07:24:11 +0200marinelli(~weechat@gateway/tor-sasl/marinelli) marinelli
2025-09-15 07:24:33 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 07:29:18 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2025-09-15 07:31:47 +0200Square3(~Square4@user/square) Square
2025-09-15 07:32:45 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 07:32:45 +0200michalz(~michalz@185.246.207.193)
2025-09-15 07:37:41 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 250 seconds)
2025-09-15 07:46:53 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17)
2025-09-15 07:48:28 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 07:51:08 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 256 seconds)
2025-09-15 07:54:57 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 260 seconds)
2025-09-15 07:55:05 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 256 seconds)
2025-09-15 08:06:31 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 08:07:09 +0200Square2(~Square@user/square) Square
2025-09-15 08:11:38 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 260 seconds)
2025-09-15 08:19:29 +0200Square2(~Square@user/square) (Ping timeout: 248 seconds)
2025-09-15 08:20:42 +0200Googulator(~Googulato@2a01-036d-0106-217b-9021-558a-ccea-f5e8.pool6.digikabel.hu) (Quit: Client closed)
2025-09-15 08:20:59 +0200Googulator(~Googulato@2a01-036d-0106-217b-9021-558a-ccea-f5e8.pool6.digikabel.hu)
2025-09-15 08:22:16 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 08:23:40 +0200posixlycorrect(~posixlyco@user/posixlycorrect) (Remote host closed the connection)
2025-09-15 08:24:41 +0200posixlycorrect(~posixlyco@user/posixlycorrect) posixlycorrect
2025-09-15 08:25:45 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17)
2025-09-15 08:26:02 +0200dutchie(~dutchie@user/dutchie) (Remote host closed the connection)
2025-09-15 08:27:06 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) (Ping timeout: 252 seconds)
2025-09-15 08:27:26 +0200dutchie(~dutchie@user/dutchie) dutchie
2025-09-15 08:30:14 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 256 seconds)
2025-09-15 08:33:27 +0200sord937(~sord937@gateway/tor-sasl/sord937) sord937
2025-09-15 08:33:43 +0200merijn(~merijn@host-vr.cgnat-g.v4.dfn.nl) merijn
2025-09-15 08:36:41 +0200potato44(uid421314@id-421314.lymington.irccloud.com) (Quit: Connection closed for inactivity)
2025-09-15 08:49:47 +0200krei-se(~krei-se@2003:f1:cf34:2301:915f:4388:7404:f7ca) (Ping timeout: 260 seconds)
2025-09-15 08:57:21 +0200Googulator(~Googulato@2a01-036d-0106-217b-9021-558a-ccea-f5e8.pool6.digikabel.hu) (Quit: Client closed)
2025-09-15 08:57:34 +0200Googulator(~Googulato@2a01-036d-0106-217b-9021-558a-ccea-f5e8.pool6.digikabel.hu)
2025-09-15 09:00:00 +0200caconym747(~caconym@user/caconym) (Quit: bye)
2025-09-15 09:01:07 +0200ft(~ft@p4fc2a25a.dip0.t-ipconnect.de) (Quit: leaving)
2025-09-15 09:01:10 +0200caconym747(~caconym@user/caconym) caconym
2025-09-15 09:01:23 +0200kenran(~void@user/kenran) kenran
2025-09-15 09:03:04 +0200califax(~califax@user/califx) (Remote host closed the connection)
2025-09-15 09:05:09 +0200califax(~califax@user/califx) califx
2025-09-15 09:05:50 +0200jrm2(~jrm@user/jrm) jrm
2025-09-15 09:07:11 +0200jrm(~jrm@user/jrm) (Quit: ciao)
2025-09-15 09:07:41 +0200jrm2jrm
2025-09-15 09:09:26 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 09:19:21 +0200kenran(~void@user/kenran) (Remote host closed the connection)
2025-09-15 09:22:46 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 09:26:06 +0200werneta(~werneta@syn-071-083-160-242.res.spectrum.com) (Quit: Lost terminal)
2025-09-15 09:27:29 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 260 seconds)
2025-09-15 09:31:05 +0200tromp(~textual@2001:1c00:3487:1b00:71ae:c4c:8876:9d63)
2025-09-15 09:31:49 +0200kenran(~void@user/kenran) kenran
2025-09-15 09:33:35 +0200acidjnk(~acidjnk@p200300d6e7171973402f102ed86f9f4d.dip0.t-ipconnect.de) acidjnk
2025-09-15 09:34:49 +0200jreicher(~user@user/jreicher) (Quit: In transit)
2025-09-15 09:47:42 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2025-09-15 09:58:07 +0200kenran(~void@user/kenran) (Remote host closed the connection)
2025-09-15 10:05:20 +0200CiaoSen(~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) CiaoSen
2025-09-15 10:13:01 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 244 seconds)
2025-09-15 10:16:22 +0200lxsameer(~lxsameer@Serene/lxsameer) lxsameer
2025-09-15 10:17:21 +0200Lycurgus(~juan@user/Lycurgus) Lycurgus
2025-09-15 10:19:47 +0200tromp(~textual@2001:1c00:3487:1b00:71ae:c4c:8876:9d63) (Quit: My iMac has gone to sleep. ZZZzzz…)
2025-09-15 10:28:17 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 10:28:23 +0200jreicher(~user@user/jreicher) jreicher
2025-09-15 10:32:43 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 265 seconds)
2025-09-15 10:33:28 +0200petrichor(~jez@user/petrichor) (Ping timeout: 248 seconds)
2025-09-15 10:36:02 +0200arandombit(~arandombi@user/arandombit) (Ping timeout: 256 seconds)
2025-09-15 10:39:16 +0200petrichor(~jez@user/petrichor) petrichor
2025-09-15 10:39:45 +0200Lycurgus(~juan@user/Lycurgus) (Quit: alsoknownas.renjuan.org ( juan@acm.org ))
2025-09-15 10:40:02 +0200fp(~Thunderbi@wireless-86-50-140-85.open.aalto.fi) fp
2025-09-15 10:44:13 +0200mari-estel(~mari-este@user/mari-estel) mari-estel
2025-09-15 10:45:25 +0200mreh(~matthew@host86-146-25-35.range86-146.btcentralplus.com)
2025-09-15 10:46:09 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17)
2025-09-15 10:49:00 +0200acidjnk(~acidjnk@p200300d6e7171973402f102ed86f9f4d.dip0.t-ipconnect.de) (Ping timeout: 252 seconds)
2025-09-15 10:49:50 +0200cipherrot(~jez@user/petrichor) petrichor
2025-09-15 10:50:36 +0200arandombit(~arandombi@user/arandombit) arandombit
2025-09-15 10:51:03 +0200petrichor(~jez@user/petrichor) (Ping timeout: 256 seconds)
2025-09-15 10:53:27 +0200mari-estel(~mari-este@user/mari-estel) (Ping timeout: 260 seconds)
2025-09-15 10:54:23 +0200mari-estel(~mari-este@user/mari-estel) mari-estel
2025-09-15 10:55:12 +0200cipherrot(~jez@user/petrichor) (Ping timeout: 260 seconds)
2025-09-15 10:55:20 +0200petrichor(~jez@user/petrichor) petrichor
2025-09-15 10:55:41 +0200Alleria(~Alleria@user/alleria) (Read error: Connection reset by peer)
2025-09-15 10:57:06 +0200tromp(~textual@2001:1c00:3487:1b00:71ae:c4c:8876:9d63)
2025-09-15 10:57:55 +0200chele(~chele@user/chele) chele
2025-09-15 10:59:06 +0200califax(~califax@user/califx) (Remote host closed the connection)
2025-09-15 11:01:24 +0200Alleria(~Alleria@user/alleria) Alleria
2025-09-15 11:01:42 +0200califax(~califax@user/califx) califx
2025-09-15 11:02:07 +0200inline(~inline@ip-005-146-196-014.um05.pools.vodafone-ip.de) (Quit: Leaving)
2025-09-15 11:04:36 +0200califax(~califax@user/califx) (Remote host closed the connection)
2025-09-15 11:05:00 +0200poscat(~poscat@user/poscat) (Remote host closed the connection)
2025-09-15 11:05:36 +0200poscat(~poscat@user/poscat) poscat
2025-09-15 11:07:30 +0200califax(~califax@user/califx) califx
2025-09-15 11:17:58 +0200califax(~califax@user/califx) (Remote host closed the connection)
2025-09-15 11:18:09 +0200tromp(~textual@2001:1c00:3487:1b00:71ae:c4c:8876:9d63) (Ping timeout: 265 seconds)
2025-09-15 11:19:04 +0200califax(~califax@user/califx) califx
2025-09-15 11:23:35 +0200Axma12140(~Axman6@user/axman6) Axman6
2025-09-15 11:24:18 +0200__monty__(~toonn@user/toonn) toonn
2025-09-15 11:25:13 +0200Axman6(~Axman6@user/axman6) (Ping timeout: 250 seconds)
2025-09-15 11:26:14 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net)
2025-09-15 11:30:24 +0200califax(~califax@user/califx) (Remote host closed the connection)
2025-09-15 11:31:00 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 256 seconds)
2025-09-15 11:31:26 +0200califax(~califax@user/califx) califx
2025-09-15 11:38:56 +0200trickard(~trickard@cpe-56-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-09-15 11:39:10 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au)
2025-09-15 11:49:37 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 248 seconds)
2025-09-15 11:51:47 +0200arandombit(~arandombi@user/arandombit) (Ping timeout: 260 seconds)
2025-09-15 11:54:46 +0200lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4)
2025-09-15 11:57:31 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au) (Ping timeout: 255 seconds)
2025-09-15 11:57:42 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 11:57:54 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au)
2025-09-15 12:02:25 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 248 seconds)
2025-09-15 12:03:48 +0200Googulator(~Googulato@2a01-036d-0106-217b-9021-558a-ccea-f5e8.pool6.digikabel.hu) (Quit: Client closed)
2025-09-15 12:04:02 +0200Googulator(~Googulato@2a01-036d-0106-217b-9021-558a-ccea-f5e8.pool6.digikabel.hu)
2025-09-15 12:06:38 +0200tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz)
2025-09-15 12:11:23 +0200acidjnk(~acidjnk@p200300d6e717197300fd7e96ed6c05af.dip0.t-ipconnect.de) acidjnk
2025-09-15 12:17:07 +0200tremon(~tremon@83.80.159.219) tremon
2025-09-15 12:24:49 +0200inline(~inline@ip-005-146-196-014.um05.pools.vodafone-ip.de) Inline
2025-09-15 12:25:34 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0)
2025-09-15 12:25:34 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0) (Changing host)
2025-09-15 12:25:34 +0200arandombit(~arandombi@user/arandombit) arandombit
2025-09-15 12:27:16 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17)
2025-09-15 12:31:48 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 260 seconds)
2025-09-15 12:34:35 +0200CiaoSen(~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 248 seconds)
2025-09-15 12:37:18 +0200lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) (Ping timeout: 256 seconds)
2025-09-15 12:40:21 +0200Everything(~Everythin@static.208.206.21.65.clients.your-server.de) Everything
2025-09-15 12:43:46 +0200jreicher(~user@user/jreicher) (Read error: Connection reset by peer)
2025-09-15 12:45:08 +0200jreicher(~user@user/jreicher) jreicher
2025-09-15 12:45:32 +0200tromp(~textual@2001:1c00:3487:1b00:988d:4246:ce46:c357)
2025-09-15 12:48:00 +0200lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4)
2025-09-15 12:57:50 +0200ljdarj(~Thunderbi@user/ljdarj) ljdarj
2025-09-15 12:59:54 +0200chromoblob(~chromoblo@user/chromob1ot1c) (Ping timeout: 252 seconds)
2025-09-15 13:00:12 +0200chromoblob(~chromoblo@user/chromob1ot1c) chromoblob\0
2025-09-15 13:04:24 +0200Square3(~Square4@user/square) (Ping timeout: 248 seconds)
2025-09-15 13:04:34 +0200chromoblob(~chromoblo@user/chromob1ot1c) (Ping timeout: 255 seconds)
2025-09-15 13:05:25 +0200CiaoSen(~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) CiaoSen
2025-09-15 13:06:16 +0200Enrico63(~Enrico63@2a0b:e541:10d0:0:9efc:e8ff:fe24:3213) Enrico63
2025-09-15 13:10:45 +0200PKDrinker(~PKDrinker@user/PKDrinker) PKDrinker
2025-09-15 13:11:10 +0200PKDrinker(~PKDrinker@user/PKDrinker) (Remote host closed the connection)
2025-09-15 13:11:34 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 13:12:17 +0200Everything(~Everythin@static.208.206.21.65.clients.your-server.de) (Quit: leaving)
2025-09-15 13:17:55 +0200chromoblob(~chromoblo@user/chromob1ot1c) chromoblob\0
2025-09-15 13:21:12 +0200PKDrinker(~PKDrinker@user/PKDrinker) PKDrinker
2025-09-15 13:21:34 +0200PKDrinker(~PKDrinker@user/PKDrinker) (Remote host closed the connection)
2025-09-15 13:21:54 +0200PKDrinker(~PKDrinker@user/PKDrinker) PKDrinker
2025-09-15 13:21:54 +0200PKDrinker(~PKDrinker@user/PKDrinker) (Remote host closed the connection)
2025-09-15 13:22:28 +0200PKDrinker(~PKDrinker@user/PKDrinker) PKDrinker
2025-09-15 13:22:45 +0200PKDrinker(~PKDrinker@user/PKDrinker) (Remote host closed the connection)
2025-09-15 13:23:06 +0200PKDrinker(~PKDrinker@user/PKDrinker) PKDrinker
2025-09-15 13:30:00 +0200arandombit(~arandombi@user/arandombit) (Ping timeout: 256 seconds)
2025-09-15 13:30:09 +0200Lord_of_Life_(~Lord@user/lord-of-life/x-2819915) Lord_of_Life
2025-09-15 13:30:34 +0200Lord_of_Life(~Lord@user/lord-of-life/x-2819915) (Ping timeout: 256 seconds)
2025-09-15 13:33:00 +0200Lord_of_Life_Lord_of_Life
2025-09-15 13:34:40 +0200Square(~Square4@user/square) Square
2025-09-15 13:40:15 +0200Axman6(~Axman6@user/axman6) Axman6
2025-09-15 13:43:27 +0200Axma12140(~Axman6@user/axman6) (Ping timeout: 250 seconds)
2025-09-15 13:50:16 +0200tromp(~textual@2001:1c00:3487:1b00:988d:4246:ce46:c357) (Quit: My iMac has gone to sleep. ZZZzzz…)
2025-09-15 13:54:44 +0200Guest18(~Guest18@158.37.188.209)
2025-09-15 13:55:14 +0200Guest18(~Guest18@158.37.188.209) (Client Quit)
2025-09-15 14:00:09 +0200tromp(~textual@2001:1c00:3487:1b00:988d:4246:ce46:c357)
2025-09-15 14:01:22 +0200trickard_trickard
2025-09-15 14:09:04 +0200p3n(~p3n@2a00:19a0:3:7c:0:d9c6:7cf6:1) (Quit: ZNC 1.9.1 - https://znc.in)
2025-09-15 14:10:28 +0200p3n(~p3n@2a00:19a0:3:7c:0:d9c6:7cf6:1) p3n
2025-09-15 14:14:34 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 265 seconds)
2025-09-15 14:16:08 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0)
2025-09-15 14:16:08 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0) (Changing host)
2025-09-15 14:16:08 +0200arandombit(~arandombi@user/arandombit) arandombit
2025-09-15 14:17:15 +0200tromp(~textual@2001:1c00:3487:1b00:988d:4246:ce46:c357) (Quit: My iMac has gone to sleep. ZZZzzz…)
2025-09-15 14:18:55 +0200szkl(uid110435@id-110435.uxbridge.irccloud.com) szkl
2025-09-15 14:22:04 +0200arandombit(~arandombi@user/arandombit) (Ping timeout: 260 seconds)
2025-09-15 14:41:09 +0200mari-estel(~mari-este@user/mari-estel) (Read error: Connection reset by peer)
2025-09-15 14:41:10 +0200mari75075(~mari-este@user/mari-estel) mari-estel
2025-09-15 14:43:30 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0)
2025-09-15 14:43:30 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0) (Changing host)
2025-09-15 14:43:30 +0200arandombit(~arandombi@user/arandombit) arandombit
2025-09-15 14:44:57 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17)
2025-09-15 14:45:56 +0200PKDrinker(~PKDrinker@user/PKDrinker) (Ping timeout: 256 seconds)
2025-09-15 14:46:26 +0200pavonia(~user@user/siracusa) (Quit: Bye!)
2025-09-15 14:52:14 +0200PKDrinker(~PKDrinker@user/PKDrinker) PKDrinker
2025-09-15 14:53:15 +0200chromoblob(~chromoblo@user/chromob1ot1c) (Ping timeout: 248 seconds)
2025-09-15 14:58:44 +0200chromoblob(~chromoblo@user/chromob1ot1c) chromoblob\0
2025-09-15 15:01:22 +0200mreh(~matthew@host86-146-25-35.range86-146.btcentralplus.com) (Ping timeout: 260 seconds)
2025-09-15 15:03:13 +0200chromoblob(~chromoblo@user/chromob1ot1c) (Ping timeout: 248 seconds)
2025-09-15 15:03:20 +0200ystael(~ystael@user/ystael) ystael
2025-09-15 15:04:08 +0200chromoblob(~chromoblo@user/chromob1ot1c) chromoblob\0
2025-09-15 15:04:49 +0200trickard(~trickard@cpe-56-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-09-15 15:05:03 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au)
2025-09-15 15:14:03 +0200otto_s(~user@p4ff27b4b.dip0.t-ipconnect.de) (Ping timeout: 248 seconds)
2025-09-15 15:20:27 +0200mange(~mange@user/mange) (Quit: Zzz...)
2025-09-15 15:20:30 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 256 seconds)
2025-09-15 15:30:12 +0200tromp(~textual@2001:1c00:3487:1b00:988d:4246:ce46:c357)
2025-09-15 15:31:50 +0200arandombit(~arandombi@user/arandombit) (Ping timeout: 256 seconds)
2025-09-15 15:31:54 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 15:38:21 +0200PKDrinker(~PKDrinker@user/PKDrinker) (Ping timeout: 256 seconds)
2025-09-15 15:38:36 +0200trickard_trickard
2025-09-15 15:46:47 +0200AndreiDuma(~AndreiDum@user/AndreiDuma) AndreiDuma
2025-09-15 15:48:36 +0200Lycurgus(~juan@user/Lycurgus) Lycurgus
2025-09-15 15:50:44 +0200 <Square> No one happens to know how you make protoc available on PATH during a nix flake build?
2025-09-15 15:51:16 +0200darksatanic(~darkling@savella.carfax.org.uk)
2025-09-15 15:52:25 +0200darkling(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space) (Read error: Connection reset by peer)
2025-09-15 15:52:39 +0200 <tomsmeding> Square: you should probably ask that in a nix channel :)
2025-09-15 15:53:03 +0200 <Square> yeah, i know.
2025-09-15 15:53:53 +0200darksatanicdarkling
2025-09-15 15:55:57 +0200mreh(~matthew@host86-146-25-35.range86-146.btcentralplus.com)
2025-09-15 15:59:12 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) humasect
2025-09-15 16:04:15 +0200humasect(~humasect@dyn-192-249-132-90.nexicom.net) (Ping timeout: 250 seconds)
2025-09-15 16:18:32 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0)
2025-09-15 16:18:32 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0) (Changing host)
2025-09-15 16:18:32 +0200arandombit(~arandombi@user/arandombit) arandombit
2025-09-15 16:35:20 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 245 seconds)
2025-09-15 16:35:36 +0200CiaoSen(~Jura@2a02:8071:64e1:da0:5a47:caff:fe78:33db) (Ping timeout: 248 seconds)
2025-09-15 16:37:24 +0200ChaiTRex(~ChaiTRex@user/chaitrex) (Ping timeout: 272 seconds)
2025-09-15 16:37:41 +0200rvalue(~rvalue@about/hackers/rvalue) (Read error: Connection reset by peer)
2025-09-15 16:38:09 +0200rvalue(~rvalue@about/hackers/rvalue) rvalue
2025-09-15 16:39:11 +0200ChaiTRex(~ChaiTRex@user/chaitrex) ChaiTRex
2025-09-15 16:39:17 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) segfaultfizzbuzz
2025-09-15 16:40:20 +0200chromoblob(~chromoblo@user/chromob1ot1c) (Read error: Connection reset by peer)
2025-09-15 16:42:57 +0200trickard(~trickard@cpe-56-98-47-163.wireline.com.au) (Ping timeout: 248 seconds)
2025-09-15 16:43:18 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au)
2025-09-15 16:43:41 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 250 seconds)
2025-09-15 16:48:56 +0200darkling(~darkling@savella.carfax.org.uk) (Ping timeout: 248 seconds)
2025-09-15 16:52:47 +0200darkling(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space)
2025-09-15 16:59:13 +0200chromoblob(~chromoblo@user/chromob1ot1c) chromoblob\0
2025-09-15 17:03:12 +0200pie_(~pie_bnc@user/pie/x-2818909) ()
2025-09-15 17:03:27 +0200pie_(~pie_bnc@user/pie/x-2818909) __
2025-09-15 17:06:57 +0200fp(~Thunderbi@wireless-86-50-140-85.open.aalto.fi) (Ping timeout: 248 seconds)
2025-09-15 17:12:25 +0200darkling(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space) (Read error: Connection reset by peer)
2025-09-15 17:12:34 +0200darksatanic(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space)
2025-09-15 17:15:20 +0200AndreiDuma(~AndreiDum@user/AndreiDuma) (Read error: Connection reset by peer)
2025-09-15 17:15:26 +0200pie_(~pie_bnc@user/pie/x-2818909) (Remote host closed the connection)
2025-09-15 17:15:37 +0200AndreiDuma(~AndreiDum@user/AndreiDuma) AndreiDuma
2025-09-15 17:16:33 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17)
2025-09-15 17:17:37 +0200darksatanic(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space) (Read error: Connection reset by peer)
2025-09-15 17:17:48 +0200darkling(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space)
2025-09-15 17:21:46 +0200dfg(~dfg@user/dfg) (Ping timeout: 256 seconds)
2025-09-15 17:23:07 +0200arandombit(~arandombi@user/arandombit) (Ping timeout: 260 seconds)
2025-09-15 17:23:18 +0200darkling(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space) (Read error: Connection reset by peer)
2025-09-15 17:23:19 +0200darksatanic(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space)
2025-09-15 17:24:10 +0200AndreiDuma(~AndreiDum@user/AndreiDuma) (Read error: Connection reset by peer)
2025-09-15 17:24:36 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17) (Ping timeout: 256 seconds)
2025-09-15 17:24:37 +0200AndreiDuma(~AndreiDum@user/AndreiDuma) AndreiDuma
2025-09-15 17:28:02 +0200darksatanicdarkling
2025-09-15 17:31:30 +0200segfaultfizzbuzz(~segfaultf@12.172.219.17)
2025-09-15 17:31:45 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au) (Read error: Connection reset by peer)
2025-09-15 17:31:59 +0200trickard_(~trickard@cpe-56-98-47-163.wireline.com.au)
2025-09-15 17:37:46 +0200gorignak(~gorignak@user/gorignak) gorignak
2025-09-15 17:38:14 +0200haritz(~hrtz@2a01:4b00:bc2e:7000:d5af:a266:ca31:5ef8)
2025-09-15 17:38:14 +0200haritz(~hrtz@2a01:4b00:bc2e:7000:d5af:a266:ca31:5ef8) (Changing host)
2025-09-15 17:38:14 +0200haritz(~hrtz@user/haritz) haritz
2025-09-15 17:40:04 +0200dfg(~dfg@user/dfg) dfg
2025-09-15 17:45:38 +0200swistak(~swistak@185.21.216.141) (Ping timeout: 260 seconds)
2025-09-15 17:47:18 +0200swistak(~swistak@185.21.216.141)
2025-09-15 17:48:29 +0200lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) (Quit: WeeChat 4.5.2)
2025-09-15 17:52:39 +0200swistak(~swistak@185.21.216.141) (Ping timeout: 256 seconds)
2025-09-15 17:53:50 +0200rvalue(~rvalue@about/hackers/rvalue) (Quit: ZNC - https://znc.in)
2025-09-15 17:55:58 +0200swistak(~swistak@185.21.216.141)
2025-09-15 17:56:25 +0200mari75075(~mari-este@user/mari-estel) (Ping timeout: 265 seconds)
2025-09-15 17:58:27 +0200tromp(~textual@2001:1c00:3487:1b00:988d:4246:ce46:c357) (Quit: My iMac has gone to sleep. ZZZzzz…)
2025-09-15 18:00:22 +0200AndreiDuma(~AndreiDum@user/AndreiDuma) (Quit: My Mac has gone to sleep. ZZZzzz…)
2025-09-15 18:01:10 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0)
2025-09-15 18:01:10 +0200arandombit(~arandombi@2603:7000:4600:ffbe:5ce9:b7e9:9832:aaa0) (Changing host)
2025-09-15 18:01:10 +0200arandombit(~arandombi@user/arandombit) arandombit
2025-09-15 18:02:45 +0200rvalue(~rvalue@about/hackers/rvalue) rvalue
2025-09-15 18:06:32 +0200arandombit(~arandombi@user/arandombit) (Ping timeout: 256 seconds)
2025-09-15 18:06:49 +0200tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net) tzh
2025-09-15 18:07:08 +0200AndreiDuma(~AndreiDum@user/AndreiDuma) AndreiDuma
2025-09-15 18:09:04 +0200pie_(~pie_bnc@user/pie/x-2818909) __