Home liberachat/#haskell: Logs Calendar

Logs on 2024-08-04 (liberachat/#haskell)

00:02:52 Midjak joins (~MarciZ@82.66.147.146)
00:04:29 <Inst> is anyone using linear haskell?
00:05:17 × gentauro quits (~gentauro@user/gentauro) (Read error: Connection reset by peer)
00:07:07 rozenglass parts (~rednight@static.9.0.76.144.clients.your-server.de) ()
00:10:55 gentauro joins (~gentauro@user/gentauro)
00:17:33 × ZharMeny quits (~user@user/ZharMeny) (Quit: segmentation fault (core dumped))
00:24:18 smalltalkman joins (uid545680@id-545680.hampstead.irccloud.com)
00:27:59 ddellacosta joins (~ddellacos@ool-44c73d29.dyn.optonline.net)
00:43:20 × euleritian quits (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 255 seconds)
00:43:41 euleritian joins (~euleritia@dynamic-176-006-139-027.176.6.pool.telefonica.de)
00:46:02 × tomku quits (~tomku@user/tomku) (Ping timeout: 252 seconds)
00:46:15 tomku joins (~tomku@user/tomku)
00:48:52 × gmg quits (~user@user/gehmehgeh) (Quit: Leaving)
00:49:12 × Midjak quits (~MarciZ@82.66.147.146) (Quit: This computer has gone to sleep)
00:56:18 tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
00:56:56 × tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Client Quit)
01:00:37 × falafel quits (~falafel@2a0c:5a87:3104:4c01::bfe0) (Ping timeout: 248 seconds)
01:06:11 skyesoss joins (~Thunderbi@c-73-208-45-119.hsd1.il.comcast.net)
01:09:55 × ft quits (~ft@p3e9bc4e7.dip0.t-ipconnect.de) (Quit: Lost terminal)
01:11:32 ft joins (~ft@p3e9bc4e7.dip0.t-ipconnect.de)
01:22:02 × krei-se quits (~krei-se@p5085de4b.dip0.t-ipconnect.de) (Ping timeout: 255 seconds)
01:23:57 krei-se joins (~krei-se@p5085d225.dip0.t-ipconnect.de)
01:24:49 ezzieyguywuf joins (~Unknown@user/ezzieyguywuf)
01:29:22 × Tuplanolla quits (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) (Quit: Leaving.)
01:52:33 skyesoss1 joins (~Thunderbi@c-73-208-45-119.hsd1.il.comcast.net)
01:54:29 × skyesoss quits (~Thunderbi@c-73-208-45-119.hsd1.il.comcast.net) (Ping timeout: 248 seconds)
01:54:29 skyesoss1 is now known as skyesoss
01:56:40 <Inst> in linear haskell
01:57:05 <Inst> do you have to use dup2 (or a corresponding function) every time you want to run a conditional?
01:57:55 <Inst> and then reuse the value evaluated via the conditional?
01:59:35 Square joins (~Square@user/square)
02:05:02 × op_4 quits (~tslil@user/op-4/x-9116473) (Remote host closed the connection)
02:05:32 op_4 joins (~tslil@user/op-4/x-9116473)
02:06:56 <Inst> okay, 100% worth it
02:07:07 <Inst> actually i should try again with strict
02:11:19 <Inst> so, i had an accum param loop over 100 billion iterations
02:12:18 <Inst> just foo !term | term == 100_000_000 = term | otherwise = foo (term + 1)
02:12:48 <Inst> on linear haskell, took 28 seconds, with -XLinearTypes on, but with multiplicity many, the thing crashed my console
02:14:17 <Inst> retrying without lineartypes...
02:17:17 joeyadams joins (~joeyadams@2603:6010:5100:2ed:2121:19d8:d2a8:bab2)
02:24:39 × td_ quits (~td@i5387092B.versanet.de) (Ping timeout: 252 seconds)
02:25:02 <Inst> ehhh, seems as though linear haskell is imposing a performance penalty, ugh
02:26:34 td_ joins (~td@i5387091B.versanet.de)
02:30:32 × abyxq quits (~abyxq@user/abyxq) (Ping timeout: 252 seconds)
02:32:13 abyxq joins (~abyxq@p5b340392.dip0.t-ipconnect.de)
02:36:26 × nunggu quits (~q@user/nunggu) (Remote host closed the connection)
02:39:08 × fun-safe-math quits (~fun-safe-@24.21.106.247) (Ping timeout: 245 seconds)
02:43:37 <hololeap> I'm getting some odd test failures for crypton on a certain machine. I've been poking around and it seems like there's something crashing at a low level before tasty can display a proper error message: https://bpa.st/JBIQ
02:44:30 <hololeap> what are some debugging options I can pass so that I can see _everything_ that the program is doing? or is this possible?
02:51:11 <hololeap> ah, I see now that the test suite is segfaulting
02:51:36 <c_wraith> you can run it in gdb to get additional info
02:52:06 <c_wraith> the native code shows up in gdb the way you'd expect native code to
02:52:55 <Inst> is there an easy / better way to do conditionals in linear haskell?
02:55:30 <hololeap> Thread 1 "test-crypton" received signal SIGSEGV, Segmentation fault.
02:55:36 <hololeap> 0x00007ffff68a89eb in crypton_decaf_448_precomputed_scalarmul () from /var/tmp/portage/dev-haskell/crypton-0.34/work/crypton-0.34/dist/build/libHScrypton-0.34-8uX0arO7yLMcECvDI93BC-ghc9.4.8.so
03:03:48 <geekosaur> you may need to figure out how to build crypton with debug symbols
03:04:50 <geekosaur> https://hackage.haskell.org/package/crypton-1.0.0/src/cbits/decaf/ed448goldilocks/decaf.c look for API_NS(precomputed_scalarmul)
03:05:12 <hololeap> thanks geekosaur, I also found this: https://github.com/kazu-yamamoto/crypton/blob/main/cbits/decaf/include/decaf/point_448.h#L460
03:06:00 <geekosaur> right, that's just the ANSI C declaration of the function I pointed you to
03:06:18 <geekosaur> (declaration, not definition)
03:08:29 aforemny_ joins (~aforemny@2001:9e8:6ce4:3600:74c:8890:60ce:f920)
03:09:02 Lord_of_Life_ joins (~Lord@user/lord-of-life/x-2819915)
03:09:29 × aforemny quits (~aforemny@2001:9e8:6cc3:4e00:388d:4a0d:d109:70a9) (Ping timeout: 265 seconds)
03:09:36 × Lord_of_Life quits (~Lord@user/lord-of-life/x-2819915) (Ping timeout: 276 seconds)
03:10:25 Lord_of_Life_ is now known as Lord_of_Life
03:17:10 <geekosaur> (https://github.com/kazu-yamamoto/crypton/blob/main/cbits/decaf/ed448goldilocks/decaf.c#L1007 is the definition in the source tree instead of on Hackage)
03:22:18 peterbecich joins (~Thunderbi@syn-047-229-123-186.res.spectrum.com)
03:25:25 <hololeap> I'm not so good at this :p
03:26:38 <hololeap> I added --gcc-option=-ggdb to configure, then ran the test suite manually with gdb and this is the stack trace: https://bpa.st/HRWA
03:28:10 × euleritian quits (~euleritia@dynamic-176-006-139-027.176.6.pool.telefonica.de) (Read error: Connection reset by peer)
03:28:20 euleritian joins (~euleritia@77.22.252.56)
03:30:30 nunggu joins (~q@user/nunggu)
03:30:46 <geekosaur> it's missing the debug information still. something may be stripping it (iirc Cabal defaults to that, for example, need --disable-executable-stripping)
03:35:57 noumenon joins (~noumenon@113.51-175-156.customer.lyse.net)
03:43:23 × joeyadams quits (~joeyadams@2603:6010:5100:2ed:2121:19d8:d2a8:bab2) (Quit: Leaving)
03:43:58 × smalltalkman quits (uid545680@id-545680.hampstead.irccloud.com) (Quit: Connection closed for inactivity)
03:51:21 <hololeap> I stripped down the configure flags that gentoo passes, and now it's not segfaulting. I'm bisecting the flags to see which one is creating the segfault
03:59:12 × zlqrvx quits (~zlqrvx@user/zlqrvx) (Ping timeout: 244 seconds)
04:01:04 zlqrvx joins (~zlqrvx@user/zlqrvx)
04:09:34 × bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Remote host closed the connection)
04:10:38 bitdex joins (~bitdex@gateway/tor-sasl/bitdex)
04:22:00 × tabaqui quits (~root@87.200.123.114) (Ping timeout: 252 seconds)
04:33:11 <Inst> forget it, I have a friend who does a lot of stuff with linear haskell, I'll just go ask him, I hope it's not the case that linear haskell ruins Haskell conditionals, although it's probable :(
04:35:05 <hololeap> Inst, I think you need to give an example of what you're having trouble with
04:36:34 <Inst> this is where I am right now
04:36:35 <Inst> https://paste.tomsmeding.com/NnCh99ud
04:37:24 × peterbecich quits (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 252 seconds)
04:38:16 <Inst> should be a >= -1
04:38:25 <Inst> or True / otherwise
04:38:39 <Inst> I have it working now by using a manual if then else
04:39:00 <Inst> also, %1 annotation within a where scope doesn't seem to work
04:39:18 <Inst> i'm probably better off just waiting for my LH friend
04:39:20 <hololeap> what error is it giving you
04:39:47 <Inst> https://paste.tomsmeding.com/pW1ZpJP4
04:40:12 <Inst> I guess XLinearType is experimental
04:40:24 <Inst> and kvetching about it means little, it's rejecting view patterns if I try to Ur something
04:40:32 <Inst> (move -> Ur b)
04:43:40 <hololeap> I barely know anything about this, but you're duplicating the Int that is passed into rec... isn't that what linear types is supposed to prevent you from doing?
04:55:02 <Inst> the problem I'm facing right now is that it seems that if I run a conditional on a numeric literal (uses Eq), it counts as a use
04:55:45 <Inst> since the boolean producer is a function
04:57:18 <hololeap> that may be true. I think you would have to be very careful about what needs to be linear. it seems like a very heavy restriction to be using without a real need to
04:59:04 <Inst> thanks for the help, Hololeap
04:59:17 <Inst> hololeap: I'm just practicing, it's a fun Haskell feature that has a lot of promise
04:59:38 <Inst> and it's a fun excuse to tear apart libraries and rewrite it as linear Haskell and take credit for the rewrite :3
05:00:31 <hololeap> you could look at the source for linear-base for some examples: https://github.com/tweag/linear-base
05:00:53 <Inst> by the way, tomsmeding, I don't have the capability to do anything, but how much do you think it'd cost to retrofit accelerate?
05:01:13 <Inst> yeah i'm using it right now
05:01:14 <Inst> https://hackage.haskell.org/package/linear-base
05:03:53 <hololeap> I see a lot of pattern matching in there but so far no if-then-else or comparisons, so linear types may just not allow it
05:07:49 <Inst> i mean my code is working now, but the idea of having te go jump through hoops I don't understand is painful
05:08:17 <Inst> https://paste.tomsmeding.com/mJ9YR21O
05:08:23 skyesoss1 joins (~Thunderbi@c-73-208-45-119.hsd1.il.comcast.net)
05:08:25 <hololeap> hm, the filter function in Data.Linear.List seems to need a Dupable restriction
05:08:40 <hololeap> https://github.com/tweag/linear-base/blob/16795c74588d013bbb2d4cd7954fd129b8ad2c46/src/Data/Unrestricted/Linear/Internal/Dupable.hs#L47-L70
05:09:02 <Inst> that's a smart move
05:09:39 <Inst> lol dup = dup2
05:10:46 <Inst> also superfluous lambdacase
05:11:14 × skyesoss quits (~Thunderbi@c-73-208-45-119.hsd1.il.comcast.net) (Ping timeout: 260 seconds)
05:11:15 skyesoss1 is now known as skyesoss
05:14:43 <Inst> cool, that works, and cleans up a lot
05:14:53 <hololeap> https://github.com/tweag/linear-base/blob/master/src/Data/Replicator/Linear/Internal/ReplicationStream.hs#L21-L37
05:14:59 <hololeap> this hurts my brain
05:15:07 <Inst> it'll compile if on case dup input of...
05:20:30 <Inst> yeah tbh that's why I was complaining about conditionals
05:21:01 <Inst> it implicitly indicates you'd have to use dup or move (which produces a value in thhe newtype (Ur a), which means unrestricted, to allow running multiple conditionals
05:21:42 <Inst> if you're using Dup
05:21:42 <hololeap> it seems like they had to implement quite a bit to get it work
05:22:11 <Inst> I have a friend who's done projects in linear haskell, maybe he'll have a nice workaround?
05:24:20 <hololeap> hopefully
05:32:52 × skyesoss quits (~Thunderbi@c-73-208-45-119.hsd1.il.comcast.net) (Quit: skyesoss)
05:33:12 <hololeap> geekosaur: I narrowed down the configure option that is causing the problem to --ghc-option=-optc-march=znver2
05:33:31 peterbecich joins (~Thunderbi@syn-047-229-123-186.res.spectrum.com)
05:33:33 <hololeap> which explains why I only hit the segfault on this system
05:34:14 <hololeap> also, the correct configure option to add debugging symbols is --ghc-option=-optc-ggdb
05:35:07 <hololeap> which gives this as the stack trace: https://bpa.st/3FKA
05:38:26 skyesoss joins (~Thunderbi@c-73-208-45-119.hsd1.il.comcast.net)
05:41:49 rosco joins (~rosco@175.136.158.234)
06:17:11 × noumenon quits (~noumenon@113.51-175-156.customer.lyse.net) (Quit: Leaving)
06:17:43 smalltalkman joins (uid545680@id-545680.hampstead.irccloud.com)
06:22:20 hayk joins (~hayk@141.136.90.108)
06:32:09 × hayk quits (~hayk@141.136.90.108) (Quit: hayk)
06:35:45 × Igloo quits (~ian@matrix.chaos.earth.li) (Ping timeout: 246 seconds)
06:37:30 tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
06:43:14 <geekosaur> that's somewhat odd; arch issues would normally toss SIGILL, not a segfault
06:48:40 × tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
06:53:53 tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
07:03:00 tt1231097832 joins (~tt1231@2603:6010:8700:4a81:219f:50d3:618a:a6ee)
07:07:23 michalz joins (~michalz@185.246.207.203)
07:10:06 × peterbecich quits (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 276 seconds)
07:15:32 × euphores quits (~SASL_euph@user/euphores) (Quit: Leaving.)
07:21:17 euphores joins (~SASL_euph@user/euphores)
07:21:33 <Inst> to an extent, though, linear haskell being stingy with conditionals isn't necessarily a bad thing
07:21:44 <Inst> conditionals screw with vectorization
07:40:35 acidjnk joins (~acidjnk@p200300d6e72cfb11143f363222ce679a.dip0.t-ipconnect.de)
07:49:00 target_i joins (~target_i@user/target-i/x-6023099)
07:54:47 × econo_ quits (uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity)
08:12:34 Unhammer joins (~Unhammer@user/unhammer)
08:13:51 × tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
08:16:57 <Unhammer> Is there a way to make a wrapper to override implicit params?
08:18:33 <Unhammer> Say I have a bunch of helper functions of type (?c :: C) => … and I'm in some `outer :: (?c :: C) => … ` and I want to call `helper` with overridden ?c, I can do that with `let ?c = override ?c in helper`
08:19:15 <Unhammer> but I haven't been able to make a `withOverride func = let ?c = override ?c in func`
08:19:57 madhavanmiui joins (~madhavanm@2409:40f4:3052:d7e2:8000::)
08:20:05 <Unhammer> since when I call it like `outer = withOverride helper` it seems the ?c is already bound to helper in the outer call and the override has no effect(?)
08:20:51 × madhavanmiui quits (~madhavanm@2409:40f4:3052:d7e2:8000::) (Client Quit)
08:22:26 JuanDaugherty joins (~juan@user/JuanDaugherty)
08:31:54 × Ellenor quits (ellenor@invictus.wa.us.umbrellix.net) (Remote host closed the connection)
08:35:11 × nunggu quits (~q@user/nunggu) (Ping timeout: 260 seconds)
08:36:06 × euleritian quits (~euleritia@77.22.252.56) (Ping timeout: 252 seconds)
08:36:14 euleritian joins (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de)
08:47:05 Ellenor joins (~Ellenor@invictus.wa.us.umbrellix.net)
08:52:54 × tomku quits (~tomku@user/tomku) (Ping timeout: 260 seconds)
08:54:02 × tzh quits (~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz)
08:57:55 hljhcjwzzh joins (~anton@m90-131-37-252.cust.tele2.lt)
08:58:03 × hljhcjwzzh quits (~anton@m90-131-37-252.cust.tele2.lt) (Client Quit)
08:58:39 jamesonsteve joins (~anton@m90-131-37-252.cust.tele2.lt)
08:58:56 × tomboy64 quits (~tomboy64@user/tomboy64) (Ping timeout: 265 seconds)
09:03:21 tomboy64 joins (~tomboy64@user/tomboy64)
09:13:58 <mauke> > let helper = show ?c in helper
09:13:59 <lambdabot> mueval-core: internal error: PAP object (0x420060e5d8) entered!
09:13:59 <lambdabot> (GHC version 8.10.2 for x86_64_unknown_linux)
09:13:59 <lambdabot> Please report this as a GHC bug: https://www.haskell.org/ghc/reportabug
09:14:14 <mauke> > let helper = show ?c in let ?c = 42 in helper
09:14:15 <lambdabot> error:
09:14:15 <lambdabot> • Couldn't match expected type ‘p’
09:14:15 <lambdabot> with actual type ‘forall a. (Show a, ?c::a) => String’
09:15:25 <mauke> > let helper = show ?c in let ?c = 42 in helper :: String
09:15:26 <lambdabot> "42"
09:18:16 <mauke> > let withOverride :: a -> ((?c :: a) => String) -> String; withOverride x f = let ?c = x in f; helper = show ?c in withOverride 42 helper
09:18:18 <lambdabot> "42"
09:18:50 sawilagar joins (~sawilagar@user/sawilagar)
09:19:12 <int-e> :t let helper = show ?c in let ?c = 42 in helper
09:19:13 <lambdabot> error:
09:19:13 <lambdabot> • Couldn't match expected type ‘p’
09:19:13 <lambdabot> with actual type ‘forall a. (Show a, ?c::a) => String’
09:19:28 <int-e> % :t let helper = show ?c in let ?c = 42 in helper
09:19:28 <yahb2> <interactive>:1:29: error: parse error on input ‘?’
09:19:41 <int-e> % :set -XImplicitParams
09:19:41 <yahb2> <no output>
09:19:44 <int-e> % :t let helper = show ?c in let ?c = 42 in helper
09:19:44 <yahb2> let helper = show ?c in let ?c = 42 in helper :: [Char]
09:20:20 nunggu joins (~q@user/nunggu)
09:20:38 × califax quits (~califax@user/califx) (Remote host closed the connection)
09:20:39 × FinnElija quits (~finn_elij@user/finn-elija/x-0085643) (Remote host closed the connection)
09:20:42 <int-e> not sure what the difference is here...
09:21:01 <int-e> Why does yahb say [Char] instead of String?
09:21:02 califax joins (~califax@user/califx)
09:21:21 FinnElija joins (~finn_elij@user/finn-elija/x-0085643)
09:31:55 Tuplanolla joins (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi)
09:44:48 tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
09:51:10 gmg joins (~user@user/gehmehgeh)
09:58:54 × JuanDaugherty quits (~juan@user/JuanDaugherty) (Quit: JuanDaugherty)
10:08:05 wootehfoot joins (~wootehfoo@user/wootehfoot)
10:08:21 × Sgeo quits (~Sgeo@user/sgeo) (Read error: Connection reset by peer)
10:29:30 × malte quits (~malte@mal.tc) (Ping timeout: 252 seconds)
10:37:45 × jamesonsteve quits (~anton@m90-131-37-252.cust.tele2.lt) (Quit: Lost terminal)
10:38:41 malte joins (~malte@mal.tc)
10:39:23 alexherbo2 joins (~alexherbo@2a02-8440-3101-1cec-f599-701d-a92e-be42.rev.sfr.net)
10:49:09 × euleritian quits (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de) (Ping timeout: 276 seconds)
10:49:50 × malte quits (~malte@mal.tc) (Read error: Connection reset by peer)
10:50:52 <Inst> hololeap: got an answer, you're not supposed to use conditionals with linear types!
10:51:19 <Inst> but my interlocutor didn't see the same opportunity for interleaving SIMD and vectorization with linear types :(
10:57:07 kspalaiologos joins (~kspalaiol@user/kspalaiologos)
11:00:57 malte joins (~malte@mal.tc)
11:00:59 ss4 joins (~wootehfoo@user/wootehfoot)
11:03:18 × wootehfoot quits (~wootehfoo@user/wootehfoot) (Ping timeout: 245 seconds)
11:05:39 × kspalaiologos quits (~kspalaiol@user/kspalaiologos) (Quit: Leaving)
11:35:33 ZharMeny joins (~user@user/ZharMeny)
11:38:57 × tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
11:44:18 euleritian joins (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de)
11:49:07 __monty__ joins (~toonn@user/toonn)
11:53:13 <Unhammer> Aha, the (?c :: a) in the type signature for the 'f' arg of withOverride was the missing piece, without that it doesn't get overridden.
11:53:16 <Unhammer> thanks mauke
11:53:48 <Inst> I did comment that linear types looks like an eDSL for vectorized instructions, but maybe I said something stupid again :(
11:54:23 <Inst> apparently someone put in GHC primops for x86 SIMD, though
12:03:03 × ss4 quits (~wootehfoo@user/wootehfoot) (Quit: Leaving)
12:03:20 wootehfoot joins (~wootehfoo@user/wootehfoot)
12:13:45 JuanDaugherty joins (~juan@user/JuanDaugherty)
12:19:24 × euleritian quits (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de) (Ping timeout: 260 seconds)
12:20:19 euleritian joins (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de)
12:24:29 × CalimeroTeknik quits (~calimero@ctkarch.org) (Changing host)
12:24:29 CalimeroTeknik joins (~calimero@user/calimeroteknik)
12:29:29 tomku joins (~tomku@user/tomku)
12:33:19 tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
12:37:44 newlight joins (~newlight@115.64.113.180)
12:37:55 × TMA quits (tma@twin.jikos.cz) (Ping timeout: 264 seconds)
12:38:15 TMA joins (tma@twin.jikos.cz)
12:44:35 <probie> % :showi language
12:44:36 <yahb2> base language is: GHC2021 ; with the following modifiers: ; -XExtendedDefaultRules ; -XImplicitParams ; -XNoMonomorphismRestriction
12:46:12 × alexherbo2 quits (~alexherbo@2a02-8440-3101-1cec-f599-701d-a92e-be42.rev.sfr.net) (Remote host closed the connection)
12:46:53 × td_ quits (~td@i5387091B.versanet.de) (Ping timeout: 252 seconds)
12:47:47 × newlight quits (~newlight@115.64.113.180) (Quit: Leaving)
12:48:23 CiaoSen joins (~Jura@2a05:5800:2e8:6700:e6b9:7aff:fe80:3d03)
12:48:52 td_ joins (~td@83.135.9.0)
12:50:35 × AlexZenon quits (~alzenon@94.233.241.125) (Quit: ;-)
12:51:10 × AlexNoo quits (~AlexNoo@94.233.241.125) (Quit: Leaving)
12:54:33 elevenkb parts (ab07dcdb5a@2a03:6000:1812:100::13ac) (ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.4))
13:02:32 × td_ quits (~td@83.135.9.0) (Ping timeout: 265 seconds)
13:04:15 td_ joins (~td@i53870913.versanet.de)
13:04:35 AlexNoo joins (~AlexNoo@94.233.241.125)
13:15:33 × td_ quits (~td@i53870913.versanet.de) (Ping timeout: 248 seconds)
13:17:35 td_ joins (~td@i5387092C.versanet.de)
13:24:37 AlexZenon joins (~alzenon@94.233.241.125)
13:36:46 × bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Ping timeout: 260 seconds)
13:38:51 bitdex joins (~bitdex@gateway/tor-sasl/bitdex)
13:43:14 falafel joins (~falafel@2a0c:5a87:3104:4c01::bfe0)
13:50:20 × td_ quits (~td@i5387092C.versanet.de) (Ping timeout: 252 seconds)
13:52:21 × Luj9 quits (~Luj@2a01:e0a:de4:a0e1:be24:11ff:febc:b5b5) (Quit: The Lounge - https://thelounge.chat)
13:53:05 Luj9 joins (~Luj@2a01:e0a:de4:a0e1:be24:11ff:febc:b5b5)
13:54:22 × tomku quits (~tomku@user/tomku) (Ping timeout: 252 seconds)
13:55:55 <hololeap> Inst: good to know
13:57:15 td_ joins (~td@i53870906.versanet.de)
14:01:09 tomku joins (~tomku@user/tomku)
14:02:39 × td_ quits (~td@i53870906.versanet.de) (Ping timeout: 260 seconds)
14:04:29 td_ joins (~td@i5387091C.versanet.de)
14:06:52 × euleritian quits (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de) (Read error: Connection reset by peer)
14:07:10 euleritian joins (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
14:08:52 × falafel quits (~falafel@2a0c:5a87:3104:4c01::bfe0) (Ping timeout: 244 seconds)
14:11:59 × skyesoss quits (~Thunderbi@c-73-208-45-119.hsd1.il.comcast.net) (Ping timeout: 260 seconds)
14:14:41 × nunggu quits (~q@user/nunggu) (Ping timeout: 260 seconds)
14:16:47 nunggu joins (~q@user/nunggu)
14:21:36 × Inst quits (~Inst@user/Inst) (Ping timeout: 252 seconds)
14:36:07 × JuanDaugherty quits (~juan@user/JuanDaugherty) (Quit: JuanDaugherty)
14:51:41 waleee joins (~waleee@h-176-10-144-38.NA.cust.bahnhof.se)
14:53:31 falafel joins (~falafel@2a0c:5a87:3104:4c01::bfe0)
14:58:47 × euleritian quits (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 255 seconds)
14:59:06 euleritian joins (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de)
15:15:23 × tomboy64 quits (~tomboy64@user/tomboy64) (Ping timeout: 245 seconds)
15:19:26 Midjak joins (~MarciZ@82.66.147.146)
15:22:33 × euleritian quits (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de) (Read error: Connection reset by peer)
15:24:38 euleritian joins (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
15:25:58 alexherbo2 joins (~alexherbo@2a02-8440-3414-99ee-1807-b937-9aae-1432.rev.sfr.net)
15:28:15 tomboy64 joins (~tomboy64@user/tomboy64)
15:35:40 × falafel quits (~falafel@2a0c:5a87:3104:4c01::bfe0) (Ping timeout: 244 seconds)
15:45:26 × euleritian quits (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Read error: Connection reset by peer)
15:46:15 euleritian joins (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
15:54:12 × smalltalkman quits (uid545680@id-545680.hampstead.irccloud.com) (Quit: Connection closed for inactivity)
15:55:12 rvalue- joins (~rvalue@user/rvalue)
15:56:24 × rvalue quits (~rvalue@user/rvalue) (Ping timeout: 260 seconds)
15:57:07 econo_ joins (uid147250@id-147250.tinside.irccloud.com)
15:57:59 × CiaoSen quits (~Jura@2a05:5800:2e8:6700:e6b9:7aff:fe80:3d03) (Ping timeout: 265 seconds)
15:59:03 Igloo joins (~ian@matrix.chaos.earth.li)
15:59:24 rvalue- is now known as rvalue
16:05:53 × Igloo quits (~ian@matrix.chaos.earth.li) (Remote host closed the connection)
16:08:01 Igloo joins (~ian@matrix.chaos.earth.li)
16:10:03 tabaqui joins (~root@87.200.123.114)
16:18:41 × Ranhir quits (~Ranhir@157.97.53.139) (Read error: Connection reset by peer)
16:21:06 × wootehfoot quits (~wootehfoo@user/wootehfoot) (Quit: Leaving)
16:23:14 × euleritian quits (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 260 seconds)
16:24:27 euleritian joins (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de)
16:32:46 wootehfoot joins (~wootehfoo@user/wootehfoot)
16:34:06 skyesoss joins (~Thunderbi@c-73-208-45-119.hsd1.il.comcast.net)
16:35:05 × YoungFrog quits (~youngfrog@39.129-180-91.adsl-dyn.isp.belgacom.be) (Quit: ZNC 1.7.x-git-3-96481995 - https://znc.in)
16:36:10 YoungFrog joins (~youngfrog@2a02:a03f:c9db:fc00:734e:5ccb:59d2:1a67)
16:41:31 tabemann_ joins (~tabemann@2600:1700:7990:24e0:c35:f6c5:f5d8:bf3)
16:41:54 natto17 joins (~natto@129.154.243.159)
16:42:28 Katarushisu17 joins (~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net)
16:42:52 incertia_ joins (~incertia@209.122.137.252)
16:43:10 dumptruckman_ joins (~dumptruck@69-164-210-35.ip.linodeusercontent.com)
16:43:48 Ranhir joins (~Ranhir@157.97.53.139)
16:43:58 Putonlalla1 joins (~Putonlall@it-cyan.it.jyu.fi)
16:44:16 Digitteknohippie joins (~user@user/digit)
16:44:28 spenat_ joins (~spenat@c-1125235c.012-6-62726f1.bbcust.telenor.se)
16:44:33 × TMA quits (tma@twin.jikos.cz) (Ping timeout: 248 seconds)
16:44:40 Teacup_ joins (~teacup@user/teacup)
16:44:44 abyxq_ joins (~abyxq@p5b340392.dip0.t-ipconnect.de)
16:45:07 absence_ joins (torgeihe@hildring.pvv.ntnu.no)
16:45:08 barthand1 joins (barth@triton.blinkenshell.org)
16:45:11 Patternm1ster joins (~georg@vmi1645272.contaboserver.net)
16:45:30 lbseale_ joins (~quassel@user/ep1ctetus)
16:45:53 guygastineau joins (~guygastin@137.184.131.156)
16:47:47 × zlqrvx quits (~zlqrvx@user/zlqrvx) (*.net *.split)
16:47:47 × abyxq quits (~abyxq@p5b340392.dip0.t-ipconnect.de) (*.net *.split)
16:47:47 × andreas808 quits (andreas303@is.drunk.and.ready-to.party) (*.net *.split)
16:47:47 × myme quits (~myme@2a01:799:d5c:5f00:b876:d810:9446:b40b) (*.net *.split)
16:47:47 × xff0x quits (~xff0x@2405:6580:b080:900:dfe2:132b:5bfa:6516) (*.net *.split)
16:47:47 × Digit quits (~user@user/digit) (*.net *.split)
16:47:47 × samhh_ quits (7569f027cf@2a03:6000:1812:100::e4) (*.net *.split)
16:47:47 × wryish quits (~wryish@2605:4c40:119:efa3:0:727d:19eb:1) (*.net *.split)
16:47:47 × itaipu quits (~itaipu@168.121.98.135) (*.net *.split)
16:47:47 × s4msung quits (u4jHfpaUni@user/s4msung) (*.net *.split)
16:47:47 × pkal quits (~pkal@2a01:4f8:1c1b:a321::) (*.net *.split)
16:47:47 × noctux quits (~noctux@user/noctux) (*.net *.split)
16:47:47 × barthandelous01 quits (barth@triton.blinkenshell.org) (*.net *.split)
16:47:47 × lbseale quits (~quassel@user/ep1ctetus) (*.net *.split)
16:47:47 × ouroboros quits (~ouroboros@user/ouroboros) (*.net *.split)
16:47:47 × tabemann quits (~tabemann@172-13-49-137.lightspeed.milwwi.sbcglobal.net) (*.net *.split)
16:47:47 × Katarushisu1 quits (~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net) (*.net *.split)
16:47:47 × vulpine quits (xfnw@user/meow/xfnw) (*.net *.split)
16:47:47 × hook54321 quits (sid149355@user/hook54321) (*.net *.split)
16:47:47 × loonycyborg quits (loonycybor@wesnoth/developer/loonycyborg) (*.net *.split)
16:47:47 × bionade24 quits (~quassel@2a03:4000:33:45b::1) (*.net *.split)
16:47:47 × _0xa quits (~user@user/0xa/x-3134607) (*.net *.split)
16:47:47 × dumptruckman quits (~dumptruck@69-164-210-35.ip.linodeusercontent.com) (*.net *.split)
16:47:47 × incertia quits (~incertia@209.122.137.252) (*.net *.split)
16:47:47 × Ekho quits (~Ekho@user/ekho) (*.net *.split)
16:47:47 × edwtjo quits (~edwtjo@fsf/member/edwtjo) (*.net *.split)
16:47:47 × spenat quits (~spenat@c-1125235c.012-6-62726f1.bbcust.telenor.se) (*.net *.split)
16:47:47 × mrmonday quits (~robert@2a01:7e00:e000:1b2:95ca:100:49e0:3f15) (*.net *.split)
16:47:47 × SanchayanMaity quits (sid478177@2a03:5180:f:4::7:4be1) (*.net *.split)
16:47:47 × Teacup quits (~teacup@user/teacup) (*.net *.split)
16:47:47 × meooow quits (~meooow@2400:6180:100:d0::ad9:e001) (*.net *.split)
16:47:47 × taktoa[c] quits (sid282096@2a03:5180:f::4:4df0) (*.net *.split)
16:47:47 × edm quits (sid147314@2a03:5180:f:4::2:3f72) (*.net *.split)
16:47:47 × Kamuela quits (sid111576@2a03:5180:f::1:b3d8) (*.net *.split)
16:47:47 × caasih quits (sid13241@2a03:5180:f:3::33b9) (*.net *.split)
16:47:47 × natto quits (~natto@129.154.243.159) (*.net *.split)
16:47:47 × JSharp quits (sid4580@user/JSharp) (*.net *.split)
16:47:47 × absence quits (torgeihe@hildring.pvv.ntnu.no) (*.net *.split)
16:47:48 × andjjj23 quits (~irc@107.170.228.47) (*.net *.split)
16:47:48 × Flow quits (~none@gentoo/developer/flow) (*.net *.split)
16:47:48 × sajith quits (~sajith@user/sajith) (*.net *.split)
16:47:48 × RMSBach quits (~guygastin@137.184.131.156) (*.net *.split)
16:47:48 × Philonous quits (~Philonous@user/philonous) (*.net *.split)
16:47:48 × Patternmaster quits (~georg@user/Patternmaster) (*.net *.split)
16:47:48 × Putonlalla quits (~Putonlall@it-cyan.it.jyu.fi) (*.net *.split)
16:47:51 Katarushisu17 is now known as Katarushisu1
16:47:51 dumptruckman_ is now known as dumptruckman
16:47:58 incertia_ is now known as incertia
16:48:06 samhh is now known as 030AACUAK
16:48:07 zlqrvx joins (~zlqrvx@user/zlqrvx)
16:48:07 andreas808 joins (andreas303@is.drunk.and.ready-to.party)
16:48:07 myme joins (~myme@2a01:799:d5c:5f00:b876:d810:9446:b40b)
16:48:07 xff0x joins (~xff0x@2405:6580:b080:900:dfe2:132b:5bfa:6516)
16:48:07 samhh joins (7569f027cf@2a03:6000:1812:100::e4)
16:48:07 wryish joins (~wryish@2605:4c40:119:efa3:0:727d:19eb:1)
16:48:07 s4msung joins (u4jHfpaUni@user/s4msung)
16:48:07 pkal joins (~pkal@2a01:4f8:1c1b:a321::)
16:48:07 ouroboros joins (~ouroboros@user/ouroboros)
16:48:07 vulpine joins (xfnw@user/meow/xfnw)
16:48:07 hook54321 joins (sid149355@user/hook54321)
16:48:07 loonycyborg joins (loonycybor@wesnoth/developer/loonycyborg)
16:48:07 bionade24 joins (~quassel@2a03:4000:33:45b::1)
16:48:07 _0xa joins (~user@user/0xa/x-3134607)
16:48:07 mrmonday joins (~robert@2a01:7e00:e000:1b2:95ca:100:49e0:3f15)
16:48:07 SanchayanMaity joins (sid478177@2a03:5180:f:4::7:4be1)
16:48:07 meooow joins (~meooow@2400:6180:100:d0::ad9:e001)
16:48:07 taktoa[c] joins (sid282096@2a03:5180:f::4:4df0)
16:48:07 edm joins (sid147314@2a03:5180:f:4::2:3f72)
16:48:07 Kamuela joins (sid111576@2a03:5180:f::1:b3d8)
16:48:07 caasih joins (sid13241@2a03:5180:f:3::33b9)
16:48:07 JSharp joins (sid4580@user/JSharp)
16:48:07 Flow joins (~none@gentoo/developer/flow)
16:48:07 sajith joins (~sajith@user/sajith)
16:48:07 Philonous joins (~Philonous@user/philonous)
16:48:22 noctux joins (~noctux@user/noctux)
16:48:32 itaipu joins (~itaipu@168.121.98.135)
16:48:34 × andreas808 quits (andreas303@is.drunk.and.ready-to.party) (Max SendQ exceeded)
16:48:51 andreas303 joins (andreas303@is.drunk.and.ready-to.party)
16:49:02 × ddellacosta quits (~ddellacos@ool-44c73d29.dyn.optonline.net) (Ping timeout: 255 seconds)
16:52:07 × hook54321 quits (sid149355@user/hook54321) (Ping timeout: 265 seconds)
16:52:57 × abyxq_ quits (~abyxq@p5b340392.dip0.t-ipconnect.de) (Quit: leaving)
16:55:30 hook54321 joins (sid149355@user/hook54321)
16:56:19 edwtjo joins (~edwtjo@h-85-24-142-35.A213.priv.bahnhof.se)
16:56:19 × edwtjo quits (~edwtjo@h-85-24-142-35.A213.priv.bahnhof.se) (Changing host)
16:56:19 edwtjo joins (~edwtjo@fsf/member/edwtjo)
16:56:32 Ekho- joins (~Ekho@user/ekho)
16:57:05 andjjj23 joins (~irc@107.170.228.47)
16:57:42 TMA joins (tma@twin.jikos.cz)
17:01:23 × rosco quits (~rosco@175.136.158.234) (Remote host closed the connection)
17:02:03 × euleritian quits (~euleritia@dynamic-176-006-138-217.176.6.pool.telefonica.de) (Ping timeout: 245 seconds)
17:02:10 ddellacosta joins (~ddellacos@ool-44c73d29.dyn.optonline.net)
17:02:41 euleritian joins (~euleritia@dynamic-176-006-147-174.176.6.pool.telefonica.de)
17:02:57 × euleritian quits (~euleritia@dynamic-176-006-147-174.176.6.pool.telefonica.de) (Read error: Connection reset by peer)
17:03:15 euleritian joins (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
17:04:10 Digitteknohippie is now known as Digit
17:10:29 oo_miguel joins (~Thunderbi@78.10.207.46)
17:12:44 × Square quits (~Square@user/square) (Ping timeout: 252 seconds)
17:21:09 × tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
17:27:28 falafel joins (~falafel@2a0c:5a87:3104:4c01::bfe0)
17:46:12 × EvanR quits (~EvanR@user/evanr) (Quit: Leaving)
17:47:11 × falafel quits (~falafel@2a0c:5a87:3104:4c01::bfe0) (Ping timeout: 252 seconds)
17:48:35 EvanR joins (~EvanR@user/evanr)
17:53:01 × pavonia quits (~user@user/siracusa) (Quit: Bye!)
17:56:53 ystael joins (~ystael@user/ystael)
18:01:22 Sgeo joins (~Sgeo@user/sgeo)
18:02:58 × YoungFrog quits (~youngfrog@2a02:a03f:c9db:fc00:734e:5ccb:59d2:1a67) (Quit: ZNC 1.7.x-git-3-96481995 - https://znc.in)
18:04:12 machinedgod joins (~machinedg@d173-183-246-216.abhsia.telus.net)
18:07:39 tzh joins (~tzh@c-76-115-131-146.hsd1.or.comcast.net)
18:08:28 × waleee quits (~waleee@h-176-10-144-38.NA.cust.bahnhof.se) (Ping timeout: 252 seconds)
18:14:23 YaShhhh joins (~YaShhhh@202.43.120.232)
18:18:30 tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
18:19:01 × euleritian quits (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 248 seconds)
18:19:10 euleritian joins (~euleritia@dynamic-176-006-147-174.176.6.pool.telefonica.de)
18:23:47 × euleritian quits (~euleritia@dynamic-176-006-147-174.176.6.pool.telefonica.de) (Read error: Connection reset by peer)
18:24:05 euleritian joins (~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
18:26:51 × machinedgod quits (~machinedg@d173-183-246-216.abhsia.telus.net) (Ping timeout: 265 seconds)
18:27:58 × alexherbo2 quits (~alexherbo@2a02-8440-3414-99ee-1807-b937-9aae-1432.rev.sfr.net) (Remote host closed the connection)
18:29:04 alexherbo2 joins (~alexherbo@2a02-8440-3414-99ee-95f5-941e-56ad-2cb1.rev.sfr.net)
18:29:04 × ystael quits (~ystael@user/ystael) (Ping timeout: 260 seconds)
18:32:42 × alexherbo2 quits (~alexherbo@2a02-8440-3414-99ee-95f5-941e-56ad-2cb1.rev.sfr.net) (Remote host closed the connection)
18:39:45 Achylles joins (~Achylles@45.182.57.82)
18:43:07 × YaShhhh quits (~YaShhhh@202.43.120.232) (Quit: Client closed)
18:46:51 × econo_ quits (uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity)
18:48:58 × terrorjack quits (~terrorjac@2a01:4f8:c17:87f8::) (Quit: The Lounge - https://thelounge.chat)
18:49:19 alexherbo2 joins (~alexherbo@199.39.22.93.rev.sfr.net)
18:50:45 × sawilagar quits (~sawilagar@user/sawilagar) (Quit: Leaving)
18:51:26 × alexherbo2 quits (~alexherbo@199.39.22.93.rev.sfr.net) (Remote host closed the connection)
18:51:42 alexherbo2 joins (~alexherbo@2a02-8440-3414-99ee-c9ca-933e-f7b8-da32.rev.sfr.net)
18:53:43 sawilagar joins (~sawilagar@user/sawilagar)
18:58:57 terrorjack joins (~terrorjac@static.163.82.63.178.clients.your-server.de)
19:02:19 × alexherbo2 quits (~alexherbo@2a02-8440-3414-99ee-c9ca-933e-f7b8-da32.rev.sfr.net) (Remote host closed the connection)
19:03:08 alexherbo2 joins (~alexherbo@199.39.22.93.rev.sfr.net)
19:08:32 × myxos quits (~myxos@syn-065-028-251-121.res.spectrum.com) (Ping timeout: 255 seconds)
19:13:06 × sawilagar quits (~sawilagar@user/sawilagar) (Read error: Connection reset by peer)
19:13:30 × tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
19:13:34 sawilagar joins (~sawilagar@user/sawilagar)
19:16:27 × sawilagar quits (~sawilagar@user/sawilagar) (Remote host closed the connection)
19:17:06 sawilagar joins (~sawilagar@user/sawilagar)
19:18:13 tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
19:20:47 myxos joins (~myxos@syn-065-028-251-121.res.spectrum.com)
19:22:08 JuanDaugherty joins (~juan@user/JuanDaugherty)
19:41:07 ystael joins (~ystael@user/ystael)
19:43:41 × bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Ping timeout: 260 seconds)
19:52:10 × wootehfoot quits (~wootehfoo@user/wootehfoot) (Quit: pillow time)
19:52:24 bitdex joins (~bitdex@gateway/tor-sasl/bitdex)
20:26:07 econo_ joins (uid147250@id-147250.tinside.irccloud.com)
20:32:52 × alexherbo2 quits (~alexherbo@199.39.22.93.rev.sfr.net) (Remote host closed the connection)
20:34:13 alexherbo2 joins (~alexherbo@2a02-8440-3414-99ee-5909-00c8-7e02-dfe5.rev.sfr.net)
20:34:27 YoungFrog joins (~youngfrog@2a02:a03f:c9db:fc00:40f:34b2:83e3:2019)
20:37:50 × alexherbo2 quits (~alexherbo@2a02-8440-3414-99ee-5909-00c8-7e02-dfe5.rev.sfr.net) (Remote host closed the connection)
20:46:44 × ystael quits (~ystael@user/ystael) (Ping timeout: 260 seconds)
21:02:09 peterbecich joins (~Thunderbi@syn-047-229-123-186.res.spectrum.com)
21:03:43 × tomku quits (~tomku@user/tomku) (Ping timeout: 252 seconds)
21:03:57 tomku joins (~tomku@user/tomku)
21:16:17 × michalz quits (~michalz@185.246.207.203) (Remote host closed the connection)
21:21:31 um joins (k2jyp15ed5@jail.mp2.macomnet.net)
21:25:13 pavonia joins (~user@user/siracusa)
21:27:16 × Achylles quits (~Achylles@45.182.57.82) (Quit: Leaving)
21:28:20 × peterbecich quits (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 272 seconds)
21:28:44 um parts (k2jyp15ed5@jail.mp2.macomnet.net) ()
21:37:08 × target_i quits (~target_i@user/target-i/x-6023099) (Quit: leaving)
21:38:11 nnm- joins (nnm-@play.hard.go.pro.and.dont.be.a.noob.cx)
21:44:10 peterbecich joins (~Thunderbi@syn-047-229-123-186.res.spectrum.com)
21:47:35 × tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
21:57:12 tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
22:03:03 × oo_miguel quits (~Thunderbi@78.10.207.46) (Ping timeout: 252 seconds)
22:04:54 × Midjak quits (~MarciZ@82.66.147.146) (Quit: Leaving)
22:08:32 × JuanDaugherty quits (~juan@user/JuanDaugherty) (Quit: JuanDaugherty)
22:12:50 zetef joins (~quassel@2a02:2f00:5202:1200:3fa2:e908:b522:fa2f)
22:12:50 × zetef quits (~quassel@2a02:2f00:5202:1200:3fa2:e908:b522:fa2f) (Client Quit)
22:14:23 × haskellbridge quits (~hackager@syn-024-093-192-219.res.spectrum.com) (Remote host closed the connection)
22:17:35 × tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
22:35:34 haskellbridge joins (~hackager@syn-024-093-192-219.res.spectrum.com)
22:35:34 ChanServ sets mode +v haskellbridge
22:36:32 × haskellbridge quits (~hackager@syn-024-093-192-219.res.spectrum.com) (Remote host closed the connection)
22:37:00 haskellbridge joins (~hackager@syn-024-093-192-219.res.spectrum.com)
22:37:00 ChanServ sets mode +v haskellbridge
22:37:19 × haskellbridge quits (~hackager@syn-024-093-192-219.res.spectrum.com) (Remote host closed the connection)
22:37:41 haskellbridge joins (~hackager@syn-024-093-192-219.res.spectrum.com)
22:37:41 ChanServ sets mode +v haskellbridge
22:43:06 machinedgod joins (~machinedg@d173-183-246-216.abhsia.telus.net)
22:44:07 × __monty__ quits (~toonn@user/toonn) (Quit: leaving)
22:46:35 zetef joins (~quassel@2a02:2f00:5202:1200:3fa2:e908:b522:fa2f)
22:47:05 × zetef quits (~quassel@2a02:2f00:5202:1200:3fa2:e908:b522:fa2f) (Client Quit)
22:50:40 falafel joins (~falafel@2a0c:5a87:3104:4c01::bfe0)
22:57:32 × hgolden quits (~hgolden@2603:8000:9d00:3ed1:1ee4:1b7c:94a7:8fa7) (Remote host closed the connection)
23:02:24 × jrm quits (~jrm@user/jrm) (Quit: ciao)
23:02:47 jrm joins (~jrm@user/jrm)
23:09:09 × acidjnk quits (~acidjnk@p200300d6e72cfb11143f363222ce679a.dip0.t-ipconnect.de) (Ping timeout: 248 seconds)
23:12:46 × ZharMeny quits (~user@user/ZharMeny) (Quit: ,)
23:26:02 × peterbecich quits (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 265 seconds)
23:30:23 × sawilagar quits (~sawilagar@user/sawilagar) (Ping timeout: 265 seconds)
23:31:29 × gmg quits (~user@user/gehmehgeh) (Quit: Leaving)
23:54:31 × nunggu quits (~q@user/nunggu) (Ping timeout: 260 seconds)

All times are in UTC on 2024-08-04.