2023/12/24

2023-12-24 00:03:02 +0100son0p(~ff@181.136.122.143)
2023-12-24 00:11:11 +0100wootehfoot(~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer)
2023-12-24 00:18:05 +0100mud(~mud@user/kadoban)
2023-12-24 00:20:03 +0100__monty__(~toonn@user/toonn) (Quit: leaving)
2023-12-24 00:26:01 +0100acidjnk(~acidjnk@p200300d6e72b93974924925d6b33a65b.dip0.t-ipconnect.de) (Ping timeout: 246 seconds)
2023-12-24 00:26:08 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2023-12-24 00:28:46 +0100Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2023-12-24 00:31:57 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-12-24 00:33:14 +0100Sgeo(~Sgeo@user/sgeo)
2023-12-24 00:35:31 +0100 <Inst> does system.process have an argmax?
2023-12-24 00:35:40 +0100takuan(~takuan@178-116-218-225.access.telenet.be) (Remote host closed the connection)
2023-12-24 00:36:21 +0100 <Inst> thanks geekosaur for the guidance on argfiles
2023-12-24 00:36:24 +0100 <Inst> just had an actual use of it
2023-12-24 00:38:22 +0100 <geekosaur> System.Process doesn't specify one, because it's not only different on different platforms, it works differently
2023-12-24 00:39:19 +0100azimut(~azimut@gateway/tor-sasl/azimut) (Ping timeout: 240 seconds)
2023-12-24 00:44:47 +0100jmdaemon(~jmdaemon@user/jmdaemon) (Ping timeout: 256 seconds)
2023-12-24 00:45:13 +0100mud(~mud@user/kadoban) (Quit: quit)
2023-12-24 00:48:01 +0100peterbecich(~Thunderbi@047-229-123-186.res.spectrum.com)
2023-12-24 00:49:11 +0100emmanuelux(~emmanuelu@user/emmanuelux) (Read error: Connection reset by peer)
2023-12-24 00:49:21 +0100emmanuelux(~emmanuelu@user/emmanuelux)
2023-12-24 00:50:11 +0100 <exarkun> is there a library or pattern that helps with "basic" operations on cyclic values? for example, for implementing Eq or Show f or them, or more generally making them finitely traversable?
2023-12-24 00:53:35 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920) (Ping timeout: 268 seconds)
2023-12-24 00:54:00 +0100emmanuelux(~emmanuelu@user/emmanuelux) (Ping timeout: 252 seconds)
2023-12-24 00:57:11 +0100emmanuelux(~emmanuelu@user/emmanuelux)
2023-12-24 01:01:20 +0100steew(~steew@user/steew)
2023-12-24 01:04:25 +0100target_i(~target_i@217.175.14.39) (Quit: leaving)
2023-12-24 01:09:41 +0100 <exarkun> guess I should read the fgl paper
2023-12-24 01:13:54 +0100falafel_(~falafel@173-245-203-52.iad.as54203.net) (Ping timeout: 260 seconds)
2023-12-24 01:14:02 +0100jmorris(uid604645@id-604645.hampstead.irccloud.com)
2023-12-24 01:15:43 +0100L29Ah(~L29Ah@wikipedia/L29Ah)
2023-12-24 01:17:37 +0100jb3(~jb3@2a03:4000:57:b16:a4be:28ff:fe49:f0a1)
2023-12-24 01:18:42 +0100jb3(~jb3@2a03:4000:57:b16:a4be:28ff:fe49:f0a1) (Quit: ZNC Restarting)
2023-12-24 01:19:14 +0100jb3(~jb3@2a03:4000:57:b16:a4be:28ff:fe49:f0a1)
2023-12-24 01:25:51 +0100 <monochrom> But fgl doesn't build cyclic values for graphs. Not in the sense of "zs = 0 : zs".
2023-12-24 01:29:45 +0100peterbecich(~Thunderbi@047-229-123-186.res.spectrum.com) (Ping timeout: 252 seconds)
2023-12-24 01:34:46 +0100Unicorn_Princess(~Unicorn_P@user/Unicorn-Princess/x-3540542) (Remote host closed the connection)
2023-12-24 01:36:55 +0100APic(apic@apic.name)
2023-12-24 01:37:07 +0100Tuplanolla(~Tuplanoll@91-159-69-171.elisa-laajakaista.fi) (Quit: Leaving.)
2023-12-24 01:37:40 +0100Tuplanolla(~Tuplanoll@91-159-69-171.elisa-laajakaista.fi)
2023-12-24 01:38:36 +0100 <EvanR> it's not clear that zs = 0 : zs is finitely traversable
2023-12-24 01:38:38 +0100Tuplanolla(~Tuplanoll@91-159-69-171.elisa-laajakaista.fi) (Client Quit)
2023-12-24 01:39:42 +0100 <EvanR> is zeros ++ [1] finitely traversable
2023-12-24 01:40:58 +0100mxs(~mxs@user/mxs)
2023-12-24 01:41:18 +0100 <ski> `zs = 0 : zs' is clearly equivalent to `zs = 0 : ys where ys = 0 : zs'. should `mapM f' on a similar cyclic structure, with some kind of support for not getting into non-termination when traversing, invoke `f' once or twice ? should `f' be required to be idempotent, somehow ?
2023-12-24 01:41:42 +0100 <geekosaur> I'm not sure you can safely detect even simple cyclic values in Haskell, you'd need reallyUnsafePtrEquality# which is reallyUnsafe for a reason
2023-12-24 01:41:57 +0100 <ski> yes
2023-12-24 01:42:58 +0100 <ski> you can use it as an optimization, to get a shortcut. but really you should give the same result (including bottoms), if you're given two equivalent values which doesn't compare as the same value in the representation
2023-12-24 01:45:26 +0100 <ski> with traversing a cyclic structure, one could imagine a monotonically increasing output, with a fixed point iteration to get a stable result. e.g. determining which nodes are accessible from other nodes in a graph, or say liveness analysis
2023-12-24 01:45:35 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:bd66:57bc:8aed:5e26) (Remote host closed the connection)
2023-12-24 01:47:24 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:58c1:2533:b464:a7)
2023-12-24 01:47:30 +0100emmanuelux(~emmanuelu@user/emmanuelux) (Read error: Connection reset by peer)
2023-12-24 01:49:52 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2023-12-24 01:51:49 +0100 <ski> of course, you could work with a monad `M' (having `MonadFix M'), with `newIdent :: a -> M (Ident a)',`extractIdent :: Ident a -> a', with `Eq (Ident a)', for having explicit identity of nodes in your cyclic structure, so `mfix \zs -> newIdent (Cons 0 zs)' would yield a result (given say `type List f a = f (Cell f a); data Cell f a = Nil | Cons a (List f a)') of type `List Ident Integer', that compares
2023-12-24 01:51:55 +0100 <ski> inequal to the one generated by `mfix \zs -> do ys <- newIdent (Cons 0 zs); newIdent (Cons 0 ys)'
2023-12-24 01:52:12 +0100emmanuelux(~emmanuelu@user/emmanuelux)
2023-12-24 01:53:23 +0100elkcl(~elkcl@broadband-95-84-226-240.ip.moscow.rt.ru) (Ping timeout: 264 seconds)
2023-12-24 01:55:24 +0100 <ski> .. but if you're going to use actual normal cyclic structures, not something like `Ident' above, then the two definitions of `zs' ought to be indistinguishable, from the POV of the language (so not including debugging)
2023-12-24 01:56:06 +0100 <[Leary]> Relevant: <https://www.joachim-breitner.de/blog/807-Left_recursive_parser_combinators_via_sharing>, where he uses `propriocept :: (Unique -> a) -> a` to (unsafely) make sharing observable.
2023-12-24 01:59:47 +0100emmanuelux(~emmanuelu@user/emmanuelux) (Read error: Connection reset by peer)
2023-12-24 02:01:07 +0100emmanuelux(~emmanuelu@user/emmanuelux)
2023-12-24 02:01:49 +0100TonyStone(~TonyStone@074-076-057-186.res.spectrum.com)
2023-12-24 02:02:11 +0100 <ski> yea, `propriocept :: (Unique -> a) -> a' looks similar/reminiscent to `newCyclicIORef :: (IORef a -> a) -> IO (IORef a)' (translated into Haskell terms from `:- pred new_cyclic_mutvar((func(generic_mutvar(T,S)) = T)::in,generic_mutvar(T,S)::out,S::di,S::uo) is det <= store(S).') in Mercury, <https://www.mercurylang.org/information/doc-latest/mercury_library/store.html>
2023-12-24 02:02:32 +0100LispTyro(~pepsi@129.159.85.69)
2023-12-24 02:02:33 +0100califax(~califax@user/califx) (Remote host closed the connection)
2023-12-24 02:02:55 +0100emmanuelux_(~emmanuelu@user/emmanuelux)
2023-12-24 02:02:59 +0100 <ski> (though that one avoids the `unsafePerformIO', since the result is in `IO')
2023-12-24 02:03:01 +0100emmanuelux(~emmanuelu@user/emmanuelux) (Read error: Connection reset by peer)
2023-12-24 02:03:08 +0100elkcl(~elkcl@broadband-95-84-226-240.ip.moscow.rt.ru)
2023-12-24 02:03:38 +0100bilegeek(~bilegeek@2600:1008:b06f:8c1a:8ca9:6352:45f7:7dd7)
2023-12-24 02:04:01 +0100califax(~califax@user/califx)
2023-12-24 02:05:35 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:58c1:2533:b464:a7) (Remote host closed the connection)
2023-12-24 02:05:52 +0100 <ski> "The fix (sic!) is to make sure that the recursive call is using the parser we are currently defining, which we can easily do with a local definition" -- yea, this breaks equational reasoning :(
2023-12-24 02:08:41 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-12-24 02:08:58 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Client Quit)
2023-12-24 02:14:18 +0100Lord_of_Life(~Lord@user/lord-of-life/x-2819915) (Ping timeout: 252 seconds)
2023-12-24 02:15:43 +0100Lord_of_Life(~Lord@user/lord-of-life/x-2819915)
2023-12-24 02:17:19 +0100tessier(~treed@ec2-184-72-149-67.compute-1.amazonaws.com) (Ping timeout: 246 seconds)
2023-12-24 02:18:44 +0100tessier(~treed@ec2-184-72-149-67.compute-1.amazonaws.com)
2023-12-24 02:29:09 +0100igemnace(~ian@user/igemnace)
2023-12-24 02:34:37 +0100igemnace(~ian@user/igemnace) (Remote host closed the connection)
2023-12-24 02:35:06 +0100rovaughn(~rovaughn@2a09:bac3:a627:6e::b:28d)
2023-12-24 02:35:26 +0100kotrcka(~user@92.63.48.18)
2023-12-24 02:42:05 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:58c1:2533:b464:a7)
2023-12-24 02:46:31 +0100rovaughn(~rovaughn@2a09:bac3:a627:6e::b:28d) (Quit: Client closed)
2023-12-24 02:46:45 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:58c1:2533:b464:a7) (Remote host closed the connection)
2023-12-24 02:47:00 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:58c1:2533:b464:a7)
2023-12-24 02:47:07 +0100tessier(~treed@ec2-184-72-149-67.compute-1.amazonaws.com) (Ping timeout: 255 seconds)
2023-12-24 02:49:03 +0100tessier(~treed@ip72-197-145-89.sd.sd.cox.net)
2023-12-24 02:56:15 +0100dsrt^(~cd@c-98-242-74-66.hsd1.ga.comcast.net)
2023-12-24 02:56:32 +0100alexherbo2(~alexherbo@2a02-8440-3240-b2fd-f530-3e50-7734-7ced.rev.sfr.net) (Ping timeout: 250 seconds)
2023-12-24 03:28:25 +0100szkl(uid110435@id-110435.uxbridge.irccloud.com)
2023-12-24 03:45:52 +0100Pozyomka(~pyon@user/pyon) (Ping timeout: 246 seconds)
2023-12-24 03:54:10 +0100igemnace(~ian@user/igemnace)
2023-12-24 04:04:04 +0100igemnace(~ian@user/igemnace) (Remote host closed the connection)
2023-12-24 04:14:35 +0100igemnace(~ian@user/igemnace)
2023-12-24 04:16:34 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net)
2023-12-24 04:21:05 +0100pavonia(~user@user/siracusa)
2023-12-24 04:21:07 +0100tri(~tri@ool-18bc2e74.dyn.optonline.net)
2023-12-24 04:28:31 +0100Pozyomka(~pyon@user/pyon)
2023-12-24 04:33:54 +0100peterbecich(~Thunderbi@047-229-123-186.res.spectrum.com)
2023-12-24 04:35:23 +0100td_(~td@i5387090C.versanet.de) (Ping timeout: 264 seconds)
2023-12-24 04:37:14 +0100td_(~td@i5387092A.versanet.de)
2023-12-24 04:38:03 +0100Xyloes(~wyx@2400:dd01:103a:1012:d681:d7ff:fedb:298d)
2023-12-24 04:39:07 +0100igemnace(~ian@user/igemnace) (Remote host closed the connection)
2023-12-24 04:51:35 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se) (Ping timeout: 252 seconds)
2023-12-24 04:56:19 +0100FinnElija(~finn_elij@user/finn-elija/x-0085643) (Killed (NickServ (Forcing logout FinnElija -> finn_elija)))
2023-12-24 04:56:19 +0100finn_elija(~finn_elij@user/finn-elija/x-0085643)
2023-12-24 04:56:19 +0100finn_elijaFinnElija
2023-12-24 05:05:46 +0100peterbecich(~Thunderbi@047-229-123-186.res.spectrum.com) (Ping timeout: 245 seconds)
2023-12-24 05:13:45 +0100jmorris(uid604645@id-604645.hampstead.irccloud.com) (Quit: Connection closed for inactivity)
2023-12-24 05:19:22 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net) (Ping timeout: 268 seconds)
2023-12-24 05:19:40 +0100peterbecich(~Thunderbi@047-229-123-186.res.spectrum.com)
2023-12-24 05:24:20 +0100aforemny_(~aforemny@2001:9e8:6cce:a00:568e:ce0e:4e77:a064)
2023-12-24 05:25:31 +0100aforemny(~aforemny@i59F516C5.versanet.de) (Ping timeout: 255 seconds)
2023-12-24 05:26:15 +0100raym(~ray@user/raym) (Ping timeout: 252 seconds)
2023-12-24 05:48:38 +0100azimut(~azimut@gateway/tor-sasl/azimut)
2023-12-24 05:51:04 +0100jargon(~jargon@15.sub-174-205-161.myvzw.com) (Remote host closed the connection)
2023-12-24 05:56:49 +0100[_](~itchyjunk@user/itchyjunk/x-7353470)
2023-12-24 06:00:47 +0100[itchyjunk](~itchyjunk@user/itchyjunk/x-7353470) (Ping timeout: 260 seconds)
2023-12-24 06:13:13 +0100raym(~ray@user/raym)
2023-12-24 07:04:29 +0100lisbeths_(uid135845@id-135845.lymington.irccloud.com)
2023-12-24 07:10:20 +0100kotrcka(~user@92.63.48.18) (Remote host closed the connection)
2023-12-24 07:15:43 +0100pastly(~pastly@gateway/tor-sasl/pastly) (Ping timeout: 240 seconds)
2023-12-24 07:16:00 +0100tri(~tri@ool-18bc2e74.dyn.optonline.net) (Remote host closed the connection)
2023-12-24 07:18:55 +0100notzmv(~zmv@user/notzmv) (Ping timeout: 255 seconds)
2023-12-24 07:21:03 +0100trev(~trev@user/trev)
2023-12-24 07:23:03 +0100pastly(~pastly@gateway/tor-sasl/pastly)
2023-12-24 07:36:26 +0100pastly(~pastly@gateway/tor-sasl/pastly) (Remote host closed the connection)
2023-12-24 07:36:51 +0100pastly(~pastly@gateway/tor-sasl/pastly)
2023-12-24 07:47:33 +0100 <Inst> i currently have a retry function that threaddelays for 5 seconds before retrying
2023-12-24 07:47:56 +0100 <Inst> it's written as print SomeException >> threadDelay 5_000_000 >> call the catcher again
2023-12-24 07:48:07 +0100 <Inst> I get the feeling this is causing space leaks, any possible alternatives?
2023-12-24 07:49:58 +0100rvalue(~rvalue@user/rvalue) (Read error: Connection reset by peer)
2023-12-24 07:50:17 +0100rvalue(~rvalue@user/rvalue)
2023-12-24 07:52:27 +0100not_reserved(~not_reser@154.16.157.96) (Quit: Client closed)
2023-12-24 08:06:43 +0100tzh(~tzh@c-71-193-181-0.hsd1.or.comcast.net) (Quit: zzz)
2023-12-24 08:09:28 +0100Xyloes(~wyx@2400:dd01:103a:1012:d681:d7ff:fedb:298d) (Read error: Connection reset by peer)
2023-12-24 08:09:42 +0100Xyloes(~wyx@2400:dd01:103a:1012:d681:d7ff:fedb:298d)
2023-12-24 08:09:53 +0100mhatta(~mhatta@www21123ui.sakura.ne.jp) (Quit: ZNC 1.8.2+deb3.1 - https://znc.in)
2023-12-24 08:13:46 +0100johnw(~johnw@69.62.242.138) (Quit: ZNC - http://znc.in)
2023-12-24 08:17:02 +0100qqq(~qqq@92.43.167.61) (Ping timeout: 256 seconds)
2023-12-24 08:17:31 +0100takuan(~takuan@178-116-218-225.access.telenet.be)
2023-12-24 08:22:31 +0100 <monochrom> Do you already know of the considerations listed in my https://www.vex.net/~trebla/haskell/exception-tutorial.xhtml#catch ? Especially the 3rd one.
2023-12-24 08:23:22 +0100acidjnk(~acidjnk@p200300d6e72b9399a8c5bc149f28ceae.dip0.t-ipconnect.de)
2023-12-24 08:25:47 +0100tv(~tv@user/tv) (Ping timeout: 264 seconds)
2023-12-24 08:26:19 +0100 <Inst> No, but thanks for being helpful despite differences we've had in the past.
2023-12-24 08:28:03 +0100 <Inst> I'm enjoying getting free education from your alma without any admissions requirements. :)
2023-12-24 08:28:13 +0100 <Inst> /s/alma/employer
2023-12-24 08:38:42 +0100tv(~tv@user/tv)
2023-12-24 08:39:06 +0100peterbecich(~Thunderbi@047-229-123-186.res.spectrum.com) (Ping timeout: 245 seconds)
2023-12-24 08:41:40 +0100xdminsy(~xdminsy@117.147.71.169)
2023-12-24 08:48:05 +0100johnw(~johnw@69.62.242.138)
2023-12-24 08:54:14 +0100inedia(~irc@2602:2da:0:80:5054:ff:fe3c:8d93)
2023-12-24 08:58:56 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-12-24 08:59:16 +0100fendor(~fendor@2a02:8388:1605:d100:267b:1353:13d7:4f0c)
2023-12-24 09:05:23 +0100majestic(~majestic@176.254.244.83) (Ping timeout: 264 seconds)
2023-12-24 09:06:31 +0100pastly(~pastly@gateway/tor-sasl/pastly) (Remote host closed the connection)
2023-12-24 09:06:58 +0100pastly(~pastly@gateway/tor-sasl/pastly)
2023-12-24 09:09:03 +0100chillxmas(~chillxmas@176.254.244.83)
2023-12-24 09:09:09 +0100Fallon(sid630121@id-630121.helmsley.irccloud.com)
2023-12-24 09:12:16 +0100 <Fallon> https://porn.jules-aubert.info/humble_bundle
2023-12-24 09:12:17 +0100 <Fallon> https://porn.jules-aubert.info/the_manga_guides
2023-12-24 09:14:21 +0100Fallon(sid630121@id-630121.helmsley.irccloud.com) ()
2023-12-24 09:15:49 +0100 <haskellbridge> 15<J​ade> geekosaur / @mods
2023-12-24 09:16:01 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net)
2023-12-24 09:21:25 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net) (Ping timeout: 276 seconds)
2023-12-24 09:21:46 +0100qqq(~qqq@92.43.167.61)
2023-12-24 09:21:48 +0100mhatta(~mhatta@www21123ui.sakura.ne.jp)
2023-12-24 09:30:10 +0100notzmv(~zmv@user/notzmv)
2023-12-24 09:38:50 +0100 <haskellbridge> 05<i​rregularsphere> these bots exist on IRC?
2023-12-24 09:50:19 +0100waldo(~waldo@user/waldo)
2023-12-24 09:50:30 +0100 <haskellbridge> 05<i​rregularsphere> so i (for some reason) sorted uno cards
2023-12-24 09:50:51 +0100_ht(~Thunderbi@28-52-174-82.ftth.glasoperator.nl)
2023-12-24 09:50:53 +0100 <haskellbridge> 05<i​rregularsphere> i discovered that you can amalgamate the `ascending` and `descending` procedure into one
2023-12-24 09:50:55 +0100 <haskellbridge> 05<i​rregularsphere> https://play-haskell.tomsmeding.com/saved/3MtsSQ2S
2023-12-24 09:51:05 +0100 <haskellbridge> 05<i​rregularsphere> can anyone benchmark this? :P
2023-12-24 09:51:17 +0100machinedgod(~machinedg@d198-53-218-113.abhsia.telus.net) (Ping timeout: 240 seconds)
2023-12-24 09:51:20 +0100 <haskellbridge> 05<i​rregularsphere> also compare with `sort`
2023-12-24 09:51:26 +0100 <haskellbridge> 05<i​rregularsphere> or `sortBy`
2023-12-24 09:51:43 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2023-12-24 09:58:32 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-12-24 10:03:56 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920)
2023-12-24 10:11:35 +0100bilegeek(~bilegeek@2600:1008:b06f:8c1a:8ca9:6352:45f7:7dd7) (Quit: Leaving)
2023-12-24 10:15:38 +0100jmdaemon(~jmdaemon@user/jmdaemon)
2023-12-24 10:19:59 +0100waldo(~waldo@user/waldo) (Ping timeout: 268 seconds)
2023-12-24 10:24:06 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920) (Ping timeout: 260 seconds)
2023-12-24 10:34:35 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920)
2023-12-24 10:49:27 +0100Tuplanolla(~Tuplanoll@91-159-69-171.elisa-laajakaista.fi)
2023-12-24 10:53:54 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se)
2023-12-24 10:58:07 +0100econo_(uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity)
2023-12-24 11:01:10 +0100pwug(~pwug@user/pwug)
2023-12-24 11:01:19 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 256 seconds)
2023-12-24 11:02:12 +0100euleritian(~euleritia@82.113.99.13)
2023-12-24 11:04:01 +0100sawilagar(~sawilagar@user/sawilagar)
2023-12-24 11:15:58 +0100ft(~ft@p3e9bcf0d.dip0.t-ipconnect.de) (Quit: leaving)
2023-12-24 11:26:03 +0100euleritian(~euleritia@82.113.99.13) (Read error: Connection reset by peer)
2023-12-24 11:26:20 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2023-12-24 11:27:52 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:58c1:2533:b464:a7) (Remote host closed the connection)
2023-12-24 11:31:29 +0100xdminsy(~xdminsy@117.147.71.169) (Read error: Connection reset by peer)
2023-12-24 11:39:09 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se) (Ping timeout: 252 seconds)
2023-12-24 11:41:14 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se)
2023-12-24 11:42:34 +0100pwug(~pwug@user/pwug) (Quit: Leaving)
2023-12-24 11:45:21 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920) (Remote host closed the connection)
2023-12-24 11:45:40 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920)
2023-12-24 11:48:16 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se) (Ping timeout: 245 seconds)
2023-12-24 11:50:35 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se)
2023-12-24 11:53:01 +0100jmdaemon(~jmdaemon@user/jmdaemon) (Ping timeout: 256 seconds)
2023-12-24 11:55:41 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se) (Ping timeout: 240 seconds)
2023-12-24 11:57:56 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se)
2023-12-24 11:58:29 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920) (Ping timeout: 240 seconds)
2023-12-24 11:59:07 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920)
2023-12-24 12:00:35 +0100sawilagar(~sawilagar@user/sawilagar) (Ping timeout: 260 seconds)
2023-12-24 12:01:09 +0100manwithluck(manwithluc@gateway/vpn/protonvpn/manwithluck) (Ping timeout: 252 seconds)
2023-12-24 12:02:16 +0100manwithluck(manwithluc@gateway/vpn/protonvpn/manwithluck)
2023-12-24 12:04:34 +0100oxide(~lambda@user/oxide) (Remote host closed the connection)
2023-12-24 12:05:03 +0100oxide(~lambda@user/oxide)
2023-12-24 12:06:00 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:58c1:2533:b464:a7)
2023-12-24 12:13:27 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net)
2023-12-24 12:18:57 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net) (Ping timeout: 256 seconds)
2023-12-24 12:23:23 +0100L29Ah(~L29Ah@wikipedia/L29Ah) ()
2023-12-24 12:35:16 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920) (Ping timeout: 255 seconds)
2023-12-24 12:37:51 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Read error: Connection reset by peer)
2023-12-24 12:41:18 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 260 seconds)
2023-12-24 12:41:30 +0100euleritian(~euleritia@dynamic-046-114-227-135.46.114.pool.telefonica.de)
2023-12-24 12:50:32 +0100emmanuelux_(~emmanuelu@user/emmanuelux) (Quit: au revoir)
2023-12-24 12:50:40 +0100euleritian(~euleritia@dynamic-046-114-227-135.46.114.pool.telefonica.de) (Read error: Connection reset by peer)
2023-12-24 12:50:59 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2023-12-24 13:01:32 +0100misterfish(~misterfis@84.53.85.146)
2023-12-24 13:07:05 +0100fendor(~fendor@2a02:8388:1605:d100:267b:1353:13d7:4f0c) (Remote host closed the connection)
2023-12-24 13:12:23 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920)
2023-12-24 13:14:40 +0100dagit(~dagit@2001:558:6025:38:71c6:9d58:7252:8976)
2023-12-24 13:23:10 +0100img(~img@user/img) (Quit: ZNC 1.8.2 - https://znc.in)
2023-12-24 13:23:14 +0100Guestuwu(~Guestuwu@dy67qf31pwk5bl4h8yyby-4.rev.dnainternet.fi)
2023-12-24 13:24:48 +0100img(~img@user/img)
2023-12-24 13:30:41 +0100wootehfoot(~wootehfoo@user/wootehfoot)
2023-12-24 13:38:19 +0100waldo(~waldo@user/waldo)
2023-12-24 13:44:00 +0100lisbeths_(uid135845@id-135845.lymington.irccloud.com) (Quit: Connection closed for inactivity)
2023-12-24 13:46:31 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 260 seconds)
2023-12-24 13:47:58 +0100euleritian(~euleritia@dynamic-046-114-227-135.46.114.pool.telefonica.de)
2023-12-24 13:48:41 +0100euleritian(~euleritia@dynamic-046-114-227-135.46.114.pool.telefonica.de) (Read error: Connection reset by peer)
2023-12-24 13:48:57 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2023-12-24 13:51:04 +0100wootehfoot(~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer)
2023-12-24 13:53:07 +0100mikess(~sam@user/mikess) (Ping timeout: 276 seconds)
2023-12-24 13:56:30 +0100Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2023-12-24 13:57:05 +0100alexherbo2(~alexherbo@56.37.22.93.rev.sfr.net)
2023-12-24 14:05:04 +0100igemnace(~ian@user/igemnace)
2023-12-24 14:05:33 +0100TMRWFRVR(~TMRWFRVR@s01068c763f5800b1.vc.shawcable.net)
2023-12-24 14:17:31 +0100igemnace(~ian@user/igemnace) (Remote host closed the connection)
2023-12-24 14:19:18 +0100wootehfoot(~wootehfoo@user/wootehfoot)
2023-12-24 14:21:11 +0100TMRWFRVR(~TMRWFRVR@s01068c763f5800b1.vc.shawcable.net) (Ping timeout: 245 seconds)
2023-12-24 14:32:10 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 256 seconds)
2023-12-24 14:32:53 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2023-12-24 14:44:05 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 240 seconds)
2023-12-24 14:44:56 +0100euleritian(~euleritia@dynamic-046-114-227-135.46.114.pool.telefonica.de)
2023-12-24 14:48:06 +0100TMRWFRVR(~TMRWFRVR@S01068c763f5800b1.vc.shawcable.net)
2023-12-24 14:52:57 +0100wootehfoot(~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer)
2023-12-24 14:55:31 +0100elkcl(~elkcl@broadband-95-84-226-240.ip.moscow.rt.ru) (Ping timeout: 276 seconds)
2023-12-24 14:56:02 +0100euleritian(~euleritia@dynamic-046-114-227-135.46.114.pool.telefonica.de) (Ping timeout: 252 seconds)
2023-12-24 14:57:07 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2023-12-24 15:00:59 +0100alexherbo2(~alexherbo@56.37.22.93.rev.sfr.net) (Remote host closed the connection)
2023-12-24 15:01:57 +0100alexherbo2(~alexherbo@2a02-8440-3340-bd90-7d49-a321-1654-ce35.rev.sfr.net)
2023-12-24 15:05:18 +0100elkcl(~elkcl@broadband-95-84-226-240.ip.moscow.rt.ru)
2023-12-24 15:09:49 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 276 seconds)
2023-12-24 15:10:21 +0100waldo(~waldo@user/waldo) (Ping timeout: 252 seconds)
2023-12-24 15:10:58 +0100euleritian(~euleritia@dynamic-046-114-181-240.46.114.pool.telefonica.de)
2023-12-24 15:11:17 +0100szkl(uid110435@id-110435.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
2023-12-24 15:17:58 +0100jle`(~jle`@2603-8001-3b02-84d4-f978-47bf-a33f-1cc7.res6.spectrum.com) (Quit: WeeChat 3.8)
2023-12-24 15:19:58 +0100waldo(~waldo@user/waldo)
2023-12-24 15:32:22 +0100Guestuwu(~Guestuwu@dy67qf31pwk5bl4h8yyby-4.rev.dnainternet.fi) (Quit: Client closed)
2023-12-24 15:35:57 +0100euleritian(~euleritia@dynamic-046-114-181-240.46.114.pool.telefonica.de) (Read error: Connection reset by peer)
2023-12-24 15:36:15 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2023-12-24 15:38:33 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Read error: Connection reset by peer)
2023-12-24 15:38:56 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2023-12-24 15:40:53 +0100euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Read error: Connection reset by peer)
2023-12-24 15:41:10 +0100euleritian(~euleritia@dynamic-046-114-181-240.46.114.pool.telefonica.de)
2023-12-24 15:41:37 +0100son0p(~ff@181.136.122.143) (Ping timeout: 246 seconds)
2023-12-24 15:44:07 +0100azimut(~azimut@gateway/tor-sasl/azimut) (Ping timeout: 240 seconds)
2023-12-24 15:44:07 +0100adanwan(~adanwan@gateway/tor-sasl/adanwan) (Ping timeout: 240 seconds)
2023-12-24 15:44:07 +0100azimut_(~azimut@gateway/tor-sasl/azimut)
2023-12-24 15:44:32 +0100adanwan(~adanwan@gateway/tor-sasl/adanwan)
2023-12-24 15:44:55 +0100FinnElija(~finn_elij@user/finn-elija/x-0085643) (Ping timeout: 240 seconds)
2023-12-24 15:45:43 +0100pastly(~pastly@gateway/tor-sasl/pastly) (Ping timeout: 240 seconds)
2023-12-24 15:46:07 +0100chiselfuse(~chiselfus@user/chiselfuse) (Ping timeout: 240 seconds)
2023-12-24 15:46:48 +0100chiselfuse(~chiselfus@user/chiselfuse)
2023-12-24 15:47:46 +0100FinnElija(~finn_elij@user/finn-elija/x-0085643)
2023-12-24 15:50:50 +0100azimut_(~azimut@gateway/tor-sasl/azimut) (Remote host closed the connection)
2023-12-24 15:51:14 +0100azimut(~azimut@gateway/tor-sasl/azimut)
2023-12-24 15:51:22 +0100pastly(~pastly@gateway/tor-sasl/pastly)
2023-12-24 15:51:26 +0100Xyloes(~wyx@2400:dd01:103a:1012:d681:d7ff:fedb:298d) (Remote host closed the connection)
2023-12-24 15:52:50 +0100pastly(~pastly@gateway/tor-sasl/pastly) (Remote host closed the connection)
2023-12-24 15:53:17 +0100pastly(~pastly@gateway/tor-sasl/pastly)
2023-12-24 15:56:10 +0100pastly(~pastly@gateway/tor-sasl/pastly) (Remote host closed the connection)
2023-12-24 15:56:39 +0100pastly(~pastly@gateway/tor-sasl/pastly)
2023-12-24 15:59:26 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920) (Ping timeout: 256 seconds)
2023-12-24 16:00:21 +0100adanwan(~adanwan@gateway/tor-sasl/adanwan) (Remote host closed the connection)
2023-12-24 16:03:43 +0100pastly(~pastly@gateway/tor-sasl/pastly) (Ping timeout: 240 seconds)
2023-12-24 16:04:30 +0100pastly(~pastly@gateway/tor-sasl/pastly)
2023-12-24 16:11:57 +0100waldo(~waldo@user/waldo) (Ping timeout: 252 seconds)
2023-12-24 16:13:04 +0100waldo(~waldo@user/waldo)
2023-12-24 16:15:07 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net)
2023-12-24 16:17:22 +0100waldo(~waldo@user/waldo) (Ping timeout: 260 seconds)
2023-12-24 16:20:40 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net) (Ping timeout: 276 seconds)
2023-12-24 16:26:28 +0100ChaiTRex(~ChaiTRex@user/chaitrex) (Remote host closed the connection)
2023-12-24 16:26:57 +0100ChaiTRex(~ChaiTRex@user/chaitrex)
2023-12-24 16:27:50 +0100TMRWFRVR(~TMRWFRVR@S01068c763f5800b1.vc.shawcable.net) (Ping timeout: 268 seconds)
2023-12-24 16:29:37 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920)
2023-12-24 16:31:36 +0100adanwan(~adanwan@gateway/tor-sasl/adanwan)
2023-12-24 16:39:35 +0100azimut(~azimut@gateway/tor-sasl/azimut) (Remote host closed the connection)
2023-12-24 16:39:59 +0100azimut(~azimut@gateway/tor-sasl/azimut)
2023-12-24 17:00:55 +0100adanwan(~adanwan@gateway/tor-sasl/adanwan) (Ping timeout: 240 seconds)
2023-12-24 17:02:20 +0100TonyStone(~TonyStone@074-076-057-186.res.spectrum.com) (Quit: Leaving)
2023-12-24 17:02:20 +0100alexherbo2(~alexherbo@2a02-8440-3340-bd90-7d49-a321-1654-ce35.rev.sfr.net) (Remote host closed the connection)
2023-12-24 17:02:34 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920) (Ping timeout: 255 seconds)
2023-12-24 17:04:13 +0100adanwan(~adanwan@gateway/tor-sasl/adanwan)
2023-12-24 17:04:23 +0100Chai-T-Rex(~ChaiTRex@user/chaitrex)
2023-12-24 17:04:55 +0100ChaiTRex(~ChaiTRex@user/chaitrex) (Ping timeout: 240 seconds)
2023-12-24 17:04:55 +0100pastly(~pastly@gateway/tor-sasl/pastly) (Ping timeout: 240 seconds)
2023-12-24 17:05:36 +0100pastly(~pastly@gateway/tor-sasl/pastly)
2023-12-24 17:08:33 +0100rekahsoft(~rekahsoft@bras-base-orllon1122w-grc-34-67-70-201-226.dsl.bell.ca)
2023-12-24 17:09:18 +0100tri(~tri@ool-18bc2e74.dyn.optonline.net)
2023-12-24 17:10:16 +0100rekahsoft(~rekahsoft@bras-base-orllon1122w-grc-34-67-70-201-226.dsl.bell.ca) (Remote host closed the connection)
2023-12-24 17:11:37 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-12-24 17:13:46 +0100tri(~tri@ool-18bc2e74.dyn.optonline.net) (Remote host closed the connection)
2023-12-24 17:15:29 +0100rekahsoft(~rekahsoft@bras-base-orllon1122w-grc-34-67-70-201-226.dsl.bell.ca)
2023-12-24 17:16:52 +0100igemnace(~ian@user/igemnace)
2023-12-24 17:18:20 +0100sawilagar(~sawilagar@user/sawilagar)
2023-12-24 17:19:31 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se) (Ping timeout: 245 seconds)
2023-12-24 17:20:41 +0100waldo(~waldo@user/waldo)
2023-12-24 17:22:17 +0100TMRWFRVR(~TMRWFRVR@S01068c763f5800b1.vc.shawcable.net)
2023-12-24 17:22:38 +0100qqq(~qqq@92.43.167.61) (Remote host closed the connection)
2023-12-24 17:22:50 +0100bitdex(~bitdex@gateway/tor-sasl/bitdex) (Quit: = "")
2023-12-24 17:25:45 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920)
2023-12-24 17:26:20 +0100alexherbo2(~alexherbo@2a02-8440-3340-bd90-7d49-a321-1654-ce35.rev.sfr.net)
2023-12-24 17:28:41 +0100waldo(~waldo@user/waldo) (Ping timeout: 245 seconds)
2023-12-24 17:34:26 +0100TMRWFRVR(~TMRWFRVR@S01068c763f5800b1.vc.shawcable.net) (Ping timeout: 252 seconds)
2023-12-24 17:42:34 +0100rekahsoft(~rekahsoft@bras-base-orllon1122w-grc-34-67-70-201-226.dsl.bell.ca) (Ping timeout: 276 seconds)
2023-12-24 17:50:15 +0100son0p(~ff@181.136.122.143)
2023-12-24 17:50:42 +0100euleritian(~euleritia@dynamic-046-114-181-240.46.114.pool.telefonica.de) (Read error: Connection reset by peer)
2023-12-24 17:50:54 +0100euleritian(~euleritia@p200300d40f2c2a0088d134f864909032.dip0.t-ipconnect.de)
2023-12-24 17:57:22 +0100[itchyjunk](~itchyjunk@user/itchyjunk/x-7353470)
2023-12-24 17:57:54 +0100gdown(~gavin@h69-11-149-109.kndrid.broadband.dynamic.tds.net)
2023-12-24 18:00:46 +0100[_](~itchyjunk@user/itchyjunk/x-7353470) (Ping timeout: 245 seconds)
2023-12-24 18:00:50 +0100chomwitt(~chomwitt@2a02:587:7a09:c300:1ac0:4dff:fedb:a3f1)
2023-12-24 18:03:27 +0100L29Ah(~L29Ah@wikipedia/L29Ah)
2023-12-24 18:09:57 +0100econo_(uid147250@id-147250.tinside.irccloud.com)
2023-12-24 18:17:16 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920) (Ping timeout: 255 seconds)
2023-12-24 18:40:24 +0100waldo(~waldo@user/waldo)
2023-12-24 18:47:32 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se)
2023-12-24 18:55:16 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2023-12-24 18:56:13 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920)
2023-12-24 18:58:55 +0100Me-me(~me-me@user/me-me) (Remote host closed the connection)
2023-12-24 19:01:20 +0100elkcl(~elkcl@broadband-95-84-226-240.ip.moscow.rt.ru) (Ping timeout: 256 seconds)
2023-12-24 19:01:33 +0100Me-me(~me-me@2602:ff16:3:0:1:dc:beef:d00d)
2023-12-24 19:04:37 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920) (Ping timeout: 246 seconds)
2023-12-24 19:09:46 +0100elkcl(~elkcl@broadband-95-84-226-240.ip.moscow.rt.ru)
2023-12-24 19:09:50 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se) (Ping timeout: 256 seconds)
2023-12-24 19:11:17 +0100waldo(~waldo@user/waldo) (Ping timeout: 240 seconds)
2023-12-24 19:12:35 +0100waldo(~waldo@user/waldo)
2023-12-24 19:17:01 +0100waldo(~waldo@user/waldo) (Ping timeout: 245 seconds)
2023-12-24 19:19:24 +0100L29Ah(~L29Ah@wikipedia/L29Ah) ()
2023-12-24 19:23:35 +0100waldo(~waldo@user/waldo)
2023-12-24 19:23:41 +0100ft(~ft@mue-88-130-104-085.dsl.tropolys.de)
2023-12-24 19:30:06 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-12-24 19:31:45 +0100myclm_(~myclm_@2a02:810d:8200:1628::8920)
2023-12-24 19:33:12 +0100machinedgod(~machinedg@d198-53-218-113.abhsia.telus.net)
2023-12-24 19:39:31 +0100L29Ah(~L29Ah@wikipedia/L29Ah)
2023-12-24 19:45:00 +0100mikess(~sam@user/mikess)
2023-12-24 19:51:57 +0100dsrt^(~cd@c-98-242-74-66.hsd1.ga.comcast.net) (Ping timeout: 252 seconds)
2023-12-24 19:52:40 +0100notzmv(~zmv@user/notzmv) (Ping timeout: 255 seconds)
2023-12-24 19:56:27 +0100trev(~trev@user/trev) (Quit: trev)
2023-12-24 20:08:55 +0100azimut(~azimut@gateway/tor-sasl/azimut) (Ping timeout: 240 seconds)
2023-12-24 20:16:40 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net)
2023-12-24 20:21:39 +0100nate4(~nate@c-98-45-158-125.hsd1.ca.comcast.net) (Ping timeout: 252 seconds)
2023-12-24 20:31:15 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2023-12-24 20:31:47 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-12-24 20:39:31 +0100notzmv(~zmv@user/notzmv)
2023-12-24 20:43:08 +0100euleritian(~euleritia@p200300d40f2c2a0088d134f864909032.dip0.t-ipconnect.de) (Ping timeout: 268 seconds)
2023-12-24 20:45:25 +0100euleritian(~euleritia@p200300d40f2c2a005c1eff70d91800bb.dip0.t-ipconnect.de)
2023-12-24 20:48:06 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2023-12-24 20:57:40 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-12-24 20:59:40 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:58c1:2533:b464:a7) (Remote host closed the connection)
2023-12-24 20:59:55 +0100eggplantade(~Eggplanta@2600:1700:38c5:d800:58c1:2533:b464:a7)
2023-12-24 21:03:46 +0100tzh(~tzh@c-71-193-181-0.hsd1.or.comcast.net)
2023-12-24 21:10:26 +0100peterbecich(~Thunderbi@047-229-123-186.res.spectrum.com)
2023-12-24 21:13:49 +0100alexherbo2(~alexherbo@2a02-8440-3340-bd90-7d49-a321-1654-ce35.rev.sfr.net) (Remote host closed the connection)
2023-12-24 21:14:57 +0100Lycurgus(~georg@user/Lycurgus) (Quit: leaving)
2023-12-24 21:18:54 +0100szkl(uid110435@id-110435.uxbridge.irccloud.com)
2023-12-24 21:36:51 +0100waldo(~waldo@user/waldo) (Quit: waldo)
2023-12-24 21:44:35 +0100zeka(~zeka@2600:1700:2121:180:b0f4:ebbe:6b0b:46b1) (Remote host closed the connection)
2023-12-24 21:46:36 +0100zeka(~zeka@2600:1700:2121:180:3560:92ba:5300:c7ab)
2023-12-24 21:52:56 +0100peterbecich(~Thunderbi@047-229-123-186.res.spectrum.com) (Ping timeout: 252 seconds)
2023-12-24 21:59:54 +0100gdown(~gavin@h69-11-149-109.kndrid.broadband.dynamic.tds.net) (Ping timeout: 268 seconds)
2023-12-24 22:02:29 +0100araujo(~araujo@216.73.163.190)
2023-12-24 22:04:42 +0100peterbecich(~Thunderbi@047-229-123-186.res.spectrum.com)
2023-12-24 22:26:07 +0100euleritian(~euleritia@p200300d40f2c2a005c1eff70d91800bb.dip0.t-ipconnect.de) (Ping timeout: 268 seconds)
2023-12-24 22:27:43 +0100coot(~coot@89-69-206-216.dynamic.chello.pl) (Quit: coot)
2023-12-24 22:47:23 +0100araujo(~araujo@216.73.163.190) (Ping timeout: 256 seconds)
2023-12-24 22:48:04 +0100dsrt^(~cd@c-98-242-74-66.hsd1.ga.comcast.net)
2023-12-24 22:52:45 +0100Sgeo(~Sgeo@user/sgeo)
2023-12-24 22:54:02 +0100micro(~micro@user/micro) (Ping timeout: 260 seconds)
2023-12-24 22:57:14 +0100micro(~micro@user/micro)
2023-12-24 23:20:23 +0100notzmv(~zmv@user/notzmv) (Ping timeout: 256 seconds)
2023-12-24 23:24:21 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2023-12-24 23:26:52 +0100waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se)
2023-12-24 23:32:41 +0100_ht(~Thunderbi@28-52-174-82.ftth.glasoperator.nl) (Quit: _ht)
2023-12-24 23:40:07 +0100xdminsy(~xdminsy@117.147.71.169)
2023-12-24 23:40:46 +0100oxide(~lambda@user/oxide) (Ping timeout: 246 seconds)
2023-12-24 23:53:55 +0100takuan(~takuan@178-116-218-225.access.telenet.be) (Remote host closed the connection)