2024/04/25

2024-04-25 00:00:34 +0200chiselfuse(~chiselfus@user/chiselfuse) (Remote host closed the connection)
2024-04-25 00:03:12 +0200 <haskellbridge> <i​rregularsphere> (continuning discussion about exofunctors) by the way, I realized my code snippet's problem is at `<*>` because that does not appear in the traditional definition of a lax monoidal functor, rather only on Haskell (with their `id f a = f a`)
2024-04-25 00:03:32 +0200 <haskellbridge> <i​rregularsphere> could have realized this sooner, I know
2024-04-25 00:04:31 +0200 <haskellbridge> <i​rregularsphere> also, I found freelude which is interesting too
2024-04-25 00:04:59 +0200raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net)
2024-04-25 00:05:08 +0200 <ncf> what problem?
2024-04-25 00:06:27 +0200 <ncf> haskell's definition is something like a lax closed functor, which are equivalent to lax monoidal functors between monoidal closed categories
2024-04-25 00:07:04 +0200Lears(~Leary]@user/Leary/x-0910699) (Ping timeout: 255 seconds)
2024-04-25 00:08:01 +0200 <ncf> but yes it looks like constraining x -> y is a bit random
2024-04-25 00:08:46 +0200 <ncf> i guess you need that because of the precondition thing on FuncOf?
2024-04-25 00:12:23 +0200peterbecich(~Thunderbi@47.229.123.186)
2024-04-25 00:15:04 +0200 <ncf> i guess the issue here is that Eq is not a *closed* subcategory of Hask
2024-04-25 00:15:30 +0200 <ncf> so you can get away with ConsMonoidal but not ConsApplicative
2024-04-25 00:18:29 +0200 <haskellbridge> <i​rregularsphere> ncf: constraints asking for too much, e.g. `a (x -> y)`
2024-04-25 00:18:48 +0200 <haskellbridge> <i​rregularsphere> I need the precondition because of `(<*>) = liftA2 id`
2024-04-25 00:19:14 +0200 <haskellbridge> <i​rregularsphere> and `liftA2 f a = (<*>) fmapC (f a)`
2024-04-25 00:20:23 +0200raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net) (Ping timeout: 268 seconds)
2024-04-25 00:20:39 +0200 <haskellbridge> <i​rregularsphere> `liftA2 f a = (<*> (fmapC f a))*`
2024-04-25 00:21:32 +0200 <haskellbridge> <i​rregularsphere> since `f :: x -> y -> z` then `fmapC` implies `a x, a (y -> z)`, thus `(<*>) fs as = liftA2 id` and `id :: (x -> y) -> x -> y` implies `a (x -> y)`
2024-04-25 00:23:04 +0200 <haskellbridge> <i​rregularsphere> and yes haskell's Applicative is that (I don't know what a lax closed functor is specifically) but after constraining you don't see `a (x -> y)` that much
2024-04-25 00:23:23 +0200cyphase(~cyphase@user/cyphase) (Quit: cyphase.com)
2024-04-25 00:24:32 +0200 <haskellbridge> <i​rregularsphere> I realized `<*>`'s type signature is `f (x -> y) -> f x- > f y`, since `f` is assumed to work on values of `a` then `f (x -> y)` does not make much sense either
2024-04-25 00:24:38 +0200 <ncf> https://ncatlab.org/nlab/show/closed+functor
2024-04-25 00:25:30 +0200 <haskellbridge> <i​rregularsphere> ah
2024-04-25 00:25:49 +0200 <haskellbridge> <i​rregularsphere> so my code snippet only works on closed subcategories
2024-04-25 00:27:29 +0200 <haskellbridge> <i​rregularsphere> well then I guess it being specifically a closed subcategory is not good! imagine `Eq (x -> y)`
2024-04-25 00:29:35 +0200cyphase(~cyphase@user/cyphase)
2024-04-25 00:31:56 +0200gmg(~user@user/gehmehgeh) (Quit: Leaving)
2024-04-25 00:37:02 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 00:37:06 +0200Pixi__(~Pixi@user/pixi) (Quit: Leaving)
2024-04-25 00:37:53 +0200Pixi(~Pixi@user/pixi)
2024-04-25 00:39:13 +0200oo_miguel(~Thunderbi@78-11-181-16.static.ip.netia.com.pl) (Ping timeout: 256 seconds)
2024-04-25 00:45:40 +0200waldo(~waldo@user/waldo) (Ping timeout: 268 seconds)
2024-04-25 00:45:45 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-04-25 00:46:31 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 00:46:46 +0200sawilagar(~sawilagar@user/sawilagar) (Ping timeout: 246 seconds)
2024-04-25 00:51:10 +0200waldo(~waldo@user/waldo)
2024-04-25 00:51:55 +0200sroso(~sroso@user/SrOso)
2024-04-25 00:52:22 +0200sroso(~sroso@user/SrOso) (Max SendQ exceeded)
2024-04-25 00:56:10 +0200phma_(~phma@2001:5b0:210f:7f28:c0a7:813e:87a3:391e)
2024-04-25 00:56:38 +0200phma(phma@2001:5b0:2172:c758:72f8:9d6a:4a7b:7a0f) (Read error: Connection reset by peer)
2024-04-25 00:57:48 +0200waldo(~waldo@user/waldo) (Quit: waldo)
2024-04-25 00:58:02 +0200waldo(~waldo@user/waldo)
2024-04-25 00:58:10 +0200sroso(~sroso@user/SrOso)
2024-04-25 01:04:28 +0200y04nn(~username@2a03:1b20:8:f011::e10d)
2024-04-25 01:07:25 +0200zwrv(~yin@user/zero) (Ping timeout: 246 seconds)
2024-04-25 01:13:29 +0200ph88(~ph88@91.64.63.48) (Remote host closed the connection)
2024-04-25 01:13:30 +0200chiselfu1e(~chiselfus@user/chiselfuse) (Remote host closed the connection)
2024-04-25 01:14:17 +0200zwrv(~yin@user/zero)
2024-04-25 01:14:28 +0200chiselfuse(~chiselfus@user/chiselfuse)
2024-04-25 01:19:57 +0200peterbecich(~Thunderbi@47.229.123.186) (Ping timeout: 255 seconds)
2024-04-25 01:24:00 +0200mima(~mmh@aftr-62-216-211-51.dynamic.mnet-online.de) (Ping timeout: 255 seconds)
2024-04-25 01:40:11 +0200philopsos(~caecilius@user/philopsos)
2024-04-25 01:49:48 +0200trev(~trev@user/trev) (Ping timeout: 268 seconds)
2024-04-25 01:51:08 +0200Tuplanolla(~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) (Quit: Leaving.)
2024-04-25 01:51:24 +0200trev(~trev@user/trev)
2024-04-25 01:55:40 +0200pastly(~pastly@gateway/tor-sasl/pastly) (Remote host closed the connection)
2024-04-25 01:58:00 +0200L29Ah(~L29Ah@wikipedia/L29Ah) (Read error: Connection timed out)
2024-04-25 02:04:19 +0200pastly(~pastly@gateway/tor-sasl/pastly)
2024-04-25 02:21:15 +0200xff0x(~xff0x@2405:6580:b080:900:a709:5227:95bf:dd51) (Ping timeout: 268 seconds)
2024-04-25 02:31:04 +0200kilolympus(~kilolympu@31.205.200.246)
2024-04-25 02:41:43 +0200raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net)
2024-04-25 02:43:37 +0200bitdex(~bitdex@gateway/tor-sasl/bitdex)
2024-04-25 02:49:28 +0200attebregge(~adam@user/attebregge)
2024-04-25 02:50:26 +0200zwrvzzz
2024-04-25 02:51:14 +0200zzzyin
2024-04-25 02:53:21 +0200machinedgod(~machinedg@d173-183-246-216.abhsia.telus.net)
2024-04-25 02:54:22 +0200pastly(~pastly@gateway/tor-sasl/pastly) (Remote host closed the connection)
2024-04-25 02:55:08 +0200pastly(~pastly@gateway/tor-sasl/pastly)
2024-04-25 02:56:47 +0200waldo(~waldo@user/waldo) (Ping timeout: 260 seconds)
2024-04-25 03:03:49 +0200Katarushisu1(~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net) (Quit: Ping timeout (120 seconds))
2024-04-25 03:04:02 +0200demon-cat(~demon-cat@dund-15-b2-v4wan-169642-cust1347.vm6.cable.virginm.net) (Remote host closed the connection)
2024-04-25 03:04:08 +0200Katarushisu1(~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net)
2024-04-25 03:04:25 +0200demon-cat(~demon-cat@dund-15-b2-v4wan-169642-cust1347.vm6.cable.virginm.net)
2024-04-25 03:09:08 +0200yin(~yin@user/zero) (Ping timeout: 260 seconds)
2024-04-25 03:10:48 +0200yin(~yin@user/zero)
2024-04-25 03:23:34 +0200tri(~tri@ool-18bc2e74.dyn.optonline.net)
2024-04-25 03:27:50 +0200tri(~tri@ool-18bc2e74.dyn.optonline.net) (Ping timeout: 245 seconds)
2024-04-25 03:29:12 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-04-25 03:29:14 +0200peterbecich(~Thunderbi@47.229.123.186)
2024-04-25 03:29:45 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 03:32:08 +0200ghost_(~ghost@172-105-178-131.ip.linodeusercontent.com)
2024-04-25 03:35:24 +0200otto_s(~user@p5b0445f5.dip0.t-ipconnect.de) (Ping timeout: 255 seconds)
2024-04-25 03:37:02 +0200otto_s(~user@p5b04436d.dip0.t-ipconnect.de)
2024-04-25 03:51:07 +0200ghost_totalghost
2024-04-25 03:52:40 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com) (Changing host)
2024-04-25 03:52:40 +0200totalghost(~ghost@user/totalghost)
2024-04-25 03:57:34 +0200totalghost(~ghost@user/totalghost) (Quit: leaving)
2024-04-25 03:57:49 +0200ghost_(~ghost@172-105-178-131.ip.linodeusercontent.com)
2024-04-25 03:57:53 +0200ghost_(~ghost@172-105-178-131.ip.linodeusercontent.com) (Client Quit)
2024-04-25 03:58:21 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com)
2024-04-25 03:58:48 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com) (Changing host)
2024-04-25 03:58:48 +0200totalghost(~ghost@user/totalghost)
2024-04-25 04:03:31 +0200y04nn(~username@2a03:1b20:8:f011::e10d) (Ping timeout: 260 seconds)
2024-04-25 04:06:03 +0200raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net) (Quit: WeeChat 4.2.2)
2024-04-25 04:07:12 +0200dsrt^(~cd@c-98-242-74-66.hsd1.ga.comcast.net)
2024-04-25 04:07:17 +0200yin(~yin@user/zero) (Ping timeout: 240 seconds)
2024-04-25 04:09:24 +0200yin(~yin@user/zero)
2024-04-25 04:11:50 +0200kaskal(~kaskal@2001:4bb8:2d2:1257:60b1:1057:17df:5755) (Read error: Connection reset by peer)
2024-04-25 04:12:07 +0200kaskal(~kaskal@089144220117.atnat0029.highway.webapn.at)
2024-04-25 04:16:56 +0200phma_phma
2024-04-25 04:23:45 +0200dsrt^(~cd@c-98-242-74-66.hsd1.ga.comcast.net) (Remote host closed the connection)
2024-04-25 04:26:36 +0200peterbecich(~Thunderbi@47.229.123.186) (Ping timeout: 260 seconds)
2024-04-25 04:30:26 +0200adanwan(~adanwan@gateway/tor-sasl/adanwan) (Remote host closed the connection)
2024-04-25 04:30:35 +0200totalghost(~ghost@user/totalghost) (Ping timeout: 264 seconds)
2024-04-25 04:30:53 +0200adanwan(~adanwan@gateway/tor-sasl/adanwan)
2024-04-25 04:34:30 +0200td_(~td@i5387093D.versanet.de) (Ping timeout: 245 seconds)
2024-04-25 04:36:22 +0200td_(~td@i5387092A.versanet.de)
2024-04-25 04:39:39 +0200phma(~phma@2001:5b0:210f:7f28:c0a7:813e:87a3:391e) (Read error: Connection reset by peer)
2024-04-25 04:40:33 +0200phma(~phma@host-67-44-208-48.hnremote.net)
2024-04-25 04:41:02 +0200Inst(~Inst@user/Inst)
2024-04-25 04:45:55 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com)
2024-04-25 04:51:38 +0200 <haskellbridge> <i​rregularsphere> ...right, the FuncOf precondition is probably not needed anyway
2024-04-25 04:52:04 +0200 <haskellbridge> <i​rregularsphere> should I make a library out of this after polishing? seems promising
2024-04-25 04:56:25 +0200madeleine-sydney(~madeleine@c-76-155-235-153.hsd1.co.comcast.net)
2024-04-25 04:57:43 +0200szkl(uid110435@id-110435.uxbridge.irccloud.com) (Quit: Connection closed for inactivity)
2024-04-25 05:00:35 +0200y04nn(~username@2a03:1b20:8:f011::e10d)
2024-04-25 05:09:32 +0200foul_owl(~kerry@185.216.231.182) (Ping timeout: 260 seconds)
2024-04-25 05:15:11 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com) (Ping timeout: 256 seconds)
2024-04-25 05:15:32 +0200xff0x(~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp)
2024-04-25 05:20:35 +0200aforemny_(~aforemny@i59f516e0.versanet.de) (Ping timeout: 252 seconds)
2024-04-25 05:21:19 +0200aforemny(~aforemny@i59F516E4.versanet.de)
2024-04-25 05:25:30 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com)
2024-04-25 05:26:34 +0200waleee(~waleee@h-176-10-144-38.NA.cust.bahnhof.se) (Ping timeout: 268 seconds)
2024-04-25 05:27:07 +0200foul_owl(~kerry@185.219.141.160)
2024-04-25 05:29:12 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-04-25 05:29:42 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 05:32:53 +0200yin(~yin@user/zero) (Ping timeout: 256 seconds)
2024-04-25 05:34:26 +0200yin(~yin@user/zero)
2024-04-25 05:53:21 +0200Square(~Square@user/square)
2024-04-25 06:03:13 +0200madeleine-sydney(~madeleine@c-76-155-235-153.hsd1.co.comcast.net) (Quit: Konversation terminated!)
2024-04-25 06:04:25 +0200_ht(~Thunderbi@28-52-174-82.ftth.glasoperator.nl)
2024-04-25 06:04:41 +0200 <Inst> wait, Int is magical, right?
2024-04-25 06:04:57 +0200 <Inst> Int, Char, etc, they should evaluate to Int# Thunk
2024-04-25 06:05:05 +0200 <Inst> Char# Thunk
2024-04-25 06:05:19 +0200tri(~tri@ool-18bc2e74.dyn.optonline.net)
2024-04-25 06:08:09 +0200michalz(~michalz@185.246.207.218)
2024-04-25 06:13:43 +0200kshube(~kshube@2406:7400:56:7ccd:eb5a:72e4:5bef:2a2e)
2024-04-25 06:14:47 +0200 <c_wraith> Int is not magical, other than the constructor name. Int# is magical
2024-04-25 06:15:41 +0200 <c_wraith> Int is the regular Haskell wrapper around the magic Int#
2024-04-25 06:18:15 +0200kshube(~kshube@2406:7400:56:7ccd:eb5a:72e4:5bef:2a2e) (Ping timeout: 245 seconds)
2024-04-25 06:18:31 +0200kshube(~kshube@49.207.195.24)
2024-04-25 06:31:10 +0200yin(~yin@user/zero) (Ping timeout: 246 seconds)
2024-04-25 06:33:00 +0200yin(~yin@user/zero)
2024-04-25 06:36:21 +0200rosco(rosco@gateway/vpn/airvpn/rosco)
2024-04-25 06:43:02 +0200rosco(rosco@gateway/vpn/airvpn/rosco) (Ping timeout: 268 seconds)
2024-04-25 06:43:34 +0200rosco(~rosco@yp-146-6.tm.net.my)
2024-04-25 06:45:59 +0200destituion(~destituio@2a02:2121:340:2456:fffe:d0f:7737:dd1) (Ping timeout: 256 seconds)
2024-04-25 06:51:23 +0200rosco(~rosco@yp-146-6.tm.net.my) (Quit: Lost terminal)
2024-04-25 06:51:38 +0200rosco(~rosco@yp-146-6.tm.net.my)
2024-04-25 06:56:10 +0200machinedgod(~machinedg@d173-183-246-216.abhsia.telus.net) (Ping timeout: 245 seconds)
2024-04-25 07:04:01 +0200destituion(~destituio@85.221.111.174)
2024-04-25 07:05:28 +0200euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 246 seconds)
2024-04-25 07:06:39 +0200euleritian(~euleritia@dynamic-176-004-206-216.176.4.pool.telefonica.de)
2024-04-25 07:10:50 +0200yin(~yin@user/zero) (Ping timeout: 256 seconds)
2024-04-25 07:11:25 +0200euleritian(~euleritia@dynamic-176-004-206-216.176.4.pool.telefonica.de) (Read error: Connection reset by peer)
2024-04-25 07:11:42 +0200euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2024-04-25 07:17:00 +0200takuan(~takuan@178-116-218-225.access.telenet.be)
2024-04-25 07:17:09 +0200euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Read error: Connection reset by peer)
2024-04-25 07:17:17 +0200yin(~yin@user/zero)
2024-04-25 07:18:43 +0200euleritian(~euleritia@dynamic-176-004-206-216.176.4.pool.telefonica.de)
2024-04-25 07:23:24 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-04-25 07:26:25 +0200zetef(~quassel@5.2.182.98)
2024-04-25 07:30:08 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-04-25 07:34:13 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-04-25 07:35:00 +0200attebregge(~adam@user/attebregge) (Quit: Lost terminal)
2024-04-25 07:37:18 +0200acidjnk(~acidjnk@p200300d6e714dc7109d5fea24ae1df5e.dip0.t-ipconnect.de)
2024-04-25 07:37:28 +0200danso(~danso@user/danso) (Ping timeout: 256 seconds)
2024-04-25 07:37:37 +0200danso_o(~danso@user/danso)
2024-04-25 07:50:29 +0200tri(~tri@ool-18bc2e74.dyn.optonline.net) (Remote host closed the connection)
2024-04-25 07:52:11 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com) (Ping timeout: 264 seconds)
2024-04-25 07:52:50 +0200 <dminuoso> In fact, Int will evaluate to Int.
2024-04-25 07:52:57 +0200 <dminuoso> It's a box around Int#
2024-04-25 07:53:15 +0200 <dminuoso> While GHC will aggressively try to unbox Int, you cannot rely on that.
2024-04-25 07:59:21 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com)
2024-04-25 08:16:20 +0200phma(~phma@host-67-44-208-48.hnremote.net) (Read error: Connection reset by peer)
2024-04-25 08:17:16 +0200phma(~phma@2001:5b0:212a:83b8:81d8:7229:2d03:5112)
2024-04-25 08:17:23 +0200mima(~mmh@aftr-62-216-211-38.dynamic.mnet-online.de)
2024-04-25 08:27:49 +0200zetef(~quassel@5.2.182.98) (Remote host closed the connection)
2024-04-25 08:30:31 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-04-25 08:33:51 +0200renpose(~renpose@user/renpose)
2024-04-25 08:37:02 +0200 <renpose> So I'm using HKD with the barbies package, and I ended up writing `newtype F a f = F (f a) deriving (Generic, FunctorB, ApplicativeB, TraversableB)` since I cannot use `type TyF f = Identity (f Ty)` and use `TyF` partially applied in a type family. What is `F`? Surely it has a name?
2024-04-25 08:38:12 +0200 <renpose> Is it just a higher-kinded version of the identity functor?
2024-04-25 08:41:59 +0200 <dminuoso> renpose: Mmm, it's a kind of lifted ($) I guess.
2024-04-25 08:42:57 +0200 <dminuoso> Apply might be a suitable name, though semigroupoids uses it for something else (namely Applicative sans pure)
2024-04-25 08:43:12 +0200 <dminuoso> Or you could just call it Dollar. :-)
2024-04-25 08:43:32 +0200 <dminuoso> Or you could just straight up name it :$ or :$:
2024-04-25 08:43:34 +0200 <renpose> `($) == flip id` isn't it?
2024-04-25 08:43:45 +0200 <dminuoso> No, ($) = id.
2024-04-25 08:43:46 +0200 <renpose> I like :$:
2024-04-25 08:44:08 +0200 <renpose> Oh yeah, brainfart
2024-04-25 08:45:35 +0200 <jackdk> it's more like `(&) = flip ($)`, no?
2024-04-25 08:47:41 +0200y04nn(~username@2a03:1b20:8:f011::e10d) (Ping timeout: 256 seconds)
2024-04-25 08:50:42 +0200oo_miguel(~Thunderbi@78-11-181-16.static.ip.netia.com.pl)
2024-04-25 08:53:22 +0200euleritian(~euleritia@dynamic-176-004-206-216.176.4.pool.telefonica.de) (Read error: Connection reset by peer)
2024-04-25 08:53:43 +0200euleritian(~euleritia@77.22.252.56)
2024-04-25 08:54:00 +0200yin(~yin@user/zero) (Ping timeout: 260 seconds)
2024-04-25 08:55:31 +0200yin(~yin@user/zero)
2024-04-25 08:55:32 +0200euleritian(~euleritia@77.22.252.56) (Read error: Connection reset by peer)
2024-04-25 08:56:20 +0200euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2024-04-25 08:58:44 +0200ft(~ft@p4fc2a20e.dip0.t-ipconnect.de) (Quit: leaving)
2024-04-25 09:03:03 +0200sord937(~sord937@gateway/tor-sasl/sord937)
2024-04-25 09:06:40 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-04-25 09:08:01 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-04-25 09:16:53 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com) (Ping timeout: 268 seconds)
2024-04-25 09:18:48 +0200renpose(~renpose@user/renpose) (Quit: Client closed)
2024-04-25 09:24:51 +0200L29Ah(~L29Ah@wikipedia/L29Ah)
2024-04-25 09:25:11 +0200random-jellyfish(~developer@user/random-jellyfish)
2024-04-25 09:31:35 +0200kshube(~kshube@49.207.195.24) (Ping timeout: 245 seconds)
2024-04-25 09:36:04 +0200zetef(~quassel@5.2.182.98)
2024-04-25 09:37:45 +0200lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4)
2024-04-25 09:38:41 +0200zetef(~quassel@5.2.182.98) (Remote host closed the connection)
2024-04-25 09:47:07 +0200destituion(~destituio@85.221.111.174) (Ping timeout: 255 seconds)
2024-04-25 09:47:26 +0200causal(~eric@50.35.88.207)
2024-04-25 09:49:26 +0200danza_(~francesco@151.43.170.223)
2024-04-25 09:50:35 +0200destituion(~destituio@2a02:2121:340:2456:fffe:d0f:7737:dd1)
2024-04-25 09:53:42 +0200rosco(~rosco@yp-146-6.tm.net.my) (Quit: Lost terminal)
2024-04-25 09:55:25 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com)
2024-04-25 09:57:28 +0200machinedgod(~machinedg@d173-183-246-216.abhsia.telus.net)
2024-04-25 09:57:30 +0200waldo(~waldo@user/waldo)
2024-04-25 10:00:45 +0200Square(~Square@user/square) (Ping timeout: 245 seconds)
2024-04-25 10:05:24 +0200destituion(~destituio@2a02:2121:340:2456:fffe:d0f:7737:dd1) (Read error: Connection reset by peer)
2024-04-25 10:06:39 +0200destituion(~destituio@193.91.180.222)
2024-04-25 10:06:41 +0200gmg(~user@user/gehmehgeh)
2024-04-25 10:12:43 +0200Square(~Square@user/square)
2024-04-25 10:14:51 +0200waldo(~waldo@user/waldo) (Ping timeout: 252 seconds)
2024-04-25 10:16:39 +0200yin(~yin@user/zero) (Ping timeout: 256 seconds)
2024-04-25 10:25:51 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-04-25 10:34:26 +0200yin(~yin@user/zero)
2024-04-25 10:36:28 +0200danza__(~francesco@151.37.242.9)
2024-04-25 10:37:02 +0200gooba(~gooba@90-231-13-185-no3430.tbcn.telia.com) (Remote host closed the connection)
2024-04-25 10:39:15 +0200danza_(~francesco@151.43.170.223) (Ping timeout: 260 seconds)
2024-04-25 10:41:32 +0200gooba(~gooba@90-231-13-185-no3430.tbcn.telia.com)
2024-04-25 10:41:36 +0200gooba(~gooba@90-231-13-185-no3430.tbcn.telia.com) (Remote host closed the connection)
2024-04-25 10:42:07 +0200econo_(uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity)
2024-04-25 10:48:08 +0200[Leary](~Leary]@user/Leary/x-0910699)
2024-04-25 10:49:01 +0200sroso(~sroso@user/SrOso) (Read error: Connection reset by peer)
2024-04-25 10:51:34 +0200tzh(~tzh@c-73-164-206-160.hsd1.or.comcast.net) (Quit: zzz)
2024-04-25 10:57:47 +0200danse-nr3(~danse-nr3@151.37.242.9)
2024-04-25 10:57:55 +0200danse-nr3(~danse-nr3@151.37.242.9) (Remote host closed the connection)
2024-04-25 11:03:40 +0200danza__(~francesco@151.37.242.9) (Ping timeout: 245 seconds)
2024-04-25 11:06:02 +0200hgolden(~hgolden@2603:8000:9d00:3ed1:f849:272c:fda5:33c9) (Ping timeout: 268 seconds)
2024-04-25 11:08:14 +0200zmt01(~zmt00@user/zmt00)
2024-04-25 11:08:53 +0200gmg(~user@user/gehmehgeh) (Remote host closed the connection)
2024-04-25 11:11:10 +0200zmt00(~zmt00@user/zmt00) (Ping timeout: 245 seconds)
2024-04-25 11:11:23 +0200ph88(~ph88@ip5b403f30.dynamic.kabel-deutschland.de)
2024-04-25 11:14:30 +0200gmg(~user@user/gehmehgeh)
2024-04-25 11:15:02 +0200srk(~sorki@user/srk) (Quit: ZNC 1.8.1 - https://znc.in)
2024-04-25 11:21:37 +0200Guest95(~Guest95@217.7.130.9)
2024-04-25 11:23:55 +0200random-jellyfish(~developer@user/random-jellyfish) (Ping timeout: 268 seconds)
2024-04-25 11:31:30 +0200ubert(~Thunderbi@2a02:8109:ab8a:5a00:70c3:4ccf:73d4:2185)
2024-04-25 11:31:43 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-04-25 11:32:50 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com) (Ping timeout: 245 seconds)
2024-04-25 11:39:08 +0200ubert(~Thunderbi@2a02:8109:ab8a:5a00:70c3:4ccf:73d4:2185) (Remote host closed the connection)
2024-04-25 11:44:04 +0200destituion(~destituio@193.91.180.222) (Ping timeout: 246 seconds)
2024-04-25 11:45:04 +0200destituion(~destituio@2a02:2121:340:2456:fffe:d0f:7737:dd1)
2024-04-25 11:51:57 +0200sawilagar(~sawilagar@user/sawilagar)
2024-04-25 11:54:01 +0200euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 255 seconds)
2024-04-25 11:56:40 +0200Square(~Square@user/square) (Ping timeout: 246 seconds)
2024-04-25 11:56:59 +0200chele(~chele@user/chele)
2024-04-25 12:00:04 +0200destituion(~destituio@2a02:2121:340:2456:fffe:d0f:7737:dd1) (Read error: Connection reset by peer)
2024-04-25 12:01:32 +0200yin(~yin@user/zero) (Ping timeout: 256 seconds)
2024-04-25 12:01:50 +0200destituion(~destituio@85.221.111.174)
2024-04-25 12:04:15 +0200Guest95(~Guest95@217.7.130.9) (Quit: Client closed)
2024-04-25 12:13:20 +0200__monty__(~toonn@user/toonn)
2024-04-25 12:47:19 +0200Lord_of_Life_(~Lord@user/lord-of-life/x-2819915)
2024-04-25 12:47:50 +0200Lord_of_Life(~Lord@user/lord-of-life/x-2819915) (Ping timeout: 245 seconds)
2024-04-25 12:48:25 +0200yeitrafferin(~user@2a04:4540:7213:4d00:b9b0:d2b9:e58a:8d24)
2024-04-25 12:48:44 +0200Lord_of_Life_Lord_of_Life
2024-04-25 12:51:36 +0200ChaiTRex(~ChaiTRex@user/chaitrex)
2024-04-25 12:57:47 +0200berberman(~berberman@user/berberman) (Quit: ZNC 1.8.2 - https://znc.in)
2024-04-25 12:58:31 +0200berberman(~berberman@user/berberman)
2024-04-25 13:03:11 +0200qqq(~qqq@92.43.167.61)
2024-04-25 13:06:52 +0200ocra8(ocra8@user/ocra8) (Quit: WeeChat 4.2.2)
2024-04-25 13:08:46 +0200 <Inst> dminuoso: the problem is, whenever I try to seq a value of type int, I just get the constructor
2024-04-25 13:09:23 +0200 <Inst> there's a nice Julian girl, well, not sure what to call her, with OCaml experience who's playing around with Haskell these days
2024-04-25 13:09:24 +0200ubert(~Thunderbi@2a02:8109:ab8a:5a00:7c15:d614:7e94:5929)
2024-04-25 13:09:44 +0200 <Inst> has a Haskell background, and was complaining about her scanl1 being inefficient because it was defined via maps
2024-04-25 13:10:39 +0200 <Inst> it was, but not because of the reason she thought (i.e, O(n^log n, I think) because of the maps, but because of the thunks she was accumulating
2024-04-25 13:10:52 +0200 <Inst> so went on about laziness
2024-04-25 13:10:56 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-04-25 13:11:41 +0200 <Inst> but basically, literally, every Int has a WHNF of Int Int# iirc
2024-04-25 13:11:52 +0200 <Inst> Int _
2024-04-25 13:13:43 +0200ocra8(ocra8@user/ocra8)
2024-04-25 13:27:22 +0200 <tomsmeding> Int is just `data Int = I# Int#`
2024-04-25 13:27:26 +0200 <tomsmeding> so yes, it is lazy
2024-04-25 13:31:06 +0200 <Inst> and iirc even if i seq an Int constructor (but not deepseq), it won't evaluate the underlying number
2024-04-25 13:31:30 +0200 <Inst> is that called boxing?
2024-04-25 13:32:34 +0200 <Inst> the implication is also that addition in Haskell... well, i wasn't actualyl that surprised by that!
2024-04-25 13:32:48 +0200 <Inst> addition, basic arithmetic operations, is also lazy
2024-04-25 13:33:17 +0200 <Inst> not until i pattern match, run an eq, or do something like print
2024-04-25 13:33:28 +0200 <tomsmeding> I think seq'ing an Int constructor will evaluate the Int#
2024-04-25 13:33:52 +0200 <tomsmeding> Int# is an unlifted data type, so it has no bottom value
2024-04-25 13:34:06 +0200 <tomsmeding> so if you evaluate until you have an I#, you automatically also have the Int# inside
2024-04-25 13:41:36 +0200yin(~yin@user/zero)
2024-04-25 13:47:12 +0200hgolden(~hgolden@2603:8000:9d00:3ed1:f849:272c:fda5:33c9)
2024-04-25 13:58:28 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com)
2024-04-25 13:59:21 +0200yin(~yin@user/zero) (Quit: Reconnecting)
2024-04-25 13:59:36 +0200yin(~yin@user/zero)
2024-04-25 13:59:52 +0200billchenchina(~billchenc@103.152.35.21)
2024-04-25 14:00:55 +0200billchenchina(~billchenc@103.152.35.21) (Remote host closed the connection)
2024-04-25 14:05:29 +0200xff0x(~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp) (Ping timeout: 268 seconds)
2024-04-25 14:06:03 +0200kshube(~kshube@49.207.195.24)
2024-04-25 14:06:06 +0200pastly(~pastly@gateway/tor-sasl/pastly) (Ping timeout: 260 seconds)
2024-04-25 14:06:11 +0200kshube(~kshube@49.207.195.24) (Client Quit)
2024-04-25 14:07:43 +0200pastly(~pastly@gateway/tor-sasl/pastly)
2024-04-25 14:11:08 +0200danza(~francesco@151.37.242.9)
2024-04-25 14:18:16 +0200 <Inst> so it's sort of the reverse of newtype?
2024-04-25 14:19:59 +0200bitdex(~bitdex@gateway/tor-sasl/bitdex) (Quit: = "")
2024-04-25 14:28:15 +0200 <lyxia> it's different
2024-04-25 14:30:55 +0200jco(~jco@90-230-146-75-no600.tbcn.telia.com)
2024-04-25 14:31:04 +0200jco(~jco@90-230-146-75-no600.tbcn.telia.com) ()
2024-04-25 14:31:47 +0200yin(~yin@user/zero) (Ping timeout: 256 seconds)
2024-04-25 14:32:50 +0200danza(~francesco@151.37.242.9) (Ping timeout: 256 seconds)
2024-04-25 14:34:56 +0200zetef(~quassel@93.122.248.176)
2024-04-25 14:40:17 +0200totalghost(~ghost@172-105-178-131.ip.linodeusercontent.com) (Ping timeout: 256 seconds)
2024-04-25 14:42:18 +0200sp1ff(~user@c-24-21-45-157.hsd1.wa.comcast.net)
2024-04-25 14:42:47 +0200 <tomsmeding> https://hackage.haskell.org/package/base-4.19.1.0/docs/GHC-Exts.html#t:RuntimeRep
2024-04-25 14:43:15 +0200 <tomsmeding> % :i Int#
2024-04-25 14:43:15 +0200 <yahb2> type Int# :: TYPE 'IntRep ; data Int# ; -- Defined in ‘GHC.Prim’
2024-04-25 14:43:21 +0200 <tomsmeding> Int# is unboxed
2024-04-25 14:43:34 +0200 <tomsmeding> (which is something different from "unlifted", which is what I said before)
2024-04-25 14:44:14 +0200 <tomsmeding> boxed values are those that are represented by a pointer to a heap location
2024-04-25 14:44:24 +0200 <tomsmeding> lifted values are those that can be bottom (i.e. that are "lazy")
2024-04-25 14:45:06 +0200 <tomsmeding> boxed types can be unlifted; this means that _|_ is not an element of that type
2024-04-25 14:46:02 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-04-25 14:46:11 +0200 <tomsmeding> with -XUnliftedDatatypes you can define your own unlifted data types https://downloads.haskell.org/ghc/latest/docs/users_guide/exts/primitives.html#extension-UnliftedD…
2024-04-25 14:46:44 +0200 <tomsmeding> unboxed types can never be lifted (because they are not represented by a pointer, they are just the value itself), hence the liftedness distinction applies to boxed types only
2024-04-25 14:47:13 +0200 <tomsmeding> when I figured out the model of how this works, I was delighted by how structured it really is
2024-04-25 15:00:04 +0200destituion(~destituio@85.221.111.174) (Ping timeout: 268 seconds)
2024-04-25 15:00:11 +0200danza(~francesco@151.19.233.234)
2024-04-25 15:00:53 +0200xff0x(~xff0x@2405:6580:b080:900:78b5:44c3:11b7:3511)
2024-04-25 15:02:03 +0200destituion(~destituio@2a02:2121:340:2456:fffe:d0f:7737:dd1)
2024-04-25 15:10:13 +0200zetef(~quassel@93.122.248.176) (Remote host closed the connection)
2024-04-25 15:19:04 +0200ChaiTRex(~ChaiTRex@user/chaitrex) (Remote host closed the connection)
2024-04-25 15:20:03 +0200ChaiTRex(~ChaiTRex@user/chaitrex)
2024-04-25 15:31:23 +0200danza(~francesco@151.19.233.234) (Ping timeout: 260 seconds)
2024-04-25 15:32:03 +0200 <haskellbridge> <i​rregularsphere> is there a haskell feature/system that can create new kinds?
2024-04-25 15:32:59 +0200 <ncf> https://ghc.gitlab.haskell.org/ghc/doc/users_guide/exts/data_kinds.html
2024-04-25 15:33:43 +0200 <haskellbridge> <i​rregularsphere> thanks (man, you know everything)
2024-04-25 15:38:59 +0200yin(~yin@user/zero)
2024-04-25 15:42:28 +0200 <tomsmeding> (DataKinds is a feature that you absolutely _cannot miss_ if you want to do dependently-typed-ish stuff in haskell)
2024-04-25 15:48:00 +0200xff0x(~xff0x@2405:6580:b080:900:78b5:44c3:11b7:3511) (Ping timeout: 255 seconds)
2024-04-25 15:54:24 +0200tri(~tri@ool-18bbef1a.static.optonline.net)
2024-04-25 16:00:55 +0200TheOneWhoFuncts(~Thunderbi@104.28.233.85)
2024-04-25 16:01:30 +0200akegalj(~akegalj@78-1-50-53.adsl.net.t-com.hr)
2024-04-25 16:01:50 +0200rosco(rosco@gateway/vpn/airvpn/rosco)
2024-04-25 16:01:58 +0200waleee(~waleee@h-176-10-144-38.na.cust.bahnhof.se)
2024-04-25 16:07:40 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-04-25 16:09:37 +0200tri(~tri@ool-18bbef1a.static.optonline.net) (Remote host closed the connection)
2024-04-25 16:10:43 +0200xff0x(~xff0x@2405:6580:b080:900:78b5:44c3:11b7:3511)
2024-04-25 16:11:01 +0200TheOneWhoFuncts(~Thunderbi@104.28.233.85) (Quit: TheOneWhoFuncts)
2024-04-25 16:11:33 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 16:12:26 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-04-25 16:12:45 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 16:39:14 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-04-25 16:40:14 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 16:43:45 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-04-25 16:51:06 +0200yin(~yin@user/zero) (Ping timeout: 256 seconds)
2024-04-25 16:51:14 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-04-25 16:51:19 +0200k_hachig(~k_hachig@ipagstaticip-b4f1257d-69a8-678e-1ff6-80999a2f9589.sdsl.bell.ca)
2024-04-25 16:51:32 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 17:01:49 +0200tri(~tri@ool-18bbef1a.static.optonline.net)
2024-04-25 17:03:42 +0200k_hachig(~k_hachig@ipagstaticip-b4f1257d-69a8-678e-1ff6-80999a2f9589.sdsl.bell.ca) (Ping timeout: 268 seconds)
2024-04-25 17:06:20 +0200tri(~tri@ool-18bbef1a.static.optonline.net) (Ping timeout: 260 seconds)
2024-04-25 17:08:22 +0200whatsupdoc(uid509081@id-509081.hampstead.irccloud.com) (Quit: Connection closed for inactivity)
2024-04-25 17:10:48 +0200 <carbolymer> asyncs are reusing threads, right?
2024-04-25 17:11:19 +0200 <carbolymer> i.e. if I do `throwTo` to async's thread, it doesn't die right away, does it?
2024-04-25 17:13:07 +0200 <EvanR> messing with async's thread without going through async sounds questionable
2024-04-25 17:13:16 +0200 <carbolymer> oh it does https://hackage.haskell.org/package/async-2.2.5/docs/Control-Concurrent-Async.html#v:cancel
2024-04-25 17:13:23 +0200 <EvanR> you can cancel an async thread through async
2024-04-25 17:13:30 +0200 <c_wraith> Well, it dies whenever the exception is delivered.
2024-04-25 17:13:41 +0200 <c_wraith> A thread can run for a long time without receiving an async exception
2024-04-25 17:13:50 +0200 <c_wraith> .. if the code is written in just the right way.
2024-04-25 17:14:45 +0200 <carbolymer> no complaints on async implementation
2024-04-25 17:15:07 +0200 <carbolymer> tbh it's the best concurrency api I've worked with
2024-04-25 17:15:14 +0200 <EvanR> me too
2024-04-25 17:15:58 +0200 <EvanR> it makes simple stuff simple
2024-04-25 17:16:13 +0200 <EvanR> and doesn't try to claim that complicated stuff is simple
2024-04-25 17:18:53 +0200k_hachig(~k_hachig@ipagstaticip-b4f1257d-69a8-678e-1ff6-80999a2f9589.sdsl.bell.ca)
2024-04-25 17:19:46 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-04-25 17:22:29 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 17:30:23 +0200lortabac(~lortabac@2a01:e0a:541:b8f0:55ab:e185:7f81:54a4) (Quit: WeeChat 4.2.1)
2024-04-25 17:44:01 +0200 <dminuoso> Sigh, Im starting to really want named parameters.
2024-04-25 17:46:42 +0200 <EvanR> pass in a record ?
2024-04-25 17:46:57 +0200 <dminuoso> For a one-off function?
2024-04-25 17:47:05 +0200 <EvanR> even better
2024-04-25 17:47:06 +0200 <dminuoso> With only one call-site?
2024-04-25 17:47:19 +0200 <EvanR> then you can hide it all without worry about name pollution
2024-04-25 17:48:17 +0200 <EvanR> if you start doing N of these one off one call site things you have a point
2024-04-25 17:48:19 +0200 <dminuoso> It's just all so disconnected.
2024-04-25 17:50:36 +0200 <carbolymer> dminuoso: I was literally thinking this while looking at a function with 13 argumens in my teammate's PR
2024-04-25 17:51:17 +0200 <dminuoso> It feels like fmap{f = (* 2), x = Just 2} should be a thing. Id be totally fine with restrictions like having to name all (named) arguments.
2024-04-25 17:51:22 +0200 <carbolymer> dminuoso: https://hackage.haskell.org/package/named-0.3.0.1/docs/Named.html
2024-04-25 17:51:41 +0200 <dminuoso> Especially since record construction already in itself has named parameters, considering the data constructor is a function too.
2024-04-25 17:52:34 +0200 <dminuoso> carbolymer: Hah, fun coincidence I have needle and haysteck as two names for my usecase too!
2024-04-25 17:53:00 +0200gmg(~user@user/gehmehgeh) (Remote host closed the connection)
2024-04-25 17:53:29 +0200 <dminuoso> Yeah, Im aware you can conjure something with Symbol, but it introducing a whole dependency just to avoid writing a separate data type for a one-off thing seems like overkill too.
2024-04-25 17:54:10 +0200 <EvanR> the paper "extensible records with scoped labels", yet another application of extensible records, strikes again
2024-04-25 17:54:34 +0200 <EvanR> your notation could be interpreted as passing in an anonymous extensible record
2024-04-25 17:55:43 +0200 <dminuoso> Honestly, Im rather surprised this syntax is restricted to just constructors.
2024-04-25 17:57:20 +0200gmg(~user@user/gehmehgeh)
2024-04-25 17:58:15 +0200k_hachig(~k_hachig@ipagstaticip-b4f1257d-69a8-678e-1ff6-80999a2f9589.sdsl.bell.ca) (Ping timeout: 245 seconds)
2024-04-25 18:01:42 +0200k_hachig(~k_hachig@ipagstaticip-b4f1257d-69a8-678e-1ff6-80999a2f9589.sdsl.bell.ca)
2024-04-25 18:03:10 +0200waleee(~waleee@h-176-10-144-38.na.cust.bahnhof.se) (Quit: WeeChat 4.1.2)
2024-04-25 18:07:06 +0200chele(~chele@user/chele) (Remote host closed the connection)
2024-04-25 18:09:57 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-04-25 18:10:42 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 18:12:50 +0200ubert(~Thunderbi@2a02:8109:ab8a:5a00:7c15:d614:7e94:5929) (Quit: ubert)
2024-04-25 18:15:51 +0200raym(~ray@user/raym) (Ping timeout: 268 seconds)
2024-04-25 18:17:02 +0200tri(~tri@ool-18bbef1a.static.optonline.net)
2024-04-25 18:27:51 +0200causal(~eric@50.35.88.207) (*.net *.split)
2024-04-25 18:27:51 +0200rvalue(~rvalue@user/rvalue) (*.net *.split)
2024-04-25 18:27:51 +0200ski(~ski@ext-1-033.eduroam.chalmers.se) (*.net *.split)
2024-04-25 18:27:51 +0200Raito_Bezarius(~Raito@wireguard/tunneler/raito-bezarius) (*.net *.split)
2024-04-25 18:27:51 +0200end(~end@user/end/x-0094621) (*.net *.split)
2024-04-25 18:27:51 +0200jespada(~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net) (*.net *.split)
2024-04-25 18:27:51 +0200gentauro(~gentauro@user/gentauro) (*.net *.split)
2024-04-25 18:27:51 +0200dagit(~dagit@2001:558:6025:38:71c6:9d58:7252:8976) (*.net *.split)
2024-04-25 18:27:51 +0200kimiamania(~76637481@user/kimiamania) (*.net *.split)
2024-04-25 18:27:51 +0200fun-safe-math(~fun-safe-@24.21.106.247) (*.net *.split)
2024-04-25 18:27:51 +0200lockywolf(~lockywolf@public.lockywolf.net) (*.net *.split)
2024-04-25 18:27:51 +0200incertia(~incertia@209.122.137.252) (*.net *.split)
2024-04-25 18:27:51 +0200acarrico(~acarrico@dhcp-68-142-49-163.greenmountainaccess.net) (*.net *.split)
2024-04-25 18:27:51 +0200adamCS(~adamCS@ec2-34-207-160-255.compute-1.amazonaws.com) (*.net *.split)
2024-04-25 18:27:51 +0200koala_man(~vidar@157.146.251.23.bc.googleusercontent.com) (*.net *.split)
2024-04-25 18:27:51 +0200siers(~ij@user/ij) (*.net *.split)
2024-04-25 18:27:51 +0200wryish(~wryish@2605:4c40:119:efa3:0:727d:19eb:1) (*.net *.split)
2024-04-25 18:27:51 +0200[exa](~exa@user/exa/x-3587197) (*.net *.split)
2024-04-25 18:27:51 +0200eugenrh(~eugenrh@user/eugenrh) (*.net *.split)
2024-04-25 18:27:51 +0200Pozyomka(~pyon@user/pyon) (*.net *.split)
2024-04-25 18:27:51 +0200hook54321(sid149355@user/hook54321) (*.net *.split)
2024-04-25 18:27:51 +0200Pent(sid313808@id-313808.lymington.irccloud.com) (*.net *.split)
2024-04-25 18:27:51 +0200yandere(sid467876@id-467876.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:51 +0200adium(adium@user/adium) (*.net *.split)
2024-04-25 18:27:51 +0200statusbot(~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com) (*.net *.split)
2024-04-25 18:27:51 +0200Rembane(~Rembane@user/Rembane) (*.net *.split)
2024-04-25 18:27:51 +0200tired(~tired@user/tired) (*.net *.split)
2024-04-25 18:27:51 +0200robertm(robertm@lattice.rojoma.com) (*.net *.split)
2024-04-25 18:27:51 +0200litharge(litharge@libera/bot/litharge) (*.net *.split)
2024-04-25 18:27:51 +0200superbil(~superbil@1-34-176-171.hinet-ip.hinet.net) (*.net *.split)
2024-04-25 18:27:51 +0200sp1ff(~user@c-24-21-45-157.hsd1.wa.comcast.net) (*.net *.split)
2024-04-25 18:27:51 +0200__monty__(~toonn@user/toonn) (*.net *.split)
2024-04-25 18:27:52 +0200mei(~mei@user/mei) (*.net *.split)
2024-04-25 18:27:52 +0200ystael(~ystael@user/ystael) (*.net *.split)
2024-04-25 18:27:52 +0200petrichor(~znc-user@user/petrichor) (*.net *.split)
2024-04-25 18:27:52 +0200dtman34(~dtman34@2601:447:d001:ed50:e2b0:b15b:8890:6869) (*.net *.split)
2024-04-25 18:27:52 +0200leah2(~leah@vuxu.org) (*.net *.split)
2024-04-25 18:27:52 +0200kritzefitz(~kritzefit@debian/kritzefitz) (*.net *.split)
2024-04-25 18:27:52 +0200tertek(~tertek@user/tertek) (*.net *.split)
2024-04-25 18:27:52 +0200zer0bitz(~zer0bitz@user/zer0bitz) (*.net *.split)
2024-04-25 18:27:52 +0200Miroboru(~myrvoll@178-164-114.82.3p.ntebredband.no) (*.net *.split)
2024-04-25 18:27:52 +0200sukbeom(~sukbeom@121.172.255.83) (*.net *.split)
2024-04-25 18:27:52 +0200Ranhir(~Ranhir@157.97.53.139) (*.net *.split)
2024-04-25 18:27:52 +0200V(~v@ircpuzzles/2022/april/winner/V) (*.net *.split)
2024-04-25 18:27:52 +0200Etabeta1(~Etabeta1@user/meow/Etabeta1) (*.net *.split)
2024-04-25 18:27:52 +0200Fijxu(~Fijxu@user/fijxu) (*.net *.split)
2024-04-25 18:27:52 +0200tdammers(~tdammers@41-138-178-143.ftth.glasoperator.nl) (*.net *.split)
2024-04-25 18:27:52 +0200s4msung(~s4msung@user/s4msung) (*.net *.split)
2024-04-25 18:27:52 +0200caubert(~caubert@user/caubert) (*.net *.split)
2024-04-25 18:27:52 +0200YuutaW(~YuutaW@mail.yuuta.moe) (*.net *.split)
2024-04-25 18:27:52 +0200sam113101(~sam@24.157.253.231) (*.net *.split)
2024-04-25 18:27:52 +0200Noinia(~Frank@77-162-168-71.fixed.kpn.net) (*.net *.split)
2024-04-25 18:27:52 +0200gmg(~user@user/gehmehgeh) (*.net *.split)
2024-04-25 18:27:52 +0200ChaiTRex(~ChaiTRex@user/chaitrex) (*.net *.split)
2024-04-25 18:27:52 +0200pastly(~pastly@gateway/tor-sasl/pastly) (*.net *.split)
2024-04-25 18:27:52 +0200sord937(~sord937@gateway/tor-sasl/sord937) (*.net *.split)
2024-04-25 18:27:52 +0200adanwan(~adanwan@gateway/tor-sasl/adanwan) (*.net *.split)
2024-04-25 18:27:52 +0200chiselfuse(~chiselfus@user/chiselfuse) (*.net *.split)
2024-04-25 18:27:52 +0200ec(~ec@gateway/tor-sasl/ec) (*.net *.split)
2024-04-25 18:27:52 +0200califax(~califax@user/califx) (*.net *.split)
2024-04-25 18:27:52 +0200stiell_(~stiell@gateway/tor-sasl/stiell) (*.net *.split)
2024-04-25 18:27:52 +0200chexum(~quassel@gateway/tor-sasl/chexum) (*.net *.split)
2024-04-25 18:27:52 +0200FinnElija(~finn_elij@user/finn-elija/x-0085643) (*.net *.split)
2024-04-25 18:27:52 +0200noumenon(~noumenon@113.51-175-156.customer.lyse.net) (*.net *.split)
2024-04-25 18:27:52 +0200tv(~tv@user/tv) (*.net *.split)
2024-04-25 18:27:52 +0200infinity0(~infinity0@pwned.gg) (*.net *.split)
2024-04-25 18:27:52 +0200anon1123_(~anon1123@2a02:ab88:282:b00:da3a:ddff:fe3a:947c) (*.net *.split)
2024-04-25 18:27:52 +0200xigua(~xigua@user/xigua) (*.net *.split)
2024-04-25 18:27:52 +0200dyniec(~dyniec@dybiec.info) (*.net *.split)
2024-04-25 18:27:52 +0200peutri(~peutri@bobo.desast.re) (*.net *.split)
2024-04-25 18:27:52 +0200lyxia(~lyxia@poisson.chat) (*.net *.split)
2024-04-25 18:27:52 +0200Arsen(arsen@gentoo/developer/managarm.dev.Arsen) (*.net *.split)
2024-04-25 18:27:52 +0200haskellbridge(~haskellbr@69.135.3.34) (*.net *.split)
2024-04-25 18:27:52 +0200forell_(~forell@host-178-216-90-220.sta.tvknaszapraca.pl) (*.net *.split)
2024-04-25 18:27:52 +0200it_(~quassel@v2202212189510211193.supersrv.de) (*.net *.split)
2024-04-25 18:27:52 +0200Philonous(~Philonous@user/philonous) (*.net *.split)
2024-04-25 18:27:52 +0200todi(~todi@p57803331.dip0.t-ipconnect.de) (*.net *.split)
2024-04-25 18:27:52 +0200remmie(ianremsen@tilde.team) (*.net *.split)
2024-04-25 18:27:52 +0200motherfsck(~motherfsc@user/motherfsck) (*.net *.split)
2024-04-25 18:27:52 +0200sgarcia(sgarcia@swarm.znchost.com) (*.net *.split)
2024-04-25 18:27:52 +0200delyan_(sid523379@id-523379.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:52 +0200Flow(~none@gentoo/developer/flow) (*.net *.split)
2024-04-25 18:27:52 +0200visilii(~visilii@213.24.125.229) (*.net *.split)
2024-04-25 18:27:52 +0200yaroot(~yaroot@p2987138-ipngn7501souka.saitama.ocn.ne.jp) (*.net *.split)
2024-04-25 18:27:52 +0200hugo-(znc@quicksilver.lysator.liu.se) (*.net *.split)
2024-04-25 18:27:52 +0200sajith(~sajith@user/sajith) (*.net *.split)
2024-04-25 18:27:52 +0200flocks(~flocks@134.122.90.60) (*.net *.split)
2024-04-25 18:27:52 +0200drdo(~drdo@bl5-29-74.dsl.telepac.pt) (*.net *.split)
2024-04-25 18:27:52 +0200mniip_(mniip@libera/staff/mniip) (*.net *.split)
2024-04-25 18:27:52 +0200jrm(~jrm@user/jrm) (*.net *.split)
2024-04-25 18:27:52 +0200poscat0x04(~poscat@user/poscat) (*.net *.split)
2024-04-25 18:27:52 +0200TMA(tma@twin.jikos.cz) (*.net *.split)
2024-04-25 18:27:52 +0200gawen(~gawen@user/gawen) (*.net *.split)
2024-04-25 18:27:52 +0200red-snail(~snail@static.151.210.203.116.clients.your-server.de) (*.net *.split)
2024-04-25 18:27:52 +0200sm(~znc@plaintextaccounting/sm) (*.net *.split)
2024-04-25 18:27:52 +0200Tisoxin(~Ikosit@user/ikosit) (*.net *.split)
2024-04-25 18:27:52 +0200Fischmiep(~Fischmiep@user/Fischmiep) (*.net *.split)
2024-04-25 18:27:52 +0200dontdieych_(~alarm@132.226.169.184) (*.net *.split)
2024-04-25 18:27:52 +0200tinwood(~tinwood@canonical/tinwood) (*.net *.split)
2024-04-25 18:27:52 +0200remexre(~remexre@user/remexre) (*.net *.split)
2024-04-25 18:27:52 +0200rembo10(~rembo10@main.remulis.com) (*.net *.split)
2024-04-25 18:27:52 +0200hadronized(~phaazon@2001:41d0:a:fe76::1) (*.net *.split)
2024-04-25 18:27:52 +0200tureba(~tureba@tureba.org) (*.net *.split)
2024-04-25 18:27:52 +0200bjs(sid190364@user/bjs) (*.net *.split)
2024-04-25 18:27:52 +0200degraafk(sid71464@id-71464.lymington.irccloud.com) (*.net *.split)
2024-04-25 18:27:52 +0200sympt(~sympt@user/sympt) (*.net *.split)
2024-04-25 18:27:52 +0200dfg(~dfg@user/dfg) (*.net *.split)
2024-04-25 18:27:52 +0200NemesisD(sid24071@id-24071.lymington.irccloud.com) (*.net *.split)
2024-04-25 18:27:52 +0200koolazer(~koo@user/koolazer) (*.net *.split)
2024-04-25 18:27:52 +0200sawilagar(~sawilagar@user/sawilagar) (*.net *.split)
2024-04-25 18:27:52 +0200TheCoffeMaker(~TheCoffeM@user/thecoffemaker) (*.net *.split)
2024-04-25 18:27:52 +0200dolio(~dolio@130.44.134.54) (*.net *.split)
2024-04-25 18:27:52 +0200bairyn(~bairyn@50.250.232.19) (*.net *.split)
2024-04-25 18:27:52 +0200tomku|two(~tomku@user/tomku) (*.net *.split)
2024-04-25 18:27:52 +0200orcus(~orcus@mail.brprice.uk) (*.net *.split)
2024-04-25 18:27:52 +0200dispater(~dispater@mail.brprice.uk) (*.net *.split)
2024-04-25 18:27:53 +0200nek0(~nek0@user/nek0) (*.net *.split)
2024-04-25 18:27:53 +0200sa(sid1055@id-1055.tinside.irccloud.com) (*.net *.split)
2024-04-25 18:27:53 +0200jackdk(sid373013@cssa/jackdk) (*.net *.split)
2024-04-25 18:27:53 +0200thaumavorio(~thaumavor@thaumavor.io) (*.net *.split)
2024-04-25 18:27:53 +0200heartbur1(~gass@81.4.123.134) (*.net *.split)
2024-04-25 18:27:53 +0200geekosaur(sid609282@xmonad/geekosaur) (*.net *.split)
2024-04-25 18:27:53 +0200edmundnoble_(sid229620@id-229620.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:53 +0200SethTisue(sid14912@id-14912.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:53 +0200lally(sid388228@id-388228.uxbridge.irccloud.com) (*.net *.split)
2024-04-25 18:27:53 +0200alinab(sid468903@id-468903.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:53 +0200nshepperd(nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split)
2024-04-25 18:27:53 +0200idnar(sid12240@debian/mithrandi) (*.net *.split)
2024-04-25 18:27:53 +0200edm(sid147314@id-147314.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:53 +0200exarkun(~exarkun@user/exarkun) (*.net *.split)
2024-04-25 18:27:53 +0200eL_Bart0-(eL_Bart0@dietunichtguten.org) (*.net *.split)
2024-04-25 18:27:53 +0200shane(~shane@ana.rch.ist) (*.net *.split)
2024-04-25 18:27:53 +0200stefan-__(~m-yh2rcc@42dots.de) (*.net *.split)
2024-04-25 18:27:53 +0200hexology(~hexology@user/hexology) (*.net *.split)
2024-04-25 18:27:53 +0200SoF(~skius@user/skius) (*.net *.split)
2024-04-25 18:27:53 +0200drlkf(~drlkf@192.184.163.34.bc.googleusercontent.com) (*.net *.split)
2024-04-25 18:27:53 +0200JSharp(sid4580@user/JSharp) (*.net *.split)
2024-04-25 18:27:53 +0200aristid(sid1599@id-1599.uxbridge.irccloud.com) (*.net *.split)
2024-04-25 18:27:53 +0200natto(~natto@129.154.243.159) (*.net *.split)
2024-04-25 18:27:53 +0200rubin55(sid175221@id-175221.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:53 +0200ProofTechnique_(sid79547@id-79547.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:53 +0200iphy(sid67735@user/iphy) (*.net *.split)
2024-04-25 18:27:53 +0200sclv(sid39734@haskell/developer/sclv) (*.net *.split)
2024-04-25 18:27:53 +0200jocke-l(jocke-l@a.x0.is) (*.net *.split)
2024-04-25 18:27:53 +0200ocra8(ocra8@user/ocra8) (*.net *.split)
2024-04-25 18:27:53 +0200qqq(~qqq@92.43.167.61) (*.net *.split)
2024-04-25 18:27:53 +0200pavonia(~user@user/siracusa) (*.net *.split)
2024-04-25 18:27:53 +0200euphores(~SASL_euph@user/euphores) (*.net *.split)
2024-04-25 18:27:53 +0200tolt(~weechat-h@li219-154.members.linode.com) (*.net *.split)
2024-04-25 18:27:53 +0200SteelBlueSilk(~SteelBlue@user/SteelBlueSilk) (*.net *.split)
2024-04-25 18:27:53 +0200driib(~driib@vmi931078.contaboserver.net) (*.net *.split)
2024-04-25 18:27:53 +0200Benzi-Junior(~BenziJuni@232-148-209-31.dynamic.hringdu.is) (*.net *.split)
2024-04-25 18:27:53 +0200zlqrvx(~zlqrvx@user/zlqrvx) (*.net *.split)
2024-04-25 18:27:53 +0200Maxdamantus(~Maxdamant@user/maxdamantus) (*.net *.split)
2024-04-25 18:27:53 +0200ridcully(~ridcully@p508ac2b4.dip0.t-ipconnect.de) (*.net *.split)
2024-04-25 18:27:53 +0200AlexNoo(~AlexNoo@178.34.161.189) (*.net *.split)
2024-04-25 18:27:53 +0200monochrom(trebla@216.138.220.146) (*.net *.split)
2024-04-25 18:27:53 +0200echoreply(~echoreply@45.32.163.16) (*.net *.split)
2024-04-25 18:27:53 +0200troydm(~troydm@user/troydm) (*.net *.split)
2024-04-25 18:27:53 +0200igemnace(~igemnace@user/igemnace) (*.net *.split)
2024-04-25 18:27:53 +0200swistak(~swistak@185.21.216.141) (*.net *.split)
2024-04-25 18:27:53 +0200tinjamin(~tinjamin@banshee.h4x0r.space) (*.net *.split)
2024-04-25 18:27:53 +0200byte(~byte@149.28.222.189) (*.net *.split)
2024-04-25 18:27:53 +0200hammond(proscan@user/hammond2) (*.net *.split)
2024-04-25 18:27:53 +0200df(~ben@justworks.xyz) (*.net *.split)
2024-04-25 18:27:53 +0200krei-se(~krei-se@p5085d49b.dip0.t-ipconnect.de) (*.net *.split)
2024-04-25 18:27:53 +0200lbseale(~quassel@user/ep1ctetus) (*.net *.split)
2024-04-25 18:27:53 +0200defanor-(~defanor@tart.uberspace.net) (*.net *.split)
2024-04-25 18:27:53 +0200Unode(~Unode@fg-ext-220.embl.de) (*.net *.split)
2024-04-25 18:27:53 +0200dminuoso(~weechat@user/dminuoso) (*.net *.split)
2024-04-25 18:27:53 +0200hexeme(~hexeme@user/hexeme) (*.net *.split)
2024-04-25 18:27:53 +0200Vq(~vq@81-231-76-8-no600.tbcn.telia.com) (*.net *.split)
2024-04-25 18:27:53 +0200urdh(~urdh@user/urdh) (*.net *.split)
2024-04-25 18:27:53 +0200tri(~tri@ool-18bbef1a.static.optonline.net) (*.net *.split)
2024-04-25 18:27:53 +0200Sgeo(~Sgeo@user/sgeo) (*.net *.split)
2024-04-25 18:27:53 +0200rosco(rosco@gateway/vpn/airvpn/rosco) (*.net *.split)
2024-04-25 18:27:53 +0200Lord_of_Life(~Lord@user/lord-of-life/x-2819915) (*.net *.split)
2024-04-25 18:27:53 +0200[Leary](~Leary]@user/Leary/x-0910699) (*.net *.split)
2024-04-25 18:27:53 +0200machinedgod(~machinedg@d173-183-246-216.abhsia.telus.net) (*.net *.split)
2024-04-25 18:27:53 +0200L29Ah(~L29Ah@wikipedia/L29Ah) (*.net *.split)
2024-04-25 18:27:53 +0200foul_owl(~kerry@185.219.141.160) (*.net *.split)
2024-04-25 18:27:53 +0200aforemny(~aforemny@i59F516E4.versanet.de) (*.net *.split)
2024-04-25 18:27:53 +0200bollu(~bollu@159.65.151.13) (*.net *.split)
2024-04-25 18:27:53 +0200hc(~hc@mail.hce.li) (*.net *.split)
2024-04-25 18:27:54 +0200iteratee(~kyle@162.218.222.207) (*.net *.split)
2024-04-25 18:27:54 +0200m1dnight(~christoph@82.146.125.185) (*.net *.split)
2024-04-25 18:27:54 +0200Xe(~cadey@perl/impostor/xe) (*.net *.split)
2024-04-25 18:27:54 +0200TonyStone(~TonyStone@user/TonyStone) (*.net *.split)
2024-04-25 18:27:54 +0200sudden(~cat@user/sudden) (*.net *.split)
2024-04-25 18:27:54 +0200int-e(~noone@int-e.eu) (*.net *.split)
2024-04-25 18:27:54 +0200biberu(~biberu@user/biberu) (*.net *.split)
2024-04-25 18:27:54 +0200malte(~malte@mal.tc) (*.net *.split)
2024-04-25 18:27:54 +0200CATS(apic@brezn3.muc.ccc.de) (*.net *.split)
2024-04-25 18:27:54 +0200Rodney_(~Rodney@176.254.244.83) (*.net *.split)
2024-04-25 18:27:54 +0200esph(~weechat@user/esph) (*.net *.split)
2024-04-25 18:27:54 +0200gabiruh(~gabiruh@vps19177.publiccloud.com.br) (*.net *.split)
2024-04-25 18:27:54 +0200juri_(~juri@implicitcad.org) (*.net *.split)
2024-04-25 18:27:54 +0200GoldsteinQ(~goldstein@goldstein.rs) (*.net *.split)
2024-04-25 18:27:54 +0200wagle(~wagle@quassel.wagle.io) (*.net *.split)
2024-04-25 18:27:54 +0200wz1000(~zubin@static.11.113.47.78.clients.your-server.de) (*.net *.split)
2024-04-25 18:27:54 +0200cyphase(~cyphase@user/cyphase) (*.net *.split)
2024-04-25 18:27:54 +0200sprout(~quassel@84-80-106-227.fixed.kpn.net) (*.net *.split)
2024-04-25 18:27:54 +0200manwithluck(manwithluc@gateway/vpn/protonvpn/manwithluck) (*.net *.split)
2024-04-25 18:27:54 +0200op_4(~tslil@user/op-4/x-9116473) (*.net *.split)
2024-04-25 18:27:54 +0200cawfee(~root@2406:3003:2077:1c50::babe) (*.net *.split)
2024-04-25 18:27:54 +0200scav(sid309693@user/scav) (*.net *.split)
2024-04-25 18:27:54 +0200hololeap(~quassel@user/hololeap) (*.net *.split)
2024-04-25 18:27:54 +0200lambdap2371(~lambdap@static.167.190.119.168.clients.your-server.de) (*.net *.split)
2024-04-25 18:27:54 +0200TimWolla(~timwolla@2a01:4f8:150:6153:beef::6667) (*.net *.split)
2024-04-25 18:27:54 +0200h2t(~h2t@user/h2t) (*.net *.split)
2024-04-25 18:27:54 +0200PHO`_(~pho@akari.cielonegro.org) (*.net *.split)
2024-04-25 18:27:54 +0200darkling(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space) (*.net *.split)
2024-04-25 18:27:54 +0200joeyh(joeyh@kitenet.net) (*.net *.split)
2024-04-25 18:27:54 +0200MironZ(~MironZ@nat-infra.ehlab.uk) (*.net *.split)
2024-04-25 18:27:54 +0200mjacob(~mjacob@adrastea.uberspace.de) (*.net *.split)
2024-04-25 18:27:54 +0200lisq(~quassel@lis.moe) (*.net *.split)
2024-04-25 18:27:54 +0200carter(sid14827@id-14827.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:54 +0200dumptruckman(~dumptruck@69-164-220-160.ip.linodeusercontent.com) (*.net *.split)
2024-04-25 18:27:54 +0200edwardk(sid47016@haskell/developer/edwardk) (*.net *.split)
2024-04-25 18:27:54 +0200aspen(sid449115@id-449115.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:54 +0200c_wraith(~c_wraith@adjoint.us) (*.net *.split)
2024-04-25 18:27:54 +0200landonf(landonf@mac68k.info) (*.net *.split)
2024-04-25 18:27:54 +0200nckx(nckx@libera/staff/owl/nckx) (*.net *.split)
2024-04-25 18:27:54 +0200energizer(~energizer@user/energizer) (*.net *.split)
2024-04-25 18:27:54 +0200bah(~bah@l1.tel) (*.net *.split)
2024-04-25 18:27:54 +0200Goodbye_Vincent(cyvahl@freakshells.net) (*.net *.split)
2024-04-25 18:27:54 +0200xnbya2(~xnbya@2a01:4f8:c17:cbdd::1) (*.net *.split)
2024-04-25 18:27:54 +0200laman1(~laman@rego.ai) (*.net *.split)
2024-04-25 18:27:54 +0200noteness-(~noteness@user/noteness) (*.net *.split)
2024-04-25 18:27:54 +0200absence(torgeihe@hildring.pvv.ntnu.no) (*.net *.split)
2024-04-25 18:27:54 +0200loonycyborg(loonycybor@wesnoth/developer/loonycyborg) (*.net *.split)
2024-04-25 18:27:54 +0200_0xa_(~user@2001:19f0:5001:2ba8:5400:1ff:feda:88fc) (*.net *.split)
2024-04-25 18:27:54 +0200Jon(jon@dow.land) (*.net *.split)
2024-04-25 18:27:54 +0200kosmikus(~kosmikus@nullzig.kosmikus.org) (*.net *.split)
2024-04-25 18:27:54 +0200Hecate(~mariposa@user/hecate) (*.net *.split)
2024-04-25 18:27:54 +0200cjay(cjay@nerdbox.nerd2nerd.org) (*.net *.split)
2024-04-25 18:27:54 +0200pierrot(~pi@user/pierrot) (*.net *.split)
2024-04-25 18:27:54 +0200Luj(~Luj@2a01:e0a:5f9:9681:627d:73c1:73b3:2561) (*.net *.split)
2024-04-25 18:27:54 +0200hueso(~root@user/hueso) (*.net *.split)
2024-04-25 18:27:54 +0200bwe(~bwe@2a01:4f8:1c1c:4878::2) (*.net *.split)
2024-04-25 18:27:54 +0200systemfault(sid267009@about/typescript/member/systemfault) (*.net *.split)
2024-04-25 18:27:54 +0200img(~img@user/img) (*.net *.split)
2024-04-25 18:27:54 +0200henrytill(e0180937c3@2a03:6000:1812:100::e8c) (*.net *.split)
2024-04-25 18:27:54 +0200rselim(ce261f06ff@user/milesrout) (*.net *.split)
2024-04-25 18:27:54 +0200cpli(77fc530071@2a03:6000:1812:100::252) (*.net *.split)
2024-04-25 18:27:54 +0200chaitlatte0(ea29c0bb16@user/chaitlatte0) (*.net *.split)
2024-04-25 18:27:54 +0200jleightcap(7bc4014b62@user/jleightcap) (*.net *.split)
2024-04-25 18:27:54 +0200brettgilio(a35ba67324@2a03:6000:1812:100::260) (*.net *.split)
2024-04-25 18:27:54 +0200JoelMcCracken(5ea8252fbb@2a03:6000:1812:100::10e3) (*.net *.split)
2024-04-25 18:27:54 +0200whereiseveryone(206ba86c98@2a03:6000:1812:100::2e4) (*.net *.split)
2024-04-25 18:27:54 +0200kuruczgy(55b66dd3ae@2a03:6000:1812:100::127f) (*.net *.split)
2024-04-25 18:27:54 +0200Ankhers(e99e97ef8e@2a03:6000:1812:100::2a2) (*.net *.split)
2024-04-25 18:27:54 +0200eso(a0662dfd5e@2a03:6000:1812:100::1266) (*.net *.split)
2024-04-25 18:27:54 +0200fgaz_(1ff9197ed6@2a03:6000:1812:100::11ea) (*.net *.split)
2024-04-25 18:27:54 +0200bsima1(9d7e39c8ad@2a03:6000:1812:100::dd) (*.net *.split)
2024-04-25 18:27:54 +0200dmj`(sid72307@id-72307.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:54 +0200integral(sid296274@user/integral) (*.net *.split)
2024-04-25 18:27:54 +0200chessai(sid225296@id-225296.lymington.irccloud.com) (*.net *.split)
2024-04-25 18:27:54 +0200fr33domlover(~fr33domlo@towards.vision) (*.net *.split)
2024-04-25 18:27:54 +0200mesaoptimizer(~mesaoptim@user/PapuaHardyNet) (*.net *.split)
2024-04-25 18:27:54 +0200earthy(~arthurvl@2a02-a469-f5e2-1-83d2-ca43-57a2-dc81.fixed6.kpn.net) (*.net *.split)
2024-04-25 18:27:54 +0200Teacup(~teacup@user/teacup) (*.net *.split)
2024-04-25 18:27:54 +0200mcfrdy(~mcfrdy@user/mcfrdy) (*.net *.split)
2024-04-25 18:27:54 +0200dy(sid3438@user/dy) (*.net *.split)
2024-04-25 18:27:54 +0200gaze__(sid387101@id-387101.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:54 +0200[_________](~oos95GWG@user/oos95GWG) (*.net *.split)
2024-04-25 18:27:54 +0200APic(apic@apic.name) (*.net *.split)
2024-04-25 18:27:54 +0200Fangs(sid141280@id-141280.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:54 +0200tomjaguarpaw(~tom@172-104-25-182.ip.linodeusercontent.com) (*.net *.split)
2024-04-25 18:27:54 +0200ringo___(~ringo@157.230.117.128) (*.net *.split)
2024-04-25 18:27:54 +0200acro(~acro@user/acro) (*.net *.split)
2024-04-25 18:27:54 +0200davl(~davl@207.154.228.18) (*.net *.split)
2024-04-25 18:27:54 +0200welterde(welterde@thinkbase.srv.welterde.de) (*.net *.split)
2024-04-25 18:27:54 +0200immae(~immae@2a01:4f8:141:53e7::) (*.net *.split)
2024-04-25 18:27:54 +0200institor(~henricus@user/institor) (*.net *.split)
2024-04-25 18:27:54 +0200krasjet(~krjst@2604:a880:800:c1::16b:8001) (*.net *.split)
2024-04-25 18:27:54 +0200rachelambda(~rachelamb@cust-95-80-25-71.csbnet.se) (*.net *.split)
2024-04-25 18:27:54 +0200opqdonut(opqdonut@pseudo.fixme.fi) (*.net *.split)
2024-04-25 18:27:54 +0200acidsys(~crameleon@openSUSE/member/crameleon) (*.net *.split)
2024-04-25 18:27:54 +0200patrl(~patrl@user/patrl) (*.net *.split)
2024-04-25 18:27:55 +0200beaky(~beaky@2a03:b0c0:0:1010::1e:a001) (*.net *.split)
2024-04-25 18:27:55 +0200takuan(~takuan@178-116-218-225.access.telenet.be) (*.net *.split)
2024-04-25 18:27:55 +0200koz(~koz@121.99.240.58) (*.net *.split)
2024-04-25 18:27:55 +0200mulk(~mulk@p5b112e4a.dip0.t-ipconnect.de) (*.net *.split)
2024-04-25 18:27:55 +0200xsarnik(xsarnik@lounge.fi.muni.cz) (*.net *.split)
2024-04-25 18:27:55 +0200xstill_(xstill@fimu/xstill) (*.net *.split)
2024-04-25 18:27:55 +0200ncf(~n@monade.li) (*.net *.split)
2024-04-25 18:27:55 +0200_d0t(~{-d0t-}@user/-d0t-/x-7915216) (*.net *.split)
2024-04-25 18:27:55 +0200dostoyevsky2(~sck@user/dostoyevsky2) (*.net *.split)
2024-04-25 18:27:55 +0200terrorjack(~terrorjac@2a01:4f8:c17:87f8::) (*.net *.split)
2024-04-25 18:27:55 +0200vgtw(~vgtw@user/vgtw) (*.net *.split)
2024-04-25 18:27:55 +0200erisco(~erisco@d24-141-66-165.home.cgocable.net) (*.net *.split)
2024-04-25 18:27:55 +0200Me-me(~me-me@user/me-me) (*.net *.split)
2024-04-25 18:27:55 +0200YoungFrog(~youngfrog@39.129-180-91.adsl-dyn.isp.belgacom.be) (*.net *.split)
2024-04-25 18:27:55 +0200Moyst_(~moyst@user/moyst) (*.net *.split)
2024-04-25 18:27:55 +0200meinside(uid24933@id-24933.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200mikko(~mikko@user/mikko) (*.net *.split)
2024-04-25 18:27:55 +0200masterbuilder(~quassel@user/masterbuilder) (*.net *.split)
2024-04-25 18:27:55 +0200pieguy128(~pieguy128@bras-base-mtrlpq5031w-grc-47-67-70-101-170.dsl.bell.ca) (*.net *.split)
2024-04-25 18:27:55 +0200nitrix(~nitrix@user/meow/nitrix) (*.net *.split)
2024-04-25 18:27:55 +0200dibblego(~dibblego@haskell/developer/dibblego) (*.net *.split)
2024-04-25 18:27:55 +0200stefan-_(~cri@42dots.de) (*.net *.split)
2024-04-25 18:27:55 +0200tnks(sid412124@id-412124.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200bradparker(sid262931@id-262931.uxbridge.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200jmct(sid160793@id-160793.tinside.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200mjrosenb(~mjrosenb@pool-96-232-177-77.nycmny.fios.verizon.net) (*.net *.split)
2024-04-25 18:27:55 +0200Angelz(Angelz@user/angelz) (*.net *.split)
2024-04-25 18:27:55 +0200cptaffe(~cptaffe@user/cptaffe) (*.net *.split)
2024-04-25 18:27:55 +0200b20n(sid115913@id-115913.uxbridge.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200deriamis(deriamis@ec2-54-187-167-69.us-west-2.compute.amazonaws.com) (*.net *.split)
2024-04-25 18:27:55 +0200ricardo_2(~ricardo@217.70.197.9) (*.net *.split)
2024-04-25 18:27:55 +0200kaol(~kaol@94-237-42-30.nl-ams1.upcloud.host) (*.net *.split)
2024-04-25 18:27:55 +0200constxd(~constxd@user/constxd) (*.net *.split)
2024-04-25 18:27:55 +0200lieven(~mal@ns2.wyrd.be) (*.net *.split)
2024-04-25 18:27:55 +0200Hobbyboy(Hobbyboy@hobbyboy.co.uk) (*.net *.split)
2024-04-25 18:27:55 +0200davean(~davean@davean.sciesnet.net) (*.net *.split)
2024-04-25 18:27:55 +0200bsima(~bsima@2604:a880:400:d0::19f1:7001) (*.net *.split)
2024-04-25 18:27:55 +0200tamer(~tamer@user/tamer) (*.net *.split)
2024-04-25 18:27:55 +0200bastelfreak(bastelfrea@libera/staff/VoxPupuli.bastelfreak) (*.net *.split)
2024-04-25 18:27:55 +0200mrmonday(~robert@what.i.hope.is.not.a.tabernaevagant.es) (*.net *.split)
2024-04-25 18:27:55 +0200evertedsphere(sid434122@id-434122.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200k_hachig(~k_hachig@ipagstaticip-b4f1257d-69a8-678e-1ff6-80999a2f9589.sdsl.bell.ca) (*.net *.split)
2024-04-25 18:27:55 +0200destituion(~destituio@2a02:2121:340:2456:fffe:d0f:7737:dd1) (*.net *.split)
2024-04-25 18:27:55 +0200oo_miguel(~Thunderbi@78-11-181-16.static.ip.netia.com.pl) (*.net *.split)
2024-04-25 18:27:55 +0200philopsos(~caecilius@user/philopsos) (*.net *.split)
2024-04-25 18:27:55 +0200Athas(athas@sigkill.dk) (*.net *.split)
2024-04-25 18:27:55 +0200vulpine(xfnw@user/meow/xfnw) (*.net *.split)
2024-04-25 18:27:55 +0200johnw(~johnw@69.62.242.138) (*.net *.split)
2024-04-25 18:27:55 +0200samhh(7569f027cf@2a03:6000:1812:100::e4) (*.net *.split)
2024-04-25 18:27:55 +0200akspecs(00cc8321af@sourcehut/user/akspecs) (*.net *.split)
2024-04-25 18:27:55 +0200shreyasminocha(51fdc93eda@user/shreyasminocha) (*.net *.split)
2024-04-25 18:27:55 +0200ursa-major(114efe6c39@2a03:6000:1812:100::11f3) (*.net *.split)
2024-04-25 18:27:55 +0200jmcantrell(644f1bed9a@user/jmcantrell) (*.net *.split)
2024-04-25 18:27:55 +0200aniketd(32aa4844cd@2a03:6000:1812:100::dcb) (*.net *.split)
2024-04-25 18:27:55 +0200evanrelf(3addc196af@2a03:6000:1812:100::f0) (*.net *.split)
2024-04-25 18:27:55 +0200fluffyballoon(45ce440a48@2a03:6000:1812:100::e2) (*.net *.split)
2024-04-25 18:27:55 +0200probie(cc0b34050a@user/probie) (*.net *.split)
2024-04-25 18:27:55 +0200fn_lumi(3d621153a5@2a03:6000:1812:100::df7) (*.net *.split)
2024-04-25 18:27:55 +0200arcadewise(52968ed80d@2a03:6000:1812:100::3df) (*.net *.split)
2024-04-25 18:27:55 +0200filwisher(2e6936c793@2a03:6000:1812:100::170) (*.net *.split)
2024-04-25 18:27:55 +0200lukec(9dfd4d094e@2a03:6000:1812:100::10e) (*.net *.split)
2024-04-25 18:27:55 +0200benjaminl(~benjaminl@user/benjaminl) (*.net *.split)
2024-04-25 18:27:55 +0200nurupo(~nurupo.ga@user/nurupo) (*.net *.split)
2024-04-25 18:27:55 +0200coldtom(~coldtom@coldrick.cc) (*.net *.split)
2024-04-25 18:27:55 +0200gabriel_sevecek(~gabriel@188-167-229-200.dynamic.chello.sk) (*.net *.split)
2024-04-25 18:27:55 +0200cln_(cln@wtf.cx) (*.net *.split)
2024-04-25 18:27:55 +0200fiddlerw-(~fiddlerwo@user/fiddlerwoaroof) (*.net *.split)
2024-04-25 18:27:55 +0200m5zs7k(aquares@web10.mydevil.net) (*.net *.split)
2024-04-25 18:27:55 +0200lockna_(~lockna@static.139.16.130.94.clients.your-server.de) (*.net *.split)
2024-04-25 18:27:55 +0200bw_____(sid2730@id-2730.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200inedia(~irc@2600:3c00:e000:287::1) (*.net *.split)
2024-04-25 18:27:55 +0200teqwve(teqwve@static.141.38.201.195.clients.your-server.de) (*.net *.split)
2024-04-25 18:27:55 +0200mauke(~mauke@user/mauke) (*.net *.split)
2024-04-25 18:27:55 +0200PotatoGim(sid99505@id-99505.lymington.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200lambdabot(~lambdabot@haskell/bot/lambdabot) (*.net *.split)
2024-04-25 18:27:55 +0200canta(~canta@user/canta) (*.net *.split)
2024-04-25 18:27:55 +0200riatre(~quassel@2001:310:6000:f::5198:1) (*.net *.split)
2024-04-25 18:27:55 +0200alanz(sid110616@id-110616.uxbridge.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200amir(sid22336@user/amir) (*.net *.split)
2024-04-25 18:27:55 +0200Boarders___(sid425905@id-425905.lymington.irccloud.com) (*.net *.split)
2024-04-25 18:27:55 +0200mht-wtf(~mht@2a03:b0c0:3:e0::1e2:c001) (*.net *.split)
2024-04-25 18:27:55 +0200Dykam(Dykam@dykam.nl) (*.net *.split)
2024-04-25 18:27:55 +0200ouroboros(~ouroboros@user/ouroboros) (*.net *.split)
2024-04-25 18:27:55 +0200disconnect3d(~disconnec@user/disconnect3d) (*.net *.split)
2024-04-25 18:27:55 +0200mmaruseacph2(~mihai@mihai.page) (*.net *.split)
2024-04-25 18:27:55 +0200A_Dragon(A_D@libera/staff/dragon) (*.net *.split)
2024-04-25 18:27:55 +0200mira(~aranea@wireguard/contributorcat/mira) (*.net *.split)
2024-04-25 18:27:55 +0200danso_o(~danso@user/danso) (*.net *.split)
2024-04-25 18:27:55 +0200acidjnk(~acidjnk@p200300d6e714dc7109d5fea24ae1df5e.dip0.t-ipconnect.de) (*.net *.split)
2024-04-25 18:27:55 +0200hughjfchen(~hughjfche@vmi556545.contaboserver.net) (*.net *.split)
2024-04-25 18:27:55 +0200Patternmaster(~georg@user/Patternmaster) (*.net *.split)
2024-04-25 18:27:55 +0200_________(~nobody@user/noodly) (*.net *.split)
2024-04-25 18:27:55 +0200catties(~catties@user/meow/catties) (*.net *.split)
2024-04-25 18:27:55 +0200JamesMowery(~JamesMowe@ip98-171-80-211.ph.ph.cox.net) (*.net *.split)
2024-04-25 18:27:55 +0200tabemann_(~tabemann@2600:1700:7990:24e0:42f1:a891:a658:f99d) (*.net *.split)
2024-04-25 18:27:55 +0200tt12310(~tt1231@2603:6010:8700:4a81:219f:50d3:618a:a6ee) (*.net *.split)
2024-04-25 18:27:55 +0200puke(~puke@user/puke) (*.net *.split)
2024-04-25 18:27:56 +0200jle`(~jle`@2603:8001:3b02:84d4:99e7:4463:681a:66ac) (*.net *.split)
2024-04-25 18:27:56 +0200JimL(~quassel@89.162.16.26) (*.net *.split)
2024-04-25 18:27:56 +0200amjoseph(~amjoseph@static-198-44-128-146.cust.tzulo.com) (*.net *.split)
2024-04-25 18:27:56 +0200andjjj23(~irc@107.170.228.47) (*.net *.split)
2024-04-25 18:27:56 +0200_xor(~xor@ip-208-102-243-175.dynamic.fuse.net) (*.net *.split)
2024-04-25 18:27:56 +0200barrucadu(~barrucadu@carcosa.barrucadu.co.uk) (*.net *.split)
2024-04-25 18:27:56 +0200migas97(~migas@static.140.65.63.178.clients.your-server.de) (*.net *.split)
2024-04-25 18:27:56 +0200hovsater(sid499516@user/hovsater) (*.net *.split)
2024-04-25 18:27:56 +0200tomsmeding(~tomsmedin@static.21.109.88.23.clients.your-server.de) (*.net *.split)
2024-04-25 18:27:56 +0200fryguybob(~fryguybob@024-094-050-022.inf.spectrum.com) (*.net *.split)
2024-04-25 18:27:56 +0200Sciencentistguy(~sciencent@hacksoc/ordinary-member) (*.net *.split)
2024-04-25 18:27:56 +0200byorgey(~byorgey@user/byorgey) (*.net *.split)
2024-04-25 18:27:56 +0200buhman(sid411355@user/buhman) (*.net *.split)
2024-04-25 18:27:56 +0200andreas808(andreas303@is.drunk.and.ready-to.party) (*.net *.split)
2024-04-25 18:27:56 +0200smalltalkman(uid545680@id-545680.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200bgamari(~bgamari@64.223.226.84) (*.net *.split)
2024-04-25 18:27:56 +0200pdw(~user@215.156.62.185.bridgefibre.net) (*.net *.split)
2024-04-25 18:27:56 +0200ames(~amelia@offtopia/offtopian/amelia) (*.net *.split)
2024-04-25 18:27:56 +0200sa1(sid7690@id-7690.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200rune_(sid21167@id-21167.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200taktoa[c](sid282096@id-282096.tinside.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200jonrh(sid5185@id-5185.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200NiKaN(sid385034@id-385034.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200apache(apache2@anubis.0x90.dk) (*.net *.split)
2024-04-25 18:27:56 +0200Techcable(sid534393@user/Techcable) (*.net *.split)
2024-04-25 18:27:56 +0200ph88(~ph88@ip5b403f30.dynamic.kabel-deutschland.de) (*.net *.split)
2024-04-25 18:27:56 +0200michalz(~michalz@185.246.207.218) (*.net *.split)
2024-04-25 18:27:56 +0200FragByte(~christian@user/fragbyte) (*.net *.split)
2024-04-25 18:27:56 +0200nschoe(~nschoe@2a01:e0a:8e:a190:f3a1:c501:e8bd:2571) (*.net *.split)
2024-04-25 18:27:56 +0200dunj3(~dunj3@kingdread.de) (*.net *.split)
2024-04-25 18:27:56 +0200mrmr1553343(~mrmr@user/mrmr) (*.net *.split)
2024-04-25 18:27:56 +0200RMSBach(~guygastin@137.184.131.156) (*.net *.split)
2024-04-25 18:27:56 +0200Vajb(~Vajb@85-76-14-24-nat.elisa-mobile.fi) (*.net *.split)
2024-04-25 18:27:56 +0200arahael(~arahael@119-18-1-21.771201.syd.nbn.aussiebb.net) (*.net *.split)
2024-04-25 18:27:56 +0200cross(~cross@spitfire.i.gajendra.net) (*.net *.split)
2024-04-25 18:27:56 +0200anpad(~pandeyan@user/anpad) (*.net *.split)
2024-04-25 18:27:56 +0200doyougnu(~doyougnu@45.46.170.68) (*.net *.split)
2024-04-25 18:27:56 +0200abrar(~abrar@pool-72-78-199-167.phlapa.fios.verizon.net) (*.net *.split)
2024-04-25 18:27:56 +0200Batzy(~quassel@user/batzy) (*.net *.split)
2024-04-25 18:27:56 +0200MelMalik(ellenor@invictus.wa.us.umbrellix.net) (*.net *.split)
2024-04-25 18:27:56 +0200conjunctive(sid433686@id-433686.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200sefidel(~sefidel@user/sefidel) (*.net *.split)
2024-04-25 18:27:56 +0200cayley5(~cayley5@user/phileasfogg) (*.net *.split)
2024-04-25 18:27:56 +0200micro(~micro@user/micro) (*.net *.split)
2024-04-25 18:27:56 +0200myme(~myme@2a01:799:d5c:5f00:1e69:7aff:feab:e7ae) (*.net *.split)
2024-04-25 18:27:56 +0200snek(sid280155@id-280155.lymington.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200diagprov(sid348783@user/diagprov) (*.net *.split)
2024-04-25 18:27:56 +0200tritlo_(sid58727@id-58727.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200yahb2(~yahb2@user/tomsmeding/bot/yahb2) (*.net *.split)
2024-04-25 18:27:56 +0200ian_(~ian@matrix.chaos.earth.li) (*.net *.split)
2024-04-25 18:27:56 +0200Clint(~Clint@user/clint) (*.net *.split)
2024-04-25 18:27:56 +0200edwtjo(~edwtjo@fsf/member/edwtjo) (*.net *.split)
2024-04-25 18:27:56 +0200rncwnd(~quassel@2a01:4f8:221:27c6::1) (*.net *.split)
2024-04-25 18:27:56 +0200kronicmage(~kronicmag@neotame.csclub.uwaterloo.ca) (*.net *.split)
2024-04-25 18:27:56 +0200Putonlalla(~Putonlall@it-cyan.it.jyu.fi) (*.net *.split)
2024-04-25 18:27:56 +0200shawwwn(sid6132@id-6132.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200cbarrett(sid192934@id-192934.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200S11001001(sid42510@id-42510.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200dsal(sid13060@id-13060.lymington.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200stilgart(~Christoph@chezlefab.net) (*.net *.split)
2024-04-25 18:27:56 +0200chymera(~chymera@ns1000526.ip-51-81-46.us) (*.net *.split)
2024-04-25 18:27:56 +0200Logio(em@kapsi.fi) (*.net *.split)
2024-04-25 18:27:56 +0200totbwf(sid402332@id-402332.uxbridge.irccloud.com) (*.net *.split)
2024-04-25 18:27:56 +0200ggVGc(~ggVGc@a.lowtech.earth) (*.net *.split)
2024-04-25 18:27:56 +0200Deide(d0130db69a@user/deide) (*.net *.split)
2024-04-25 18:27:56 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (*.net *.split)
2024-04-25 18:27:56 +0200berberman(~berberman@user/berberman) (*.net *.split)
2024-04-25 18:27:56 +0200yeitrafferin(~user@2a04:4540:7213:4d00:b9b0:d2b9:e58a:8d24) (*.net *.split)
2024-04-25 18:27:56 +0200Inst(~Inst@user/Inst) (*.net *.split)
2024-04-25 18:27:56 +0200td_(~td@i5387092A.versanet.de) (*.net *.split)
2024-04-25 18:27:56 +0200notzmv(~daniel@user/notzmv) (*.net *.split)
2024-04-25 18:27:56 +0200Feuermagier(~Feuermagi@user/feuermagier) (*.net *.split)
2024-04-25 18:27:56 +0200sshine(~simon@zhen.mechanicus.xyz) (*.net *.split)
2024-04-25 18:27:56 +0200Franciman(~Franciman@mx1.fracta.dev) (*.net *.split)
2024-04-25 18:27:56 +0200samhh_(7569f027cf@2a03:6000:1812:100::e4) (*.net *.split)
2024-04-25 18:27:56 +0200jkoshy(99b9359beb@user/jkoshy) (*.net *.split)
2024-04-25 18:27:56 +0200fvr(ef3e56ca8b@2a03:6000:1812:100::3c4) (*.net *.split)
2024-04-25 18:27:56 +0200jakzale(6291399afa@user/jakzale) (*.net *.split)
2024-04-25 18:27:56 +0200ymherklotz(cb2c9cfbdd@2a03:6000:1812:100::29a) (*.net *.split)
2024-04-25 18:27:56 +0200sm2n(ae95cb1267@user/sm2n) (*.net *.split)
2024-04-25 18:27:56 +0200sus(1b7af6299f@user/zeromomentum) (*.net *.split)
2024-04-25 18:27:57 +0200b0o(0e4a0bf4c9@2a03:6000:1812:100::1bf) (*.net *.split)
2024-04-25 18:27:57 +0200duncan(c6181279e3@user/meow/duncan) (*.net *.split)
2024-04-25 18:27:57 +0200pmk(6afe4476a1@2a03:6000:1812:100::26d) (*.net *.split)
2024-04-25 18:27:57 +0200lane(809450f172@2a03:6000:1812:100::1300) (*.net *.split)
2024-04-25 18:27:57 +0200ggb(a62ffbaf4f@2a03:6000:1812:100::3ac) (*.net *.split)
2024-04-25 18:27:57 +0200raghavgururajan(ea769b8000@user/raghavgururajan) (*.net *.split)
2024-04-25 18:27:57 +0200nonzen(~nonzen@user/nonzen) (*.net *.split)
2024-04-25 18:27:57 +0200hamishmack(sid389057@id-389057.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200tomboy64(~tomboy64@user/tomboy64) (*.net *.split)
2024-04-25 18:27:57 +0200T_S_____(sid501726@id-501726.uxbridge.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200Kamuela(sid111576@id-111576.tinside.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200nisstyre(wes@user/nisstyre) (*.net *.split)
2024-04-25 18:27:57 +0200turlando(~turlando@user/turlando) (*.net *.split)
2024-04-25 18:27:57 +0200jakesyl_____(sid56879@id-56879.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200liskin(~liskin@xmonad/liskin) (*.net *.split)
2024-04-25 18:27:57 +0200mrvdb(~mrvdb@2001:19f0:5000:8582:5400:ff:fe07:3df5) (*.net *.split)
2024-04-25 18:27:57 +0200nadja(~dequbed@banana-new.kilobyte22.de) (*.net *.split)
2024-04-25 18:27:57 +0200lexi-lambda(sid92601@id-92601.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200SanchayanMaity(sid478177@id-478177.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200polux(~polux@51-15-169-172.rev.poneytelecom.eu) (*.net *.split)
2024-04-25 18:27:57 +0200xerox(~edi@user/edi) (*.net *.split)
2024-04-25 18:27:57 +0200farn_(~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) (*.net *.split)
2024-04-25 18:27:57 +0200gmc(sid58314@id-58314.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200mankyKitty(sid31287@id-31287.helmsley.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200astra(sid289983@id-289983.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200caasih(sid13241@id-13241.ilkley.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200SrPx(sid108780@id-108780.uxbridge.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200yushyin(PYLyYfdKtk@mail.karif.server-speed.net) (*.net *.split)
2024-04-25 18:27:57 +0200xacktm(xacktm@user/xacktm) (*.net *.split)
2024-04-25 18:27:57 +0200nrr_______(sid20938@id-20938.lymington.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200meooow(~meooow@165.232.184.169) (*.net *.split)
2024-04-25 18:27:57 +0200haasn(sid579015@id-579015.hampstead.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200arkeet(~arkeet@moriya.ca) (*.net *.split)
2024-04-25 18:27:57 +0200codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split)
2024-04-25 18:27:57 +0200noctux1(Hfi6K5vcqP@user/noctux) (*.net *.split)
2024-04-25 18:27:57 +0200CalimeroTeknik(~calimero@user/calimeroteknik) (*.net *.split)
2024-04-25 18:27:57 +0200nicole(ilbelkyr@libera/staff/ilbelkyr) (*.net *.split)
2024-04-25 18:27:57 +0200ChanServ(ChanServ@services.libera.chat) (*.net *.split)
2024-04-25 18:27:57 +0200Axman6(~Axman6@user/axman6) (*.net *.split)
2024-04-25 18:27:57 +0200akegalj(~akegalj@78-1-50-53.adsl.net.t-com.hr) (*.net *.split)
2024-04-25 18:27:57 +0200mima(~mmh@aftr-62-216-211-38.dynamic.mnet-online.de) (*.net *.split)
2024-04-25 18:27:57 +0200demon-cat(~demon-cat@dund-15-b2-v4wan-169642-cust1347.vm6.cable.virginm.net) (*.net *.split)
2024-04-25 18:27:57 +0200Katarushisu1(~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net) (*.net *.split)
2024-04-25 18:27:57 +0200bcksl(~bcksl@user/bcksl) (*.net *.split)
2024-04-25 18:27:57 +0200Natch(~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se) (*.net *.split)
2024-04-25 18:27:57 +0200ezzieyguywuf(~Unknown@user/ezzieyguywuf) (*.net *.split)
2024-04-25 18:27:57 +0200Ram-Z(~Ram-Z@li1814-254.members.linode.com) (*.net *.split)
2024-04-25 18:27:57 +0200xal(~xal@mx1.xal.systems) (*.net *.split)
2024-04-25 18:27:57 +0200pointlessslippe1(~pointless@212.82.82.3) (*.net *.split)
2024-04-25 18:27:57 +0200tcard_(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split)
2024-04-25 18:27:57 +0200hippoid(~hippoid@user/hippoid) (*.net *.split)
2024-04-25 18:27:57 +0200mhatta(~mhatta@www21123ui.sakura.ne.jp) (*.net *.split)
2024-04-25 18:27:57 +0200markasoftware(~quassel@107.161.26.124) (*.net *.split)
2024-04-25 18:27:57 +0200ACuriousMoose(~ACuriousM@142.68.181.38) (*.net *.split)
2024-04-25 18:27:57 +0200cheater(~Username@user/cheater) (*.net *.split)
2024-04-25 18:27:57 +0200kmein(~weechat@user/kmein) (*.net *.split)
2024-04-25 18:27:57 +0200CrunchyFlakes(~CrunchyFl@ip92348280.dynamic.kabel-deutschland.de) (*.net *.split)
2024-04-25 18:27:57 +0200tessier(~treed@ec2-184-72-149-67.compute-1.amazonaws.com) (*.net *.split)
2024-04-25 18:27:57 +0200remedan(~remedan@ip-78-102-118-253.bb.vodafone.cz) (*.net *.split)
2024-04-25 18:27:57 +0200steew(~steew@user/steew) (*.net *.split)
2024-04-25 18:27:57 +0200hiredman(~hiredman@frontier1.downey.family) (*.net *.split)
2024-04-25 18:27:57 +0200emergence(emergence@2607:5300:60:5910:dcad:beff:feef:5bc) (*.net *.split)
2024-04-25 18:27:57 +0200quintasan(~quassel@quintasan.pl) (*.net *.split)
2024-04-25 18:27:57 +0200finsternis(~X@23.226.237.192) (*.net *.split)
2024-04-25 18:27:57 +0200aku(~aku@65.108.245.241) (*.net *.split)
2024-04-25 18:27:57 +0200noctux(~noctux@user/noctux) (*.net *.split)
2024-04-25 18:27:57 +0200connrs(~connrs@user/connrs) (*.net *.split)
2024-04-25 18:27:57 +0200davetapley(sid666@id-666.uxbridge.irccloud.com) (*.net *.split)
2024-04-25 18:27:57 +0200jjhoo(~jahakala@user/jjhoo) (*.net *.split)
2024-04-25 18:27:57 +0200pounce(~pounce@user/cute/pounce) (*.net *.split)
2024-04-25 18:27:57 +0200mustafa(sid502723@rockylinux/releng/mustafa) (*.net *.split)
2024-04-25 18:27:57 +0200shachaf(~shachaf@user/shachaf) (*.net *.split)
2024-04-25 18:27:57 +0200xnyhps(~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288) (*.net *.split)
2024-04-25 18:27:57 +0200spider(spider@tilde.cafe) (*.net *.split)
2024-04-25 18:27:57 +0200albet70(~xxx@2400:8902::f03c:92ff:fe60:98d8) (*.net *.split)
2024-04-25 18:27:57 +0200pikajude(~jude@149.28.207.64) (*.net *.split)
2024-04-25 18:27:57 +0200dragestil(~znc@user/dragestil) (*.net *.split)
2024-04-25 18:27:57 +0200tstat_(~tstat@user/tstat) (*.net *.split)
2024-04-25 18:27:57 +0200Aleksejs(~Aleksejs@107.170.21.106) (*.net *.split)
2024-04-25 18:27:57 +0200dfordvm(~dfordivam@160.16.87.223.v6.sakura.ne.jp) (*.net *.split)
2024-04-25 18:27:57 +0200xelxebar(~xelxebar@wilsonb.com) (*.net *.split)
2024-04-25 18:27:57 +0200ent(entgod@kapsi.fi) (*.net *.split)
2024-04-25 18:27:57 +0200piele(~piele@tbonesteak.creativeserver.net) (*.net *.split)
2024-04-25 18:29:31 +0200akegalj(~akegalj@78-1-50-53.adsl.net.t-com.hr)
2024-04-25 18:29:31 +0200mima(~mmh@aftr-62-216-211-38.dynamic.mnet-online.de)
2024-04-25 18:29:31 +0200demon-cat(~demon-cat@dund-15-b2-v4wan-169642-cust1347.vm6.cable.virginm.net)
2024-04-25 18:29:31 +0200Katarushisu1(~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net)
2024-04-25 18:29:31 +0200bcksl(~bcksl@user/bcksl)
2024-04-25 18:29:31 +0200Natch(~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se)
2024-04-25 18:29:31 +0200ezzieyguywuf(~Unknown@user/ezzieyguywuf)
2024-04-25 18:29:31 +0200Ram-Z(~Ram-Z@li1814-254.members.linode.com)
2024-04-25 18:29:31 +0200xal(~xal@mx1.xal.systems)
2024-04-25 18:29:31 +0200pointlessslippe1(~pointless@212.82.82.3)
2024-04-25 18:29:31 +0200tcard_(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303)
2024-04-25 18:29:31 +0200hippoid(~hippoid@user/hippoid)
2024-04-25 18:29:31 +0200mhatta(~mhatta@www21123ui.sakura.ne.jp)
2024-04-25 18:29:31 +0200markasoftware(~quassel@107.161.26.124)
2024-04-25 18:29:31 +0200ACuriousMoose(~ACuriousM@142.68.181.38)
2024-04-25 18:29:31 +0200cheater(~Username@user/cheater)
2024-04-25 18:29:31 +0200kmein(~weechat@user/kmein)
2024-04-25 18:29:31 +0200CrunchyFlakes(~CrunchyFl@ip92348280.dynamic.kabel-deutschland.de)
2024-04-25 18:29:31 +0200tessier(~treed@ec2-184-72-149-67.compute-1.amazonaws.com)
2024-04-25 18:29:31 +0200remedan(~remedan@ip-78-102-118-253.bb.vodafone.cz)
2024-04-25 18:29:31 +0200steew(~steew@user/steew)
2024-04-25 18:29:31 +0200hiredman(~hiredman@frontier1.downey.family)
2024-04-25 18:29:31 +0200emergence(emergence@2607:5300:60:5910:dcad:beff:feef:5bc)
2024-04-25 18:29:31 +0200quintasan(~quassel@quintasan.pl)
2024-04-25 18:29:31 +0200finsternis(~X@23.226.237.192)
2024-04-25 18:29:31 +0200pikajude(~jude@149.28.207.64)
2024-04-25 18:29:31 +0200aku(~aku@65.108.245.241)
2024-04-25 18:29:31 +0200noctux(~noctux@user/noctux)
2024-04-25 18:29:31 +0200connrs(~connrs@user/connrs)
2024-04-25 18:29:31 +0200davetapley(sid666@id-666.uxbridge.irccloud.com)
2024-04-25 18:29:31 +0200jjhoo(~jahakala@user/jjhoo)
2024-04-25 18:29:31 +0200pounce(~pounce@user/cute/pounce)
2024-04-25 18:29:31 +0200mustafa(sid502723@rockylinux/releng/mustafa)
2024-04-25 18:29:31 +0200shachaf(~shachaf@user/shachaf)
2024-04-25 18:29:31 +0200xnyhps(~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288)
2024-04-25 18:29:31 +0200spider(spider@tilde.cafe)
2024-04-25 18:29:31 +0200albet70(~xxx@2400:8902::f03c:92ff:fe60:98d8)
2024-04-25 18:29:31 +0200dragestil(~znc@user/dragestil)
2024-04-25 18:29:31 +0200tstat_(~tstat@user/tstat)
2024-04-25 18:29:31 +0200Aleksejs(~Aleksejs@107.170.21.106)
2024-04-25 18:29:31 +0200dfordvm(~dfordivam@160.16.87.223.v6.sakura.ne.jp)
2024-04-25 18:29:31 +0200xelxebar(~xelxebar@wilsonb.com)
2024-04-25 18:29:31 +0200ent(entgod@kapsi.fi)
2024-04-25 18:29:31 +0200piele(~piele@tbonesteak.creativeserver.net)
2024-04-25 18:33:26 +0200waleee(~waleee@m83-185-32-15.cust.tele2.se)
2024-04-25 18:33:26 +0200Sgeo(~Sgeo@user/sgeo)
2024-04-25 18:33:26 +0200tri(~tri@ool-18bbef1a.static.optonline.net)
2024-04-25 18:33:26 +0200mcksp(~mcksp@host2.98.gci-net.pl)
2024-04-25 18:33:26 +0200k_hachig(~k_hachig@ipagstaticip-b4f1257d-69a8-678e-1ff6-80999a2f9589.sdsl.bell.ca)
2024-04-25 18:33:26 +0200tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-04-25 18:33:26 +0200rosco(rosco@gateway/vpn/airvpn/rosco)
2024-04-25 18:33:26 +0200ChaiTRex(~ChaiTRex@user/chaitrex)
2024-04-25 18:33:26 +0200destituion(~destituio@2a02:2121:340:2456:fffe:d0f:7737:dd1)
2024-04-25 18:33:26 +0200sp1ff(~user@c-24-21-45-157.hsd1.wa.comcast.net)
2024-04-25 18:33:26 +0200pastly(~pastly@gateway/tor-sasl/pastly)
2024-04-25 18:33:26 +0200ocra8(ocra8@user/ocra8)
2024-04-25 18:33:26 +0200qqq(~qqq@92.43.167.61)
2024-04-25 18:33:26 +0200berberman(~berberman@user/berberman)
2024-04-25 18:33:26 +0200yeitrafferin(~user@2a04:4540:7213:4d00:b9b0:d2b9:e58a:8d24)
2024-04-25 18:33:26 +0200Lord_of_Life(~Lord@user/lord-of-life/x-2819915)
2024-04-25 18:33:26 +0200sawilagar(~sawilagar@user/sawilagar)
2024-04-25 18:33:26 +0200ph88(~ph88@ip5b403f30.dynamic.kabel-deutschland.de)
2024-04-25 18:33:26 +0200[Leary](~Leary]@user/Leary/x-0910699)
2024-04-25 18:33:26 +0200machinedgod(~machinedg@d173-183-246-216.abhsia.telus.net)
2024-04-25 18:33:26 +0200L29Ah(~L29Ah@wikipedia/L29Ah)
2024-04-25 18:33:26 +0200sord937(~sord937@gateway/tor-sasl/sord937)
2024-04-25 18:33:26 +0200oo_miguel(~Thunderbi@78-11-181-16.static.ip.netia.com.pl)
2024-04-25 18:33:26 +0200danso_o(~danso@user/danso)
2024-04-25 18:33:26 +0200acidjnk(~acidjnk@p200300d6e714dc7109d5fea24ae1df5e.dip0.t-ipconnect.de)
2024-04-25 18:33:26 +0200takuan(~takuan@178-116-218-225.access.telenet.be)
2024-04-25 18:33:26 +0200michalz(~michalz@185.246.207.218)
2024-04-25 18:33:26 +0200foul_owl(~kerry@185.219.141.160)
2024-04-25 18:33:26 +0200aforemny(~aforemny@i59F516E4.versanet.de)
2024-04-25 18:33:26 +0200Inst(~Inst@user/Inst)
2024-04-25 18:33:26 +0200td_(~td@i5387092A.versanet.de)
2024-04-25 18:33:26 +0200adanwan(~adanwan@gateway/tor-sasl/adanwan)
2024-04-25 18:33:26 +0200philopsos(~caecilius@user/philopsos)
2024-04-25 18:33:26 +0200chiselfuse(~chiselfus@user/chiselfuse)
2024-04-25 18:33:26 +0200cyphase(~cyphase@user/cyphase)
2024-04-25 18:33:26 +0200bollu(~bollu@159.65.151.13)
2024-04-25 18:33:26 +0200pavonia(~user@user/siracusa)
2024-04-25 18:33:26 +0200ec(~ec@gateway/tor-sasl/ec)
2024-04-25 18:33:26 +0200Luj(~Luj@2a01:e0a:5f9:9681:627d:73c1:73b3:2561)
2024-04-25 18:33:26 +0200mei(~mei@user/mei)
2024-04-25 18:33:26 +0200califax(~califax@user/califx)
2024-04-25 18:33:26 +0200noumenon(~noumenon@113.51-175-156.customer.lyse.net)
2024-04-25 18:33:26 +0200notzmv(~daniel@user/notzmv)
2024-04-25 18:33:26 +0200hueso(~root@user/hueso)
2024-04-25 18:33:26 +0200ystael(~ystael@user/ystael)
2024-04-25 18:33:26 +0200koz(~koz@121.99.240.58)
2024-04-25 18:33:26 +0200euphores(~SASL_euph@user/euphores)
2024-04-25 18:33:26 +0200stiell_(~stiell@gateway/tor-sasl/stiell)
2024-04-25 18:33:26 +0200mulk(~mulk@p5b112e4a.dip0.t-ipconnect.de)
2024-04-25 18:33:26 +0200hughjfchen(~hughjfche@vmi556545.contaboserver.net)
2024-04-25 18:33:26 +0200Patternmaster(~georg@user/Patternmaster)
2024-04-25 18:33:26 +0200tolt(~weechat-h@li219-154.members.linode.com)
2024-04-25 18:33:26 +0200_________(~nobody@user/noodly)
2024-04-25 18:33:26 +0200catties(~catties@user/meow/catties)
2024-04-25 18:33:26 +0200SteelBlueSilk(~SteelBlue@user/SteelBlueSilk)
2024-04-25 18:33:26 +0200driib(~driib@vmi931078.contaboserver.net)
2024-04-25 18:33:26 +0200JamesMowery(~JamesMowe@ip98-171-80-211.ph.ph.cox.net)
2024-04-25 18:33:26 +0200FragByte(~christian@user/fragbyte)
2024-04-25 18:33:26 +0200nschoe(~nschoe@2a01:e0a:8e:a190:f3a1:c501:e8bd:2571)
2024-04-25 18:33:26 +0200Benzi-Junior(~BenziJuni@232-148-209-31.dynamic.hringdu.is)
2024-04-25 18:33:26 +0200tabemann_(~tabemann@2600:1700:7990:24e0:42f1:a891:a658:f99d)
2024-04-25 18:33:26 +0200tt12310(~tt1231@2603:6010:8700:4a81:219f:50d3:618a:a6ee)
2024-04-25 18:33:26 +0200petrichor(~znc-user@user/petrichor)
2024-04-25 18:33:26 +0200tv(~tv@user/tv)
2024-04-25 18:33:26 +0200xsarnik(xsarnik@lounge.fi.muni.cz)
2024-04-25 18:33:26 +0200xstill_(xstill@fimu/xstill)
2024-04-25 18:33:26 +0200chexum(~quassel@gateway/tor-sasl/chexum)
2024-04-25 18:33:26 +0200infinity0(~infinity0@pwned.gg)
2024-04-25 18:33:26 +0200sprout(~quassel@84-80-106-227.fixed.kpn.net)
2024-04-25 18:33:26 +0200FinnElija(~finn_elij@user/finn-elija/x-0085643)
2024-04-25 18:33:26 +0200puke(~puke@user/puke)
2024-04-25 18:33:26 +0200manwithluck(manwithluc@gateway/vpn/protonvpn/manwithluck)
2024-04-25 18:33:26 +0200ncf(~n@monade.li)
2024-04-25 18:33:26 +0200superbil(~superbil@1-34-176-171.hinet-ip.hinet.net)
2024-04-25 18:33:26 +0200dtman34(~dtman34@2601:447:d001:ed50:e2b0:b15b:8890:6869)
2024-04-25 18:33:26 +0200jle`(~jle`@2603:8001:3b02:84d4:99e7:4463:681a:66ac)
2024-04-25 18:33:26 +0200leah2(~leah@vuxu.org)
2024-04-25 18:33:26 +0200dunj3(~dunj3@kingdread.de)
2024-04-25 18:33:26 +0200kritzefitz(~kritzefit@debian/kritzefitz)
2024-04-25 18:33:26 +0200zlqrvx(~zlqrvx@user/zlqrvx)
2024-04-25 18:33:26 +0200tertek(~tertek@user/tertek)
2024-04-25 18:33:26 +0200anon1123_(~anon1123@2a02:ab88:282:b00:da3a:ddff:fe3a:947c)
2024-04-25 18:33:26 +0200TheCoffeMaker(~TheCoffeM@user/thecoffemaker)
2024-04-25 18:33:26 +0200bwe(~bwe@2a01:4f8:1c1c:4878::2)
2024-04-25 18:33:26 +0200zer0bitz(~zer0bitz@user/zer0bitz)
2024-04-25 18:33:26 +0200hc(~hc@mail.hce.li)
2024-04-25 18:33:26 +0200Maxdamantus(~Maxdamant@user/maxdamantus)
2024-04-25 18:33:26 +0200Miroboru(~myrvoll@178-164-114.82.3p.ntebredband.no)
2024-04-25 18:33:26 +0200Feuermagier(~Feuermagi@user/feuermagier)
2024-04-25 18:33:26 +0200xigua(~xigua@user/xigua)
2024-04-25 18:33:26 +0200JimL(~quassel@89.162.16.26)
2024-04-25 18:33:26 +0200ridcully(~ridcully@p508ac2b4.dip0.t-ipconnect.de)
2024-04-25 18:33:26 +0200iteratee(~kyle@162.218.222.207)
2024-04-25 18:33:26 +0200dyniec(~dyniec@dybiec.info)
2024-04-25 18:33:26 +0200_d0t(~{-d0t-}@user/-d0t-/x-7915216)
2024-04-25 18:33:26 +0200dostoyevsky2(~sck@user/dostoyevsky2)
2024-04-25 18:33:26 +0200mrmr1553343(~mrmr@user/mrmr)
2024-04-25 18:33:26 +0200m1dnight(~christoph@82.146.125.185)
2024-04-25 18:33:26 +0200terrorjack(~terrorjac@2a01:4f8:c17:87f8::)
2024-04-25 18:33:26 +0200op_4(~tslil@user/op-4/x-9116473)
2024-04-25 18:33:27 +0200Xe(~cadey@perl/impostor/xe)
2024-04-25 18:33:27 +0200TonyStone(~TonyStone@user/TonyStone)
2024-04-25 18:33:27 +0200sukbeom(~sukbeom@121.172.255.83)
2024-04-25 18:33:27 +0200Ranhir(~Ranhir@157.97.53.139)
2024-04-25 18:33:27 +0200AlexNoo(~AlexNoo@178.34.161.189)
2024-04-25 18:33:27 +0200monochrom(trebla@216.138.220.146)
2024-04-25 18:33:27 +0200echoreply(~echoreply@45.32.163.16)
2024-04-25 18:33:27 +0200V(~v@ircpuzzles/2022/april/winner/V)
2024-04-25 18:33:27 +0200sudden(~cat@user/sudden)
2024-04-25 18:33:27 +0200peutri(~peutri@bobo.desast.re)
2024-04-25 18:33:27 +0200lyxia(~lyxia@poisson.chat)
2024-04-25 18:33:27 +0200Athas(athas@sigkill.dk)
2024-04-25 18:33:27 +0200Etabeta1(~Etabeta1@user/meow/Etabeta1)
2024-04-25 18:33:27 +0200troydm(~troydm@user/troydm)
2024-04-25 18:33:27 +0200cawfee(~root@2406:3003:2077:1c50::babe)
2024-04-25 18:33:27 +0200Arsen(arsen@gentoo/developer/managarm.dev.Arsen)
2024-04-25 18:33:27 +0200dolio(~dolio@130.44.134.54)
2024-04-25 18:33:27 +0200bairyn(~bairyn@50.250.232.19)
2024-04-25 18:33:27 +0200haskellbridge(~haskellbr@69.135.3.34)
2024-04-25 18:33:27 +0200Fijxu(~Fijxu@user/fijxu)
2024-04-25 18:33:27 +0200tdammers(~tdammers@41-138-178-143.ftth.glasoperator.nl)
2024-04-25 18:33:27 +0200vgtw(~vgtw@user/vgtw)
2024-04-25 18:33:27 +0200int-e(~noone@int-e.eu)
2024-04-25 18:33:27 +0200forell_(~forell@host-178-216-90-220.sta.tvknaszapraca.pl)
2024-04-25 18:33:27 +0200biberu(~biberu@user/biberu)
2024-04-25 18:33:27 +0200igemnace(~igemnace@user/igemnace)
2024-04-25 18:33:27 +0200erisco(~erisco@d24-141-66-165.home.cgocable.net)
2024-04-25 18:33:27 +0200tomku|two(~tomku@user/tomku)
2024-04-25 18:33:27 +0200Me-me(~me-me@user/me-me)
2024-04-25 18:33:27 +0200it_(~quassel@v2202212189510211193.supersrv.de)
2024-04-25 18:33:27 +0200s4msung(~s4msung@user/s4msung)
2024-04-25 18:33:27 +0200sshine(~simon@zhen.mechanicus.xyz)
2024-04-25 18:33:27 +0200Philonous(~Philonous@user/philonous)
2024-04-25 18:33:27 +0200todi(~todi@p57803331.dip0.t-ipconnect.de)
2024-04-25 18:33:27 +0200malte(~malte@mal.tc)
2024-04-25 18:33:27 +0200CATS(apic@brezn3.muc.ccc.de)
2024-04-25 18:33:27 +0200caubert(~caubert@user/caubert)
2024-04-25 18:33:27 +0200YuutaW(~YuutaW@mail.yuuta.moe)
2024-04-25 18:33:27 +0200sam113101(~sam@24.157.253.231)
2024-04-25 18:33:27 +0200Noinia(~Frank@77-162-168-71.fixed.kpn.net)
2024-04-25 18:33:27 +0200silver.libera.chat+v haskellbridge
2024-04-25 18:33:27 +0200Rodney_(~Rodney@176.254.244.83)
2024-04-25 18:33:27 +0200remmie(ianremsen@tilde.team)
2024-04-25 18:33:27 +0200orcus(~orcus@mail.brprice.uk)
2024-04-25 18:33:27 +0200dispater(~dispater@mail.brprice.uk)
2024-04-25 18:33:27 +0200motherfsck(~motherfsc@user/motherfsck)
2024-04-25 18:33:27 +0200esph(~weechat@user/esph)
2024-04-25 18:33:27 +0200RMSBach(~guygastin@137.184.131.156)
2024-04-25 18:33:27 +0200constxd(~constxd@user/constxd)
2024-04-25 18:33:27 +0200sgarcia(sgarcia@swarm.znchost.com)
2024-04-25 18:33:27 +0200gabiruh(~gabiruh@vps19177.publiccloud.com.br)
2024-04-25 18:33:27 +0200Vajb(~Vajb@85-76-14-24-nat.elisa-mobile.fi)
2024-04-25 18:33:27 +0200systemfault(sid267009@about/typescript/member/systemfault)
2024-04-25 18:33:27 +0200swistak(~swistak@185.21.216.141)
2024-04-25 18:33:27 +0200img(~img@user/img)
2024-04-25 18:33:27 +0200delyan_(sid523379@id-523379.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200Flow(~none@gentoo/developer/flow)
2024-04-25 18:33:27 +0200YoungFrog(~youngfrog@39.129-180-91.adsl-dyn.isp.belgacom.be)
2024-04-25 18:33:27 +0200arahael(~arahael@119-18-1-21.771201.syd.nbn.aussiebb.net)
2024-04-25 18:33:27 +0200Franciman(~Franciman@mx1.fracta.dev)
2024-04-25 18:33:27 +0200visilii(~visilii@213.24.125.229)
2024-04-25 18:33:27 +0200vulpine(xfnw@user/meow/xfnw)
2024-04-25 18:33:27 +0200cross(~cross@spitfire.i.gajendra.net)
2024-04-25 18:33:27 +0200anpad(~pandeyan@user/anpad)
2024-04-25 18:33:27 +0200juri_(~juri@implicitcad.org)
2024-04-25 18:33:27 +0200doyougnu(~doyougnu@45.46.170.68)
2024-04-25 18:33:27 +0200yaroot(~yaroot@p2987138-ipngn7501souka.saitama.ocn.ne.jp)
2024-04-25 18:33:27 +0200johnw(~johnw@69.62.242.138)
2024-04-25 18:33:27 +0200Moyst_(~moyst@user/moyst)
2024-04-25 18:33:27 +0200tinjamin(~tinjamin@banshee.h4x0r.space)
2024-04-25 18:33:27 +0200samhh_(7569f027cf@2a03:6000:1812:100::e4)
2024-04-25 18:33:27 +0200jkoshy(99b9359beb@user/jkoshy)
2024-04-25 18:33:27 +0200henrytill(e0180937c3@2a03:6000:1812:100::e8c)
2024-04-25 18:33:27 +0200jakzale(6291399afa@user/jakzale)
2024-04-25 18:33:27 +0200jleightcap(7bc4014b62@user/jleightcap)
2024-04-25 18:33:27 +0200chaitlatte0(ea29c0bb16@user/chaitlatte0)
2024-04-25 18:33:27 +0200cpli(77fc530071@2a03:6000:1812:100::252)
2024-04-25 18:33:27 +0200rselim(ce261f06ff@user/milesrout)
2024-04-25 18:33:27 +0200fvr(ef3e56ca8b@2a03:6000:1812:100::3c4)
2024-04-25 18:33:27 +0200sus(1b7af6299f@user/zeromomentum)
2024-04-25 18:33:27 +0200sm2n(ae95cb1267@user/sm2n)
2024-04-25 18:33:27 +0200ymherklotz(cb2c9cfbdd@2a03:6000:1812:100::29a)
2024-04-25 18:33:27 +0200duncan(c6181279e3@user/meow/duncan)
2024-04-25 18:33:27 +0200b0o(0e4a0bf4c9@2a03:6000:1812:100::1bf)
2024-04-25 18:33:27 +0200samhh(7569f027cf@2a03:6000:1812:100::e4)
2024-04-25 18:33:27 +0200ursa-major(114efe6c39@2a03:6000:1812:100::11f3)
2024-04-25 18:33:27 +0200shreyasminocha(51fdc93eda@user/shreyasminocha)
2024-04-25 18:33:27 +0200akspecs(00cc8321af@sourcehut/user/akspecs)
2024-04-25 18:33:27 +0200brettgilio(a35ba67324@2a03:6000:1812:100::260)
2024-04-25 18:33:27 +0200jmcantrell(644f1bed9a@user/jmcantrell)
2024-04-25 18:33:27 +0200whereiseveryone(206ba86c98@2a03:6000:1812:100::2e4)
2024-04-25 18:33:27 +0200JoelMcCracken(5ea8252fbb@2a03:6000:1812:100::10e3)
2024-04-25 18:33:27 +0200Ankhers(e99e97ef8e@2a03:6000:1812:100::2a2)
2024-04-25 18:33:27 +0200kuruczgy(55b66dd3ae@2a03:6000:1812:100::127f)
2024-04-25 18:33:27 +0200aniketd(32aa4844cd@2a03:6000:1812:100::dcb)
2024-04-25 18:33:27 +0200arcadewise(52968ed80d@2a03:6000:1812:100::3df)
2024-04-25 18:33:27 +0200fn_lumi(3d621153a5@2a03:6000:1812:100::df7)
2024-04-25 18:33:27 +0200probie(cc0b34050a@user/probie)
2024-04-25 18:33:27 +0200fluffyballoon(45ce440a48@2a03:6000:1812:100::e2)
2024-04-25 18:33:27 +0200evanrelf(3addc196af@2a03:6000:1812:100::f0)
2024-04-25 18:33:27 +0200pmk(6afe4476a1@2a03:6000:1812:100::26d)
2024-04-25 18:33:27 +0200fgaz_(1ff9197ed6@2a03:6000:1812:100::11ea)
2024-04-25 18:33:27 +0200eso(a0662dfd5e@2a03:6000:1812:100::1266)
2024-04-25 18:33:27 +0200raghavgururajan(ea769b8000@user/raghavgururajan)
2024-04-25 18:33:27 +0200ggb(a62ffbaf4f@2a03:6000:1812:100::3ac)
2024-04-25 18:33:27 +0200lane(809450f172@2a03:6000:1812:100::1300)
2024-04-25 18:33:27 +0200filwisher(2e6936c793@2a03:6000:1812:100::170)
2024-04-25 18:33:27 +0200lukec(9dfd4d094e@2a03:6000:1812:100::10e)
2024-04-25 18:33:27 +0200bsima1(9d7e39c8ad@2a03:6000:1812:100::dd)
2024-04-25 18:33:27 +0200GoldsteinQ(~goldstein@goldstein.rs)
2024-04-25 18:33:27 +0200wagle(~wagle@quassel.wagle.io)
2024-04-25 18:33:27 +0200amjoseph(~amjoseph@static-198-44-128-146.cust.tzulo.com)
2024-04-25 18:33:27 +0200hugo-(znc@quicksilver.lysator.liu.se)
2024-04-25 18:33:27 +0200sajith(~sajith@user/sajith)
2024-04-25 18:33:27 +0200nonzen(~nonzen@user/nonzen)
2024-04-25 18:33:27 +0200benjaminl(~benjaminl@user/benjaminl)
2024-04-25 18:33:27 +0200meinside(uid24933@id-24933.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200hamishmack(sid389057@id-389057.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200tomboy64(~tomboy64@user/tomboy64)
2024-04-25 18:33:27 +0200mikko(~mikko@user/mikko)
2024-04-25 18:33:27 +0200wz1000(~zubin@static.11.113.47.78.clients.your-server.de)
2024-04-25 18:33:27 +0200flocks(~flocks@134.122.90.60)
2024-04-25 18:33:27 +0200andjjj23(~irc@107.170.228.47)
2024-04-25 18:33:27 +0200_xor(~xor@ip-208-102-243-175.dynamic.fuse.net)
2024-04-25 18:33:27 +0200drdo(~drdo@bl5-29-74.dsl.telepac.pt)
2024-04-25 18:33:27 +0200mniip_(mniip@libera/staff/mniip)
2024-04-25 18:33:27 +0200barrucadu(~barrucadu@carcosa.barrucadu.co.uk)
2024-04-25 18:33:27 +0200migas97(~migas@static.140.65.63.178.clients.your-server.de)
2024-04-25 18:33:27 +0200masterbuilder(~quassel@user/masterbuilder)
2024-04-25 18:33:27 +0200byte(~byte@149.28.222.189)
2024-04-25 18:33:27 +0200abrar(~abrar@pool-72-78-199-167.phlapa.fios.verizon.net)
2024-04-25 18:33:27 +0200Batzy(~quassel@user/batzy)
2024-04-25 18:33:27 +0200MelMalik(ellenor@invictus.wa.us.umbrellix.net)
2024-04-25 18:33:27 +0200dmj`(sid72307@id-72307.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200conjunctive(sid433686@id-433686.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200integral(sid296274@user/integral)
2024-04-25 18:33:27 +0200chessai(sid225296@id-225296.lymington.irccloud.com)
2024-04-25 18:33:27 +0200sefidel(~sefidel@user/sefidel)
2024-04-25 18:33:27 +0200fr33domlover(~fr33domlo@towards.vision)
2024-04-25 18:33:27 +0200cayley5(~cayley5@user/phileasfogg)
2024-04-25 18:33:27 +0200micro(~micro@user/micro)
2024-04-25 18:33:27 +0200myme(~myme@2a01:799:d5c:5f00:1e69:7aff:feab:e7ae)
2024-04-25 18:33:27 +0200hammond(proscan@user/hammond2)
2024-04-25 18:33:27 +0200mesaoptimizer(~mesaoptim@user/PapuaHardyNet)
2024-04-25 18:33:27 +0200nurupo(~nurupo.ga@user/nurupo)
2024-04-25 18:33:27 +0200jrm(~jrm@user/jrm)
2024-04-25 18:33:27 +0200coldtom(~coldtom@coldrick.cc)
2024-04-25 18:33:27 +0200earthy(~arthurvl@2a02-a469-f5e2-1-83d2-ca43-57a2-dc81.fixed6.kpn.net)
2024-04-25 18:33:27 +0200nek0(~nek0@user/nek0)
2024-04-25 18:33:27 +0200diagprov(sid348783@user/diagprov)
2024-04-25 18:33:27 +0200snek(sid280155@id-280155.lymington.irccloud.com)
2024-04-25 18:33:27 +0200scav(sid309693@user/scav)
2024-04-25 18:33:27 +0200tritlo_(sid58727@id-58727.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200poscat0x04(~poscat@user/poscat)
2024-04-25 18:33:27 +0200hololeap(~quassel@user/hololeap)
2024-04-25 18:33:27 +0200yahb2(~yahb2@user/tomsmeding/bot/yahb2)
2024-04-25 18:33:27 +0200TMA(tma@twin.jikos.cz)
2024-04-25 18:33:27 +0200hovsater(sid499516@user/hovsater)
2024-04-25 18:33:27 +0200tomsmeding(~tomsmedin@static.21.109.88.23.clients.your-server.de)
2024-04-25 18:33:27 +0200fryguybob(~fryguybob@024-094-050-022.inf.spectrum.com)
2024-04-25 18:33:27 +0200Sciencentistguy(~sciencent@hacksoc/ordinary-member)
2024-04-25 18:33:27 +0200pieguy128(~pieguy128@bras-base-mtrlpq5031w-grc-47-67-70-101-170.dsl.bell.ca)
2024-04-25 18:33:27 +0200sm(~znc@plaintextaccounting/sm)
2024-04-25 18:33:27 +0200sa(sid1055@id-1055.tinside.irccloud.com)
2024-04-25 18:33:27 +0200jackdk(sid373013@cssa/jackdk)
2024-04-25 18:33:27 +0200T_S_____(sid501726@id-501726.uxbridge.irccloud.com)
2024-04-25 18:33:27 +0200Kamuela(sid111576@id-111576.tinside.irccloud.com)
2024-04-25 18:33:27 +0200gawen(~gawen@user/gawen)
2024-04-25 18:33:27 +0200byorgey(~byorgey@user/byorgey)
2024-04-25 18:33:27 +0200red-snail(~snail@static.151.210.203.116.clients.your-server.de)
2024-04-25 18:33:27 +0200nisstyre(wes@user/nisstyre)
2024-04-25 18:33:27 +0200lambdap2371(~lambdap@static.167.190.119.168.clients.your-server.de)
2024-04-25 18:33:27 +0200df(~ben@justworks.xyz)
2024-04-25 18:33:27 +0200turlando(~turlando@user/turlando)
2024-04-25 18:33:27 +0200jakesyl_____(sid56879@id-56879.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200buhman(sid411355@user/buhman)
2024-04-25 18:33:27 +0200Tisoxin(~Ikosit@user/ikosit)
2024-04-25 18:33:27 +0200dminuoso(~weechat@user/dminuoso)
2024-04-25 18:33:27 +0200liskin(~liskin@xmonad/liskin)
2024-04-25 18:33:27 +0200krei-se(~krei-se@p5085d49b.dip0.t-ipconnect.de)
2024-04-25 18:33:27 +0200nitrix(~nitrix@user/meow/nitrix)
2024-04-25 18:33:27 +0200dibblego(~dibblego@haskell/developer/dibblego)
2024-04-25 18:33:27 +0200silver.libera.chat+v yahb2
2024-04-25 18:33:27 +0200thaumavorio(~thaumavor@thaumavor.io)
2024-04-25 18:33:27 +0200lbseale(~quassel@user/ep1ctetus)
2024-04-25 18:33:27 +0200darkling(~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space)
2024-04-25 18:33:27 +0200mrvdb(~mrvdb@2001:19f0:5000:8582:5400:ff:fe07:3df5)
2024-04-25 18:33:27 +0200pdw(~user@215.156.62.185.bridgefibre.net)
2024-04-25 18:33:27 +0200Fischmiep(~Fischmiep@user/Fischmiep)
2024-04-25 18:33:27 +0200TimWolla(~timwolla@2a01:4f8:150:6153:beef::6667)
2024-04-25 18:33:27 +0200dontdieych_(~alarm@132.226.169.184)
2024-04-25 18:33:27 +0200heartbur1(~gass@81.4.123.134)
2024-04-25 18:33:27 +0200ian_(~ian@matrix.chaos.earth.li)
2024-04-25 18:33:27 +0200Clint(~Clint@user/clint)
2024-04-25 18:33:27 +0200andreas808(andreas303@is.drunk.and.ready-to.party)
2024-04-25 18:33:27 +0200defanor-(~defanor@tart.uberspace.net)
2024-04-25 18:33:27 +0200smalltalkman(uid545680@id-545680.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200geekosaur(sid609282@xmonad/geekosaur)
2024-04-25 18:33:27 +0200edmundnoble_(sid229620@id-229620.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200Unode(~Unode@fg-ext-220.embl.de)
2024-04-25 18:33:27 +0200bgamari(~bgamari@64.223.226.84)
2024-04-25 18:33:27 +0200edwtjo(~edwtjo@fsf/member/edwtjo)
2024-04-25 18:33:27 +0200rncwnd(~quassel@2a01:4f8:221:27c6::1)
2024-04-25 18:33:27 +0200gabriel_sevecek(~gabriel@188-167-229-200.dynamic.chello.sk)
2024-04-25 18:33:27 +0200kronicmage(~kronicmag@neotame.csclub.uwaterloo.ca)
2024-04-25 18:33:27 +0200h2t(~h2t@user/h2t)
2024-04-25 18:33:27 +0200tinwood(~tinwood@canonical/tinwood)
2024-04-25 18:33:27 +0200cln_(cln@wtf.cx)
2024-04-25 18:33:27 +0200m5zs7k(aquares@web10.mydevil.net)
2024-04-25 18:33:27 +0200fiddlerw-(~fiddlerwo@user/fiddlerwoaroof)
2024-04-25 18:33:27 +0200lockna_(~lockna@static.139.16.130.94.clients.your-server.de)
2024-04-25 18:33:27 +0200bw_____(sid2730@id-2730.ilkley.irccloud.com)
2024-04-25 18:33:27 +0200stefan-_(~cri@42dots.de)
2024-04-25 18:33:27 +0200tnks(sid412124@id-412124.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200SethTisue(sid14912@id-14912.ilkley.irccloud.com)
2024-04-25 18:33:27 +0200PHO`_(~pho@akari.cielonegro.org)
2024-04-25 18:33:27 +0200hexeme(~hexeme@user/hexeme)
2024-04-25 18:33:27 +0200lally(sid388228@id-388228.uxbridge.irccloud.com)
2024-04-25 18:33:27 +0200bradparker(sid262931@id-262931.uxbridge.irccloud.com)
2024-04-25 18:33:27 +0200jmct(sid160793@id-160793.tinside.irccloud.com)
2024-04-25 18:33:27 +0200alinab(sid468903@id-468903.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200remexre(~remexre@user/remexre)
2024-04-25 18:33:27 +0200mjrosenb(~mjrosenb@pool-96-232-177-77.nycmny.fios.verizon.net)
2024-04-25 18:33:27 +0200inedia(~irc@2600:3c00:e000:287::1)
2024-04-25 18:33:27 +0200joeyh(joeyh@kitenet.net)
2024-04-25 18:33:27 +0200teqwve(teqwve@static.141.38.201.195.clients.your-server.de)
2024-04-25 18:33:27 +0200Vq(~vq@81-231-76-8-no600.tbcn.telia.com)
2024-04-25 18:33:27 +0200MironZ(~MironZ@nat-infra.ehlab.uk)
2024-04-25 18:33:27 +0200rembo10(~rembo10@main.remulis.com)
2024-04-25 18:33:27 +0200Angelz(Angelz@user/angelz)
2024-04-25 18:33:27 +0200Teacup(~teacup@user/teacup)
2024-04-25 18:33:27 +0200ames(~amelia@offtopia/offtopian/amelia)
2024-04-25 18:33:27 +0200mauke(~mauke@user/mauke)
2024-04-25 18:33:27 +0200mjacob(~mjacob@adrastea.uberspace.de)
2024-04-25 18:33:27 +0200lisq(~quassel@lis.moe)
2024-04-25 18:33:27 +0200nadja(~dequbed@banana-new.kilobyte22.de)
2024-04-25 18:33:27 +0200hadronized(~phaazon@2001:41d0:a:fe76::1)
2024-04-25 18:33:27 +0200tureba(~tureba@tureba.org)
2024-04-25 18:33:27 +0200mcfrdy(~mcfrdy@user/mcfrdy)
2024-04-25 18:33:27 +0200nshepperd(nshepperd@2600:3c03::f03c:92ff:fe28:92c9)
2024-04-25 18:33:27 +0200cptaffe(~cptaffe@user/cptaffe)
2024-04-25 18:33:27 +0200lexi-lambda(sid92601@id-92601.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200urdh(~urdh@user/urdh)
2024-04-25 18:33:27 +0200SanchayanMaity(sid478177@id-478177.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200b20n(sid115913@id-115913.uxbridge.irccloud.com)
2024-04-25 18:33:27 +0200carter(sid14827@id-14827.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200PotatoGim(sid99505@id-99505.lymington.irccloud.com)
2024-04-25 18:33:27 +0200idnar(sid12240@debian/mithrandi)
2024-04-25 18:33:27 +0200dy(sid3438@user/dy)
2024-04-25 18:33:27 +0200bjs(sid190364@user/bjs)
2024-04-25 18:33:27 +0200degraafk(sid71464@id-71464.lymington.irccloud.com)
2024-04-25 18:33:27 +0200CalimeroTeknik(~calimero@user/calimeroteknik)
2024-04-25 18:33:27 +0200Putonlalla(~Putonlall@it-cyan.it.jyu.fi)
2024-04-25 18:33:27 +0200lambdabot(~lambdabot@haskell/bot/lambdabot)
2024-04-25 18:33:27 +0200gaze__(sid387101@id-387101.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200dumptruckman(~dumptruck@69-164-220-160.ip.linodeusercontent.com)
2024-04-25 18:33:27 +0200[_________](~oos95GWG@user/oos95GWG)
2024-04-25 18:33:27 +0200polux(~polux@51-15-169-172.rev.poneytelecom.eu)
2024-04-25 18:33:27 +0200sympt(~sympt@user/sympt)
2024-04-25 18:33:27 +0200APic(apic@apic.name)
2024-04-25 18:33:27 +0200canta(~canta@user/canta)
2024-04-25 18:33:27 +0200dfg(~dfg@user/dfg)
2024-04-25 18:33:27 +0200edm(sid147314@id-147314.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200edwardk(sid47016@haskell/developer/edwardk)
2024-04-25 18:33:27 +0200Fangs(sid141280@id-141280.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200NemesisD(sid24071@id-24071.lymington.irccloud.com)
2024-04-25 18:33:27 +0200riatre(~quassel@2001:310:6000:f::5198:1)
2024-04-25 18:33:27 +0200sa1(sid7690@id-7690.ilkley.irccloud.com)
2024-04-25 18:33:27 +0200rune_(sid21167@id-21167.ilkley.irccloud.com)
2024-04-25 18:33:27 +0200taktoa[c](sid282096@id-282096.tinside.irccloud.com)
2024-04-25 18:33:27 +0200jonrh(sid5185@id-5185.ilkley.irccloud.com)
2024-04-25 18:33:27 +0200deriamis(deriamis@ec2-54-187-167-69.us-west-2.compute.amazonaws.com)
2024-04-25 18:33:27 +0200alanz(sid110616@id-110616.uxbridge.irccloud.com)
2024-04-25 18:33:27 +0200amir(sid22336@user/amir)
2024-04-25 18:33:27 +0200Boarders___(sid425905@id-425905.lymington.irccloud.com)
2024-04-25 18:33:27 +0200aspen(sid449115@id-449115.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200c_wraith(~c_wraith@adjoint.us)
2024-04-25 18:33:27 +0200silver.libera.chat+v lambdabot
2024-04-25 18:33:27 +0200tomjaguarpaw(~tom@172-104-25-182.ip.linodeusercontent.com)
2024-04-25 18:33:27 +0200landonf(landonf@mac68k.info)
2024-04-25 18:33:27 +0200nckx(nckx@libera/staff/owl/nckx)
2024-04-25 18:33:27 +0200xerox(~edi@user/edi)
2024-04-25 18:33:27 +0200farn_(~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505)
2024-04-25 18:33:27 +0200ricardo_2(~ricardo@217.70.197.9)
2024-04-25 18:33:27 +0200koolazer(~koo@user/koolazer)
2024-04-25 18:33:27 +0200exarkun(~exarkun@user/exarkun)
2024-04-25 18:33:27 +0200eL_Bart0-(eL_Bart0@dietunichtguten.org)
2024-04-25 18:33:27 +0200energizer(~energizer@user/energizer)
2024-04-25 18:33:27 +0200gmc(sid58314@id-58314.ilkley.irccloud.com)
2024-04-25 18:33:27 +0200astra(sid289983@id-289983.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200shawwwn(sid6132@id-6132.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200mankyKitty(sid31287@id-31287.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200caasih(sid13241@id-13241.ilkley.irccloud.com)
2024-04-25 18:33:27 +0200mht-wtf(~mht@2a03:b0c0:3:e0::1e2:c001)
2024-04-25 18:33:27 +0200Dykam(Dykam@dykam.nl)
2024-04-25 18:33:27 +0200bah(~bah@l1.tel)
2024-04-25 18:33:27 +0200ringo___(~ringo@157.230.117.128)
2024-04-25 18:33:27 +0200ouroboros(~ouroboros@user/ouroboros)
2024-04-25 18:33:27 +0200Goodbye_Vincent(cyvahl@freakshells.net)
2024-04-25 18:33:27 +0200disconnect3d(~disconnec@user/disconnect3d)
2024-04-25 18:33:27 +0200acro(~acro@user/acro)
2024-04-25 18:33:27 +0200davl(~davl@207.154.228.18)
2024-04-25 18:33:27 +0200kaol(~kaol@94-237-42-30.nl-ams1.upcloud.host)
2024-04-25 18:33:27 +0200litharge(litharge@libera/bot/litharge)
2024-04-25 18:33:27 +0200NiKaN(sid385034@id-385034.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200apache(apache2@anubis.0x90.dk)
2024-04-25 18:33:27 +0200Techcable(sid534393@user/Techcable)
2024-04-25 18:33:27 +0200jocke-l(jocke-l@a.x0.is)
2024-04-25 18:33:27 +0200sclv(sid39734@haskell/developer/sclv)
2024-04-25 18:33:27 +0200iphy(sid67735@user/iphy)
2024-04-25 18:33:27 +0200ProofTechnique_(sid79547@id-79547.ilkley.irccloud.com)
2024-04-25 18:33:27 +0200rubin55(sid175221@id-175221.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200natto(~natto@129.154.243.159)
2024-04-25 18:33:27 +0200aristid(sid1599@id-1599.uxbridge.irccloud.com)
2024-04-25 18:33:27 +0200JSharp(sid4580@user/JSharp)
2024-04-25 18:33:27 +0200drlkf(~drlkf@192.184.163.34.bc.googleusercontent.com)
2024-04-25 18:33:27 +0200SoF(~skius@user/skius)
2024-04-25 18:33:27 +0200hexology(~hexology@user/hexology)
2024-04-25 18:33:27 +0200stefan-__(~m-yh2rcc@42dots.de)
2024-04-25 18:33:27 +0200shane(~shane@ana.rch.ist)
2024-04-25 18:33:27 +0200pierrot(~pi@user/pierrot)
2024-04-25 18:33:27 +0200cjay(cjay@nerdbox.nerd2nerd.org)
2024-04-25 18:33:27 +0200Hecate(~mariposa@user/hecate)
2024-04-25 18:33:27 +0200kosmikus(~kosmikus@nullzig.kosmikus.org)
2024-04-25 18:33:27 +0200_0xa_(~user@2001:19f0:5001:2ba8:5400:1ff:feda:88fc)
2024-04-25 18:33:27 +0200Jon(jon@dow.land)
2024-04-25 18:33:27 +0200loonycyborg(loonycybor@wesnoth/developer/loonycyborg)
2024-04-25 18:33:27 +0200absence(torgeihe@hildring.pvv.ntnu.no)
2024-04-25 18:33:27 +0200noteness-(~noteness@user/noteness)
2024-04-25 18:33:27 +0200laman1(~laman@rego.ai)
2024-04-25 18:33:27 +0200xnbya2(~xnbya@2a01:4f8:c17:cbdd::1)
2024-04-25 18:33:27 +0200SrPx(sid108780@id-108780.uxbridge.irccloud.com)
2024-04-25 18:33:27 +0200beaky(~beaky@2a03:b0c0:0:1010::1e:a001)
2024-04-25 18:33:27 +0200patrl(~patrl@user/patrl)
2024-04-25 18:33:27 +0200acidsys(~crameleon@openSUSE/member/crameleon)
2024-04-25 18:33:27 +0200opqdonut(opqdonut@pseudo.fixme.fi)
2024-04-25 18:33:27 +0200rachelambda(~rachelamb@cust-95-80-25-71.csbnet.se)
2024-04-25 18:33:27 +0200krasjet(~krjst@2604:a880:800:c1::16b:8001)
2024-04-25 18:33:27 +0200institor(~henricus@user/institor)
2024-04-25 18:33:27 +0200immae(~immae@2a01:4f8:141:53e7::)
2024-04-25 18:33:27 +0200welterde(welterde@thinkbase.srv.welterde.de)
2024-04-25 18:33:27 +0200evertedsphere(sid434122@id-434122.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200mrmonday(~robert@what.i.hope.is.not.a.tabernaevagant.es)
2024-04-25 18:33:27 +0200bastelfreak(bastelfrea@libera/staff/VoxPupuli.bastelfreak)
2024-04-25 18:33:27 +0200bsima(~bsima@2604:a880:400:d0::19f1:7001)
2024-04-25 18:33:27 +0200davean(~davean@davean.sciesnet.net)
2024-04-25 18:33:27 +0200tamer(~tamer@user/tamer)
2024-04-25 18:33:27 +0200Hobbyboy(Hobbyboy@hobbyboy.co.uk)
2024-04-25 18:33:27 +0200lieven(~mal@ns2.wyrd.be)
2024-04-25 18:33:27 +0200mira(~aranea@wireguard/contributorcat/mira)
2024-04-25 18:33:27 +0200A_Dragon(A_D@libera/staff/dragon)
2024-04-25 18:33:27 +0200mmaruseacph2(~mihai@mihai.page)
2024-04-25 18:33:27 +0200yushyin(PYLyYfdKtk@mail.karif.server-speed.net)
2024-04-25 18:33:27 +0200cbarrett(sid192934@id-192934.helmsley.irccloud.com)
2024-04-25 18:33:27 +0200S11001001(sid42510@id-42510.ilkley.irccloud.com)
2024-04-25 18:33:27 +0200dsal(sid13060@id-13060.lymington.irccloud.com)
2024-04-25 18:33:27 +0200xacktm(xacktm@user/xacktm)
2024-04-25 18:33:27 +0200stilgart(~Christoph@chezlefab.net)
2024-04-25 18:33:27 +0200nrr_______(sid20938@id-20938.lymington.irccloud.com)
2024-04-25 18:33:27 +0200meooow(~meooow@165.232.184.169)
2024-04-25 18:33:27 +0200chymera(~chymera@ns1000526.ip-51-81-46.us)
2024-04-25 18:33:27 +0200haasn(sid579015@id-579015.hampstead.irccloud.com)
2024-04-25 18:33:27 +0200Logio(em@kapsi.fi)
2024-04-25 18:33:27 +0200totbwf(sid402332@id-402332.uxbridge.irccloud.com)
2024-04-25 18:33:27 +0200Deide(d0130db69a@user/deide)
2024-04-25 18:33:27 +0200ggVGc(~ggVGc@a.lowtech.earth)
2024-04-25 18:33:27 +0200nicole(ilbelkyr@libera/staff/ilbelkyr)
2024-04-25 18:33:27 +0200noctux1(Hfi6K5vcqP@user/noctux)
2024-04-25 18:33:27 +0200codedmart(codedmart@2600:3c01::f03c:92ff:fefe:8511)
2024-04-25 18:33:27 +0200arkeet(~arkeet@moriya.ca)
2024-04-25 18:33:27 +0200ChanServ(ChanServ@services.libera.chat)
2024-04-25 18:33:27 +0200silver.libera.chat+o ChanServ
2024-04-25 18:33:34 +0200causal(~eric@50.35.88.207)
2024-04-25 18:33:34 +0200rvalue(~rvalue@user/rvalue)
2024-04-25 18:33:34 +0200ski(~ski@ext-1-033.eduroam.chalmers.se)
2024-04-25 18:33:34 +0200Raito_Bezarius(~Raito@wireguard/tunneler/raito-bezarius)
2024-04-25 18:33:34 +0200end(~end@user/end/x-0094621)
2024-04-25 18:33:34 +0200jespada(~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net)
2024-04-25 18:33:34 +0200gentauro(~gentauro@user/gentauro)
2024-04-25 18:33:34 +0200dagit(~dagit@2001:558:6025:38:71c6:9d58:7252:8976)
2024-04-25 18:33:34 +0200kimiamania(~76637481@user/kimiamania)
2024-04-25 18:33:34 +0200fun-safe-math(~fun-safe-@24.21.106.247)
2024-04-25 18:33:34 +0200lockywolf(~lockywolf@public.lockywolf.net)
2024-04-25 18:33:34 +0200incertia(~incertia@209.122.137.252)
2024-04-25 18:33:34 +0200acarrico(~acarrico@dhcp-68-142-49-163.greenmountainaccess.net)
2024-04-25 18:33:34 +0200adamCS(~adamCS@ec2-34-207-160-255.compute-1.amazonaws.com)
2024-04-25 18:33:34 +0200koala_man(~vidar@157.146.251.23.bc.googleusercontent.com)
2024-04-25 18:33:34 +0200siers(~ij@user/ij)
2024-04-25 18:33:34 +0200wryish(~wryish@2605:4c40:119:efa3:0:727d:19eb:1)
2024-04-25 18:33:34 +0200[exa](~exa@user/exa/x-3587197)
2024-04-25 18:33:34 +0200eugenrh(~eugenrh@user/eugenrh)
2024-04-25 18:33:34 +0200Pozyomka(~pyon@user/pyon)
2024-04-25 18:33:34 +0200hook54321(sid149355@user/hook54321)
2024-04-25 18:33:34 +0200Pent(sid313808@id-313808.lymington.irccloud.com)
2024-04-25 18:33:34 +0200yandere(sid467876@id-467876.ilkley.irccloud.com)
2024-04-25 18:33:34 +0200adium(adium@user/adium)
2024-04-25 18:33:34 +0200statusbot(~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com)
2024-04-25 18:33:34 +0200Rembane(~Rembane@user/Rembane)
2024-04-25 18:33:35 +0200tired(~tired@user/tired)
2024-04-25 18:33:35 +0200robertm(robertm@lattice.rojoma.com)
2024-04-25 18:33:45 +0200haskellbridge(~haskellbr@69.135.3.34) (Excess Flood)
2024-04-25 18:33:55 +0200tri(~tri@ool-18bbef1a.static.optonline.net) (Ping timeout: 268 seconds)
2024-04-25 18:33:59 +0200Pixi(~Pixi@user/pixi) (Max SendQ exceeded)
2024-04-25 18:34:42 +0200Axman6(~Axman6@user/axman6)
2024-04-25 18:34:51 +0200yin(~yin@user/zero)
2024-04-25 18:34:56 +0200Square(~Square@user/square)
2024-04-25 18:34:59 +0200kimiamania(~76637481@user/kimiamania) (Max SendQ exceeded)
2024-04-25 18:35:02 +0200haskellbridge(~haskellbr@69.135.3.34)
2024-04-25 18:35:02 +0200ChanServ+v haskellbridge
2024-04-25 18:35:11 +0200Pixi(~Pixi@user/pixi)
2024-04-25 18:35:21 +0200kimiamania(~76637481@user/kimiamania)
2024-04-25 18:35:38 +0200Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)