2023/06/23

2023-06-23 00:16:19 +0000jargon(~jargon@32.sub-174-205-224.myvzw.com)
2023-06-23 00:20:26 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex)
2023-06-23 00:21:59 +0000Tuplanolla(~Tuplanoll@91-159-68-236.elisa-laajakaista.fi) (Quit: Leaving.)
2023-06-23 00:29:37 +0000 <probie> Not that anyone uses backpack, but can a sig expose a typeclass?
2023-06-23 00:29:47 +0000bontaq(~user@ool-45779b84.dyn.optonline.net) (Ping timeout: 245 seconds)
2023-06-23 00:32:18 +0000Nokurn(~jeremiah@cpe-76-86-186-227.socal.res.rr.com)
2023-06-23 00:34:09 +0000 <probie> like, let's say I want to write a library which uses comonads, but didn't want to depend on the comonad package. Is there a way I can (ab)use backpack to allow my library to optionally use the typeclass from the comonad package
2023-06-23 00:35:02 +0000machinedgod(~machinedg@d198-53-218-113.abhsia.telus.net) (Ping timeout: 250 seconds)
2023-06-23 00:36:56 +0000Unicorn_Princess(~Unicorn_P@user/Unicorn-Princess/x-3540542) (Quit: Leaving)
2023-06-23 00:42:05 +0000machinedgod(~machinedg@node-1w7jr9yirp0ap2d6xfacos1ph.ipv6.telus.net)
2023-06-23 00:49:32 +0000robbert-vdh(~robbert@robbertvanderhelm.nl) (Server closed connection)
2023-06-23 00:49:57 +0000robbert-vdh(~robbert@robbertvanderhelm.nl)
2023-06-23 00:53:38 +0000falafel(~falafel@2607:fb91:86c:d890:1d91:5101:9269:b131)
2023-06-23 00:56:13 +0000chromoblob(~user@37.113.180.121)
2023-06-23 00:59:22 +0000jmdaemon(~jmdaemon@user/jmdaemon) (Ping timeout: 245 seconds)
2023-06-23 01:00:05 +0000foul_owl(~kerry@71.212.137.212) (Ping timeout: 246 seconds)
2023-06-23 01:09:08 +0000zeenk(~zeenk@2a02:2f04:a203:a700::7fe) (Quit: Konversation terminated!)
2023-06-23 01:12:51 +0000wroathe(~wroathe@207-153-38-140.fttp.usinternet.com)
2023-06-23 01:12:51 +0000wroathe(~wroathe@207-153-38-140.fttp.usinternet.com) (Changing host)
2023-06-23 01:12:51 +0000wroathe(~wroathe@user/wroathe)
2023-06-23 01:13:22 +0000albet70(~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection)
2023-06-23 01:14:03 +0000foul_owl(~kerry@94.140.8.28)
2023-06-23 01:14:55 +0000ijqq(uid603979@2a03:5180:f:1::9:374b)
2023-06-23 01:17:19 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176)
2023-06-23 01:17:46 +0000 <ijqq> i have four hex digits representing unicode values, how can I write a function f :: String -> String. So I want f "00a0" to become "\x00a0" in haskell, and show a space when printed with putChar
2023-06-23 01:17:49 +0000 <ijqq> putString*
2023-06-23 01:19:29 +0000albet70(~xxx@2400:8902::f03c:92ff:fe60:98d8)
2023-06-23 01:19:45 +0000 <geekosaur> :t Numeric.readHex
2023-06-23 01:19:46 +0000 <lambdabot> (Eq a, Num a) => ReadS a
2023-06-23 01:21:21 +0000merijn(~merijn@86-86-29-250.fixed.kpn.net)
2023-06-23 01:21:48 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Ping timeout: 246 seconds)
2023-06-23 01:23:10 +0000 <geekosaur> > Data.Char.chr . fst . head . Numeric.readHex $ "00a0" -- assumes it always parses
2023-06-23 01:23:12 +0000 <lambdabot> '\160'
2023-06-23 01:23:34 +0000 <ijqq> ohh i get it
2023-06-23 01:23:39 +0000 <ijqq> idk why i completely forgot about chr
2023-06-23 01:24:14 +0000 <ijqq> thanks!
2023-06-23 01:24:47 +0000 <geekosaur> toEnum also works with a type ascription
2023-06-23 01:24:56 +0000srz(~srz@181.84.181.59)
2023-06-23 01:25:44 +0000merijn(~merijn@86-86-29-250.fixed.kpn.net) (Ping timeout: 250 seconds)
2023-06-23 01:25:55 +0000 <ijqq> To convert a Char to or from the corresponding Int value defined by Unicode, use toEnum and fromEnum from the Enum class respectively (or equivalently ord and chr). So i should just use chr because I don't need to give type?
2023-06-23 01:26:14 +0000ormaaaj(~ormaaj@user/ormaaj) (Remote host closed the connection)
2023-06-23 01:26:32 +0000 <geekosaur> it's also clearer what you're doing; toEnum could mean lots of things
2023-06-23 01:27:25 +0000 <geekosaur> (code should be written for people to understand)
2023-06-23 01:28:15 +0000ormaaaj(~ormaaj@user/ormaaj)
2023-06-23 01:28:49 +0000 <ijqq> oh yep, that's a good point too
2023-06-23 01:29:07 +0000 <ijqq> i guess better to use the more specific method when choosing between
2023-06-23 01:29:39 +0000 <ijqq> although maybe not as it seems haskell lots is about making things as general as possible
2023-06-23 01:30:09 +0000 <geekosaur> that can be overdone, at the price of performance (or compile time)
2023-06-23 01:32:29 +0000 <geekosaur> one of the things you will develop with experience is a feel for when to generalize and when not to
2023-06-23 01:34:15 +0000 <ijqq> yep i hope over time to improve and develop intuition for these kinds of things
2023-06-23 01:34:24 +0000 <geekosaur> although it can be good to generalize early on just to become more comfortable with it
2023-06-23 01:37:33 +0000codaraxis(~codaraxis@user/codaraxis) (Ping timeout: 246 seconds)
2023-06-23 01:42:06 +0000falafel(~falafel@2607:fb91:86c:d890:1d91:5101:9269:b131) (Remote host closed the connection)
2023-06-23 01:57:42 +0000xff0x_(~xff0x@2405:6580:b080:900:455d:adce:c30:5eea) (Ping timeout: 245 seconds)
2023-06-23 02:03:09 +0000meinside(uid24933@id-24933.helmsley.irccloud.com) (Quit: Connection closed for inactivity)
2023-06-23 02:06:19 +0000jargon(~jargon@32.sub-174-205-224.myvzw.com) (Remote host closed the connection)
2023-06-23 02:07:38 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176)
2023-06-23 02:08:32 +0000ft(~ft@p4fc2afc9.dip0.t-ipconnect.de) (Ping timeout: 245 seconds)
2023-06-23 02:10:29 +0000ft(~ft@p508db151.dip0.t-ipconnect.de)
2023-06-23 02:15:25 +0000nate2(~nate@c-98-45-169-16.hsd1.ca.comcast.net)
2023-06-23 02:19:28 +0000finn_elija(~finn_elij@user/finn-elija/x-0085643)
2023-06-23 02:19:28 +0000FinnElija(~finn_elij@user/finn-elija/x-0085643) (Killed (NickServ (Forcing logout FinnElija -> finn_elija)))
2023-06-23 02:19:28 +0000finn_elijaFinnElija
2023-06-23 02:24:22 +0000machinedgod(~machinedg@node-1w7jr9yirp0ap2d6xfacos1ph.ipv6.telus.net) (Ping timeout: 245 seconds)
2023-06-23 02:25:36 +0000gentauro(~gentauro@user/gentauro) (Read error: Connection reset by peer)
2023-06-23 02:26:13 +0000 <EvanR> :t chr
2023-06-23 02:26:14 +0000 <lambdabot> Int -> Char
2023-06-23 02:28:07 +0000 <EvanR> ijqq, chr and ord are great functions to introduce new people to because you don't have to explain polymorphism or typeclassing
2023-06-23 02:28:41 +0000srz(~srz@181.84.181.59) (Quit: Leaving)
2023-06-23 02:28:50 +0000 <EvanR> the types involved are even familiar C language types!
2023-06-23 02:29:23 +0000jargon(~jargon@32.sub-174-205-224.myvzw.com)
2023-06-23 02:29:34 +0000 <monochrom> No love for explaining the type of (+) :(
2023-06-23 02:29:53 +0000 <monochrom> And length is even worse :(
2023-06-23 02:30:44 +0000 <EvanR> oh yeah and you don't have to explain wtf 3 things separated with -> means
2023-06-23 02:31:25 +0000gentauro(~gentauro@user/gentauro)
2023-06-23 02:31:52 +0000 <EvanR> even math people who write A x B -> C think we're nuts
2023-06-23 02:33:07 +0000td_(~td@i53870903.versanet.de) (Ping timeout: 245 seconds)
2023-06-23 02:35:02 +0000td_(~td@i53870905.versanet.de)
2023-06-23 02:35:12 +0000 <ijqq> haha, i remember when i started i was confused what are the parameters and what is the return when there were all just arrows
2023-06-23 02:35:21 +0000codaraxis(~codaraxis@user/codaraxis)
2023-06-23 02:35:23 +0000 <monochrom> We are already nuts for saying "f is a function" not "f(x) is a function".
2023-06-23 02:35:48 +0000mud(~mud@user/kadoban) (Ping timeout: 252 seconds)
2023-06-23 02:37:20 +0000 <monochrom> and using types to infer "f(x) :: Integer" therefore "f(x) is an integer not a function".
2023-06-23 02:41:06 +0000xff0x_(~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp)
2023-06-23 02:41:29 +0000terrorjack(~terrorjac@2a01:4f8:c17:87f8::) (Quit: The Lounge - https://thelounge.chat)
2023-06-23 02:42:52 +0000terrorjack(~terrorjac@2a01:4f8:c17:87f8::)
2023-06-23 02:43:22 +0000 <monochrom> and defining "data Turing = Turing{alphabet :: [Char], transition :: Char -> S -> (Char, S, Dir), ...}" instead of "a Turing machine is a 10-tuple (alpha, beta, gamma, ...)"
2023-06-23 02:44:16 +0000 <monochrom> Yes I'm beginning to be sarcastic and pointing out all the about-time sane things we do that inspire insane people to call us nuts.
2023-06-23 02:45:33 +0000 <ijqq> :^)
2023-06-23 02:47:55 +0000Lycurgus(~juan@user/Lycurgus)
2023-06-23 02:48:49 +0000 <Lycurgus> indeed if you have come to the point where you believe your programming lang has superior expressivity to natural language, you've become unmoored, a fanatic
2023-06-23 02:50:38 +0000 <monochrom> You mean like this? https://www.smbc-comics.com/comic/language
2023-06-23 02:50:53 +0000 <Lycurgus> or that haskell === mathematics
2023-06-23 02:51:32 +0000wroathe(~wroathe@user/wroathe) (Ping timeout: 250 seconds)
2023-06-23 02:51:39 +0000 <monochrom> "10-tuple (alpha, beta, gamma, ...)" is unnatural language
2023-06-23 02:52:08 +0000 <monochrom> It's almost a tautology that almost any programming language has superior expressivity to unnatural languages.
2023-06-23 02:52:52 +0000jargon(~jargon@32.sub-174-205-224.myvzw.com) (Remote host closed the connection)
2023-06-23 02:53:22 +0000 <Lycurgus> the ruining everthings on that link was a giggle
2023-06-23 02:57:31 +0000 <probie> In fairness to many of the math people who write `A x B -> C`, functions aren't "primitive" to a lot of them, they're just a special case of a relation
2023-06-23 02:57:36 +0000 <Lycurgus> also Milton vs the age of the Marvel Universe, do you really wanna make that comparison?
2023-06-23 02:58:21 +0000 <monochrom> I don't understand why Marvel Universe is brought up.
2023-06-23 02:58:33 +0000 <monochrom> I don't know what's Milton.
2023-06-23 02:59:16 +0000 <Lycurgus> a lost thing apparently
2023-06-23 02:59:36 +0000 <monochrom> I have seen natural languages used correctly in math books. When that happens, I admire it.
2023-06-23 03:00:11 +0000kritty(~crumb@c-76-155-235-153.hsd1.co.comcast.net) (Quit: Leaving)
2023-06-23 03:00:41 +0000 <monochrom> For example in Emily Riehl's category book (and probably many other category theory books), it's like "a functor consists of the following data: <2 bullet points> subject to the following conditions <2 bullet points>"
2023-06-23 03:01:20 +0000 <monochrom> No bloody pompous 10-tuples whose component order no one will actually remember and strictly follow.
2023-06-23 03:01:47 +0000 <monochrom> That's when it actually qualifies as natural language.
2023-06-23 03:02:20 +0000dipper(~dipper@203.168.26.146)
2023-06-23 03:02:27 +0000 <Lycurgus> good band name - Pompous 10-tuples
2023-06-23 03:03:06 +0000 <monochrom> To borrow your language, when one believes that formal n-tuples have superior expressivity to bullet points, one has become a fanatic.
2023-06-23 03:03:56 +0000 <Axman6> Lycurgus: for some reason that makes me think they need a logo with a smug looking octopus
2023-06-23 03:04:11 +0000 <Lycurgus> Axman6, :)
2023-06-23 03:04:36 +0000 <Lycurgus> 10-tuples : tentacles
2023-06-23 03:04:40 +0000 <Axman6> obviously 10-tuple and tentacle are basically the same
2023-06-23 03:04:43 +0000 <Axman6> :)
2023-06-23 03:08:53 +0000codaraxis(~codaraxis@user/codaraxis) (Quit: Leaving)
2023-06-23 03:09:22 +0000jero98772(~jero98772@2800:484:1d7f:5d36::4) (Remote host closed the connection)
2023-06-23 03:09:50 +0000 <monochrom> probie: Sometimes it is handy to consider functions as special relations, so I like that. But now, behold "a function is a 3-tuple (A, B, r) ..."
2023-06-23 03:10:10 +0000jargon(~jargon@32.sub-174-205-224.myvzw.com)
2023-06-23 03:10:37 +0000 <monochrom> But wait! There is more. Tuples are not primitive either. A 2-tuple is a set {{x}, {x,y}} or some such, I forgot the exact construction.
2023-06-23 03:11:10 +0000 <monochrom> Now what do we say about people who believe that sets have superior expressivity to types? :)
2023-06-23 03:12:18 +0000 <ijqq> In haskell I see people use the function go. Is it idiomatic to use it as a name when it's doing some kind of recusion, or is it just a name of a general helper function even when it doesn't 'go' anywhere?
2023-06-23 03:13:20 +0000 <Nosrep> not sure about general consensus but it sounds very recursy to me
2023-06-23 03:13:58 +0000 <monochrom> How about merging those two options into: general helper recursive function when we can't be bothered to brainstorm for a better name.
2023-06-23 03:14:10 +0000 <Nosrep> recursion is like the main use case anyway because otherwise you'd have a good name for it/wouldn't need to create a helper to give it starting arguments or something
2023-06-23 03:15:02 +0000jargon(~jargon@32.sub-174-205-224.myvzw.com) (Remote host closed the connection)
2023-06-23 03:16:50 +0000 <Lycurgus> ijqq, it is idiomatic English, not haskell
2023-06-23 03:18:19 +0000 <ijqq> so would you suggest not to use it?
2023-06-23 03:18:27 +0000 <Lycurgus> to do a thing go (steps)
2023-06-23 03:18:28 +0000 <ijqq> oh i found an interesting answer here https://stackoverflow.com/questions/5844653/haskell-why-the-convention-to-name-a-helper-function-go
2023-06-23 03:18:41 +0000nate2(~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 246 seconds)
2023-06-23 03:18:50 +0000 <monochrom> I suggest using it in anger and giving a finger to people who scaremonger against it.
2023-06-23 03:18:50 +0000 <ijqq> "So I'm going to call this as a Glasgow idiom invented by people at Glasgow who worked on GHC in the mid 90s, such as Simon Marlow, Sigbjorn Finne, Will Partain and Simon Peyton Jones."
2023-06-23 03:19:28 +0000 <ijqq> hehe, sounds like a good plan
2023-06-23 03:19:36 +0000aforemny_(~aforemny@i59F516C0.versanet.de)
2023-06-23 03:19:46 +0000mei(~mei@user/mei) (Remote host closed the connection)
2023-06-23 03:20:06 +0000Lycurgusgoes back to binging titanic movies
2023-06-23 03:20:18 +0000Lycurgus(~juan@user/Lycurgus) (Quit: Exeunt: personae.ai-integration.biz)
2023-06-23 03:20:20 +0000aforemny(~aforemny@2001:9e8:6cc2:a900:fbea:dfb3:5fb7:629) (Ping timeout: 240 seconds)
2023-06-23 03:20:29 +0000 <ijqq> how did you do that?
2023-06-23 03:20:47 +0000 <monochrom> how... many are there such that you can say "binge"?
2023-06-23 03:21:00 +0000 <ijqq> the goes back to binging titanic movies is shown on my screen differently in italic text
2023-06-23 03:21:14 +0000 <monochrom> Oh, probably the /me command
2023-06-23 03:21:52 +0000ijqqsays hello
2023-06-23 03:21:57 +0000 <ijqq> oh cool
2023-06-23 03:22:00 +0000 <monochrom> For example the following is the result of: /me calls himself
2023-06-23 03:22:04 +0000monochromcalls himself
2023-06-23 03:22:11 +0000mei(~mei@user/mei)
2023-06-23 03:22:32 +0000 <monochrom> since we're on recursion and calling self :)
2023-06-23 03:22:42 +0000jargon(~jargon@32.sub-174-205-224.myvzw.com)
2023-06-23 03:22:47 +0000 <ijqq> :)
2023-06-23 03:23:44 +0000 <monochrom> speaking of which, I gave this cool assignment lately: http://www.cs.utoronto.ca/~trebla/CSCC24-2023-Summer/a2/cscc24-2023-5-a2.pdf
2023-06-23 03:23:53 +0000jonrh_(sid5185@id-5185.ilkley.irccloud.com) (Server closed connection)
2023-06-23 03:24:29 +0000jonrh_(sid5185@2a03:5180:f:3::1441)
2023-06-23 03:25:58 +0000 <ijqq> oh cool, I didn't know you teach
2023-06-23 03:26:38 +0000 <ijqq> looks interesting, I have bookmarked it and i'll try to give it a go after my toml parser
2023-06-23 03:32:45 +0000simpleauthority(~simpleaut@user/simpleauthority) (Ping timeout: 240 seconds)
2023-06-23 03:33:11 +0000jargon(~jargon@32.sub-174-205-224.myvzw.com) (Remote host closed the connection)
2023-06-23 03:33:37 +0000simpleauthority(~simpleaut@user/simpleauthority)
2023-06-23 03:33:59 +0000Lycurgus(~juan@user/Lycurgus)
2023-06-23 03:34:43 +0000 <Lycurgus> see from the SO thread it is a hs idiom, and smacks of goto
2023-06-23 03:35:21 +0000 <Lycurgus> there have sofar been at least 3 big titanic movies
2023-06-23 03:35:51 +0000Lycurgus(~juan@user/Lycurgus) (Client Quit)
2023-06-23 03:35:54 +0000[itchyjunk](~itchyjunk@user/itchyjunk/x-7353470) (Read error: Connection reset by peer)
2023-06-23 03:38:03 +0000 <Nosrep> 0 big titan movies
2023-06-23 03:38:06 +0000 <ijqq> i only know the leo one, which i have yet to watch actually
2023-06-23 03:38:14 +0000 <ijqq> are they good?
2023-06-23 03:42:08 +0000ec(~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds)
2023-06-23 03:42:37 +0000ec(~ec@gateway/tor-sasl/ec)
2023-06-23 04:01:26 +0000ec(~ec@gateway/tor-sasl/ec) (Remote host closed the connection)
2023-06-23 04:01:55 +0000aweinstock(~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com) (*.net *.split)
2023-06-23 04:01:55 +0000pat__(~pat67@pool-100-36-172-241.washdc.fios.verizon.net) (*.net *.split)
2023-06-23 04:01:55 +0000mxs(~mxs@user/mxs) (*.net *.split)
2023-06-23 04:01:55 +0000kawzeg(kawzeg@2a01:7e01::f03c:92ff:fee2:ec34) (*.net *.split)
2023-06-23 04:01:55 +0000theodorc(theodorc@cassarossa.samfundet.no) (*.net *.split)
2023-06-23 04:01:55 +0000dtman34(~dtman34@c-76-156-89-180.hsd1.mn.comcast.net) (*.net *.split)
2023-06-23 04:01:55 +0000mtjm(~mutantmel@2604:a880:2:d0::208b:d001) (*.net *.split)
2023-06-23 04:01:55 +0000fiddlerwoaroof_(~fiddlerwo@user/fiddlerwoaroof) (*.net *.split)
2023-06-23 04:01:55 +0000beaky(~beaky@2a03:b0c0:0:1010::1e:a001) (*.net *.split)
2023-06-23 04:01:55 +0000NinjaTrappeur(~ninja@user/ninjatrappeur) (*.net *.split)
2023-06-23 04:01:55 +0000[exa](~exa@user/exa/x-3587197) (*.net *.split)
2023-06-23 04:01:55 +0000noctux(~noctux@user/noctux) (*.net *.split)
2023-06-23 04:01:55 +0000wz1000(~zubin@static.11.113.47.78.clients.your-server.de) (*.net *.split)
2023-06-23 04:01:55 +0000absence(torgeihe@hildring.pvv.ntnu.no) (*.net *.split)
2023-06-23 04:01:55 +0000jsomedon(uid606872@id-606872.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000Jon(jon@dow.land) (*.net *.split)
2023-06-23 04:01:55 +0000YuutaW(~YuutaW@mail.yuuta.moe) (*.net *.split)
2023-06-23 04:01:55 +0000buhman_(sid411355@id-411355.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000jmct(sid160793@id-160793.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000lally(sid388228@id-388228.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000hamishmack(sid389057@id-389057.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000cyphase(~cyphase@user/cyphase) (*.net *.split)
2023-06-23 04:01:55 +0000bjobjo(~bjobjo@user/bjobjo) (*.net *.split)
2023-06-23 04:01:55 +0000nshepperd2(nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split)
2023-06-23 04:01:55 +0000agander_m(sid407952@id-407952.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000T_S__(sid501726@id-501726.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000rubin55(sid175221@id-175221.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000tabemann(~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56) (*.net *.split)
2023-06-23 04:01:55 +0000ell(~ellie@user/ellie) (*.net *.split)
2023-06-23 04:01:55 +0000taktoa[c](sid282096@id-282096.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split)
2023-06-23 04:01:55 +0000aristid(sid1599@id-1599.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:01:55 +0000tcard(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split)
2023-06-23 04:01:55 +0000zzz(~z@user/zero) (*.net *.split)
2023-06-23 04:01:55 +0000caubert(~caubert@user/caubert) (*.net *.split)
2023-06-23 04:01:55 +0000polux(~polux@51-15-169-172.rev.poneytelecom.eu) (*.net *.split)
2023-06-23 04:01:55 +0000m5zs7k(aquares@web10.mydevil.net) (*.net *.split)
2023-06-23 04:01:55 +0000samhh(7569f027cf@2604:bf00:561:2000::e4) (*.net *.split)
2023-06-23 04:01:55 +0000whereiseveryone(206ba86c98@2604:bf00:561:2000::2e4) (*.net *.split)
2023-06-23 04:01:55 +0000ggb(a62ffbaf4f@2604:bf00:561:2000::3ac) (*.net *.split)
2023-06-23 04:01:55 +0000RMSBach(~guygastin@137.184.131.156) (*.net *.split)
2023-06-23 04:01:55 +0000fvr(ef3e56ca8b@2604:bf00:561:2000::3c4) (*.net *.split)
2023-06-23 04:01:55 +0000evanrelf(3addc196af@2604:bf00:561:2000::f0) (*.net *.split)
2023-06-23 04:01:55 +0000shreyasminocha(51fdc93eda@user/shreyasminocha) (*.net *.split)
2023-06-23 04:01:55 +0000Yumemi(~Yumemi@chamoin.net) (*.net *.split)
2023-06-23 04:01:55 +0000energizer(~energizer@user/energizer) (*.net *.split)
2023-06-23 04:01:55 +0000hexeme(~hexeme@user/hexeme) (*.net *.split)
2023-06-23 04:01:55 +0000JoelMcCracken(5ea8252fbb@2604:bf00:561:2000::10e3) (*.net *.split)
2023-06-23 04:01:55 +0000manwithluck(~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda) (*.net *.split)
2023-06-23 04:01:55 +0000henrytill(e0180937c3@2604:bf00:561:2000::e8c) (*.net *.split)
2023-06-23 04:01:55 +0000MonsoonSecrecy(f78c86e960@2604:bf00:561:2000::f99) (*.net *.split)
2023-06-23 04:01:55 +0000probie(cc0b34050a@user/probie) (*.net *.split)
2023-06-23 04:01:55 +0000jakzale(6291399afa@user/jakzale) (*.net *.split)
2023-06-23 04:01:55 +0000fluffyballoon(45ce440a48@2604:bf00:561:2000::e2) (*.net *.split)
2023-06-23 04:01:55 +0000lbseale(~quassel@user/ep1ctetus) (*.net *.split)
2023-06-23 04:01:55 +0000chaitlatte0(ea29c0bb16@user/chaitlatte0) (*.net *.split)
2023-06-23 04:01:55 +0000n1essa(3d621153a5@2604:bf00:561:2000::df7) (*.net *.split)
2023-06-23 04:01:55 +0000flukiluke(~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) (*.net *.split)
2023-06-23 04:01:55 +0000jleightcap(7bc4014b62@user/jleightcap) (*.net *.split)
2023-06-23 04:01:55 +0000arcadewise(52968ed80d@2604:bf00:561:2000::3df) (*.net *.split)
2023-06-23 04:01:55 +0000jkoshy(99b9359beb@user/jkoshy) (*.net *.split)
2023-06-23 04:01:55 +0000sm2n(ae95cb1267@user/sm2n) (*.net *.split)
2023-06-23 04:01:55 +0000turlando(~turlando@user/turlando) (*.net *.split)
2023-06-23 04:01:55 +0000b0o(0e4a0bf4c9@2604:bf00:561:2000::1bf) (*.net *.split)
2023-06-23 04:01:55 +0000sus(1b7af6299f@user/zeromomentum) (*.net *.split)
2023-06-23 04:01:55 +0000landonf(landonf@mac68k.info) (*.net *.split)
2023-06-23 04:01:55 +0000Ankhers(e99e97ef8e@2604:bf00:561:2000::2a2) (*.net *.split)
2023-06-23 04:01:55 +0000marienz(~marienz@libera/staff/marienz) (*.net *.split)
2023-06-23 04:01:55 +0000bastelfreak(bastelfrea@libera/staff/VoxPupuli.bastelfreak) (*.net *.split)
2023-06-23 04:01:56 +0000samhh_samhh
2023-06-23 04:01:57 +0000ec(~ec@gateway/tor-sasl/ec)
2023-06-23 04:02:14 +0000samhh(7569f027cf@2604:bf00:561:2000::e4) (Remote host closed the connection)
2023-06-23 04:02:14 +0000cpli(77fc530071@2604:bf00:561:2000::252) (Read error: Connection reset by peer)
2023-06-23 04:02:14 +0000theesm(2cbdf4b38a@2604:bf00:561:2000::11c8) (Write error: Connection reset by peer)
2023-06-23 04:02:14 +0000ymherklotz(cb2c9cfbdd@2604:bf00:561:2000::29a) (Remote host closed the connection)
2023-06-23 04:02:14 +0000lukec(9dfd4d094e@2604:bf00:561:2000::10e) (Remote host closed the connection)
2023-06-23 04:02:14 +0000bsima1(9d7e39c8ad@2604:bf00:561:2000::dd) (Remote host closed the connection)
2023-06-23 04:02:14 +0000filwisher(2e6936c793@2604:bf00:561:2000::170) (Remote host closed the connection)
2023-06-23 04:02:26 +0000filwisher(2e6936c793@2604:bf00:561:2000::170)
2023-06-23 04:02:30 +0000lukec(9dfd4d094e@2604:bf00:561:2000::10e)
2023-06-23 04:02:30 +0000bsima1(9d7e39c8ad@2604:bf00:561:2000::dd)
2023-06-23 04:02:31 +0000ggb_(a62ffbaf4f@2604:bf00:561:2000::3ac)
2023-06-23 04:02:32 +0000probie_(cc0b34050a@user/probie)
2023-06-23 04:02:33 +0000cpli(77fc530071@2604:bf00:561:2000::252)
2023-06-23 04:02:37 +0000aweinstock(~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com)
2023-06-23 04:02:37 +0000pat__(~pat67@pool-100-36-172-241.washdc.fios.verizon.net)
2023-06-23 04:02:37 +0000mxs(~mxs@user/mxs)
2023-06-23 04:02:37 +0000kawzeg(kawzeg@2a01:7e01::f03c:92ff:fee2:ec34)
2023-06-23 04:02:37 +0000theodorc(theodorc@cassarossa.samfundet.no)
2023-06-23 04:02:37 +0000dtman34(~dtman34@c-76-156-89-180.hsd1.mn.comcast.net)
2023-06-23 04:02:37 +0000mtjm(~mutantmel@2604:a880:2:d0::208b:d001)
2023-06-23 04:02:37 +0000fiddlerwoaroof_(~fiddlerwo@user/fiddlerwoaroof)
2023-06-23 04:02:37 +0000beaky(~beaky@2a03:b0c0:0:1010::1e:a001)
2023-06-23 04:02:37 +0000NinjaTrappeur(~ninja@user/ninjatrappeur)
2023-06-23 04:02:37 +0000[exa](~exa@user/exa/x-3587197)
2023-06-23 04:02:37 +0000noctux(~noctux@user/noctux)
2023-06-23 04:02:37 +0000wz1000(~zubin@static.11.113.47.78.clients.your-server.de)
2023-06-23 04:02:37 +0000absence(torgeihe@hildring.pvv.ntnu.no)
2023-06-23 04:02:37 +0000jsomedon(uid606872@id-606872.hampstead.irccloud.com)
2023-06-23 04:02:37 +0000Jon(jon@dow.land)
2023-06-23 04:02:37 +0000YuutaW(~YuutaW@mail.yuuta.moe)
2023-06-23 04:02:37 +0000buhman_(sid411355@id-411355.tinside.irccloud.com)
2023-06-23 04:02:37 +0000jmct(sid160793@id-160793.tinside.irccloud.com)
2023-06-23 04:02:37 +0000lally(sid388228@id-388228.uxbridge.irccloud.com)
2023-06-23 04:02:37 +0000hamishmack(sid389057@id-389057.hampstead.irccloud.com)
2023-06-23 04:02:37 +0000cyphase(~cyphase@user/cyphase)
2023-06-23 04:02:37 +0000bjobjo(~bjobjo@user/bjobjo)
2023-06-23 04:02:37 +0000nshepperd2(nshepperd@2600:3c03::f03c:92ff:fe28:92c9)
2023-06-23 04:02:37 +0000agander_m(sid407952@id-407952.tinside.irccloud.com)
2023-06-23 04:02:37 +0000T_S__(sid501726@id-501726.uxbridge.irccloud.com)
2023-06-23 04:02:37 +0000rubin55(sid175221@id-175221.hampstead.irccloud.com)
2023-06-23 04:02:37 +0000tabemann(~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56)
2023-06-23 04:02:37 +0000ell(~ellie@user/ellie)
2023-06-23 04:02:37 +0000taktoa[c](sid282096@id-282096.tinside.irccloud.com)
2023-06-23 04:02:37 +0000codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511)
2023-06-23 04:02:37 +0000aristid(sid1599@id-1599.uxbridge.irccloud.com)
2023-06-23 04:02:37 +0000tcard(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303)
2023-06-23 04:02:37 +0000zzz(~z@user/zero)
2023-06-23 04:02:37 +0000caubert(~caubert@user/caubert)
2023-06-23 04:02:37 +0000polux(~polux@51-15-169-172.rev.poneytelecom.eu)
2023-06-23 04:02:37 +0000m5zs7k(aquares@web10.mydevil.net)
2023-06-23 04:02:37 +0000047AABRIT(7569f027cf@2604:bf00:561:2000::e4)
2023-06-23 04:02:37 +0000whereiseveryone(206ba86c98@2604:bf00:561:2000::2e4)
2023-06-23 04:02:37 +0000ggb(a62ffbaf4f@2604:bf00:561:2000::3ac)
2023-06-23 04:02:37 +0000RMSBach(~guygastin@137.184.131.156)
2023-06-23 04:02:37 +0000fvr(ef3e56ca8b@2604:bf00:561:2000::3c4)
2023-06-23 04:02:37 +0000evanrelf(3addc196af@2604:bf00:561:2000::f0)
2023-06-23 04:02:37 +0000shreyasminocha(51fdc93eda@user/shreyasminocha)
2023-06-23 04:02:37 +0000Yumemi(~Yumemi@chamoin.net)
2023-06-23 04:02:37 +0000energizer(~energizer@user/energizer)
2023-06-23 04:02:37 +0000hexeme(~hexeme@user/hexeme)
2023-06-23 04:02:37 +0000JoelMcCracken(5ea8252fbb@2604:bf00:561:2000::10e3)
2023-06-23 04:02:37 +0000manwithluck(~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda)
2023-06-23 04:02:37 +0000MonsoonSecrecy(f78c86e960@2604:bf00:561:2000::f99)
2023-06-23 04:02:37 +0000henrytill(e0180937c3@2604:bf00:561:2000::e8c)
2023-06-23 04:02:37 +0000probie(cc0b34050a@user/probie)
2023-06-23 04:02:37 +0000jakzale(6291399afa@user/jakzale)
2023-06-23 04:02:37 +0000fluffyballoon(45ce440a48@2604:bf00:561:2000::e2)
2023-06-23 04:02:37 +0000lbseale(~quassel@user/ep1ctetus)
2023-06-23 04:02:37 +0000chaitlatte0(ea29c0bb16@user/chaitlatte0)
2023-06-23 04:02:37 +0000n1essa(3d621153a5@2604:bf00:561:2000::df7)
2023-06-23 04:02:37 +0000flukiluke(~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962)
2023-06-23 04:02:37 +0000jleightcap(7bc4014b62@user/jleightcap)
2023-06-23 04:02:37 +0000arcadewise(52968ed80d@2604:bf00:561:2000::3df)
2023-06-23 04:02:37 +0000jkoshy(99b9359beb@user/jkoshy)
2023-06-23 04:02:37 +0000sm2n(ae95cb1267@user/sm2n)
2023-06-23 04:02:37 +0000turlando(~turlando@user/turlando)
2023-06-23 04:02:37 +0000b0o(0e4a0bf4c9@2604:bf00:561:2000::1bf)
2023-06-23 04:02:37 +0000sus(1b7af6299f@user/zeromomentum)
2023-06-23 04:02:37 +0000landonf(landonf@mac68k.info)
2023-06-23 04:02:37 +0000Ankhers(e99e97ef8e@2604:bf00:561:2000::2a2)
2023-06-23 04:02:37 +0000marienz(~marienz@libera/staff/marienz)
2023-06-23 04:02:37 +0000bastelfreak(bastelfrea@libera/staff/VoxPupuli.bastelfreak)
2023-06-23 04:02:38 +0000samhh(7569f027cf@2604:bf00:561:2000::e4)
2023-06-23 04:02:39 +0000ymherklotz(cb2c9cfbdd@2604:bf00:561:2000::29a)
2023-06-23 04:02:42 +0000evanrelf(3addc196af@2604:bf00:561:2000::f0) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000fvr(ef3e56ca8b@2604:bf00:561:2000::3c4) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000JoelMcCracken(5ea8252fbb@2604:bf00:561:2000::10e3) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000probie(cc0b34050a@user/probie) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000Ankhers(e99e97ef8e@2604:bf00:561:2000::2a2) (Max SendQ exceeded)
2023-06-23 04:02:42 +0000whereiseveryone(206ba86c98@2604:bf00:561:2000::2e4) (Max SendQ exceeded)
2023-06-23 04:02:42 +0000MonsoonSecrecy(f78c86e960@2604:bf00:561:2000::f99) (Max SendQ exceeded)
2023-06-23 04:02:42 +0000sm2n(ae95cb1267@user/sm2n) (Max SendQ exceeded)
2023-06-23 04:02:42 +0000chaitlatte0(ea29c0bb16@user/chaitlatte0) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000047AABRIT(7569f027cf@2604:bf00:561:2000::e4) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000fluffyballoon(45ce440a48@2604:bf00:561:2000::e2) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000n1essa(3d621153a5@2604:bf00:561:2000::df7) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000jleightcap(7bc4014b62@user/jleightcap) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000henrytill(e0180937c3@2604:bf00:561:2000::e8c) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000arcadewise(52968ed80d@2604:bf00:561:2000::3df) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000jkoshy(99b9359beb@user/jkoshy) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000sus(1b7af6299f@user/zeromomentum) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000shreyasminocha(51fdc93eda@user/shreyasminocha) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000b0o(0e4a0bf4c9@2604:bf00:561:2000::1bf) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000jakzale(6291399afa@user/jakzale) (Read error: Connection reset by peer)
2023-06-23 04:02:42 +0000ggb(a62ffbaf4f@2604:bf00:561:2000::3ac) (Read error: Connection reset by peer)
2023-06-23 04:02:47 +0000evanrelf_(3addc196af@2604:bf00:561:2000::f0)
2023-06-23 04:02:48 +0000evanrelf_evanrelf
2023-06-23 04:02:51 +0000JoelMcCracken_(5ea8252fbb@2604:bf00:561:2000::10e3)
2023-06-23 04:02:52 +0000fvr_(ef3e56ca8b@2604:bf00:561:2000::3c4)
2023-06-23 04:02:52 +0000n1essa_(3d621153a5@2604:bf00:561:2000::df7)
2023-06-23 04:02:52 +0000fvr_fvr
2023-06-23 04:02:54 +0000arcadewise_(52968ed80d@2604:bf00:561:2000::3df)
2023-06-23 04:02:58 +0000Xe(~cadey@tailscale/xe) (Quit: WeeChat 3.8)
2023-06-23 04:03:00 +0000jkoshy_(99b9359beb@user/jkoshy)
2023-06-23 04:03:04 +0000arcadewise_arcadewise
2023-06-23 04:03:05 +0000jkoshy_jkoshy
2023-06-23 04:03:06 +0000n1essa_n1essa
2023-06-23 04:03:07 +0000probie_probie
2023-06-23 04:03:08 +0000henrytill_(e0180937c3@2604:bf00:561:2000::e8c)
2023-06-23 04:03:13 +0000theesm(2cbdf4b38a@2604:bf00:561:2000::11c8)
2023-06-23 04:03:13 +0000sus_(1b7af6299f@user/zeromomentum)
2023-06-23 04:03:13 +0000shreyasminocha_(51fdc93eda@user/shreyasminocha)
2023-06-23 04:03:13 +0000sus_sus
2023-06-23 04:03:15 +0000ggb_ggb
2023-06-23 04:03:16 +0000JoelMcCracken_JoelMcCracken
2023-06-23 04:03:17 +0000henrytill_henrytill
2023-06-23 04:03:26 +0000Xe(~cadey@tailscale/xe)
2023-06-23 04:03:40 +0000chaitlatte0(ea29c0bb16@user/chaitlatte0)
2023-06-23 04:03:40 +0000whereiseveryone(206ba86c98@2604:bf00:561:2000::2e4)
2023-06-23 04:03:42 +0000sm2n(ae95cb1267@user/sm2n)
2023-06-23 04:03:45 +0000jakzale(6291399afa@user/jakzale)
2023-06-23 04:03:46 +0000MonsoonSecrecy(f78c86e960@2604:bf00:561:2000::f99)
2023-06-23 04:03:53 +0000samhh_(7569f027cf@2604:bf00:561:2000::e4)
2023-06-23 04:03:59 +0000b0o(0e4a0bf4c9@2604:bf00:561:2000::1bf)
2023-06-23 04:04:18 +0000shreyasminocha_shreyasminocha
2023-06-23 04:04:18 +0000fluffyballoon(45ce440a48@2604:bf00:561:2000::e2)
2023-06-23 04:04:27 +0000Ankhers(e99e97ef8e@2604:bf00:561:2000::2a2)
2023-06-23 04:04:27 +0000jleightcap(7bc4014b62@user/jleightcap)
2023-06-23 04:04:56 +0000rubin55(sid175221@id-175221.hampstead.irccloud.com) (Ping timeout: 260 seconds)
2023-06-23 04:07:10 +0000rubin55(sid175221@2a03:5180:f:4::2:ac75)
2023-06-23 04:07:27 +0000gry(quasselcor@botters/gry) (*.net *.split)
2023-06-23 04:07:27 +0000Axman6(~Axman6@user/axman6) (*.net *.split)
2023-06-23 04:07:39 +0000gry(quasselcor@botters/gry)
2023-06-23 04:07:39 +0000Axman6(~Axman6@user/axman6)
2023-06-23 04:07:42 +0000gry(quasselcor@botters/gry) (Max SendQ exceeded)
2023-06-23 04:07:53 +0000gry(quasselcor@botters/gry)
2023-06-23 04:07:59 +0000aweinstock(~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com) (*.net *.split)
2023-06-23 04:07:59 +0000pat__(~pat67@pool-100-36-172-241.washdc.fios.verizon.net) (*.net *.split)
2023-06-23 04:07:59 +0000mxs(~mxs@user/mxs) (*.net *.split)
2023-06-23 04:07:59 +0000kawzeg(kawzeg@2a01:7e01::f03c:92ff:fee2:ec34) (*.net *.split)
2023-06-23 04:07:59 +0000theodorc(theodorc@cassarossa.samfundet.no) (*.net *.split)
2023-06-23 04:07:59 +0000dtman34(~dtman34@c-76-156-89-180.hsd1.mn.comcast.net) (*.net *.split)
2023-06-23 04:07:59 +0000mtjm(~mutantmel@2604:a880:2:d0::208b:d001) (*.net *.split)
2023-06-23 04:07:59 +0000fiddlerwoaroof_(~fiddlerwo@user/fiddlerwoaroof) (*.net *.split)
2023-06-23 04:07:59 +0000beaky(~beaky@2a03:b0c0:0:1010::1e:a001) (*.net *.split)
2023-06-23 04:07:59 +0000NinjaTrappeur(~ninja@user/ninjatrappeur) (*.net *.split)
2023-06-23 04:07:59 +0000[exa](~exa@user/exa/x-3587197) (*.net *.split)
2023-06-23 04:07:59 +0000noctux(~noctux@user/noctux) (*.net *.split)
2023-06-23 04:07:59 +0000wz1000(~zubin@static.11.113.47.78.clients.your-server.de) (*.net *.split)
2023-06-23 04:07:59 +0000absence(torgeihe@hildring.pvv.ntnu.no) (*.net *.split)
2023-06-23 04:07:59 +0000jsomedon(uid606872@id-606872.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:07:59 +0000Jon(jon@dow.land) (*.net *.split)
2023-06-23 04:07:59 +0000YuutaW(~YuutaW@mail.yuuta.moe) (*.net *.split)
2023-06-23 04:07:59 +0000buhman_(sid411355@id-411355.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:07:59 +0000jmct(sid160793@id-160793.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:07:59 +0000lally(sid388228@id-388228.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:07:59 +0000hamishmack(sid389057@id-389057.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:07:59 +0000cyphase(~cyphase@user/cyphase) (*.net *.split)
2023-06-23 04:07:59 +0000bjobjo(~bjobjo@user/bjobjo) (*.net *.split)
2023-06-23 04:07:59 +0000nshepperd2(nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split)
2023-06-23 04:07:59 +0000agander_m(sid407952@id-407952.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:07:59 +0000T_S__(sid501726@id-501726.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:07:59 +0000tabemann(~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56) (*.net *.split)
2023-06-23 04:07:59 +0000ell(~ellie@user/ellie) (*.net *.split)
2023-06-23 04:07:59 +0000taktoa[c](sid282096@id-282096.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:07:59 +0000codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split)
2023-06-23 04:07:59 +0000aristid(sid1599@id-1599.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:07:59 +0000tcard(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split)
2023-06-23 04:07:59 +0000zzz(~z@user/zero) (*.net *.split)
2023-06-23 04:07:59 +0000caubert(~caubert@user/caubert) (*.net *.split)
2023-06-23 04:07:59 +0000polux(~polux@51-15-169-172.rev.poneytelecom.eu) (*.net *.split)
2023-06-23 04:07:59 +0000m5zs7k(aquares@web10.mydevil.net) (*.net *.split)
2023-06-23 04:07:59 +0000RMSBach(~guygastin@137.184.131.156) (*.net *.split)
2023-06-23 04:07:59 +0000Yumemi(~Yumemi@chamoin.net) (*.net *.split)
2023-06-23 04:07:59 +0000energizer(~energizer@user/energizer) (*.net *.split)
2023-06-23 04:07:59 +0000hexeme(~hexeme@user/hexeme) (*.net *.split)
2023-06-23 04:07:59 +0000manwithluck(~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda) (*.net *.split)
2023-06-23 04:07:59 +0000lbseale(~quassel@user/ep1ctetus) (*.net *.split)
2023-06-23 04:07:59 +0000flukiluke(~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) (*.net *.split)
2023-06-23 04:07:59 +0000turlando(~turlando@user/turlando) (*.net *.split)
2023-06-23 04:07:59 +0000landonf(landonf@mac68k.info) (*.net *.split)
2023-06-23 04:07:59 +0000marienz(~marienz@libera/staff/marienz) (*.net *.split)
2023-06-23 04:07:59 +0000bastelfreak(bastelfrea@libera/staff/VoxPupuli.bastelfreak) (*.net *.split)
2023-06-23 04:08:22 +0000aweinstock(~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com)
2023-06-23 04:08:22 +0000pat__(~pat67@pool-100-36-172-241.washdc.fios.verizon.net)
2023-06-23 04:08:22 +0000mxs(~mxs@user/mxs)
2023-06-23 04:08:22 +0000kawzeg(kawzeg@2a01:7e01::f03c:92ff:fee2:ec34)
2023-06-23 04:08:22 +0000theodorc(theodorc@cassarossa.samfundet.no)
2023-06-23 04:08:22 +0000dtman34(~dtman34@c-76-156-89-180.hsd1.mn.comcast.net)
2023-06-23 04:08:22 +0000mtjm(~mutantmel@2604:a880:2:d0::208b:d001)
2023-06-23 04:08:22 +0000fiddlerwoaroof_(~fiddlerwo@user/fiddlerwoaroof)
2023-06-23 04:08:22 +0000beaky(~beaky@2a03:b0c0:0:1010::1e:a001)
2023-06-23 04:08:22 +0000NinjaTrappeur(~ninja@user/ninjatrappeur)
2023-06-23 04:08:22 +0000[exa](~exa@user/exa/x-3587197)
2023-06-23 04:08:22 +0000noctux(~noctux@user/noctux)
2023-06-23 04:08:22 +0000wz1000(~zubin@static.11.113.47.78.clients.your-server.de)
2023-06-23 04:08:22 +0000absence(torgeihe@hildring.pvv.ntnu.no)
2023-06-23 04:08:22 +0000jsomedon(uid606872@id-606872.hampstead.irccloud.com)
2023-06-23 04:08:22 +0000Jon(jon@dow.land)
2023-06-23 04:08:22 +0000YuutaW(~YuutaW@mail.yuuta.moe)
2023-06-23 04:08:22 +0000buhman_(sid411355@id-411355.tinside.irccloud.com)
2023-06-23 04:08:22 +0000jmct(sid160793@id-160793.tinside.irccloud.com)
2023-06-23 04:08:22 +0000lally(sid388228@id-388228.uxbridge.irccloud.com)
2023-06-23 04:08:22 +0000hamishmack(sid389057@id-389057.hampstead.irccloud.com)
2023-06-23 04:08:22 +0000cyphase(~cyphase@user/cyphase)
2023-06-23 04:08:22 +0000bjobjo(~bjobjo@user/bjobjo)
2023-06-23 04:08:22 +0000nshepperd2(nshepperd@2600:3c03::f03c:92ff:fe28:92c9)
2023-06-23 04:08:22 +0000agander_m(sid407952@id-407952.tinside.irccloud.com)
2023-06-23 04:08:22 +0000T_S__(sid501726@id-501726.uxbridge.irccloud.com)
2023-06-23 04:08:22 +0000tabemann(~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56)
2023-06-23 04:08:22 +0000ell(~ellie@user/ellie)
2023-06-23 04:08:22 +0000taktoa[c](sid282096@id-282096.tinside.irccloud.com)
2023-06-23 04:08:22 +0000codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511)
2023-06-23 04:08:22 +0000aristid(sid1599@id-1599.uxbridge.irccloud.com)
2023-06-23 04:08:22 +0000tcard(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303)
2023-06-23 04:08:22 +0000zzz(~z@user/zero)
2023-06-23 04:08:22 +0000caubert(~caubert@user/caubert)
2023-06-23 04:08:22 +0000polux(~polux@51-15-169-172.rev.poneytelecom.eu)
2023-06-23 04:08:22 +0000m5zs7k(aquares@web10.mydevil.net)
2023-06-23 04:08:22 +0000RMSBach(~guygastin@137.184.131.156)
2023-06-23 04:08:22 +0000Yumemi(~Yumemi@chamoin.net)
2023-06-23 04:08:22 +0000energizer(~energizer@user/energizer)
2023-06-23 04:08:22 +0000hexeme(~hexeme@user/hexeme)
2023-06-23 04:08:22 +0000manwithluck(~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda)
2023-06-23 04:08:22 +0000lbseale(~quassel@user/ep1ctetus)
2023-06-23 04:08:22 +0000flukiluke(~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962)
2023-06-23 04:08:22 +0000turlando(~turlando@user/turlando)
2023-06-23 04:08:22 +0000landonf(landonf@mac68k.info)
2023-06-23 04:08:22 +0000marienz(~marienz@libera/staff/marienz)
2023-06-23 04:08:22 +0000bastelfreak(bastelfrea@libera/staff/VoxPupuli.bastelfreak)
2023-06-23 04:08:36 +0000aweinstock(~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com) (*.net *.split)
2023-06-23 04:08:36 +0000pat__(~pat67@pool-100-36-172-241.washdc.fios.verizon.net) (*.net *.split)
2023-06-23 04:08:36 +0000mxs(~mxs@user/mxs) (*.net *.split)
2023-06-23 04:08:36 +0000kawzeg(kawzeg@2a01:7e01::f03c:92ff:fee2:ec34) (*.net *.split)
2023-06-23 04:08:36 +0000theodorc(theodorc@cassarossa.samfundet.no) (*.net *.split)
2023-06-23 04:08:36 +0000dtman34(~dtman34@c-76-156-89-180.hsd1.mn.comcast.net) (*.net *.split)
2023-06-23 04:08:36 +0000mtjm(~mutantmel@2604:a880:2:d0::208b:d001) (*.net *.split)
2023-06-23 04:08:36 +0000fiddlerwoaroof_(~fiddlerwo@user/fiddlerwoaroof) (*.net *.split)
2023-06-23 04:08:36 +0000beaky(~beaky@2a03:b0c0:0:1010::1e:a001) (*.net *.split)
2023-06-23 04:08:36 +0000NinjaTrappeur(~ninja@user/ninjatrappeur) (*.net *.split)
2023-06-23 04:08:36 +0000[exa](~exa@user/exa/x-3587197) (*.net *.split)
2023-06-23 04:08:36 +0000noctux(~noctux@user/noctux) (*.net *.split)
2023-06-23 04:08:36 +0000wz1000(~zubin@static.11.113.47.78.clients.your-server.de) (*.net *.split)
2023-06-23 04:08:36 +0000absence(torgeihe@hildring.pvv.ntnu.no) (*.net *.split)
2023-06-23 04:08:36 +0000jsomedon(uid606872@id-606872.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:36 +0000Jon(jon@dow.land) (*.net *.split)
2023-06-23 04:08:36 +0000YuutaW(~YuutaW@mail.yuuta.moe) (*.net *.split)
2023-06-23 04:08:36 +0000buhman_(sid411355@id-411355.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:36 +0000jmct(sid160793@id-160793.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:36 +0000lally(sid388228@id-388228.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:36 +0000hamishmack(sid389057@id-389057.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:36 +0000cyphase(~cyphase@user/cyphase) (*.net *.split)
2023-06-23 04:08:36 +0000bjobjo(~bjobjo@user/bjobjo) (*.net *.split)
2023-06-23 04:08:36 +0000nshepperd2(nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split)
2023-06-23 04:08:36 +0000agander_m(sid407952@id-407952.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:36 +0000T_S__(sid501726@id-501726.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:36 +0000tabemann(~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56) (*.net *.split)
2023-06-23 04:08:36 +0000ell(~ellie@user/ellie) (*.net *.split)
2023-06-23 04:08:36 +0000taktoa[c](sid282096@id-282096.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:36 +0000codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split)
2023-06-23 04:08:36 +0000aristid(sid1599@id-1599.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:36 +0000tcard(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split)
2023-06-23 04:08:36 +0000zzz(~z@user/zero) (*.net *.split)
2023-06-23 04:08:36 +0000caubert(~caubert@user/caubert) (*.net *.split)
2023-06-23 04:08:36 +0000polux(~polux@51-15-169-172.rev.poneytelecom.eu) (*.net *.split)
2023-06-23 04:08:37 +0000m5zs7k(aquares@web10.mydevil.net) (*.net *.split)
2023-06-23 04:08:37 +0000RMSBach(~guygastin@137.184.131.156) (*.net *.split)
2023-06-23 04:08:37 +0000Yumemi(~Yumemi@chamoin.net) (*.net *.split)
2023-06-23 04:08:37 +0000energizer(~energizer@user/energizer) (*.net *.split)
2023-06-23 04:08:37 +0000hexeme(~hexeme@user/hexeme) (*.net *.split)
2023-06-23 04:08:37 +0000manwithluck(~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda) (*.net *.split)
2023-06-23 04:08:37 +0000lbseale(~quassel@user/ep1ctetus) (*.net *.split)
2023-06-23 04:08:37 +0000flukiluke(~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) (*.net *.split)
2023-06-23 04:08:37 +0000turlando(~turlando@user/turlando) (*.net *.split)
2023-06-23 04:08:37 +0000landonf(landonf@mac68k.info) (*.net *.split)
2023-06-23 04:08:37 +0000marienz(~marienz@libera/staff/marienz) (*.net *.split)
2023-06-23 04:08:37 +0000bastelfreak(bastelfrea@libera/staff/VoxPupuli.bastelfreak) (*.net *.split)
2023-06-23 04:08:37 +0000gry(quasselcor@botters/gry) (*.net *.split)
2023-06-23 04:08:37 +0000Axman6(~Axman6@user/axman6) (*.net *.split)
2023-06-23 04:08:37 +0000evanrelf(3addc196af@2604:bf00:561:2000::f0) (*.net *.split)
2023-06-23 04:08:37 +0000samhh(7569f027cf@2604:bf00:561:2000::e4) (*.net *.split)
2023-06-23 04:08:37 +0000ymherklotz(cb2c9cfbdd@2604:bf00:561:2000::29a) (*.net *.split)
2023-06-23 04:08:37 +0000probie(cc0b34050a@user/probie) (*.net *.split)
2023-06-23 04:08:37 +0000cpli(77fc530071@2604:bf00:561:2000::252) (*.net *.split)
2023-06-23 04:08:37 +0000filwisher(2e6936c793@2604:bf00:561:2000::170) (*.net *.split)
2023-06-23 04:08:37 +0000mei(~mei@user/mei) (*.net *.split)
2023-06-23 04:08:37 +0000xff0x_(~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp) (*.net *.split)
2023-06-23 04:08:37 +0000gentauro(~gentauro@user/gentauro) (*.net *.split)
2023-06-23 04:08:37 +0000ft(~ft@p508db151.dip0.t-ipconnect.de) (*.net *.split)
2023-06-23 04:08:37 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (*.net *.split)
2023-06-23 04:08:37 +0000albet70(~xxx@2400:8902::f03c:92ff:fe60:98d8) (*.net *.split)
2023-06-23 04:08:37 +0000foul_owl(~kerry@94.140.8.28) (*.net *.split)
2023-06-23 04:08:37 +0000robbert-vdh(~robbert@robbertvanderhelm.nl) (*.net *.split)
2023-06-23 04:08:37 +0000mauke(~mauke@user/mauke) (*.net *.split)
2023-06-23 04:08:37 +0000mncheck-m(~mncheck@193.224.205.254) (*.net *.split)
2023-06-23 04:08:37 +0000EvanR(~EvanR@user/evanr) (*.net *.split)
2023-06-23 04:08:37 +0000phma(phma@2001:5b0:211f:2f08:1586:27d6:8ad8:5c55) (*.net *.split)
2023-06-23 04:08:37 +0000hippoid(~hippoid@user/hippoid) (*.net *.split)
2023-06-23 04:08:37 +0000Alex_test(~al_test@178.34.163.88) (*.net *.split)
2023-06-23 04:08:37 +0000kritzefitz(~kritzefit@debian/kritzefitz) (*.net *.split)
2023-06-23 04:08:37 +0000berberman(~berberman@user/berberman) (*.net *.split)
2023-06-23 04:08:37 +0000haritz(~hrtz@user/haritz) (*.net *.split)
2023-06-23 04:08:37 +0000Patternmaster(~georg@user/Patternmaster) (*.net *.split)
2023-06-23 04:08:37 +0000biberu(~biberu@user/biberu) (*.net *.split)
2023-06-23 04:08:37 +0000bw_(sid2730@user/betawaffle) (*.net *.split)
2023-06-23 04:08:37 +0000Lord_of_Life(~Lord@user/lord-of-life/x-2819915) (*.net *.split)
2023-06-23 04:08:37 +0000hugo(znc@verdigris.lysator.liu.se) (*.net *.split)
2023-06-23 04:08:37 +0000PHO`(~pho@akari.cielonegro.org) (*.net *.split)
2023-06-23 04:08:37 +0000MironZ(~MironZ@nat-infra.ehlab.uk) (*.net *.split)
2023-06-23 04:08:37 +0000diagprov(sid348783@user/diagprov) (*.net *.split)
2023-06-23 04:08:37 +0000Ankhers(e99e97ef8e@2604:bf00:561:2000::2a2) (*.net *.split)
2023-06-23 04:08:37 +0000jleightcap(7bc4014b62@user/jleightcap) (*.net *.split)
2023-06-23 04:08:37 +0000fluffyballoon(45ce440a48@2604:bf00:561:2000::e2) (*.net *.split)
2023-06-23 04:08:37 +0000b0o(0e4a0bf4c9@2604:bf00:561:2000::1bf) (*.net *.split)
2023-06-23 04:08:37 +0000samhh_(7569f027cf@2604:bf00:561:2000::e4) (*.net *.split)
2023-06-23 04:08:37 +0000MonsoonSecrecy(f78c86e960@2604:bf00:561:2000::f99) (*.net *.split)
2023-06-23 04:08:37 +0000jakzale(6291399afa@user/jakzale) (*.net *.split)
2023-06-23 04:08:37 +0000sm2n(ae95cb1267@user/sm2n) (*.net *.split)
2023-06-23 04:08:37 +0000chaitlatte0(ea29c0bb16@user/chaitlatte0) (*.net *.split)
2023-06-23 04:08:37 +0000whereiseveryone(206ba86c98@2604:bf00:561:2000::2e4) (*.net *.split)
2023-06-23 04:08:37 +0000Xe(~cadey@tailscale/xe) (*.net *.split)
2023-06-23 04:08:37 +0000theesm(2cbdf4b38a@2604:bf00:561:2000::11c8) (*.net *.split)
2023-06-23 04:08:37 +0000sus(1b7af6299f@user/zeromomentum) (*.net *.split)
2023-06-23 04:08:37 +0000shreyasminocha(51fdc93eda@user/shreyasminocha) (*.net *.split)
2023-06-23 04:08:37 +0000henrytill(e0180937c3@2604:bf00:561:2000::e8c) (*.net *.split)
2023-06-23 04:08:37 +0000jkoshy(99b9359beb@user/jkoshy) (*.net *.split)
2023-06-23 04:08:37 +0000arcadewise(52968ed80d@2604:bf00:561:2000::3df) (*.net *.split)
2023-06-23 04:08:37 +0000JoelMcCracken(5ea8252fbb@2604:bf00:561:2000::10e3) (*.net *.split)
2023-06-23 04:08:37 +0000fvr(ef3e56ca8b@2604:bf00:561:2000::3c4) (*.net *.split)
2023-06-23 04:08:37 +0000n1essa(3d621153a5@2604:bf00:561:2000::df7) (*.net *.split)
2023-06-23 04:08:37 +0000ggb(a62ffbaf4f@2604:bf00:561:2000::3ac) (*.net *.split)
2023-06-23 04:08:37 +0000lukec(9dfd4d094e@2604:bf00:561:2000::10e) (*.net *.split)
2023-06-23 04:08:37 +0000bsima1(9d7e39c8ad@2604:bf00:561:2000::dd) (*.net *.split)
2023-06-23 04:08:37 +0000aforemny_(~aforemny@i59F516C0.versanet.de) (*.net *.split)
2023-06-23 04:08:37 +0000td_(~td@i53870905.versanet.de) (*.net *.split)
2023-06-23 04:08:38 +0000wagle(~wagle@quassel.wagle.io) (*.net *.split)
2023-06-23 04:08:38 +0000myme(~myme@2a01:799:d60:e400:5ad3:735a:f98b:c82b) (*.net *.split)
2023-06-23 04:08:38 +0000dcoutts_(~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) (*.net *.split)
2023-06-23 04:08:38 +0000tzh(~tzh@c-24-21-73-154.hsd1.or.comcast.net) (*.net *.split)
2023-06-23 04:08:38 +0000Sgeo(~Sgeo@user/sgeo) (*.net *.split)
2023-06-23 04:08:38 +0000econo_(uid147250@id-147250.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:38 +0000swamp_(~zmt00@user/zmt00) (*.net *.split)
2023-06-23 04:08:38 +0000sunarch(~sunarch@user/sunarch) (*.net *.split)
2023-06-23 04:08:38 +0000shapr(~user@2600:1700:c640:3100:cca5:97e3:b957:869b) (*.net *.split)
2023-06-23 04:08:38 +0000RedNifre(~RedNifre@dslb-088-072-205-088.088.072.pools.vodafone-ip.de) (*.net *.split)
2023-06-23 04:08:38 +0000motherfsck(~motherfsc@user/motherfsck) (*.net *.split)
2023-06-23 04:08:38 +0000hisa38(~hisa38@104-181-102-238.lightspeed.wepbfl.sbcglobal.net) (*.net *.split)
2023-06-23 04:08:38 +0000kmein(~weechat@user/kmein) (*.net *.split)
2023-06-23 04:08:38 +0000Moyst(~moyst@user/moyst) (*.net *.split)
2023-06-23 04:08:38 +0000smalltalkman(uid545680@id-545680.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:38 +0000Athas(athas@sigkill.dk) (*.net *.split)
2023-06-23 04:08:38 +0000pavonia(~user@user/siracusa) (*.net *.split)
2023-06-23 04:08:38 +0000simpleauthority(~simpleaut@user/simpleauthority) (*.net *.split)
2023-06-23 04:08:38 +0000dipper(~dipper@203.168.26.146) (*.net *.split)
2023-06-23 04:08:38 +0000chromoblob(~user@37.113.180.121) (*.net *.split)
2023-06-23 04:08:38 +0000Nokurn(~jeremiah@cpe-76-86-186-227.socal.res.rr.com) (*.net *.split)
2023-06-23 04:08:38 +0000connrs(~connrs@user/connrs) (*.net *.split)
2023-06-23 04:08:38 +0000myxos(~myxos@cpe-65-28-251-121.cinci.res.rr.com) (*.net *.split)
2023-06-23 04:08:38 +0000L29Ah(~L29Ah@wikipedia/L29Ah) (*.net *.split)
2023-06-23 04:08:38 +0000mjs2600(~mjs2600@c-174-169-225-239.hsd1.vt.comcast.net) (*.net *.split)
2023-06-23 04:08:38 +0000Natch(~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se) (*.net *.split)
2023-06-23 04:08:38 +0000AlexZenon(~alzenon@178.34.163.88) (*.net *.split)
2023-06-23 04:08:38 +0000geekosaur(~geekosaur@xmonad/geekosaur) (*.net *.split)
2023-06-23 04:08:38 +0000dsrt^(~dsrt@c-71-204-38-59.hsd1.ga.comcast.net) (*.net *.split)
2023-06-23 04:08:38 +0000shriekingnoise(~shrieking@186.137.175.87) (*.net *.split)
2023-06-23 04:08:38 +0000euandreh(~Thunderbi@189.6.18.7) (*.net *.split)
2023-06-23 04:08:38 +0000dibblego(~dibblego@haskell/developer/dibblego) (*.net *.split)
2023-06-23 04:08:38 +0000opqdonut(opqdonut@pseudo.fixme.fi) (*.net *.split)
2023-06-23 04:08:38 +0000ezzieyguywuf(~Unknown@user/ezzieyguywuf) (*.net *.split)
2023-06-23 04:08:38 +0000johnw(~johnw@76-234-69-149.lightspeed.frokca.sbcglobal.net) (*.net *.split)
2023-06-23 04:08:38 +0000puke(~puke@user/puke) (*.net *.split)
2023-06-23 04:08:38 +0000nicole(ilbelkyr@libera/staff/ilbelkyr) (*.net *.split)
2023-06-23 04:08:38 +0000rubin55(sid175221@2a03:5180:f:4::2:ac75) (*.net *.split)
2023-06-23 04:08:38 +0000jonrh_(sid5185@2a03:5180:f:3::1441) (*.net *.split)
2023-06-23 04:08:38 +0000terrorjack(~terrorjac@2a01:4f8:c17:87f8::) (*.net *.split)
2023-06-23 04:08:38 +0000ijqq(uid603979@2a03:5180:f:1::9:374b) (*.net *.split)
2023-06-23 04:08:38 +0000xenomorph(~xenomorph@188.220.172.130) (*.net *.split)
2023-06-23 04:08:38 +0000mrmonday(~robert@2a01:7e00:e000:1b2:95ca:100:49e0:3f15) (*.net *.split)
2023-06-23 04:08:38 +0000nonzen(~nonzen@user/nonzen) (*.net *.split)
2023-06-23 04:08:38 +0000bjs(sid190364@user/bjs) (*.net *.split)
2023-06-23 04:08:38 +0000leah2(~leah@2001:1410:200:eea::1) (*.net *.split)
2023-06-23 04:08:38 +0000jakesyl____(sid56879@2a03:5180:f:4::de2f) (*.net *.split)
2023-06-23 04:08:38 +0000farn(~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) (*.net *.split)
2023-06-23 04:08:38 +0000jrm(~jrm@user/jrm) (*.net *.split)
2023-06-23 04:08:38 +0000ByronJohnson(~bairyn@50.250.232.19) (*.net *.split)
2023-06-23 04:08:38 +0000zups(~meow@2a01:4f9:c010:6036::1) (*.net *.split)
2023-06-23 04:08:38 +0000natto(~natto@140.238.225.67) (*.net *.split)
2023-06-23 04:08:38 +0000mustafa(sid502723@rockylinux/releng/mustafa) (*.net *.split)
2023-06-23 04:08:38 +0000snek(sid280155@2a03:5180:f:2::4:465b) (*.net *.split)
2023-06-23 04:08:38 +0000edm(sid147314@2a03:5180:f:4::2:3f72) (*.net *.split)
2023-06-23 04:08:38 +0000tolt(~weechat-h@li219-154.members.linode.com) (*.net *.split)
2023-06-23 04:08:38 +0000tom__(~tom@2a00:23c8:970c:4801:5b6a:e81b:79dc:f684) (*.net *.split)
2023-06-23 04:08:38 +0000truckasaurus(sid457088@id-457088.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:38 +0000texasmynsted(~username@99.96.221.112) (*.net *.split)
2023-06-23 04:08:38 +0000Boarders___(sid425905@id-425905.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:38 +0000pointlessslippe1(~pointless@212.82.82.3) (*.net *.split)
2023-06-23 04:08:38 +0000troydm(~troydm@user/troydm) (*.net *.split)
2023-06-23 04:08:38 +0000user___(~user@162.255.84.96) (*.net *.split)
2023-06-23 04:08:38 +0000xerox(~edi@user/edi) (*.net *.split)
2023-06-23 04:08:38 +0000siers(~ij@user/ij) (*.net *.split)
2023-06-23 04:08:38 +0000Rembane(~Rembane@178.79.177.36) (*.net *.split)
2023-06-23 04:08:38 +0000davean(~davean@67.205.182.208) (*.net *.split)
2023-06-23 04:08:38 +0000thaumavorio(~thaumavor@162.243.123.105) (*.net *.split)
2023-06-23 04:08:38 +0000darkling(~darkling@2001:ba8:1f1:f0e6::2) (*.net *.split)
2023-06-23 04:08:38 +0000yushyin(tGG5pLVJ8Y@2a01:4f8:1c17:80de::2) (*.net *.split)
2023-06-23 04:08:38 +0000Ellenor(ellenor@2001:19f0:8001:279::2000:1) (*.net *.split)
2023-06-23 04:08:38 +0000img(~img@user/img) (*.net *.split)
2023-06-23 04:08:38 +0000winny(~weechat@user/winny) (*.net *.split)
2023-06-23 04:08:38 +0000parseval(sid239098@2a03:5180:f:1::3:a5fa) (*.net *.split)
2023-06-23 04:08:38 +0000Adeon(sid418992@2a03:5180:f:2::6:64b0) (*.net *.split)
2023-06-23 04:08:38 +0000rembo10(~rembo10@2a01:4f9:c010:b5b9::1) (*.net *.split)
2023-06-23 04:08:38 +0000Wojciech_K(~Wojciech_@2a01:4f9:6a:18a8::239) (*.net *.split)
2023-06-23 04:08:38 +0000astra(sid289983@2a03:5180:f:4::4:6cbf) (*.net *.split)
2023-06-23 04:08:38 +0000conjunctive(sid433686@2a03:5180:f:1::6:9e16) (*.net *.split)
2023-06-23 04:08:38 +0000dy(sid3438@user/dy) (*.net *.split)
2023-06-23 04:08:38 +0000nadja(~dequbed@2a01:4f8:201:34c7::1) (*.net *.split)
2023-06-23 04:08:38 +0000notzmv(~zmv@user/notzmv) (*.net *.split)
2023-06-23 04:08:38 +0000mzg(mzg@lazy.unconscious.biz) (*.net *.split)
2023-06-23 04:08:38 +0000idnar(sid12240@debian/mithrandi) (*.net *.split)
2023-06-23 04:08:38 +0000dsal(sid13060@id-13060.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:38 +0000b20n(sid115913@id-115913.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:38 +0000tritlo_(sid58727@id-58727.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000glowcoil(sid3405@id-3405.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000integral(sid296274@user/integral) (*.net *.split)
2023-06-23 04:08:39 +0000ProofTechnique_(sid79547@id-79547.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000immae(~immae@2a01:4f8:141:53e7::) (*.net *.split)
2023-06-23 04:08:39 +0000Arsen(arsen@gentoo/developer/managarm.dev.Arsen) (*.net *.split)
2023-06-23 04:08:39 +0000Guest5986(~m-mzmz6l@vmi833741.contaboserver.net) (*.net *.split)
2023-06-23 04:08:39 +0000ggVGc(~ggVGc@a.lowtech.earth) (*.net *.split)
2023-06-23 04:08:39 +0000bsima(~bsima@143.198.118.179) (*.net *.split)
2023-06-23 04:08:39 +0000noctux1(88FTKVRINY@user/noctux) (*.net *.split)
2023-06-23 04:08:39 +0000stallmanator(~stallmana@user/stallmanator) (*.net *.split)
2023-06-23 04:08:39 +0000Ekho(~Ekho@user/ekho) (*.net *.split)
2023-06-23 04:08:39 +0000tomku(~tomku@user/tomku) (*.net *.split)
2023-06-23 04:08:39 +0000hpc(~juzz@ip98-169-35-163.dc.dc.cox.net) (*.net *.split)
2023-06-23 04:08:39 +0000esph(~weechat@user/esph) (*.net *.split)
2023-06-23 04:08:39 +0000dunj3(~dunj3@kingdread.de) (*.net *.split)
2023-06-23 04:08:39 +0000disconnect3d(~disconnec@user/disconnect3d) (*.net *.split)
2023-06-23 04:08:39 +0000monochrom(trebla@216.138.220.146) (*.net *.split)
2023-06-23 04:08:39 +0000TMA(tma@twin.jikos.cz) (*.net *.split)
2023-06-23 04:08:39 +0000Lears(~Leary]@user/Leary/x-0910699) (*.net *.split)
2023-06-23 04:08:39 +0000apache(apache2@anubis.0x90.dk) (*.net *.split)
2023-06-23 04:08:39 +0000jinsun(~jinsun@user/jinsun) (*.net *.split)
2023-06-23 04:08:39 +0000dumptruckman(~dumptruck@143-42-239-71.ip.linodeusercontent.com) (*.net *.split)
2023-06-23 04:08:39 +0000Luj(~Luj@2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb) (*.net *.split)
2023-06-23 04:08:39 +0000koala_man(~vidar@157.146.251.23.bc.googleusercontent.com) (*.net *.split)
2023-06-23 04:08:39 +0000drlkf(~drlkf@192.184.163.34.bc.googleusercontent.com) (*.net *.split)
2023-06-23 04:08:39 +0000son0p(~ff@181.136.122.143) (*.net *.split)
2023-06-23 04:08:39 +0000kaskal(~kaskal@2001:4bb8:2dd:a79d:1a7:8529:b79b:cfa) (*.net *.split)
2023-06-23 04:08:39 +0000ski(~ski@remote11.chalmers.se) (*.net *.split)
2023-06-23 04:08:39 +0000alpm(~alp@user/alp) (*.net *.split)
2023-06-23 04:08:39 +0000Hobbyboy(Hobbyboy@hobbyboy.co.uk) (*.net *.split)
2023-06-23 04:08:39 +0000zer0bitz(~zer0bitz@user/zer0bitz) (*.net *.split)
2023-06-23 04:08:39 +0000danso(~danso@user/danso) (*.net *.split)
2023-06-23 04:08:39 +0000c_wraith(~c_wraith@adjoint.us) (*.net *.split)
2023-06-23 04:08:39 +0000Firedancer(sid336191@id-336191.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000russruss2(~russruss@my.russellmcc.com) (*.net *.split)
2023-06-23 04:08:39 +0000alinab_(sid468903@id-468903.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000dagit(~dagit@2001:558:6025:38:71c6:9d58:7252:8976) (*.net *.split)
2023-06-23 04:08:39 +0000dove(~irc@2600:3c00:e000:287::1) (*.net *.split)
2023-06-23 04:08:39 +0000bradparker(sid262931@id-262931.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000sa1(sid7690@id-7690.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000hueso(~root@user/hueso) (*.net *.split)
2023-06-23 04:08:39 +0000Ranhir(~Ranhir@157.97.53.139) (*.net *.split)
2023-06-23 04:08:39 +0000bcmiller(~bm3719@66.42.95.185) (*.net *.split)
2023-06-23 04:08:39 +0000paddymahoney(~paddymaho@cpe883d24bcf597-cmbc4dfb741f80.cpe.net.cable.rogers.com) (*.net *.split)
2023-06-23 04:08:39 +0000CAT_S(apic@brezn3.muc.ccc.de) (*.net *.split)
2023-06-23 04:08:39 +0000davl(~davl@207.154.228.18) (*.net *.split)
2023-06-23 04:08:39 +0000echoreply(~echoreply@45.32.163.16) (*.net *.split)
2023-06-23 04:08:39 +0000AkechiShiro(~licht@user/akechishiro) (*.net *.split)
2023-06-23 04:08:39 +0000dragestil(~znc@user/dragestil) (*.net *.split)
2023-06-23 04:08:39 +0000gmc(sid58314@id-58314.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000systemfault(sid267009@id-267009.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000kristjansson_(sid126207@id-126207.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000micro(~micro@user/micro) (*.net *.split)
2023-06-23 04:08:39 +0000dexter1(dexter@2a01:7e00::f03c:91ff:fe86:59ec) (*.net *.split)
2023-06-23 04:08:39 +0000sa(sid1055@id-1055.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000Profpatsch(~Profpatsc@static.88-198-193-255.clients.your-server.de) (*.net *.split)
2023-06-23 04:08:39 +0000loonycyborg(loonycybor@wesnoth/developer/loonycyborg) (*.net *.split)
2023-06-23 04:08:39 +0000incertia(~incertia@209.122.71.127) (*.net *.split)
2023-06-23 04:08:39 +0000hexagoxel(~hexagoxel@2a01:4f8:c0c:e::2) (*.net *.split)
2023-06-23 04:08:39 +0000sclv(sid39734@haskell/developer/sclv) (*.net *.split)
2023-06-23 04:08:39 +0000CalculusCats(NyaaTheKit@user/calculuscat) (*.net *.split)
2023-06-23 04:08:39 +0000Momentum(momentum@tilde.team) (*.net *.split)
2023-06-23 04:08:39 +0000kronicma1(user40967@neotame.csclub.uwaterloo.ca) (*.net *.split)
2023-06-23 04:08:39 +0000ggranberry(sid267884@id-267884.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000madnight(~madnight@static.59.103.201.195.clients.your-server.de) (*.net *.split)
2023-06-23 04:08:39 +0000mjacob(~mjacob@adrastea.uberspace.de) (*.net *.split)
2023-06-23 04:08:39 +0000nek0(~nek0@2a01:4f8:222:2b41::12) (*.net *.split)
2023-06-23 04:08:39 +0000fbytez(~uid@user/fbytez) (*.net *.split)
2023-06-23 04:08:39 +0000lawt(~lawt@129.159.36.129) (*.net *.split)
2023-06-23 04:08:39 +0000gabiruh(~gabiruh@vps19177.publiccloud.com.br) (*.net *.split)
2023-06-23 04:08:39 +0000jludwig(~justin@li657-110.members.linode.com) (*.net *.split)
2023-06-23 04:08:39 +0000haskl(~haskl@user/haskl) (*.net *.split)
2023-06-23 04:08:39 +0000Franciman(~Franciman@mx1.fracta.dev) (*.net *.split)
2023-06-23 04:08:39 +0000witcher(~witcher@wiredspace.de) (*.net *.split)
2023-06-23 04:08:39 +0000Inst_(~Inst@2601:6c4:4081:2fc0:61ec:e42a:c603:c093) (*.net *.split)
2023-06-23 04:08:39 +0000APic(apic@apic.name) (*.net *.split)
2023-06-23 04:08:39 +0000AndreasK(sid320732@id-320732.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000hyvoid(~hyenavoid@222-0-178-69.static.gci.net) (*.net *.split)
2023-06-23 04:08:39 +0000yaroot(~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp) (*.net *.split)
2023-06-23 04:08:39 +0000Fangs(sid141280@id-141280.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000cheater(~Username@user/cheater) (*.net *.split)
2023-06-23 04:08:39 +0000perrierjouet(~perrier-j@modemcable048.127-56-74.mc.videotron.ca) (*.net *.split)
2023-06-23 04:08:39 +0000srk(~sorki@user/srk) (*.net *.split)
2023-06-23 04:08:39 +0000robertm(robertm@lattice.rojoma.com) (*.net *.split)
2023-06-23 04:08:39 +0000lottaquestions(~nick@2607:fa49:503f:6d00:ee98:182c:4ae3:99fe) (*.net *.split)
2023-06-23 04:08:39 +0000tomboy64(~tomboy64@user/tomboy64) (*.net *.split)
2023-06-23 04:08:39 +0000daemon_(uid606752@id-606752.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000bwe(~bwe@2a01:4f8:1c1c:4878::2) (*.net *.split)
2023-06-23 04:08:39 +0000[_________](~oos95GWG@user/oos95GWG) (*.net *.split)
2023-06-23 04:08:39 +0000urdh(~urdh@user/urdh) (*.net *.split)
2023-06-23 04:08:39 +0000aku(~aku@65.108.245.241) (*.net *.split)
2023-06-23 04:08:39 +0000shawwwn(sid6132@id-6132.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:39 +0000skippy(sid26890@user/slice) (*.net *.split)
2023-06-23 04:08:39 +0000rune_(sid21167@id-21167.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:40 +0000phaazon(~phaazon@2001:41d0:a:fe76::1) (*.net *.split)
2023-06-23 04:08:40 +0000lexi-lambda(sid92601@hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:40 +0000ryantrinkle(~ryantrink@204.2.90.61) (*.net *.split)
2023-06-23 04:08:40 +0000gawen(~gawen@user/gawen) (*.net *.split)
2023-06-23 04:08:40 +0000driib(~driib@vmi931078.contaboserver.net) (*.net *.split)
2023-06-23 04:08:40 +0000p3n(~p3n@217.198.124.246) (*.net *.split)
2023-06-23 04:08:40 +0000ralu1(~ralu@static.211.245.203.116.clients.your-server.de) (*.net *.split)
2023-06-23 04:08:40 +0000quintasan(~quassel@quintasan.pl) (*.net *.split)
2023-06-23 04:08:40 +0000mhatta(~mhatta@www21123ui.sakura.ne.jp) (*.net *.split)
2023-06-23 04:08:40 +0000forell(~forell@user/forell) (*.net *.split)
2023-06-23 04:08:40 +0000Putonlalla(~Putonlall@it-cyan.it.jyu.fi) (*.net *.split)
2023-06-23 04:08:40 +0000Maxdamantus(~Maxdamant@user/maxdamantus) (*.net *.split)
2023-06-23 04:08:40 +0000barrucadu(~barrucadu@carcosa.barrucadu.co.uk) (*.net *.split)
2023-06-23 04:08:40 +0000hnOsmium0001(~hnosm@user/hnOsmium0001) (*.net *.split)
2023-06-23 04:08:40 +0000cross(~cross@spitfire.i.gajendra.net) (*.net *.split)
2023-06-23 04:08:40 +0000joeyh(joeyh@2600:3c03::f03c:91ff:fe73:b0d2) (*.net *.split)
2023-06-23 04:08:40 +0000emergence(emergence@2607:5300:60:5910:dcad:beff:feef:5bc) (*.net *.split)
2023-06-23 04:08:40 +0000nyc(~nyc@user/nyc) (*.net *.split)
2023-06-23 04:08:40 +0000Everything(~Everythin@static.208.206.21.65.clients.your-server.de) (*.net *.split)
2023-06-23 04:08:40 +0000drdo(~drdo@bl8-153-185.dsl.telepac.pt) (*.net *.split)
2023-06-23 04:08:40 +0000hays(rootvegeta@fsf/member/hays) (*.net *.split)
2023-06-23 04:08:40 +0000anpad(~pandeyan@user/anpad) (*.net *.split)
2023-06-23 04:08:40 +0000heartburn(~gass@2a00:d880:3:1::b1e4:b241) (*.net *.split)
2023-06-23 04:08:40 +0000ridcully(~ridcully@p57b52f2c.dip0.t-ipconnect.de) (*.net *.split)
2023-06-23 04:08:40 +0000megaTherion(~therion@unix.io) (*.net *.split)
2023-06-23 04:08:40 +0000cawfee(~root@2406:3003:2077:2758::babe) (*.net *.split)
2023-06-23 04:08:40 +0000Buggys-(Buggys@shelltalk.net) (*.net *.split)
2023-06-23 04:08:40 +0000Flow(~none@gentoo/developer/flow) (*.net *.split)
2023-06-23 04:08:40 +0000SoF(~skius@user/skius) (*.net *.split)
2023-06-23 04:08:40 +0000m1dnight(~christoph@78-22-4-67.access.telenet.be) (*.net *.split)
2023-06-23 04:08:40 +0000Katarushisu(~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net) (*.net *.split)
2023-06-23 04:08:40 +0000Angelz(Angelz@2605:6400:30:fc15:d55b:fa6c:bd14:9973) (*.net *.split)
2023-06-23 04:08:40 +0000dolio(~dolio@130.44.134.54) (*.net *.split)
2023-06-23 04:08:40 +0000kitzman(~kitzman@user/dekenevs) (*.net *.split)
2023-06-23 04:08:40 +0000fr33domlover(~fr33domlo@towards.vision) (*.net *.split)
2023-06-23 04:08:40 +0000Me-me(~me-me@2602:ff16:3:0:1:dc:beef:d00d) (*.net *.split)
2023-06-23 04:08:40 +0000s4msung(4RqcWUWWqt@user/s4msung) (*.net *.split)
2023-06-23 04:08:40 +0000qhong(~qhong@rescomp-21-400677.stanford.edu) (*.net *.split)
2023-06-23 04:08:40 +0000Taneb(~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0) (*.net *.split)
2023-06-23 04:08:40 +0000eL_Bart0(eL_Bart0@dietunichtguten.org) (*.net *.split)
2023-06-23 04:08:40 +0000finnekit(~finnekit@fsf/member/finnekit) (*.net *.split)
2023-06-23 04:08:40 +0000jbalint(~jbalint@071-090-119-177.res.spectrum.com) (*.net *.split)
2023-06-23 04:08:40 +0000bah(~bah@l1.tel) (*.net *.split)
2023-06-23 04:08:40 +0000stilgart(~Christoph@chezlefab.net) (*.net *.split)
2023-06-23 04:08:40 +0000abrar_(~abrar@pool-72-78-199-186.phlapa.fios.verizon.net) (*.net *.split)
2023-06-23 04:08:40 +0000hololeap(~quassel@user/hololeap) (*.net *.split)
2023-06-23 04:08:40 +0000jinsl(~jinsl@2408:8207:2558:8870:211:32ff:fec8:6aea) (*.net *.split)
2023-06-23 04:08:40 +0000mira(~aranea@wireguard/contributorcat/mira) (*.net *.split)
2023-06-23 04:08:40 +0000brettgilio(~brettgili@2001:19f0:5c00:27fc:5400:4ff:fe7a:1f8e) (*.net *.split)
2023-06-23 04:08:40 +0000tired(~tired@user/tired) (*.net *.split)
2023-06-23 04:08:40 +0000Logio(em@kapsi.fi) (*.net *.split)
2023-06-23 04:08:40 +0000Cheery(~cheery@server-239-7.tentacle.cloud) (*.net *.split)
2023-06-23 04:08:40 +0000ringo__(~ringo@157.230.117.128) (*.net *.split)
2023-06-23 04:08:40 +0000remedan(~remedan@ip-94-112-0-18.bb.vodafone.cz) (*.net *.split)
2023-06-23 04:08:40 +0000_d0t(~{-d0t-}@user/-d0t-/x-7915216) (*.net *.split)
2023-06-23 04:08:40 +0000krjst(~krjst@2604:a880:800:c1::16b:8001) (*.net *.split)
2023-06-23 04:08:40 +0000Sciencentistguy(~sciencent@hacksoc/ordinary-member) (*.net *.split)
2023-06-23 04:08:40 +0000Nosrep(~Nosrep@user/nosrep) (*.net *.split)
2023-06-23 04:08:40 +0000mrmr(~mrmr@user/mrmr) (*.net *.split)
2023-06-23 04:08:40 +0000carbolymer(~carbolyme@dropacid.net) (*.net *.split)
2023-06-23 04:08:40 +0000hexology(~hexology@user/hexology) (*.net *.split)
2023-06-23 04:08:40 +0000kraftwerk28(~kraftwerk@178.62.210.83) (*.net *.split)
2023-06-23 04:08:40 +0000juri_(~juri@84-19-175-187.pool.ovpn.com) (*.net *.split)
2023-06-23 04:08:40 +0000shachaf(~shachaf@user/shachaf) (*.net *.split)
2023-06-23 04:08:40 +0000bgamari(~bgamari@64.223.233.113) (*.net *.split)
2023-06-23 04:08:40 +0000ames(~amelia@offtopia/offtopian/amelia) (*.net *.split)
2023-06-23 04:08:40 +0000heath2(~heath@user/heath) (*.net *.split)
2023-06-23 04:08:40 +0000anderson(~anderson@user/anderson) (*.net *.split)
2023-06-23 04:08:40 +0000glider(~glider@user/glider) (*.net *.split)
2023-06-23 04:08:40 +0000adamCS(~adamCS@ec2-34-207-160-255.compute-1.amazonaws.com) (*.net *.split)
2023-06-23 04:08:40 +0000piele(~piele@tbonesteak.creativeserver.net) (*.net *.split)
2023-06-23 04:08:40 +0000Benzi-Junior(~BenziJuni@88-149-64-112.du.xdsl.is) (*.net *.split)
2023-06-23 04:08:41 +0000bramhaag(~bramhaag@134.195.121.39) (*.net *.split)
2023-06-23 04:08:41 +0000niko(niko@libera/staff/niko) (*.net *.split)
2023-06-23 04:08:41 +0000ncf(~n@monade.li) (*.net *.split)
2023-06-23 04:08:41 +0000end^(~end^@user/end/x-0094621) (*.net *.split)
2023-06-23 04:08:41 +0000DustinStiles[m](~duwstiles@2001:470:69fc:105::3:699b) (*.net *.split)
2023-06-23 04:08:41 +0000hellwolf[m](~hellwolfm@2001:470:69fc:105::3:6a4) (*.net *.split)
2023-06-23 04:08:41 +0000eldritchcookie[m(~eldritchc@2001:470:69fc:105::2:d53c) (*.net *.split)
2023-06-23 04:08:41 +0000lilpotent_jlemen(~lilpotent@2001:470:69fc:105::3:6eb6) (*.net *.split)
2023-06-23 04:08:41 +0000oak-(~oak-@2001:470:69fc:105::fcd) (*.net *.split)
2023-06-23 04:08:41 +0000m1-s[m](~m1-smatri@2001:470:69fc:105::2:39da) (*.net *.split)
2023-06-23 04:08:41 +0000supersven[m](~supersven@2001:470:69fc:105::31b6) (*.net *.split)
2023-06-23 04:08:41 +0000joyfulmantis[m](~joyfulman@2001:470:69fc:105::3:400a) (*.net *.split)
2023-06-23 04:08:41 +0000shapr[m](~shaprcofr@2001:470:69fc:105::2:d107) (*.net *.split)
2023-06-23 04:08:41 +0000VarikValefor[m](~varikvale@2001:470:69fc:105::a5d) (*.net *.split)
2023-06-23 04:08:41 +0000earthy(~arthurvl@2a02-a469-f5e2-1-83d2-ca43-57a2-dc81.fixed6.kpn.net) (*.net *.split)
2023-06-23 04:08:41 +0000czy(~user@host-140-26.ilcub310.champaign.il.us.clients.pavlovmedia.net) (*.net *.split)
2023-06-23 04:08:41 +0000hsw(~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net) (*.net *.split)
2023-06-23 04:08:41 +0000Vajb(~Vajb@2001:999:484:a37d:e618:9886:4843:f5d8) (*.net *.split)
2023-06-23 04:08:41 +0000Adran(~adran@botters/adran) (*.net *.split)
2023-06-23 04:08:41 +0000bionade24(~bionade24@2a03:4000:33:45b::1) (*.net *.split)
2023-06-23 04:08:41 +0000JSharp(sid4580@id-4580.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:41 +0000Clint(~Clint@user/clint) (*.net *.split)
2023-06-23 04:08:41 +0000lightandlight(sid135476@id-135476.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:41 +0000acro(~acro@user/acro) (*.net *.split)
2023-06-23 04:08:41 +0000xstill_0(xstill@fimu/xstill) (*.net *.split)
2023-06-23 04:08:41 +0000kosmikus_(~kosmikus@nullzig.kosmikus.org) (*.net *.split)
2023-06-23 04:08:41 +0000bcoppens_(~bartcopp@vpn2.bartcoppens.be) (*.net *.split)
2023-06-23 04:08:41 +0000laman3(~laman@rego.ai) (*.net *.split)
2023-06-23 04:08:41 +0000litharge(litharge@libera/bot/litharge) (*.net *.split)
2023-06-23 04:08:41 +0000ec(~ec@gateway/tor-sasl/ec) (*.net *.split)
2023-06-23 04:08:41 +0000FinnElija(~finn_elij@user/finn-elija/x-0085643) (*.net *.split)
2023-06-23 04:08:41 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex) (*.net *.split)
2023-06-23 04:08:41 +0000azimut(~azimut@gateway/tor-sasl/azimut) (*.net *.split)
2023-06-23 04:08:41 +0000cafkafk(~cafkafk@fsf/member/cafkafk) (*.net *.split)
2023-06-23 04:08:41 +0000jpds(~jpds@gateway/tor-sasl/jpds) (*.net *.split)
2023-06-23 04:08:41 +0000chexum(~quassel@gateway/tor-sasl/chexum) (*.net *.split)
2023-06-23 04:08:41 +0000califax(~califax@user/califx) (*.net *.split)
2023-06-23 04:08:41 +0000stiell_(~stiell@gateway/tor-sasl/stiell) (*.net *.split)
2023-06-23 04:08:41 +0000chiselfuse(~chiselfus@user/chiselfuse) (*.net *.split)
2023-06-23 04:08:41 +0000adanwan(~adanwan@gateway/tor-sasl/adanwan) (*.net *.split)
2023-06-23 04:08:41 +0000shane(~shane@ana.rch.ist) (*.net *.split)
2023-06-23 04:08:41 +0000int-e(~noone@int-e.eu) (*.net *.split)
2023-06-23 04:08:41 +0000ghostbuster(~admin@user/ghostbuster) (*.net *.split)
2023-06-23 04:08:41 +0000Dykam(Dykam@dykam.nl) (*.net *.split)
2023-06-23 04:08:41 +0000cods(~fred@82-65-232-44.subs.proxad.net) (*.net *.split)
2023-06-23 04:08:41 +0000Igloo(~ian@matrix.chaos.earth.li) (*.net *.split)
2023-06-23 04:08:41 +0000AlexNoo(~AlexNoo@178.34.163.88) (*.net *.split)
2023-06-23 04:08:41 +0000hammond(proscan@gateway02.insomnia247.nl) (*.net *.split)
2023-06-23 04:08:41 +0000pieguy128(~pieguy128@bras-base-mtrlpq5031w-grc-56-65-92-162-12.dsl.bell.ca) (*.net *.split)
2023-06-23 04:08:41 +0000dextaa(~DV@user/dextaa) (*.net *.split)
2023-06-23 04:08:41 +0000sajith(~sajith@user/sajith) (*.net *.split)
2023-06-23 04:08:41 +0000finsternis(~X@23.226.237.192) (*.net *.split)
2023-06-23 04:08:41 +0000justache(~justache@user/justache) (*.net *.split)
2023-06-23 04:08:41 +0000tureba(~tureba@tureba.org) (*.net *.split)
2023-06-23 04:08:41 +0000ystael(~ystael@user/ystael) (*.net *.split)
2023-06-23 04:08:41 +0000Buliarous(~gypsydang@46.232.210.139) (*.net *.split)
2023-06-23 04:08:41 +0000Nikopol(nikopol@user/astrorigin) (*.net *.split)
2023-06-23 04:08:41 +0000lyxia(~lyxia@poisson.chat) (*.net *.split)
2023-06-23 04:08:41 +0000xsarnik(xsarnik@lounge.fi.muni.cz) (*.net *.split)
2023-06-23 04:08:41 +0000remexre(~remexre@user/remexre) (*.net *.split)
2023-06-23 04:08:41 +0000meejah(~meejah@rutas.meejah.ca) (*.net *.split)
2023-06-23 04:08:41 +0000dontdieych(~alarm@132.226.169.184) (*.net *.split)
2023-06-23 04:08:41 +0000tv(~tv@user/tv) (*.net *.split)
2023-06-23 04:08:41 +0000JimL(~quassel@89.162.16.26) (*.net *.split)
2023-06-23 04:08:41 +0000migas(~migas@astra4961.startdedicated.net) (*.net *.split)
2023-06-23 04:08:41 +0000TheCoffeMaker(~TheCoffeM@user/thecoffemaker) (*.net *.split)
2023-06-23 04:08:41 +0000nckx(~nckx@tobias.gr) (*.net *.split)
2023-06-23 04:08:41 +0000tokie(~tokie@tokie.net) (*.net *.split)
2023-06-23 04:08:41 +0000noteness-(~noteness@user/noteness) (*.net *.split)
2023-06-23 04:08:41 +0000andjjj23(~irc@107.170.228.47) (*.net *.split)
2023-06-23 04:08:41 +0000peutri(~peutri@bobo.desast.re) (*.net *.split)
2023-06-23 04:08:41 +0000asm(~alexander@user/asm) (*.net *.split)
2023-06-23 04:08:41 +0000edwtjo(~edwtjo@fsf/member/edwtjo) (*.net *.split)
2023-06-23 04:08:41 +0000mniip(mniip@libera/staff/mniip) (*.net *.split)
2023-06-23 04:08:41 +0000AWizzArd(~code@user/awizzard) (*.net *.split)
2023-06-23 04:08:41 +0000cjay(cjay@nerdbox.nerd2nerd.org) (*.net *.split)
2023-06-23 04:08:41 +0000it_(~quassel@v2202212189510211193.supersrv.de) (*.net *.split)
2023-06-23 04:08:41 +0000josias(~mottmatri@2001:470:69fc:105::b6c) (*.net *.split)
2023-06-23 04:08:41 +0000ddrone[m](~ddronemat@2001:470:69fc:105::3:70d5) (*.net *.split)
2023-06-23 04:08:41 +0000mon_aaraj(~montchncs@2001:470:69fc:105::8e6b) (*.net *.split)
2023-06-23 04:08:42 +0000Ross[m](~zhichuche@2001:470:69fc:105::3:584b) (*.net *.split)
2023-06-23 04:08:42 +0000teo(~teo@user/teo) (*.net *.split)
2023-06-23 04:08:42 +0000polykernel[m](~polykerne@user/polykernel) (*.net *.split)
2023-06-23 04:08:42 +0000somerandomnick[m(~somerando@2001:470:69fc:105::3:4f2e) (*.net *.split)
2023-06-23 04:08:42 +0000Daniel[m]1(~danieltan@2001:470:69fc:105::3:6e5e) (*.net *.split)
2023-06-23 04:08:42 +0000kleenestar[m](~kleenesta@2001:470:69fc:105::3:6d78) (*.net *.split)
2023-06-23 04:08:42 +0000aaronv(~aaronv@user/aaronv) (*.net *.split)
2023-06-23 04:08:42 +0000tbidne[m](~tbidnemat@2001:470:69fc:105::3:6d42) (*.net *.split)
2023-06-23 04:08:42 +0000adziahel(~adziahelm@2001:470:69fc:105::b4d) (*.net *.split)
2023-06-23 04:08:42 +0000hsiktas[m](~hsiktasm]@2001:470:69fc:105::30d4) (*.net *.split)
2023-06-23 04:08:42 +0000chreekat(~chreekat@2001:470:69fc:105::16b5) (*.net *.split)
2023-06-23 04:08:42 +0000elvishjerricco(~elvishjer@2001:470:69fc:105::6172) (*.net *.split)
2023-06-23 04:08:42 +0000alanz(~alanz@2001:470:69fc:105::2:49a6) (*.net *.split)
2023-06-23 04:08:42 +0000Null_A[m](~jasonjckn@2001:470:69fc:105::bb85) (*.net *.split)
2023-06-23 04:08:42 +0000Artem[m](~artemtype@2001:470:69fc:105::75b) (*.net *.split)
2023-06-23 04:08:42 +0000paulapatience(~paulapati@2001:470:69fc:105::16a4) (*.net *.split)
2023-06-23 04:08:42 +0000fgaz(~fgaz@2001:470:69fc:105::842) (*.net *.split)
2023-06-23 04:08:42 +0000maralorn(~maralorn@2001:470:69fc:105::251) (*.net *.split)
2023-06-23 04:08:42 +0000ericson2314(~ericson23@2001:470:69fc:105::70c) (*.net *.split)
2023-06-23 04:08:42 +0000Guillaum[m](~guiboumat@2001:470:69fc:105::1:72ac) (*.net *.split)
2023-06-23 04:08:42 +0000h2t(~h2t@user/h2t) (*.net *.split)
2023-06-23 04:08:42 +0000nurupo(~nurupo.ga@user/nurupo) (*.net *.split)
2023-06-23 04:08:42 +0000sudden(~cat@user/sudden) (*.net *.split)
2023-06-23 04:08:42 +0000vjoki(~vjoki@2a00:d880:3:1::fea1:9ae) (*.net *.split)
2023-06-23 04:08:42 +0000defanor(~defanor@tart.uberspace.net) (*.net *.split)
2023-06-23 04:08:42 +0000Cale(~cale@cpe80d04ade0a03-cm80d04ade0a01.cpe.net.cable.rogers.com) (*.net *.split)
2023-06-23 04:08:42 +0000acarrico(~acarrico@dhcp-68-142-49-163.greenmountainaccess.net) (*.net *.split)
2023-06-23 04:08:42 +0000carter(sid14827@id-14827.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000dminuoso(~dminuoso@user/dminuoso) (*.net *.split)
2023-06-23 04:08:42 +0000swistak(~swistak@185.21.216.141) (*.net *.split)
2023-06-23 04:08:42 +0000maxfan8_(~max@2a01:4f8:192:5356::2) (*.net *.split)
2023-06-23 04:08:42 +0000TimWolla(~timwolla@2a01:4f8:150:6153:beef::6667) (*.net *.split)
2023-06-23 04:08:42 +0000yahb2(~yahb2@2a01:4f8:c0c:5c7b::2) (*.net *.split)
2023-06-23 04:08:42 +0000delyan_(sid523379@id-523379.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000PotatoGim_(sid99505@id-99505.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000jackdk(sid373013@cssa/jackdk) (*.net *.split)
2023-06-23 04:08:42 +0000edwardk(sid47016@haskell/developer/edwardk) (*.net *.split)
2023-06-23 04:08:42 +0000S11001001(sid42510@id-42510.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000nshepperd(nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split)
2023-06-23 04:08:42 +0000dmj`(sid72307@id-72307.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000rburkholder(~blurb@96.45.2.121) (*.net *.split)
2023-06-23 04:08:42 +0000Unode(~Unode@fg-ext-220.embl.de) (*.net *.split)
2023-06-23 04:08:42 +0000hackyhacker(~hackyhack@2a05:f480:1400:24b2:5400:4ff:fe76:a8f3) (*.net *.split)
2023-06-23 04:08:42 +0000pierrot(~pi@user/pierrot) (*.net *.split)
2023-06-23 04:08:42 +0000koolazer(~koo@user/koolazer) (*.net *.split)
2023-06-23 04:08:42 +0000oljenkins(~philipp@p5dec4bb3.dip0.t-ipconnect.de) (*.net *.split)
2023-06-23 04:08:42 +0000ario(~ario@159.65.220.102) (*.net *.split)
2023-06-23 04:08:42 +0000hongminhee(sid295@id-295.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000tnks(sid412124@id-412124.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000oats_(~thomas@user/oats) (*.net *.split)
2023-06-23 04:08:42 +0000lisq(~quassel@lis.moe) (*.net *.split)
2023-06-23 04:08:42 +0000jjhoo(~jahakala@user/jjhoo) (*.net *.split)
2023-06-23 04:08:42 +0000V(~v@ircpuzzles/2022/april/winner/V) (*.net *.split)
2023-06-23 04:08:42 +0000meooow(~meooow@2400:6180:100:d0::ad9:e001) (*.net *.split)
2023-06-23 04:08:42 +0000acidsys(~crameleon@openSUSE/member/crameleon) (*.net *.split)
2023-06-23 04:08:42 +0000liskin(~liskin@xmonad/liskin) (*.net *.split)
2023-06-23 04:08:42 +0000arkeet(arkeet@moriya.ca) (*.net *.split)
2023-06-23 04:08:42 +0000xnbya(~xnbya@2a01:4f8:c17:cbdd::1) (*.net *.split)
2023-06-23 04:08:42 +0000Batzy(~quassel@user/batzy) (*.net *.split)
2023-06-23 04:08:42 +0000whatsupdoc(uid509081@id-509081.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000NemesisD(sid24071@id-24071.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000gnyeki(~gnyeki@user/gnyeki) (*.net *.split)
2023-06-23 04:08:42 +0000GoldsteinQ(~goldstein@goldstein.rs) (*.net *.split)
2023-06-23 04:08:42 +0000mcfrdy(~mcfrdy@user/mcfrdy) (*.net *.split)
2023-06-23 04:08:42 +0000ouroboros(~ouroboros@user/ouroboros) (*.net *.split)
2023-06-23 04:08:42 +0000eugenrh(~eugenrh@2a01:4f9:c011:265::1) (*.net *.split)
2023-06-23 04:08:42 +0000Typedfern(~Typedfern@60.red-83-37-32.dynamicip.rima-tde.net) (*.net *.split)
2023-06-23 04:08:42 +0000wrengr(~wrengr@201.59.83.34.bc.googleusercontent.com) (*.net *.split)
2023-06-23 04:08:42 +0000lav(~pi@wikipedia/maddy-from-celeste) (*.net *.split)
2023-06-23 04:08:42 +0000christiaanb(sid84827@id-84827.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000mht-wtf(~mht@2a03:b0c0:3:e0::1e2:c001) (*.net *.split)
2023-06-23 04:08:42 +0000degraafk(sid71464@id-71464.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:42 +0000kawen(~quassel@static.208.191.216.95.clients.your-server.de) (*.net *.split)
2023-06-23 04:08:42 +0000Guest585(~mike@user/feetwind) (*.net *.split)
2023-06-23 04:08:42 +0000welterde(welterde@thinkbase.srv.welterde.de) (*.net *.split)
2023-06-23 04:08:42 +0000aaronm04(~user@user/aaronm04) (*.net *.split)
2023-06-23 04:08:42 +0000YoungFrog(~youngfrog@2a02:a03f:ca07:f900:9506:825b:e271:15c3) (*.net *.split)
2023-06-23 04:08:42 +0000Teacup(~teacup@user/teacup) (*.net *.split)
2023-06-23 04:08:42 +0000end\(~end^@user/end/x-0094621) (*.net *.split)
2023-06-23 04:08:42 +0000jaror[m](~jaror@2001:470:69fc:105::265) (*.net *.split)
2023-06-23 04:08:42 +0000Las[m]1(~lasmatrix@2001:470:69fc:105::74e) (*.net *.split)
2023-06-23 04:08:42 +0000xrvdg[m](~xrvdgmatr@2001:470:69fc:105::3:625a) (*.net *.split)
2023-06-23 04:08:42 +0000aerc[m](~aercmatri@2001:470:69fc:105::3:67b9) (*.net *.split)
2023-06-23 04:08:42 +0000Clinton[m](~clintonme@2001:470:69fc:105::2:31d4) (*.net *.split)
2023-06-23 04:08:42 +0000kosmikus[m](~andresloe@2001:470:69fc:105::95d) (*.net *.split)
2023-06-23 04:08:43 +0000iphy(sid67735@id-67735.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000caasih(sid13241@id-13241.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000chessai(sid225296@id-225296.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000minigrim0(~minigrim0@2a01:4f9:6b:3416:68ba:8dff:fe58:a5ea) (*.net *.split)
2023-06-23 04:08:43 +0000Ram-Z(Ram-Z@2a01:7e01::f03c:91ff:fe57:d2df) (*.net *.split)
2023-06-23 04:08:43 +0000nrr_____(sid20938@id-20938.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000brprice(~brprice@user/brprice) (*.net *.split)
2023-06-23 04:08:43 +0000SethTisue(sid14912@id-14912.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000mrvdb(~mrvdb@185.92.221.186) (*.net *.split)
2023-06-23 04:08:43 +0000bbhoss(sid18216@id-18216.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000ormaaaj(~ormaaj@user/ormaaj) (*.net *.split)
2023-06-23 04:08:43 +0000isomorpheme[m](~isomorphe@2001:470:69fc:105::3:731a) (*.net *.split)
2023-06-23 04:08:43 +0000severen[m](~severenmt@2001:470:69fc:105::2:9932) (*.net *.split)
2023-06-23 04:08:43 +0000NiKaN(sid385034@id-385034.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000SrPx(sid108780@id-108780.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000Pent_(sid313808@id-313808.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000edmundnoble_(sid229620@id-229620.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000yandere(sid467876@id-467876.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000acertain_(sid470584@id-470584.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000ysh____(sid6017@id-6017.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000dfordvm(~dfordivam@160.16.87.223.v6.sakura.ne.jp) (*.net *.split)
2023-06-23 04:08:43 +0000ners[m](~nersnixos@2001:470:69fc:105::3:648b) (*.net *.split)
2023-06-23 04:08:43 +0000ozkutuk[m](~ozkutuk@2001:470:69fc:105::2:9af8) (*.net *.split)
2023-06-23 04:08:43 +0000maerwald[m](~maerwaldm@2001:470:69fc:105::1ee) (*.net *.split)
2023-06-23 04:08:43 +0000nicm[m](~nicmollel@2001:470:69fc:105::1:feeb) (*.net *.split)
2023-06-23 04:08:43 +0000zfnmxt(~zfnmxt@user/zfnmxt) (*.net *.split)
2023-06-23 04:08:43 +0000Hafydd(~Hafydd@user/hafydd) (*.net *.split)
2023-06-23 04:08:43 +0000Christoph[m](~hpotsirhc@2001:470:69fc:105::2ff8) (*.net *.split)
2023-06-23 04:08:43 +0000alexfmpe[m](~alexfmpem@2001:470:69fc:105::38ba) (*.net *.split)
2023-06-23 04:08:43 +0000MangoIV[m](~mangoivma@2001:470:69fc:105::2:8417) (*.net *.split)
2023-06-23 04:08:43 +0000nomagno(~nomagno@2001:470:69fc:105::c1f0) (*.net *.split)
2023-06-23 04:08:43 +0000fendor[m](~fendormat@2001:470:69fc:105::fcbd) (*.net *.split)
2023-06-23 04:08:43 +0000kadoban(~kadoban@user/kadoban) (*.net *.split)
2023-06-23 04:08:43 +0000ocharles[m](~ocharlesm@2001:470:69fc:105::3:5899) (*.net *.split)
2023-06-23 04:08:43 +0000zebrag[m](~inkbottle@2001:470:69fc:105::2ff5) (*.net *.split)
2023-06-23 04:08:43 +0000jmcantrell(~jmcantrel@user/jmcantrell) (*.net *.split)
2023-06-23 04:08:43 +0000sm(~sm@plaintextaccounting/sm) (*.net *.split)
2023-06-23 04:08:43 +0000Matthew|m(~arathorn@2001:470:69fc:105::1f) (*.net *.split)
2023-06-23 04:08:43 +0000sphynx(~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288) (*.net *.split)
2023-06-23 04:08:43 +0000tinwood(~tinwood@canonical/tinwood) (*.net *.split)
2023-06-23 04:08:43 +0000SanchayanMaity(sid478177@id-478177.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000gaze___(sid387101@id-387101.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000davetapley(sid666@id-666.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000vgtw_(~vgtw@user/vgtw) (*.net *.split)
2023-06-23 04:08:43 +0000ddellacosta(~ddellacos@146.70.166.166) (*.net *.split)
2023-06-23 04:08:43 +0000Vq(~vq@90-227-195-9-no77.tbcn.telia.com) (*.net *.split)
2023-06-23 04:08:43 +0000totbwf(sid402332@id-402332.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000tomsmeding(~tomsmedin@static.21.109.88.23.clients.your-server.de) (*.net *.split)
2023-06-23 04:08:43 +0000andreas303(andreas303@is.drunk.and.ready-to.party) (*.net *.split)
2023-06-23 04:08:43 +0000amir(sid22336@user/amir) (*.net *.split)
2023-06-23 04:08:43 +0000ham(~ham@user/ham) (*.net *.split)
2023-06-23 04:08:43 +0000jil(~user@vps-15050500.vps.ovh.net) (*.net *.split)
2023-06-23 04:08:43 +0000bliminse(~bliminse@user/bliminse) (*.net *.split)
2023-06-23 04:08:43 +0000pepeiborra(sid443799@id-443799.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000tessier(~treed@ec2-184-72-149-67.compute-1.amazonaws.com) (*.net *.split)
2023-06-23 04:08:43 +0000pie_(~pie_bnc@user/pie/x-2818909) (*.net *.split)
2023-06-23 04:08:43 +0000marinelli[m](~marinelli@2001:470:69fc:105::2d8) (*.net *.split)
2023-06-23 04:08:43 +0000akadude[m](~akadudema@2001:470:69fc:105::2:5bf7) (*.net *.split)
2023-06-23 04:08:43 +0000jade[m]1(~jade256th@2001:470:69fc:105::3:58df) (*.net *.split)
2023-06-23 04:08:43 +0000romes[m](~romesmatr@2001:470:69fc:105::2:1660) (*.net *.split)
2023-06-23 04:08:43 +0000elevenkb(~elevenkb@2001:470:69fc:105::2:cb89) (*.net *.split)
2023-06-23 04:08:43 +0000geekosaur[m](~geekosaur@xmonad/geekosaur) (*.net *.split)
2023-06-23 04:08:43 +0000JensPetersen[m](~juhp@2001:470:69fc:105::6e9) (*.net *.split)
2023-06-23 04:08:43 +0000SeanKing[m](~seankingm@2001:470:69fc:105::cf9c) (*.net *.split)
2023-06-23 04:08:43 +0000bgamari[m](~bgamari@2001:470:69fc:105::c7b9) (*.net *.split)
2023-06-23 04:08:43 +0000smichel17[m](~smichel17@2001:470:69fc:105::2d32) (*.net *.split)
2023-06-23 04:08:43 +0000peddie(~peddie@2001:470:69fc:105::25d) (*.net *.split)
2023-06-23 04:08:43 +0000jean-paul[m](~jean-paul@2001:470:69fc:105::d1ab) (*.net *.split)
2023-06-23 04:08:43 +0000Deide(~deide@user/deide) (*.net *.split)
2023-06-23 04:08:43 +0000jorwas[m](~jorwasmat@2001:470:69fc:105::3:60e7) (*.net *.split)
2023-06-23 04:08:43 +0000ManofLetters[m](~manoflett@2001:470:69fc:105::3be) (*.net *.split)
2023-06-23 04:08:43 +0000riatre(~quassel@2001:310:6000:f::5198:1) (*.net *.split)
2023-06-23 04:08:43 +0000sefidel(~sefidel@user/sefidel) (*.net *.split)
2023-06-23 04:08:43 +0000nisstyre(wes@user/nisstyre) (*.net *.split)
2023-06-23 04:08:43 +0000df(~ben@justworks.xyz) (*.net *.split)
2023-06-23 04:08:43 +0000hook54321(sid149355@user/hook54321) (*.net *.split)
2023-06-23 04:08:43 +0000lieven(~mal@ns2.wyrd.be) (*.net *.split)
2023-06-23 04:08:43 +0000chymera(~chymera@ns1000526.ip-51-81-46.us) (*.net *.split)
2023-06-23 04:08:43 +0000wallymathieu(sid533252@id-533252.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000grfn(sid449115@id-449115.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000scav(sid309693@user/scav) (*.net *.split)
2023-06-23 04:08:43 +0000pjlsergeant__(sid143467@id-143467.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000cbarrett(sid192934@id-192934.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000orcus(~orcus@user/brprice) (*.net *.split)
2023-06-23 04:08:43 +0000dispater(~dispater@user/brprice) (*.net *.split)
2023-06-23 04:08:43 +0000yvan-sraka(sid419690@id-419690.lymington.irccloud.com) (*.net *.split)
2023-06-23 04:08:43 +0000jocke-l(jocke-l@a.x0.is) (*.net *.split)
2023-06-23 04:08:43 +0000dyniec(~dyniec@mail.dybiec.info) (*.net *.split)
2023-06-23 04:08:43 +0000sweater(~sweater@206.81.18.26) (*.net *.split)
2023-06-23 04:08:43 +0000ChanServ(ChanServ@services.libera.chat) (*.net *.split)
2023-06-23 04:09:01 +0000bastelfreak(bastelfrea@libera/staff/VoxPupuli.bastelfreak)
2023-06-23 04:09:01 +0000marienz(~marienz@libera/staff/marienz)
2023-06-23 04:09:01 +0000landonf(landonf@mac68k.info)
2023-06-23 04:09:01 +0000turlando(~turlando@user/turlando)
2023-06-23 04:09:01 +0000flukiluke(~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962)
2023-06-23 04:09:01 +0000lbseale(~quassel@user/ep1ctetus)
2023-06-23 04:09:01 +0000manwithluck(~manwithlu@2406:da14:5ea:e400:49df:93ba:b95b:7bda)
2023-06-23 04:09:01 +0000hexeme(~hexeme@user/hexeme)
2023-06-23 04:09:01 +0000energizer(~energizer@user/energizer)
2023-06-23 04:09:01 +0000Yumemi(~Yumemi@chamoin.net)
2023-06-23 04:09:01 +0000RMSBach(~guygastin@137.184.131.156)
2023-06-23 04:09:01 +0000m5zs7k(aquares@web10.mydevil.net)
2023-06-23 04:09:01 +0000polux(~polux@51-15-169-172.rev.poneytelecom.eu)
2023-06-23 04:09:01 +0000caubert(~caubert@user/caubert)
2023-06-23 04:09:01 +0000zzz(~z@user/zero)
2023-06-23 04:09:01 +0000tcard(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303)
2023-06-23 04:09:01 +0000aristid(sid1599@id-1599.uxbridge.irccloud.com)
2023-06-23 04:09:01 +0000codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511)
2023-06-23 04:09:01 +0000taktoa[c](sid282096@id-282096.tinside.irccloud.com)
2023-06-23 04:09:01 +0000ell(~ellie@user/ellie)
2023-06-23 04:09:01 +0000tabemann(~tabemann@2600:1700:7990:24e0:59b4:50:6695:cd56)
2023-06-23 04:09:01 +0000T_S__(sid501726@id-501726.uxbridge.irccloud.com)
2023-06-23 04:09:01 +0000agander_m(sid407952@id-407952.tinside.irccloud.com)
2023-06-23 04:09:01 +0000nshepperd2(nshepperd@2600:3c03::f03c:92ff:fe28:92c9)
2023-06-23 04:09:01 +0000bjobjo(~bjobjo@user/bjobjo)
2023-06-23 04:09:01 +0000cyphase(~cyphase@user/cyphase)
2023-06-23 04:09:01 +0000hamishmack(sid389057@id-389057.hampstead.irccloud.com)
2023-06-23 04:09:01 +0000lally(sid388228@id-388228.uxbridge.irccloud.com)
2023-06-23 04:09:01 +0000jmct(sid160793@id-160793.tinside.irccloud.com)
2023-06-23 04:09:01 +0000buhman_(sid411355@id-411355.tinside.irccloud.com)
2023-06-23 04:09:01 +0000YuutaW(~YuutaW@mail.yuuta.moe)
2023-06-23 04:09:01 +0000Jon(jon@dow.land)
2023-06-23 04:09:01 +0000jsomedon(uid606872@id-606872.hampstead.irccloud.com)
2023-06-23 04:09:01 +0000absence(torgeihe@hildring.pvv.ntnu.no)
2023-06-23 04:09:01 +0000wz1000(~zubin@static.11.113.47.78.clients.your-server.de)
2023-06-23 04:09:01 +0000noctux(~noctux@user/noctux)
2023-06-23 04:09:01 +0000[exa](~exa@user/exa/x-3587197)
2023-06-23 04:09:01 +0000NinjaTrappeur(~ninja@user/ninjatrappeur)
2023-06-23 04:09:01 +0000beaky(~beaky@2a03:b0c0:0:1010::1e:a001)
2023-06-23 04:09:01 +0000fiddlerwoaroof_(~fiddlerwo@user/fiddlerwoaroof)
2023-06-23 04:09:01 +0000mtjm(~mutantmel@2604:a880:2:d0::208b:d001)
2023-06-23 04:09:01 +0000dtman34(~dtman34@c-76-156-89-180.hsd1.mn.comcast.net)
2023-06-23 04:09:01 +0000theodorc(theodorc@cassarossa.samfundet.no)
2023-06-23 04:09:01 +0000kawzeg(kawzeg@2a01:7e01::f03c:92ff:fee2:ec34)
2023-06-23 04:09:01 +0000mxs(~mxs@user/mxs)
2023-06-23 04:09:01 +0000pat__(~pat67@pool-100-36-172-241.washdc.fios.verizon.net)
2023-06-23 04:09:01 +0000aweinstock(~aweinstoc@cpe-74-76-189-75.nycap.res.rr.com)
2023-06-23 04:09:01 +0000gry(quasselcor@botters/gry)
2023-06-23 04:09:01 +0000Axman6(~Axman6@user/axman6)
2023-06-23 04:09:01 +0000rubin55(sid175221@2a03:5180:f:4::2:ac75)
2023-06-23 04:09:01 +0000hongminhee(sid295@id-295.tinside.irccloud.com)
2023-06-23 04:09:01 +0000tnks(sid412124@id-412124.helmsley.irccloud.com)
2023-06-23 04:09:01 +0000oats_(~thomas@user/oats)
2023-06-23 04:09:01 +0000xsarnik(xsarnik@lounge.fi.muni.cz)
2023-06-23 04:09:01 +0000lisq(~quassel@lis.moe)
2023-06-23 04:09:01 +0000jjhoo(~jahakala@user/jjhoo)
2023-06-23 04:09:01 +0000remexre(~remexre@user/remexre)
2023-06-23 04:09:01 +0000meejah(~meejah@rutas.meejah.ca)
2023-06-23 04:09:01 +0000V(~v@ircpuzzles/2022/april/winner/V)
2023-06-23 04:09:01 +0000meooow(~meooow@2400:6180:100:d0::ad9:e001)
2023-06-23 04:09:01 +0000acidsys(~crameleon@openSUSE/member/crameleon)
2023-06-23 04:09:01 +0000liskin(~liskin@xmonad/liskin)
2023-06-23 04:09:01 +0000arkeet(arkeet@moriya.ca)
2023-06-23 04:09:01 +0000xnbya(~xnbya@2a01:4f8:c17:cbdd::1)
2023-06-23 04:09:01 +0000dontdieych(~alarm@132.226.169.184)
2023-06-23 04:09:01 +0000tv(~tv@user/tv)
2023-06-23 04:09:01 +0000Batzy(~quassel@user/batzy)
2023-06-23 04:09:01 +0000JimL(~quassel@89.162.16.26)
2023-06-23 04:09:01 +0000migas(~migas@astra4961.startdedicated.net)
2023-06-23 04:09:01 +0000TheCoffeMaker(~TheCoffeM@user/thecoffemaker)
2023-06-23 04:09:01 +0000whatsupdoc(uid509081@id-509081.hampstead.irccloud.com)
2023-06-23 04:09:01 +0000nckx(~nckx@tobias.gr)
2023-06-23 04:09:01 +0000NemesisD(sid24071@id-24071.lymington.irccloud.com)
2023-06-23 04:09:01 +0000tokie(~tokie@tokie.net)
2023-06-23 04:09:01 +0000sudden(~cat@user/sudden)
2023-06-23 04:09:01 +0000gnyeki(~gnyeki@user/gnyeki)
2023-06-23 04:09:01 +0000GoldsteinQ(~goldstein@goldstein.rs)
2023-06-23 04:09:01 +0000mcfrdy(~mcfrdy@user/mcfrdy)
2023-06-23 04:09:01 +0000ouroboros(~ouroboros@user/ouroboros)
2023-06-23 04:09:01 +0000eugenrh(~eugenrh@2a01:4f9:c011:265::1)
2023-06-23 04:09:01 +0000Typedfern(~Typedfern@60.red-83-37-32.dynamicip.rima-tde.net)
2023-06-23 04:09:01 +0000noteness-(~noteness@user/noteness)
2023-06-23 04:09:01 +0000wrengr(~wrengr@201.59.83.34.bc.googleusercontent.com)
2023-06-23 04:09:01 +0000lav(~pi@wikipedia/maddy-from-celeste)
2023-06-23 04:09:01 +0000christiaanb(sid84827@id-84827.lymington.irccloud.com)
2023-06-23 04:09:01 +0000andjjj23(~irc@107.170.228.47)
2023-06-23 04:09:01 +0000peutri(~peutri@bobo.desast.re)
2023-06-23 04:09:01 +0000asm(~alexander@user/asm)
2023-06-23 04:09:01 +0000mht-wtf(~mht@2a03:b0c0:3:e0::1e2:c001)
2023-06-23 04:09:01 +0000degraafk(sid71464@id-71464.lymington.irccloud.com)
2023-06-23 04:09:01 +0000kawen(~quassel@static.208.191.216.95.clients.your-server.de)
2023-06-23 04:09:01 +0000Guest585(~mike@user/feetwind)
2023-06-23 04:09:01 +0000vjoki(~vjoki@2a00:d880:3:1::fea1:9ae)
2023-06-23 04:09:01 +0000welterde(welterde@thinkbase.srv.welterde.de)
2023-06-23 04:09:01 +0000aaronm04(~user@user/aaronm04)
2023-06-23 04:09:01 +0000caasih(sid13241@id-13241.ilkley.irccloud.com)
2023-06-23 04:09:01 +0000iphy(sid67735@id-67735.lymington.irccloud.com)
2023-06-23 04:09:01 +0000chessai(sid225296@id-225296.lymington.irccloud.com)
2023-06-23 04:09:01 +0000minigrim0(~minigrim0@2a01:4f9:6b:3416:68ba:8dff:fe58:a5ea)
2023-06-23 04:09:01 +0000edwtjo(~edwtjo@fsf/member/edwtjo)
2023-06-23 04:09:01 +0000brprice(~brprice@user/brprice)
2023-06-23 04:09:01 +0000riatre(~quassel@2001:310:6000:f::5198:1)
2023-06-23 04:09:01 +0000sphynx(~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288)
2023-06-23 04:09:01 +0000mniip(mniip@libera/staff/mniip)
2023-06-23 04:09:01 +0000AWizzArd(~code@user/awizzard)
2023-06-23 04:09:01 +0000cjay(cjay@nerdbox.nerd2nerd.org)
2023-06-23 04:09:01 +0000tinwood(~tinwood@canonical/tinwood)
2023-06-23 04:09:01 +0000it_(~quassel@v2202212189510211193.supersrv.de)
2023-06-23 04:09:01 +0000sefidel(~sefidel@user/sefidel)
2023-06-23 04:09:01 +0000nisstyre(wes@user/nisstyre)
2023-06-23 04:09:01 +0000df(~ben@justworks.xyz)
2023-06-23 04:09:01 +0000Ram-Z(Ram-Z@2a01:7e01::f03c:91ff:fe57:d2df)
2023-06-23 04:09:01 +0000litharge(litharge@libera/bot/litharge)
2023-06-23 04:09:01 +0000hook54321(sid149355@user/hook54321)
2023-06-23 04:09:01 +0000nrr_____(sid20938@id-20938.lymington.irccloud.com)
2023-06-23 04:09:01 +0000bbhoss(sid18216@id-18216.tinside.irccloud.com)
2023-06-23 04:09:01 +0000mrvdb(~mrvdb@185.92.221.186)
2023-06-23 04:09:01 +0000SethTisue(sid14912@id-14912.ilkley.irccloud.com)
2023-06-23 04:09:01 +0000davetapley(sid666@id-666.uxbridge.irccloud.com)
2023-06-23 04:09:01 +0000gaze___(sid387101@id-387101.helmsley.irccloud.com)
2023-06-23 04:09:01 +0000SanchayanMaity(sid478177@id-478177.hampstead.irccloud.com)
2023-06-23 04:09:01 +0000sweater(~sweater@206.81.18.26)
2023-06-23 04:09:01 +0000dyniec(~dyniec@mail.dybiec.info)
2023-06-23 04:09:01 +0000jocke-l(jocke-l@a.x0.is)
2023-06-23 04:09:01 +0000yvan-sraka(sid419690@id-419690.lymington.irccloud.com)
2023-06-23 04:09:01 +0000dispater(~dispater@user/brprice)
2023-06-23 04:09:01 +0000orcus(~orcus@user/brprice)
2023-06-23 04:09:01 +0000cbarrett(sid192934@id-192934.helmsley.irccloud.com)
2023-06-23 04:09:01 +0000pjlsergeant__(sid143467@id-143467.hampstead.irccloud.com)
2023-06-23 04:09:01 +0000grfn(sid449115@id-449115.helmsley.irccloud.com)
2023-06-23 04:09:01 +0000scav(sid309693@user/scav)
2023-06-23 04:09:01 +0000wallymathieu(sid533252@id-533252.uxbridge.irccloud.com)
2023-06-23 04:09:01 +0000chymera(~chymera@ns1000526.ip-51-81-46.us)
2023-06-23 04:09:01 +0000lieven(~mal@ns2.wyrd.be)
2023-06-23 04:09:01 +0000ChanServ(ChanServ@services.libera.chat)
2023-06-23 04:09:01 +0000h2t(~h2t@user/h2t)
2023-06-23 04:09:01 +0000nurupo(~nurupo.ga@user/nurupo)
2023-06-23 04:09:01 +0000ario(~ario@159.65.220.102)
2023-06-23 04:09:01 +0000oljenkins(~philipp@p5dec4bb3.dip0.t-ipconnect.de)
2023-06-23 04:09:01 +0000lyxia(~lyxia@poisson.chat)
2023-06-23 04:09:01 +0000niko(niko@libera/staff/niko)
2023-06-23 04:09:01 +0000sodium.libera.chat+o ChanServ
2023-06-23 04:09:01 +0000laman3(~laman@rego.ai)
2023-06-23 04:09:01 +0000bcoppens_(~bartcopp@vpn2.bartcoppens.be)
2023-06-23 04:09:01 +0000kosmikus_(~kosmikus@nullzig.kosmikus.org)
2023-06-23 04:09:01 +0000acro(~acro@user/acro)
2023-06-23 04:09:01 +0000xstill_0(xstill@fimu/xstill)
2023-06-23 04:09:01 +0000bramhaag(~bramhaag@134.195.121.39)
2023-06-23 04:09:01 +0000cawfee(~root@2406:3003:2077:2758::babe)
2023-06-23 04:09:01 +0000megaTherion(~therion@unix.io)
2023-06-23 04:09:01 +0000ridcully(~ridcully@p57b52f2c.dip0.t-ipconnect.de)
2023-06-23 04:09:01 +0000lightandlight(sid135476@id-135476.helmsley.irccloud.com)
2023-06-23 04:09:01 +0000Clint(~Clint@user/clint)
2023-06-23 04:09:01 +0000Benzi-Junior(~BenziJuni@88-149-64-112.du.xdsl.is)
2023-06-23 04:09:01 +0000piele(~piele@tbonesteak.creativeserver.net)
2023-06-23 04:09:01 +0000JSharp(sid4580@id-4580.lymington.irccloud.com)
2023-06-23 04:09:01 +0000heartburn(~gass@2a00:d880:3:1::b1e4:b241)
2023-06-23 04:09:01 +0000bionade24(~bionade24@2a03:4000:33:45b::1)
2023-06-23 04:09:01 +0000anpad(~pandeyan@user/anpad)
2023-06-23 04:09:01 +0000adamCS(~adamCS@ec2-34-207-160-255.compute-1.amazonaws.com)
2023-06-23 04:09:01 +0000glider(~glider@user/glider)
2023-06-23 04:09:01 +0000anderson(~anderson@user/anderson)
2023-06-23 04:09:01 +0000heath2(~heath@user/heath)
2023-06-23 04:09:01 +0000Adran(~adran@botters/adran)
2023-06-23 04:09:01 +0000Vajb(~Vajb@2001:999:484:a37d:e618:9886:4843:f5d8)
2023-06-23 04:09:01 +0000ames(~amelia@offtopia/offtopian/amelia)
2023-06-23 04:09:01 +0000bgamari(~bgamari@64.223.233.113)
2023-06-23 04:09:01 +0000hsw(~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net)
2023-06-23 04:09:01 +0000hays(rootvegeta@fsf/member/hays)
2023-06-23 04:09:01 +0000adanwan(~adanwan@gateway/tor-sasl/adanwan)
2023-06-23 04:09:01 +0000shachaf(~shachaf@user/shachaf)
2023-06-23 04:09:01 +0000drdo(~drdo@bl8-153-185.dsl.telepac.pt)
2023-06-23 04:09:01 +0000czy(~user@host-140-26.ilcub310.champaign.il.us.clients.pavlovmedia.net)
2023-06-23 04:09:01 +0000Nikopol(nikopol@user/astrorigin)
2023-06-23 04:09:01 +0000juri_(~juri@84-19-175-187.pool.ovpn.com)
2023-06-23 04:09:01 +0000kraftwerk28(~kraftwerk@178.62.210.83)
2023-06-23 04:09:01 +0000koolazer(~koo@user/koolazer)
2023-06-23 04:09:01 +0000Everything(~Everythin@static.208.206.21.65.clients.your-server.de)
2023-06-23 04:09:01 +0000earthy(~arthurvl@2a02-a469-f5e2-1-83d2-ca43-57a2-dc81.fixed6.kpn.net)
2023-06-23 04:09:01 +0000hexology(~hexology@user/hexology)
2023-06-23 04:09:01 +0000MangoIV[m](~mangoivma@2001:470:69fc:105::2:8417)
2023-06-23 04:09:01 +0000Hafydd(~Hafydd@user/hafydd)
2023-06-23 04:09:01 +0000peddie(~peddie@2001:470:69fc:105::25d)
2023-06-23 04:09:01 +0000jean-paul[m](~jean-paul@2001:470:69fc:105::d1ab)
2023-06-23 04:09:01 +0000fgaz(~fgaz@2001:470:69fc:105::842)
2023-06-23 04:09:01 +0000Null_A[m](~jasonjckn@2001:470:69fc:105::bb85)
2023-06-23 04:09:01 +0000ericson2314(~ericson23@2001:470:69fc:105::70c)
2023-06-23 04:09:01 +0000ocharles[m](~ocharlesm@2001:470:69fc:105::3:5899)
2023-06-23 04:09:01 +0000alanz(~alanz@2001:470:69fc:105::2:49a6)
2023-06-23 04:09:01 +0000maralorn(~maralorn@2001:470:69fc:105::251)
2023-06-23 04:09:01 +0000sm(~sm@plaintextaccounting/sm)
2023-06-23 04:09:01 +0000nomagno(~nomagno@2001:470:69fc:105::c1f0)
2023-06-23 04:09:01 +0000Christoph[m](~hpotsirhc@2001:470:69fc:105::2ff8)
2023-06-23 04:09:01 +0000Deide(~deide@user/deide)
2023-06-23 04:09:01 +0000smichel17[m](~smichel17@2001:470:69fc:105::2d32)
2023-06-23 04:09:01 +0000ManofLetters[m](~manoflett@2001:470:69fc:105::3be)
2023-06-23 04:09:01 +0000fendor[m](~fendormat@2001:470:69fc:105::fcbd)
2023-06-23 04:09:01 +0000jmcantrell(~jmcantrel@user/jmcantrell)
2023-06-23 04:09:01 +0000JensPetersen[m](~juhp@2001:470:69fc:105::6e9)
2023-06-23 04:09:01 +0000jorwas[m](~jorwasmat@2001:470:69fc:105::3:60e7)
2023-06-23 04:09:01 +0000Guillaum[m](~guiboumat@2001:470:69fc:105::1:72ac)
2023-06-23 04:09:01 +0000alexfmpe[m](~alexfmpem@2001:470:69fc:105::38ba)
2023-06-23 04:09:01 +0000chreekat(~chreekat@2001:470:69fc:105::16b5)
2023-06-23 04:09:01 +0000Matthew|m(~arathorn@2001:470:69fc:105::1f)
2023-06-23 04:09:01 +0000elevenkb(~elevenkb@2001:470:69fc:105::2:cb89)
2023-06-23 04:09:01 +0000VarikValefor[m](~varikvale@2001:470:69fc:105::a5d)
2023-06-23 04:09:01 +0000bgamari[m](~bgamari@2001:470:69fc:105::c7b9)
2023-06-23 04:09:01 +0000supersven[m](~supersven@2001:470:69fc:105::31b6)
2023-06-23 04:09:01 +0000zebrag[m](~inkbottle@2001:470:69fc:105::2ff5)
2023-06-23 04:09:01 +0000paulapatience(~paulapati@2001:470:69fc:105::16a4)
2023-06-23 04:09:01 +0000maerwald[m](~maerwaldm@2001:470:69fc:105::1ee)
2023-06-23 04:09:01 +0000shapr[m](~shaprcofr@2001:470:69fc:105::2:d107)
2023-06-23 04:09:01 +0000elvishjerricco(~elvishjer@2001:470:69fc:105::6172)
2023-06-23 04:09:01 +0000hsiktas[m](~hsiktasm]@2001:470:69fc:105::30d4)
2023-06-23 04:09:01 +0000kosmikus[m](~andresloe@2001:470:69fc:105::95d)
2023-06-23 04:09:01 +0000ozkutuk[m](~ozkutuk@2001:470:69fc:105::2:9af8)
2023-06-23 04:09:01 +0000geekosaur[m](~geekosaur@xmonad/geekosaur)
2023-06-23 04:09:01 +0000joyfulmantis[m](~joyfulman@2001:470:69fc:105::3:400a)
2023-06-23 04:09:01 +0000Artem[m](~artemtype@2001:470:69fc:105::75b)
2023-06-23 04:09:01 +0000zfnmxt(~zfnmxt@user/zfnmxt)
2023-06-23 04:09:01 +0000nicm[m](~nicmollel@2001:470:69fc:105::1:feeb)
2023-06-23 04:09:01 +0000kadoban(~kadoban@user/kadoban)
2023-06-23 04:09:01 +0000SeanKing[m](~seankingm@2001:470:69fc:105::cf9c)
2023-06-23 04:09:01 +0000tbidne[m](~tbidnemat@2001:470:69fc:105::3:6d42)
2023-06-23 04:09:01 +0000Clinton[m](~clintonme@2001:470:69fc:105::2:31d4)
2023-06-23 04:09:01 +0000m1-s[m](~m1-smatri@2001:470:69fc:105::2:39da)
2023-06-23 04:09:01 +0000aaronv(~aaronv@user/aaronv)
2023-06-23 04:09:01 +0000kleenestar[m](~kleenesta@2001:470:69fc:105::3:6d78)
2023-06-23 04:09:01 +0000aerc[m](~aercmatri@2001:470:69fc:105::3:67b9)
2023-06-23 04:09:01 +0000oak-(~oak-@2001:470:69fc:105::fcd)
2023-06-23 04:09:01 +0000Daniel[m]1(~danieltan@2001:470:69fc:105::3:6e5e)
2023-06-23 04:09:01 +0000ners[m](~nersnixos@2001:470:69fc:105::3:648b)
2023-06-23 04:09:01 +0000somerandomnick[m(~somerando@2001:470:69fc:105::3:4f2e)
2023-06-23 04:09:01 +0000lilpotent_jlemen(~lilpotent@2001:470:69fc:105::3:6eb6)
2023-06-23 04:09:01 +0000romes[m](~romesmatr@2001:470:69fc:105::2:1660)
2023-06-23 04:09:01 +0000jade[m]1(~jade256th@2001:470:69fc:105::3:58df)
2023-06-23 04:09:01 +0000akadude[m](~akadudema@2001:470:69fc:105::2:5bf7)
2023-06-23 04:09:01 +0000marinelli[m](~marinelli@2001:470:69fc:105::2d8)
2023-06-23 04:09:01 +0000xrvdg[m](~xrvdgmatr@2001:470:69fc:105::3:625a)
2023-06-23 04:09:01 +0000teo(~teo@user/teo)
2023-06-23 04:09:01 +0000eldritchcookie[m(~eldritchc@2001:470:69fc:105::2:d53c)
2023-06-23 04:09:01 +0000hellwolf[m](~hellwolfm@2001:470:69fc:105::3:6a4)
2023-06-23 04:09:01 +0000Las[m]1(~lasmatrix@2001:470:69fc:105::74e)
2023-06-23 04:09:01 +0000Ross[m](~zhichuche@2001:470:69fc:105::3:584b)
2023-06-23 04:09:01 +0000DustinStiles[m](~duwstiles@2001:470:69fc:105::3:699b)
2023-06-23 04:09:01 +0000polykernel[m](~polykerne@user/polykernel)
2023-06-23 04:09:01 +0000nyc(~nyc@user/nyc)
2023-06-23 04:09:01 +0000pie_(~pie_bnc@user/pie/x-2818909)
2023-06-23 04:09:01 +0000emergence(emergence@2607:5300:60:5910:dcad:beff:feef:5bc)
2023-06-23 04:09:01 +0000carbolymer(~carbolyme@dropacid.net)
2023-06-23 04:09:01 +0000joeyh(joeyh@2600:3c03::f03c:91ff:fe73:b0d2)
2023-06-23 04:09:01 +0000Buliarous(~gypsydang@46.232.210.139)
2023-06-23 04:09:01 +0000cross(~cross@spitfire.i.gajendra.net)
2023-06-23 04:09:01 +0000hnOsmium0001(~hnosm@user/hnOsmium0001)
2023-06-23 04:09:01 +0000mrmr(~mrmr@user/mrmr)
2023-06-23 04:09:01 +0000ystael(~ystael@user/ystael)
2023-06-23 04:09:01 +0000barrucadu(~barrucadu@carcosa.barrucadu.co.uk)
2023-06-23 04:09:01 +0000tureba(~tureba@tureba.org)
2023-06-23 04:09:01 +0000justache(~justache@user/justache)
2023-06-23 04:09:01 +0000adziahel(~adziahelm@2001:470:69fc:105::b4d)
2023-06-23 04:09:01 +0000Franciman(~Franciman@mx1.fracta.dev)
2023-06-23 04:09:01 +0000haskl(~haskl@user/haskl)
2023-06-23 04:09:02 +0000tessier(~treed@ec2-184-72-149-67.compute-1.amazonaws.com)
2023-06-23 04:09:02 +0000Maxdamantus(~Maxdamant@user/maxdamantus)
2023-06-23 04:09:02 +0000pierrot(~pi@user/pierrot)
2023-06-23 04:09:02 +0000Putonlalla(~Putonlall@it-cyan.it.jyu.fi)
2023-06-23 04:09:02 +0000jludwig(~justin@li657-110.members.linode.com)
2023-06-23 04:09:02 +0000gabiruh(~gabiruh@vps19177.publiccloud.com.br)
2023-06-23 04:09:02 +0000lawt(~lawt@129.159.36.129)
2023-06-23 04:09:02 +0000finsternis(~X@23.226.237.192)
2023-06-23 04:09:02 +0000fbytez(~uid@user/fbytez)
2023-06-23 04:09:02 +0000Nosrep(~Nosrep@user/nosrep)
2023-06-23 04:09:02 +0000Sciencentistguy(~sciencent@hacksoc/ordinary-member)
2023-06-23 04:09:02 +0000nek0(~nek0@2a01:4f8:222:2b41::12)
2023-06-23 04:09:02 +0000sajith(~sajith@user/sajith)
2023-06-23 04:09:02 +0000krjst(~krjst@2604:a880:800:c1::16b:8001)
2023-06-23 04:09:02 +0000mjacob(~mjacob@adrastea.uberspace.de)
2023-06-23 04:09:02 +0000madnight(~madnight@static.59.103.201.195.clients.your-server.de)
2023-06-23 04:09:02 +0000forell(~forell@user/forell)
2023-06-23 04:09:02 +0000ggranberry(sid267884@id-267884.uxbridge.irccloud.com)
2023-06-23 04:09:02 +0000kronicma1(user40967@neotame.csclub.uwaterloo.ca)
2023-06-23 04:09:02 +0000Momentum(momentum@tilde.team)
2023-06-23 04:09:02 +0000dextaa(~DV@user/dextaa)
2023-06-23 04:09:02 +0000CalculusCats(NyaaTheKit@user/calculuscat)
2023-06-23 04:09:02 +0000chiselfuse(~chiselfus@user/chiselfuse)
2023-06-23 04:09:02 +0000_d0t(~{-d0t-}@user/-d0t-/x-7915216)
2023-06-23 04:09:02 +0000sclv(sid39734@haskell/developer/sclv)
2023-06-23 04:09:02 +0000pepeiborra(sid443799@id-443799.ilkley.irccloud.com)
2023-06-23 04:09:02 +0000hexagoxel(~hexagoxel@2a01:4f8:c0c:e::2)
2023-06-23 04:09:02 +0000mhatta(~mhatta@www21123ui.sakura.ne.jp)
2023-06-23 04:09:02 +0000hackyhacker(~hackyhack@2a05:f480:1400:24b2:5400:4ff:fe76:a8f3)
2023-06-23 04:09:02 +0000Unode(~Unode@fg-ext-220.embl.de)
2023-06-23 04:09:02 +0000incertia(~incertia@209.122.71.127)
2023-06-23 04:09:02 +0000loonycyborg(loonycybor@wesnoth/developer/loonycyborg)
2023-06-23 04:09:02 +0000Profpatsch(~Profpatsc@static.88-198-193-255.clients.your-server.de)
2023-06-23 04:09:02 +0000sa(sid1055@id-1055.tinside.irccloud.com)
2023-06-23 04:09:02 +0000remedan(~remedan@ip-94-112-0-18.bb.vodafone.cz)
2023-06-23 04:09:02 +0000ddrone[m](~ddronemat@2001:470:69fc:105::3:70d5)
2023-06-23 04:09:02 +0000dexter1(dexter@2a01:7e00::f03c:91ff:fe86:59ec)
2023-06-23 04:09:02 +0000immae(~immae@2a01:4f8:141:53e7::)
2023-06-23 04:09:02 +0000micro(~micro@user/micro)
2023-06-23 04:09:02 +0000kristjansson_(sid126207@id-126207.tinside.irccloud.com)
2023-06-23 04:09:02 +0000systemfault(sid267009@id-267009.uxbridge.irccloud.com)
2023-06-23 04:09:02 +0000gmc(sid58314@id-58314.ilkley.irccloud.com)
2023-06-23 04:09:02 +0000dragestil(~znc@user/dragestil)
2023-06-23 04:09:02 +0000ProofTechnique_(sid79547@id-79547.ilkley.irccloud.com)
2023-06-23 04:09:02 +0000ringo__(~ringo@157.230.117.128)
2023-06-23 04:09:02 +0000end^(~end^@user/end/x-0094621)
2023-06-23 04:09:02 +0000integral(sid296274@user/integral)
2023-06-23 04:09:02 +0000AkechiShiro(~licht@user/akechishiro)
2023-06-23 04:09:02 +0000echoreply(~echoreply@45.32.163.16)
2023-06-23 04:09:02 +0000glowcoil(sid3405@id-3405.tinside.irccloud.com)
2023-06-23 04:09:02 +0000end\(~end^@user/end/x-0094621)
2023-06-23 04:09:02 +0000davl(~davl@207.154.228.18)
2023-06-23 04:09:02 +0000tritlo_(sid58727@id-58727.hampstead.irccloud.com)
2023-06-23 04:09:02 +0000b20n(sid115913@id-115913.uxbridge.irccloud.com)
2023-06-23 04:09:02 +0000dsal(sid13060@id-13060.lymington.irccloud.com)
2023-06-23 04:09:02 +0000quintasan(~quassel@quintasan.pl)
2023-06-23 04:09:02 +0000ralu1(~ralu@static.211.245.203.116.clients.your-server.de)
2023-06-23 04:09:02 +0000idnar(sid12240@debian/mithrandi)
2023-06-23 04:09:02 +0000Cheery(~cheery@server-239-7.tentacle.cloud)
2023-06-23 04:09:02 +0000mzg(mzg@lazy.unconscious.biz)
2023-06-23 04:09:02 +0000CAT_S(apic@brezn3.muc.ccc.de)
2023-06-23 04:09:02 +0000Logio(em@kapsi.fi)
2023-06-23 04:09:02 +0000mon_aaraj(~montchncs@2001:470:69fc:105::8e6b)
2023-06-23 04:09:02 +0000paddymahoney(~paddymaho@cpe883d24bcf597-cmbc4dfb741f80.cpe.net.cable.rogers.com)
2023-06-23 04:09:02 +0000bcmiller(~bm3719@66.42.95.185)
2023-06-23 04:09:02 +0000notzmv(~zmv@user/notzmv)
2023-06-23 04:09:02 +0000pieguy128(~pieguy128@bras-base-mtrlpq5031w-grc-56-65-92-162-12.dsl.bell.ca)
2023-06-23 04:09:02 +0000Ranhir(~Ranhir@157.97.53.139)
2023-06-23 04:09:02 +0000nadja(~dequbed@2a01:4f8:201:34c7::1)
2023-06-23 04:09:02 +0000dy(sid3438@user/dy)
2023-06-23 04:09:02 +0000conjunctive(sid433686@2a03:5180:f:1::6:9e16)
2023-06-23 04:09:02 +0000hammond(proscan@gateway02.insomnia247.nl)
2023-06-23 04:09:02 +0000hueso(~root@user/hueso)
2023-06-23 04:09:02 +0000p3n(~p3n@217.198.124.246)
2023-06-23 04:09:02 +0000AlexNoo(~AlexNoo@178.34.163.88)
2023-06-23 04:09:02 +0000astra(sid289983@2a03:5180:f:4::4:6cbf)
2023-06-23 04:09:02 +0000sa1(sid7690@id-7690.ilkley.irccloud.com)
2023-06-23 04:09:02 +0000rburkholder(~blurb@96.45.2.121)
2023-06-23 04:09:02 +0000josias(~mottmatri@2001:470:69fc:105::b6c)
2023-06-23 04:09:02 +0000tired(~tired@user/tired)
2023-06-23 04:09:02 +0000bradparker(sid262931@id-262931.uxbridge.irccloud.com)
2023-06-23 04:09:02 +0000dmj`(sid72307@id-72307.hampstead.irccloud.com)
2023-06-23 04:09:02 +0000jaror[m](~jaror@2001:470:69fc:105::265)
2023-06-23 04:09:02 +0000Wojciech_K(~Wojciech_@2a01:4f9:6a:18a8::239)
2023-06-23 04:09:02 +0000brettgilio(~brettgili@2001:19f0:5c00:27fc:5400:4ff:fe7a:1f8e)
2023-06-23 04:09:02 +0000rembo10(~rembo10@2a01:4f9:c010:b5b9::1)
2023-06-23 04:09:02 +0000Adeon(sid418992@2a03:5180:f:2::6:64b0)
2023-06-23 04:09:02 +0000dove(~irc@2600:3c00:e000:287::1)
2023-06-23 04:09:02 +0000nshepperd(nshepperd@2600:3c03::f03c:92ff:fe28:92c9)
2023-06-23 04:09:02 +0000dagit(~dagit@2001:558:6025:38:71c6:9d58:7252:8976)
2023-06-23 04:09:02 +0000driib(~driib@vmi931078.contaboserver.net)
2023-06-23 04:09:02 +0000alinab_(sid468903@id-468903.helmsley.irccloud.com)
2023-06-23 04:09:02 +0000parseval(sid239098@2a03:5180:f:1::3:a5fa)
2023-06-23 04:09:02 +0000S11001001(sid42510@id-42510.ilkley.irccloud.com)
2023-06-23 04:09:02 +0000russruss2(~russruss@my.russellmcc.com)
2023-06-23 04:09:02 +0000Firedancer(sid336191@id-336191.hampstead.irccloud.com)
2023-06-23 04:09:02 +0000gawen(~gawen@user/gawen)
2023-06-23 04:09:02 +0000mira(~aranea@wireguard/contributorcat/mira)
2023-06-23 04:09:02 +0000Buggys-(Buggys@shelltalk.net)
2023-06-23 04:09:02 +0000jinsl(~jinsl@2408:8207:2558:8870:211:32ff:fec8:6aea)
2023-06-23 04:09:02 +0000edwardk(sid47016@haskell/developer/edwardk)
2023-06-23 04:09:02 +0000c_wraith(~c_wraith@adjoint.us)
2023-06-23 04:09:02 +0000bliminse(~bliminse@user/bliminse)
2023-06-23 04:09:02 +0000hololeap(~quassel@user/hololeap)
2023-06-23 04:09:02 +0000abrar_(~abrar@pool-72-78-199-186.phlapa.fios.verizon.net)
2023-06-23 04:09:02 +0000danso(~danso@user/danso)
2023-06-23 04:09:02 +0000Igloo(~ian@matrix.chaos.earth.li)
2023-06-23 04:09:02 +0000jil(~user@vps-15050500.vps.ovh.net)
2023-06-23 04:09:02 +0000winny(~weechat@user/winny)
2023-06-23 04:09:02 +0000zer0bitz(~zer0bitz@user/zer0bitz)
2023-06-23 04:09:02 +0000Hobbyboy(Hobbyboy@hobbyboy.co.uk)
2023-06-23 04:09:02 +0000stilgart(~Christoph@chezlefab.net)
2023-06-23 04:09:02 +0000dfordvm(~dfordivam@160.16.87.223.v6.sakura.ne.jp)
2023-06-23 04:09:02 +0000bah(~bah@l1.tel)
2023-06-23 04:09:02 +0000alpm(~alp@user/alp)
2023-06-23 04:09:02 +0000ysh____(sid6017@id-6017.ilkley.irccloud.com)
2023-06-23 04:09:02 +0000yandere(sid467876@id-467876.ilkley.irccloud.com)
2023-06-23 04:09:02 +0000jackdk(sid373013@cssa/jackdk)
2023-06-23 04:09:02 +0000acertain_(sid470584@id-470584.hampstead.irccloud.com)
2023-06-23 04:09:02 +0000edmundnoble_(sid229620@id-229620.helmsley.irccloud.com)
2023-06-23 04:09:02 +0000Pent_(sid313808@id-313808.lymington.irccloud.com)
2023-06-23 04:09:02 +0000PotatoGim_(sid99505@id-99505.lymington.irccloud.com)
2023-06-23 04:09:02 +0000delyan_(sid523379@id-523379.hampstead.irccloud.com)
2023-06-23 04:09:02 +0000lexi-lambda(sid92601@hampstead.irccloud.com)
2023-06-23 04:09:02 +0000SrPx(sid108780@id-108780.uxbridge.irccloud.com)
2023-06-23 04:09:02 +0000NiKaN(sid385034@id-385034.helmsley.irccloud.com)
2023-06-23 04:09:02 +0000phaazon(~phaazon@2001:41d0:a:fe76::1)
2023-06-23 04:09:02 +0000jbalint(~jbalint@071-090-119-177.res.spectrum.com)
2023-06-23 04:09:02 +0000finnekit(~finnekit@fsf/member/finnekit)
2023-06-23 04:09:02 +0000rune_(sid21167@id-21167.ilkley.irccloud.com)
2023-06-23 04:09:02 +0000eL_Bart0(eL_Bart0@dietunichtguten.org)
2023-06-23 04:09:02 +0000skippy(sid26890@user/slice)
2023-06-23 04:09:02 +0000ski(~ski@remote11.chalmers.se)
2023-06-23 04:09:02 +0000img(~img@user/img)
2023-06-23 04:09:02 +0000shawwwn(sid6132@id-6132.helmsley.irccloud.com)
2023-06-23 04:09:02 +0000Ellenor(ellenor@2001:19f0:8001:279::2000:1)
2023-06-23 04:09:02 +0000kaskal(~kaskal@2001:4bb8:2dd:a79d:1a7:8529:b79b:cfa)
2023-06-23 04:09:02 +0000son0p(~ff@181.136.122.143)
2023-06-23 04:09:02 +0000aku(~aku@65.108.245.241)
2023-06-23 04:09:02 +0000severen[m](~severenmt@2001:470:69fc:105::2:9932)
2023-06-23 04:09:02 +0000Taneb(~Taneb@2001:41c8:51:10d:aaaa:0:aaaa:0)
2023-06-23 04:09:02 +0000urdh(~urdh@user/urdh)
2023-06-23 04:09:02 +0000qhong(~qhong@rescomp-21-400677.stanford.edu)
2023-06-23 04:09:02 +0000yahb2(~yahb2@2a01:4f8:c0c:5c7b::2)
2023-06-23 04:09:02 +0000TimWolla(~timwolla@2a01:4f8:150:6153:beef::6667)
2023-06-23 04:09:02 +0000maxfan8_(~max@2a01:4f8:192:5356::2)
2023-06-23 04:09:02 +0000[_________](~oos95GWG@user/oos95GWG)
2023-06-23 04:09:02 +0000bwe(~bwe@2a01:4f8:1c1c:4878::2)
2023-06-23 04:09:02 +0000s4msung(4RqcWUWWqt@user/s4msung)
2023-06-23 04:09:02 +0000yushyin(tGG5pLVJ8Y@2a01:4f8:1c17:80de::2)
2023-06-23 04:09:02 +0000drlkf(~drlkf@192.184.163.34.bc.googleusercontent.com)
2023-06-23 04:09:02 +0000cods(~fred@82-65-232-44.subs.proxad.net)
2023-06-23 04:09:02 +0000daemon_(uid606752@id-606752.uxbridge.irccloud.com)
2023-06-23 04:09:02 +0000ham(~ham@user/ham)
2023-06-23 04:09:02 +0000koala_man(~vidar@157.146.251.23.bc.googleusercontent.com)
2023-06-23 04:09:02 +0000Luj(~Luj@2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb)
2023-06-23 04:09:02 +0000swistak(~swistak@185.21.216.141)
2023-06-23 04:09:02 +0000dminuoso(~dminuoso@user/dminuoso)
2023-06-23 04:09:02 +0000Me-me(~me-me@2602:ff16:3:0:1:dc:beef:d00d)
2023-06-23 04:09:02 +0000fr33domlover(~fr33domlo@towards.vision)
2023-06-23 04:09:02 +0000amir(sid22336@user/amir)
2023-06-23 04:09:02 +0000andreas303(andreas303@is.drunk.and.ready-to.party)
2023-06-23 04:09:02 +0000kitzman(~kitzman@user/dekenevs)
2023-06-23 04:09:02 +0000darkling(~darkling@2001:ba8:1f1:f0e6::2)
2023-06-23 04:09:02 +0000isomorpheme[m](~isomorphe@2001:470:69fc:105::3:731a)
2023-06-23 04:09:02 +0000dumptruckman(~dumptruck@143-42-239-71.ip.linodeusercontent.com)
2023-06-23 04:09:02 +0000jinsun(~jinsun@user/jinsun)
2023-06-23 04:09:02 +0000apache(apache2@anubis.0x90.dk)
2023-06-23 04:09:02 +0000Lears(~Leary]@user/Leary/x-0910699)
2023-06-23 04:09:02 +0000TMA(tma@twin.jikos.cz)
2023-06-23 04:09:02 +0000monochrom(trebla@216.138.220.146)
2023-06-23 04:09:02 +0000thaumavorio(~thaumavor@162.243.123.105)
2023-06-23 04:09:02 +0000Dykam(Dykam@dykam.nl)
2023-06-23 04:09:02 +0000disconnect3d(~disconnec@user/disconnect3d)
2023-06-23 04:09:02 +0000ghostbuster(~admin@user/ghostbuster)
2023-06-23 04:09:02 +0000davean(~davean@67.205.182.208)
2023-06-23 04:09:02 +0000tomsmeding(~tomsmedin@static.21.109.88.23.clients.your-server.de)
2023-06-23 04:09:02 +0000dunj3(~dunj3@kingdread.de)
2023-06-23 04:09:02 +0000hpc(~juzz@ip98-169-35-163.dc.dc.cox.net)
2023-06-23 04:09:02 +0000esph(~weechat@user/esph)
2023-06-23 04:09:02 +0000int-e(~noone@int-e.eu)
2023-06-23 04:09:02 +0000Rembane(~Rembane@178.79.177.36)
2023-06-23 04:09:02 +0000tomku(~tomku@user/tomku)
2023-06-23 04:09:02 +0000shane(~shane@ana.rch.ist)
2023-06-23 04:09:02 +0000Teacup(~teacup@user/teacup)
2023-06-23 04:09:02 +0000Ekho(~Ekho@user/ekho)
2023-06-23 04:09:02 +0000tomboy64(~tomboy64@user/tomboy64)
2023-06-23 04:09:02 +0000dolio(~dolio@130.44.134.54)
2023-06-23 04:09:02 +0000ryantrinkle(~ryantrink@204.2.90.61)
2023-06-23 04:09:02 +0000Angelz(Angelz@2605:6400:30:fc15:d55b:fa6c:bd14:9973)
2023-06-23 04:09:02 +0000totbwf(sid402332@id-402332.uxbridge.irccloud.com)
2023-06-23 04:09:02 +0000lottaquestions(~nick@2607:fa49:503f:6d00:ee98:182c:4ae3:99fe)
2023-06-23 04:09:02 +0000siers(~ij@user/ij)
2023-06-23 04:09:02 +0000robertm(robertm@lattice.rojoma.com)
2023-06-23 04:09:02 +0000srk(~sorki@user/srk)
2023-06-23 04:09:02 +0000xerox(~edi@user/edi)
2023-06-23 04:09:02 +0000stallmanator(~stallmana@user/stallmanator)
2023-06-23 04:09:02 +0000noctux1(88FTKVRINY@user/noctux)
2023-06-23 04:09:02 +0000bsima(~bsima@143.198.118.179)
2023-06-23 04:09:02 +0000user___(~user@162.255.84.96)
2023-06-23 04:09:02 +0000troydm(~troydm@user/troydm)
2023-06-23 04:09:02 +0000ggVGc(~ggVGc@a.lowtech.earth)
2023-06-23 04:09:02 +0000perrierjouet(~perrier-j@modemcable048.127-56-74.mc.videotron.ca)
2023-06-23 04:09:02 +0000Katarushisu(~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net)
2023-06-23 04:09:02 +0000pointlessslippe1(~pointless@212.82.82.3)
2023-06-23 04:09:02 +0000cheater(~Username@user/cheater)
2023-06-23 04:09:02 +0000Fangs(sid141280@id-141280.hampstead.irccloud.com)
2023-06-23 04:09:02 +0000Boarders___(sid425905@id-425905.lymington.irccloud.com)
2023-06-23 04:09:02 +0000m1dnight(~christoph@78-22-4-67.access.telenet.be)
2023-06-23 04:09:02 +0000yaroot(~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp)
2023-06-23 04:09:02 +0000hyvoid(~hyenavoid@222-0-178-69.static.gci.net)
2023-06-23 04:09:02 +0000carter(sid14827@id-14827.helmsley.irccloud.com)
2023-06-23 04:09:02 +0000texasmynsted(~username@99.96.221.112)
2023-06-23 04:09:02 +0000truckasaurus(sid457088@id-457088.helmsley.irccloud.com)
2023-06-23 04:09:02 +0000Guest5986(~m-mzmz6l@vmi833741.contaboserver.net)
2023-06-23 04:09:02 +0000tom__(~tom@2a00:23c8:970c:4801:5b6a:e81b:79dc:f684)
2023-06-23 04:09:02 +0000Vq(~vq@90-227-195-9-no77.tbcn.telia.com)
2023-06-23 04:09:02 +0000SoF(~skius@user/skius)
2023-06-23 04:09:02 +0000ncf(~n@monade.li)
2023-06-23 04:09:02 +0000tolt(~weechat-h@li219-154.members.linode.com)
2023-06-23 04:09:02 +0000AndreasK(sid320732@id-320732.uxbridge.irccloud.com)
2023-06-23 04:09:02 +0000APic(apic@apic.name)
2023-06-23 04:09:02 +0000stiell_(~stiell@gateway/tor-sasl/stiell)
2023-06-23 04:09:02 +0000edm(sid147314@2a03:5180:f:4::2:3f72)
2023-06-23 04:09:02 +0000snek(sid280155@2a03:5180:f:2::4:465b)
2023-06-23 04:09:02 +0000mustafa(sid502723@rockylinux/releng/mustafa)
2023-06-23 04:09:02 +0000Inst_(~Inst@2601:6c4:4081:2fc0:61ec:e42a:c603:c093)
2023-06-23 04:09:02 +0000Arsen(arsen@gentoo/developer/managarm.dev.Arsen)
2023-06-23 04:09:02 +0000natto(~natto@140.238.225.67)
2023-06-23 04:09:02 +0000zups(~meow@2a01:4f9:c010:6036::1)
2023-06-23 04:09:02 +0000ddellacosta(~ddellacos@146.70.166.166)
2023-06-23 04:09:02 +0000acarrico(~acarrico@dhcp-68-142-49-163.greenmountainaccess.net)
2023-06-23 04:09:02 +0000Cale(~cale@cpe80d04ade0a03-cm80d04ade0a01.cpe.net.cable.rogers.com)
2023-06-23 04:09:02 +0000ByronJohnson(~bairyn@50.250.232.19)
2023-06-23 04:09:02 +0000witcher(~witcher@wiredspace.de)
2023-06-23 04:09:02 +0000defanor(~defanor@tart.uberspace.net)
2023-06-23 04:09:02 +0000YoungFrog(~youngfrog@2a02:a03f:ca07:f900:9506:825b:e271:15c3)
2023-06-23 04:09:02 +0000vgtw_(~vgtw@user/vgtw)
2023-06-23 04:09:02 +0000jrm(~jrm@user/jrm)
2023-06-23 04:09:02 +0000califax(~califax@user/califx)
2023-06-23 04:09:02 +0000farn(~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505)
2023-06-23 04:09:02 +0000chexum(~quassel@gateway/tor-sasl/chexum)
2023-06-23 04:09:02 +0000jakesyl____(sid56879@2a03:5180:f:4::de2f)
2023-06-23 04:09:02 +0000pavonia(~user@user/siracusa)
2023-06-23 04:09:02 +0000Athas(athas@sigkill.dk)
2023-06-23 04:09:02 +0000nicole(ilbelkyr@libera/staff/ilbelkyr)
2023-06-23 04:09:02 +0000puke(~puke@user/puke)
2023-06-23 04:09:02 +0000leah2(~leah@2001:1410:200:eea::1)
2023-06-23 04:09:02 +0000smalltalkman(uid545680@id-545680.hampstead.irccloud.com)
2023-06-23 04:09:02 +0000bjs(sid190364@user/bjs)
2023-06-23 04:09:02 +0000Flow(~none@gentoo/developer/flow)
2023-06-23 04:09:02 +0000Moyst(~moyst@user/moyst)
2023-06-23 04:09:02 +0000johnw(~johnw@76-234-69-149.lightspeed.frokca.sbcglobal.net)
2023-06-23 04:09:02 +0000diagprov(sid348783@user/diagprov)
2023-06-23 04:09:02 +0000ezzieyguywuf(~Unknown@user/ezzieyguywuf)
2023-06-23 04:09:02 +0000opqdonut(opqdonut@pseudo.fixme.fi)
2023-06-23 04:09:02 +0000MironZ(~MironZ@nat-infra.ehlab.uk)
2023-06-23 04:09:02 +0000kmein(~weechat@user/kmein)
2023-06-23 04:09:02 +0000hisa38(~hisa38@104-181-102-238.lightspeed.wepbfl.sbcglobal.net)
2023-06-23 04:09:02 +0000nonzen(~nonzen@user/nonzen)
2023-06-23 04:09:02 +0000PHO`(~pho@akari.cielonegro.org)
2023-06-23 04:09:02 +0000hugo(znc@verdigris.lysator.liu.se)
2023-06-23 04:09:02 +0000dibblego(~dibblego@haskell/developer/dibblego)
2023-06-23 04:09:02 +0000Lord_of_Life(~Lord@user/lord-of-life/x-2819915)
2023-06-23 04:09:02 +0000jpds(~jpds@gateway/tor-sasl/jpds)
2023-06-23 04:09:02 +0000bw_(sid2730@user/betawaffle)
2023-06-23 04:09:02 +0000biberu(~biberu@user/biberu)
2023-06-23 04:09:02 +0000motherfsck(~motherfsc@user/motherfsck)
2023-06-23 04:09:02 +0000RedNifre(~RedNifre@dslb-088-072-205-088.088.072.pools.vodafone-ip.de)
2023-06-23 04:09:02 +0000Patternmaster(~georg@user/Patternmaster)
2023-06-23 04:09:02 +0000shapr(~user@2600:1700:c640:3100:cca5:97e3:b957:869b)
2023-06-23 04:09:02 +0000haritz(~hrtz@user/haritz)
2023-06-23 04:09:02 +0000sunarch(~sunarch@user/sunarch)
2023-06-23 04:09:02 +0000swamp_(~zmt00@user/zmt00)
2023-06-23 04:09:02 +0000euandreh(~Thunderbi@189.6.18.7)
2023-06-23 04:09:02 +0000shriekingnoise(~shrieking@186.137.175.87)
2023-06-23 04:09:02 +0000econo_(uid147250@id-147250.tinside.irccloud.com)
2023-06-23 04:09:02 +0000cafkafk(~cafkafk@fsf/member/cafkafk)
2023-06-23 04:09:02 +0000Sgeo(~Sgeo@user/sgeo)
2023-06-23 04:09:02 +0000tzh(~tzh@c-24-21-73-154.hsd1.or.comcast.net)
2023-06-23 04:09:02 +0000berberman(~berberman@user/berberman)
2023-06-23 04:09:02 +0000geekosaur(~geekosaur@xmonad/geekosaur)
2023-06-23 04:09:02 +0000azimut(~azimut@gateway/tor-sasl/azimut)
2023-06-23 04:09:02 +0000dsrt^(~dsrt@c-71-204-38-59.hsd1.ga.comcast.net)
2023-06-23 04:09:02 +0000mrmonday(~robert@2a01:7e00:e000:1b2:95ca:100:49e0:3f15)
2023-06-23 04:09:02 +0000kritzefitz(~kritzefit@debian/kritzefitz)
2023-06-23 04:09:02 +0000Alex_test(~al_test@178.34.163.88)
2023-06-23 04:09:02 +0000AlexZenon(~alzenon@178.34.163.88)
2023-06-23 04:09:02 +0000Natch(~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se)
2023-06-23 04:09:02 +0000hippoid(~hippoid@user/hippoid)
2023-06-23 04:09:02 +0000mjs2600(~mjs2600@c-174-169-225-239.hsd1.vt.comcast.net)
2023-06-23 04:09:02 +0000xenomorph(~xenomorph@188.220.172.130)
2023-06-23 04:09:02 +0000dcoutts_(~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net)
2023-06-23 04:09:02 +0000L29Ah(~L29Ah@wikipedia/L29Ah)
2023-06-23 04:09:02 +0000myxos(~myxos@cpe-65-28-251-121.cinci.res.rr.com)
2023-06-23 04:09:02 +0000phma(phma@2001:5b0:211f:2f08:1586:27d6:8ad8:5c55)
2023-06-23 04:09:02 +0000EvanR(~EvanR@user/evanr)
2023-06-23 04:09:02 +0000connrs(~connrs@user/connrs)
2023-06-23 04:09:02 +0000mncheck-m(~mncheck@193.224.205.254)
2023-06-23 04:09:02 +0000myme(~myme@2a01:799:d60:e400:5ad3:735a:f98b:c82b)
2023-06-23 04:09:02 +0000wagle(~wagle@quassel.wagle.io)
2023-06-23 04:09:02 +0000mauke(~mauke@user/mauke)
2023-06-23 04:09:02 +0000bitdex(~bitdex@gateway/tor-sasl/bitdex)
2023-06-23 04:09:02 +0000Nokurn(~jeremiah@cpe-76-86-186-227.socal.res.rr.com)
2023-06-23 04:09:02 +0000robbert-vdh(~robbert@robbertvanderhelm.nl)
2023-06-23 04:09:02 +0000chromoblob(~user@37.113.180.121)
2023-06-23 04:09:02 +0000foul_owl(~kerry@94.140.8.28)
2023-06-23 04:09:02 +0000ijqq(uid603979@2a03:5180:f:1::9:374b)
2023-06-23 04:09:02 +0000albet70(~xxx@2400:8902::f03c:92ff:fe60:98d8)
2023-06-23 04:09:02 +0000ormaaaj(~ormaaj@user/ormaaj)
2023-06-23 04:09:02 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176)
2023-06-23 04:09:02 +0000ft(~ft@p508db151.dip0.t-ipconnect.de)
2023-06-23 04:09:02 +0000FinnElija(~finn_elij@user/finn-elija/x-0085643)
2023-06-23 04:09:02 +0000gentauro(~gentauro@user/gentauro)
2023-06-23 04:09:02 +0000td_(~td@i53870905.versanet.de)
2023-06-23 04:09:02 +0000xff0x_(~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp)
2023-06-23 04:09:02 +0000terrorjack(~terrorjac@2a01:4f8:c17:87f8::)
2023-06-23 04:09:02 +0000dipper(~dipper@203.168.26.146)
2023-06-23 04:09:02 +0000aforemny_(~aforemny@i59F516C0.versanet.de)
2023-06-23 04:09:02 +0000mei(~mei@user/mei)
2023-06-23 04:09:02 +0000jonrh_(sid5185@2a03:5180:f:3::1441)
2023-06-23 04:09:02 +0000simpleauthority(~simpleaut@user/simpleauthority)
2023-06-23 04:09:02 +0000ec(~ec@gateway/tor-sasl/ec)
2023-06-23 04:09:02 +0000filwisher(2e6936c793@2604:bf00:561:2000::170)
2023-06-23 04:09:02 +0000lukec(9dfd4d094e@2604:bf00:561:2000::10e)
2023-06-23 04:09:02 +0000bsima1(9d7e39c8ad@2604:bf00:561:2000::dd)
2023-06-23 04:09:02 +0000ggb(a62ffbaf4f@2604:bf00:561:2000::3ac)
2023-06-23 04:09:02 +0000probie(cc0b34050a@user/probie)
2023-06-23 04:09:02 +0000cpli(77fc530071@2604:bf00:561:2000::252)
2023-06-23 04:09:02 +0000samhh(7569f027cf@2604:bf00:561:2000::e4)
2023-06-23 04:09:02 +0000ymherklotz(cb2c9cfbdd@2604:bf00:561:2000::29a)
2023-06-23 04:09:02 +0000evanrelf(3addc196af@2604:bf00:561:2000::f0)
2023-06-23 04:09:02 +0000JoelMcCracken(5ea8252fbb@2604:bf00:561:2000::10e3)
2023-06-23 04:09:02 +0000fvr(ef3e56ca8b@2604:bf00:561:2000::3c4)
2023-06-23 04:09:02 +0000n1essa(3d621153a5@2604:bf00:561:2000::df7)
2023-06-23 04:09:02 +0000arcadewise(52968ed80d@2604:bf00:561:2000::3df)
2023-06-23 04:09:02 +0000jkoshy(99b9359beb@user/jkoshy)
2023-06-23 04:09:02 +0000henrytill(e0180937c3@2604:bf00:561:2000::e8c)
2023-06-23 04:09:02 +0000theesm(2cbdf4b38a@2604:bf00:561:2000::11c8)
2023-06-23 04:09:02 +0000sus(1b7af6299f@user/zeromomentum)
2023-06-23 04:09:02 +0000shreyasminocha(51fdc93eda@user/shreyasminocha)
2023-06-23 04:09:02 +0000Xe(~cadey@tailscale/xe)
2023-06-23 04:09:02 +0000chaitlatte0(ea29c0bb16@user/chaitlatte0)
2023-06-23 04:09:02 +0000whereiseveryone(206ba86c98@2604:bf00:561:2000::2e4)
2023-06-23 04:09:02 +0000sm2n(ae95cb1267@user/sm2n)
2023-06-23 04:09:02 +0000jakzale(6291399afa@user/jakzale)
2023-06-23 04:09:02 +0000MonsoonSecrecy(f78c86e960@2604:bf00:561:2000::f99)
2023-06-23 04:09:02 +0000samhh_(7569f027cf@2604:bf00:561:2000::e4)
2023-06-23 04:09:02 +0000b0o(0e4a0bf4c9@2604:bf00:561:2000::1bf)
2023-06-23 04:09:02 +0000fluffyballoon(45ce440a48@2604:bf00:561:2000::e2)
2023-06-23 04:09:02 +0000Ankhers(e99e97ef8e@2604:bf00:561:2000::2a2)
2023-06-23 04:09:02 +0000jleightcap(7bc4014b62@user/jleightcap)
2023-06-23 04:09:05 +0000_________(~nobody@user/noodly) (Max SendQ exceeded)
2023-06-23 04:09:06 +0000vulpine(xfnw@tilde.team) (Max SendQ exceeded)
2023-06-23 04:09:06 +0000raym(~ray@user/raym) (Max SendQ exceeded)
2023-06-23 04:09:06 +0000sympt(~sympt@user/sympt) (Max SendQ exceeded)
2023-06-23 04:09:43 +0000raym(~ray@user/raym)
2023-06-23 04:09:50 +0000_________(~nobody@user/noodly)
2023-06-23 04:09:51 +0000vulpine(xfnw@tilde.team)
2023-06-23 04:10:11 +0000_ht(~Thunderbi@28-52-174-82.ftth.glasoperator.nl)
2023-06-23 04:10:14 +0000Arsen(arsen@gentoo/developer/managarm.dev.Arsen) (*.net *.split)
2023-06-23 04:10:14 +0000Guest5986(~m-mzmz6l@vmi833741.contaboserver.net) (*.net *.split)
2023-06-23 04:10:14 +0000ggVGc(~ggVGc@a.lowtech.earth) (*.net *.split)
2023-06-23 04:10:14 +0000bsima(~bsima@143.198.118.179) (*.net *.split)
2023-06-23 04:10:14 +0000noctux1(88FTKVRINY@user/noctux) (*.net *.split)
2023-06-23 04:10:14 +0000stallmanator(~stallmana@user/stallmanator) (*.net *.split)
2023-06-23 04:10:14 +0000Ekho(~Ekho@user/ekho) (*.net *.split)
2023-06-23 04:10:14 +0000tomku(~tomku@user/tomku) (*.net *.split)
2023-06-23 04:10:14 +0000hpc(~juzz@ip98-169-35-163.dc.dc.cox.net) (*.net *.split)
2023-06-23 04:10:14 +0000esph(~weechat@user/esph) (*.net *.split)
2023-06-23 04:10:14 +0000dunj3(~dunj3@kingdread.de) (*.net *.split)
2023-06-23 04:10:14 +0000disconnect3d(~disconnec@user/disconnect3d) (*.net *.split)
2023-06-23 04:10:14 +0000monochrom(trebla@216.138.220.146) (*.net *.split)
2023-06-23 04:10:14 +0000TMA(tma@twin.jikos.cz) (*.net *.split)
2023-06-23 04:10:14 +0000Lears(~Leary]@user/Leary/x-0910699) (*.net *.split)
2023-06-23 04:10:14 +0000apache(apache2@anubis.0x90.dk) (*.net *.split)
2023-06-23 04:10:14 +0000jinsun(~jinsun@user/jinsun) (*.net *.split)
2023-06-23 04:10:14 +0000dumptruckman(~dumptruck@143-42-239-71.ip.linodeusercontent.com) (*.net *.split)
2023-06-23 04:10:14 +0000Luj(~Luj@2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb) (*.net *.split)
2023-06-23 04:10:14 +0000koala_man(~vidar@157.146.251.23.bc.googleusercontent.com) (*.net *.split)
2023-06-23 04:10:14 +0000drlkf(~drlkf@192.184.163.34.bc.googleusercontent.com) (*.net *.split)
2023-06-23 04:10:14 +0000son0p(~ff@181.136.122.143) (*.net *.split)
2023-06-23 04:10:14 +0000kaskal(~kaskal@2001:4bb8:2dd:a79d:1a7:8529:b79b:cfa) (*.net *.split)
2023-06-23 04:10:14 +0000ski(~ski@remote11.chalmers.se) (*.net *.split)
2023-06-23 04:10:14 +0000alpm(~alp@user/alp) (*.net *.split)
2023-06-23 04:10:14 +0000Hobbyboy(Hobbyboy@hobbyboy.co.uk) (*.net *.split)
2023-06-23 04:10:14 +0000zer0bitz(~zer0bitz@user/zer0bitz) (*.net *.split)
2023-06-23 04:10:15 +0000danso(~danso@user/danso) (*.net *.split)
2023-06-23 04:10:15 +0000c_wraith(~c_wraith@adjoint.us) (*.net *.split)
2023-06-23 04:10:15 +0000Firedancer(sid336191@id-336191.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:10:15 +0000russruss2(~russruss@my.russellmcc.com) (*.net *.split)
2023-06-23 04:10:15 +0000alinab_(sid468903@id-468903.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:10:15 +0000dagit(~dagit@2001:558:6025:38:71c6:9d58:7252:8976) (*.net *.split)
2023-06-23 04:10:15 +0000dove(~irc@2600:3c00:e000:287::1) (*.net *.split)
2023-06-23 04:10:15 +0000bradparker(sid262931@id-262931.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:10:15 +0000sa1(sid7690@id-7690.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:10:15 +0000hueso(~root@user/hueso) (*.net *.split)
2023-06-23 04:10:15 +0000Ranhir(~Ranhir@157.97.53.139) (*.net *.split)
2023-06-23 04:10:15 +0000bcmiller(~bm3719@66.42.95.185) (*.net *.split)
2023-06-23 04:10:15 +0000paddymahoney(~paddymaho@cpe883d24bcf597-cmbc4dfb741f80.cpe.net.cable.rogers.com) (*.net *.split)
2023-06-23 04:10:15 +0000CAT_S(apic@brezn3.muc.ccc.de) (*.net *.split)
2023-06-23 04:10:15 +0000davl(~davl@207.154.228.18) (*.net *.split)
2023-06-23 04:10:15 +0000echoreply(~echoreply@45.32.163.16) (*.net *.split)
2023-06-23 04:10:15 +0000AkechiShiro(~licht@user/akechishiro) (*.net *.split)
2023-06-23 04:10:15 +0000dragestil(~znc@user/dragestil) (*.net *.split)
2023-06-23 04:10:15 +0000gmc(sid58314@id-58314.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:10:15 +0000systemfault(sid267009@id-267009.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:10:15 +0000kristjansson_(sid126207@id-126207.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:10:15 +0000micro(~micro@user/micro) (*.net *.split)
2023-06-23 04:10:15 +0000dexter1(dexter@2a01:7e00::f03c:91ff:fe86:59ec) (*.net *.split)
2023-06-23 04:10:15 +0000sa(sid1055@id-1055.tinside.irccloud.com) (*.net *.split)
2023-06-23 04:10:15 +0000Profpatsch(~Profpatsc@static.88-198-193-255.clients.your-server.de) (*.net *.split)
2023-06-23 04:10:15 +0000loonycyborg(loonycybor@wesnoth/developer/loonycyborg) (*.net *.split)
2023-06-23 04:10:15 +0000incertia(~incertia@209.122.71.127) (*.net *.split)
2023-06-23 04:10:15 +0000hexagoxel(~hexagoxel@2a01:4f8:c0c:e::2) (*.net *.split)
2023-06-23 04:10:15 +0000sclv(sid39734@haskell/developer/sclv) (*.net *.split)
2023-06-23 04:10:15 +0000CalculusCats(NyaaTheKit@user/calculuscat) (*.net *.split)
2023-06-23 04:10:15 +0000Momentum(momentum@tilde.team) (*.net *.split)
2023-06-23 04:10:15 +0000kronicma1(user40967@neotame.csclub.uwaterloo.ca) (*.net *.split)
2023-06-23 04:10:15 +0000ggranberry(sid267884@id-267884.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:10:15 +0000madnight(~madnight@static.59.103.201.195.clients.your-server.de) (*.net *.split)
2023-06-23 04:10:15 +0000mjacob(~mjacob@adrastea.uberspace.de) (*.net *.split)
2023-06-23 04:10:15 +0000nek0(~nek0@2a01:4f8:222:2b41::12) (*.net *.split)
2023-06-23 04:10:15 +0000fbytez(~uid@user/fbytez) (*.net *.split)
2023-06-23 04:10:15 +0000lawt(~lawt@129.159.36.129) (*.net *.split)
2023-06-23 04:10:15 +0000gabiruh(~gabiruh@vps19177.publiccloud.com.br) (*.net *.split)
2023-06-23 04:10:15 +0000jludwig(~justin@li657-110.members.linode.com) (*.net *.split)
2023-06-23 04:10:15 +0000haskl(~haskl@user/haskl) (*.net *.split)
2023-06-23 04:10:15 +0000Franciman(~Franciman@mx1.fracta.dev) (*.net *.split)
2023-06-23 04:10:20 +0000sympt(~sympt@user/sympt)
2023-06-23 04:10:45 +0000Arsen(arsen@gentoo/developer/managarm.dev.Arsen)
2023-06-23 04:10:45 +0000Guest5986(~m-mzmz6l@vmi833741.contaboserver.net)
2023-06-23 04:10:45 +0000ggVGc(~ggVGc@a.lowtech.earth)
2023-06-23 04:10:45 +0000bsima(~bsima@143.198.118.179)
2023-06-23 04:10:45 +0000noctux1(88FTKVRINY@user/noctux)
2023-06-23 04:10:45 +0000stallmanator(~stallmana@user/stallmanator)
2023-06-23 04:10:45 +0000Ekho(~Ekho@user/ekho)
2023-06-23 04:10:45 +0000tomku(~tomku@user/tomku)
2023-06-23 04:10:45 +0000esph(~weechat@user/esph)
2023-06-23 04:10:45 +0000hpc(~juzz@ip98-169-35-163.dc.dc.cox.net)
2023-06-23 04:10:45 +0000dunj3(~dunj3@kingdread.de)
2023-06-23 04:10:45 +0000disconnect3d(~disconnec@user/disconnect3d)
2023-06-23 04:10:45 +0000monochrom(trebla@216.138.220.146)
2023-06-23 04:10:45 +0000TMA(tma@twin.jikos.cz)
2023-06-23 04:10:45 +0000Lears(~Leary]@user/Leary/x-0910699)
2023-06-23 04:10:45 +0000apache(apache2@anubis.0x90.dk)
2023-06-23 04:10:45 +0000jinsun(~jinsun@user/jinsun)
2023-06-23 04:10:45 +0000dumptruckman(~dumptruck@143-42-239-71.ip.linodeusercontent.com)
2023-06-23 04:10:45 +0000Luj(~Luj@2a01:e0a:5f9:9681:5880:c9ff:fe9f:3dfb)
2023-06-23 04:10:45 +0000koala_man(~vidar@157.146.251.23.bc.googleusercontent.com)
2023-06-23 04:10:45 +0000drlkf(~drlkf@192.184.163.34.bc.googleusercontent.com)
2023-06-23 04:10:45 +0000son0p(~ff@181.136.122.143)
2023-06-23 04:10:45 +0000kaskal(~kaskal@2001:4bb8:2dd:a79d:1a7:8529:b79b:cfa)
2023-06-23 04:10:45 +0000ski(~ski@remote11.chalmers.se)
2023-06-23 04:10:45 +0000alpm(~alp@user/alp)
2023-06-23 04:10:45 +0000Hobbyboy(Hobbyboy@hobbyboy.co.uk)
2023-06-23 04:10:45 +0000zer0bitz(~zer0bitz@user/zer0bitz)
2023-06-23 04:10:45 +0000danso(~danso@user/danso)
2023-06-23 04:10:45 +0000c_wraith(~c_wraith@adjoint.us)
2023-06-23 04:10:45 +0000Firedancer(sid336191@id-336191.hampstead.irccloud.com)
2023-06-23 04:10:45 +0000russruss2(~russruss@my.russellmcc.com)
2023-06-23 04:10:45 +0000alinab_(sid468903@id-468903.helmsley.irccloud.com)
2023-06-23 04:10:45 +0000dagit(~dagit@2001:558:6025:38:71c6:9d58:7252:8976)
2023-06-23 04:10:45 +0000dove(~irc@2600:3c00:e000:287::1)
2023-06-23 04:10:45 +0000bradparker(sid262931@id-262931.uxbridge.irccloud.com)
2023-06-23 04:10:45 +0000sa1(sid7690@id-7690.ilkley.irccloud.com)
2023-06-23 04:10:45 +0000hueso(~root@user/hueso)
2023-06-23 04:10:45 +0000Ranhir(~Ranhir@157.97.53.139)
2023-06-23 04:10:45 +0000bcmiller(~bm3719@66.42.95.185)
2023-06-23 04:10:45 +0000paddymahoney(~paddymaho@cpe883d24bcf597-cmbc4dfb741f80.cpe.net.cable.rogers.com)
2023-06-23 04:10:45 +0000CAT_S(apic@brezn3.muc.ccc.de)
2023-06-23 04:10:45 +0000davl(~davl@207.154.228.18)
2023-06-23 04:10:45 +0000echoreply(~echoreply@45.32.163.16)
2023-06-23 04:10:45 +0000AkechiShiro(~licht@user/akechishiro)
2023-06-23 04:10:45 +0000dragestil(~znc@user/dragestil)
2023-06-23 04:10:45 +0000gmc(sid58314@id-58314.ilkley.irccloud.com)
2023-06-23 04:10:45 +0000systemfault(sid267009@id-267009.uxbridge.irccloud.com)
2023-06-23 04:10:45 +0000kristjansson_(sid126207@id-126207.tinside.irccloud.com)
2023-06-23 04:10:45 +0000micro(~micro@user/micro)
2023-06-23 04:10:45 +0000dexter1(dexter@2a01:7e00::f03c:91ff:fe86:59ec)
2023-06-23 04:10:45 +0000sa(sid1055@id-1055.tinside.irccloud.com)
2023-06-23 04:10:45 +0000Profpatsch(~Profpatsc@static.88-198-193-255.clients.your-server.de)
2023-06-23 04:10:45 +0000loonycyborg(loonycybor@wesnoth/developer/loonycyborg)
2023-06-23 04:10:45 +0000incertia(~incertia@209.122.71.127)
2023-06-23 04:10:45 +0000hexagoxel(~hexagoxel@2a01:4f8:c0c:e::2)
2023-06-23 04:10:45 +0000sclv(sid39734@haskell/developer/sclv)
2023-06-23 04:10:45 +0000CalculusCats(NyaaTheKit@user/calculuscat)
2023-06-23 04:10:45 +0000Momentum(momentum@tilde.team)
2023-06-23 04:10:45 +0000kronicma1(user40967@neotame.csclub.uwaterloo.ca)
2023-06-23 04:10:45 +0000ggranberry(sid267884@id-267884.uxbridge.irccloud.com)
2023-06-23 04:10:45 +0000madnight(~madnight@static.59.103.201.195.clients.your-server.de)
2023-06-23 04:10:45 +0000mjacob(~mjacob@adrastea.uberspace.de)
2023-06-23 04:10:45 +0000nek0(~nek0@2a01:4f8:222:2b41::12)
2023-06-23 04:10:45 +0000fbytez(~uid@user/fbytez)
2023-06-23 04:10:45 +0000lawt(~lawt@129.159.36.129)
2023-06-23 04:10:45 +0000gabiruh(~gabiruh@vps19177.publiccloud.com.br)
2023-06-23 04:10:45 +0000jludwig(~justin@li657-110.members.linode.com)
2023-06-23 04:10:45 +0000haskl(~haskl@user/haskl)
2023-06-23 04:10:45 +0000Franciman(~Franciman@mx1.fracta.dev)
2023-06-23 04:10:48 +0000Momentum(momentum@tilde.team) (Max SendQ exceeded)
2023-06-23 04:10:48 +0000CAT_S(apic@brezn3.muc.ccc.de) (Max SendQ exceeded)
2023-06-23 04:10:48 +0000Arsen(arsen@gentoo/developer/managarm.dev.Arsen) (Max SendQ exceeded)
2023-06-23 04:10:48 +0000zer0bitz(~zer0bitz@user/zer0bitz) (Max SendQ exceeded)
2023-06-23 04:10:48 +0000lawt(~lawt@129.159.36.129) (Max SendQ exceeded)
2023-06-23 04:10:48 +0000CalculusCats(NyaaTheKit@user/calculuscat) (Max SendQ exceeded)
2023-06-23 04:10:59 +0000CAT_S_(apic@brezn3.muc.ccc.de)
2023-06-23 04:11:01 +0000Arsen_(arsen@gentoo/developer/managarm.dev.Arsen)
2023-06-23 04:11:03 +0000zer0bitz(~zer0bitz@user/zer0bitz)
2023-06-23 04:11:22 +0000lawt(~lawt@129.159.36.129)
2023-06-23 04:11:30 +0000Momentum(momentum@2607:5300:60:4f58::248)
2023-06-23 04:11:49 +0000witcher(~witcher@wiredspace.de) (*.net *.split)
2023-06-23 04:11:49 +0000Inst_(~Inst@2601:6c4:4081:2fc0:61ec:e42a:c603:c093) (*.net *.split)
2023-06-23 04:11:49 +0000APic(apic@apic.name) (*.net *.split)
2023-06-23 04:11:49 +0000AndreasK(sid320732@id-320732.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:11:49 +0000hyvoid(~hyenavoid@222-0-178-69.static.gci.net) (*.net *.split)
2023-06-23 04:11:49 +0000yaroot(~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp) (*.net *.split)
2023-06-23 04:11:49 +0000Fangs(sid141280@id-141280.hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:11:49 +0000cheater(~Username@user/cheater) (*.net *.split)
2023-06-23 04:11:49 +0000perrierjouet(~perrier-j@modemcable048.127-56-74.mc.videotron.ca) (*.net *.split)
2023-06-23 04:11:49 +0000srk(~sorki@user/srk) (*.net *.split)
2023-06-23 04:11:49 +0000robertm(robertm@lattice.rojoma.com) (*.net *.split)
2023-06-23 04:11:49 +0000lottaquestions(~nick@2607:fa49:503f:6d00:ee98:182c:4ae3:99fe) (*.net *.split)
2023-06-23 04:11:49 +0000tomboy64(~tomboy64@user/tomboy64) (*.net *.split)
2023-06-23 04:11:49 +0000daemon_(uid606752@id-606752.uxbridge.irccloud.com) (*.net *.split)
2023-06-23 04:11:49 +0000bwe(~bwe@2a01:4f8:1c1c:4878::2) (*.net *.split)
2023-06-23 04:11:49 +0000[_________](~oos95GWG@user/oos95GWG) (*.net *.split)
2023-06-23 04:11:49 +0000urdh(~urdh@user/urdh) (*.net *.split)
2023-06-23 04:11:49 +0000aku(~aku@65.108.245.241) (*.net *.split)
2023-06-23 04:11:49 +0000shawwwn(sid6132@id-6132.helmsley.irccloud.com) (*.net *.split)
2023-06-23 04:11:49 +0000skippy(sid26890@user/slice) (*.net *.split)
2023-06-23 04:11:49 +0000rune_(sid21167@id-21167.ilkley.irccloud.com) (*.net *.split)
2023-06-23 04:11:49 +0000phaazon(~phaazon@2001:41d0:a:fe76::1) (*.net *.split)
2023-06-23 04:11:49 +0000lexi-lambda(sid92601@hampstead.irccloud.com) (*.net *.split)
2023-06-23 04:11:49 +0000ryantrinkle(~ryantrink@204.2.90.61) (*.net *.split)
2023-06-23 04:11:49 +0000gawen(~gawen@user/gawen) (*.net *.split)
2023-06-23 04:11:49 +0000driib(~driib@vmi931078.contaboserver.net) (*.net *.split)
2023-06-23 04:11:49 +0000p3n(~p3n@217.198.124.246) (*.net *.split)
2023-06-23 04:11:49 +0000ralu1(~ralu@static.211.245.203.116.clients.your-server.de) (*.net *.split)
2023-06-23 04:11:49 +0000quintasan(~quassel@quintasan.pl) (*.net *.split)
2023-06-23 04:11:49 +0000mhatta(~mhatta@www21123ui.sakura.ne.jp) (*.net *.split)
2023-06-23 04:11:49 +0000forell(~forell@user/forell) (*.net *.split)
2023-06-23 04:11:49 +0000Putonlalla(~Putonlall@it-cyan.it.jyu.fi) (*.net *.split)
2023-06-23 04:11:49 +0000Maxdamantus(~Maxdamant@user/maxdamantus) (*.net *.split)
2023-06-23 04:11:49 +0000barrucadu(~barrucadu@carcosa.barrucadu.co.uk) (*.net *.split)
2023-06-23 04:11:49 +0000hnOsmium0001(~hnosm@user/hnOsmium0001) (*.net *.split)
2023-06-23 04:11:49 +0000cross(~cross@spitfire.i.gajendra.net) (*.net *.split)
2023-06-23 04:11:49 +0000joeyh(joeyh@2600:3c03::f03c:91ff:fe73:b0d2) (*.net *.split)
2023-06-23 04:11:49 +0000emergence(emergence@2607:5300:60:5910:dcad:beff:feef:5bc) (*.net *.split)
2023-06-23 04:11:49 +0000nyc(~nyc@user/nyc) (*.net *.split)
2023-06-23 04:11:49 +0000Everything(~Everythin@static.208.206.21.65.clients.your-server.de) (*.net *.split)
2023-06-23 04:11:49 +0000drdo(~drdo@bl8-153-185.dsl.telepac.pt) (*.net *.split)
2023-06-23 04:11:49 +0000hays(rootvegeta@fsf/member/hays) (*.net *.split)
2023-06-23 04:11:49 +0000anpad(~pandeyan@user/anpad) (*.net *.split)
2023-06-23 04:11:49 +0000heartburn(~gass@2a00:d880:3:1::b1e4:b241) (*.net *.split)
2023-06-23 04:11:49 +0000ridcully(~ridcully@p57b52f2c.dip0.t-ipconnect.de) (*.net *.split)
2023-06-23 04:11:49 +0000megaTherion(~therion@unix.io) (*.net *.split)
2023-06-23 04:11:49 +0000cawfee(~root@2406:3003:2077:2758::babe) (*.net *.split)
2023-06-23 04:11:49 +0000Buggys-(Buggys@shelltalk.net) (*.net *.split)
2023-06-23 04:11:58 +0000CalculusCats7(NyaaTheKit@user/calculuscat)
2023-06-23 04:13:30 +0000witcher(~witcher@wiredspace.de)
2023-06-23 04:13:30 +0000Inst_(~Inst@2601:6c4:4081:2fc0:61ec:e42a:c603:c093)
2023-06-23 04:13:30 +0000APic(apic@apic.name)
2023-06-23 04:13:30 +0000AndreasK(sid320732@id-320732.uxbridge.irccloud.com)
2023-06-23 04:13:30 +0000hyvoid(~hyenavoid@222-0-178-69.static.gci.net)
2023-06-23 04:13:30 +0000yaroot(~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp)
2023-06-23 04:13:30 +0000Fangs(sid141280@id-141280.hampstead.irccloud.com)
2023-06-23 04:13:30 +0000cheater(~Username@user/cheater)
2023-06-23 04:13:30 +0000perrierjouet(~perrier-j@modemcable048.127-56-74.mc.videotron.ca)
2023-06-23 04:13:30 +0000srk(~sorki@user/srk)
2023-06-23 04:13:30 +0000robertm(robertm@lattice.rojoma.com)
2023-06-23 04:13:30 +0000lottaquestions(~nick@2607:fa49:503f:6d00:ee98:182c:4ae3:99fe)
2023-06-23 04:13:30 +0000ryantrinkle(~ryantrink@204.2.90.61)
2023-06-23 04:13:30 +0000tomboy64(~tomboy64@user/tomboy64)
2023-06-23 04:13:30 +0000daemon_(uid606752@id-606752.uxbridge.irccloud.com)
2023-06-23 04:13:30 +0000bwe(~bwe@2a01:4f8:1c1c:4878::2)
2023-06-23 04:13:30 +0000[_________](~oos95GWG@user/oos95GWG)
2023-06-23 04:13:30 +0000urdh(~urdh@user/urdh)
2023-06-23 04:13:30 +0000aku(~aku@65.108.245.241)
2023-06-23 04:13:30 +0000shawwwn(sid6132@id-6132.helmsley.irccloud.com)
2023-06-23 04:13:30 +0000skippy(sid26890@user/slice)
2023-06-23 04:13:30 +0000rune_(sid21167@id-21167.ilkley.irccloud.com)
2023-06-23 04:13:30 +0000phaazon(~phaazon@2001:41d0:a:fe76::1)
2023-06-23 04:13:30 +0000lexi-lambda(sid92601@hampstead.irccloud.com)
2023-06-23 04:13:30 +0000Buggys-(Buggys@shelltalk.net)
2023-06-23 04:13:30 +0000gawen(~gawen@user/gawen)
2023-06-23 04:13:30 +0000driib(~driib@vmi931078.contaboserver.net)
2023-06-23 04:13:30 +0000p3n(~p3n@217.198.124.246)
2023-06-23 04:13:30 +0000ralu1(~ralu@static.211.245.203.116.clients.your-server.de)
2023-06-23 04:13:30 +0000quintasan(~quassel@quintasan.pl)
2023-06-23 04:13:30 +0000mhatta(~mhatta@www21123ui.sakura.ne.jp)
2023-06-23 04:13:30 +0000forell(~forell@user/forell)
2023-06-23 04:13:30 +0000Putonlalla(~Putonlall@it-cyan.it.jyu.fi)
2023-06-23 04:13:30 +0000Maxdamantus(~Maxdamant@user/maxdamantus)
2023-06-23 04:13:30 +0000barrucadu(~barrucadu@carcosa.barrucadu.co.uk)
2023-06-23 04:13:30 +0000hnOsmium0001(~hnosm@user/hnOsmium0001)
2023-06-23 04:13:30 +0000cross(~cross@spitfire.i.gajendra.net)
2023-06-23 04:13:30 +0000joeyh(joeyh@2600:3c03::f03c:91ff:fe73:b0d2)
2023-06-23 04:13:30 +0000emergence(emergence@2607:5300:60:5910:dcad:beff:feef:5bc)
2023-06-23 04:13:30 +0000nyc(~nyc@user/nyc)
2023-06-23 04:13:30 +0000Everything(~Everythin@static.208.206.21.65.clients.your-server.de)
2023-06-23 04:13:30 +0000drdo(~drdo@bl8-153-185.dsl.telepac.pt)
2023-06-23 04:13:30 +0000hays(rootvegeta@fsf/member/hays)
2023-06-23 04:13:30 +0000anpad(~pandeyan@user/anpad)
2023-06-23 04:13:30 +0000heartburn(~gass@2a00:d880:3:1::b1e4:b241)
2023-06-23 04:13:30 +0000ridcully(~ridcully@p57b52f2c.dip0.t-ipconnect.de)
2023-06-23 04:13:30 +0000megaTherion(~therion@unix.io)
2023-06-23 04:13:30 +0000cawfee(~root@2406:3003:2077:2758::babe)
2023-06-23 04:13:32 +0000cross(~cross@spitfire.i.gajendra.net) (Max SendQ exceeded)
2023-06-23 04:13:32 +0000cheater(~Username@user/cheater) (Max SendQ exceeded)
2023-06-23 04:14:00 +0000kristjansson_(sid126207@id-126207.tinside.irccloud.com) (Ping timeout: 258 seconds)
2023-06-23 04:14:46 +0000sa(sid1055@id-1055.tinside.irccloud.com) (Ping timeout: 258 seconds)
2023-06-23 04:15:21 +0000cross(~cross@spitfire.i.gajendra.net)
2023-06-23 04:15:35 +0000kristjansson_(sid126207@id-126207.tinside.irccloud.com)
2023-06-23 04:16:03 +0000cheater(~Username@user/cheater)
2023-06-23 04:17:00 +0000hdggxin(~hdggxin@122.175.41.19) (Ping timeout: 252 seconds)
2023-06-23 04:18:46 +0000sa(sid1055@id-1055.tinside.irccloud.com)
2023-06-23 04:20:20 +0000hdggxin(~hdggxin@122.175.41.19)
2023-06-23 04:37:55 +0000aaronm04(~user@user/aaronm04) (Server closed connection)
2023-06-23 04:38:15 +0000aaronm04(~user@user/aaronm04)
2023-06-23 04:39:57 +0000takuan(~takuan@178-116-218-225.access.telenet.be)
2023-06-23 04:44:49 +0000michalz(~michalz@185.246.207.197)
2023-06-23 04:45:09 +0000Feuermagier(~Feuermagi@user/feuermagier)
2023-06-23 04:54:04 +0000mud(~mud@user/kadoban)
2023-06-23 04:56:46 +0000Nokurn(~jeremiah@cpe-76-86-186-227.socal.res.rr.com) (Ping timeout: 250 seconds)
2023-06-23 05:08:19 +0000ft(~ft@p508db151.dip0.t-ipconnect.de) (Quit: leaving)
2023-06-23 05:14:34 +0000tomku(~tomku@user/tomku) (Ping timeout: 258 seconds)
2023-06-23 05:18:51 +0000bgs(~bgs@212-85-160-171.dynamic.telemach.net)
2023-06-23 05:19:41 +0000vjoki(~vjoki@2a00:d880:3:1::fea1:9ae) (Server closed connection)
2023-06-23 05:20:37 +0000shapr(~user@2600:1700:c640:3100:cca5:97e3:b957:869b) (Ping timeout: 245 seconds)
2023-06-23 05:20:57 +0000vjoki(~vjoki@2a00:d880:3:1::fea1:9ae)
2023-06-23 05:21:16 +0000tomku(~tomku@user/tomku)
2023-06-23 05:25:17 +0000_________(~nobody@user/noodly) (Quit: Reconnecting)
2023-06-23 05:25:33 +0000finn(~finn@176-151-21-224.abo.bbox.fr)
2023-06-23 05:25:40 +0000_________(~nobody@user/noodly)
2023-06-23 05:26:10 +0000welterde(welterde@thinkbase.srv.welterde.de) (Server closed connection)
2023-06-23 05:26:52 +0000welterde(welterde@thinkbase.srv.welterde.de)
2023-06-23 05:27:53 +0000jonathan_(~jonathan@c83-252-3-92.bredband.tele2.se)
2023-06-23 05:31:15 +0000_ht(~Thunderbi@28-52-174-82.ftth.glasoperator.nl) (Quit: _ht)
2023-06-23 05:36:56 +0000trev(~trev@user/trev)
2023-06-23 05:41:06 +0000sweater(~sweater@206.81.18.26) (Server closed connection)
2023-06-23 05:41:24 +0000sweater(~sweater@206.81.18.26)
2023-06-23 05:43:44 +0000azimut(~azimut@gateway/tor-sasl/azimut) (Ping timeout: 240 seconds)
2023-06-23 05:45:20 +0000ec(~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds)
2023-06-23 05:45:54 +0000ec(~ec@gateway/tor-sasl/ec)
2023-06-23 05:50:52 +0000jonathan_(~jonathan@c83-252-3-92.bredband.tele2.se) (Read error: Connection reset by peer)
2023-06-23 05:53:44 +0000finn(~finn@176-151-21-224.abo.bbox.fr) (Ping timeout: 246 seconds)
2023-06-23 06:00:16 +0000pat__(~pat67@pool-100-36-172-241.washdc.fios.verizon.net) (Remote host closed the connection)
2023-06-23 06:03:46 +0000finn(~finn@176-151-21-224.abo.bbox.fr)
2023-06-23 06:05:43 +0000bgs(~bgs@212-85-160-171.dynamic.telemach.net) (Remote host closed the connection)
2023-06-23 06:11:12 +0000Guest585(~mike@user/feetwind) (Server closed connection)
2023-06-23 06:11:31 +0000Guest585(~mike@user/feetwind)
2023-06-23 06:11:59 +0000yaroot_(~yaroot@p2782030-ipngn7701souka.saitama.ocn.ne.jp)
2023-06-23 06:13:59 +0000yaroot(~yaroot@p3438127-ipngn9401souka.saitama.ocn.ne.jp) (Ping timeout: 240 seconds)
2023-06-23 06:14:00 +0000yaroot_yaroot
2023-06-23 06:17:14 +0000tcard(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (Quit: Leaving)
2023-06-23 06:21:13 +0000whatsupdoc(uid509081@id-509081.hampstead.irccloud.com) (Quit: Connection closed for inactivity)
2023-06-23 06:22:10 +0000whatsupdoc(uid509081@id-509081.hampstead.irccloud.com)
2023-06-23 06:22:10 +0000tcard(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303)
2023-06-23 06:22:35 +0000finn(~finn@176-151-21-224.abo.bbox.fr) (Ping timeout: 260 seconds)
2023-06-23 06:27:19 +0000acidjnk(~acidjnk@p200300d6e7072f582449b77723e04244.dip0.t-ipconnect.de)
2023-06-23 06:37:03 +0000pat67(~pat67@145.14.135.131)
2023-06-23 06:40:17 +0000mauke(~mauke@user/mauke) (Ping timeout: 246 seconds)
2023-06-23 06:43:55 +0000actioninja(~actioninj@user/actioninja)
2023-06-23 06:45:26 +0000dyniec(~dyniec@mail.dybiec.info) (Server closed connection)
2023-06-23 06:45:43 +0000dyniec(~dyniec@mail.dybiec.info)
2023-06-23 06:49:44 +0000teleprompter[m](~telepromp@2001:470:69fc:105::3:74ef)
2023-06-23 06:50:29 +0000ridcully(~ridcully@p57b52f2c.dip0.t-ipconnect.de) (Ping timeout: 240 seconds)
2023-06-23 06:50:57 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-06-23 06:51:17 +0000coot(~coot@89-69-206-216.dynamic.chello.pl)
2023-06-23 06:51:29 +0000ridcully(~ridcully@p57b52f2c.dip0.t-ipconnect.de)
2023-06-23 06:54:41 +0000CiaoSen(~Jura@2a05:5800:29f:3300:664b:f0ff:fe37:9ef)
2023-06-23 06:58:00 +0000fweht(uid404746@id-404746.lymington.irccloud.com)
2023-06-23 07:06:52 +0000gmg(~user@user/gehmehgeh)
2023-06-23 07:07:00 +0000vpan(~0@mail.elitnet.lt)
2023-06-23 07:09:44 +0000fendor(~fendor@2a02:8388:1640:be00:7aca:a77a:4a28:631a)
2023-06-23 07:15:54 +0000kmein(~weechat@user/kmein) (Quit: ciao kakao)
2023-06-23 07:18:04 +0000kmein(~weechat@user/kmein)
2023-06-23 07:24:54 +0000mmhat(~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de)
2023-06-23 07:25:10 +0000mmhat(~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de) (Client Quit)
2023-06-23 07:25:57 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Remote host closed the connection)
2023-06-23 07:33:41 +0000jocke-l(jocke-l@a.x0.is) (Server closed connection)
2023-06-23 07:34:06 +0000jocke-l(jocke-l@a.x0.is)
2023-06-23 07:35:41 +0000gmg(~user@user/gehmehgeh) (Remote host closed the connection)
2023-06-23 07:35:48 +0000euandreh(~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds)
2023-06-23 07:36:22 +0000gmg(~user@user/gehmehgeh)
2023-06-23 07:38:09 +0000euandreh(~Thunderbi@189.6.18.7)
2023-06-23 07:42:18 +0000euandreh(~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds)
2023-06-23 07:42:29 +0000hisa382(~hisa38@104-181-102-238.lightspeed.wepbfl.sbcglobal.net)
2023-06-23 07:43:57 +0000hisa38(~hisa38@104-181-102-238.lightspeed.wepbfl.sbcglobal.net) (Ping timeout: 245 seconds)
2023-06-23 07:43:58 +0000hisa382hisa38
2023-06-23 07:44:19 +0000ijqq(uid603979@2a03:5180:f:1::9:374b) (Quit: Connection closed for inactivity)
2023-06-23 07:45:59 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2023-06-23 07:46:01 +0000mc47(~mc47@xmonad/TheMC47)
2023-06-23 07:46:19 +0000euandreh(~Thunderbi@189.6.18.7)
2023-06-23 07:50:32 +0000euandreh(~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds)
2023-06-23 07:53:23 +0000johnw(~johnw@76-234-69-149.lightspeed.frokca.sbcglobal.net) (Quit: ZNC - http://znc.in)
2023-06-23 07:53:40 +0000actioninja(~actioninj@user/actioninja) (Quit: see ya mane)
2023-06-23 07:54:07 +0000actioninja(~actioninj@user/actioninja)
2023-06-23 07:55:29 +0000machinedgod(~machinedg@d198-53-218-113.abhsia.telus.net)
2023-06-23 07:59:09 +0000jil(~user@vps-15050500.vps.ovh.net) (Quit: ERC 5.4 (IRC client for GNU Emacs 28.2))
2023-06-23 07:59:32 +0000jil(~user@vps-15050500.vps.ovh.net)
2023-06-23 08:05:20 +0000mei(~mei@user/mei) (Ping timeout: 246 seconds)
2023-06-23 08:06:26 +0000 <dminuoso> I have a bunch of lines with varying leading whitespace. I would like to build some kind of tree represeentation according to the whitespace (such that subsequent lines with the same amount of indentation become children of the previous group that has one-less indentation.
2023-06-23 08:06:29 +0000chele(~chele@user/chele)
2023-06-23 08:07:18 +0000 <dminuoso> Before I go build this myself, is there some simple parser combinators (say for attoparsec) that would give me this?
2023-06-23 08:10:54 +0000shriekingnoise_(~shrieking@186.137.175.87)
2023-06-23 08:12:10 +0000johnw(~johnw@76-234-69-149.lightspeed.frokca.sbcglobal.net)
2023-06-23 08:12:12 +0000shriekingnoise(~shrieking@186.137.175.87) (Ping timeout: 250 seconds)
2023-06-23 08:12:52 +0000shriekingnoise(~shrieking@186.137.175.87)
2023-06-23 08:13:56 +0000_d0t(~{-d0t-}@user/-d0t-/x-7915216) (Remote host closed the connection)
2023-06-23 08:14:20 +0000merijn(~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl)
2023-06-23 08:14:36 +0000mstksg(~jle`@cpe-23-240-75-236.socal.res.rr.com) (Ping timeout: 252 seconds)
2023-06-23 08:14:45 +0000_d0t(~{-d0t-}@user/-d0t-/x-7915216)
2023-06-23 08:15:35 +0000shriekingnoise_(~shrieking@186.137.175.87) (Ping timeout: 264 seconds)
2023-06-23 08:16:31 +0000mstksg(~jle`@cpe-23-240-75-236.socal.res.rr.com)
2023-06-23 08:17:30 +0000shriekingnoise(~shrieking@186.137.175.87) (Ping timeout: 260 seconds)
2023-06-23 08:21:19 +0000 <probie> I don't think it's particularly convenient for most parser combinator libraries. Even if it's supported it'll probably involve a lot of unnecessary backtracking
2023-06-23 08:21:39 +0000cfricke(~cfricke@user/cfricke)
2023-06-23 08:22:31 +0000aforemny_aforemny
2023-06-23 08:26:00 +0000oo_miguel(~Thunderbi@78-11-179-96.static.ip.netia.com.pl)
2023-06-23 08:26:45 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176)
2023-06-23 08:27:31 +0000 <tdammers> megaparsec has a few primitives that can be used for parsing indentation-based syntax: https://hackage.haskell.org/package/megaparsec-9.4.1/docs/Text-Megaparsec-Char-Lexer.html#g:2
2023-06-23 08:28:35 +0000ubert(~Thunderbi@p200300ecdf0b5770229a67f1b6d9782d.dip0.t-ipconnect.de)
2023-06-23 08:30:07 +0000Katarushisu(~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net) (Quit: The Lounge - https://thelounge.chat)
2023-06-23 08:30:25 +0000Katarushisu(~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net)
2023-06-23 08:31:02 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Ping timeout: 245 seconds)
2023-06-23 08:38:11 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-06-23 08:38:53 +0000hpc(~juzz@ip98-169-35-163.dc.dc.cox.net) (Ping timeout: 258 seconds)
2023-06-23 08:40:28 +0000hpc(~juzz@ip98-169-35-163.dc.dc.cox.net)
2023-06-23 08:40:49 +0000Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2023-06-23 08:42:28 +0000tzh(~tzh@c-24-21-73-154.hsd1.or.comcast.net) (Quit: zzz)
2023-06-23 08:43:44 +0000gmg(~user@user/gehmehgeh) (Ping timeout: 240 seconds)
2023-06-23 08:45:15 +0000gmg(~user@user/gehmehgeh)
2023-06-23 08:45:15 +0000zeenk(~zeenk@2a02:2f04:a203:a700::7fe)
2023-06-23 08:45:53 +0000tom__(~tom@2a00:23c8:970c:4801:5b6a:e81b:79dc:f684) (Remote host closed the connection)
2023-06-23 08:46:06 +0000tom__(~tom@2a00:23c8:970c:4801:5b6a:e81b:79dc:f684)
2023-06-23 08:50:41 +0000gnalzo(~gnalzo@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c)
2023-06-23 08:53:27 +0000son0p(~ff@181.136.122.143) (Ping timeout: 258 seconds)
2023-06-23 08:54:01 +0000danse-nr3(~francesco@151.44.132.173)
2023-06-23 08:56:11 +0000misterfish(~misterfis@87.215.131.102)
2023-06-23 08:58:25 +0000sudden(~cat@user/sudden) (Server closed connection)
2023-06-23 08:58:41 +0000sudden(~cat@user/sudden)
2023-06-23 09:00:06 +0000jorwas[m](~jorwasmat@2001:470:69fc:105::3:60e7) (Remote host closed the connection)
2023-06-23 09:05:25 +0000econo_(uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity)
2023-06-23 09:06:58 +0000yvan-sraka(sid419690@id-419690.lymington.irccloud.com) (Server closed connection)
2023-06-23 09:07:09 +0000yvan-sraka(sid419690@id-419690.lymington.irccloud.com)
2023-06-23 09:07:13 +0000euandreh(~Thunderbi@189.6.18.7)
2023-06-23 09:07:20 +0000ec(~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds)
2023-06-23 09:08:24 +0000Pickchea(~private@user/pickchea)
2023-06-23 09:08:26 +0000ec(~ec@gateway/tor-sasl/ec)
2023-06-23 09:09:50 +0000Tuplanolla(~Tuplanoll@91-159-68-236.elisa-laajakaista.fi)
2023-06-23 09:11:34 +0000euandreh(~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds)
2023-06-23 09:16:45 +0000Lord_of_Life(~Lord@user/lord-of-life/x-2819915) (Ping timeout: 246 seconds)
2023-06-23 09:17:06 +0000nate2(~nate@c-98-45-169-16.hsd1.ca.comcast.net)
2023-06-23 09:17:53 +0000Lord_of_Life(~Lord@user/lord-of-life/x-2819915)
2023-06-23 09:18:40 +0000euandreh(~Thunderbi@189.6.18.7)
2023-06-23 09:21:42 +0000nate2(~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 252 seconds)
2023-06-23 09:32:47 +0000mei(~mei@user/mei)
2023-06-23 09:39:17 +0000 <dminuoso> tdammers: Mmm, I guess `first length . span isSpace` gives me all I need then.
2023-06-23 09:39:30 +0000 <dminuoso> It then boils down to a simple loop to construct a tree with that.
2023-06-23 09:41:28 +0000chromoblob(~user@37.113.180.121) (Ping timeout: 250 seconds)
2023-06-23 09:45:43 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Read error: Connection reset by peer)
2023-06-23 09:46:46 +0000dextaa(~DV@user/dextaa) (Read error: Connection reset by peer)
2023-06-23 09:47:18 +0000dextaa(~DV@user/dextaa)
2023-06-23 09:57:44 +0000titibandit(~titibandi@user/titibandit)
2023-06-23 10:03:32 +0000CAT_S_(apic@brezn3.muc.ccc.de) (Quit: Reconnecting)
2023-06-23 10:03:39 +0000xff0x_(~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp) (Ping timeout: 246 seconds)
2023-06-23 10:03:43 +0000CAT_S(apic@brezn3.muc.ccc.de)
2023-06-23 10:10:37 +0000driib(~driib@vmi931078.contaboserver.net) (Quit: The Lounge - https://thelounge.chat)
2023-06-23 10:11:00 +0000driib(~driib@vmi931078.contaboserver.net)
2023-06-23 10:11:43 +0000chromoblob(~user@37.113.180.121)
2023-06-23 10:20:53 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net)
2023-06-23 10:26:00 +0000L29Ah(~L29Ah@wikipedia/L29Ah) ()
2023-06-23 10:26:59 +0000Maxdamantus(~Maxdamant@user/maxdamantus) (Ping timeout: 240 seconds)
2023-06-23 10:27:02 +0000__monty__(~toonn@user/toonn)
2023-06-23 10:29:11 +0000Maxdamantus(~Maxdamant@user/maxdamantus)
2023-06-23 10:30:30 +0000pie_(~pie_bnc@user/pie/x-2818909) ()
2023-06-23 10:30:46 +0000pie_(~pie_bnc@user/pie/x-2818909)
2023-06-23 10:40:15 +0000dispater(~dispater@user/brprice) (Server closed connection)
2023-06-23 10:40:33 +0000dispater(~dispater@user/brprice)
2023-06-23 10:42:50 +0000hugo(znc@verdigris.lysator.liu.se) (Ping timeout: 246 seconds)
2023-06-23 10:43:28 +0000orcus(~orcus@user/brprice) (Server closed connection)
2023-06-23 10:43:48 +0000orcus(~orcus@user/brprice)
2023-06-23 10:46:55 +0000Midjak(~Midjak@82.66.147.146)
2023-06-23 10:51:29 +0000hugo(znc@verdigris.lysator.liu.se)
2023-06-23 10:56:03 +0000ubert(~Thunderbi@p200300ecdf0b5770229a67f1b6d9782d.dip0.t-ipconnect.de) (Quit: ubert)
2023-06-23 10:56:08 +0000cafkafk(~cafkafk@fsf/member/cafkafk) (Ping timeout: 240 seconds)
2023-06-23 10:58:36 +0000cafkafk(~cafkafk@fsf/member/cafkafk)
2023-06-23 10:59:11 +0000doyougnu(~doyougnu@45.46.170.68)
2023-06-23 10:59:56 +0000wootehfoot(~wootehfoo@user/wootehfoot)
2023-06-23 11:11:10 +0000chromoblob(~user@37.113.180.121) (Ping timeout: 250 seconds)
2023-06-23 11:13:16 +0000gnalzo(~gnalzo@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c) (Quit: WeeChat 3.8)
2023-06-23 11:16:05 +0000hugo(znc@verdigris.lysator.liu.se) (Ping timeout: 246 seconds)
2023-06-23 11:16:31 +0000mei(~mei@user/mei) (Remote host closed the connection)
2023-06-23 11:18:55 +0000mei(~mei@user/mei)
2023-06-23 11:21:31 +0000pavonia(~user@user/siracusa) (Quit: Bye!)
2023-06-23 11:22:47 +0000danse-nr3(~francesco@151.44.132.173) (Ping timeout: 264 seconds)
2023-06-23 11:25:06 +0000hugo(znc@verdigris.lysator.liu.se)
2023-06-23 11:29:23 +0000acidjnk(~acidjnk@p200300d6e7072f582449b77723e04244.dip0.t-ipconnect.de) (Ping timeout: 264 seconds)
2023-06-23 11:29:47 +0000doyougnu(~doyougnu@45.46.170.68) (Remote host closed the connection)
2023-06-23 11:33:12 +0000jtza8(~user@165.255.86.117)
2023-06-23 11:33:17 +0000dextaa(~DV@user/dextaa) (Quit: Leaving)
2023-06-23 11:34:28 +0000dextaa(~DV@user/dextaa)
2023-06-23 11:36:02 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 246 seconds)
2023-06-23 11:40:30 +0000doyougnu(~node0@45.46.170.68)
2023-06-23 11:43:13 +0000coot(~coot@89-69-206-216.dynamic.chello.pl) (Quit: coot)
2023-06-23 11:43:49 +0000coot(~coot@89-69-206-216.dynamic.chello.pl)
2023-06-23 11:44:45 +0000chromoblob(~user@37.113.180.121)
2023-06-23 11:45:51 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net)
2023-06-23 11:48:26 +0000tomjaguarpaw(~tom@172-104-25-182.ip.linodeusercontent.com)
2023-06-23 11:49:18 +0000chromoblob(~user@37.113.180.121) (Ping timeout: 250 seconds)
2023-06-23 11:49:47 +0000chromoblob(~user@37.113.180.121)
2023-06-23 11:51:20 +0000ec(~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds)
2023-06-23 11:51:27 +0000Pickchea(~private@user/pickchea) (Quit: Leaving)
2023-06-23 11:56:47 +0000Lycurgus(~juan@user/Lycurgus)
2023-06-23 11:56:53 +0000doyougnu(~node0@45.46.170.68) (Quit: ZNC 1.8.2 - https://znc.in)
2023-06-23 11:58:45 +0000doyougnu(~node0@45.46.170.68)
2023-06-23 12:04:01 +0000finn(~finn@rul16-h01-176-151-21-224.dsl.sta.abo.bbox.fr)
2023-06-23 12:07:58 +0000ec(~ec@gateway/tor-sasl/ec)
2023-06-23 12:12:35 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Ping timeout: 264 seconds)
2023-06-23 12:13:32 +0000cbarrett(sid192934@id-192934.helmsley.irccloud.com) (Server closed connection)
2023-06-23 12:13:41 +0000cbarrett(sid192934@id-192934.helmsley.irccloud.com)
2023-06-23 12:18:37 +0000xff0x_(~xff0x@2405:6580:b080:900:57ce:487e:db60:a2b9)
2023-06-23 12:21:04 +0000doyougnu(~node0@45.46.170.68) (Quit: ZNC 1.8.2 - https://znc.in)
2023-06-23 12:21:24 +0000doyougnu(~node0@45.46.170.68)
2023-06-23 12:24:20 +0000kawen(~quassel@static.208.191.216.95.clients.your-server.de) (Server closed connection)
2023-06-23 12:24:29 +0000kawen(~quassel@static.208.191.216.95.clients.your-server.de)
2023-06-23 12:30:17 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176)
2023-06-23 12:31:13 +0000L29Ah(~L29Ah@wikipedia/L29Ah)
2023-06-23 12:33:48 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net)
2023-06-23 12:34:47 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Ping timeout: 264 seconds)
2023-06-23 12:35:51 +0000acidjnk(~acidjnk@p200300d6e7072f582449b77723e04244.dip0.t-ipconnect.de)
2023-06-23 12:41:42 +0000danse-nr3(~francesco@151.44.132.173)
2023-06-23 12:46:11 +0000bontaq(~user@ool-45779b84.dyn.optonline.net)
2023-06-23 12:48:29 +0000danse-nr3_(~francesco@151.46.165.173)
2023-06-23 12:50:50 +0000danse-nr3(~francesco@151.44.132.173) (Ping timeout: 250 seconds)
2023-06-23 12:51:05 +0000Lycurgus(~juan@user/Lycurgus) (Quit: Exeunt: personae.ai-integration.biz)
2023-06-23 13:02:12 +0000raehik(~raehik@cpc95906-rdng25-2-0-cust156.15-3.cable.virginm.net) (Quit: WeeChat 3.8)
2023-06-23 13:05:19 +0000dsrt^(~dsrt@c-71-204-38-59.hsd1.ga.comcast.net) (Remote host closed the connection)
2023-06-23 13:05:40 +0000dsrt^(~dsrt@c-71-204-38-59.hsd1.ga.comcast.net)
2023-06-23 13:09:18 +0000dsrt^(~dsrt@c-71-204-38-59.hsd1.ga.comcast.net) (Remote host closed the connection)
2023-06-23 13:09:36 +0000dsrt^(~dsrt@c-71-204-38-59.hsd1.ga.comcast.net)
2023-06-23 13:10:01 +0000[itchyjunk](~itchyjunk@user/itchyjunk/x-7353470)
2023-06-23 13:26:59 +0000finn(~finn@rul16-h01-176-151-21-224.dsl.sta.abo.bbox.fr) (Ping timeout: 264 seconds)
2023-06-23 13:28:40 +0000degraafk(sid71464@id-71464.lymington.irccloud.com) (Server closed connection)
2023-06-23 13:28:50 +0000degraafk(sid71464@id-71464.lymington.irccloud.com)
2023-06-23 13:32:42 +0000__monty__(~toonn@user/toonn) (Quit: leaving)
2023-06-23 13:38:56 +0000cfricke(~cfricke@user/cfricke) (Ping timeout: 250 seconds)
2023-06-23 13:42:53 +0000CalculusCats7(NyaaTheKit@user/calculuscat) (Quit: Meow Meow Meow Meow Meow Meow Meow Meow)
2023-06-23 13:43:58 +0000CalculusCats(NyaaTheKit@user/calculuscat)
2023-06-23 13:48:12 +0000notzmv(~zmv@user/notzmv) (Ping timeout: 240 seconds)
2023-06-23 13:51:51 +0000vpan(~0@mail.elitnet.lt) (Quit: Leaving.)
2023-06-23 13:52:34 +0000ripspin(~chatzilla@1.145.204.85)
2023-06-23 13:56:02 +0000danse-nr3_(~francesco@151.46.165.173) (Ping timeout: 245 seconds)
2023-06-23 14:03:06 +0000__monty__(~toonn@user/toonn)
2023-06-23 14:07:12 +0000gurkenglas(~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de)
2023-06-23 14:15:17 +0000acidjnk(~acidjnk@p200300d6e7072f582449b77723e04244.dip0.t-ipconnect.de) (Ping timeout: 246 seconds)
2023-06-23 14:15:46 +0000pjlsergeant__(sid143467@id-143467.hampstead.irccloud.com) (Server closed connection)
2023-06-23 14:15:59 +0000pjlsergeant__(sid143467@id-143467.hampstead.irccloud.com)
2023-06-23 14:18:42 +0000danse-nr3_(~francesco@151.46.165.173)
2023-06-23 14:22:00 +0000Pickchea(~private@user/pickchea)
2023-06-23 14:26:29 +0000cfricke(~cfricke@user/cfricke)
2023-06-23 14:30:12 +0000jero98772(~jero98772@2800:484:1d7f:5d36::2)
2023-06-23 14:32:14 +0000misterfish(~misterfis@87.215.131.102) (Ping timeout: 250 seconds)
2023-06-23 14:36:13 +0000mht-wtf(~mht@2a03:b0c0:3:e0::1e2:c001) (Server closed connection)
2023-06-23 14:36:25 +0000mht-wtf(~mht@2a03:b0c0:3:e0::1e2:c001)
2023-06-23 14:38:18 +0000Pickchea(~private@user/pickchea) (Ping timeout: 250 seconds)
2023-06-23 14:44:49 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 14:45:28 +0000jtza8(~user@165.255.86.117) (Quit: ERC 5.4 (IRC client for GNU Emacs 28.2))
2023-06-23 14:46:35 +0000Unicorn_Princess(~Unicorn_P@user/Unicorn-Princess/x-3540542)
2023-06-23 14:48:15 +0000son0p(~ff@181.136.122.143)
2023-06-23 14:49:54 +0000Arsen_(arsen@gentoo/developer/managarm.dev.Arsen) (Quit: Quit.)
2023-06-23 14:53:45 +0000zeenk(~zeenk@2a02:2f04:a203:a700::7fe) (Quit: Konversation terminated!)
2023-06-23 14:54:58 +0000Arsen(arsen@gentoo/developer/managarm.dev.Arsen)
2023-06-23 14:56:47 +0000gnalzo(~gnalzo@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c)
2023-06-23 14:58:54 +0000mauke(~mauke@user/mauke)
2023-06-23 14:59:23 +0000albet70(~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection)
2023-06-23 14:59:32 +0000danse-nr3_(~francesco@151.46.165.173) (Ping timeout: 250 seconds)
2023-06-23 15:00:09 +0000ft(~ft@p508db151.dip0.t-ipconnect.de)
2023-06-23 15:00:10 +0000__monty__(~toonn@user/toonn) (Quit: leaving)
2023-06-23 15:00:44 +0000shriekingnoise(~shrieking@186.137.175.87)
2023-06-23 15:04:28 +0000byte(~byte@user/byte)
2023-06-23 15:05:09 +0000Cale(~cale@cpe80d04ade0a03-cm80d04ade0a01.cpe.net.cable.rogers.com) (Read error: Connection reset by peer)
2023-06-23 15:05:30 +0000albet70(~xxx@2400:8902::f03c:92ff:fe60:98d8)
2023-06-23 15:06:01 +0000Cale(~cale@cpe80d04ade0a03-cm80d04ade0a01.cpe.net.cable.rogers.com)
2023-06-23 15:07:14 +0000scav(sid309693@user/scav) (Server closed connection)
2023-06-23 15:07:50 +0000scav(sid309693@user/scav)
2023-06-23 15:08:26 +0000__monty__(~toonn@user/toonn)
2023-06-23 15:09:23 +0000sunarch(~sunarch@user/sunarch) (Quit: WeeChat 3.8)
2023-06-23 15:12:51 +0000danse-nr3_(~francesco@151.46.165.173)
2023-06-23 15:16:53 +0000grfn(sid449115@id-449115.helmsley.irccloud.com) (Server closed connection)
2023-06-23 15:17:01 +0000grfn(sid449115@id-449115.helmsley.irccloud.com)
2023-06-23 15:17:40 +0000bgs(~bgs@212-85-160-171.dynamic.telemach.net)
2023-06-23 15:19:08 +0000mmhat(~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de)
2023-06-23 15:23:19 +0000wallymathieu(sid533252@id-533252.uxbridge.irccloud.com) (Server closed connection)
2023-06-23 15:23:29 +0000wallymathieu(sid533252@id-533252.uxbridge.irccloud.com)
2023-06-23 15:26:24 +0000merijn(~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl) (Ping timeout: 250 seconds)
2023-06-23 15:37:02 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 15:39:08 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 15:40:15 +0000Sgeo(~Sgeo@user/sgeo)
2023-06-23 15:40:55 +0000mmhat(~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de) (Quit: WeeChat 3.8)
2023-06-23 15:41:55 +0000euandreh(~Thunderbi@189.6.18.7) (Remote host closed the connection)
2023-06-23 15:53:41 +0000euandreh(~Thunderbi@189.6.18.7)
2023-06-23 15:53:49 +0000merijn(~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl)
2023-06-23 15:54:49 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176)
2023-06-23 15:58:32 +0000cafkafk(~cafkafk@fsf/member/cafkafk) (Ping timeout: 240 seconds)
2023-06-23 15:59:17 +0000notzmv(~zmv@user/notzmv)
2023-06-23 16:03:04 +0000econo_(uid147250@id-147250.tinside.irccloud.com)
2023-06-23 16:04:47 +0000CiaoSen(~Jura@2a05:5800:29f:3300:664b:f0ff:fe37:9ef) (Ping timeout: 245 seconds)
2023-06-23 16:05:06 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Remote host closed the connection)
2023-06-23 16:06:08 +0000nut(~finn@176-151-21-224.abo.bbox.fr)
2023-06-23 16:06:50 +0000eggplantade(~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net)
2023-06-23 16:07:47 +0000danse-nr3_(~francesco@151.46.165.173) (Ping timeout: 264 seconds)
2023-06-23 16:07:47 +0000byte(~byte@user/byte) (Ping timeout: 264 seconds)
2023-06-23 16:09:18 +0000cfricke(~cfricke@user/cfricke) (Quit: WeeChat 3.8)
2023-06-23 16:10:26 +0000nut(~finn@176-151-21-224.abo.bbox.fr) (Ping timeout: 246 seconds)
2023-06-23 16:12:33 +0000_ht(~Thunderbi@28-52-174-82.ftth.glasoperator.nl)
2023-06-23 16:15:01 +0000byte(~byte@user/byte)
2023-06-23 16:18:32 +0000xff0x_(~xff0x@2405:6580:b080:900:57ce:487e:db60:a2b9) (Ping timeout: 245 seconds)
2023-06-23 16:20:30 +0000xff0x_(~xff0x@ai098135.d.east.v6connect.net)
2023-06-23 16:21:56 +0000danse-nr3_(~francesco@151.46.165.173)
2023-06-23 16:27:04 +0000merijn(~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl) (Ping timeout: 250 seconds)
2023-06-23 16:28:31 +0000tzh(~tzh@c-24-21-73-154.hsd1.or.comcast.net)
2023-06-23 16:29:34 +0000perrierjouet(~perrier-j@modemcable048.127-56-74.mc.videotron.ca) (Quit: WeeChat 3.8)
2023-06-23 16:29:53 +0000perrierjouet(~perrier-j@modemcable048.127-56-74.mc.videotron.ca)
2023-06-23 16:35:35 +0000gnalzo(~gnalzo@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c) (Quit: WeeChat 3.8)
2023-06-23 16:35:45 +0000TheCoffeMaker(~TheCoffeM@user/thecoffemaker) (Ping timeout: 240 seconds)
2023-06-23 16:36:33 +0000Guest63(~Guest5@p4fc7a247.dip0.t-ipconnect.de)
2023-06-23 16:37:01 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 16:38:03 +0000jinsl(~jinsl@2408:8207:2558:8870:211:32ff:fec8:6aea) (Quit: ZNC - https://znc.in)
2023-06-23 16:38:10 +0000eggplantade(~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
2023-06-23 16:38:16 +0000jinsl(~jinsl@2408:8207:2558:8870:211:32ff:fec8:6aea)
2023-06-23 16:38:22 +0000Guest63(~Guest5@p4fc7a247.dip0.t-ipconnect.de) (Client Quit)
2023-06-23 16:38:52 +0000ByronJohnson(~bairyn@50.250.232.19) (Ping timeout: 240 seconds)
2023-06-23 16:39:08 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 16:39:09 +0000ByronJohnson(~bairyn@50-250-232-19-static.hfc.comcastbusiness.net)
2023-06-23 16:41:54 +0000gurkenglas(~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de) (Read error: Connection reset by peer)
2023-06-23 16:48:05 +0000gurkenglas(~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de)
2023-06-23 16:48:14 +0000danse-nr3_(~francesco@151.46.165.173) (Read error: Connection reset by peer)
2023-06-23 16:48:16 +0000danse-nr3__(~francesco@151.46.142.153)
2023-06-23 16:48:38 +0000k``(~user@136.56.140.2)
2023-06-23 16:51:00 +0000 <k``> Why does Haskell prefer `tail` and `init` throwing an error on `[]` rather than producing `[]` ?
2023-06-23 16:52:10 +0000 <ncf> because that would make no sense, and possibly result in hard-to-debug infinite loops
2023-06-23 16:53:24 +0000 <EvanR> more incisive question is why haskell gives tail and init the "wrong type" (a more precise type might catch that error)
2023-06-23 16:53:25 +0000__monty__(~toonn@user/toonn) (Quit: leaving)
2023-06-23 16:54:02 +0000 <k``> You mean for folks calling `fix tail` and then using unsafePerformIO to catch the error that it eventually throws?
2023-06-23 16:54:46 +0000 <k``> Sorry, not `fix`
2023-06-23 16:58:01 +0000 <EvanR> usually algorithms with tail are written assuming the argument list of non-empty. In which case the presence of an empty list is a bug. But if you can reasonably use a case statement instead of tail you're golden
2023-06-23 16:58:13 +0000 <EvanR> init is a bit harder to do that way
2023-06-23 16:58:31 +0000 <ncf> k``: sum l = head l + sum (tail l) -- oops, i forgot the base case; what happens now?
2023-06-23 16:58:35 +0000ft(~ft@p508db151.dip0.t-ipconnect.de) (Quit: leaving)
2023-06-23 16:58:45 +0000 <ncf> should sum [] loop forever or crash?
2023-06-23 16:59:11 +0000 <ncf> (well it would crash anyway because of head [] but you get the idea)
2023-06-23 16:59:19 +0000TheCoffeMaker(~TheCoffeM@user/thecoffemaker)
2023-06-23 16:59:20 +0000 <k``> I mean, you're using head without checking for null. Is that not universally regarded as insane?
2023-06-23 16:59:36 +0000 <EvanR> making the programming language treat human errors as not errors is an ancient crime against humanity
2023-06-23 16:59:49 +0000 <chromoblob> length l = 1 + length (tail l)
2023-06-23 17:00:00 +0000 <chromoblob> "ancient" hehehe
2023-06-23 17:00:05 +0000 <k``> Fair.
2023-06-23 17:00:30 +0000 <geekosaur> goes back at least to WATFIV
2023-06-23 17:00:37 +0000 <EvanR> the javascript table of what happens if you use + in any way, none of which are a crash, is a great example
2023-06-23 17:00:40 +0000 <ncf> k``: i mean sure, but in that case there's no point in tail [] returning [] either...
2023-06-23 17:00:43 +0000 <geekosaur> seems ancient enough to me
2023-06-23 17:01:03 +0000 <chromoblob> tail [] = "banana"
2023-06-23 17:01:10 +0000 <chromoblob> tail :: String -> String
2023-06-23 17:01:20 +0000ft(~ft@p508db151.dip0.t-ipconnect.de)
2023-06-23 17:01:53 +0000 <EvanR> and I'll repeat the first point. [] is not the tail of an empty list so... doing that would not "do what it says on the tin"
2023-06-23 17:02:10 +0000 <k``> The tail of the empty list is what you define it to be.
2023-06-23 17:02:18 +0000 <EvanR> really.
2023-06-23 17:02:23 +0000 <chromoblob> you shouldn't define it at all
2023-06-23 17:02:34 +0000 <chromoblob> so that's why it's bottom, i think
2023-06-23 17:02:47 +0000 <k``> I think `tail [] = undefined` is pretty unhelpful.
2023-06-23 17:03:06 +0000 <mauke> how so?
2023-06-23 17:03:17 +0000 <k``> Or do you mean the case should be ommitted?
2023-06-23 17:03:32 +0000Xe(~cadey@tailscale/xe) (Ping timeout: 245 seconds)
2023-06-23 17:03:37 +0000 <EvanR> you can omit that case with a different type signature
2023-06-23 17:03:54 +0000 <int-e> > tail []
2023-06-23 17:03:56 +0000 <lambdabot> *Exception: Prelude.tail: empty list
2023-06-23 17:04:24 +0000kimiamania6(~6790af62@user/kimiamania)
2023-06-23 17:04:47 +0000__monty__(~toonn@user/toonn)
2023-06-23 17:05:12 +0000 <chromoblob> this is almost like "what is the natural predecessor of 0"
2023-06-23 17:05:39 +0000 <chromoblob> if it had a predecessor, you couldn't do infinite descent
2023-06-23 17:06:55 +0000 <EvanR> also, if you are keen to define things in ways that you find to be helpful, you can
2023-06-23 17:07:12 +0000 <chromoblob> tailOrEmpty
2023-06-23 17:07:21 +0000 <EvanR> ^
2023-06-23 17:07:35 +0000 <k``> So then let me ask another question. Why does `drop 1` [] not throw an error?
2023-06-23 17:07:37 +0000 <ncf> defining pred 0 = 0 wouldn't magically make ℕ non-well-founded, but it would break the contract that pred x < x
2023-06-23 17:08:08 +0000 <k``> > drop 1 []
2023-06-23 17:08:10 +0000 <lambdabot> []
2023-06-23 17:08:23 +0000 <int-e> I'm used to `tail []` being an error... but I'm sure I could live with a Haskell that has `tail [] = []` as well.
2023-06-23 17:08:24 +0000 <k``> take 5 []
2023-06-23 17:08:32 +0000 <k``> > take 5 []
2023-06-23 17:08:34 +0000 <lambdabot> []
2023-06-23 17:09:10 +0000 <int-e> Indeed, if you actually need that total variant of `tail`, use `drop 1`.
2023-06-23 17:09:31 +0000 <chromoblob> good, i'm also wondering why
2023-06-23 17:09:45 +0000waleee(~waleee@2001:9b0:21c:4000:5bf9:6515:c030:57b7)
2023-06-23 17:09:50 +0000 <int-e> I think the idea is that it's a field selector for the list type, just like `head`.
2023-06-23 17:10:45 +0000 <int-e> (imagine data List a = Nil | Cons { head :: a, tail :: List a })
2023-06-23 17:10:52 +0000 <k``> I see, so rather than interpreting `tail` as `give me all the remaining elements after the head` , is `give me the second value of the cons cell`.
2023-06-23 17:11:28 +0000 <chromoblob> data [a] = [] | (:) { head :: a, tail :: [a] }
2023-06-23 17:11:49 +0000 <int-e> chromoblob: oh right, that almost works
2023-06-23 17:11:55 +0000 <EvanR> you might not be holding a cons cell is the issue
2023-06-23 17:12:15 +0000 <EvanR> in which case the tail, the field selector, don't make sense
2023-06-23 17:13:30 +0000acidjnk(~acidjnk@p200300d6e7072f58e181befd01b866a0.dip0.t-ipconnect.de)
2023-06-23 17:13:55 +0000 <chromoblob> why drop n l = [] when n > length l? how can it be used?
2023-06-23 17:14:42 +0000 <EvanR> so that if you take more than there is in the list it doesn't crash and could very well give you useful stuff
2023-06-23 17:15:19 +0000 <EvanR> take n l ++ drop n l = l still makes sense
2023-06-23 17:16:02 +0000 <EvanR> allowing you do use that law without first checking n is small enough
2023-06-23 17:16:25 +0000 <chromoblob> i need an example or two where it will be useful
2023-06-23 17:17:00 +0000 <EvanR> I think I have one from advent of code
2023-06-23 17:17:35 +0000 <ncf> look at all the times you've used take and drop and count how many of those are really "take at most" and "drop at most"
2023-06-23 17:17:56 +0000 <int-e> > let splitOn p [] = []; splitOn p xs = let (ys, zs) = break p xs in ys : splitOn p (drop 1 zs) in splitOn even [1,3,2,4,5,6,1]
2023-06-23 17:17:58 +0000 <lambdabot> [[1,3],[],[5],[1]]
2023-06-23 17:19:44 +0000ByronJohnson(~bairyn@50-250-232-19-static.hfc.comcastbusiness.net) (Ping timeout: 246 seconds)
2023-06-23 17:19:55 +0000 <EvanR> nevermind, all my takes and drops are exact
2023-06-23 17:19:57 +0000 <int-e> I don't think that there is a theme around uses of `drop n xs` with n > length xs; it just comes on occasion when dealing with lists.
2023-06-23 17:20:53 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176)
2023-06-23 17:21:35 +0000 <int-e> > map (printf "%.3s") ["ab", "abcd"] :: [String]
2023-06-23 17:21:37 +0000 <lambdabot> ["ab","abc"]
2023-06-23 17:21:48 +0000 <EvanR> a different take and drop which crashes would satsify e.g. take n l definitely has length n if it doesn't crash
2023-06-23 17:21:51 +0000 <int-e> > map (take 3) ["ab", "abcd"] :: [String]
2023-06-23 17:21:53 +0000 <lambdabot> ["ab","abc"]
2023-06-23 17:21:56 +0000 <ncf> "all my takes are exact" -- average twitter user
2023-06-23 17:22:40 +0000 <EvanR> but that crashing part leads back to "you're using the wrong datatype / type sig"
2023-06-23 17:23:08 +0000 <EvanR> i.e. you wanted a Vect n
2023-06-23 17:23:31 +0000ss4(~wootehfoo@user/wootehfoot)
2023-06-23 17:23:50 +0000Pickchea(~private@user/pickchea)
2023-06-23 17:23:54 +0000 <chromoblob> int-e: splitOn even [2, 1] = [[], [1]] but splitOn even [1, 2] = [[1]]
2023-06-23 17:24:25 +0000 <int-e> chromoblob: nice
2023-06-23 17:26:04 +0000 <int-e> chromoblob: I guess the base case is wrong if the predicate recognizes separators; [] should split into [[]].
2023-06-23 17:26:26 +0000 <int-e> hmm
2023-06-23 17:27:06 +0000wootehfoot(~wootehfoo@user/wootehfoot) (Ping timeout: 246 seconds)
2023-06-23 17:27:10 +0000 <int-e> Ultimately the `drop 1` is ill-advised there. Good to know.
2023-06-23 17:27:36 +0000wootehfoot(~wootehfoo@user/wootehfoot)
2023-06-23 17:29:29 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 17:30:12 +0000ss4(~wootehfoo@user/wootehfoot) (Ping timeout: 245 seconds)
2023-06-23 17:32:42 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 17:36:03 +0000ripspin(~chatzilla@1.145.204.85) (Remote host closed the connection)
2023-06-23 17:37:02 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 17:37:43 +0000Xe(~cadey@tailscale/xe)
2023-06-23 17:39:09 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 17:40:12 +0000Pickchea(~private@user/pickchea) (Ping timeout: 245 seconds)
2023-06-23 17:41:08 +0000ss4(~wootehfoo@user/wootehfoot)
2023-06-23 17:41:36 +0000danse-nr3__(~francesco@151.46.142.153) (Ping timeout: 250 seconds)
2023-06-23 17:42:54 +0000wootehfoot(~wootehfoo@user/wootehfoot) (Ping timeout: 250 seconds)
2023-06-23 17:46:42 +0000ByronJohnson(~bairyn@50-250-232-19-static.hfc.comcastbusiness.net)
2023-06-23 17:53:00 +0000mechap(~mechap@user/mechap)
2023-06-23 17:58:56 +0000ByronJohnson(~bairyn@50-250-232-19-static.hfc.comcastbusiness.net) (Ping timeout: 250 seconds)
2023-06-23 18:02:08 +0000TheCoffeMaker(~TheCoffeM@user/thecoffemaker) (Quit: So long and thanks for all the fish)
2023-06-23 18:02:30 +0000TheCoffeMaker(~TheCoffeM@user/thecoffemaker)
2023-06-23 18:03:10 +0000mxs(~mxs@user/mxs) (Ping timeout: 260 seconds)
2023-06-23 18:03:21 +0000drdo(~drdo@bl8-153-185.dsl.telepac.pt) (Remote host closed the connection)
2023-06-23 18:03:30 +0000APic(apic@apic.name) (Ping timeout: 240 seconds)
2023-06-23 18:06:28 +0000shapr(~user@2600:1700:c640:3100:26eb:2672:45bb:f222)
2023-06-23 18:08:28 +0000nurupo(~nurupo.ga@user/nurupo) (Server closed connection)
2023-06-23 18:08:42 +0000nurupo(~nurupo.ga@user/nurupo)
2023-06-23 18:10:43 +0000ByronJohnson(~bairyn@50-250-232-19-static.hfc.comcastbusiness.net)
2023-06-23 18:11:41 +0000h2t(~h2t@user/h2t) (Server closed connection)
2023-06-23 18:11:55 +0000h2t(~h2t@user/h2t)
2023-06-23 18:17:01 +0000chymera(~chymera@ns1000526.ip-51-81-46.us) (Server closed connection)
2023-06-23 18:18:49 +0000chymera(~chymera@ns1000526.ip-51-81-46.us)
2023-06-23 18:19:46 +0000 <nyc> I wonder where -ddump-to-file dumps its files.
2023-06-23 18:20:17 +0000eggplantade(~Eggplanta@2600:1700:38c5:d800:38f8:4900:37c0:4176) (Remote host closed the connection)
2023-06-23 18:21:33 +0000 <geekosaur> `-odir` iirc
2023-06-23 18:21:56 +0000 <EvanR> I tried to get the dirt on WATFIV's transgressions but didn't immediately find anything
2023-06-23 18:22:33 +0000 <geekosaur> WATFIV was infamous for trying to do something no matter what errors were in the source it was compiling
2023-06-23 18:23:05 +0000 <nyc> geekosaur: Maybe the options didn't take hold. I'll try again.
2023-06-23 18:23:08 +0000 <Rembane> Sounds like old versions of Internet Explorer.
2023-06-23 18:23:10 +0000 <geekosaur> "correct" spelling errors, etc
2023-06-23 18:24:57 +0000 <geekosaur> nyc, note that cabal and stack will override your specifications for `-odir` (and force `-ddump-to-file`)… in different ways
2023-06-23 18:26:07 +0000 <nyc> geekosaur: I need to get past their overriding, then.
2023-06-23 18:26:15 +0000mmhat(~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de)
2023-06-23 18:29:49 +0000eggplantade(~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net)
2023-06-23 18:31:50 +0000merijn(~merijn@86-86-29-250.fixed.kpn.net)
2023-06-23 18:33:30 +0000 <k``> for what it's worth, cabal usually dumps to dist-newstyle/build/{platform-specific}/ghc-{version}/{package}-{version}/build/src/
2023-06-23 18:34:24 +0000 <nyc> k``: Okay, in that case, it's just not there.
2023-06-23 18:34:36 +0000__monty__(~toonn@user/toonn) (Quit: leaving)
2023-06-23 18:34:51 +0000 <Nosrep> why is haskell language server constantly broken
2023-06-23 18:35:16 +0000 <k``> In your ghc-options line, I think ddump-to-file has to come before the options you want to dump. At least I ran into problems years ago when I had it last.
2023-06-23 18:35:20 +0000 <Nosrep> if i stack build and it errors out hls just dies completely even after a restart
2023-06-23 18:36:32 +0000 <nyc> k``: I've got some stg dumps now.
2023-06-23 18:37:01 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 18:39:08 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 18:39:44 +0000 <nyc> Now I've got to figure out how to build the package that I actually need the stg from & how to switch ghc versions in it, which nix appears to complicate.
2023-06-23 18:40:37 +0000__monty__(~toonn@user/toonn)
2023-06-23 18:43:07 +0000dcoutts_(~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) (Ping timeout: 245 seconds)
2023-06-23 18:44:23 +0000chele(~chele@user/chele) (Remote host closed the connection)
2023-06-23 18:50:44 +0000drdo(~drdo@bl8-153-185.dsl.telepac.pt)
2023-06-23 18:52:45 +0000 <geekosaur> Nosrep, suggest asking in #haskell-language-server
2023-06-23 18:52:56 +0000 <geekosaur> I've never seen that kind of breakage but I use cabal
2023-06-23 18:55:47 +0000hyvoid(~hyenavoid@222-0-178-69.static.gci.net) (Quit: "going offlinesies")
2023-06-23 18:55:51 +0000 <Nosrep> yeah cabal is fine kinda
2023-06-23 18:56:14 +0000 <Nosrep> there's an issue already on github and the solution is just use the cabal cradle which isn't a great solution imo
2023-06-23 18:57:59 +0000mxs(~mxs@user/mxs)
2023-06-23 18:59:10 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2023-06-23 18:59:54 +0000kupi_(uid212005@id-212005.hampstead.irccloud.com)
2023-06-23 19:05:12 +0000infinity0(~infinity0@pwned.gg) (Ping timeout: 245 seconds)
2023-06-23 19:05:39 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 19:06:06 +0000merijn(~merijn@86-86-29-250.fixed.kpn.net) (Ping timeout: 250 seconds)
2023-06-23 19:16:02 +0000infinity0(~infinity0@pwned.gg) (Ping timeout: 245 seconds)
2023-06-23 19:16:59 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 19:17:27 +0000drdo(~drdo@bl8-153-185.dsl.telepac.pt) (Remote host closed the connection)
2023-06-23 19:17:56 +0000drdo(~drdo@bl8-153-185.dsl.telepac.pt)
2023-06-23 19:19:59 +0000k``(~user@136.56.140.2) (Remote host closed the connection)
2023-06-23 19:20:13 +0000k``(~user@136.56.140.2)
2023-06-23 19:27:17 +0000infinity0(~infinity0@pwned.gg) (Ping timeout: 245 seconds)
2023-06-23 19:29:46 +0000bratwurst(~dfadsva@2604:3d09:207f:f650::38e4)
2023-06-23 19:29:53 +0000mei(~mei@user/mei) (Remote host closed the connection)
2023-06-23 19:30:35 +0000hugo(znc@verdigris.lysator.liu.se) (Ping timeout: 264 seconds)
2023-06-23 19:32:18 +0000mei(~mei@user/mei)
2023-06-23 19:33:59 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 19:34:27 +0000shapr(~user@2600:1700:c640:3100:26eb:2672:45bb:f222) (Remote host closed the connection)
2023-06-23 19:34:40 +0000shapr(~user@2600:1700:c640:3100:ee1c:885c:bacf:e48c)
2023-06-23 19:36:29 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 19:38:35 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 19:40:39 +0000lieven(~mal@ns2.wyrd.be) (Server closed connection)
2023-06-23 19:40:59 +0000lieven(~mal@ns2.wyrd.be)
2023-06-23 19:54:32 +0000hugo-(znc@2001:6b0:17:f0a0::17)
2023-06-23 19:57:19 +0000Nokurn(~jeremiah@cpe-76-86-186-227.socal.res.rr.com)
2023-06-23 20:07:35 +0000Unicorn_Princess(~Unicorn_P@user/Unicorn-Princess/x-3540542) (Remote host closed the connection)
2023-06-23 20:14:09 +0000machinedgod(~machinedg@d198-53-218-113.abhsia.telus.net) (Quit: Lost terminal)
2023-06-23 20:14:31 +0000machinedgod(~machinedg@d198-53-218-113.abhsia.telus.net)
2023-06-23 20:15:33 +0000dcoutts_(~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net)
2023-06-23 20:18:30 +0000machinedgod(~machinedg@d198-53-218-113.abhsia.telus.net) (Client Quit)
2023-06-23 20:18:58 +0000machinedgod(~machinedg@d198-53-218-113.abhsia.telus.net)
2023-06-23 20:19:31 +0000Pickchea(~private@user/pickchea)
2023-06-23 20:19:38 +0000mmhat(~mmh@p200300f1c702b07fee086bfffe095315.dip0.t-ipconnect.de) (Quit: WeeChat 3.8)
2023-06-23 20:20:45 +0000jinsun(~jinsun@user/jinsun) (Read error: Connection reset by peer)
2023-06-23 20:30:00 +0000Guillaum[m](~guiboumat@2001:470:69fc:105::1:72ac) (Server closed connection)
2023-06-23 20:30:42 +0000michalz(~michalz@185.246.207.197) (Remote host closed the connection)
2023-06-23 20:33:04 +0000elkcl(~elkcl@broadband-37-110-27-252.ip.moscow.rt.ru) (Ping timeout: 252 seconds)
2023-06-23 20:35:20 +0000hook54321(sid149355@user/hook54321) (Server closed connection)
2023-06-23 20:36:31 +0000hyvoid(~hyenavoid@222-0-178-69.static.gci.net)
2023-06-23 20:36:44 +0000hook54321(sid149355@user/hook54321)
2023-06-23 20:37:02 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 20:39:03 +0000merijn(~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl)
2023-06-23 20:39:08 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 20:41:49 +0000elkcl(~elkcl@broadband-37-110-27-252.ip.moscow.rt.ru)
2023-06-23 20:46:12 +0000chromoblob(~user@37.113.180.121) (Ping timeout: 250 seconds)
2023-06-23 20:49:47 +0000__monty__(~toonn@user/toonn) (Quit: leaving)
2023-06-23 20:50:39 +0000gurkenglas(~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de) (Read error: Connection reset by peer)
2023-06-23 20:51:33 +0000__monty__(~toonn@user/toonn)
2023-06-23 20:55:38 +0000chromoblob(~user@37.113.180.121)
2023-06-23 20:56:54 +0000eggplantade(~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection)
2023-06-23 20:57:58 +0000 <drdo> Any book recommendation for learning Haskell where the reader is a mathematician in an area unrelated to computation and has only a very basic experience with computer programming?
2023-06-23 20:58:20 +0000hippoid(~hippoid@user/hippoid) (Quit: WeeChat 3.8)
2023-06-23 20:58:51 +0000eggplantade(~Eggplanta@104-55-37-220.lightspeed.sntcca.sbcglobal.net)
2023-06-23 20:58:54 +0000coot(~coot@89-69-206-216.dynamic.chello.pl) (Quit: coot)
2023-06-23 21:00:10 +0000jargon(~jargon@116.sub-174-205-160.myvzw.com)
2023-06-23 21:00:36 +0000Nokurn(~jeremiah@cpe-76-86-186-227.socal.res.rr.com) (Ping timeout: 246 seconds)
2023-06-23 21:00:56 +0000oberblastmeister(~brian@c-67-186-157-91.hsd1.ma.comcast.net)
2023-06-23 21:01:56 +0000oberblastmeister(~brian@c-67-186-157-91.hsd1.ma.comcast.net) (Client Quit)
2023-06-23 21:05:19 +0000_ht(~Thunderbi@28-52-174-82.ftth.glasoperator.nl) (Quit: _ht)
2023-06-23 21:06:19 +0000trev(~trev@user/trev) (Quit: trev)
2023-06-23 21:08:35 +0000 <ryantrinkle> is anyone here a new at haskell but experienced with React? I'm writing a talk on React and Haskell integration, and I'd love to get feedback on the ideas
2023-06-23 21:11:31 +0000gurkenglas(~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de)
2023-06-23 21:13:47 +0000merijn(~merijn@c-001-001-003.client.esciencecenter.eduvpn.nl) (Ping timeout: 264 seconds)
2023-06-23 21:20:26 +0000byte(~byte@user/byte) (Ping timeout: 250 seconds)
2023-06-23 21:20:56 +0000byte`(~byte@user/byte)
2023-06-23 21:20:56 +0000byte`byte
2023-06-23 21:23:46 +0000 <monochrom> drdo: I would think that almost every generic Haskell textbook suits the "little or no prior programming" part.
2023-06-23 21:24:25 +0000 <drdo> monochrom: but not the first part
2023-06-23 21:24:29 +0000jargon_(~jargon@116.sub-174-205-160.myvzw.com)
2023-06-23 21:24:37 +0000 <monochrom> I don't think the first part matters.
2023-06-23 21:25:24 +0000dcoutts_(~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) (Remote host closed the connection)
2023-06-23 21:25:32 +0000 <geekosaur> math only really comes into it with advanced Haskell, I think. a lot of things in Haskell come from math, but you don't need math to learn or use them
2023-06-23 21:25:38 +0000euandreh(~Thunderbi@189.6.18.7) (Ping timeout: 250 seconds)
2023-06-23 21:25:40 +0000 <monochrom> You're a a lawyer or you're a surgeon or you're a pianist or you're a mathematician, it's all the same, you're a beginner in programming so you're a beginner in programming.
2023-06-23 21:25:46 +0000dcoutts_(~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net)
2023-06-23 21:26:15 +0000 <dolio> Is the desire for a book that specifically teaches how to unlearn all the things mathematicians do poorly? :þ
2023-06-23 21:26:23 +0000jargon(~jargon@116.sub-174-205-160.myvzw.com) (Ping timeout: 264 seconds)
2023-06-23 21:26:32 +0000 <monochrom> Oh haha, forgot that.
2023-06-23 21:26:53 +0000 <monochrom> Just last night I was complaining about "the function f(x)" already :)
2023-06-23 21:28:51 +0000 <EvanR> I'm looking for a book which teaches how to unlearn all the things that programmers do poorly, not even including all the stuff books on programming teach
2023-06-23 21:29:33 +0000 <EvanR> (OOP)
2023-06-23 21:29:35 +0000 <monochrom> But as an analogy, keyboard typing schools do not have a "special track for Lang-Lang level pianists".
2023-06-23 21:29:35 +0000 <jade[m]1> I'm looking for a book to unlearn programming
2023-06-23 21:29:40 +0000mc47(~mc47@xmonad/TheMC47) (Remote host closed the connection)
2023-06-23 21:29:41 +0000 <jade[m]1> (im trapped)
2023-06-23 21:30:08 +0000 <darkling> jade[m]1: Have you tried using mental floss? :)
2023-06-23 21:30:27 +0000 <monochrom> I think to unlearn programming you just go out more often. :)
2023-06-23 21:31:28 +0000 <EvanR> f(x) is a rabbit hole don't ask
2023-06-23 21:32:00 +0000 <monochrom> OOP is not bad. I don't think one needs to unlearn OOP.
2023-06-23 21:32:30 +0000 <EvanR> yeah if you did that you couldn't get all the jokes about it
2023-06-23 21:32:33 +0000 <monochrom> However, people do OOP poorly or even abuse it. That needs to be unlearned. But then it's tautological.
2023-06-23 21:33:00 +0000 <EvanR> poor OOP is poor
2023-06-23 21:33:10 +0000 <jade[m]1> I think you don't need to unlearn it, because knowing about something bad helps you avoid the bad parts about it
2023-06-23 21:33:21 +0000 <monochrom> But OK I have my share of track record of mocking OOP so I'm a hypocrite :)
2023-06-23 21:33:25 +0000 <jade[m]1> if you forgot about it you'd do the bad things again
2023-06-23 21:33:38 +0000 <EvanR> first semester will be entirely bad ways to do things
2023-06-23 21:33:55 +0000 <EvanR> just so you know what not to do
2023-06-23 21:34:30 +0000 <EvanR> I wonder if that's why bubblesort exists
2023-06-23 21:34:44 +0000 <monochrom> hahaha
2023-06-23 21:35:33 +0000 <hpc> "unlearning programming" makes me think of https://www.youtube.com/shorts/QJ3kCxsOjLc
2023-06-23 21:37:04 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 21:39:10 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 21:45:48 +0000ddellacosta(~ddellacos@146.70.166.166) (Quit: WeeChat 3.8)
2023-06-23 21:47:54 +0000ddellacosta(~ddellacos@146.70.166.166)
2023-06-23 21:49:48 +0000azimut(~azimut@gateway/tor-sasl/azimut)
2023-06-23 21:51:18 +0000Unicorn_Princess(~Unicorn_P@user/Unicorn-Princess/x-3540542)
2023-06-23 21:51:53 +0000Midjak(~Midjak@82.66.147.146) (Quit: This computer has gone to sleep)
2023-06-23 21:52:32 +0000ec(~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds)
2023-06-23 21:54:33 +0000ec(~ec@gateway/tor-sasl/ec)
2023-06-23 21:55:13 +0000nut(~finn@rul16-h01-176-151-21-224.dsl.sta.abo.bbox.fr)
2023-06-23 21:58:11 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2023-06-23 21:59:26 +0000chromoblob(~user@37.113.180.121) (Ping timeout: 250 seconds)
2023-06-23 22:00:40 +0000gmg(~user@user/gehmehgeh) (Quit: Leaving)
2023-06-23 22:00:54 +0000bgs(~bgs@212-85-160-171.dynamic.telemach.net) (Remote host closed the connection)
2023-06-23 22:07:28 +0000 <drdo> I suppose the desire is for a book that can take advantage of the general mathematical experience of the reader
2023-06-23 22:07:42 +0000 <drdo> and that has the right intuitions for someone with that background
2023-06-23 22:07:52 +0000 <drdo> Rather than droning on about burritos or whatever
2023-06-23 22:07:57 +0000 <dolio> I really have no idea why bubblesort is still taught. Not only is it usually a bad algorithm, it's harder to understand than the other bad algorithms. :)
2023-06-23 22:08:48 +0000 <monochrom> Here is the 1% of mathematical experience that's relevant. "f : X -> Y" from math becomes "f :: X -> Y" in Haskell. And also the fact that it's a pure function, i.e., not C functions.
2023-06-23 22:08:54 +0000 <jade[m]1> haha yeah
2023-06-23 22:09:19 +0000 <Nosrep> bubble sort might be marginally shorter? not sure about that though
2023-06-23 22:09:37 +0000 <Nosrep> i feel like it has less going on at least conceptually even if its harder to understand as a whole
2023-06-23 22:09:40 +0000 <monochrom> And here is why the other 99% is actually harmful. [x | x <- [0..], x < 0] is not going to be the empty list, despite mathemtical thinking.
2023-06-23 22:09:43 +0000ericson2314(~ericson23@2001:470:69fc:105::70c) (Server closed connection)
2023-06-23 22:09:46 +0000 <drdo> Is the channel overrun by trolls?
2023-06-23 22:09:49 +0000 <jade[m]1> there's this one weird algo that's even shorter
2023-06-23 22:09:57 +0000 <jade[m]1> but that's not taught either
2023-06-23 22:10:03 +0000ss4(~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer)
2023-06-23 22:10:05 +0000 <Nosrep> stooge?
2023-06-23 22:10:37 +0000jargon_jargon
2023-06-23 22:11:00 +0000 <monochrom> I have the same sentiment as dolio. If quadratic-time sorting is to be taught, selection sort or insertion sort is actually comprehensible.
2023-06-23 22:11:11 +0000 <jade[m]1> monochrom: unless we use something that's bounded inside the list, *right*?
2023-06-23 22:11:23 +0000dcoutts_(~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) (Ping timeout: 264 seconds)
2023-06-23 22:11:34 +0000 <monochrom> Yeah change [0..] to [0..10] and it's OK.
2023-06-23 22:12:00 +0000 <monochrom> But in this channel I've seen numerous mathematical talents who were tripped by this.
2023-06-23 22:12:01 +0000 <jade[m]1> what if you did :: [Word8]
2023-06-23 22:12:03 +0000 <dolio> I think the only thing it really has going for it is that it can be implemented in terms of a 'swap neighbors' primitive. So there's a really niche case where you might have a machine/network that is ideally suited to it specifically.
2023-06-23 22:12:11 +0000 <monochrom> To which I said "Haskell is not Mathematica".
2023-06-23 22:12:25 +0000 <Nosrep> i got tripped on it before i tried it out :x
2023-06-23 22:12:35 +0000nut(~finn@rul16-h01-176-151-21-224.dsl.sta.abo.bbox.fr) (Ping timeout: 264 seconds)
2023-06-23 22:12:43 +0000 <monochrom> QED :)
2023-06-23 22:13:15 +0000 <hpc> monochrom: if you really want to mess with your students, say that [0..3] is [0,1,2,3] and [0..2) is [0,1,2]
2023-06-23 22:13:17 +0000 <monochrom> Ah I haven't thought of the swap-neighbours-only angle. That's a nice constraint.
2023-06-23 22:13:25 +0000 <hpc> er, [0..3)
2023-06-23 22:13:50 +0000 <monochrom> Unfortunately Haskell doesn't have the [0..3) syntax...
2023-06-23 22:14:14 +0000 <monochrom> But I do wish Haskell had [0..3] = [0,1,2]. Dijkstra would too.
2023-06-23 22:14:21 +0000 <hpc> sure, but it's a nice "haskell isn't math" if they start taking similarities for granted
2023-06-23 22:14:50 +0000 <monochrom> Oh hey I think I heard that the Double instance would do that. OK "problem solved". >:D
2023-06-23 22:14:56 +0000 <hpc> monochrom: i am split on that - it looks right for loops, but then you can't enumFromTo the whole range of a type
2023-06-23 22:15:08 +0000 <hpc> [False..True] is [False] for instance
2023-06-23 22:15:11 +0000 <hpc> and that feels weird to me
2023-06-23 22:15:23 +0000 <monochrom> For the full range you say [False ... ]
2023-06-23 22:15:42 +0000 <hpc> yeah, but still
2023-06-23 22:16:27 +0000 <jade[m]1> when would you ever use the enum instance for Bool though?
2023-06-23 22:16:56 +0000ec(~ec@gateway/tor-sasl/ec) (Ping timeout: 240 seconds)
2023-06-23 22:16:57 +0000 <monochrom> How about this probably sacrilegeous proposal: Two notations, [x .. y] includes y, [x .., y] has an extra comma to be an assymetic syntax and it excludes y.
2023-06-23 22:17:50 +0000 <monochrom> When I would the Enum instance of a type variable, and the user sets that type variable to Bool. :)
2023-06-23 22:17:59 +0000 <monochrom> s/would/would use/
2023-06-23 22:18:35 +0000fendor(~fendor@2a02:8388:1640:be00:7aca:a77a:4a28:631a) (Remote host closed the connection)
2023-06-23 22:18:56 +0000 <monochrom> Perhaps we should have the [x .. y) syntax after all.
2023-06-23 22:19:35 +0000 <dolio> That'll be nice to ruin everyone's text editor.
2023-06-23 22:19:57 +0000 <monochrom> Oh haha oops
2023-06-23 22:20:13 +0000 <hpc> if people can deal with bash's case syntax, they can deal with this :D
2023-06-23 22:20:31 +0000 <geekosaur> I'd've suggested ..?
2023-06-23 22:20:59 +0000takuan(~takuan@178-116-218-225.access.telenet.be) (Ping timeout: 264 seconds)
2023-06-23 22:21:03 +0000 <jade[m]1> hpc: I can't
2023-06-23 22:23:10 +0000 <geekosaur> lol
2023-06-23 22:24:29 +0000 <monochrom> Is it just because an editor needs a special case (pun!) for "pattern )" which does not close any open parenthesis?
2023-06-23 22:26:09 +0000 <hpc> yeah, and nothing actually has that special case afaik :P
2023-06-23 22:26:43 +0000 <monochrom> heh
2023-06-23 22:27:45 +0000 <geekosaur> emacs ftw
2023-06-23 22:28:26 +0000 <dolio> drdo: I'm not aware of any book that, 'drones on about burritos.' But I also don't know of any book specifically oriented towards mathematicians.
2023-06-23 22:29:44 +0000azimut(~azimut@gateway/tor-sasl/azimut) (Ping timeout: 240 seconds)
2023-06-23 22:29:59 +0000 <dolio> I am aware of a paper about burritos that got linked on the n-category cafe.
2023-06-23 22:31:24 +0000azimut(~azimut@gateway/tor-sasl/azimut)
2023-06-23 22:31:51 +0000 <Nosrep> what rust does for the ranges thing is [0..3] is [0, 1, 2] but [0..=3] is [0, 1, 2, 3]
2023-06-23 22:32:08 +0000 <dolio> I'm not sure if it counts as being by a mathematician, though, because apparently the author was working at CMU at the time, so it seems likely they were involved in computer science.
2023-06-23 22:35:51 +0000 <dolio> Maybe you could read the Homotopy Type Theory book, and then look at Haskell as a more plain and less theoretically sound version of that.
2023-06-23 22:36:14 +0000 <drdo> dolio: The book isn't for me
2023-06-23 22:37:01 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 22:37:32 +0000 <dolio> I'm uncertain how good that is at explaining the programming-related aspects of type theory, though.
2023-06-23 22:38:23 +0000APic(apic@apic.name)
2023-06-23 22:38:47 +0000 <drdo> Thank you though
2023-06-23 22:39:07 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 22:47:17 +0000bratwurst(~dfadsva@2604:3d09:207f:f650::38e4) (Quit: Leaving)
2023-06-23 22:47:59 +0000acidjnk(~acidjnk@p200300d6e7072f58e181befd01b866a0.dip0.t-ipconnect.de) (Ping timeout: 264 seconds)
2023-06-23 22:48:28 +0000__monty__(~toonn@user/toonn) (Quit: leaving)
2023-06-23 22:50:25 +0000k``(~user@136.56.140.2) (Remote host closed the connection)
2023-06-23 22:50:30 +0000wroathe(~wroathe@user/wroathe)
2023-06-23 22:50:40 +0000k``(~user@136.56.140.2)
2023-06-23 22:51:22 +0000phma(phma@2001:5b0:211f:2f08:1586:27d6:8ad8:5c55) (Read error: Connection reset by peer)
2023-06-23 22:51:32 +0000maralorn(~maralorn@2001:470:69fc:105::251) (Server closed connection)
2023-06-23 22:51:50 +0000phma(~phma@host-67-44-208-160.hnremote.net)
2023-06-23 22:53:06 +0000wroathe(~wroathe@user/wroathe) (Client Quit)
2023-06-23 22:54:13 +0000wroathe(~wroathe@user/wroathe)
2023-06-23 23:07:14 +0000 <jackdk> jade[m]1:`instance Enum Bool` is often handy when calling into a property-based testing library, though Hedgehog offers `Gen.bool` as a specialisation.
2023-06-23 23:19:23 +0000df(~ben@justworks.xyz) (Server closed connection)
2023-06-23 23:19:38 +0000df(~ben@justworks.xyz)
2023-06-23 23:24:59 +0000czy(~user@host-140-26.ilcub310.champaign.il.us.clients.pavlovmedia.net) (Remote host closed the connection)
2023-06-23 23:27:26 +0000gurkenglas(~gurkengla@dynamic-046-114-167-203.46.114.pool.telefonica.de) (Read error: Connection reset by peer)
2023-06-23 23:29:03 +0000pavonia(~user@user/siracusa)
2023-06-23 23:32:29 +0000berberman(~berberman@user/berberman) (Quit: ZNC 1.8.2 - https://znc.in)
2023-06-23 23:32:59 +0000berberman(~berberman@user/berberman)
2023-06-23 23:34:25 +0000ystael(~ystael@user/ystael) (Ping timeout: 240 seconds)
2023-06-23 23:35:00 +0000codaraxis(~codaraxis@user/codaraxis)
2023-06-23 23:35:43 +0000k``(~user@136.56.140.2) (Remote host closed the connection)
2023-06-23 23:35:56 +0000k``(~user@136.56.140.2)
2023-06-23 23:35:56 +0000wrengr(~wrengr@201.59.83.34.bc.googleusercontent.com) (Quit: leaving)
2023-06-23 23:36:04 +0000wroathe(~wroathe@user/wroathe) (Ping timeout: 250 seconds)
2023-06-23 23:37:01 +0000infinity0(~infinity0@pwned.gg) (Remote host closed the connection)
2023-06-23 23:39:08 +0000infinity0(~infinity0@pwned.gg)
2023-06-23 23:41:10 +0000Square(~Square@user/square)
2023-06-23 23:44:05 +0000k``(~user@136.56.140.2) (Remote host closed the connection)
2023-06-23 23:44:18 +0000k``(~user@136.56.140.2)
2023-06-23 23:46:42 +0000Pickchea(~private@user/pickchea) (Quit: Leaving)
2023-06-23 23:49:26 +0000fgaz(~fgaz@2001:470:69fc:105::842) (Server closed connection)
2023-06-23 23:49:49 +0000mauke_(~mauke@user/mauke)
2023-06-23 23:51:27 +0000mauke(~mauke@user/mauke) (Ping timeout: 245 seconds)
2023-06-23 23:51:28 +0000mauke_mauke
2023-06-23 23:59:05 +0000foul_owl(~kerry@94.140.8.28) (Ping timeout: 246 seconds)