Logs on 2024-11-16 (liberachat/#haskell)
| 00:04:21 | × | machinedgod quits (~machinedg@d108-173-18-100.abhsia.telus.net) (Ping timeout: 276 seconds) |
| 00:06:22 | × | acidjnk_new quits (~acidjnk@p200300d6e7283f96299656d59247024d.dip0.t-ipconnect.de) (Ping timeout: 272 seconds) |
| 00:07:35 | × | alexherbo2 quits (~alexherbo@2a02-8440-3216-94c7-2d28-c234-eb57-e02e.rev.sfr.net) (Remote host closed the connection) |
| 00:07:55 | → | alexherbo2 joins (~alexherbo@2a02-8440-3216-94c7-2d28-c234-eb57-e02e.rev.sfr.net) |
| 00:08:06 | × | j1n37 quits (~j1n37@li657-110.members.linode.com) (Changing host) |
| 00:08:06 | → | j1n37 joins (~j1n37@user/j1n37) |
| 00:12:27 | × | j1n37 quits (~j1n37@user/j1n37) (Quit: goodbye today) |
| 00:13:26 | → | ljdarj1 joins (~Thunderbi@user/ljdarj) |
| 00:14:44 | → | j1n37 joins (~j1n37@li657-110.members.linode.com) |
| 00:15:16 | × | j1n37 quits (~j1n37@li657-110.members.linode.com) (Changing host) |
| 00:15:16 | → | j1n37 joins (~j1n37@user/j1n37) |
| 00:16:03 | × | ljdarj quits (~Thunderbi@user/ljdarj) (Ping timeout: 276 seconds) |
| 00:16:03 | ljdarj1 | is now known as ljdarj |
| 00:16:13 | × | j1n37 quits (~j1n37@user/j1n37) (Client Quit) |
| 00:17:31 | × | Lord_of_Life quits (~Lord@user/lord-of-life/x-2819915) (Ping timeout: 244 seconds) |
| 00:19:17 | → | Lord_of_Life joins (~Lord@user/lord-of-life/x-2819915) |
| 00:19:54 | × | gvg quits (~dcd@user/gvg) (Ping timeout: 260 seconds) |
| 00:20:20 | → | rvalue- joins (~rvalue@user/rvalue) |
| 00:21:34 | × | rvalue quits (~rvalue@user/rvalue) (Ping timeout: 272 seconds) |
| 00:23:17 | → | j1n37 joins (j1n37@user/j1n37) |
| 00:26:26 | → | gvg joins (~dcd@user/gvg) |
| 00:27:39 | × | housemate quits (~housemate@146.70.66.228) (Quit: Nothing to see here. I wasn't there.) |
| 00:28:11 | rvalue- | is now known as rvalue |
| 00:34:48 | → | housemate joins (~housemate@146.70.66.228) |
| 00:44:00 | × | housemate quits (~housemate@146.70.66.228) (Quit: Nothing to see here. I wasn't there.) |
| 00:54:28 | × | j1n37 quits (j1n37@user/j1n37) (Read error: Connection reset by peer) |
| 00:57:08 | → | peterbecich joins (~Thunderbi@syn-047-229-123-186.res.spectrum.com) |
| 00:58:45 | → | j1n37 joins (j1n37@user/j1n37) |
| 01:07:09 | × | ljdarj quits (~Thunderbi@user/ljdarj) (Ping timeout: 260 seconds) |
| 01:13:49 | × | alexherbo2 quits (~alexherbo@2a02-8440-3216-94c7-2d28-c234-eb57-e02e.rev.sfr.net) (Remote host closed the connection) |
| 01:14:09 | → | alexherbo2 joins (~alexherbo@2a02-8440-3216-94c7-2d28-c234-eb57-e02e.rev.sfr.net) |
| 01:17:11 | → | Smiles joins (uid551636@id-551636.lymington.irccloud.com) |
| 01:32:04 | × | califax quits (~califax@user/califx) (Remote host closed the connection) |
| 01:33:14 | × | xff0x quits (~xff0x@2405:6580:b080:900:8aed:2810:7554:8ad9) (Ping timeout: 260 seconds) |
| 01:33:16 | → | califax joins (~califax@user/califx) |
| 01:36:19 | → | xff0x joins (~xff0x@2405:6580:b080:900:8aed:2810:7554:8ad9) |
| 01:39:09 | × | euandreh quits (~Thunderbi@189.6.105.228) (Ping timeout: 244 seconds) |
| 01:41:30 | zenmov | is now known as dymenshen |
| 01:42:58 | → | euandreh joins (~Thunderbi@189.6.105.228) |
| 01:57:52 | → | jinsun joins (~jinsun@user/jinsun) |
| 02:44:36 | <zzz> | :t \h f g -> uncurry h . (f &&& g) |
| 02:44:37 | <lambdabot> | (a1 -> b -> c) -> (a2 -> a1) -> (a2 -> b) -> a2 -> c |
| 02:44:47 | <zzz> | :t liftA2 |
| 02:44:48 | <lambdabot> | Applicative f => (a -> b -> c) -> f a -> f b -> f c |
| 02:46:15 | <zzz> | :t liftA2 @((->) _) |
| 02:46:16 | <lambdabot> | error: parse error on input ‘->’ |
| 02:46:54 | <zzz> | % :t liftA2 @((->) _) |
| 02:46:54 | <yahb2> | liftA2 @((->) _) ; :: Applicative ((->) w) => ; (a -> b -> c) -> (w -> a) -> (w -> b) -> w -> c |
| 02:47:02 | <probie> | :t [\h f g -> uncurry h . (f &&& g), liftA2] |
| 02:47:03 | <lambdabot> | [(c1 -> c' -> c2) -> (a -> c1) -> (a -> c') -> a -> c2] |
| 02:49:51 | <zzz> | ah nice |
| 02:49:55 | <zzz> | took me a second |
| 02:52:20 | <zzz> | :t [\h f g -> uncurry h . (f &&& g), liftA2, \h f g -> h <$> f <*> g] |
| 02:52:21 | <lambdabot> | [(c -> a1 -> b) -> (a2 -> c) -> (a2 -> a1) -> a2 -> b] |
| 03:26:17 | × | Smiles quits (uid551636@id-551636.lymington.irccloud.com) (Quit: Connection closed for inactivity) |
| 03:27:08 | × | td_ quits (~td@i53870902.versanet.de) (Ping timeout: 244 seconds) |
| 03:28:49 | → | td_ joins (~td@i53870904.versanet.de) |
| 03:42:18 | × | terrorjack4 quits (~terrorjac@2a01:4f8:c17:dc9f::) (Quit: The Lounge - https://thelounge.chat) |
| 03:44:00 | → | terrorjack4 joins (~terrorjac@2a01:4f8:c17:dc9f::) |
| 03:47:03 | × | gorignak quits (~gorignak@user/gorignak) (Read error: Connection reset by peer) |
| 03:47:24 | → | gorignak joins (~gorignak@user/gorignak) |
| 03:49:30 | × | alexherbo2 quits (~alexherbo@2a02-8440-3216-94c7-2d28-c234-eb57-e02e.rev.sfr.net) (Remote host closed the connection) |
| 03:56:17 | → | bitdex joins (~bitdex@gateway/tor-sasl/bitdex) |
| 03:56:26 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Remote host closed the connection) |
| 03:56:56 | → | bitdex joins (~bitdex@gateway/tor-sasl/bitdex) |
| 03:59:05 | × | Unicorn_Princess quits (~Unicorn_P@user/Unicorn-Princess/x-3540542) (Quit: Leaving) |
| 04:02:02 | × | kimiamania quits (~924ba01d@user/kimiamania) (Quit: PegeLinux) |
| 04:02:26 | → | kimiamania joins (~924ba01d@user/kimiamania) |
| 04:08:28 | × | peterbecich quits (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Remote host closed the connection) |
| 04:11:46 | → | peterbecich joins (~Thunderbi@syn-047-229-123-186.res.spectrum.com) |
| 04:12:17 | → | troojg joins (~troojg@user/troojg) |
| 04:33:30 | × | hellwolf quits (~user@5fec-1c2b-c772-ebf9-0f00-4d40-07d0-2001.sta.estpak.ee) (Ping timeout: 246 seconds) |
| 05:13:41 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Ping timeout: 260 seconds) |
| 05:15:31 | → | bitdex joins (~bitdex@gateway/tor-sasl/bitdex) |
| 06:24:40 | × | hsw quits (~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net) (Remote host closed the connection) |
| 06:25:01 | → | hsw joins (~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net) |
| 06:25:54 | × | troojg quits (~troojg@user/troojg) (Ping timeout: 252 seconds) |
| 06:26:10 | Inst_ | is now known as Inst |
| 06:26:13 | <Inst> | oh hey, just found this |
| 06:26:53 | <Inst> | https://www.gtf.io/musings/why-haskell |
| 06:27:15 | <Inst> | a Haskell company that doesn't do blockchain! |
| 06:27:24 | <Inst> | /sarcasm |
| 06:30:03 | × | euphores quits (~SASL_euph@user/euphores) (Quit: Leaving.) |
| 06:55:52 | × | peterbecich quits (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 252 seconds) |
| 06:57:43 | × | alp quits (~alp@2001:861:e3d6:8f80:dfbc:4b45:bfd4:9ca) (Remote host closed the connection) |
| 06:58:01 | → | euphores joins (~SASL_euph@user/euphores) |
| 06:58:05 | → | alp joins (~alp@2001:861:e3d6:8f80:b28:bb9d:24a:dcbb) |
| 06:59:25 | × | alp quits (~alp@2001:861:e3d6:8f80:b28:bb9d:24a:dcbb) (Remote host closed the connection) |
| 06:59:40 | × | pavonia quits (~user@user/siracusa) (Quit: Bye!) |
| 06:59:42 | → | alp joins (~alp@2001:861:e3d6:8f80:77b9:36e9:fd11:e443) |
| 07:00:11 | × | JamesMowery43 quits (~JamesMowe@ip68-228-212-232.ph.ph.cox.net) (Quit: Goodbye) |
| 07:00:46 | → | JamesMowery43 joins (~JamesMowe@ip68-228-212-232.ph.ph.cox.net) |
| 07:01:08 | × | alp quits (~alp@2001:861:e3d6:8f80:77b9:36e9:fd11:e443) (Remote host closed the connection) |
| 07:01:24 | → | alp joins (~alp@2001:861:e3d6:8f80:9e1d:abec:af2f:f3e8) |
| 07:03:01 | → | takuan joins (~takuan@178-116-218-225.access.telenet.be) |
| 07:03:07 | → | alp_ joins (~alp@2001:861:e3d6:8f80:bbd7:d31b:51f7:4f06) |
| 07:04:32 | × | alp_ quits (~alp@2001:861:e3d6:8f80:bbd7:d31b:51f7:4f06) (Remote host closed the connection) |
| 07:04:49 | → | alp_ joins (~alp@2001:861:e3d6:8f80:716b:21:cd14:2871) |
| 07:06:14 | × | alp_ quits (~alp@2001:861:e3d6:8f80:716b:21:cd14:2871) (Remote host closed the connection) |
| 07:06:28 | × | alp quits (~alp@2001:861:e3d6:8f80:9e1d:abec:af2f:f3e8) (Ping timeout: 246 seconds) |
| 07:06:31 | → | alp_ joins (~alp@2001:861:e3d6:8f80:1116:aeee:b462:c8eb) |
| 07:07:57 | × | alp_ quits (~alp@2001:861:e3d6:8f80:1116:aeee:b462:c8eb) (Remote host closed the connection) |
| 07:08:41 | → | tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
| 07:08:42 | → | alp_ joins (~alp@2001:861:e3d6:8f80:8763:6c7f:fed7:317) |
| 07:09:59 | → | alp__ joins (~alp@2001:861:e3d6:8f80:f392:7b0e:5b21:9620) |
| 07:11:21 | × | alp__ quits (~alp@2001:861:e3d6:8f80:f392:7b0e:5b21:9620) (Remote host closed the connection) |
| 07:11:43 | → | alp__ joins (~alp@2001:861:e3d6:8f80:4edb:6ea0:3cb0:4d91) |
| 07:11:58 | × | ystael quits (~ystael@user/ystael) (Ping timeout: 272 seconds) |
| 07:13:07 | × | alp_ quits (~alp@2001:861:e3d6:8f80:8763:6c7f:fed7:317) (Ping timeout: 246 seconds) |
| 07:13:22 | → | alp_ joins (~alp@2001:861:e3d6:8f80:1e43:c809:e4b7:d0ab) |
| 07:14:45 | × | alp_ quits (~alp@2001:861:e3d6:8f80:1e43:c809:e4b7:d0ab) (Remote host closed the connection) |
| 07:15:17 | → | alp_ joins (~alp@2001:861:e3d6:8f80:40e:175d:d439:a53) |
| 07:16:55 | × | alp__ quits (~alp@2001:861:e3d6:8f80:4edb:6ea0:3cb0:4d91) (Ping timeout: 264 seconds) |
| 07:17:28 | × | tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 07:20:17 | × | alp_ quits (~alp@2001:861:e3d6:8f80:40e:175d:d439:a53) (Ping timeout: 248 seconds) |
| 07:24:44 | → | Square joins (~Square@user/square) |
| 07:50:16 | → | ubert joins (~Thunderbi@178.115.41.15.wireless.dyn.drei.com) |
| 07:54:42 | → | jinsun_ joins (~jinsun@user/jinsun) |
| 07:54:42 | jinsun | is now known as Guest4939 |
| 07:54:42 | × | Guest4939 quits (~jinsun@user/jinsun) (Killed (silver.libera.chat (Nickname regained by services))) |
| 07:54:42 | jinsun_ | is now known as jinsun |
| 07:58:26 | → | tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
| 07:58:39 | <Inst> | oh, and I feel even better about this story |
| 07:59:23 | <Inst> | it turns out: |
| 07:59:25 | <Inst> | https://www.reddit.com/r/haskell/comments/15nhkoo/looking_for_a_haskell_contractor/ |
| 07:59:52 | × | zmt01 quits (~zmt00@user/zmt00) (Read error: Connection reset by peer) |
| 08:00:00 | × | caconym quits (~caconym@user/caconym) (Quit: bye) |
| 08:00:07 | <Inst> | "I hope you post a review of Haskell and your experiences if your experience is successful!" :) |
| 08:00:13 | <Inst> | that hope was evinced |
| 08:00:37 | → | caconym joins (~caconym@user/caconym) |
| 08:03:12 | → | zmt00 joins (~zmt00@user/zmt00) |
| 08:03:28 | <Inst> | and it looks like, but I can't be sure, but at that stage in the lifecycle, they had one Haskell project. Now, according to their review, they have teams doing Haskell. Awesome! |
| 08:08:46 | → | jespada joins (~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net) |
| 08:11:52 | <Inst> | /s/evinced/realized |
| 08:13:48 | × | jespada quits (~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net) (Ping timeout: 276 seconds) |
| 08:40:43 | × | ubert quits (~Thunderbi@178.115.41.15.wireless.dyn.drei.com) (Ping timeout: 252 seconds) |
| 08:44:05 | → | wootehfoot joins (~wootehfoo@user/wootehfoot) |
| 08:48:03 | → | Smiles joins (uid551636@id-551636.lymington.irccloud.com) |
| 08:52:58 | → | jespada joins (~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net) |
| 09:00:32 | → | acidjnk_new joins (~acidjnk@p200300d6e7283f16217d3049e4b57741.dip0.t-ipconnect.de) |
| 09:02:31 | → | billchenchina joins (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) |
| 09:07:31 | × | billchenchina quits (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) (Ping timeout: 265 seconds) |
| 09:15:44 | → | jinsun_ joins (~jinsun@user/jinsun) |
| 09:15:44 | × | jinsun quits (~jinsun@user/jinsun) (Killed (copper.libera.chat (Nickname regained by services))) |
| 09:15:44 | jinsun_ | is now known as jinsun |
| 09:21:54 | × | tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
| 09:22:03 | × | jespada quits (~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net) (Ping timeout: 245 seconds) |
| 09:34:30 | → | zetef joins (~quassel@2a02:2f0d:7604:d600:6bf8:6f36:5ad4:3689) |
| 09:34:30 | × | zetef quits (~quassel@2a02:2f0d:7604:d600:6bf8:6f36:5ad4:3689) (Client Quit) |
| 09:43:14 | → | billchenchina joins (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) |
| 09:46:15 | → | CrunchyFlakes joins (~CrunchyFl@ip1f13e94e.dynamic.kabel-deutschland.de) |
| 09:53:05 | → | alp joins (~alp@2001:861:e3d6:8f80:44a2:a4b3:2ffd:645a) |
| 09:56:23 | → | lxsameer joins (~lxsameer@Serene/lxsameer) |
| 10:06:29 | → | housemate joins (~housemate@146.70.66.228) |
| 10:07:50 | × | robobub quits (uid248673@id-248673.uxbridge.irccloud.com) (Quit: Connection closed for inactivity) |
| 10:16:30 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Remote host closed the connection) |
| 10:16:32 | → | Tuplanolla joins (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) |
| 10:16:59 | → | bitdex joins (~bitdex@gateway/tor-sasl/bitdex) |
| 10:17:33 | × | lxsameer quits (~lxsameer@Serene/lxsameer) (Ping timeout: 246 seconds) |
| 10:20:03 | × | econo_ quits (uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity) |
| 10:31:22 | × | tzh quits (~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz) |
| 10:37:10 | → | pavonia joins (~user@user/siracusa) |
| 10:37:27 | → | tromp joins (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
| 10:39:39 | → | ubert joins (~Thunderbi@178.115.41.15.wireless.dyn.drei.com) |
| 10:57:05 | × | Smiles quits (uid551636@id-551636.lymington.irccloud.com) (Quit: Connection closed for inactivity) |
| 10:59:12 | × | acidjnk_new quits (~acidjnk@p200300d6e7283f16217d3049e4b57741.dip0.t-ipconnect.de) (Ping timeout: 246 seconds) |
| 11:04:07 | → | ljdarj joins (~Thunderbi@user/ljdarj) |
| 11:04:17 | × | ubert quits (~Thunderbi@178.115.41.15.wireless.dyn.drei.com) (Remote host closed the connection) |
| 11:04:21 | → | acidjnk_new joins (~acidjnk@p200300d6e7283f1664ef93453a50ff85.dip0.t-ipconnect.de) |
| 11:04:40 | × | alp quits (~alp@2001:861:e3d6:8f80:44a2:a4b3:2ffd:645a) (Remote host closed the connection) |
| 11:04:49 | → | misterfish joins (~misterfis@84.53.85.146) |
| 11:06:44 | × | housemate quits (~housemate@146.70.66.228) (Quit: Nothing to see here. I wasn't there.) |
| 11:20:30 | × | lambdabot quits (~lambdabot@haskell/bot/lambdabot) (Remote host closed the connection) |
| 11:20:57 | → | lambdabot joins (~lambdabot@silicon.int-e.eu) |
| 11:20:57 | × | lambdabot quits (~lambdabot@silicon.int-e.eu) (Changing host) |
| 11:20:57 | → | lambdabot joins (~lambdabot@haskell/bot/lambdabot) |
| 11:20:57 | ChanServ | sets mode +v lambdabot |
| 11:22:39 | × | int-e quits (~noone@int-e.eu) (Quit: Lost terminal) |
| 11:24:02 | → | int-e joins (~noone@int-e.eu) |
| 11:30:38 | × | tromp quits (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Read error: Connection reset by peer) |
| 11:32:32 | → | __monty__ joins (~toonn@user/toonn) |
| 11:32:49 | × | ChaiTRex quits (~ChaiTRex@user/chaitrex) (Remote host closed the connection) |
| 11:34:50 | → | lxsameer joins (~lxsameer@Serene/lxsameer) |
| 11:37:06 | → | ChaiTRex joins (~ChaiTRex@user/chaitrex) |
| 11:37:34 | × | mceresa quits (~mceresa@user/mceresa) (Ping timeout: 260 seconds) |
| 11:45:08 | → | mceresa joins (~mceresa@user/mceresa) |
| 11:48:49 | → | mceresa_ joins (~mceresa@user/mceresa) |
| 11:49:34 | × | mceresa quits (~mceresa@user/mceresa) (Ping timeout: 252 seconds) |
| 11:51:41 | mceresa_ | is now known as mceresa |
| 12:00:00 | <SrPx> | is there any way to make cabal build faster for debugging and development? it takes 4s here and it is just a few small haskell files. i'm using -O0 already |
| 12:00:04 | × | caconym quits (~caconym@user/caconym) (Quit: bye) |
| 12:01:27 | × | Sgeo quits (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
| 12:02:13 | → | caconym joins (~caconym@user/caconym) |
| 12:06:21 | <Rembane> | SrPx: Does this command make it any faster? cabal v2-build --ghc-options=-fno-code --ghc-options=-fwrite-interface |
| 12:07:35 | <SrPx> | sadly no, same time here it seems. interesting though |
| 12:08:14 | <Rembane> | SrPx: Interesting. I found the command in an ancient issue on the cabal issue tracker: https://github.com/haskell/cabal/issues/1176 |
| 12:08:55 | <SrPx> | what is weirdest is that if I just concat it all in a single file it actually goes fast *sighs* |
| 12:09:13 | <Rembane> | That's sad. :/ |
| 12:09:25 | <Rembane> | Are you using any TemplateHaskell or other spicy features? |
| 12:09:34 | <SrPx> | perhaps I should make my own build that concatenates all my haskell files in one lol |
| 12:10:42 | × | billchenchina quits (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) (Remote host closed the connection) |
| 12:11:02 | <Rembane> | Do it! :D |
| 12:14:03 | <Rembane> | SrPx: Does this mean that you're not using `module SomeFile where` in your files? |
| 12:17:32 | <Leary> | SrPx: Do you actually need the build products every time? `ghcid` is pretty fast when you don't. |
| 12:23:40 | × | chiselfuse quits (~chiselfus@user/chiselfuse) (Remote host closed the connection) |
| 12:28:33 | × | FragByte quits (~christian@user/fragbyte) (Quit: Quit) |
| 12:30:27 | → | FragByte joins (~christian@user/fragbyte) |
| 12:35:58 | → | hellwolf joins (~user@47b5-0b96-bf7d-4ebe-0f00-4d40-07d0-2001.sta.estpak.ee) |
| 12:37:02 | × | lxsameer quits (~lxsameer@Serene/lxsameer) (Ping timeout: 255 seconds) |
| 12:48:42 | × | Square quits (~Square@user/square) (Ping timeout: 252 seconds) |
| 13:04:39 | × | xff0x quits (~xff0x@2405:6580:b080:900:8aed:2810:7554:8ad9) (Ping timeout: 252 seconds) |
| 13:06:05 | × | Tisoxin quits (~Ikosit@user/ikosit) (Quit: The Lounge - https://thelounge.chat) |
| 13:06:20 | → | Tisoxin joins (~Ikosit@user/ikosit) |
| 13:06:40 | → | xff0x joins (~xff0x@2405:6580:b080:900:8539:398e:9716:eb72) |
| 13:25:59 | × | ljdarj quits (~Thunderbi@user/ljdarj) (Ping timeout: 252 seconds) |
| 13:29:21 | × | hellwolf quits (~user@47b5-0b96-bf7d-4ebe-0f00-4d40-07d0-2001.sta.estpak.ee) (Ping timeout: 246 seconds) |
| 13:34:15 | → | chiselfuse joins (~chiselfus@user/chiselfuse) |
| 13:43:01 | × | L29Ah quits (~L29Ah@wikipedia/L29Ah) (Read error: Connection reset by peer) |
| 13:43:17 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Remote host closed the connection) |
| 13:43:47 | → | bitdex joins (~bitdex@gateway/tor-sasl/bitdex) |
| 13:46:25 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 13:50:51 | × | L29Ah quits (~L29Ah@wikipedia/L29Ah) (Ping timeout: 252 seconds) |
| 14:06:39 | → | ystael joins (~ystael@user/ystael) |
| 14:06:41 | × | acidjnk_new quits (~acidjnk@p200300d6e7283f1664ef93453a50ff85.dip0.t-ipconnect.de) (Ping timeout: 248 seconds) |
| 14:15:53 | → | weary-traveler joins (~user@user/user363627) |
| 14:23:51 | → | oxide joins (~lambda@user/oxide) |
| 14:24:16 | → | tremon joins (~tremon@83.80.159.219) |
| 14:26:41 | → | pera joins (~pera@user/pera) |
| 14:40:41 | → | alp joins (~alp@2001:861:e3d6:8f80:2261:439d:9740:2954) |
| 14:41:05 | × | willscripted quits (~willscrip@user/willscripted) (Remote host closed the connection) |
| 14:41:19 | → | Square joins (~Square@user/square) |
| 14:56:53 | × | Square quits (~Square@user/square) (Remote host closed the connection) |
| 14:58:57 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 14:59:40 | × | Tisoxin quits (~Ikosit@user/ikosit) (Quit: The Lounge - https://thelounge.chat) |
| 15:00:08 | → | Tisoxin joins (~Ikosit@user/ikosit) |
| 15:04:23 | → | Square joins (~Square@user/square) |
| 15:16:48 | → | billchenchina joins (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) |
| 15:17:37 | → | ljdarj joins (~Thunderbi@user/ljdarj) |
| 15:20:40 | → | willscripted joins (~willscrip@user/willscripted) |
| 15:26:14 | × | bliminse quits (~bliminse@user/bliminse) (Quit: leaving) |
| 15:32:03 | × | jinsun quits (~jinsun@user/jinsun) (Read error: Connection reset by peer) |
| 15:33:11 | → | jinsun joins (~jinsun@user/jinsun) |
| 15:33:49 | → | acidjnk_new joins (~acidjnk@p200300d6e7283f16f0fc97e1b3533d6e.dip0.t-ipconnect.de) |
| 15:33:54 | × | jinsun quits (~jinsun@user/jinsun) (Read error: Connection reset by peer) |
| 15:34:09 | → | jinsun joins (~jinsun@user/jinsun) |
| 15:34:52 | → | hellwolf joins (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) |
| 15:35:14 | → | Smiles joins (uid551636@id-551636.lymington.irccloud.com) |
| 15:35:31 | × | hellwolf quits (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) (Client Quit) |
| 15:36:09 | → | hellwolf joins (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) |
| 15:42:57 | × | raym quits (~ray@user/raym) (Quit: kernel update) |
| 15:45:45 | → | housemate joins (~housemate@146.70.66.228) |
| 15:48:07 | × | ystael quits (~ystael@user/ystael) (Ping timeout: 264 seconds) |
| 15:53:33 | × | hellwolf quits (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) (Remote host closed the connection) |
| 15:54:04 | → | hellwolf joins (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) |
| 15:54:24 | × | weary-traveler quits (~user@user/user363627) (Remote host closed the connection) |
| 15:58:24 | × | housemate quits (~housemate@146.70.66.228) (Quit: Nothing to see here. I wasn't there.) |
| 16:02:29 | × | tcard quits (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (Read error: Connection reset by peer) |
| 16:08:08 | → | tcard_ joins (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
| 16:08:25 | × | emergence quits (emergence@167.114.206.88) (Ping timeout: 260 seconds) |
| 16:09:37 | × | litharge quits (litharge@libera/bot/litharge) (*.net *.split) |
| 16:09:37 | × | jinsun quits (~jinsun@user/jinsun) (*.net *.split) |
| 16:09:37 | × | acidjnk_new quits (~acidjnk@p200300d6e7283f16f0fc97e1b3533d6e.dip0.t-ipconnect.de) (*.net *.split) |
| 16:09:37 | × | alp quits (~alp@2001:861:e3d6:8f80:2261:439d:9740:2954) (*.net *.split) |
| 16:09:37 | × | FragByte quits (~christian@user/fragbyte) (*.net *.split) |
| 16:09:37 | × | Tuplanolla quits (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) (*.net *.split) |
| 16:09:37 | × | td_ quits (~td@i53870904.versanet.de) (*.net *.split) |
| 16:09:38 | × | hughjfchen quits (~hughjfche@vmi556545.contaboserver.net) (*.net *.split) |
| 16:09:38 | × | jess quits (meow@libera/staff/cat/jess) (*.net *.split) |
| 16:09:38 | × | pounce quits (~pounce@user/cute/pounce) (*.net *.split) |
| 16:09:39 | × | dumptruckman quits (~dumptruck@66-175-211-75.ip.linodeusercontent.com) (*.net *.split) |
| 16:09:39 | × | GdeVolpiano quits (~GdeVolpia@user/GdeVolpiano) (*.net *.split) |
| 16:09:39 | × | roosterphant_ quits (~roosterph@185.21.217.76) (*.net *.split) |
| 16:09:39 | × | guygastineau quits (~guygastin@137.184.131.156) (*.net *.split) |
| 16:09:40 | × | mrmonday quits (~robert@what.i.hope.is.not.a.tabernaevagant.es) (*.net *.split) |
| 16:09:40 | × | dibblego quits (~dibblego@haskell/developer/dibblego) (*.net *.split) |
| 16:09:40 | × | orcus quits (~orcus@mail.brprice.uk) (*.net *.split) |
| 16:09:40 | × | gabiruh quits (~gabiruh@vps19177.publiccloud.com.br) (*.net *.split) |
| 16:09:40 | × | picnoir quits (~picnoir@about/aquilenet/vodoo/NinjaTrappeur) (*.net *.split) |
| 16:09:40 | × | nckx quits (nckx@libera/staff/owl/nckx) (*.net *.split) |
| 16:09:40 | × | smalltalkman quits (uid545680@id-545680.hampstead.irccloud.com) (*.net *.split) |
| 16:09:40 | × | dunj3 quits (~dunj3@2a01:239:328:1600::1) (*.net *.split) |
| 16:09:40 | × | Vajb quits (~Vajb@n7m8bu6eaitlx0eukg2-1.v6.elisa-mobile.fi) (*.net *.split) |
| 16:09:40 | × | mrvdb quits (~mrvdb@2001:19f0:5000:8582:5400:ff:fe07:3df5) (*.net *.split) |
| 16:09:41 | × | b20n quits (sid115913@id-115913.uxbridge.irccloud.com) (*.net *.split) |
| 16:09:41 | × | Moyst__ quits (~moyst@user/moyst) (*.net *.split) |
| 16:09:41 | × | c_wraith quits (~c_wraith@adjoint.us) (*.net *.split) |
| 16:09:41 | × | ggVGc quits (~ggVGc@a.lowtech.earth) (*.net *.split) |
| 16:09:41 | × | ChanServ quits (ChanServ@services.libera.chat) (*.net *.split) |
| 16:11:20 | × | kqr quits (~kqr@static.143.81.108.65.clients.your-server.de) (Ping timeout: 260 seconds) |
| 16:11:55 | × | [_________] quits (~oos95GWG@user/oos95GWG) (Ping timeout: 260 seconds) |
| 16:13:40 | × | andreas303 quits (andreas303@is.drunk.and.ready-to.party) (Ping timeout: 260 seconds) |
| 16:14:15 | × | smiesner quits (b0cf5acf8c@user/smiesner) (Ping timeout: 260 seconds) |
| 16:14:50 | × | jcarpenter2 quits (~lol@2603:3016:1e01:b9c0:1417:5bcf:9986:c909) (Ping timeout: 260 seconds) |
| 16:14:50 | × | welterde quits (welterde@thinkbase.srv.welterde.de) (Ping timeout: 260 seconds) |
| 16:15:41 | → | smiesner_ joins (b0cf5acf8c@2a03:6000:1812:100::13b9) |
| 16:15:41 | smiesner_ | is now known as smiesner |
| 16:15:58 | → | jinsun joins (~jinsun@user/jinsun) |
| 16:15:58 | → | acidjnk_new joins (~acidjnk@p200300d6e7283f16f0fc97e1b3533d6e.dip0.t-ipconnect.de) |
| 16:15:58 | → | alp joins (~alp@2001:861:e3d6:8f80:2261:439d:9740:2954) |
| 16:15:58 | → | FragByte joins (~christian@user/fragbyte) |
| 16:15:58 | → | Tuplanolla joins (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) |
| 16:15:58 | → | td_ joins (~td@i53870904.versanet.de) |
| 16:15:58 | → | hughjfchen joins (~hughjfche@vmi556545.contaboserver.net) |
| 16:15:58 | → | jess joins (meow@libera/staff/cat/jess) |
| 16:15:58 | → | pounce joins (~pounce@user/cute/pounce) |
| 16:15:58 | → | dumptruckman joins (~dumptruck@66-175-211-75.ip.linodeusercontent.com) |
| 16:15:58 | → | GdeVolpiano joins (~GdeVolpia@user/GdeVolpiano) |
| 16:15:58 | → | litharge joins (litharge@libera/bot/litharge) |
| 16:15:58 | → | ggVGc joins (~ggVGc@a.lowtech.earth) |
| 16:15:58 | → | c_wraith joins (~c_wraith@adjoint.us) |
| 16:15:58 | → | Moyst__ joins (~moyst@user/moyst) |
| 16:15:58 | → | b20n joins (sid115913@id-115913.uxbridge.irccloud.com) |
| 16:15:58 | → | mrvdb joins (~mrvdb@2001:19f0:5000:8582:5400:ff:fe07:3df5) |
| 16:15:58 | → | Vajb joins (~Vajb@n7m8bu6eaitlx0eukg2-1.v6.elisa-mobile.fi) |
| 16:15:58 | → | dunj3 joins (~dunj3@2a01:239:328:1600::1) |
| 16:15:58 | → | smalltalkman joins (uid545680@id-545680.hampstead.irccloud.com) |
| 16:15:58 | → | nckx joins (nckx@libera/staff/owl/nckx) |
| 16:15:58 | → | picnoir joins (~picnoir@about/aquilenet/vodoo/NinjaTrappeur) |
| 16:15:58 | → | gabiruh joins (~gabiruh@vps19177.publiccloud.com.br) |
| 16:15:58 | → | orcus joins (~orcus@mail.brprice.uk) |
| 16:15:58 | → | dibblego joins (~dibblego@haskell/developer/dibblego) |
| 16:15:58 | → | mrmonday joins (~robert@what.i.hope.is.not.a.tabernaevagant.es) |
| 16:15:58 | → | guygastineau joins (~guygastin@137.184.131.156) |
| 16:15:58 | → | roosterphant_ joins (~roosterph@185.21.217.76) |
| 16:15:58 | → | ChanServ joins (ChanServ@services.libera.chat) |
| 16:15:58 | tantalum.libera.chat | sets mode +o ChanServ |
| 16:20:32 | × | Raito_Bezarius quits (~Raito@wireguard/tunneler/raito-bezarius) (Ping timeout: 252 seconds) |
| 16:20:37 | × | glguy quits (glguy@libera/staff/glguy) (*.net *.split) |
| 16:20:37 | × | ljdarj quits (~Thunderbi@user/ljdarj) (*.net *.split) |
| 16:20:37 | × | caconym quits (~caconym@user/caconym) (*.net *.split) |
| 16:20:37 | × | euandreh quits (~Thunderbi@189.6.105.228) (*.net *.split) |
| 16:20:38 | × | tabemann quits (~tabemann@2600:1700:7990:24e0:9f6b:68a6:cce5:e580) (*.net *.split) |
| 16:20:38 | × | manwithluck quits (manwithluc@gateway/vpn/protonvpn/manwithluck) (*.net *.split) |
| 16:20:38 | × | philopsos quits (~caecilius@user/philopsos) (*.net *.split) |
| 16:20:38 | × | mikko quits (~mikko@user/mikko) (*.net *.split) |
| 16:20:38 | × | mesaoptimizer quits (~mesaoptim@user/PapuaHardyNet) (*.net *.split) |
| 16:20:38 | × | Flow quits (~none@gentoo/developer/flow) (*.net *.split) |
| 16:20:38 | × | Natch quits (~natch@c-92-34-7-158.bbcust.telenor.se) (*.net *.split) |
| 16:20:38 | × | ZLima12 quits (~zlima12@user/meow/ZLima12) (*.net *.split) |
| 16:20:38 | × | Hafydd quits (~Hafydd@user/hafydd) (*.net *.split) |
| 16:20:39 | × | TheCoffeMaker quits (~TheCoffeM@user/thecoffemaker) (*.net *.split) |
| 16:20:39 | × | immae quits (~immae@2a01:4f8:141:53e7::) (*.net *.split) |
| 16:20:39 | × | cptaffe quits (~cptaffe@user/cptaffe) (*.net *.split) |
| 16:20:40 | × | flukiluke quits (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) (*.net *.split) |
| 16:20:40 | × | disconnect3d quits (~disconnec@user/disconnect3d) (*.net *.split) |
| 16:20:40 | × | dpk quits (~dpk@jains.nonceword.org) (*.net *.split) |
| 16:20:40 | × | jocke-l quits (jocke-l@a.x0.is) (*.net *.split) |
| 16:20:40 | × | ell2 quits (~ellie@user/ellie) (*.net *.split) |
| 16:20:40 | × | sa quits (sid1055@id-1055.tinside.irccloud.com) (*.net *.split) |
| 16:20:40 | × | Pent quits (sid313808@id-313808.lymington.irccloud.com) (*.net *.split) |
| 16:20:40 | × | jakesyl_____ quits (sid56879@id-56879.hampstead.irccloud.com) (*.net *.split) |
| 16:20:40 | × | meinside quits (uid24933@id-24933.helmsley.irccloud.com) (*.net *.split) |
| 16:20:40 | × | Hobbyboy quits (Hobbyboy@hobbyboy.co.uk) (*.net *.split) |
| 16:20:40 | × | Yumemi_ quits (~Yumemi@chamoin.net) (*.net *.split) |
| 16:20:40 | × | mjrosenb quits (~mjrosenb@pool-96-232-177-77.nycmny.fios.verizon.net) (*.net *.split) |
| 16:20:40 | × | lockywolf quits (~lockywolf@coconut.lockywolf.net) (*.net *.split) |
| 16:20:40 | × | davl_ quits (~davl@207.154.228.18) (*.net *.split) |
| 16:20:41 | × | coldmountain quits (sid484352@id-484352.helmsley.irccloud.com) (*.net *.split) |
| 16:20:41 | × | shawwwn quits (sid6132@id-6132.helmsley.irccloud.com) (*.net *.split) |
| 16:20:41 | × | sa1 quits (sid7690@id-7690.ilkley.irccloud.com) (*.net *.split) |
| 16:20:41 | × | sprout quits (~sprout@2a02-a448-3a80-0-c61c-b515-5509-58e7.fixed6.kpn.net) (*.net *.split) |
| 16:20:41 | × | bailsman quits (~ejrietvel@revspace/participant/bailsman) (*.net *.split) |
| 16:20:41 | × | idnar quits (sid12240@debian/mithrandi) (*.net *.split) |
| 16:20:41 | × | ddb quits (ddb@tilde.club) (*.net *.split) |
| 16:20:41 | × | integral quits (sid296274@user/integral) (*.net *.split) |
| 16:20:42 | × | willscripted quits (~willscrip@user/willscripted) (*.net *.split) |
| 16:20:42 | × | hiredman quits (~hiredman@frontier1.downey.family) (*.net *.split) |
| 16:20:42 | × | Pozyomka quits (~pyon@user/pyon) (*.net *.split) |
| 16:20:42 | × | arahael quits (~arahael@user/arahael) (*.net *.split) |
| 16:20:43 | × | img quits (~img@user/img) (*.net *.split) |
| 16:20:43 | × | piele quits (~piele@tbonesteak.creativeserver.net) (*.net *.split) |
| 16:20:43 | × | mud quits (~mud@user/kadoban) (*.net *.split) |
| 16:20:43 | × | enikar quits (~enikar@user/enikar) (*.net *.split) |
| 16:20:43 | × | absence quits (torgeihe@hildring.pvv.ntnu.no) (*.net *.split) |
| 16:20:43 | × | unlucy quits (sid572875@user/unlucy) (*.net *.split) |
| 16:20:44 | × | aristid quits (sid1599@id-1599.uxbridge.irccloud.com) (*.net *.split) |
| 16:20:44 | × | rune_ quits (sid21167@id-21167.ilkley.irccloud.com) (*.net *.split) |
| 16:20:44 | × | Techcable quits (sid534393@user/Techcable) (*.net *.split) |
| 16:20:44 | × | szkl quits (uid110435@id-110435.uxbridge.irccloud.com) (*.net *.split) |
| 16:20:44 | × | fired quits (LA@2600:3c00::f03c:92ff:fee3:aace) (*.net *.split) |
| 16:20:44 | × | ol0ck quits (~quassel@user/ol0ck) (*.net *.split) |
| 16:20:44 | × | Jonno_FTW quits (~come@user/jonno-ftw/x-0835346) (*.net *.split) |
| 16:20:44 | × | TMA quits (tma@twin.jikos.cz) (*.net *.split) |
| 16:20:44 | × | dispater quits (~dispater@mail.brprice.uk) (*.net *.split) |
| 16:20:44 | × | alanz quits (sid110616@id-110616.uxbridge.irccloud.com) (*.net *.split) |
| 16:20:45 | × | meooow_ quits (~meooow@165.232.184.169) (*.net *.split) |
| 16:20:45 | × | dmj` quits (sid72307@id-72307.hampstead.irccloud.com) (*.net *.split) |
| 16:20:45 | × | Aleksejs quits (~Aleksejs@107.170.21.106) (*.net *.split) |
| 16:20:45 | × | hook54321 quits (sid149355@user/hook54321) (*.net *.split) |
| 16:20:45 | × | SethTisue quits (sid14912@id-14912.ilkley.irccloud.com) (*.net *.split) |
| 16:20:45 | × | nonzen quits (~nonzen@user/nonzen) (*.net *.split) |
| 16:20:45 | × | pikajude quits (~jude@2001:19f0:ac01:373:5400:2ff:fe86:3274) (*.net *.split) |
| 16:20:45 | × | xerox quits (~edi@user/edi) (*.net *.split) |
| 16:20:45 | × | She quits (haveident@libera/staff/she/her) (*.net *.split) |
| 16:20:45 | × | andjjj23 quits (~irc@107.170.228.47) (*.net *.split) |
| 16:20:45 | × | sclv quits (sid39734@haskell/developer/sclv) (*.net *.split) |
| 16:20:45 | × | jmct quits (sid160793@id-160793.tinside.irccloud.com) (*.net *.split) |
| 16:20:45 | × | alinab quits (sid468903@id-468903.helmsley.irccloud.com) (*.net *.split) |
| 16:20:45 | × | geekosaur quits (sid609282@xmonad/geekosaur) (*.net *.split) |
| 16:20:45 | × | bryanv quits (~quassel@2603:c028:4503:7500:45b7:933:ab17:bc10) (*.net *.split) |
| 16:20:45 | × | mmaruseacph2 quits (~mihai@mihai.page) (*.net *.split) |
| 16:20:45 | × | ProofTechnique_ quits (sid79547@id-79547.ilkley.irccloud.com) (*.net *.split) |
| 16:20:46 | × | krjst quits (~krjst@2604:a880:800:c1::16b:8001) (*.net *.split) |
| 16:20:46 | × | amir quits (sid22336@user/amir) (*.net *.split) |
| 16:20:46 | × | lexi-lambda quits (sid92601@id-92601.hampstead.irccloud.com) (*.net *.split) |
| 16:20:46 | × | S11001001 quits (sid42510@id-42510.ilkley.irccloud.com) (*.net *.split) |
| 16:20:46 | × | T_S_____ quits (sid501726@id-501726.uxbridge.irccloud.com) (*.net *.split) |
| 16:20:46 | × | haasn quits (sid579015@id-579015.hampstead.irccloud.com) (*.net *.split) |
| 16:20:46 | × | dsal quits (sid13060@id-13060.lymington.irccloud.com) (*.net *.split) |
| 16:20:46 | × | Axman6 quits (~Axman6@user/axman6) (*.net *.split) |
| 16:20:46 | × | superbil quits (~superbil@114-32-231-70.hinet-ip.hinet.net) (*.net *.split) |
| 16:20:46 | × | Smiles quits (uid551636@id-551636.lymington.irccloud.com) (*.net *.split) |
| 16:20:46 | × | billchenchina quits (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) (*.net *.split) |
| 16:20:47 | × | zmt00 quits (~zmt00@user/zmt00) (*.net *.split) |
| 16:20:47 | × | yaroot quits (~yaroot@2400:4052:ac0:d901:1cf4:2aff:fe51:c04c) (*.net *.split) |
| 16:20:47 | × | ft quits (~ft@p4fc2a26f.dip0.t-ipconnect.de) (*.net *.split) |
| 16:20:47 | × | berberman quits (~berberman@user/berberman) (*.net *.split) |
| 16:20:47 | × | olivial quits (~benjaminl@user/benjaminl) (*.net *.split) |
| 16:20:47 | × | jjhoo quits (~jahakala@user/jjhoo) (*.net *.split) |
| 16:20:47 | × | talismanick quits (~user@2601:644:937c:ed10::ae5) (*.net *.split) |
| 16:20:48 | × | hgolden quits (~hgolden@2603:8000:9d00:3ed1:6c70:1ac0:d127:74dd) (*.net *.split) |
| 16:20:48 | × | zzz quits (~z@user/zero) (*.net *.split) |
| 16:20:48 | × | ThePenguin quits (~ThePengui@cust-95-80-24-166.csbnet.se) (*.net *.split) |
| 16:20:48 | × | tired quits (~tired@user/tired) (*.net *.split) |
| 16:20:48 | × | cyphase quits (~cyphase@user/cyphase) (*.net *.split) |
| 16:20:48 | × | anpad quits (~pandeyan@user/anpad) (*.net *.split) |
| 16:20:48 | × | tt1231097832435 quits (~tt1231@2603:6010:8700:4a81:219f:50d3:618a:a6ee) (*.net *.split) |
| 16:20:48 | × | todi quits (~todi@p57803331.dip0.t-ipconnect.de) (*.net *.split) |
| 16:20:48 | × | forell quits (~forell@user/forell) (*.net *.split) |
| 16:20:48 | × | ftzm quits (~ftzm@085080230038.dynamic.telenor.dk) (*.net *.split) |
| 16:20:49 | × | rembo10 quits (~rembo10@main.remulis.com) (*.net *.split) |
| 16:20:49 | × | byte quits (~byte@149.28.222.189) (*.net *.split) |
| 16:20:49 | × | dyniec quits (~dyniec@dybiec.info) (*.net *.split) |
| 16:20:49 | × | drdo quits (~drdo@bl9-110-63.dsl.telepac.pt) (*.net *.split) |
| 16:20:49 | × | ridcully quits (~ridcully@pd951f16a.dip0.t-ipconnect.de) (*.net *.split) |
| 16:20:49 | × | xacktm quits (xacktm@user/xacktm) (*.net *.split) |
| 16:20:49 | × | Adran quits (~adran@botters/adran) (*.net *.split) |
| 16:20:49 | × | tureba quits (~tureba@tureba.org) (*.net *.split) |
| 16:20:50 | × | hc quits (~hc@mail.hce.li) (*.net *.split) |
| 16:20:50 | × | rncwnd quits (~quassel@2a01:4f8:221:27c6::1) (*.net *.split) |
| 16:20:50 | × | lambdap2371 quits (~lambdap@static.167.190.119.168.clients.your-server.de) (*.net *.split) |
| 16:20:50 | × | koala_man quits (~vidar@157.146.251.23.bc.googleusercontent.com) (*.net *.split) |
| 16:20:50 | × | mcfrdy quits (~mcfrdy@user/mcfrdy) (*.net *.split) |
| 16:20:51 | × | opqdonut quits (opqdonut@pseudo.fixme.fi) (*.net *.split) |
| 16:20:51 | × | n3t quits (~n3t@user/n3t) (*.net *.split) |
| 16:21:08 | → | alexherbo2 joins (~alexherbo@2a02-8440-3307-845b-b47a-8df0-484a-dd57.rev.sfr.net) |
| 16:21:10 | × | pavonia quits (~user@user/siracusa) (*.net *.split) |
| 16:21:11 | × | s4msung quits (YSkIhMhdIR@user/s4msung) (*.net *.split) |
| 16:21:11 | × | yushyin quits (aC7s4hKZiM@mail.karif.server-speed.net) (*.net *.split) |
| 16:21:11 | × | ShannonB quits (~ShannonB@user/ShannonB) (*.net *.split) |
| 16:21:11 | × | arthurvl quits (~arthurvl@77-174-49-144.fixed.kpn.net) (*.net *.split) |
| 16:21:11 | × | dolio quits (~dolio@130.44.140.168) (*.net *.split) |
| 16:21:11 | × | Teacup quits (~teacup@user/teacup) (*.net *.split) |
| 16:21:11 | × | Fijxu quits (~Fijxu@user/fijxu) (*.net *.split) |
| 16:21:11 | × | Patternmaster quits (~georg@user/Patternmaster) (*.net *.split) |
| 16:21:12 | × | Fischmiep quits (~Fischmiep@user/Fischmiep) (*.net *.split) |
| 16:21:12 | × | AWizzArd quits (~code@user/awizzard) (*.net *.split) |
| 16:21:12 | × | ham2 quits (~ham@user/ham) (*.net *.split) |
| 16:21:12 | × | bastelfreak quits (bastelfrea@libera/staff/VoxPupuli.bastelfreak) (*.net *.split) |
| 16:21:12 | × | TimWolla quits (~timwolla@2a01:4f8:150:6153:beef::6667) (*.net *.split) |
| 16:21:12 | × | emmanuelux_ quits (~emmanuelu@user/emmanuelux) (*.net *.split) |
| 16:21:12 | × | kronicmage quits (~kronicmag@neotame.csclub.uwaterloo.ca) (*.net *.split) |
| 16:21:12 | × | rini quits (~rini@user/rini) (*.net *.split) |
| 16:21:13 | × | Eoco quits (~ian@128.101.131.218) (*.net *.split) |
| 16:21:13 | × | gawen quits (~gawen@user/gawen) (*.net *.split) |
| 16:21:13 | × | ggb quits (a62ffbaf4f@2a03:6000:1812:100::3ac) (*.net *.split) |
| 16:21:13 | × | jakzale quits (6291399afa@user/jakzale) (*.net *.split) |
| 16:21:13 | × | ACuriousMoose quits (~ACuriousM@156.34.161.188) (*.net *.split) |
| 16:21:13 | × | swistak quits (~swistak@185.21.216.141) (*.net *.split) |
| 16:21:14 | × | Typedfern quits (~Typedfern@59.red-83-37-27.dynamicip.rima-tde.net) (*.net *.split) |
| 16:21:14 | × | mewra quits (~aranea@wireguard/contributorcat/mira) (*.net *.split) |
| 16:21:14 | × | Rembane quits (~Rembane@user/Rembane) (*.net *.split) |
| 16:21:14 | × | tnks quits (sid412124@id-412124.helmsley.irccloud.com) (*.net *.split) |
| 16:21:14 | × | NemesisD quits (sid24071@id-24071.lymington.irccloud.com) (*.net *.split) |
| 16:21:14 | × | hovsater quits (sid499516@user/hovsater) (*.net *.split) |
| 16:21:14 | × | buhman quits (sid411355@user/buhman) (*.net *.split) |
| 16:21:15 | × | Hecate quits (~mariposa@user/hecate) (*.net *.split) |
| 16:21:15 | × | mniip_ quits (mniip@libera/staff/mniip) (*.net *.split) |
| 16:21:15 | × | CrunchyFlakes quits (~CrunchyFl@ip1f13e94e.dynamic.kabel-deutschland.de) (*.net *.split) |
| 16:21:15 | × | gvg quits (~dcd@user/gvg) (*.net *.split) |
| 16:21:15 | × | rdcdr quits (~rdcdr@user/rdcdr) (*.net *.split) |
| 16:21:15 | × | tv quits (~tv@user/tv) (*.net *.split) |
| 16:21:16 | × | nschoe quits (~nschoe@82-65-202-30.subs.proxad.net) (*.net *.split) |
| 16:21:16 | × | kaskal quits (~kaskal@213-147-165-220.nat.highway.webapn.at) (*.net *.split) |
| 16:21:16 | × | sand-witch quits (~m-mzmz6l@vmi833741.contaboserver.net) (*.net *.split) |
| 16:21:16 | × | Versality quits (~Versality@user/Versality) (*.net *.split) |
| 16:21:16 | × | bairyn quits (~bairyn@50.250.232.19) (*.net *.split) |
| 16:21:16 | × | preflex quits (~preflex@user/mauke/bot/preflex) (*.net *.split) |
| 16:21:16 | × | zfnmxt quits (~zfnmxt@user/zfnmxt) (*.net *.split) |
| 16:21:17 | × | caubert quits (~caubert@user/caubert) (*.net *.split) |
| 16:21:17 | × | spider1 quits (spider@tilde.cafe) (*.net *.split) |
| 16:21:17 | × | Spawns_Carpeting quits (~mobile@user/spawns-carpeting/x-6969421) (*.net *.split) |
| 16:21:17 | × | Clint quits (~Clint@user/clint) (*.net *.split) |
| 16:21:17 | × | meejah quits (~meejah@rutas.meejah.ca) (*.net *.split) |
| 16:21:17 | × | tessier quits (~treed@ec2-184-72-149-67.compute-1.amazonaws.com) (*.net *.split) |
| 16:21:17 | × | wz1000 quits (~zubin@static.11.113.47.78.clients.your-server.de) (*.net *.split) |
| 16:21:17 | × | barthandelous01 quits (barth@triton.blinkenshell.org) (*.net *.split) |
| 16:21:17 | × | institor quits (~henricus@user/institor) (*.net *.split) |
| 16:21:18 | × | Dykam quits (Dykam@dykam.nl) (*.net *.split) |
| 16:21:18 | × | dfg quits (~dfg@user/dfg) (*.net *.split) |
| 16:21:18 | × | tmr quits (~tamer@user/tamer) (*.net *.split) |
| 16:21:18 | × | aku quits (aku@65.108.245.241) (*.net *.split) |
| 16:21:18 | × | Arsen quits (arsen@gentoo/developer/managarm.dev.Arsen) (*.net *.split) |
| 16:21:19 | × | noteness quits (~noteness@user/noteness) (*.net *.split) |
| 16:21:19 | → | lol_ joins (~lol@2603:3016:1e01:b9c0:4843:dab9:4f1f:25c0) |
| 16:21:19 | → | welterde1 joins (~welterde@thinkbase.srv.welterde.de) |
| 16:24:23 | × | oxide quits (~lambda@user/oxide) (*.net *.split) |
| 16:24:23 | × | terrorjack4 quits (~terrorjac@2a01:4f8:c17:dc9f::) (*.net *.split) |
| 16:24:23 | × | gentauro quits (~gentauro@user/gentauro) (*.net *.split) |
| 16:24:23 | × | visilii quits (~visilii@213.24.126.184) (*.net *.split) |
| 16:24:23 | × | Maxdamantus quits (~Maxdamant@user/maxdamantus) (*.net *.split) |
| 16:24:24 | × | remedan quits (~remedan@ip-62-245-108-153.bb.vodafone.cz) (*.net *.split) |
| 16:24:24 | × | dymenshen quits (zenmov@user/dymenshen) (*.net *.split) |
| 16:24:24 | × | mhatta quits (~mhatta@www21123ui.sakura.ne.jp) (*.net *.split) |
| 16:24:24 | × | thaumavorio quits (~thaumavor@thaumavor.io) (*.net *.split) |
| 16:24:24 | × | tritlo quits (sid58727@id-58727.hampstead.irccloud.com) (*.net *.split) |
| 16:24:24 | × | snek quits (sid280155@id-280155.lymington.irccloud.com) (*.net *.split) |
| 16:24:24 | × | hacklschorsch quits (~flo@2a01:4f9:3a:2296::2) (*.net *.split) |
| 16:24:24 | × | wryish quits (~wryish@216.246.119.62) (*.net *.split) |
| 16:24:24 | × | monochrom quits (trebla@216.138.220.146) (*.net *.split) |
| 16:24:24 | × | migas977 quits (~migas@static.140.65.63.178.clients.your-server.de) (*.net *.split) |
| 16:24:25 | × | _d0t quits (~{-d0t-}@user/-d0t-/x-7915216) (*.net *.split) |
| 16:24:25 | × | haveo quits (~weechat@pacamara.iuwt.fr) (*.net *.split) |
| 16:24:25 | × | yahb2 quits (~yahb2@user/tomsmeding/bot/yahb2) (*.net *.split) |
| 16:24:25 | × | cayley5 quits (~cayley5@user/phileasfogg) (*.net *.split) |
| 16:24:25 | × | acidsys quits (~crameleon@openSUSE/member/crameleon) (*.net *.split) |
| 16:24:25 | × | dilaver_ quits (~dilaver_@user/dilaver-:32218) (*.net *.split) |
| 16:24:25 | × | 082AAS5CR quits (7569f027cf@2a03:6000:1812:100::e4) (*.net *.split) |
| 16:24:25 | × | duncan quits (c6181279e3@user/meow/duncan) (*.net *.split) |
| 16:24:25 | × | chaitlatte0 quits (ea29c0bb16@user/chaitlatte0) (*.net *.split) |
| 16:24:25 | × | sm2n quits (ae95cb1267@user/sm2n) (*.net *.split) |
| 16:24:25 | × | jleightcap quits (7bc4014b62@user/jleightcap) (*.net *.split) |
| 16:24:26 | × | eso quits (a0662dfd5e@2a03:6000:1812:100::1266) (*.net *.split) |
| 16:24:26 | × | bwolf quits (c3bc363dd1@2a03:6000:1812:100::180) (*.net *.split) |
| 16:24:26 | × | lucyy quits (228ee8f0ce@user/lucyy) (*.net *.split) |
| 16:24:26 | × | henrytill quits (e0180937c3@2a03:6000:1812:100::e8c) (*.net *.split) |
| 16:24:26 | × | whereiseveryone quits (206ba86c98@2a03:6000:1812:100::2e4) (*.net *.split) |
| 16:24:26 | × | sus quits (1b7af6299f@user/zeromomentum) (*.net *.split) |
| 16:24:26 | × | jkoshy quits (99b9359beb@user/jkoshy) (*.net *.split) |
| 16:24:26 | × | shreyasminocha quits (51fdc93eda@user/shreyasminocha) (*.net *.split) |
| 16:24:26 | × | lane quits (809450f172@2a03:6000:1812:100::1300) (*.net *.split) |
| 16:24:26 | × | filwisher quits (2e6936c793@2a03:6000:1812:100::170) (*.net *.split) |
| 16:24:26 | × | paotsaq quits (~paotsaq@127.209.37.188.rev.vodafone.pt) (*.net *.split) |
| 16:24:26 | × | _________ quits (~nobody@user/noodly) (*.net *.split) |
| 16:24:26 | × | eugenrh quits (~eugenrh@user/eugenrh) (*.net *.split) |
| 16:24:27 | × | df quits (~ben@justworks.xyz) (*.net *.split) |
| 16:24:43 | → | Smiles joins (uid551636@id-551636.lymington.irccloud.com) |
| 16:24:43 | → | willscripted joins (~willscrip@user/willscripted) |
| 16:24:43 | → | ljdarj joins (~Thunderbi@user/ljdarj) |
| 16:24:43 | → | billchenchina joins (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) |
| 16:24:43 | → | caconym joins (~caconym@user/caconym) |
| 16:24:43 | → | zmt00 joins (~zmt00@user/zmt00) |
| 16:24:43 | → | euandreh joins (~Thunderbi@189.6.105.228) |
| 16:24:43 | → | hiredman joins (~hiredman@frontier1.downey.family) |
| 16:24:43 | → | yaroot joins (~yaroot@2400:4052:ac0:d901:1cf4:2aff:fe51:c04c) |
| 16:24:43 | → | ft joins (~ft@p4fc2a26f.dip0.t-ipconnect.de) |
| 16:24:43 | → | Axman6 joins (~Axman6@user/axman6) |
| 16:24:43 | → | berberman joins (~berberman@user/berberman) |
| 16:24:43 | → | olivial joins (~benjaminl@user/benjaminl) |
| 16:24:43 | → | jjhoo joins (~jahakala@user/jjhoo) |
| 16:24:43 | → | talismanick joins (~user@2601:644:937c:ed10::ae5) |
| 16:24:43 | → | tabemann joins (~tabemann@2600:1700:7990:24e0:9f6b:68a6:cce5:e580) |
| 16:24:43 | → | manwithluck joins (manwithluc@gateway/vpn/protonvpn/manwithluck) |
| 16:24:43 | → | philopsos joins (~caecilius@user/philopsos) |
| 16:24:43 | → | hgolden joins (~hgolden@2603:8000:9d00:3ed1:6c70:1ac0:d127:74dd) |
| 16:24:43 | → | mikko joins (~mikko@user/mikko) |
| 16:24:43 | → | Pozyomka joins (~pyon@user/pyon) |
| 16:24:43 | → | arahael joins (~arahael@user/arahael) |
| 16:24:43 | → | zzz joins (~z@user/zero) |
| 16:24:43 | → | mesaoptimizer joins (~mesaoptim@user/PapuaHardyNet) |
| 16:24:43 | → | img joins (~img@user/img) |
| 16:24:43 | → | Flow joins (~none@gentoo/developer/flow) |
| 16:24:43 | → | Natch joins (~natch@c-92-34-7-158.bbcust.telenor.se) |
| 16:24:43 | → | ThePenguin joins (~ThePengui@cust-95-80-24-166.csbnet.se) |
| 16:24:43 | → | superbil joins (~superbil@114-32-231-70.hinet-ip.hinet.net) |
| 16:24:43 | → | glguy joins (glguy@libera/staff/glguy) |
| 16:24:43 | → | ZLima12 joins (~zlima12@user/meow/ZLima12) |
| 16:24:43 | → | Hafydd joins (~Hafydd@user/hafydd) |
| 16:24:43 | → | tired joins (~tired@user/tired) |
| 16:24:43 | → | cyphase joins (~cyphase@user/cyphase) |
| 16:24:43 | → | piele joins (~piele@tbonesteak.creativeserver.net) |
| 16:24:43 | → | dpk joins (~dpk@jains.nonceword.org) |
| 16:24:43 | → | anpad joins (~pandeyan@user/anpad) |
| 16:24:43 | → | tt1231097832435 joins (~tt1231@2603:6010:8700:4a81:219f:50d3:618a:a6ee) |
| 16:24:43 | → | todi joins (~todi@p57803331.dip0.t-ipconnect.de) |
| 16:24:43 | → | forell joins (~forell@user/forell) |
| 16:24:43 | → | ftzm joins (~ftzm@085080230038.dynamic.telenor.dk) |
| 16:24:43 | → | mud joins (~mud@user/kadoban) |
| 16:24:43 | → | enikar joins (~enikar@user/enikar) |
| 16:24:43 | → | rembo10 joins (~rembo10@main.remulis.com) |
| 16:24:43 | → | absence joins (torgeihe@hildring.pvv.ntnu.no) |
| 16:24:43 | → | unlucy joins (sid572875@user/unlucy) |
| 16:24:43 | → | aristid joins (sid1599@id-1599.uxbridge.irccloud.com) |
| 16:24:43 | → | Techcable joins (sid534393@user/Techcable) |
| 16:24:43 | → | rune_ joins (sid21167@id-21167.ilkley.irccloud.com) |
| 16:24:43 | → | szkl joins (uid110435@id-110435.uxbridge.irccloud.com) |
| 16:24:43 | → | TheCoffeMaker joins (~TheCoffeM@user/thecoffemaker) |
| 16:24:43 | → | fired joins (LA@2600:3c00::f03c:92ff:fee3:aace) |
| 16:24:43 | → | immae joins (~immae@2a01:4f8:141:53e7::) |
| 16:24:43 | → | ol0ck joins (~quassel@user/ol0ck) |
| 16:24:43 | → | byte joins (~byte@149.28.222.189) |
| 16:24:43 | → | dyniec joins (~dyniec@dybiec.info) |
| 16:24:43 | → | drdo joins (~drdo@bl9-110-63.dsl.telepac.pt) |
| 16:24:43 | → | cptaffe joins (~cptaffe@user/cptaffe) |
| 16:24:43 | → | flukiluke joins (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) |
| 16:24:43 | → | ridcully joins (~ridcully@pd951f16a.dip0.t-ipconnect.de) |
| 16:24:43 | → | disconnect3d joins (~disconnec@user/disconnect3d) |
| 16:24:43 | → | jocke-l joins (jocke-l@a.x0.is) |
| 16:24:43 | → | xacktm joins (xacktm@user/xacktm) |
| 16:24:43 | → | Adran joins (~adran@botters/adran) |
| 16:24:43 | → | tureba joins (~tureba@tureba.org) |
| 16:24:43 | → | Jonno_FTW joins (~come@user/jonno-ftw/x-0835346) |
| 16:24:43 | → | ell2 joins (~ellie@user/ellie) |
| 16:24:43 | → | hc joins (~hc@mail.hce.li) |
| 16:24:43 | → | sa joins (sid1055@id-1055.tinside.irccloud.com) |
| 16:24:43 | → | Pent joins (sid313808@id-313808.lymington.irccloud.com) |
| 16:24:43 | → | jakesyl_____ joins (sid56879@id-56879.hampstead.irccloud.com) |
| 16:24:43 | → | meinside joins (uid24933@id-24933.helmsley.irccloud.com) |
| 16:24:43 | → | TMA joins (tma@twin.jikos.cz) |
| 16:24:43 | → | Hobbyboy joins (Hobbyboy@hobbyboy.co.uk) |
| 16:24:43 | → | dispater joins (~dispater@mail.brprice.uk) |
| 16:24:43 | → | Yumemi_ joins (~Yumemi@chamoin.net) |
| 16:24:43 | → | mjrosenb joins (~mjrosenb@pool-96-232-177-77.nycmny.fios.verizon.net) |
| 16:24:43 | → | lockywolf joins (~lockywolf@coconut.lockywolf.net) |
| 16:24:43 | → | davl_ joins (~davl@207.154.228.18) |
| 16:24:43 | → | coldmountain joins (sid484352@id-484352.helmsley.irccloud.com) |
| 16:24:43 | → | alanz joins (sid110616@id-110616.uxbridge.irccloud.com) |
| 16:24:43 | → | dmj` joins (sid72307@id-72307.hampstead.irccloud.com) |
| 16:24:43 | → | meooow_ joins (~meooow@165.232.184.169) |
| 16:24:43 | → | shawwwn joins (sid6132@id-6132.helmsley.irccloud.com) |
| 16:24:43 | → | sa1 joins (sid7690@id-7690.ilkley.irccloud.com) |
| 16:24:43 | → | sprout joins (~sprout@2a02-a448-3a80-0-c61c-b515-5509-58e7.fixed6.kpn.net) |
| 16:24:43 | → | bailsman joins (~ejrietvel@revspace/participant/bailsman) |
| 16:24:43 | → | idnar joins (sid12240@debian/mithrandi) |
| 16:24:43 | → | ddb joins (ddb@tilde.club) |
| 16:24:43 | → | integral joins (sid296274@user/integral) |
| 16:24:43 | → | Aleksejs joins (~Aleksejs@107.170.21.106) |
| 16:24:43 | → | hook54321 joins (sid149355@user/hook54321) |
| 16:24:43 | → | SethTisue joins (sid14912@id-14912.ilkley.irccloud.com) |
| 16:24:43 | → | rncwnd joins (~quassel@2a01:4f8:221:27c6::1) |
| 16:24:43 | → | nonzen joins (~nonzen@user/nonzen) |
| 16:24:43 | → | pikajude joins (~jude@2001:19f0:ac01:373:5400:2ff:fe86:3274) |
| 16:24:43 | → | xerox joins (~edi@user/edi) |
| 16:24:43 | → | lambdap2371 joins (~lambdap@static.167.190.119.168.clients.your-server.de) |
| 16:24:43 | → | n3t joins (~n3t@user/n3t) |
| 16:24:43 | → | mmaruseacph2 joins (~mihai@mihai.page) |
| 16:24:43 | → | bryanv joins (~quassel@2603:c028:4503:7500:45b7:933:ab17:bc10) |
| 16:24:43 | → | geekosaur joins (sid609282@xmonad/geekosaur) |
| 16:24:43 | → | alinab joins (sid468903@id-468903.helmsley.irccloud.com) |
| 16:24:43 | → | jmct joins (sid160793@id-160793.tinside.irccloud.com) |
| 16:24:43 | → | sclv joins (sid39734@haskell/developer/sclv) |
| 16:24:43 | → | andjjj23 joins (~irc@107.170.228.47) |
| 16:24:43 | → | She joins (haveident@libera/staff/she/her) |
| 16:24:43 | → | dsal joins (sid13060@id-13060.lymington.irccloud.com) |
| 16:24:43 | → | haasn joins (sid579015@id-579015.hampstead.irccloud.com) |
| 16:24:43 | → | T_S_____ joins (sid501726@id-501726.uxbridge.irccloud.com) |
| 16:24:43 | → | S11001001 joins (sid42510@id-42510.ilkley.irccloud.com) |
| 16:24:43 | → | lexi-lambda joins (sid92601@id-92601.hampstead.irccloud.com) |
| 16:24:43 | → | amir joins (sid22336@user/amir) |
| 16:24:43 | → | krjst joins (~krjst@2604:a880:800:c1::16b:8001) |
| 16:24:43 | → | ProofTechnique_ joins (sid79547@id-79547.ilkley.irccloud.com) |
| 16:24:43 | → | koala_man joins (~vidar@157.146.251.23.bc.googleusercontent.com) |
| 16:24:43 | → | mcfrdy joins (~mcfrdy@user/mcfrdy) |
| 16:24:43 | → | opqdonut joins (opqdonut@pseudo.fixme.fi) |
| 16:24:56 | × | litharge quits (litharge@libera/bot/litharge) (Ping timeout: 630 seconds) |
| 16:24:56 | → | andreas303 joins (andreas303@is.drunk.and.ready-to.party) |
| 16:25:00 | → | oxide joins (~lambda@user/oxide) |
| 16:25:00 | → | terrorjack4 joins (~terrorjac@2a01:4f8:c17:dc9f::) |
| 16:25:00 | → | gentauro joins (~gentauro@user/gentauro) |
| 16:25:00 | → | visilii joins (~visilii@213.24.126.184) |
| 16:25:00 | → | Maxdamantus joins (~Maxdamant@user/maxdamantus) |
| 16:25:00 | → | dymenshen joins (zenmov@user/dymenshen) |
| 16:25:00 | → | remedan joins (~remedan@ip-62-245-108-153.bb.vodafone.cz) |
| 16:25:00 | → | mhatta joins (~mhatta@www21123ui.sakura.ne.jp) |
| 16:25:00 | → | thaumavorio joins (~thaumavor@thaumavor.io) |
| 16:25:00 | → | tritlo joins (sid58727@id-58727.hampstead.irccloud.com) |
| 16:25:00 | → | snek joins (sid280155@id-280155.lymington.irccloud.com) |
| 16:25:00 | → | hacklschorsch joins (~flo@2a01:4f9:3a:2296::2) |
| 16:25:00 | → | wryish joins (~wryish@216.246.119.62) |
| 16:25:00 | → | monochrom joins (trebla@216.138.220.146) |
| 16:25:00 | → | migas977 joins (~migas@static.140.65.63.178.clients.your-server.de) |
| 16:25:00 | → | _d0t joins (~{-d0t-}@user/-d0t-/x-7915216) |
| 16:25:00 | → | haveo joins (~weechat@pacamara.iuwt.fr) |
| 16:25:00 | → | yahb2 joins (~yahb2@user/tomsmeding/bot/yahb2) |
| 16:25:00 | → | cayley5 joins (~cayley5@user/phileasfogg) |
| 16:25:00 | → | acidsys joins (~crameleon@openSUSE/member/crameleon) |
| 16:25:00 | → | dilaver_ joins (~dilaver_@user/dilaver-:32218) |
| 16:25:00 | → | jleightcap joins (7bc4014b62@user/jleightcap) |
| 16:25:00 | → | sm2n joins (ae95cb1267@user/sm2n) |
| 16:25:00 | → | chaitlatte0 joins (ea29c0bb16@user/chaitlatte0) |
| 16:25:00 | → | duncan joins (c6181279e3@user/meow/duncan) |
| 16:25:00 | → | 082AAS5CR joins (7569f027cf@2a03:6000:1812:100::e4) |
| 16:25:00 | → | henrytill joins (e0180937c3@2a03:6000:1812:100::e8c) |
| 16:25:00 | → | lucyy joins (228ee8f0ce@user/lucyy) |
| 16:25:00 | → | bwolf joins (c3bc363dd1@2a03:6000:1812:100::180) |
| 16:25:00 | → | eso joins (a0662dfd5e@2a03:6000:1812:100::1266) |
| 16:25:00 | → | shreyasminocha joins (51fdc93eda@user/shreyasminocha) |
| 16:25:00 | → | jkoshy joins (99b9359beb@user/jkoshy) |
| 16:25:00 | → | sus joins (1b7af6299f@user/zeromomentum) |
| 16:25:00 | → | whereiseveryone joins (206ba86c98@2a03:6000:1812:100::2e4) |
| 16:25:00 | → | filwisher joins (2e6936c793@2a03:6000:1812:100::170) |
| 16:25:00 | → | lane joins (809450f172@2a03:6000:1812:100::1300) |
| 16:25:00 | → | paotsaq joins (~paotsaq@127.209.37.188.rev.vodafone.pt) |
| 16:25:00 | → | _________ joins (~nobody@user/noodly) |
| 16:25:00 | → | eugenrh joins (~eugenrh@user/eugenrh) |
| 16:25:00 | → | df joins (~ben@justworks.xyz) |
| 16:25:00 | tantalum.libera.chat | sets mode +v yahb2 |
| 16:25:05 | × | lambdabot quits (~lambdabot@haskell/bot/lambdabot) (Remote host closed the connection) |
| 16:25:05 | → | lambdabot joins (~lambdabot@silicon.int-e.eu) |
| 16:25:05 | × | lambdabot quits (~lambdabot@silicon.int-e.eu) (Changing host) |
| 16:25:05 | → | lambdabot joins (~lambdabot@haskell/bot/lambdabot) |
| 16:25:05 | ChanServ | sets mode +v lambdabot |
| 16:25:16 | → | Arsen joins (arsen@gentoo/developer/managarm.dev.Arsen) |
| 16:25:46 | → | kqr joins (~kqr@static.143.81.108.65.clients.your-server.de) |
| 16:26:06 | → | pavonia joins (~user@user/siracusa) |
| 16:26:06 | → | yushyin joins (aC7s4hKZiM@mail.karif.server-speed.net) |
| 16:26:06 | → | s4msung joins (YSkIhMhdIR@user/s4msung) |
| 16:26:06 | → | ShannonB joins (~ShannonB@user/ShannonB) |
| 16:26:06 | → | arthurvl joins (~arthurvl@77-174-49-144.fixed.kpn.net) |
| 16:26:06 | → | dolio joins (~dolio@130.44.140.168) |
| 16:26:06 | → | Teacup joins (~teacup@user/teacup) |
| 16:26:06 | → | Fijxu joins (~Fijxu@user/fijxu) |
| 16:26:06 | → | Patternmaster joins (~georg@user/Patternmaster) |
| 16:26:06 | → | Fischmiep joins (~Fischmiep@user/Fischmiep) |
| 16:26:06 | → | AWizzArd joins (~code@user/awizzard) |
| 16:26:06 | → | ham2 joins (~ham@user/ham) |
| 16:26:06 | → | bastelfreak joins (bastelfrea@libera/staff/VoxPupuli.bastelfreak) |
| 16:26:06 | → | TimWolla joins (~timwolla@2a01:4f8:150:6153:beef::6667) |
| 16:26:06 | → | emmanuelux_ joins (~emmanuelu@user/emmanuelux) |
| 16:26:06 | → | kronicmage joins (~kronicmag@neotame.csclub.uwaterloo.ca) |
| 16:26:06 | → | rini joins (~rini@user/rini) |
| 16:26:06 | → | Eoco joins (~ian@128.101.131.218) |
| 16:26:06 | → | gawen joins (~gawen@user/gawen) |
| 16:26:06 | → | ggb joins (a62ffbaf4f@2a03:6000:1812:100::3ac) |
| 16:26:06 | → | jakzale joins (6291399afa@user/jakzale) |
| 16:26:06 | → | ACuriousMoose joins (~ACuriousM@156.34.161.188) |
| 16:26:06 | → | swistak joins (~swistak@185.21.216.141) |
| 16:26:06 | → | Typedfern joins (~Typedfern@59.red-83-37-27.dynamicip.rima-tde.net) |
| 16:26:06 | → | mewra joins (~aranea@wireguard/contributorcat/mira) |
| 16:26:06 | → | Rembane joins (~Rembane@user/Rembane) |
| 16:26:06 | → | tnks joins (sid412124@id-412124.helmsley.irccloud.com) |
| 16:26:06 | → | NemesisD joins (sid24071@id-24071.lymington.irccloud.com) |
| 16:26:06 | → | hovsater joins (sid499516@user/hovsater) |
| 16:26:06 | → | buhman joins (sid411355@user/buhman) |
| 16:26:06 | → | Hecate joins (~mariposa@user/hecate) |
| 16:26:06 | → | mniip_ joins (mniip@libera/staff/mniip) |
| 16:26:09 | × | ham2 quits (~ham@user/ham) (Max SendQ exceeded) |
| 16:26:09 | × | Fijxu quits (~Fijxu@user/fijxu) (Max SendQ exceeded) |
| 16:26:24 | → | ham2 joins (~ham@user/ham) |
| 16:26:25 | × | unlucy quits (sid572875@user/unlucy) (Ping timeout: 248 seconds) |
| 16:26:26 | × | szkl quits (uid110435@id-110435.uxbridge.irccloud.com) (Ping timeout: 248 seconds) |
| 16:26:27 | → | bliminse joins (~bliminse@user/bliminse) |
| 16:26:30 | × | Smiles quits (uid551636@id-551636.lymington.irccloud.com) (Ping timeout: 249 seconds) |
| 16:26:37 | × | smiesner quits (b0cf5acf8c@2a03:6000:1812:100::13b9) (*.net *.split) |
| 16:26:37 | × | Square quits (~Square@user/square) (*.net *.split) |
| 16:26:37 | × | L29Ah quits (~L29Ah@wikipedia/L29Ah) (*.net *.split) |
| 16:26:37 | × | xff0x quits (~xff0x@2405:6580:b080:900:8539:398e:9716:eb72) (*.net *.split) |
| 16:26:37 | × | mceresa quits (~mceresa@user/mceresa) (*.net *.split) |
| 16:26:37 | × | kimiamania quits (~924ba01d@user/kimiamania) (*.net *.split) |
| 16:26:38 | × | j1n37 quits (j1n37@user/j1n37) (*.net *.split) |
| 16:26:38 | × | alphazone_ quits (~alphazone@2.219.56.221) (*.net *.split) |
| 16:26:38 | × | nek0 quits (~nek0@user/nek0) (*.net *.split) |
| 16:26:38 | × | Leary quits (~Leary@user/Leary/x-0910699) (*.net *.split) |
| 16:26:38 | × | jle` quits (~jle`@2603:8001:3b02:84d4:4ba:cd34:52ca:7a5) (*.net *.split) |
| 16:26:38 | × | mulk quits (~mulk@pd95146e9.dip0.t-ipconnect.de) (*.net *.split) |
| 16:26:38 | × | turlando quits (~turlando@user/turlando) (*.net *.split) |
| 16:26:38 | × | poscat quits (~poscat@user/poscat) (*.net *.split) |
| 16:26:38 | × | leah2 quits (~leah@vuxu.org) (*.net *.split) |
| 16:26:39 | × | Miroboru quits (~myrvoll@178-164-114.82.3p.ntebredband.no) (*.net *.split) |
| 16:26:39 | × | lbseale quits (~quassel@user/ep1ctetus) (*.net *.split) |
| 16:26:39 | × | GoldsteinQ quits (~goldstein@goldstein.rs) (*.net *.split) |
| 16:26:39 | × | hololeap quits (~quassel@user/hololeap) (*.net *.split) |
| 16:26:39 | × | krei-se quits (~krei-se@p5085d46e.dip0.t-ipconnect.de) (*.net *.split) |
| 16:26:39 | × | flounders quits (~flounders@173.246.200.74) (*.net *.split) |
| 16:26:39 | × | smtt quits (smt@user/smtt) (*.net *.split) |
| 16:26:39 | × | robertm quits (robertm@lattice.rojoma.com) (*.net *.split) |
| 16:26:39 | × | Me-me quits (~me-me@user/me-me) (*.net *.split) |
| 16:26:40 | × | m1dnight quits (~m1dnight@d8D861908.access.telenet.be) (*.net *.split) |
| 16:26:40 | × | danso quits (~danso@user/danso) (*.net *.split) |
| 16:26:40 | × | itaipu quits (~itaipu@168.121.99.42) (*.net *.split) |
| 16:26:40 | × | Batzy quits (~quassel@user/batzy) (*.net *.split) |
| 16:26:40 | × | tolt quits (~weechat-h@li219-154.members.linode.com) (*.net *.split) |
| 16:26:40 | × | systemfault quits (sid267009@about/typescript/member/systemfault) (*.net *.split) |
| 16:26:40 | × | shachaf quits (~shachaf@user/shachaf) (*.net *.split) |
| 16:26:40 | × | astroanax quits (~astroanax@2001:19f0:7402:f82:5400:1ff:fec4:f7d7) (*.net *.split) |
| 16:26:40 | × | e-snail quits (~pete@user/e-snail) (*.net *.split) |
| 16:26:40 | × | bjs quits (sid190364@user/bjs) (*.net *.split) |
| 16:26:40 | × | caasih quits (sid13241@id-13241.ilkley.irccloud.com) (*.net *.split) |
| 16:26:41 | × | iphy quits (sid67735@user/iphy) (*.net *.split) |
| 16:26:41 | × | totbwf quits (uid402332@id-402332.uxbridge.irccloud.com) (*.net *.split) |
| 16:26:41 | × | energizer quits (~energizer@user/energizer) (*.net *.split) |
| 16:26:41 | × | nicole quits (ilbelkyr@libera/staff/ilbelkyr) (*.net *.split) |
| 16:26:41 | × | urdh quits (~urdh@user/urdh) (*.net *.split) |
| 16:26:41 | × | koolazer quits (~koo@user/koolazer) (*.net *.split) |
| 16:26:41 | × | carter_ quits (sid14827@id-14827.helmsley.irccloud.com) (*.net *.split) |
| 16:26:41 | × | lisq quits (~quassel@lis.moe) (*.net *.split) |
| 16:26:41 | × | xnyhps quits (~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288) (*.net *.split) |
| 16:26:41 | × | it_ quits (~quassel@v2202212189510211193.supersrv.de) (*.net *.split) |
| 16:26:41 | × | stefan-_ quits (~cri@42dots.de) (*.net *.split) |
| 16:26:41 | × | tdammers quits (~tdammers@41-138-178-143.ftth.glasoperator.nl) (*.net *.split) |
| 16:26:52 | → | Fijxu joins (~Fijxu@user/fijxu) |
| 16:26:54 | × | sa quits (sid1055@id-1055.tinside.irccloud.com) (Ping timeout: 260 seconds) |
| 16:26:58 | × | Techcable quits (sid534393@user/Techcable) (Ping timeout: 248 seconds) |
| 16:26:58 | × | hook54321 quits (sid149355@user/hook54321) (Ping timeout: 248 seconds) |
| 16:27:00 | → | noteness_ joins (~noteness@user/noteness) |
| 16:27:02 | → | dysfigured joins (~dfg@dfg.rocks) |
| 16:27:18 | → | smiesner joins (b0cf5acf8c@2a03:6000:1812:100::13b9) |
| 16:27:18 | → | Square joins (~Square@user/square) |
| 16:27:18 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 16:27:18 | → | xff0x joins (~xff0x@2405:6580:b080:900:8539:398e:9716:eb72) |
| 16:27:18 | → | mceresa joins (~mceresa@user/mceresa) |
| 16:27:18 | → | kimiamania joins (~924ba01d@user/kimiamania) |
| 16:27:18 | → | j1n37 joins (j1n37@user/j1n37) |
| 16:27:18 | → | alphazone_ joins (~alphazone@2.219.56.221) |
| 16:27:18 | → | nek0 joins (~nek0@user/nek0) |
| 16:27:18 | → | Leary joins (~Leary@user/Leary/x-0910699) |
| 16:27:18 | → | jle` joins (~jle`@2603:8001:3b02:84d4:4ba:cd34:52ca:7a5) |
| 16:27:18 | → | mulk joins (~mulk@pd95146e9.dip0.t-ipconnect.de) |
| 16:27:18 | → | e-snail joins (~pete@user/e-snail) |
| 16:27:18 | → | turlando joins (~turlando@user/turlando) |
| 16:27:18 | → | poscat joins (~poscat@user/poscat) |
| 16:27:18 | → | leah2 joins (~leah@vuxu.org) |
| 16:27:18 | → | Miroboru joins (~myrvoll@178-164-114.82.3p.ntebredband.no) |
| 16:27:18 | → | lbseale joins (~quassel@user/ep1ctetus) |
| 16:27:18 | → | GoldsteinQ joins (~goldstein@goldstein.rs) |
| 16:27:18 | → | hololeap joins (~quassel@user/hololeap) |
| 16:27:18 | → | krei-se joins (~krei-se@p5085d46e.dip0.t-ipconnect.de) |
| 16:27:18 | → | flounders joins (~flounders@173.246.200.74) |
| 16:27:18 | → | smtt joins (smt@user/smtt) |
| 16:27:18 | → | robertm joins (robertm@lattice.rojoma.com) |
| 16:27:18 | → | Me-me joins (~me-me@user/me-me) |
| 16:27:18 | → | m1dnight joins (~m1dnight@d8D861908.access.telenet.be) |
| 16:27:18 | → | danso joins (~danso@user/danso) |
| 16:27:18 | → | itaipu joins (~itaipu@168.121.99.42) |
| 16:27:18 | → | Batzy joins (~quassel@user/batzy) |
| 16:27:18 | → | tolt joins (~weechat-h@li219-154.members.linode.com) |
| 16:27:18 | → | systemfault joins (sid267009@about/typescript/member/systemfault) |
| 16:27:18 | → | shachaf joins (~shachaf@user/shachaf) |
| 16:27:18 | → | astroanax joins (~astroanax@2001:19f0:7402:f82:5400:1ff:fec4:f7d7) |
| 16:27:18 | → | bjs joins (sid190364@user/bjs) |
| 16:27:18 | → | caasih joins (sid13241@id-13241.ilkley.irccloud.com) |
| 16:27:18 | → | iphy joins (sid67735@user/iphy) |
| 16:27:18 | → | totbwf joins (uid402332@id-402332.uxbridge.irccloud.com) |
| 16:27:18 | → | energizer joins (~energizer@user/energizer) |
| 16:27:18 | → | nicole joins (ilbelkyr@libera/staff/ilbelkyr) |
| 16:27:18 | → | urdh joins (~urdh@user/urdh) |
| 16:27:18 | → | koolazer joins (~koo@user/koolazer) |
| 16:27:18 | → | carter_ joins (sid14827@id-14827.helmsley.irccloud.com) |
| 16:27:18 | → | lisq joins (~quassel@lis.moe) |
| 16:27:18 | → | xnyhps joins (~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288) |
| 16:27:18 | → | it_ joins (~quassel@v2202212189510211193.supersrv.de) |
| 16:27:18 | → | stefan-_ joins (~cri@42dots.de) |
| 16:27:18 | → | tdammers joins (~tdammers@41-138-178-143.ftth.glasoperator.nl) |
| 16:27:22 | → | CrunchyFlakes joins (~CrunchyFl@ip1f13e94e.dynamic.kabel-deutschland.de) |
| 16:27:22 | → | gvg joins (~dcd@user/gvg) |
| 16:27:22 | → | rdcdr joins (~rdcdr@user/rdcdr) |
| 16:27:22 | → | tv joins (~tv@user/tv) |
| 16:27:22 | → | nschoe joins (~nschoe@82-65-202-30.subs.proxad.net) |
| 16:27:22 | → | kaskal joins (~kaskal@213-147-165-220.nat.highway.webapn.at) |
| 16:27:22 | → | sand-witch joins (~m-mzmz6l@vmi833741.contaboserver.net) |
| 16:27:22 | → | Versality joins (~Versality@user/Versality) |
| 16:27:22 | → | bairyn joins (~bairyn@50.250.232.19) |
| 16:27:22 | → | preflex joins (~preflex@user/mauke/bot/preflex) |
| 16:27:22 | → | zfnmxt joins (~zfnmxt@user/zfnmxt) |
| 16:27:22 | → | caubert joins (~caubert@user/caubert) |
| 16:27:22 | → | spider1 joins (spider@tilde.cafe) |
| 16:27:22 | → | Spawns_Carpeting joins (~mobile@user/spawns-carpeting/x-6969421) |
| 16:27:22 | → | Clint joins (~Clint@user/clint) |
| 16:27:22 | → | meejah joins (~meejah@rutas.meejah.ca) |
| 16:27:22 | → | tessier joins (~treed@ec2-184-72-149-67.compute-1.amazonaws.com) |
| 16:27:22 | → | wz1000 joins (~zubin@static.11.113.47.78.clients.your-server.de) |
| 16:27:22 | → | barthandelous01 joins (barth@triton.blinkenshell.org) |
| 16:27:22 | → | institor joins (~henricus@user/institor) |
| 16:27:22 | → | Dykam joins (Dykam@dykam.nl) |
| 16:27:22 | → | dfg joins (~dfg@user/dfg) |
| 16:27:22 | → | tmr joins (~tamer@user/tamer) |
| 16:27:22 | → | aku joins (aku@65.108.245.241) |
| 16:27:22 | → | noteness joins (~noteness@user/noteness) |
| 16:27:22 | → | Spawns joins (~mobile@user/spawns-carpeting/x-6969421) |
| 16:27:24 | × | dfg quits (~dfg@user/dfg) (Max SendQ exceeded) |
| 16:27:24 | × | Spawns_Carpeting quits (~mobile@user/spawns-carpeting/x-6969421) (Max SendQ exceeded) |
| 16:27:24 | × | noteness quits (~noteness@user/noteness) (Max SendQ exceeded) |
| 16:27:24 | × | gvg quits (~dcd@user/gvg) (Max SendQ exceeded) |
| 16:27:24 | × | CrunchyFlakes quits (~CrunchyFl@ip1f13e94e.dynamic.kabel-deutschland.de) (Max SendQ exceeded) |
| 16:27:25 | × | kaskal quits (~kaskal@213-147-165-220.nat.highway.webapn.at) (Max SendQ exceeded) |
| 16:27:25 | × | Versality quits (~Versality@user/Versality) (Max SendQ exceeded) |
| 16:27:25 | × | pavonia quits (~user@user/siracusa) (Read error: Connection reset by peer) |
| 16:27:25 | → | CrunchyFlakes_ joins (~CrunchyFl@31.19.233.78) |
| 16:27:32 | × | tcard_ quits (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split) |
| 16:27:32 | × | red-snail quits (~snail@static.151.210.203.116.clients.your-server.de) (*.net *.split) |
| 16:27:33 | × | EvanR quits (~EvanR@user/evanr) (*.net *.split) |
| 16:27:33 | × | kritzefitz quits (~kritzefit@debian/kritzefitz) (*.net *.split) |
| 16:27:33 | × | NiKaN quits (sid385034@id-385034.helmsley.irccloud.com) (*.net *.split) |
| 16:27:33 | × | Kamuela quits (sid111576@id-111576.tinside.irccloud.com) (*.net *.split) |
| 16:27:33 | × | remmie quits (ianremsen@tilde.team) (*.net *.split) |
| 16:27:33 | × | vulpine quits (xfnw@user/meow/xfnw) (*.net *.split) |
| 16:27:33 | × | tjbc quits (~tjbc@user/fliife) (*.net *.split) |
| 16:27:34 | × | RussetParrotBear quits (45ce440a48@2a03:6000:1812:100::e2) (*.net *.split) |
| 16:27:34 | × | shane quits (~shane@ana.rch.ist) (*.net *.split) |
| 16:27:34 | × | chymera quits (~chymera@ns1000526.ip-51-81-46.us) (*.net *.split) |
| 16:27:34 | × | bw quits (sid2730@user/betawaffle) (*.net *.split) |
| 16:27:34 | × | adamCS quits (~adamCS@71.167.235.212) (*.net *.split) |
| 16:27:34 | × | pmk_ quits (6afe4476a1@2a03:6000:1812:100::26d) (*.net *.split) |
| 16:27:34 | × | apache quits (apache2@anubis.0x90.dk) (*.net *.split) |
| 16:27:34 | × | kmein quits (~weechat@user/kmein) (*.net *.split) |
| 16:27:34 | × | artu quits (~artu@li90-184.members.linode.com) (*.net *.split) |
| 16:27:34 | × | markasoftware quits (~quassel@107.161.26.124) (*.net *.split) |
| 16:27:35 | × | sus0 quits (zero@user/zeromomentum) (*.net *.split) |
| 16:27:35 | × | taktoa[c] quits (sid282096@id-282096.tinside.irccloud.com) (*.net *.split) |
| 16:27:35 | × | sweater1 quits (~sweater@206.81.18.26) (*.net *.split) |
| 16:27:35 | × | V quits (~v@ircpuzzles/2022/april/winner/V) (*.net *.split) |
| 16:27:35 | × | gAy_Dragon quits (A_D@libera/staff/dragon) (*.net *.split) |
| 16:27:35 | × | SanchayanMaity quits (sid478177@id-478177.hampstead.irccloud.com) (*.net *.split) |
| 16:27:35 | × | _0xa_ quits (~user@2001:19f0:5001:2ba8:5400:1ff:feda:88fc) (*.net *.split) |
| 16:27:35 | × | auri quits (~auri@fsf/member/auri) (*.net *.split) |
| 16:27:35 | × | deriamis quits (nobody@2600:3c0a::f03c:95ff:fee8:f335) (*.net *.split) |
| 16:27:35 | × | mustafa quits (sid502723@rockylinux/releng/mustafa) (*.net *.split) |
| 16:27:35 | × | xelxebar quits (~xelxebar@wilsonb.com) (*.net *.split) |
| 16:27:35 | × | Adeon quits (sid418992@id-418992.lymington.irccloud.com) (*.net *.split) |
| 16:27:35 | × | APic quits (apic@apic.name) (*.net *.split) |
| 16:27:36 | × | dminuoso quits (~weechat@user/dminuoso) (*.net *.split) |
| 16:27:36 | × | xnbya2 quits (~xnbya@2a01:4f8:c17:cbdd::1) (*.net *.split) |
| 16:27:36 | × | inedia quits (~irc@2600:3c00:e000:287::1) (*.net *.split) |
| 16:27:36 | × | edmundnoble_ quits (sid229620@id-229620.helmsley.irccloud.com) (*.net *.split) |
| 16:27:36 | × | lally quits (sid388228@id-388228.uxbridge.irccloud.com) (*.net *.split) |
| 16:27:36 | × | dy quits (sid3438@user/dy) (*.net *.split) |
| 16:27:36 | × | Jon quits (jon@dow.land) (*.net *.split) |
| 16:27:36 | × | codedmart quits (codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split) |
| 16:27:36 | × | Boarders_____ quits (sid425905@id-425905.lymington.irccloud.com) (*.net *.split) |
| 16:27:36 | × | gaze__ quits (sid387101@id-387101.helmsley.irccloud.com) (*.net *.split) |
| 16:27:36 | × | bradparker quits (sid262931@id-262931.uxbridge.irccloud.com) (*.net *.split) |
| 16:27:36 | × | aspen quits (sid449115@id-449115.helmsley.irccloud.com) (*.net *.split) |
| 16:27:36 | × | dfordvm quits (~dfordivam@160.16.87.223.v6.sakura.ne.jp) (*.net *.split) |
| 16:27:46 | → | kaskal joins (~kaskal@2001:4bb8:2c3:1470:8b1d:2068:6ef2:d351) |
| 16:27:47 | → | litharge joins (litharge@libera/bot/litharge) |
| 16:27:58 | → | gvg joins (~dcd@user/gvg) |
| 16:28:02 | → | tcard_ joins (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
| 16:28:02 | → | red-snail joins (~snail@static.151.210.203.116.clients.your-server.de) |
| 16:28:02 | → | EvanR joins (~EvanR@user/evanr) |
| 16:28:02 | → | kritzefitz joins (~kritzefit@debian/kritzefitz) |
| 16:28:02 | → | NiKaN joins (sid385034@id-385034.helmsley.irccloud.com) |
| 16:28:02 | → | Kamuela joins (sid111576@id-111576.tinside.irccloud.com) |
| 16:28:02 | → | remmie joins (ianremsen@tilde.team) |
| 16:28:02 | → | vulpine joins (xfnw@user/meow/xfnw) |
| 16:28:02 | → | tjbc joins (~tjbc@user/fliife) |
| 16:28:02 | → | RussetParrotBear joins (45ce440a48@2a03:6000:1812:100::e2) |
| 16:28:02 | → | shane joins (~shane@ana.rch.ist) |
| 16:28:02 | → | chymera joins (~chymera@ns1000526.ip-51-81-46.us) |
| 16:28:02 | → | bw joins (sid2730@user/betawaffle) |
| 16:28:02 | → | adamCS joins (~adamCS@71.167.235.212) |
| 16:28:02 | → | pmk_ joins (6afe4476a1@2a03:6000:1812:100::26d) |
| 16:28:02 | → | apache joins (apache2@anubis.0x90.dk) |
| 16:28:02 | → | kmein joins (~weechat@user/kmein) |
| 16:28:02 | → | artu joins (~artu@li90-184.members.linode.com) |
| 16:28:02 | → | markasoftware joins (~quassel@107.161.26.124) |
| 16:28:02 | → | sus0 joins (zero@user/zeromomentum) |
| 16:28:02 | → | taktoa[c] joins (sid282096@id-282096.tinside.irccloud.com) |
| 16:28:02 | → | sweater1 joins (~sweater@206.81.18.26) |
| 16:28:02 | → | V joins (~v@ircpuzzles/2022/april/winner/V) |
| 16:28:02 | → | gAy_Dragon joins (A_D@libera/staff/dragon) |
| 16:28:02 | → | SanchayanMaity joins (sid478177@id-478177.hampstead.irccloud.com) |
| 16:28:02 | → | _0xa_ joins (~user@2001:19f0:5001:2ba8:5400:1ff:feda:88fc) |
| 16:28:02 | → | auri joins (~auri@fsf/member/auri) |
| 16:28:02 | → | deriamis joins (nobody@2600:3c0a::f03c:95ff:fee8:f335) |
| 16:28:02 | → | mustafa joins (sid502723@rockylinux/releng/mustafa) |
| 16:28:02 | → | xelxebar joins (~xelxebar@wilsonb.com) |
| 16:28:02 | → | Adeon joins (sid418992@id-418992.lymington.irccloud.com) |
| 16:28:02 | → | APic joins (apic@apic.name) |
| 16:28:02 | → | dminuoso joins (~weechat@user/dminuoso) |
| 16:28:02 | → | xnbya2 joins (~xnbya@2a01:4f8:c17:cbdd::1) |
| 16:28:02 | → | inedia joins (~irc@2600:3c00:e000:287::1) |
| 16:28:02 | → | edmundnoble_ joins (sid229620@id-229620.helmsley.irccloud.com) |
| 16:28:02 | → | lally joins (sid388228@id-388228.uxbridge.irccloud.com) |
| 16:28:02 | → | dy joins (sid3438@user/dy) |
| 16:28:02 | → | Jon joins (jon@dow.land) |
| 16:28:02 | → | codedmart joins (codedmart@2600:3c01::f03c:92ff:fefe:8511) |
| 16:28:02 | → | Boarders_____ joins (sid425905@id-425905.lymington.irccloud.com) |
| 16:28:02 | → | gaze__ joins (sid387101@id-387101.helmsley.irccloud.com) |
| 16:28:02 | → | bradparker joins (sid262931@id-262931.uxbridge.irccloud.com) |
| 16:28:02 | → | aspen joins (sid449115@id-449115.helmsley.irccloud.com) |
| 16:28:02 | → | dfordvm joins (~dfordivam@160.16.87.223.v6.sakura.ne.jp) |
| 16:28:05 | → | unlucy joins (sid572875@user/unlucy) |
| 16:28:07 | → | jespada joins (~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net) |
| 16:28:07 | × | institor quits (~henricus@user/institor) (Remote host closed the connection) |
| 16:28:10 | × | alphazone_ quits (~alphazone@2.219.56.221) (Max SendQ exceeded) |
| 16:28:23 | → | Techcable joins (sid534393@user/Techcable) |
| 16:28:25 | → | institor joins (~henricus@user/institor) |
| 16:28:36 | × | alexherbo2 quits (~alexherbo@2a02-8440-3307-845b-b47a-8df0-484a-dd57.rev.sfr.net) (*.net *.split) |
| 16:28:42 | → | szkl joins (uid110435@id-110435.uxbridge.irccloud.com) |
| 16:28:43 | → | alexherbo2 joins (~alexherbo@2a02-8440-3307-845b-b47a-8df0-484a-dd57.rev.sfr.net) |
| 16:29:05 | × | gvg quits (~dcd@user/gvg) (*.net *.split) |
| 16:29:05 | × | unlucy quits (sid572875@user/unlucy) (*.net *.split) |
| 16:29:05 | × | noteness_ quits (~noteness@user/noteness) (*.net *.split) |
| 16:29:05 | × | Fijxu quits (~Fijxu@user/fijxu) (*.net *.split) |
| 16:29:05 | × | bliminse quits (~bliminse@user/bliminse) (*.net *.split) |
| 16:29:05 | × | kqr quits (~kqr@static.143.81.108.65.clients.your-server.de) (*.net *.split) |
| 16:29:05 | × | Arsen quits (arsen@gentoo/developer/managarm.dev.Arsen) (*.net *.split) |
| 16:29:05 | × | lambdabot quits (~lambdabot@haskell/bot/lambdabot) (*.net *.split) |
| 16:29:05 | × | takuan quits (~takuan@178-116-218-225.access.telenet.be) (*.net *.split) |
| 16:29:06 | × | gorignak quits (~gorignak@user/gorignak) (*.net *.split) |
| 16:29:06 | × | Digitteknohippie quits (~user@user/digit) (*.net *.split) |
| 16:29:06 | × | ethantwardy quits (user@user/ethantwardy) (*.net *.split) |
| 16:29:06 | × | tomboy64 quits (~tomboy64@user/tomboy64) (*.net *.split) |
| 16:29:07 | × | alioguzhan quits (~Thunderbi@78.173.69.189) (*.net *.split) |
| 16:29:07 | × | fluxit quits (~fluxit@192.241.192.75) (*.net *.split) |
| 16:29:07 | × | koz quits (~koz@121.99.240.58) (*.net *.split) |
| 16:29:08 | × | Igloo quits (~ian@81.2.99.210) (*.net *.split) |
| 16:29:08 | × | jove quits (~quassel@user/jove) (*.net *.split) |
| 16:29:08 | × | kaol quits (~kaol@94-237-45-144.nl-ams1.upcloud.host) (*.net *.split) |
| 16:29:08 | × | tuxpaint quits (~a@put.gay) (*.net *.split) |
| 16:29:08 | × | xstill_ quits (xstill@fimu/xstill) (*.net *.split) |
| 16:29:08 | × | sajith quits (~sajith@user/sajith) (*.net *.split) |
| 16:29:08 | × | CalimeroTeknik quits (~calimero@user/calimeroteknik) (*.net *.split) |
| 16:29:08 | × | Putonlalla quits (~Putonlall@it-cyan.it.jyu.fi) (*.net *.split) |
| 16:29:08 | × | exarkun quits (~exarkun@user/exarkun) (*.net *.split) |
| 16:29:09 | × | olivial quits (~benjaminl@user/benjaminl) (Ping timeout: 240 seconds) |
| 16:29:31 | → | sa joins (sid1055@id-1055.tinside.irccloud.com) |
| 16:29:45 | → | unlucy joins (sid572875@user/unlucy) |
| 16:29:45 | → | gvg joins (~dcd@user/gvg) |
| 16:29:45 | → | noteness_ joins (~noteness@user/noteness) |
| 16:29:45 | → | Fijxu joins (~Fijxu@user/fijxu) |
| 16:29:45 | → | bliminse joins (~bliminse@user/bliminse) |
| 16:29:45 | → | kqr joins (~kqr@static.143.81.108.65.clients.your-server.de) |
| 16:29:45 | → | Arsen joins (arsen@gentoo/developer/managarm.dev.Arsen) |
| 16:29:45 | → | lambdabot joins (~lambdabot@haskell/bot/lambdabot) |
| 16:29:45 | → | takuan joins (~takuan@178-116-218-225.access.telenet.be) |
| 16:29:45 | → | gorignak joins (~gorignak@user/gorignak) |
| 16:29:45 | → | fluxit joins (~fluxit@192.241.192.75) |
| 16:29:45 | → | Digitteknohippie joins (~user@user/digit) |
| 16:29:45 | → | ethantwardy joins (user@user/ethantwardy) |
| 16:29:45 | → | tomboy64 joins (~tomboy64@user/tomboy64) |
| 16:29:45 | → | alioguzhan joins (~Thunderbi@78.173.69.189) |
| 16:29:45 | → | koz joins (~koz@121.99.240.58) |
| 16:29:45 | → | Igloo joins (~ian@81.2.99.210) |
| 16:29:45 | → | jove joins (~quassel@user/jove) |
| 16:29:45 | → | kaol joins (~kaol@94-237-45-144.nl-ams1.upcloud.host) |
| 16:29:45 | → | tuxpaint joins (~a@put.gay) |
| 16:29:45 | → | xstill_ joins (xstill@fimu/xstill) |
| 16:29:45 | → | sajith joins (~sajith@user/sajith) |
| 16:29:45 | → | CalimeroTeknik joins (~calimero@user/calimeroteknik) |
| 16:29:45 | → | Putonlalla joins (~Putonlall@it-cyan.it.jyu.fi) |
| 16:29:45 | → | exarkun joins (~exarkun@user/exarkun) |
| 16:29:45 | tantalum.libera.chat | sets mode +v lambdabot |
| 16:29:48 | → | 076AAUYI8 joins (sid149355@user/hook54321) |
| 16:29:48 | → | Smiles joins (uid551636@id-551636.lymington.irccloud.com) |
| 16:30:17 | → | Tisoxin6 joins (~Ikosit@user/ikosit) |
| 16:30:20 | × | welterde1 quits (~welterde@thinkbase.srv.welterde.de) (*.net *.split) |
| 16:30:20 | × | lol_ quits (~lol@2603:3016:1e01:b9c0:4843:dab9:4f1f:25c0) (*.net *.split) |
| 16:30:20 | × | Tisoxin quits (~Ikosit@user/ikosit) (*.net *.split) |
| 16:30:20 | × | __monty__ quits (~toonn@user/toonn) (*.net *.split) |
| 16:30:20 | × | int-e quits (~noone@int-e.eu) (*.net *.split) |
| 16:30:20 | × | JamesMowery43 quits (~JamesMowe@ip68-228-212-232.ph.ph.cox.net) (*.net *.split) |
| 16:30:20 | × | youthlic quits (~Thunderbi@user/youthlic) (*.net *.split) |
| 16:30:20 | × | noctuks quits (d4toxF5wNA@user/noctux) (*.net *.split) |
| 16:30:21 | × | Inst quits (~Inst@user/Inst) (*.net *.split) |
| 16:30:21 | × | abrar quits (~abrar@pool-72-78-199-167.phlapa.fios.verizon.net) (*.net *.split) |
| 16:30:21 | × | tomsmeding quits (~tomsmedin@2a01:4f8:c0c:5e5e::2) (*.net *.split) |
| 16:30:21 | × | dostoyevsky2 quits (~sck@user/dostoyevsky2) (*.net *.split) |
| 16:30:21 | × | delyan_ quits (sid523379@id-523379.hampstead.irccloud.com) (*.net *.split) |
| 16:30:22 | × | op_4 quits (~tslil@user/op-4/x-9116473) (*.net *.split) |
| 16:30:22 | × | TonyStone quits (~TonyStone@user/TonyStone) (*.net *.split) |
| 16:30:22 | × | spenat quits (~spenat@c-92-35-37-17.bbcust.telenor.se) (*.net *.split) |
| 16:30:22 | × | Ram-Z quits (Ram-Z@2a01:7e01::f03c:91ff:fe57:d2df) (*.net *.split) |
| 16:30:22 | × | Angelz quits (Angelz@Angelz.oddprotocol.org) (*.net *.split) |
| 16:30:22 | × | lyxia quits (~lyxia@poisson.chat) (*.net *.split) |
| 16:30:22 | × | stilgart quits (~Christoph@chezlefab.net) (*.net *.split) |
| 16:30:22 | × | lieven quits (~mal@ns2.wyrd.be) (*.net *.split) |
| 16:30:22 | × | pdxleif quits (~ubuntu@ec2-35-163-144-64.us-west-2.compute.amazonaws.com) (*.net *.split) |
| 16:30:22 | × | cpli quits (77fc530071@2a03:6000:1812:100::252) (*.net *.split) |
| 16:30:23 | × | arcadewise quits (52968ed80d@2a03:6000:1812:100::3df) (*.net *.split) |
| 16:30:23 | × | fn_lumi quits (3d621153a5@2a03:6000:1812:100::df7) (*.net *.split) |
| 16:30:23 | × | fvr quits (ef3e56ca8b@2a03:6000:1812:100::3c4) (*.net *.split) |
| 16:30:23 | × | ymherklotz quits (cb2c9cfbdd@2a03:6000:1812:100::29a) (*.net *.split) |
| 16:30:23 | × | Sciencentistguy quits (~sciencent@hacksoc/ordinary-member) (*.net *.split) |
| 16:30:23 | × | nitrix quits (~nitrix@user/meow/nitrix) (*.net *.split) |
| 16:30:23 | × | Ranhir quits (~Ranhir@157.97.53.139) (*.net *.split) |
| 16:30:23 | × | acarrico quits (~acarrico@dhcp-209-99-192-63.greenmountainaccess.net) (*.net *.split) |
| 16:30:24 | × | jackdk quits (sid373013@cssa/jackdk) (*.net *.split) |
| 16:30:24 | × | mima quits (~mmh@user/mima) (*.net *.split) |
| 16:30:24 | × | cross quits (~cross@spitfire.i.gajendra.net) (*.net *.split) |
| 16:30:24 | × | drlkf quits (~drlkf@chat-1.drlkf.net) (*.net *.split) |
| 16:30:24 | × | edm quits (sid147314@id-147314.hampstead.irccloud.com) (*.net *.split) |
| 16:30:24 | × | siers quits (~ij@user/ij) (*.net *.split) |
| 16:30:24 | × | SrPx quits (sid108780@id-108780.uxbridge.irccloud.com) (*.net *.split) |
| 16:30:24 | × | hamishmack quits (sid389057@id-389057.hampstead.irccloud.com) (*.net *.split) |
| 16:30:24 | × | astra quits (sid289983@user/amish) (*.net *.split) |
| 16:30:25 | × | ski quits (~ski@remote11.chalmers.se) (*.net *.split) |
| 16:30:25 | × | DragonMaus quits (~dragonmau@user/dragonmaus) (*.net *.split) |
| 16:30:25 | × | haetsal quits (~quassel@221.138.168.192) (*.net *.split) |
| 16:30:25 | × | joeyh quits (~joeyh@kitenet.net) (*.net *.split) |
| 16:30:25 | Tisoxin6 | is now known as Tisoxin |
| 16:30:27 | × | gvg quits (~dcd@user/gvg) (Max SendQ exceeded) |
| 16:32:10 | → | olivial joins (~benjaminl@user/benjaminl) |
| 16:32:26 | → | welterde1 joins (~welterde@thinkbase.srv.welterde.de) |
| 16:32:26 | → | lol_ joins (~lol@2603:3016:1e01:b9c0:4843:dab9:4f1f:25c0) |
| 16:32:26 | → | __monty__ joins (~toonn@user/toonn) |
| 16:32:26 | → | int-e joins (~noone@int-e.eu) |
| 16:32:26 | → | JamesMowery43 joins (~JamesMowe@ip68-228-212-232.ph.ph.cox.net) |
| 16:32:26 | → | youthlic joins (~Thunderbi@user/youthlic) |
| 16:32:26 | → | noctuks joins (d4toxF5wNA@user/noctux) |
| 16:32:26 | → | Inst joins (~Inst@user/Inst) |
| 16:32:26 | → | abrar joins (~abrar@pool-72-78-199-167.phlapa.fios.verizon.net) |
| 16:32:26 | → | tomsmeding joins (~tomsmedin@2a01:4f8:c0c:5e5e::2) |
| 16:32:26 | → | dostoyevsky2 joins (~sck@user/dostoyevsky2) |
| 16:32:26 | → | delyan_ joins (sid523379@id-523379.hampstead.irccloud.com) |
| 16:32:26 | → | op_4 joins (~tslil@user/op-4/x-9116473) |
| 16:32:26 | → | TonyStone joins (~TonyStone@user/TonyStone) |
| 16:32:26 | → | spenat joins (~spenat@c-92-35-37-17.bbcust.telenor.se) |
| 16:32:26 | → | Ram-Z joins (Ram-Z@2a01:7e01::f03c:91ff:fe57:d2df) |
| 16:32:26 | → | Angelz joins (Angelz@Angelz.oddprotocol.org) |
| 16:32:26 | → | lyxia joins (~lyxia@poisson.chat) |
| 16:32:26 | → | stilgart joins (~Christoph@chezlefab.net) |
| 16:32:26 | → | lieven joins (~mal@ns2.wyrd.be) |
| 16:32:26 | → | pdxleif joins (~ubuntu@ec2-35-163-144-64.us-west-2.compute.amazonaws.com) |
| 16:32:26 | → | cpli joins (77fc530071@2a03:6000:1812:100::252) |
| 16:32:26 | → | fn_lumi joins (3d621153a5@2a03:6000:1812:100::df7) |
| 16:32:26 | → | arcadewise joins (52968ed80d@2a03:6000:1812:100::3df) |
| 16:32:26 | → | fvr joins (ef3e56ca8b@2a03:6000:1812:100::3c4) |
| 16:32:26 | → | ymherklotz joins (cb2c9cfbdd@2a03:6000:1812:100::29a) |
| 16:32:26 | → | Sciencentistguy joins (~sciencent@hacksoc/ordinary-member) |
| 16:32:26 | → | nitrix joins (~nitrix@user/meow/nitrix) |
| 16:32:26 | → | Ranhir joins (~Ranhir@157.97.53.139) |
| 16:32:26 | → | acarrico joins (~acarrico@dhcp-209-99-192-63.greenmountainaccess.net) |
| 16:32:26 | → | jackdk joins (sid373013@cssa/jackdk) |
| 16:32:26 | → | mima joins (~mmh@user/mima) |
| 16:32:26 | → | cross joins (~cross@spitfire.i.gajendra.net) |
| 16:32:26 | → | drlkf joins (~drlkf@chat-1.drlkf.net) |
| 16:32:26 | → | edm joins (sid147314@id-147314.hampstead.irccloud.com) |
| 16:32:26 | → | SrPx joins (sid108780@id-108780.uxbridge.irccloud.com) |
| 16:32:26 | → | siers joins (~ij@user/ij) |
| 16:32:26 | → | astra joins (sid289983@user/amish) |
| 16:32:26 | → | hamishmack joins (sid389057@id-389057.hampstead.irccloud.com) |
| 16:32:26 | → | ski joins (~ski@remote11.chalmers.se) |
| 16:32:26 | → | joeyh joins (~joeyh@kitenet.net) |
| 16:32:26 | → | DragonMaus joins (~dragonmau@user/dragonmaus) |
| 16:32:26 | → | haetsal joins (~quassel@221.138.168.192) |
| 16:32:29 | × | cross quits (~cross@spitfire.i.gajendra.net) (Max SendQ exceeded) |
| 16:32:29 | × | dostoyevsky2 quits (~sck@user/dostoyevsky2) (Max SendQ exceeded) |
| 16:32:31 | × | NiKaN quits (sid385034@id-385034.helmsley.irccloud.com) (Ping timeout: 264 seconds) |
| 16:32:33 | → | dostoyev1ky2 joins (~sck@user/dostoyevsky2) |
| 16:32:57 | → | troojg joins (~troojg@user/troojg) |
| 16:32:58 | → | gvg joins (~dcd@user/gvg) |
| 16:33:18 | × | Tisoxin quits (~Ikosit@user/ikosit) (Client Quit) |
| 16:33:40 | → | cross joins (~cross@spitfire.i.gajendra.net) |
| 16:35:29 | → | Raito_Bezarius joins (~Raito@wireguard/tunneler/raito-bezarius) |
| 16:36:16 | × | alexherbo2 quits (~alexherbo@2a02-8440-3307-845b-b47a-8df0-484a-dd57.rev.sfr.net) (Remote host closed the connection) |
| 16:37:54 | → | NiKaN joins (sid385034@id-385034.helmsley.irccloud.com) |
| 16:38:03 | → | pavonia joins (~user@user/siracusa) |
| 16:38:16 | → | alphazone joins (~alphazone@2.219.56.221) |
| 16:38:22 | dysfigured | is now known as dfg |
| 16:38:46 | × | dfg quits (~dfg@dfg.rocks) (Changing host) |
| 16:38:46 | → | dfg joins (~dfg@user/dfg) |
| 16:39:55 | × | Arsen quits (arsen@gentoo/developer/managarm.dev.Arsen) (Ping timeout: 260 seconds) |
| 16:40:05 | → | Arsen joins (arsen@gentoo/developer/managarm.dev.Arsen) |
| 16:44:05 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (*.net *.split) |
| 16:44:05 | × | chiselfuse quits (~chiselfus@user/chiselfuse) (*.net *.split) |
| 16:44:05 | × | ChaiTRex quits (~ChaiTRex@user/chaitrex) (*.net *.split) |
| 16:44:05 | × | califax quits (~califax@user/califx) (*.net *.split) |
| 16:44:05 | × | gmg quits (~user@user/gehmehgeh) (*.net *.split) |
| 16:44:05 | × | chexum_ quits (~quassel@gateway/tor-sasl/chexum) (*.net *.split) |
| 16:44:05 | × | mantraofpie quits (~mantraofp@user/mantraofpie) (*.net *.split) |
| 16:44:05 | × | stiell_ quits (~stiell@gateway/tor-sasl/stiell) (*.net *.split) |
| 16:44:34 | → | dezalator joins (~dezalator@178-36-25-26.dynamic.inetia.pl) |
| 16:45:27 | × | dezalator quits (~dezalator@178-36-25-26.dynamic.inetia.pl) (Remote host closed the connection) |
| 16:47:21 | → | bitdex joins (~bitdex@gateway/tor-sasl/bitdex) |
| 16:47:21 | → | chiselfuse joins (~chiselfus@user/chiselfuse) |
| 16:47:21 | → | ChaiTRex joins (~ChaiTRex@user/chaitrex) |
| 16:47:21 | → | califax joins (~califax@user/califx) |
| 16:47:21 | → | gmg joins (~user@user/gehmehgeh) |
| 16:47:21 | → | chexum_ joins (~quassel@gateway/tor-sasl/chexum) |
| 16:47:21 | → | mantraofpie joins (~mantraofp@user/mantraofpie) |
| 16:47:21 | → | stiell_ joins (~stiell@gateway/tor-sasl/stiell) |
| 16:48:02 | × | Smiles quits (uid551636@id-551636.lymington.irccloud.com) (*.net *.split) |
| 16:48:02 | × | 076AAUYI8 quits (sid149355@user/hook54321) (*.net *.split) |
| 16:48:02 | × | hellwolf quits (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) (*.net *.split) |
| 16:48:03 | × | driib318 quits (~driib@vmi931078.contaboserver.net) (*.net *.split) |
| 16:48:03 | × | MironZ3 quits (~MironZ@nat-infra.ehlab.uk) (*.net *.split) |
| 16:48:03 | × | Pixi quits (~Pixi@user/pixi) (*.net *.split) |
| 16:48:03 | × | bwe quits (~bwe@2a01:4f8:1c1c:4878::2) (*.net *.split) |
| 16:48:03 | × | comonad quits (~comonad@p200300d0270bcb00d2bd35ff80c069c9.dip0.t-ipconnect.de) (*.net *.split) |
| 16:48:03 | × | mrmr155334346318 quits (~mrmr@user/mrmr) (*.net *.split) |
| 16:48:03 | × | pabs3 quits (~pabs3@user/pabs3) (*.net *.split) |
| 16:48:04 | × | mauke quits (~mauke@user/mauke) (*.net *.split) |
| 16:48:04 | × | ouroboros quits (~ouroboros@user/ouroboros) (*.net *.split) |
| 16:48:04 | × | peutri quits (~peutri@bobo.desast.re) (*.net *.split) |
| 16:48:04 | × | farn__ quits (~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) (*.net *.split) |
| 16:48:04 | × | ent-_ quits (entgod@kapsi.fi) (*.net *.split) |
| 16:48:04 | × | ringo_ quits (~ringo@157.230.117.128) (*.net *.split) |
| 16:48:04 | × | samhh quits (7569f027cf@2a03:6000:1812:100::e4) (*.net *.split) |
| 16:48:04 | × | tok quits (da65c7b04b@user/tok) (*.net *.split) |
| 16:48:04 | × | raghavgururajan quits (ea769b8000@user/raghavgururajan) (*.net *.split) |
| 16:48:04 | × | rselim quits (ce261f06ff@user/milesrout) (*.net *.split) |
| 16:48:04 | × | flocks quits (~flocks@134.122.90.60) (*.net *.split) |
| 16:48:05 | × | coldtom quits (~coldtom@coldrick.cc) (*.net *.split) |
| 16:48:05 | × | arkeet quits (~arkeet@moriya.ca) (*.net *.split) |
| 16:48:05 | × | sm quits (~znc@plaintextaccounting/sm) (*.net *.split) |
| 16:48:05 | × | Fangs quits (sid141280@id-141280.hampstead.irccloud.com) (*.net *.split) |
| 16:48:05 | × | cheater quits (~Username@user/cheater) (*.net *.split) |
| 16:48:05 | × | bsima quits (~bsima@143.198.118.179) (*.net *.split) |
| 16:48:05 | × | crazazy quits (~crazazy@tilde.town) (*.net *.split) |
| 16:48:05 | × | masterbuilder quits (~quassel@user/masterbuilder) (*.net *.split) |
| 16:48:05 | × | nisstyre quits (wes@user/nisstyre) (*.net *.split) |
| 16:48:05 | × | Athas quits (athas@sigkill.dk) (*.net *.split) |
| 16:48:05 | × | edwtjo quits (~edwtjo@fsf/member/edwtjo) (*.net *.split) |
| 16:48:05 | × | bcksl quits (~bcksl@user/bcksl) (*.net *.split) |
| 16:48:05 | × | edwardk quits (sid47016@haskell/developer/edwardk) (*.net *.split) |
| 16:48:05 | × | saolsen quits (sid26430@id-26430.lymington.irccloud.com) (*.net *.split) |
| 16:48:06 | × | acro quits (~acro@user/acro) (*.net *.split) |
| 16:48:06 | × | teesquare_ quits (~teesquare@user/teesquare) (*.net *.split) |
| 16:48:06 | × | degraafk quits (sid71464@id-71464.lymington.irccloud.com) (*.net *.split) |
| 16:48:06 | × | liskin quits (~liskin@xmonad/liskin) (*.net *.split) |
| 16:48:06 | × | sefidel quits (~sefidel@user/sefidel) (*.net *.split) |
| 16:48:06 | × | bgamari quits (~bgamari@64.223.233.64) (*.net *.split) |
| 16:48:06 | × | beaky quits (~beaky@198.211.118.219) (*.net *.split) |
| 16:48:07 | × | ncf quits (~n@monade.li) (*.net *.split) |
| 16:48:38 | → | dezalator joins (~dezalator@178-36-25-26.dynamic.inetia.pl) |
| 16:49:03 | × | dezalator quits (~dezalator@178-36-25-26.dynamic.inetia.pl) (Client Quit) |
| 16:49:20 | → | Smiles joins (uid551636@id-551636.lymington.irccloud.com) |
| 16:49:20 | → | 076AAUYI8 joins (sid149355@user/hook54321) |
| 16:49:20 | → | hellwolf joins (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) |
| 16:49:20 | → | driib318 joins (~driib@vmi931078.contaboserver.net) |
| 16:49:20 | → | MironZ3 joins (~MironZ@nat-infra.ehlab.uk) |
| 16:49:20 | → | Pixi joins (~Pixi@user/pixi) |
| 16:49:20 | → | bwe joins (~bwe@2a01:4f8:1c1c:4878::2) |
| 16:49:20 | → | comonad joins (~comonad@p200300d0270bcb00d2bd35ff80c069c9.dip0.t-ipconnect.de) |
| 16:49:20 | → | mrmr155334346318 joins (~mrmr@user/mrmr) |
| 16:49:20 | → | pabs3 joins (~pabs3@user/pabs3) |
| 16:49:20 | → | mauke joins (~mauke@user/mauke) |
| 16:49:20 | → | ouroboros joins (~ouroboros@user/ouroboros) |
| 16:49:20 | → | peutri joins (~peutri@bobo.desast.re) |
| 16:49:20 | → | farn__ joins (~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) |
| 16:49:20 | → | ent-_ joins (entgod@kapsi.fi) |
| 16:49:20 | → | ringo_ joins (~ringo@157.230.117.128) |
| 16:49:20 | → | samhh joins (7569f027cf@2a03:6000:1812:100::e4) |
| 16:49:20 | → | tok joins (da65c7b04b@user/tok) |
| 16:49:20 | → | raghavgururajan joins (ea769b8000@user/raghavgururajan) |
| 16:49:20 | → | rselim joins (ce261f06ff@user/milesrout) |
| 16:49:20 | → | flocks joins (~flocks@134.122.90.60) |
| 16:49:20 | → | coldtom joins (~coldtom@coldrick.cc) |
| 16:49:20 | → | arkeet joins (~arkeet@moriya.ca) |
| 16:49:20 | → | sm joins (~znc@plaintextaccounting/sm) |
| 16:49:20 | → | Fangs joins (sid141280@id-141280.hampstead.irccloud.com) |
| 16:49:20 | → | cheater joins (~Username@user/cheater) |
| 16:49:20 | → | bsima joins (~bsima@143.198.118.179) |
| 16:49:20 | → | crazazy joins (~crazazy@tilde.town) |
| 16:49:20 | → | masterbuilder joins (~quassel@user/masterbuilder) |
| 16:49:20 | → | nisstyre joins (wes@user/nisstyre) |
| 16:49:20 | → | Athas joins (athas@sigkill.dk) |
| 16:49:20 | → | edwtjo joins (~edwtjo@fsf/member/edwtjo) |
| 16:49:20 | → | bcksl joins (~bcksl@user/bcksl) |
| 16:49:20 | → | edwardk joins (sid47016@haskell/developer/edwardk) |
| 16:49:20 | → | saolsen joins (sid26430@id-26430.lymington.irccloud.com) |
| 16:49:20 | → | acro joins (~acro@user/acro) |
| 16:49:20 | → | teesquare_ joins (~teesquare@user/teesquare) |
| 16:49:20 | → | ncf joins (~n@monade.li) |
| 16:49:20 | → | degraafk joins (sid71464@id-71464.lymington.irccloud.com) |
| 16:49:20 | → | liskin joins (~liskin@xmonad/liskin) |
| 16:49:20 | → | sefidel joins (~sefidel@user/sefidel) |
| 16:49:20 | → | bgamari joins (~bgamari@64.223.233.64) |
| 16:49:20 | → | beaky joins (~beaky@198.211.118.219) |
| 16:49:46 | × | farn__ quits (~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) (Max SendQ exceeded) |
| 16:50:04 | → | farn__ joins (~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) |
| 16:51:36 | → | dezalator joins (~dezalator@178-36-25-26.dynamic.inetia.pl) |
| 16:51:43 | × | dezalator quits (~dezalator@178-36-25-26.dynamic.inetia.pl) (Client Quit) |
| 16:52:01 | × | Raito_Bezarius quits (~Raito@wireguard/tunneler/raito-bezarius) (*.net *.split) |
| 16:52:02 | × | wootehfoot quits (~wootehfoo@user/wootehfoot) (*.net *.split) |
| 16:52:02 | × | hsw quits (~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net) (*.net *.split) |
| 16:52:02 | × | Xe quits (~Xe@perl/impostor/xe) (*.net *.split) |
| 16:52:02 | × | foul_owl quits (~kerry@185.216.231.180) (*.net *.split) |
| 16:52:02 | × | troydm quits (~troydm@user/troydm) (*.net *.split) |
| 16:52:03 | × | cjay quits (cjay@nerdbox.nerd2nerd.org) (*.net *.split) |
| 16:52:03 | × | motherfsck quits (~motherfsc@user/motherfsck) (*.net *.split) |
| 16:52:03 | × | landonf quits (landonf@mac68k.info) (*.net *.split) |
| 16:52:03 | × | Ankhers quits (e99e97ef8e@2a03:6000:1812:100::2a2) (*.net *.split) |
| 16:52:03 | × | JoelMcCracken quits (5ea8252fbb@2a03:6000:1812:100::10e3) (*.net *.split) |
| 16:52:03 | × | akspecs quits (00cc8321af@sourcehut/user/akspecs) (*.net *.split) |
| 16:52:03 | × | b0o quits (0e4a0bf4c9@2a03:6000:1812:100::1bf) (*.net *.split) |
| 16:52:03 | × | titibandit quits (e33ffbab65@user/titibandit) (*.net *.split) |
| 16:52:03 | × | aniketd quits (32aa4844cd@2a03:6000:1812:100::dcb) (*.net *.split) |
| 16:52:03 | × | evanrelf quits (3addc196af@2a03:6000:1812:100::f0) (*.net *.split) |
| 16:52:03 | × | probie quits (cc0b34050a@user/probie) (*.net *.split) |
| 16:52:03 | × | jmcantrell quits (644f1bed9a@user/jmcantrell) (*.net *.split) |
| 16:52:04 | × | fgaz quits (1ff9197ed6@2a03:6000:1812:100::11ea) (*.net *.split) |
| 16:52:04 | × | bsima1 quits (9d7e39c8ad@2a03:6000:1812:100::dd) (*.net *.split) |
| 16:52:04 | × | lukec quits (9dfd4d094e@2a03:6000:1812:100::10e) (*.net *.split) |
| 16:52:04 | × | rubin55 quits (sid666177@id-666177.lymington.irccloud.com) (*.net *.split) |
| 16:52:04 | × | nshepperd2 quits (~nshepperd@static.117.72.21.65.clients.your-server.de) (*.net *.split) |
| 16:52:04 | × | [exa] quits (~exa@user/exa/x-3587197) (*.net *.split) |
| 16:52:04 | × | nshepperd quits (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split) |
| 16:52:04 | × | PotatoGim quits (sid99505@id-99505.lymington.irccloud.com) (*.net *.split) |
| 16:52:04 | × | tapas quits (sid467876@id-467876.ilkley.irccloud.com) (*.net *.split) |
| 16:52:04 | × | JSharp quits (sid4580@user/JSharp) (*.net *.split) |
| 16:52:04 | × | jonrh quits (sid5185@id-5185.ilkley.irccloud.com) (*.net *.split) |
| 16:52:04 | × | srk quits (~sorki@user/srk) (*.net *.split) |
| 16:52:04 | × | barrucadu quits (~barrucadu@carcosa.barrucadu.co.uk) (*.net *.split) |
| 16:52:04 | × | YuutaW quits (~YuutaW@mail.yuuta.moe) (*.net *.split) |
| 16:52:04 | × | bollu quits (~bollu@159.65.151.13) (*.net *.split) |
| 16:52:04 | × | davean quits (~davean@davean.sciesnet.net) (*.net *.split) |
| 16:52:05 | × | Logio quits (em@kapsi.fi) (*.net *.split) |
| 16:52:05 | × | h2t quits (~h2t@user/h2t) (*.net *.split) |
| 16:52:05 | × | tomjagua1paw quits (~tom@172-104-25-182.ip.linodeusercontent.com) (*.net *.split) |
| 16:52:05 | × | gmc quits (sid58314@id-58314.ilkley.irccloud.com) (*.net *.split) |
| 16:52:05 | × | PHO` quits (~pho@akari.cielonegro.org) (*.net *.split) |
| 16:52:05 | × | darkling quits (~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space) (*.net *.split) |
| 16:52:25 | → | dezalator joins (~dezalator@178-36-25-26.dynamic.inetia.pl) |
| 16:52:37 | × | Smiles quits (uid551636@id-551636.lymington.irccloud.com) (Ping timeout: 248 seconds) |
| 16:52:37 | × | 076AAUYI8 quits (sid149355@user/hook54321) (Ping timeout: 248 seconds) |
| 16:52:44 | → | [_________] joins (~oos95GWG@user/oos95GWG) |
| 16:52:53 | → | Raito_Bezarius joins (~Raito@wireguard/tunneler/raito-bezarius) |
| 16:52:53 | → | wootehfoot joins (~wootehfoo@user/wootehfoot) |
| 16:52:53 | → | hsw joins (~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net) |
| 16:52:53 | → | Xe joins (~Xe@perl/impostor/xe) |
| 16:52:53 | → | foul_owl joins (~kerry@185.216.231.180) |
| 16:52:53 | → | troydm joins (~troydm@user/troydm) |
| 16:52:53 | → | cjay joins (cjay@nerdbox.nerd2nerd.org) |
| 16:52:53 | → | motherfsck joins (~motherfsc@user/motherfsck) |
| 16:52:53 | → | landonf joins (landonf@mac68k.info) |
| 16:52:53 | → | b0o joins (0e4a0bf4c9@2a03:6000:1812:100::1bf) |
| 16:52:53 | → | akspecs joins (00cc8321af@sourcehut/user/akspecs) |
| 16:52:53 | → | JoelMcCracken joins (5ea8252fbb@2a03:6000:1812:100::10e3) |
| 16:52:53 | → | Ankhers joins (e99e97ef8e@2a03:6000:1812:100::2a2) |
| 16:52:53 | → | jmcantrell joins (644f1bed9a@user/jmcantrell) |
| 16:52:53 | → | probie joins (cc0b34050a@user/probie) |
| 16:52:53 | → | evanrelf joins (3addc196af@2a03:6000:1812:100::f0) |
| 16:52:53 | → | aniketd joins (32aa4844cd@2a03:6000:1812:100::dcb) |
| 16:52:53 | → | titibandit joins (e33ffbab65@user/titibandit) |
| 16:52:53 | → | lukec joins (9dfd4d094e@2a03:6000:1812:100::10e) |
| 16:52:53 | → | bsima1 joins (9d7e39c8ad@2a03:6000:1812:100::dd) |
| 16:52:53 | → | fgaz joins (1ff9197ed6@2a03:6000:1812:100::11ea) |
| 16:52:53 | → | rubin55 joins (sid666177@id-666177.lymington.irccloud.com) |
| 16:52:53 | → | nshepperd2 joins (~nshepperd@static.117.72.21.65.clients.your-server.de) |
| 16:52:53 | → | [exa] joins (~exa@user/exa/x-3587197) |
| 16:52:53 | → | nshepperd joins (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) |
| 16:52:53 | → | PotatoGim joins (sid99505@id-99505.lymington.irccloud.com) |
| 16:52:53 | → | tapas joins (sid467876@id-467876.ilkley.irccloud.com) |
| 16:52:53 | → | JSharp joins (sid4580@user/JSharp) |
| 16:52:53 | → | jonrh joins (sid5185@id-5185.ilkley.irccloud.com) |
| 16:52:53 | → | srk joins (~sorki@user/srk) |
| 16:52:53 | → | barrucadu joins (~barrucadu@carcosa.barrucadu.co.uk) |
| 16:52:53 | → | YuutaW joins (~YuutaW@mail.yuuta.moe) |
| 16:52:53 | → | bollu joins (~bollu@159.65.151.13) |
| 16:52:53 | → | davean joins (~davean@davean.sciesnet.net) |
| 16:52:53 | → | Logio joins (em@kapsi.fi) |
| 16:52:53 | → | h2t joins (~h2t@user/h2t) |
| 16:52:53 | → | tomjagua1paw joins (~tom@172-104-25-182.ip.linodeusercontent.com) |
| 16:52:53 | → | gmc joins (sid58314@id-58314.ilkley.irccloud.com) |
| 16:52:53 | → | PHO` joins (~pho@akari.cielonegro.org) |
| 16:52:53 | → | darkling joins (~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space) |
| 16:55:24 | × | Raito_Bezarius quits (~Raito@wireguard/tunneler/raito-bezarius) (Max SendQ exceeded) |
| 16:55:24 | → | Smiles joins (uid551636@id-551636.lymington.irccloud.com) |
| 16:55:41 | × | Lord_of_Life quits (~Lord@user/lord-of-life/x-2819915) (*.net *.split) |
| 16:55:41 | × | tomku quits (~tomku@user/tomku) (*.net *.split) |
| 16:55:41 | × | spew quits (~spew@135.233.119.40) (*.net *.split) |
| 16:55:41 | × | bionade24 quits (~quassel@2a03:4000:33:45b::1) (*.net *.split) |
| 16:55:41 | × | Katarushisu quits (~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net) (*.net *.split) |
| 16:55:42 | × | statusbot quits (~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com) (*.net *.split) |
| 16:55:42 | × | infinity0 quits (~infinity0@pwned.gg) (*.net *.split) |
| 16:55:42 | × | remexre quits (~remexre@user/remexre) (*.net *.split) |
| 16:55:42 | × | biberu quits (~biberu@user/biberu) (*.net *.split) |
| 16:55:42 | × | jrm quits (~jrm@user/jrm) (*.net *.split) |
| 16:55:42 | × | sam113101 quits (~sam@modemcable220.199-203-24.mc.videotron.ca) (*.net *.split) |
| 16:55:42 | × | doyougnu quits (~doyougnu@syn-045-046-170-068.res.spectrum.com) (*.net *.split) |
| 16:55:42 | × | fr33domlover quits (~fr33domlo@towards.vision) (*.net *.split) |
| 16:55:42 | × | nadja quits (~dequbed@banana-new.kilobyte22.de) (*.net *.split) |
| 16:55:42 | × | haritz quits (~hrtz@user/haritz) (*.net *.split) |
| 16:55:42 | × | hueso quits (~root@user/hueso) (*.net *.split) |
| 16:55:42 | × | skylord5816 quits (~skylord58@user/skylord5816) (*.net *.split) |
| 16:55:43 | × | pie_ quits (~pie_bnc@user/pie/x-2818909) (*.net *.split) |
| 16:55:43 | × | _xor quits (~xor@ip-66-42-132-175.dynamic.fuse.net) (*.net *.split) |
| 16:55:43 | × | nurupo quits (~nurupo.ga@user/nurupo) (*.net *.split) |
| 16:55:43 | × | polux quits (~polux@51-15-169-172.rev.poneytelecom.eu) (*.net *.split) |
| 16:55:43 | × | myme quits (~myme@40.51-175-185.customer.lyse.net) (*.net *.split) |
| 16:55:43 | × | WzC quits (~Frank@77-162-168-71.fixed.kpn.net) (*.net *.split) |
| 16:55:43 | × | ames quits (~amelia@offtopia/offtopian/amelia) (*.net *.split) |
| 16:55:43 | × | Philonous quits (~Philonous@user/philonous) (*.net *.split) |
| 16:55:43 | × | ursa-major quits (114efe6c39@2a03:6000:1812:100::11f3) (*.net *.split) |
| 16:55:44 | × | stefan-__ quits (~m-yh2rcc@42dots.de) (*.net *.split) |
| 16:55:44 | × | fernando-basso quits (~fernando-@2a01:4f9:c012:63d3::1) (*.net *.split) |
| 16:56:50 | → | Lord_of_Life joins (~Lord@user/lord-of-life/x-2819915) |
| 16:56:50 | → | tomku joins (~tomku@user/tomku) |
| 16:56:50 | → | spew joins (~spew@135.233.119.40) |
| 16:56:50 | → | bionade24 joins (~quassel@2a03:4000:33:45b::1) |
| 16:56:50 | → | Katarushisu joins (~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net) |
| 16:56:50 | → | statusbot joins (~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com) |
| 16:56:50 | → | infinity0 joins (~infinity0@pwned.gg) |
| 16:56:50 | → | remexre joins (~remexre@user/remexre) |
| 16:56:50 | → | biberu joins (~biberu@user/biberu) |
| 16:56:50 | → | jrm joins (~jrm@user/jrm) |
| 16:56:50 | → | sam113101 joins (~sam@modemcable220.199-203-24.mc.videotron.ca) |
| 16:56:50 | → | doyougnu joins (~doyougnu@syn-045-046-170-068.res.spectrum.com) |
| 16:56:50 | → | fr33domlover joins (~fr33domlo@towards.vision) |
| 16:56:50 | → | nadja joins (~dequbed@banana-new.kilobyte22.de) |
| 16:56:50 | → | haritz joins (~hrtz@user/haritz) |
| 16:56:50 | → | hueso joins (~root@user/hueso) |
| 16:56:50 | → | skylord5816 joins (~skylord58@user/skylord5816) |
| 16:56:50 | → | pie_ joins (~pie_bnc@user/pie/x-2818909) |
| 16:56:50 | → | _xor joins (~xor@ip-66-42-132-175.dynamic.fuse.net) |
| 16:56:50 | → | polux joins (~polux@51-15-169-172.rev.poneytelecom.eu) |
| 16:56:50 | → | myme joins (~myme@40.51-175-185.customer.lyse.net) |
| 16:56:50 | → | WzC joins (~Frank@77-162-168-71.fixed.kpn.net) |
| 16:56:50 | → | ames joins (~amelia@offtopia/offtopian/amelia) |
| 16:56:50 | → | Philonous joins (~Philonous@user/philonous) |
| 16:56:50 | → | ursa-major joins (114efe6c39@2a03:6000:1812:100::11f3) |
| 16:56:50 | → | stefan-__ joins (~m-yh2rcc@42dots.de) |
| 16:56:50 | → | fernando-basso joins (~fernando-@2a01:4f9:c012:63d3::1) |
| 16:56:52 | → | lxsameer joins (~lxsameer@Serene/lxsameer) |
| 16:57:07 | → | nurupo joins (~nurupo.ga@user/nurupo) |
| 16:57:25 | → | Raito_Bezarius joins (~Raito@wireguard/tunneler/raito-bezarius) |
| 16:57:36 | × | dezalator quits (~dezalator@178-36-25-26.dynamic.inetia.pl) (Quit: dezalator) |
| 16:57:52 | × | litharge quits (litharge@libera/bot/litharge) (*.net *.split) |
| 16:57:53 | × | Lord_of_Life quits (~Lord@user/lord-of-life/x-2819915) (*.net *.split) |
| 16:57:53 | × | tomku quits (~tomku@user/tomku) (*.net *.split) |
| 16:57:53 | × | spew quits (~spew@135.233.119.40) (*.net *.split) |
| 16:57:53 | × | bionade24 quits (~quassel@2a03:4000:33:45b::1) (*.net *.split) |
| 16:57:54 | × | Katarushisu quits (~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net) (*.net *.split) |
| 16:57:54 | × | statusbot quits (~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com) (*.net *.split) |
| 16:57:54 | × | infinity0 quits (~infinity0@pwned.gg) (*.net *.split) |
| 16:57:54 | × | remexre quits (~remexre@user/remexre) (*.net *.split) |
| 16:57:54 | × | biberu quits (~biberu@user/biberu) (*.net *.split) |
| 16:57:54 | × | jrm quits (~jrm@user/jrm) (*.net *.split) |
| 16:57:54 | × | sam113101 quits (~sam@modemcable220.199-203-24.mc.videotron.ca) (*.net *.split) |
| 16:57:54 | × | doyougnu quits (~doyougnu@syn-045-046-170-068.res.spectrum.com) (*.net *.split) |
| 16:57:54 | × | fr33domlover quits (~fr33domlo@towards.vision) (*.net *.split) |
| 16:57:54 | × | nadja quits (~dequbed@banana-new.kilobyte22.de) (*.net *.split) |
| 16:57:54 | × | haritz quits (~hrtz@user/haritz) (*.net *.split) |
| 16:57:54 | × | hueso quits (~root@user/hueso) (*.net *.split) |
| 16:57:55 | × | skylord5816 quits (~skylord58@user/skylord5816) (*.net *.split) |
| 16:57:55 | × | pie_ quits (~pie_bnc@user/pie/x-2818909) (*.net *.split) |
| 16:57:55 | × | _xor quits (~xor@ip-66-42-132-175.dynamic.fuse.net) (*.net *.split) |
| 16:57:55 | × | polux quits (~polux@51-15-169-172.rev.poneytelecom.eu) (*.net *.split) |
| 16:57:55 | × | myme quits (~myme@40.51-175-185.customer.lyse.net) (*.net *.split) |
| 16:57:55 | × | WzC quits (~Frank@77-162-168-71.fixed.kpn.net) (*.net *.split) |
| 16:57:55 | × | ames quits (~amelia@offtopia/offtopian/amelia) (*.net *.split) |
| 16:57:55 | × | Philonous quits (~Philonous@user/philonous) (*.net *.split) |
| 16:57:56 | × | ursa-major quits (114efe6c39@2a03:6000:1812:100::11f3) (*.net *.split) |
| 16:57:56 | × | stefan-__ quits (~m-yh2rcc@42dots.de) (*.net *.split) |
| 16:57:56 | × | fernando-basso quits (~fernando-@2a01:4f9:c012:63d3::1) (*.net *.split) |
| 16:57:57 | × | wootehfoot quits (~wootehfoo@user/wootehfoot) (*.net *.split) |
| 16:57:57 | × | hsw quits (~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net) (*.net *.split) |
| 16:57:58 | × | Xe quits (~Xe@perl/impostor/xe) (*.net *.split) |
| 16:57:58 | × | foul_owl quits (~kerry@185.216.231.180) (*.net *.split) |
| 16:57:58 | × | troydm quits (~troydm@user/troydm) (*.net *.split) |
| 16:57:58 | × | cjay quits (cjay@nerdbox.nerd2nerd.org) (*.net *.split) |
| 16:57:58 | × | motherfsck quits (~motherfsc@user/motherfsck) (*.net *.split) |
| 16:57:58 | × | landonf quits (landonf@mac68k.info) (*.net *.split) |
| 16:57:59 | × | aniketd quits (32aa4844cd@2a03:6000:1812:100::dcb) (*.net *.split) |
| 16:57:59 | × | fgaz quits (1ff9197ed6@2a03:6000:1812:100::11ea) (*.net *.split) |
| 16:57:59 | × | evanrelf quits (3addc196af@2a03:6000:1812:100::f0) (*.net *.split) |
| 16:57:59 | × | bsima1 quits (9d7e39c8ad@2a03:6000:1812:100::dd) (*.net *.split) |
| 16:57:59 | × | probie quits (cc0b34050a@user/probie) (*.net *.split) |
| 16:57:59 | × | titibandit quits (e33ffbab65@user/titibandit) (*.net *.split) |
| 16:57:59 | × | lukec quits (9dfd4d094e@2a03:6000:1812:100::10e) (*.net *.split) |
| 16:57:59 | × | jmcantrell quits (644f1bed9a@user/jmcantrell) (*.net *.split) |
| 16:57:59 | × | akspecs quits (00cc8321af@sourcehut/user/akspecs) (*.net *.split) |
| 16:57:59 | × | JoelMcCracken quits (5ea8252fbb@2a03:6000:1812:100::10e3) (*.net *.split) |
| 16:57:59 | × | b0o quits (0e4a0bf4c9@2a03:6000:1812:100::1bf) (*.net *.split) |
| 16:57:59 | × | Ankhers quits (e99e97ef8e@2a03:6000:1812:100::2a2) (*.net *.split) |
| 16:58:00 | × | rubin55 quits (sid666177@id-666177.lymington.irccloud.com) (*.net *.split) |
| 16:58:00 | × | nshepperd2 quits (~nshepperd@static.117.72.21.65.clients.your-server.de) (*.net *.split) |
| 16:58:00 | × | [exa] quits (~exa@user/exa/x-3587197) (*.net *.split) |
| 16:58:00 | × | nshepperd quits (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) (*.net *.split) |
| 16:58:00 | × | PotatoGim quits (sid99505@id-99505.lymington.irccloud.com) (*.net *.split) |
| 16:58:00 | × | tapas quits (sid467876@id-467876.ilkley.irccloud.com) (*.net *.split) |
| 16:58:00 | × | JSharp quits (sid4580@user/JSharp) (*.net *.split) |
| 16:58:00 | × | jonrh quits (sid5185@id-5185.ilkley.irccloud.com) (*.net *.split) |
| 16:58:01 | × | srk quits (~sorki@user/srk) (*.net *.split) |
| 16:58:01 | × | barrucadu quits (~barrucadu@carcosa.barrucadu.co.uk) (*.net *.split) |
| 16:58:01 | × | YuutaW quits (~YuutaW@mail.yuuta.moe) (*.net *.split) |
| 16:58:01 | × | bollu quits (~bollu@159.65.151.13) (*.net *.split) |
| 16:58:01 | × | davean quits (~davean@davean.sciesnet.net) (*.net *.split) |
| 16:58:01 | × | Logio quits (em@kapsi.fi) (*.net *.split) |
| 16:58:01 | × | h2t quits (~h2t@user/h2t) (*.net *.split) |
| 16:58:01 | × | tomjagua1paw quits (~tom@172-104-25-182.ip.linodeusercontent.com) (*.net *.split) |
| 16:58:01 | × | gmc quits (sid58314@id-58314.ilkley.irccloud.com) (*.net *.split) |
| 16:58:01 | × | PHO` quits (~pho@akari.cielonegro.org) (*.net *.split) |
| 16:58:01 | × | darkling quits (~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space) (*.net *.split) |
| 16:58:01 | × | hellwolf quits (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) (*.net *.split) |
| 16:58:02 | × | driib318 quits (~driib@vmi931078.contaboserver.net) (*.net *.split) |
| 16:58:02 | × | MironZ3 quits (~MironZ@nat-infra.ehlab.uk) (*.net *.split) |
| 16:58:02 | × | Pixi quits (~Pixi@user/pixi) (*.net *.split) |
| 16:58:02 | × | bwe quits (~bwe@2a01:4f8:1c1c:4878::2) (*.net *.split) |
| 16:58:02 | × | comonad quits (~comonad@p200300d0270bcb00d2bd35ff80c069c9.dip0.t-ipconnect.de) (*.net *.split) |
| 16:58:02 | × | mrmr155334346318 quits (~mrmr@user/mrmr) (*.net *.split) |
| 16:58:02 | × | pabs3 quits (~pabs3@user/pabs3) (*.net *.split) |
| 16:58:03 | × | mauke quits (~mauke@user/mauke) (*.net *.split) |
| 16:58:03 | × | ouroboros quits (~ouroboros@user/ouroboros) (*.net *.split) |
| 16:58:03 | × | peutri quits (~peutri@bobo.desast.re) (*.net *.split) |
| 16:58:03 | × | ent-_ quits (entgod@kapsi.fi) (*.net *.split) |
| 16:58:03 | × | ringo_ quits (~ringo@157.230.117.128) (*.net *.split) |
| 16:58:03 | × | samhh quits (7569f027cf@2a03:6000:1812:100::e4) (*.net *.split) |
| 16:58:03 | × | tok quits (da65c7b04b@user/tok) (*.net *.split) |
| 16:58:03 | × | raghavgururajan quits (ea769b8000@user/raghavgururajan) (*.net *.split) |
| 16:58:03 | × | rselim quits (ce261f06ff@user/milesrout) (*.net *.split) |
| 16:58:04 | × | flocks quits (~flocks@134.122.90.60) (*.net *.split) |
| 16:58:04 | × | coldtom quits (~coldtom@coldrick.cc) (*.net *.split) |
| 16:58:04 | × | arkeet quits (~arkeet@moriya.ca) (*.net *.split) |
| 16:58:04 | × | sm quits (~znc@plaintextaccounting/sm) (*.net *.split) |
| 16:58:04 | × | Fangs quits (sid141280@id-141280.hampstead.irccloud.com) (*.net *.split) |
| 16:58:04 | × | cheater quits (~Username@user/cheater) (*.net *.split) |
| 16:58:05 | × | bsima quits (~bsima@143.198.118.179) (*.net *.split) |
| 16:58:05 | × | crazazy quits (~crazazy@tilde.town) (*.net *.split) |
| 16:58:05 | × | masterbuilder quits (~quassel@user/masterbuilder) (*.net *.split) |
| 16:58:05 | × | nisstyre quits (wes@user/nisstyre) (*.net *.split) |
| 16:58:05 | × | Athas quits (athas@sigkill.dk) (*.net *.split) |
| 16:58:05 | × | edwtjo quits (~edwtjo@fsf/member/edwtjo) (*.net *.split) |
| 16:58:05 | × | bcksl quits (~bcksl@user/bcksl) (*.net *.split) |
| 16:58:05 | × | edwardk quits (sid47016@haskell/developer/edwardk) (*.net *.split) |
| 16:58:05 | × | saolsen quits (sid26430@id-26430.lymington.irccloud.com) (*.net *.split) |
| 16:58:05 | × | acro quits (~acro@user/acro) (*.net *.split) |
| 16:58:05 | × | teesquare_ quits (~teesquare@user/teesquare) (*.net *.split) |
| 16:58:05 | × | degraafk quits (sid71464@id-71464.lymington.irccloud.com) (*.net *.split) |
| 16:58:05 | × | liskin quits (~liskin@xmonad/liskin) (*.net *.split) |
| 16:58:05 | × | sefidel quits (~sefidel@user/sefidel) (*.net *.split) |
| 16:58:06 | × | bgamari quits (~bgamari@64.223.233.64) (*.net *.split) |
| 16:58:06 | × | beaky quits (~beaky@198.211.118.219) (*.net *.split) |
| 16:58:06 | × | ncf quits (~n@monade.li) (*.net *.split) |
| 16:58:06 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (*.net *.split) |
| 16:58:06 | × | chiselfuse quits (~chiselfus@user/chiselfuse) (*.net *.split) |
| 16:58:06 | × | ChaiTRex quits (~ChaiTRex@user/chaitrex) (*.net *.split) |
| 16:58:06 | × | califax quits (~califax@user/califx) (*.net *.split) |
| 16:58:06 | × | gmg quits (~user@user/gehmehgeh) (*.net *.split) |
| 16:58:07 | × | chexum_ quits (~quassel@gateway/tor-sasl/chexum) (*.net *.split) |
| 16:58:07 | × | mantraofpie quits (~mantraofp@user/mantraofpie) (*.net *.split) |
| 16:58:07 | × | stiell_ quits (~stiell@gateway/tor-sasl/stiell) (*.net *.split) |
| 16:58:07 | × | welterde1 quits (~welterde@thinkbase.srv.welterde.de) (*.net *.split) |
| 16:58:07 | × | lol_ quits (~lol@2603:3016:1e01:b9c0:4843:dab9:4f1f:25c0) (*.net *.split) |
| 16:58:07 | × | __monty__ quits (~toonn@user/toonn) (*.net *.split) |
| 16:58:07 | × | int-e quits (~noone@int-e.eu) (*.net *.split) |
| 16:58:07 | × | JamesMowery43 quits (~JamesMowe@ip68-228-212-232.ph.ph.cox.net) (*.net *.split) |
| 16:58:07 | × | youthlic quits (~Thunderbi@user/youthlic) (*.net *.split) |
| 16:58:07 | × | noctuks quits (d4toxF5wNA@user/noctux) (*.net *.split) |
| 16:58:08 | × | Inst quits (~Inst@user/Inst) (*.net *.split) |
| 16:58:08 | × | abrar quits (~abrar@pool-72-78-199-167.phlapa.fios.verizon.net) (*.net *.split) |
| 16:58:08 | × | tomsmeding quits (~tomsmedin@2a01:4f8:c0c:5e5e::2) (*.net *.split) |
| 16:58:08 | × | delyan_ quits (sid523379@id-523379.hampstead.irccloud.com) (*.net *.split) |
| 16:58:08 | × | op_4 quits (~tslil@user/op-4/x-9116473) (*.net *.split) |
| 16:58:09 | × | TonyStone quits (~TonyStone@user/TonyStone) (*.net *.split) |
| 16:58:09 | × | spenat quits (~spenat@c-92-35-37-17.bbcust.telenor.se) (*.net *.split) |
| 16:58:09 | × | Ram-Z quits (Ram-Z@2a01:7e01::f03c:91ff:fe57:d2df) (*.net *.split) |
| 16:58:09 | × | Angelz quits (Angelz@Angelz.oddprotocol.org) (*.net *.split) |
| 16:58:09 | × | lyxia quits (~lyxia@poisson.chat) (*.net *.split) |
| 16:58:09 | × | stilgart quits (~Christoph@chezlefab.net) (*.net *.split) |
| 16:58:09 | × | lieven quits (~mal@ns2.wyrd.be) (*.net *.split) |
| 16:58:09 | × | pdxleif quits (~ubuntu@ec2-35-163-144-64.us-west-2.compute.amazonaws.com) (*.net *.split) |
| 16:58:09 | × | cpli quits (77fc530071@2a03:6000:1812:100::252) (*.net *.split) |
| 16:58:10 | × | fn_lumi quits (3d621153a5@2a03:6000:1812:100::df7) (*.net *.split) |
| 16:58:10 | × | arcadewise quits (52968ed80d@2a03:6000:1812:100::3df) (*.net *.split) |
| 16:58:10 | × | fvr quits (ef3e56ca8b@2a03:6000:1812:100::3c4) (*.net *.split) |
| 16:58:10 | × | ymherklotz quits (cb2c9cfbdd@2a03:6000:1812:100::29a) (*.net *.split) |
| 16:58:10 | × | Sciencentistguy quits (~sciencent@hacksoc/ordinary-member) (*.net *.split) |
| 16:58:10 | × | nitrix quits (~nitrix@user/meow/nitrix) (*.net *.split) |
| 16:58:10 | × | Ranhir quits (~Ranhir@157.97.53.139) (*.net *.split) |
| 16:58:10 | × | acarrico quits (~acarrico@dhcp-209-99-192-63.greenmountainaccess.net) (*.net *.split) |
| 16:58:10 | × | jackdk quits (sid373013@cssa/jackdk) (*.net *.split) |
| 16:58:11 | × | mima quits (~mmh@user/mima) (*.net *.split) |
| 16:58:11 | × | drlkf quits (~drlkf@chat-1.drlkf.net) (*.net *.split) |
| 16:58:11 | × | edm quits (sid147314@id-147314.hampstead.irccloud.com) (*.net *.split) |
| 16:58:11 | × | siers quits (~ij@user/ij) (*.net *.split) |
| 16:58:11 | × | SrPx quits (sid108780@id-108780.uxbridge.irccloud.com) (*.net *.split) |
| 16:58:11 | × | astra quits (sid289983@user/amish) (*.net *.split) |
| 16:58:11 | × | hamishmack quits (sid389057@id-389057.hampstead.irccloud.com) (*.net *.split) |
| 16:58:11 | × | ski quits (~ski@remote11.chalmers.se) (*.net *.split) |
| 16:58:11 | × | DragonMaus quits (~dragonmau@user/dragonmaus) (*.net *.split) |
| 16:58:11 | × | haetsal quits (~quassel@221.138.168.192) (*.net *.split) |
| 16:58:11 | × | joeyh quits (~joeyh@kitenet.net) (*.net *.split) |
| 16:58:11 | × | unlucy quits (sid572875@user/unlucy) (*.net *.split) |
| 16:58:11 | × | noteness_ quits (~noteness@user/noteness) (*.net *.split) |
| 16:58:11 | × | Fijxu quits (~Fijxu@user/fijxu) (*.net *.split) |
| 16:58:11 | × | bliminse quits (~bliminse@user/bliminse) (*.net *.split) |
| 16:58:12 | × | kqr quits (~kqr@static.143.81.108.65.clients.your-server.de) (*.net *.split) |
| 16:58:12 | × | lambdabot quits (~lambdabot@haskell/bot/lambdabot) (*.net *.split) |
| 16:58:12 | × | takuan quits (~takuan@178-116-218-225.access.telenet.be) (*.net *.split) |
| 16:58:12 | × | gorignak quits (~gorignak@user/gorignak) (*.net *.split) |
| 16:58:12 | × | Digitteknohippie quits (~user@user/digit) (*.net *.split) |
| 16:58:12 | × | ethantwardy quits (user@user/ethantwardy) (*.net *.split) |
| 16:58:13 | × | tomboy64 quits (~tomboy64@user/tomboy64) (*.net *.split) |
| 16:58:13 | × | alioguzhan quits (~Thunderbi@78.173.69.189) (*.net *.split) |
| 16:58:13 | × | fluxit quits (~fluxit@192.241.192.75) (*.net *.split) |
| 16:58:14 | × | koz quits (~koz@121.99.240.58) (*.net *.split) |
| 16:58:14 | × | Igloo quits (~ian@81.2.99.210) (*.net *.split) |
| 16:58:14 | × | jove quits (~quassel@user/jove) (*.net *.split) |
| 16:58:14 | × | kaol quits (~kaol@94-237-45-144.nl-ams1.upcloud.host) (*.net *.split) |
| 16:58:14 | × | tuxpaint quits (~a@put.gay) (*.net *.split) |
| 16:58:14 | × | xstill_ quits (xstill@fimu/xstill) (*.net *.split) |
| 16:58:15 | × | sajith quits (~sajith@user/sajith) (*.net *.split) |
| 16:58:15 | × | CalimeroTeknik quits (~calimero@user/calimeroteknik) (*.net *.split) |
| 16:58:15 | × | Putonlalla quits (~Putonlall@it-cyan.it.jyu.fi) (*.net *.split) |
| 16:58:15 | × | exarkun quits (~exarkun@user/exarkun) (*.net *.split) |
| 16:58:15 | × | tcard_ quits (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (*.net *.split) |
| 16:58:15 | × | red-snail quits (~snail@static.151.210.203.116.clients.your-server.de) (*.net *.split) |
| 16:58:16 | × | EvanR quits (~EvanR@user/evanr) (*.net *.split) |
| 16:58:16 | × | kritzefitz quits (~kritzefit@debian/kritzefitz) (*.net *.split) |
| 16:58:16 | × | Kamuela quits (sid111576@id-111576.tinside.irccloud.com) (*.net *.split) |
| 16:58:16 | × | remmie quits (ianremsen@tilde.team) (*.net *.split) |
| 16:58:16 | × | vulpine quits (xfnw@user/meow/xfnw) (*.net *.split) |
| 16:58:16 | × | tjbc quits (~tjbc@user/fliife) (*.net *.split) |
| 16:58:16 | × | RussetParrotBear quits (45ce440a48@2a03:6000:1812:100::e2) (*.net *.split) |
| 16:58:17 | × | shane quits (~shane@ana.rch.ist) (*.net *.split) |
| 16:58:17 | × | chymera quits (~chymera@ns1000526.ip-51-81-46.us) (*.net *.split) |
| 16:58:17 | × | bw quits (sid2730@user/betawaffle) (*.net *.split) |
| 16:58:17 | × | adamCS quits (~adamCS@71.167.235.212) (*.net *.split) |
| 16:58:17 | × | pmk_ quits (6afe4476a1@2a03:6000:1812:100::26d) (*.net *.split) |
| 16:58:17 | × | apache quits (apache2@anubis.0x90.dk) (*.net *.split) |
| 16:58:17 | × | kmein quits (~weechat@user/kmein) (*.net *.split) |
| 16:58:17 | × | artu quits (~artu@li90-184.members.linode.com) (*.net *.split) |
| 16:58:17 | × | markasoftware quits (~quassel@107.161.26.124) (*.net *.split) |
| 16:58:17 | × | sus0 quits (zero@user/zeromomentum) (*.net *.split) |
| 16:58:17 | × | taktoa[c] quits (sid282096@id-282096.tinside.irccloud.com) (*.net *.split) |
| 16:58:18 | × | sweater1 quits (~sweater@206.81.18.26) (*.net *.split) |
| 16:58:18 | × | V quits (~v@ircpuzzles/2022/april/winner/V) (*.net *.split) |
| 16:58:18 | × | gAy_Dragon quits (A_D@libera/staff/dragon) (*.net *.split) |
| 16:58:18 | × | SanchayanMaity quits (sid478177@id-478177.hampstead.irccloud.com) (*.net *.split) |
| 16:58:18 | × | _0xa_ quits (~user@2001:19f0:5001:2ba8:5400:1ff:feda:88fc) (*.net *.split) |
| 16:58:18 | × | auri quits (~auri@fsf/member/auri) (*.net *.split) |
| 16:58:18 | × | deriamis quits (nobody@2600:3c0a::f03c:95ff:fee8:f335) (*.net *.split) |
| 16:58:18 | × | mustafa quits (sid502723@rockylinux/releng/mustafa) (*.net *.split) |
| 16:58:18 | × | xelxebar quits (~xelxebar@wilsonb.com) (*.net *.split) |
| 16:58:18 | × | Adeon quits (sid418992@id-418992.lymington.irccloud.com) (*.net *.split) |
| 16:58:18 | × | APic quits (apic@apic.name) (*.net *.split) |
| 16:58:18 | × | dminuoso quits (~weechat@user/dminuoso) (*.net *.split) |
| 16:58:18 | × | xnbya2 quits (~xnbya@2a01:4f8:c17:cbdd::1) (*.net *.split) |
| 16:58:18 | × | inedia quits (~irc@2600:3c00:e000:287::1) (*.net *.split) |
| 16:58:18 | × | edmundnoble_ quits (sid229620@id-229620.helmsley.irccloud.com) (*.net *.split) |
| 16:58:18 | × | lally quits (sid388228@id-388228.uxbridge.irccloud.com) (*.net *.split) |
| 16:58:18 | × | dy quits (sid3438@user/dy) (*.net *.split) |
| 16:58:18 | × | Jon quits (jon@dow.land) (*.net *.split) |
| 16:58:19 | × | codedmart quits (codedmart@2600:3c01::f03c:92ff:fefe:8511) (*.net *.split) |
| 16:58:19 | × | Boarders_____ quits (sid425905@id-425905.lymington.irccloud.com) (*.net *.split) |
| 16:58:19 | × | gaze__ quits (sid387101@id-387101.helmsley.irccloud.com) (*.net *.split) |
| 16:58:19 | × | bradparker quits (sid262931@id-262931.uxbridge.irccloud.com) (*.net *.split) |
| 16:58:19 | × | aspen quits (sid449115@id-449115.helmsley.irccloud.com) (*.net *.split) |
| 16:58:19 | × | dfordvm quits (~dfordivam@160.16.87.223.v6.sakura.ne.jp) (*.net *.split) |
| 16:58:19 | × | smiesner quits (b0cf5acf8c@2a03:6000:1812:100::13b9) (*.net *.split) |
| 16:58:19 | × | Square quits (~Square@user/square) (*.net *.split) |
| 16:58:19 | × | L29Ah quits (~L29Ah@wikipedia/L29Ah) (*.net *.split) |
| 16:58:19 | × | xff0x quits (~xff0x@2405:6580:b080:900:8539:398e:9716:eb72) (*.net *.split) |
| 16:58:19 | × | mceresa quits (~mceresa@user/mceresa) (*.net *.split) |
| 16:58:19 | × | kimiamania quits (~924ba01d@user/kimiamania) (*.net *.split) |
| 16:58:19 | × | j1n37 quits (j1n37@user/j1n37) (*.net *.split) |
| 16:58:20 | × | nek0 quits (~nek0@user/nek0) (*.net *.split) |
| 16:58:20 | × | Leary quits (~Leary@user/Leary/x-0910699) (*.net *.split) |
| 16:58:20 | × | jle` quits (~jle`@2603:8001:3b02:84d4:4ba:cd34:52ca:7a5) (*.net *.split) |
| 16:58:20 | × | mulk quits (~mulk@pd95146e9.dip0.t-ipconnect.de) (*.net *.split) |
| 16:58:20 | × | turlando quits (~turlando@user/turlando) (*.net *.split) |
| 16:58:20 | × | poscat quits (~poscat@user/poscat) (*.net *.split) |
| 16:58:20 | × | leah2 quits (~leah@vuxu.org) (*.net *.split) |
| 16:58:20 | × | Miroboru quits (~myrvoll@178-164-114.82.3p.ntebredband.no) (*.net *.split) |
| 16:58:20 | × | lbseale quits (~quassel@user/ep1ctetus) (*.net *.split) |
| 16:58:20 | × | GoldsteinQ quits (~goldstein@goldstein.rs) (*.net *.split) |
| 16:58:21 | × | hololeap quits (~quassel@user/hololeap) (*.net *.split) |
| 16:58:21 | × | krei-se quits (~krei-se@p5085d46e.dip0.t-ipconnect.de) (*.net *.split) |
| 16:58:21 | × | flounders quits (~flounders@173.246.200.74) (*.net *.split) |
| 16:58:21 | × | smtt quits (smt@user/smtt) (*.net *.split) |
| 16:58:21 | × | robertm quits (robertm@lattice.rojoma.com) (*.net *.split) |
| 16:58:21 | × | Me-me quits (~me-me@user/me-me) (*.net *.split) |
| 16:58:21 | × | m1dnight quits (~m1dnight@d8D861908.access.telenet.be) (*.net *.split) |
| 16:58:21 | × | danso quits (~danso@user/danso) (*.net *.split) |
| 16:58:21 | × | itaipu quits (~itaipu@168.121.99.42) (*.net *.split) |
| 16:58:22 | × | Batzy quits (~quassel@user/batzy) (*.net *.split) |
| 16:58:22 | × | tolt quits (~weechat-h@li219-154.members.linode.com) (*.net *.split) |
| 16:58:22 | × | systemfault quits (sid267009@about/typescript/member/systemfault) (*.net *.split) |
| 16:58:22 | × | shachaf quits (~shachaf@user/shachaf) (*.net *.split) |
| 16:58:22 | × | astroanax quits (~astroanax@2001:19f0:7402:f82:5400:1ff:fec4:f7d7) (*.net *.split) |
| 16:58:22 | × | e-snail quits (~pete@user/e-snail) (*.net *.split) |
| 16:58:22 | × | bjs quits (sid190364@user/bjs) (*.net *.split) |
| 16:58:22 | × | caasih quits (sid13241@id-13241.ilkley.irccloud.com) (*.net *.split) |
| 16:58:22 | × | iphy quits (sid67735@user/iphy) (*.net *.split) |
| 16:58:22 | × | totbwf quits (uid402332@id-402332.uxbridge.irccloud.com) (*.net *.split) |
| 16:58:23 | × | energizer quits (~energizer@user/energizer) (*.net *.split) |
| 16:58:23 | × | nicole quits (ilbelkyr@libera/staff/ilbelkyr) (*.net *.split) |
| 16:58:23 | × | urdh quits (~urdh@user/urdh) (*.net *.split) |
| 16:58:23 | × | koolazer quits (~koo@user/koolazer) (*.net *.split) |
| 16:58:23 | × | carter_ quits (sid14827@id-14827.helmsley.irccloud.com) (*.net *.split) |
| 16:58:23 | × | lisq quits (~quassel@lis.moe) (*.net *.split) |
| 16:58:23 | × | xnyhps quits (~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288) (*.net *.split) |
| 16:58:23 | × | it_ quits (~quassel@v2202212189510211193.supersrv.de) (*.net *.split) |
| 16:58:23 | × | stefan-_ quits (~cri@42dots.de) (*.net *.split) |
| 16:58:23 | × | tdammers quits (~tdammers@41-138-178-143.ftth.glasoperator.nl) (*.net *.split) |
| 16:58:24 | × | yushyin quits (aC7s4hKZiM@mail.karif.server-speed.net) (*.net *.split) |
| 16:58:24 | × | s4msung quits (YSkIhMhdIR@user/s4msung) (*.net *.split) |
| 16:58:24 | × | ShannonB quits (~ShannonB@user/ShannonB) (*.net *.split) |
| 16:58:24 | × | arthurvl quits (~arthurvl@77-174-49-144.fixed.kpn.net) (*.net *.split) |
| 16:58:24 | × | dolio quits (~dolio@130.44.140.168) (*.net *.split) |
| 16:58:24 | × | Teacup quits (~teacup@user/teacup) (*.net *.split) |
| 16:58:24 | × | Patternmaster quits (~georg@user/Patternmaster) (*.net *.split) |
| 16:58:25 | × | Fischmiep quits (~Fischmiep@user/Fischmiep) (*.net *.split) |
| 16:58:25 | × | AWizzArd quits (~code@user/awizzard) (*.net *.split) |
| 16:58:25 | × | bastelfreak quits (bastelfrea@libera/staff/VoxPupuli.bastelfreak) (*.net *.split) |
| 16:58:25 | × | TimWolla quits (~timwolla@2a01:4f8:150:6153:beef::6667) (*.net *.split) |
| 16:58:25 | × | emmanuelux_ quits (~emmanuelu@user/emmanuelux) (*.net *.split) |
| 16:58:25 | × | kronicmage quits (~kronicmag@neotame.csclub.uwaterloo.ca) (*.net *.split) |
| 16:58:25 | × | rini quits (~rini@user/rini) (*.net *.split) |
| 16:58:25 | × | Eoco quits (~ian@128.101.131.218) (*.net *.split) |
| 16:58:25 | × | gawen quits (~gawen@user/gawen) (*.net *.split) |
| 16:58:25 | × | ggb quits (a62ffbaf4f@2a03:6000:1812:100::3ac) (*.net *.split) |
| 16:58:25 | × | jakzale quits (6291399afa@user/jakzale) (*.net *.split) |
| 16:58:26 | × | ACuriousMoose quits (~ACuriousM@156.34.161.188) (*.net *.split) |
| 16:58:26 | × | swistak quits (~swistak@185.21.216.141) (*.net *.split) |
| 16:58:26 | × | Typedfern quits (~Typedfern@59.red-83-37-27.dynamicip.rima-tde.net) (*.net *.split) |
| 16:58:26 | × | mewra quits (~aranea@wireguard/contributorcat/mira) (*.net *.split) |
| 16:58:26 | × | Rembane quits (~Rembane@user/Rembane) (*.net *.split) |
| 16:58:27 | × | tnks quits (sid412124@id-412124.helmsley.irccloud.com) (*.net *.split) |
| 16:58:27 | × | NemesisD quits (sid24071@id-24071.lymington.irccloud.com) (*.net *.split) |
| 16:58:27 | × | hovsater quits (sid499516@user/hovsater) (*.net *.split) |
| 16:58:27 | × | buhman quits (sid411355@user/buhman) (*.net *.split) |
| 16:58:27 | × | Hecate quits (~mariposa@user/hecate) (*.net *.split) |
| 16:58:27 | × | mniip_ quits (mniip@libera/staff/mniip) (*.net *.split) |
| 16:58:27 | × | jespada quits (~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net) (*.net *.split) |
| 16:58:27 | × | rdcdr quits (~rdcdr@user/rdcdr) (*.net *.split) |
| 16:58:27 | × | tv quits (~tv@user/tv) (*.net *.split) |
| 16:58:28 | × | nschoe quits (~nschoe@82-65-202-30.subs.proxad.net) (*.net *.split) |
| 16:58:28 | × | sand-witch quits (~m-mzmz6l@vmi833741.contaboserver.net) (*.net *.split) |
| 16:58:28 | × | bairyn quits (~bairyn@50.250.232.19) (*.net *.split) |
| 16:58:28 | × | preflex quits (~preflex@user/mauke/bot/preflex) (*.net *.split) |
| 16:58:28 | × | zfnmxt quits (~zfnmxt@user/zfnmxt) (*.net *.split) |
| 16:58:28 | × | caubert quits (~caubert@user/caubert) (*.net *.split) |
| 16:58:28 | × | spider1 quits (spider@tilde.cafe) (*.net *.split) |
| 16:58:28 | × | Clint quits (~Clint@user/clint) (*.net *.split) |
| 16:58:28 | × | meejah quits (~meejah@rutas.meejah.ca) (*.net *.split) |
| 16:58:28 | × | tessier quits (~treed@ec2-184-72-149-67.compute-1.amazonaws.com) (*.net *.split) |
| 16:58:28 | × | wz1000 quits (~zubin@static.11.113.47.78.clients.your-server.de) (*.net *.split) |
| 16:58:28 | × | barthandelous01 quits (barth@triton.blinkenshell.org) (*.net *.split) |
| 16:58:29 | × | Dykam quits (Dykam@dykam.nl) (*.net *.split) |
| 16:58:29 | × | tmr quits (~tamer@user/tamer) (*.net *.split) |
| 16:58:29 | × | aku quits (aku@65.108.245.241) (*.net *.split) |
| 16:58:29 | × | oxide quits (~lambda@user/oxide) (*.net *.split) |
| 16:58:30 | × | terrorjack4 quits (~terrorjac@2a01:4f8:c17:dc9f::) (*.net *.split) |
| 16:58:30 | × | gentauro quits (~gentauro@user/gentauro) (*.net *.split) |
| 16:58:30 | × | visilii quits (~visilii@213.24.126.184) (*.net *.split) |
| 16:58:30 | × | Maxdamantus quits (~Maxdamant@user/maxdamantus) (*.net *.split) |
| 16:58:30 | × | remedan quits (~remedan@ip-62-245-108-153.bb.vodafone.cz) (*.net *.split) |
| 16:58:30 | × | dymenshen quits (zenmov@user/dymenshen) (*.net *.split) |
| 16:58:30 | × | mhatta quits (~mhatta@www21123ui.sakura.ne.jp) (*.net *.split) |
| 16:58:30 | × | thaumavorio quits (~thaumavor@thaumavor.io) (*.net *.split) |
| 16:58:31 | × | tritlo quits (sid58727@id-58727.hampstead.irccloud.com) (*.net *.split) |
| 16:58:31 | × | snek quits (sid280155@id-280155.lymington.irccloud.com) (*.net *.split) |
| 16:58:31 | × | hacklschorsch quits (~flo@2a01:4f9:3a:2296::2) (*.net *.split) |
| 16:58:31 | × | wryish quits (~wryish@216.246.119.62) (*.net *.split) |
| 16:58:31 | × | monochrom quits (trebla@216.138.220.146) (*.net *.split) |
| 16:58:31 | × | migas977 quits (~migas@static.140.65.63.178.clients.your-server.de) (*.net *.split) |
| 16:58:31 | × | _d0t quits (~{-d0t-}@user/-d0t-/x-7915216) (*.net *.split) |
| 16:58:31 | × | haveo quits (~weechat@pacamara.iuwt.fr) (*.net *.split) |
| 16:58:31 | × | yahb2 quits (~yahb2@user/tomsmeding/bot/yahb2) (*.net *.split) |
| 16:58:31 | × | cayley5 quits (~cayley5@user/phileasfogg) (*.net *.split) |
| 16:58:31 | × | acidsys quits (~crameleon@openSUSE/member/crameleon) (*.net *.split) |
| 16:58:31 | × | dilaver_ quits (~dilaver_@user/dilaver-:32218) (*.net *.split) |
| 16:58:32 | × | eso quits (a0662dfd5e@2a03:6000:1812:100::1266) (*.net *.split) |
| 16:58:32 | × | sus quits (1b7af6299f@user/zeromomentum) (*.net *.split) |
| 16:58:32 | × | lane quits (809450f172@2a03:6000:1812:100::1300) (*.net *.split) |
| 16:58:32 | × | whereiseveryone quits (206ba86c98@2a03:6000:1812:100::2e4) (*.net *.split) |
| 16:58:32 | × | bwolf quits (c3bc363dd1@2a03:6000:1812:100::180) (*.net *.split) |
| 16:58:32 | × | henrytill quits (e0180937c3@2a03:6000:1812:100::e8c) (*.net *.split) |
| 16:58:32 | × | jleightcap quits (7bc4014b62@user/jleightcap) (*.net *.split) |
| 16:58:32 | × | lucyy quits (228ee8f0ce@user/lucyy) (*.net *.split) |
| 16:58:32 | × | sm2n quits (ae95cb1267@user/sm2n) (*.net *.split) |
| 16:58:32 | × | duncan quits (c6181279e3@user/meow/duncan) (*.net *.split) |
| 16:58:32 | × | 082AAS5CR quits (7569f027cf@2a03:6000:1812:100::e4) (*.net *.split) |
| 16:58:32 | × | chaitlatte0 quits (ea29c0bb16@user/chaitlatte0) (*.net *.split) |
| 16:58:32 | × | filwisher quits (2e6936c793@2a03:6000:1812:100::170) (*.net *.split) |
| 16:58:32 | × | jkoshy quits (99b9359beb@user/jkoshy) (*.net *.split) |
| 16:58:32 | × | shreyasminocha quits (51fdc93eda@user/shreyasminocha) (*.net *.split) |
| 16:58:32 | × | paotsaq quits (~paotsaq@127.209.37.188.rev.vodafone.pt) (*.net *.split) |
| 16:58:32 | × | _________ quits (~nobody@user/noodly) (*.net *.split) |
| 16:58:33 | × | eugenrh quits (~eugenrh@user/eugenrh) (*.net *.split) |
| 16:58:33 | × | df quits (~ben@justworks.xyz) (*.net *.split) |
| 16:58:33 | × | glguy quits (glguy@libera/staff/glguy) (*.net *.split) |
| 16:58:33 | × | gvg quits (~dcd@user/gvg) (*.net *.split) |
| 16:58:33 | × | olivial quits (~benjaminl@user/benjaminl) (*.net *.split) |
| 16:58:33 | × | ham2 quits (~ham@user/ham) (*.net *.split) |
| 16:58:33 | × | ljdarj quits (~Thunderbi@user/ljdarj) (*.net *.split) |
| 16:58:34 | × | caconym quits (~caconym@user/caconym) (*.net *.split) |
| 16:58:34 | × | euandreh quits (~Thunderbi@189.6.105.228) (*.net *.split) |
| 16:58:34 | × | tabemann quits (~tabemann@2600:1700:7990:24e0:9f6b:68a6:cce5:e580) (*.net *.split) |
| 16:58:34 | × | manwithluck quits (manwithluc@gateway/vpn/protonvpn/manwithluck) (*.net *.split) |
| 16:58:34 | × | philopsos quits (~caecilius@user/philopsos) (*.net *.split) |
| 16:58:34 | × | mikko quits (~mikko@user/mikko) (*.net *.split) |
| 16:58:34 | × | mesaoptimizer quits (~mesaoptim@user/PapuaHardyNet) (*.net *.split) |
| 16:58:34 | × | Flow quits (~none@gentoo/developer/flow) (*.net *.split) |
| 16:58:34 | × | Natch quits (~natch@c-92-34-7-158.bbcust.telenor.se) (*.net *.split) |
| 16:58:35 | × | ZLima12 quits (~zlima12@user/meow/ZLima12) (*.net *.split) |
| 16:58:35 | × | Hafydd quits (~Hafydd@user/hafydd) (*.net *.split) |
| 16:58:35 | × | TheCoffeMaker quits (~TheCoffeM@user/thecoffemaker) (*.net *.split) |
| 16:58:35 | × | immae quits (~immae@2a01:4f8:141:53e7::) (*.net *.split) |
| 16:58:36 | × | cptaffe quits (~cptaffe@user/cptaffe) (*.net *.split) |
| 16:58:36 | × | flukiluke quits (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) (*.net *.split) |
| 16:58:36 | × | disconnect3d quits (~disconnec@user/disconnect3d) (*.net *.split) |
| 16:58:36 | × | dpk quits (~dpk@jains.nonceword.org) (*.net *.split) |
| 16:58:36 | × | jocke-l quits (jocke-l@a.x0.is) (*.net *.split) |
| 16:58:36 | × | ell2 quits (~ellie@user/ellie) (*.net *.split) |
| 16:58:36 | × | Pent quits (sid313808@id-313808.lymington.irccloud.com) (*.net *.split) |
| 16:58:36 | × | jakesyl_____ quits (sid56879@id-56879.hampstead.irccloud.com) (*.net *.split) |
| 16:58:36 | × | meinside quits (uid24933@id-24933.helmsley.irccloud.com) (*.net *.split) |
| 16:58:36 | × | Hobbyboy quits (Hobbyboy@hobbyboy.co.uk) (*.net *.split) |
| 16:58:37 | × | Yumemi_ quits (~Yumemi@chamoin.net) (*.net *.split) |
| 16:58:37 | × | mjrosenb quits (~mjrosenb@pool-96-232-177-77.nycmny.fios.verizon.net) (*.net *.split) |
| 16:58:37 | × | lockywolf quits (~lockywolf@coconut.lockywolf.net) (*.net *.split) |
| 16:58:37 | × | davl_ quits (~davl@207.154.228.18) (*.net *.split) |
| 16:58:37 | × | coldmountain quits (sid484352@id-484352.helmsley.irccloud.com) (*.net *.split) |
| 16:58:37 | × | shawwwn quits (sid6132@id-6132.helmsley.irccloud.com) (*.net *.split) |
| 16:58:37 | × | sa1 quits (sid7690@id-7690.ilkley.irccloud.com) (*.net *.split) |
| 16:58:37 | × | sprout quits (~sprout@2a02-a448-3a80-0-c61c-b515-5509-58e7.fixed6.kpn.net) (*.net *.split) |
| 16:58:37 | × | bailsman quits (~ejrietvel@revspace/participant/bailsman) (*.net *.split) |
| 16:58:37 | × | idnar quits (sid12240@debian/mithrandi) (*.net *.split) |
| 16:58:37 | × | ddb quits (ddb@tilde.club) (*.net *.split) |
| 16:58:38 | × | integral quits (sid296274@user/integral) (*.net *.split) |
| 16:58:38 | × | [_________] quits (~oos95GWG@user/oos95GWG) (*.net *.split) |
| 16:58:38 | × | sa quits (sid1055@id-1055.tinside.irccloud.com) (*.net *.split) |
| 16:58:38 | × | szkl quits (uid110435@id-110435.uxbridge.irccloud.com) (*.net *.split) |
| 16:58:38 | × | Techcable quits (sid534393@user/Techcable) (*.net *.split) |
| 16:58:38 | × | kaskal quits (~kaskal@2001:4bb8:2c3:1470:8b1d:2068:6ef2:d351) (*.net *.split) |
| 16:58:38 | × | willscripted quits (~willscrip@user/willscripted) (*.net *.split) |
| 16:58:38 | × | hiredman quits (~hiredman@frontier1.downey.family) (*.net *.split) |
| 16:58:39 | × | Pozyomka quits (~pyon@user/pyon) (*.net *.split) |
| 16:58:39 | × | arahael quits (~arahael@user/arahael) (*.net *.split) |
| 16:58:39 | × | img quits (~img@user/img) (*.net *.split) |
| 16:58:40 | × | piele quits (~piele@tbonesteak.creativeserver.net) (*.net *.split) |
| 16:58:40 | × | mud quits (~mud@user/kadoban) (*.net *.split) |
| 16:58:40 | × | enikar quits (~enikar@user/enikar) (*.net *.split) |
| 16:58:40 | × | absence quits (torgeihe@hildring.pvv.ntnu.no) (*.net *.split) |
| 16:58:40 | × | aristid quits (sid1599@id-1599.uxbridge.irccloud.com) (*.net *.split) |
| 16:58:40 | × | rune_ quits (sid21167@id-21167.ilkley.irccloud.com) (*.net *.split) |
| 16:58:41 | × | fired quits (LA@2600:3c00::f03c:92ff:fee3:aace) (*.net *.split) |
| 16:58:41 | × | ol0ck quits (~quassel@user/ol0ck) (*.net *.split) |
| 16:58:41 | × | Jonno_FTW quits (~come@user/jonno-ftw/x-0835346) (*.net *.split) |
| 16:58:41 | × | TMA quits (tma@twin.jikos.cz) (*.net *.split) |
| 16:58:41 | × | dispater quits (~dispater@mail.brprice.uk) (*.net *.split) |
| 16:58:41 | × | alanz quits (sid110616@id-110616.uxbridge.irccloud.com) (*.net *.split) |
| 16:58:41 | × | meooow_ quits (~meooow@165.232.184.169) (*.net *.split) |
| 16:58:41 | × | dmj` quits (sid72307@id-72307.hampstead.irccloud.com) (*.net *.split) |
| 16:58:42 | × | Aleksejs quits (~Aleksejs@107.170.21.106) (*.net *.split) |
| 16:58:42 | × | SethTisue quits (sid14912@id-14912.ilkley.irccloud.com) (*.net *.split) |
| 16:58:42 | × | nonzen quits (~nonzen@user/nonzen) (*.net *.split) |
| 16:58:42 | × | pikajude quits (~jude@2001:19f0:ac01:373:5400:2ff:fe86:3274) (*.net *.split) |
| 16:58:42 | × | xerox quits (~edi@user/edi) (*.net *.split) |
| 16:58:42 | × | She quits (haveident@libera/staff/she/her) (*.net *.split) |
| 16:58:42 | × | andjjj23 quits (~irc@107.170.228.47) (*.net *.split) |
| 16:58:42 | × | sclv quits (sid39734@haskell/developer/sclv) (*.net *.split) |
| 16:58:42 | × | jmct quits (sid160793@id-160793.tinside.irccloud.com) (*.net *.split) |
| 16:58:42 | × | alinab quits (sid468903@id-468903.helmsley.irccloud.com) (*.net *.split) |
| 16:58:42 | × | geekosaur quits (sid609282@xmonad/geekosaur) (*.net *.split) |
| 16:58:42 | × | bryanv quits (~quassel@2603:c028:4503:7500:45b7:933:ab17:bc10) (*.net *.split) |
| 16:58:42 | × | mmaruseacph2 quits (~mihai@mihai.page) (*.net *.split) |
| 16:58:42 | × | ProofTechnique_ quits (sid79547@id-79547.ilkley.irccloud.com) (*.net *.split) |
| 16:58:43 | × | krjst quits (~krjst@2604:a880:800:c1::16b:8001) (*.net *.split) |
| 16:58:43 | × | amir quits (sid22336@user/amir) (*.net *.split) |
| 16:58:43 | × | lexi-lambda quits (sid92601@id-92601.hampstead.irccloud.com) (*.net *.split) |
| 16:58:43 | × | S11001001 quits (sid42510@id-42510.ilkley.irccloud.com) (*.net *.split) |
| 16:58:43 | × | T_S_____ quits (sid501726@id-501726.uxbridge.irccloud.com) (*.net *.split) |
| 16:58:43 | × | haasn quits (sid579015@id-579015.hampstead.irccloud.com) (*.net *.split) |
| 16:58:43 | × | dsal quits (sid13060@id-13060.lymington.irccloud.com) (*.net *.split) |
| 16:58:43 | × | Axman6 quits (~Axman6@user/axman6) (*.net *.split) |
| 16:58:43 | × | superbil quits (~superbil@114-32-231-70.hinet-ip.hinet.net) (*.net *.split) |
| 16:58:43 | × | nurupo quits (~nurupo.ga@user/nurupo) (*.net *.split) |
| 16:58:44 | × | NiKaN quits (sid385034@id-385034.helmsley.irccloud.com) (*.net *.split) |
| 16:58:44 | × | troojg quits (~troojg@user/troojg) (*.net *.split) |
| 16:58:44 | × | dostoyev1ky2 quits (~sck@user/dostoyevsky2) (*.net *.split) |
| 16:58:44 | × | institor quits (~henricus@user/institor) (*.net *.split) |
| 16:58:44 | × | CrunchyFlakes_ quits (~CrunchyFl@31.19.233.78) (*.net *.split) |
| 16:58:44 | × | Spawns quits (~mobile@user/spawns-carpeting/x-6969421) (*.net *.split) |
| 16:58:44 | × | dfg quits (~dfg@user/dfg) (*.net *.split) |
| 16:58:44 | × | billchenchina quits (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) (*.net *.split) |
| 16:58:44 | × | zmt00 quits (~zmt00@user/zmt00) (*.net *.split) |
| 16:58:45 | × | yaroot quits (~yaroot@2400:4052:ac0:d901:1cf4:2aff:fe51:c04c) (*.net *.split) |
| 16:58:45 | × | ft quits (~ft@p4fc2a26f.dip0.t-ipconnect.de) (*.net *.split) |
| 16:58:45 | × | berberman quits (~berberman@user/berberman) (*.net *.split) |
| 16:58:45 | × | jjhoo quits (~jahakala@user/jjhoo) (*.net *.split) |
| 16:58:45 | × | talismanick quits (~user@2601:644:937c:ed10::ae5) (*.net *.split) |
| 16:58:45 | × | hgolden quits (~hgolden@2603:8000:9d00:3ed1:6c70:1ac0:d127:74dd) (*.net *.split) |
| 16:58:45 | × | zzz quits (~z@user/zero) (*.net *.split) |
| 16:58:45 | × | ThePenguin quits (~ThePengui@cust-95-80-24-166.csbnet.se) (*.net *.split) |
| 16:58:46 | × | tired quits (~tired@user/tired) (*.net *.split) |
| 16:58:46 | × | cyphase quits (~cyphase@user/cyphase) (*.net *.split) |
| 16:58:46 | × | anpad quits (~pandeyan@user/anpad) (*.net *.split) |
| 16:58:46 | × | tt1231097832435 quits (~tt1231@2603:6010:8700:4a81:219f:50d3:618a:a6ee) (*.net *.split) |
| 16:58:46 | × | todi quits (~todi@p57803331.dip0.t-ipconnect.de) (*.net *.split) |
| 16:58:46 | × | forell quits (~forell@user/forell) (*.net *.split) |
| 16:58:46 | × | ftzm quits (~ftzm@085080230038.dynamic.telenor.dk) (*.net *.split) |
| 16:58:46 | × | rembo10 quits (~rembo10@main.remulis.com) (*.net *.split) |
| 16:58:46 | × | byte quits (~byte@149.28.222.189) (*.net *.split) |
| 16:58:46 | × | dyniec quits (~dyniec@dybiec.info) (*.net *.split) |
| 16:58:47 | × | drdo quits (~drdo@bl9-110-63.dsl.telepac.pt) (*.net *.split) |
| 16:58:47 | × | ridcully quits (~ridcully@pd951f16a.dip0.t-ipconnect.de) (*.net *.split) |
| 16:58:47 | × | xacktm quits (xacktm@user/xacktm) (*.net *.split) |
| 16:58:47 | × | Adran quits (~adran@botters/adran) (*.net *.split) |
| 16:58:47 | × | tureba quits (~tureba@tureba.org) (*.net *.split) |
| 16:58:47 | × | hc quits (~hc@mail.hce.li) (*.net *.split) |
| 16:58:47 | × | rncwnd quits (~quassel@2a01:4f8:221:27c6::1) (*.net *.split) |
| 16:58:48 | × | lambdap2371 quits (~lambdap@static.167.190.119.168.clients.your-server.de) (*.net *.split) |
| 16:58:48 | × | koala_man quits (~vidar@157.146.251.23.bc.googleusercontent.com) (*.net *.split) |
| 16:58:48 | × | mcfrdy quits (~mcfrdy@user/mcfrdy) (*.net *.split) |
| 16:58:48 | × | opqdonut quits (opqdonut@pseudo.fixme.fi) (*.net *.split) |
| 16:58:48 | × | n3t quits (~n3t@user/n3t) (*.net *.split) |
| 16:58:48 | × | Raito_Bezarius quits (~Raito@wireguard/tunneler/raito-bezarius) (*.net *.split) |
| 16:58:48 | × | lxsameer quits (~lxsameer@Serene/lxsameer) (*.net *.split) |
| 16:58:48 | × | Smiles quits (uid551636@id-551636.lymington.irccloud.com) (*.net *.split) |
| 16:58:48 | × | farn__ quits (~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) (*.net *.split) |
| 16:58:48 | × | andreas303 quits (andreas303@is.drunk.and.ready-to.party) (*.net *.split) |
| 16:58:48 | × | jinsun quits (~jinsun@user/jinsun) (*.net *.split) |
| 16:58:48 | × | acidjnk_new quits (~acidjnk@p200300d6e7283f16f0fc97e1b3533d6e.dip0.t-ipconnect.de) (*.net *.split) |
| 16:58:48 | × | alp quits (~alp@2001:861:e3d6:8f80:2261:439d:9740:2954) (*.net *.split) |
| 16:58:48 | × | FragByte quits (~christian@user/fragbyte) (*.net *.split) |
| 16:58:48 | × | Tuplanolla quits (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) (*.net *.split) |
| 16:58:49 | × | td_ quits (~td@i53870904.versanet.de) (*.net *.split) |
| 16:58:49 | × | hughjfchen quits (~hughjfche@vmi556545.contaboserver.net) (*.net *.split) |
| 16:58:49 | × | jess quits (meow@libera/staff/cat/jess) (*.net *.split) |
| 16:58:49 | × | pounce quits (~pounce@user/cute/pounce) (*.net *.split) |
| 16:58:50 | × | dumptruckman quits (~dumptruck@66-175-211-75.ip.linodeusercontent.com) (*.net *.split) |
| 16:58:50 | × | GdeVolpiano quits (~GdeVolpia@user/GdeVolpiano) (*.net *.split) |
| 16:58:50 | × | roosterphant_ quits (~roosterph@185.21.217.76) (*.net *.split) |
| 16:58:51 | × | guygastineau quits (~guygastin@137.184.131.156) (*.net *.split) |
| 16:58:51 | × | mrmonday quits (~robert@what.i.hope.is.not.a.tabernaevagant.es) (*.net *.split) |
| 16:58:51 | × | dibblego quits (~dibblego@haskell/developer/dibblego) (*.net *.split) |
| 16:58:51 | × | orcus quits (~orcus@mail.brprice.uk) (*.net *.split) |
| 16:58:51 | × | gabiruh quits (~gabiruh@vps19177.publiccloud.com.br) (*.net *.split) |
| 16:58:51 | × | picnoir quits (~picnoir@about/aquilenet/vodoo/NinjaTrappeur) (*.net *.split) |
| 16:58:51 | × | nckx quits (nckx@libera/staff/owl/nckx) (*.net *.split) |
| 16:58:51 | × | smalltalkman quits (uid545680@id-545680.hampstead.irccloud.com) (*.net *.split) |
| 16:58:51 | × | dunj3 quits (~dunj3@2a01:239:328:1600::1) (*.net *.split) |
| 16:58:51 | × | Vajb quits (~Vajb@n7m8bu6eaitlx0eukg2-1.v6.elisa-mobile.fi) (*.net *.split) |
| 16:58:52 | × | mrvdb quits (~mrvdb@2001:19f0:5000:8582:5400:ff:fe07:3df5) (*.net *.split) |
| 16:58:52 | × | b20n quits (sid115913@id-115913.uxbridge.irccloud.com) (*.net *.split) |
| 16:58:52 | × | Moyst__ quits (~moyst@user/moyst) (*.net *.split) |
| 16:58:52 | × | c_wraith quits (~c_wraith@adjoint.us) (*.net *.split) |
| 16:58:52 | × | ggVGc quits (~ggVGc@a.lowtech.earth) (*.net *.split) |
| 16:58:52 | × | ChanServ quits (ChanServ@services.libera.chat) (*.net *.split) |
| 17:00:11 | → | sam113101 joins (~sam@modemcable220.199-203-24.mc.videotron.ca) |
| 17:00:11 | → | statusbot7 joins (~statusbot@ec2-34-198-122-184.compute-1.amazonaws.com) |
| 17:00:11 | → | Raito_Bezarius joins (~Raito@wireguard/tunneler/raito-bezarius) |
| 17:00:11 | → | nurupo joins (~nurupo.ga@user/nurupo) |
| 17:00:11 | → | lxsameer joins (~lxsameer@Serene/lxsameer) |
| 17:00:11 | → | fernando-basso joins (~fernando-@2a01:4f9:c012:63d3::1) |
| 17:00:11 | → | stefan-__ joins (~m-yh2rcc@42dots.de) |
| 17:00:11 | → | ursa-major joins (114efe6c39@2a03:6000:1812:100::11f3) |
| 17:00:11 | → | Philonous joins (~Philonous@user/philonous) |
| 17:00:11 | → | ames joins (~amelia@offtopia/offtopian/amelia) |
| 17:00:11 | → | WzC joins (~Frank@77-162-168-71.fixed.kpn.net) |
| 17:00:11 | → | myme joins (~myme@40.51-175-185.customer.lyse.net) |
| 17:00:11 | → | polux joins (~polux@51-15-169-172.rev.poneytelecom.eu) |
| 17:00:11 | → | _xor joins (~xor@ip-66-42-132-175.dynamic.fuse.net) |
| 17:00:11 | → | pie_ joins (~pie_bnc@user/pie/x-2818909) |
| 17:00:11 | → | skylord5816 joins (~skylord58@user/skylord5816) |
| 17:00:11 | → | hueso joins (~root@user/hueso) |
| 17:00:11 | → | haritz joins (~hrtz@user/haritz) |
| 17:00:11 | → | nadja joins (~dequbed@banana-new.kilobyte22.de) |
| 17:00:11 | → | fr33domlover joins (~fr33domlo@towards.vision) |
| 17:00:11 | → | doyougnu joins (~doyougnu@syn-045-046-170-068.res.spectrum.com) |
| 17:00:11 | → | jrm joins (~jrm@user/jrm) |
| 17:00:11 | → | biberu joins (~biberu@user/biberu) |
| 17:00:11 | → | remexre joins (~remexre@user/remexre) |
| 17:00:11 | → | infinity0 joins (~infinity0@pwned.gg) |
| 17:00:11 | → | Katarushisu joins (~Katarushi@finc-20-b2-v4wan-169598-cust1799.vm7.cable.virginm.net) |
| 17:00:11 | → | bionade24 joins (~quassel@2a03:4000:33:45b::1) |
| 17:00:11 | → | spew joins (~spew@135.233.119.40) |
| 17:00:11 | → | tomku joins (~tomku@user/tomku) |
| 17:00:11 | → | Lord_of_Life joins (~Lord@user/lord-of-life/x-2819915) |
| 17:00:11 | → | Smiles joins (uid551636@id-551636.lymington.irccloud.com) |
| 17:00:11 | → | darkling joins (~darkling@2001-ba8-1f1-f0e6-0-0-0-2.autov6rev.bitfolk.space) |
| 17:00:11 | → | PHO` joins (~pho@akari.cielonegro.org) |
| 17:00:11 | → | gmc joins (sid58314@id-58314.ilkley.irccloud.com) |
| 17:00:11 | → | tomjagua1paw joins (~tom@172-104-25-182.ip.linodeusercontent.com) |
| 17:00:11 | → | h2t joins (~h2t@user/h2t) |
| 17:00:11 | → | Logio joins (em@kapsi.fi) |
| 17:00:11 | → | davean joins (~davean@davean.sciesnet.net) |
| 17:00:11 | → | bollu joins (~bollu@159.65.151.13) |
| 17:00:11 | → | YuutaW joins (~YuutaW@mail.yuuta.moe) |
| 17:00:11 | → | barrucadu joins (~barrucadu@carcosa.barrucadu.co.uk) |
| 17:00:11 | → | srk joins (~sorki@user/srk) |
| 17:00:11 | → | jonrh joins (sid5185@id-5185.ilkley.irccloud.com) |
| 17:00:11 | → | JSharp joins (sid4580@user/JSharp) |
| 17:00:11 | → | tapas joins (sid467876@id-467876.ilkley.irccloud.com) |
| 17:00:11 | → | PotatoGim joins (sid99505@id-99505.lymington.irccloud.com) |
| 17:00:11 | → | nshepperd joins (nshepperd@2600:3c03::f03c:92ff:fe28:92c9) |
| 17:00:11 | → | [exa] joins (~exa@user/exa/x-3587197) |
| 17:00:11 | → | nshepperd2 joins (~nshepperd@static.117.72.21.65.clients.your-server.de) |
| 17:00:11 | → | rubin55 joins (sid666177@id-666177.lymington.irccloud.com) |
| 17:00:11 | → | fgaz joins (1ff9197ed6@2a03:6000:1812:100::11ea) |
| 17:00:11 | → | bsima1 joins (9d7e39c8ad@2a03:6000:1812:100::dd) |
| 17:00:11 | → | lukec joins (9dfd4d094e@2a03:6000:1812:100::10e) |
| 17:00:11 | → | titibandit joins (e33ffbab65@user/titibandit) |
| 17:00:11 | → | aniketd joins (32aa4844cd@2a03:6000:1812:100::dcb) |
| 17:00:11 | → | evanrelf joins (3addc196af@2a03:6000:1812:100::f0) |
| 17:00:11 | → | probie joins (cc0b34050a@user/probie) |
| 17:00:11 | → | jmcantrell joins (644f1bed9a@user/jmcantrell) |
| 17:00:11 | → | Ankhers joins (e99e97ef8e@2a03:6000:1812:100::2a2) |
| 17:00:11 | → | JoelMcCracken joins (5ea8252fbb@2a03:6000:1812:100::10e3) |
| 17:00:11 | → | akspecs joins (00cc8321af@sourcehut/user/akspecs) |
| 17:00:11 | → | b0o joins (0e4a0bf4c9@2a03:6000:1812:100::1bf) |
| 17:00:11 | → | landonf joins (landonf@mac68k.info) |
| 17:00:11 | → | motherfsck joins (~motherfsc@user/motherfsck) |
| 17:00:11 | → | cjay joins (cjay@nerdbox.nerd2nerd.org) |
| 17:00:11 | → | troydm joins (~troydm@user/troydm) |
| 17:00:11 | → | foul_owl joins (~kerry@185.216.231.180) |
| 17:00:11 | → | Xe joins (~Xe@perl/impostor/xe) |
| 17:00:11 | → | hsw joins (~hsw@2001-b030-2303-0104-0172-0025-0012-0132.hinet-ip6.hinet.net) |
| 17:00:11 | → | wootehfoot joins (~wootehfoo@user/wootehfoot) |
| 17:00:11 | → | [_________] joins (~oos95GWG@user/oos95GWG) |
| 17:00:11 | → | farn__ joins (~farn@2a03:4000:7:3cd:d4ab:85ff:feeb:f505) |
| 17:00:11 | → | beaky joins (~beaky@198.211.118.219) |
| 17:00:11 | → | bgamari joins (~bgamari@64.223.233.64) |
| 17:00:11 | → | sefidel joins (~sefidel@user/sefidel) |
| 17:00:11 | → | liskin joins (~liskin@xmonad/liskin) |
| 17:00:11 | → | degraafk joins (sid71464@id-71464.lymington.irccloud.com) |
| 17:00:11 | → | ncf joins (~n@monade.li) |
| 17:00:11 | → | teesquare_ joins (~teesquare@user/teesquare) |
| 17:00:11 | → | acro joins (~acro@user/acro) |
| 17:00:11 | → | saolsen joins (sid26430@id-26430.lymington.irccloud.com) |
| 17:00:11 | → | edwardk joins (sid47016@haskell/developer/edwardk) |
| 17:00:11 | → | bcksl joins (~bcksl@user/bcksl) |
| 17:00:11 | → | edwtjo joins (~edwtjo@fsf/member/edwtjo) |
| 17:00:11 | → | Athas joins (athas@sigkill.dk) |
| 17:00:11 | → | nisstyre joins (wes@user/nisstyre) |
| 17:00:11 | → | masterbuilder joins (~quassel@user/masterbuilder) |
| 17:00:11 | → | crazazy joins (~crazazy@tilde.town) |
| 17:00:11 | → | bsima joins (~bsima@143.198.118.179) |
| 17:00:11 | → | cheater joins (~Username@user/cheater) |
| 17:00:11 | → | Fangs joins (sid141280@id-141280.hampstead.irccloud.com) |
| 17:00:11 | → | sm joins (~znc@plaintextaccounting/sm) |
| 17:00:11 | → | arkeet joins (~arkeet@moriya.ca) |
| 17:00:11 | → | coldtom joins (~coldtom@coldrick.cc) |
| 17:00:11 | → | flocks joins (~flocks@134.122.90.60) |
| 17:00:11 | → | rselim joins (ce261f06ff@user/milesrout) |
| 17:00:11 | → | raghavgururajan joins (ea769b8000@user/raghavgururajan) |
| 17:00:11 | → | tok joins (da65c7b04b@user/tok) |
| 17:00:11 | → | samhh joins (7569f027cf@2a03:6000:1812:100::e4) |
| 17:00:11 | → | ringo_ joins (~ringo@157.230.117.128) |
| 17:00:11 | → | ent-_ joins (entgod@kapsi.fi) |
| 17:00:11 | → | peutri joins (~peutri@bobo.desast.re) |
| 17:00:11 | → | ouroboros joins (~ouroboros@user/ouroboros) |
| 17:00:11 | → | mauke joins (~mauke@user/mauke) |
| 17:00:11 | → | pabs3 joins (~pabs3@user/pabs3) |
| 17:00:11 | → | mrmr155334346318 joins (~mrmr@user/mrmr) |
| 17:00:11 | → | comonad joins (~comonad@p200300d0270bcb00d2bd35ff80c069c9.dip0.t-ipconnect.de) |
| 17:00:11 | → | bwe joins (~bwe@2a01:4f8:1c1c:4878::2) |
| 17:00:11 | → | Pixi joins (~Pixi@user/pixi) |
| 17:00:11 | → | MironZ3 joins (~MironZ@nat-infra.ehlab.uk) |
| 17:00:11 | → | driib318 joins (~driib@vmi931078.contaboserver.net) |
| 17:00:11 | → | hellwolf joins (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) |
| 17:00:11 | → | stiell_ joins (~stiell@gateway/tor-sasl/stiell) |
| 17:00:11 | → | mantraofpie joins (~mantraofp@user/mantraofpie) |
| 17:00:11 | → | chexum_ joins (~quassel@gateway/tor-sasl/chexum) |
| 17:00:11 | → | gmg joins (~user@user/gehmehgeh) |
| 17:00:11 | → | califax joins (~califax@user/califx) |
| 17:00:11 | → | ChaiTRex joins (~ChaiTRex@user/chaitrex) |
| 17:00:11 | → | chiselfuse joins (~chiselfus@user/chiselfuse) |
| 17:00:11 | → | bitdex joins (~bitdex@gateway/tor-sasl/bitdex) |
| 17:00:11 | → | NiKaN joins (sid385034@id-385034.helmsley.irccloud.com) |
| 17:00:11 | → | gvg joins (~dcd@user/gvg) |
| 17:00:11 | → | troojg joins (~troojg@user/troojg) |
| 17:00:11 | → | dostoyev1ky2 joins (~sck@user/dostoyevsky2) |
| 17:00:11 | → | haetsal joins (~quassel@221.138.168.192) |
| 17:00:11 | → | DragonMaus joins (~dragonmau@user/dragonmaus) |
| 17:00:11 | → | joeyh joins (~joeyh@kitenet.net) |
| 17:00:11 | → | ski joins (~ski@remote11.chalmers.se) |
| 17:00:11 | → | hamishmack joins (sid389057@id-389057.hampstead.irccloud.com) |
| 17:00:11 | → | astra joins (sid289983@user/amish) |
| 17:00:11 | → | siers joins (~ij@user/ij) |
| 17:00:11 | → | SrPx joins (sid108780@id-108780.uxbridge.irccloud.com) |
| 17:00:11 | → | edm joins (sid147314@id-147314.hampstead.irccloud.com) |
| 17:00:11 | → | drlkf joins (~drlkf@chat-1.drlkf.net) |
| 17:00:11 | → | mima joins (~mmh@user/mima) |
| 17:00:11 | → | jackdk joins (sid373013@cssa/jackdk) |
| 17:00:11 | → | acarrico joins (~acarrico@dhcp-209-99-192-63.greenmountainaccess.net) |
| 17:00:11 | → | Ranhir joins (~Ranhir@157.97.53.139) |
| 17:00:11 | → | nitrix joins (~nitrix@user/meow/nitrix) |
| 17:00:11 | → | Sciencentistguy joins (~sciencent@hacksoc/ordinary-member) |
| 17:00:11 | → | ymherklotz joins (cb2c9cfbdd@2a03:6000:1812:100::29a) |
| 17:00:11 | → | fvr joins (ef3e56ca8b@2a03:6000:1812:100::3c4) |
| 17:00:11 | → | arcadewise joins (52968ed80d@2a03:6000:1812:100::3df) |
| 17:00:11 | → | fn_lumi joins (3d621153a5@2a03:6000:1812:100::df7) |
| 17:00:11 | → | cpli joins (77fc530071@2a03:6000:1812:100::252) |
| 17:00:11 | → | pdxleif joins (~ubuntu@ec2-35-163-144-64.us-west-2.compute.amazonaws.com) |
| 17:00:11 | → | lieven joins (~mal@ns2.wyrd.be) |
| 17:00:11 | → | stilgart joins (~Christoph@chezlefab.net) |
| 17:00:11 | → | lyxia joins (~lyxia@poisson.chat) |
| 17:00:11 | → | Angelz joins (Angelz@Angelz.oddprotocol.org) |
| 17:00:11 | → | Ram-Z joins (Ram-Z@2a01:7e01::f03c:91ff:fe57:d2df) |
| 17:00:11 | → | spenat joins (~spenat@c-92-35-37-17.bbcust.telenor.se) |
| 17:00:11 | → | TonyStone joins (~TonyStone@user/TonyStone) |
| 17:00:11 | → | op_4 joins (~tslil@user/op-4/x-9116473) |
| 17:00:11 | → | delyan_ joins (sid523379@id-523379.hampstead.irccloud.com) |
| 17:00:11 | → | tomsmeding joins (~tomsmedin@2a01:4f8:c0c:5e5e::2) |
| 17:00:11 | → | abrar joins (~abrar@pool-72-78-199-167.phlapa.fios.verizon.net) |
| 17:00:11 | → | Inst joins (~Inst@user/Inst) |
| 17:00:11 | → | noctuks joins (d4toxF5wNA@user/noctux) |
| 17:00:11 | → | youthlic joins (~Thunderbi@user/youthlic) |
| 17:00:11 | → | JamesMowery43 joins (~JamesMowe@ip68-228-212-232.ph.ph.cox.net) |
| 17:00:11 | → | int-e joins (~noone@int-e.eu) |
| 17:00:11 | → | __monty__ joins (~toonn@user/toonn) |
| 17:00:11 | → | lol_ joins (~lol@2603:3016:1e01:b9c0:4843:dab9:4f1f:25c0) |
| 17:00:11 | → | welterde1 joins (~welterde@thinkbase.srv.welterde.de) |
| 17:00:11 | → | olivial joins (~benjaminl@user/benjaminl) |
| 17:00:11 | → | exarkun joins (~exarkun@user/exarkun) |
| 17:00:11 | → | Putonlalla joins (~Putonlall@it-cyan.it.jyu.fi) |
| 17:00:11 | → | CalimeroTeknik joins (~calimero@user/calimeroteknik) |
| 17:00:11 | → | sajith joins (~sajith@user/sajith) |
| 17:00:11 | → | xstill_ joins (xstill@fimu/xstill) |
| 17:00:11 | → | tuxpaint joins (~a@put.gay) |
| 17:00:11 | → | kaol joins (~kaol@94-237-45-144.nl-ams1.upcloud.host) |
| 17:00:11 | → | jove joins (~quassel@user/jove) |
| 17:00:11 | → | Igloo joins (~ian@81.2.99.210) |
| 17:00:11 | → | koz joins (~koz@121.99.240.58) |
| 17:00:11 | → | alioguzhan joins (~Thunderbi@78.173.69.189) |
| 17:00:11 | → | tomboy64 joins (~tomboy64@user/tomboy64) |
| 17:00:11 | → | ethantwardy joins (user@user/ethantwardy) |
| 17:00:11 | → | Digitteknohippie joins (~user@user/digit) |
| 17:00:11 | → | fluxit joins (~fluxit@192.241.192.75) |
| 17:00:11 | → | gorignak joins (~gorignak@user/gorignak) |
| 17:00:11 | → | takuan joins (~takuan@178-116-218-225.access.telenet.be) |
| 17:00:11 | → | lambdabot joins (~lambdabot@haskell/bot/lambdabot) |
| 17:00:11 | → | kqr joins (~kqr@static.143.81.108.65.clients.your-server.de) |
| 17:00:11 | → | bliminse joins (~bliminse@user/bliminse) |
| 17:00:11 | → | Fijxu joins (~Fijxu@user/fijxu) |
| 17:00:11 | → | noteness_ joins (~noteness@user/noteness) |
| 17:00:11 | tantalum.libera.chat | sets mode +v lambdabot |
| 17:00:11 | → | unlucy joins (sid572875@user/unlucy) |
| 17:00:11 | → | sa joins (sid1055@id-1055.tinside.irccloud.com) |
| 17:00:11 | → | szkl joins (uid110435@id-110435.uxbridge.irccloud.com) |
| 17:00:11 | → | institor joins (~henricus@user/institor) |
| 17:00:11 | → | Techcable joins (sid534393@user/Techcable) |
| 17:00:11 | → | jespada joins (~jespada@cpc121308-nmal25-2-0-cust15.19-2.cable.virginm.net) |
| 17:00:11 | → | dfordvm joins (~dfordivam@160.16.87.223.v6.sakura.ne.jp) |
| 17:00:11 | → | aspen joins (sid449115@id-449115.helmsley.irccloud.com) |
| 17:00:11 | → | bradparker joins (sid262931@id-262931.uxbridge.irccloud.com) |
| 17:00:11 | → | gaze__ joins (sid387101@id-387101.helmsley.irccloud.com) |
| 17:00:11 | → | Boarders_____ joins (sid425905@id-425905.lymington.irccloud.com) |
| 17:00:11 | → | codedmart joins (codedmart@2600:3c01::f03c:92ff:fefe:8511) |
| 17:00:11 | → | Jon joins (jon@dow.land) |
| 17:00:11 | → | dy joins (sid3438@user/dy) |
| 17:00:11 | → | lally joins (sid388228@id-388228.uxbridge.irccloud.com) |
| 17:00:11 | → | edmundnoble_ joins (sid229620@id-229620.helmsley.irccloud.com) |
| 17:00:11 | → | inedia joins (~irc@2600:3c00:e000:287::1) |
| 17:00:11 | → | xnbya2 joins (~xnbya@2a01:4f8:c17:cbdd::1) |
| 17:00:11 | → | dminuoso joins (~weechat@user/dminuoso) |
| 17:00:11 | → | APic joins (apic@apic.name) |
| 17:00:11 | → | Adeon joins (sid418992@id-418992.lymington.irccloud.com) |
| 17:00:11 | → | xelxebar joins (~xelxebar@wilsonb.com) |
| 17:00:11 | → | mustafa joins (sid502723@rockylinux/releng/mustafa) |
| 17:00:11 | → | deriamis joins (nobody@2600:3c0a::f03c:95ff:fee8:f335) |
| 17:00:11 | → | auri joins (~auri@fsf/member/auri) |
| 17:00:11 | → | _0xa_ joins (~user@2001:19f0:5001:2ba8:5400:1ff:feda:88fc) |
| 17:00:11 | → | SanchayanMaity joins (sid478177@id-478177.hampstead.irccloud.com) |
| 17:00:11 | → | gAy_Dragon joins (A_D@libera/staff/dragon) |
| 17:00:11 | → | V joins (~v@ircpuzzles/2022/april/winner/V) |
| 17:00:11 | → | sweater1 joins (~sweater@206.81.18.26) |
| 17:00:11 | → | taktoa[c] joins (sid282096@id-282096.tinside.irccloud.com) |
| 17:00:11 | → | sus0 joins (zero@user/zeromomentum) |
| 17:00:11 | → | markasoftware joins (~quassel@107.161.26.124) |
| 17:00:11 | → | artu joins (~artu@li90-184.members.linode.com) |
| 17:00:11 | → | kmein joins (~weechat@user/kmein) |
| 17:00:11 | → | apache joins (apache2@anubis.0x90.dk) |
| 17:00:11 | → | pmk_ joins (6afe4476a1@2a03:6000:1812:100::26d) |
| 17:00:11 | → | adamCS joins (~adamCS@71.167.235.212) |
| 17:00:11 | → | bw joins (sid2730@user/betawaffle) |
| 17:00:11 | → | chymera joins (~chymera@ns1000526.ip-51-81-46.us) |
| 17:00:11 | → | shane joins (~shane@ana.rch.ist) |
| 17:00:11 | → | RussetParrotBear joins (45ce440a48@2a03:6000:1812:100::e2) |
| 17:00:11 | → | tjbc joins (~tjbc@user/fliife) |
| 17:00:11 | → | vulpine joins (xfnw@user/meow/xfnw) |
| 17:00:11 | → | remmie joins (ianremsen@tilde.team) |
| 17:00:11 | → | Kamuela joins (sid111576@id-111576.tinside.irccloud.com) |
| 17:00:11 | → | kritzefitz joins (~kritzefit@debian/kritzefitz) |
| 17:00:11 | → | EvanR joins (~EvanR@user/evanr) |
| 17:00:11 | → | red-snail joins (~snail@static.151.210.203.116.clients.your-server.de) |
| 17:00:11 | → | tcard_ joins (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
| 17:00:11 | → | litharge joins (litharge@libera/bot/litharge) |
| 17:00:11 | → | kaskal joins (~kaskal@2001:4bb8:2c3:1470:8b1d:2068:6ef2:d351) |
| 17:00:11 | → | CrunchyFlakes_ joins (~CrunchyFl@31.19.233.78) |
| 17:00:11 | → | Spawns joins (~mobile@user/spawns-carpeting/x-6969421) |
| 17:00:11 | → | aku joins (aku@65.108.245.241) |
| 17:00:11 | → | tmr joins (~tamer@user/tamer) |
| 17:00:11 | → | Dykam joins (Dykam@dykam.nl) |
| 17:00:11 | → | barthandelous01 joins (barth@triton.blinkenshell.org) |
| 17:00:11 | → | wz1000 joins (~zubin@static.11.113.47.78.clients.your-server.de) |
| 17:00:11 | → | tessier joins (~treed@ec2-184-72-149-67.compute-1.amazonaws.com) |
| 17:00:11 | → | meejah joins (~meejah@rutas.meejah.ca) |
| 17:00:11 | → | Clint joins (~Clint@user/clint) |
| 17:00:11 | → | spider1 joins (spider@tilde.cafe) |
| 17:00:11 | → | caubert joins (~caubert@user/caubert) |
| 17:00:11 | → | zfnmxt joins (~zfnmxt@user/zfnmxt) |
| 17:00:11 | → | preflex joins (~preflex@user/mauke/bot/preflex) |
| 17:00:11 | → | bairyn joins (~bairyn@50.250.232.19) |
| 17:00:11 | → | sand-witch joins (~m-mzmz6l@vmi833741.contaboserver.net) |
| 17:00:11 | → | nschoe joins (~nschoe@82-65-202-30.subs.proxad.net) |
| 17:00:11 | → | tv joins (~tv@user/tv) |
| 17:00:11 | → | rdcdr joins (~rdcdr@user/rdcdr) |
| 17:00:11 | → | tdammers joins (~tdammers@41-138-178-143.ftth.glasoperator.nl) |
| 17:00:11 | → | stefan-_ joins (~cri@42dots.de) |
| 17:00:11 | → | it_ joins (~quassel@v2202212189510211193.supersrv.de) |
| 17:00:11 | → | xnyhps joins (~xnyhps@2a02:2770:3:0:216:3eff:fe67:3288) |
| 17:00:11 | → | lisq joins (~quassel@lis.moe) |
| 17:00:11 | → | carter_ joins (sid14827@id-14827.helmsley.irccloud.com) |
| 17:00:11 | → | koolazer joins (~koo@user/koolazer) |
| 17:00:11 | → | urdh joins (~urdh@user/urdh) |
| 17:00:11 | → | nicole joins (ilbelkyr@libera/staff/ilbelkyr) |
| 17:00:11 | → | energizer joins (~energizer@user/energizer) |
| 17:00:11 | → | totbwf joins (uid402332@id-402332.uxbridge.irccloud.com) |
| 17:00:11 | → | iphy joins (sid67735@user/iphy) |
| 17:00:11 | → | caasih joins (sid13241@id-13241.ilkley.irccloud.com) |
| 17:00:11 | → | bjs joins (sid190364@user/bjs) |
| 17:00:11 | → | astroanax joins (~astroanax@2001:19f0:7402:f82:5400:1ff:fec4:f7d7) |
| 17:00:11 | → | shachaf joins (~shachaf@user/shachaf) |
| 17:00:11 | → | systemfault joins (sid267009@about/typescript/member/systemfault) |
| 17:00:11 | → | tolt joins (~weechat-h@li219-154.members.linode.com) |
| 17:00:11 | → | Batzy joins (~quassel@user/batzy) |
| 17:00:11 | → | itaipu joins (~itaipu@168.121.99.42) |
| 17:00:11 | → | danso joins (~danso@user/danso) |
| 17:00:11 | → | m1dnight joins (~m1dnight@d8D861908.access.telenet.be) |
| 17:00:11 | → | Me-me joins (~me-me@user/me-me) |
| 17:00:11 | → | robertm joins (robertm@lattice.rojoma.com) |
| 17:00:11 | → | smtt joins (smt@user/smtt) |
| 17:00:11 | → | flounders joins (~flounders@173.246.200.74) |
| 17:00:11 | → | krei-se joins (~krei-se@p5085d46e.dip0.t-ipconnect.de) |
| 17:00:11 | → | hololeap joins (~quassel@user/hololeap) |
| 17:00:11 | → | GoldsteinQ joins (~goldstein@goldstein.rs) |
| 17:00:11 | → | lbseale joins (~quassel@user/ep1ctetus) |
| 17:00:11 | → | Miroboru joins (~myrvoll@178-164-114.82.3p.ntebredband.no) |
| 17:00:11 | → | leah2 joins (~leah@vuxu.org) |
| 17:00:11 | → | poscat joins (~poscat@user/poscat) |
| 17:00:11 | → | turlando joins (~turlando@user/turlando) |
| 17:00:11 | → | e-snail joins (~pete@user/e-snail) |
| 17:00:11 | → | mulk joins (~mulk@pd95146e9.dip0.t-ipconnect.de) |
| 17:00:11 | → | jle` joins (~jle`@2603:8001:3b02:84d4:4ba:cd34:52ca:7a5) |
| 17:00:11 | → | Leary joins (~Leary@user/Leary/x-0910699) |
| 17:00:11 | → | nek0 joins (~nek0@user/nek0) |
| 17:00:11 | → | j1n37 joins (j1n37@user/j1n37) |
| 17:00:11 | → | kimiamania joins (~924ba01d@user/kimiamania) |
| 17:00:11 | → | mceresa joins (~mceresa@user/mceresa) |
| 17:00:11 | → | xff0x joins (~xff0x@2405:6580:b080:900:8539:398e:9716:eb72) |
| 17:00:11 | → | L29Ah joins (~L29Ah@wikipedia/L29Ah) |
| 17:00:11 | → | Square joins (~Square@user/square) |
| 17:00:11 | → | smiesner joins (b0cf5acf8c@2a03:6000:1812:100::13b9) |
| 17:00:11 | → | dfg joins (~dfg@user/dfg) |
| 17:00:11 | → | ham2 joins (~ham@user/ham) |
| 17:00:11 | → | mniip_ joins (mniip@libera/staff/mniip) |
| 17:00:11 | → | Hecate joins (~mariposa@user/hecate) |
| 17:00:11 | → | buhman joins (sid411355@user/buhman) |
| 17:00:11 | → | hovsater joins (sid499516@user/hovsater) |
| 17:00:11 | → | NemesisD joins (sid24071@id-24071.lymington.irccloud.com) |
| 17:00:11 | → | tnks joins (sid412124@id-412124.helmsley.irccloud.com) |
| 17:00:11 | → | Rembane joins (~Rembane@user/Rembane) |
| 17:00:11 | → | mewra joins (~aranea@wireguard/contributorcat/mira) |
| 17:00:11 | → | Typedfern joins (~Typedfern@59.red-83-37-27.dynamicip.rima-tde.net) |
| 17:00:11 | → | swistak joins (~swistak@185.21.216.141) |
| 17:00:11 | → | ACuriousMoose joins (~ACuriousM@156.34.161.188) |
| 17:00:11 | → | jakzale joins (6291399afa@user/jakzale) |
| 17:00:11 | → | ggb joins (a62ffbaf4f@2a03:6000:1812:100::3ac) |
| 17:00:11 | → | gawen joins (~gawen@user/gawen) |
| 17:00:11 | → | Eoco joins (~ian@128.101.131.218) |
| 17:00:11 | → | rini joins (~rini@user/rini) |
| 17:00:11 | → | kronicmage joins (~kronicmag@neotame.csclub.uwaterloo.ca) |
| 17:00:11 | → | emmanuelux_ joins (~emmanuelu@user/emmanuelux) |
| 17:00:11 | → | TimWolla joins (~timwolla@2a01:4f8:150:6153:beef::6667) |
| 17:00:11 | → | bastelfreak joins (bastelfrea@libera/staff/VoxPupuli.bastelfreak) |
| 17:00:11 | → | AWizzArd joins (~code@user/awizzard) |
| 17:00:11 | → | Fischmiep joins (~Fischmiep@user/Fischmiep) |
| 17:00:11 | → | Patternmaster joins (~georg@user/Patternmaster) |
| 17:00:11 | → | Teacup joins (~teacup@user/teacup) |
| 17:00:11 | → | dolio joins (~dolio@130.44.140.168) |
| 17:00:11 | → | arthurvl joins (~arthurvl@77-174-49-144.fixed.kpn.net) |
| 17:00:11 | → | ShannonB joins (~ShannonB@user/ShannonB) |
| 17:00:11 | → | s4msung joins (YSkIhMhdIR@user/s4msung) |
| 17:00:11 | → | yushyin joins (aC7s4hKZiM@mail.karif.server-speed.net) |
| 17:00:11 | → | df joins (~ben@justworks.xyz) |
| 17:00:11 | → | eugenrh joins (~eugenrh@user/eugenrh) |
| 17:00:11 | → | _________ joins (~nobody@user/noodly) |
| 17:00:11 | → | paotsaq joins (~paotsaq@127.209.37.188.rev.vodafone.pt) |
| 17:00:11 | → | lane joins (809450f172@2a03:6000:1812:100::1300) |
| 17:00:11 | → | filwisher joins (2e6936c793@2a03:6000:1812:100::170) |
| 17:00:11 | → | whereiseveryone joins (206ba86c98@2a03:6000:1812:100::2e4) |
| 17:00:11 | → | sus joins (1b7af6299f@user/zeromomentum) |
| 17:00:11 | → | jkoshy joins (99b9359beb@user/jkoshy) |
| 17:00:11 | → | shreyasminocha joins (51fdc93eda@user/shreyasminocha) |
| 17:00:11 | → | eso joins (a0662dfd5e@2a03:6000:1812:100::1266) |
| 17:00:11 | → | bwolf joins (c3bc363dd1@2a03:6000:1812:100::180) |
| 17:00:11 | → | lucyy joins (228ee8f0ce@user/lucyy) |
| 17:00:11 | → | henrytill joins (e0180937c3@2a03:6000:1812:100::e8c) |
| 17:00:11 | → | 082AAS5CR joins (7569f027cf@2a03:6000:1812:100::e4) |
| 17:00:11 | → | duncan joins (c6181279e3@user/meow/duncan) |
| 17:00:11 | → | chaitlatte0 joins (ea29c0bb16@user/chaitlatte0) |
| 17:00:11 | → | sm2n joins (ae95cb1267@user/sm2n) |
| 17:00:11 | → | jleightcap joins (7bc4014b62@user/jleightcap) |
| 17:00:11 | → | dilaver_ joins (~dilaver_@user/dilaver-:32218) |
| 17:00:11 | → | acidsys joins (~crameleon@openSUSE/member/crameleon) |
| 17:00:11 | → | cayley5 joins (~cayley5@user/phileasfogg) |
| 17:00:11 | → | yahb2 joins (~yahb2@user/tomsmeding/bot/yahb2) |
| 17:00:11 | → | haveo joins (~weechat@pacamara.iuwt.fr) |
| 17:00:11 | → | _d0t joins (~{-d0t-}@user/-d0t-/x-7915216) |
| 17:00:11 | → | migas977 joins (~migas@static.140.65.63.178.clients.your-server.de) |
| 17:00:11 | → | monochrom joins (trebla@216.138.220.146) |
| 17:00:11 | → | wryish joins (~wryish@216.246.119.62) |
| 17:00:11 | → | hacklschorsch joins (~flo@2a01:4f9:3a:2296::2) |
| 17:00:11 | → | snek joins (sid280155@id-280155.lymington.irccloud.com) |
| 17:00:11 | → | tritlo joins (sid58727@id-58727.hampstead.irccloud.com) |
| 17:00:11 | → | thaumavorio joins (~thaumavor@thaumavor.io) |
| 17:00:11 | → | mhatta joins (~mhatta@www21123ui.sakura.ne.jp) |
| 17:00:11 | → | remedan joins (~remedan@ip-62-245-108-153.bb.vodafone.cz) |
| 17:00:11 | → | dymenshen joins (zenmov@user/dymenshen) |
| 17:00:11 | → | Maxdamantus joins (~Maxdamant@user/maxdamantus) |
| 17:00:11 | → | visilii joins (~visilii@213.24.126.184) |
| 17:00:11 | → | gentauro joins (~gentauro@user/gentauro) |
| 17:00:11 | → | terrorjack4 joins (~terrorjac@2a01:4f8:c17:dc9f::) |
| 17:00:11 | → | oxide joins (~lambda@user/oxide) |
| 17:00:11 | tantalum.libera.chat | sets mode +v yahb2 |
| 17:00:11 | → | andreas303 joins (andreas303@is.drunk.and.ready-to.party) |
| 17:00:11 | → | opqdonut joins (opqdonut@pseudo.fixme.fi) |
| 17:00:11 | → | mcfrdy joins (~mcfrdy@user/mcfrdy) |
| 17:00:11 | → | koala_man joins (~vidar@157.146.251.23.bc.googleusercontent.com) |
| 17:00:11 | → | ProofTechnique_ joins (sid79547@id-79547.ilkley.irccloud.com) |
| 17:00:11 | → | krjst joins (~krjst@2604:a880:800:c1::16b:8001) |
| 17:00:11 | → | amir joins (sid22336@user/amir) |
| 17:00:11 | → | lexi-lambda joins (sid92601@id-92601.hampstead.irccloud.com) |
| 17:00:11 | → | S11001001 joins (sid42510@id-42510.ilkley.irccloud.com) |
| 17:00:11 | → | T_S_____ joins (sid501726@id-501726.uxbridge.irccloud.com) |
| 17:00:11 | → | haasn joins (sid579015@id-579015.hampstead.irccloud.com) |
| 17:00:11 | → | dsal joins (sid13060@id-13060.lymington.irccloud.com) |
| 17:00:11 | → | She joins (haveident@libera/staff/she/her) |
| 17:00:11 | → | andjjj23 joins (~irc@107.170.228.47) |
| 17:00:11 | → | sclv joins (sid39734@haskell/developer/sclv) |
| 17:00:11 | → | jmct joins (sid160793@id-160793.tinside.irccloud.com) |
| 17:00:11 | → | alinab joins (sid468903@id-468903.helmsley.irccloud.com) |
| 17:00:11 | → | geekosaur joins (sid609282@xmonad/geekosaur) |
| 17:00:11 | → | bryanv joins (~quassel@2603:c028:4503:7500:45b7:933:ab17:bc10) |
| 17:00:11 | → | mmaruseacph2 joins (~mihai@mihai.page) |
| 17:00:11 | → | n3t joins (~n3t@user/n3t) |
| 17:00:11 | → | lambdap2371 joins (~lambdap@static.167.190.119.168.clients.your-server.de) |
| 17:00:11 | → | xerox joins (~edi@user/edi) |
| 17:00:11 | → | pikajude joins (~jude@2001:19f0:ac01:373:5400:2ff:fe86:3274) |
| 17:00:11 | → | nonzen joins (~nonzen@user/nonzen) |
| 17:00:11 | → | rncwnd joins (~quassel@2a01:4f8:221:27c6::1) |
| 17:00:11 | → | SethTisue joins (sid14912@id-14912.ilkley.irccloud.com) |
| 17:00:11 | → | Aleksejs joins (~Aleksejs@107.170.21.106) |
| 17:00:11 | → | integral joins (sid296274@user/integral) |
| 17:00:11 | → | ddb joins (ddb@tilde.club) |
| 17:00:11 | → | idnar joins (sid12240@debian/mithrandi) |
| 17:00:11 | → | bailsman joins (~ejrietvel@revspace/participant/bailsman) |
| 17:00:11 | → | sprout joins (~sprout@2a02-a448-3a80-0-c61c-b515-5509-58e7.fixed6.kpn.net) |
| 17:00:11 | → | sa1 joins (sid7690@id-7690.ilkley.irccloud.com) |
| 17:00:11 | → | shawwwn joins (sid6132@id-6132.helmsley.irccloud.com) |
| 17:00:11 | → | meooow_ joins (~meooow@165.232.184.169) |
| 17:00:11 | → | dmj` joins (sid72307@id-72307.hampstead.irccloud.com) |
| 17:00:11 | → | alanz joins (sid110616@id-110616.uxbridge.irccloud.com) |
| 17:00:11 | → | coldmountain joins (sid484352@id-484352.helmsley.irccloud.com) |
| 17:00:11 | → | davl_ joins (~davl@207.154.228.18) |
| 17:00:11 | → | lockywolf joins (~lockywolf@coconut.lockywolf.net) |
| 17:00:11 | → | mjrosenb joins (~mjrosenb@pool-96-232-177-77.nycmny.fios.verizon.net) |
| 17:00:11 | → | Yumemi_ joins (~Yumemi@chamoin.net) |
| 17:00:11 | → | dispater joins (~dispater@mail.brprice.uk) |
| 17:00:11 | → | Hobbyboy joins (Hobbyboy@hobbyboy.co.uk) |
| 17:00:11 | → | TMA joins (tma@twin.jikos.cz) |
| 17:00:11 | → | meinside joins (uid24933@id-24933.helmsley.irccloud.com) |
| 17:00:11 | → | jakesyl_____ joins (sid56879@id-56879.hampstead.irccloud.com) |
| 17:00:11 | → | Pent joins (sid313808@id-313808.lymington.irccloud.com) |
| 17:00:11 | → | hc joins (~hc@mail.hce.li) |
| 17:00:11 | → | ell2 joins (~ellie@user/ellie) |
| 17:00:11 | → | Jonno_FTW joins (~come@user/jonno-ftw/x-0835346) |
| 17:00:11 | → | tureba joins (~tureba@tureba.org) |
| 17:00:11 | → | Adran joins (~adran@botters/adran) |
| 17:00:11 | → | xacktm joins (xacktm@user/xacktm) |
| 17:00:11 | → | jocke-l joins (jocke-l@a.x0.is) |
| 17:00:11 | → | disconnect3d joins (~disconnec@user/disconnect3d) |
| 17:00:11 | → | ridcully joins (~ridcully@pd951f16a.dip0.t-ipconnect.de) |
| 17:00:11 | → | flukiluke joins (~m-7humut@2603:c023:c000:6c7e:8945:ad24:9113:a962) |
| 17:00:11 | → | cptaffe joins (~cptaffe@user/cptaffe) |
| 17:00:11 | → | drdo joins (~drdo@bl9-110-63.dsl.telepac.pt) |
| 17:00:11 | → | dyniec joins (~dyniec@dybiec.info) |
| 17:00:11 | → | byte joins (~byte@149.28.222.189) |
| 17:00:11 | → | ol0ck joins (~quassel@user/ol0ck) |
| 17:00:11 | → | immae joins (~immae@2a01:4f8:141:53e7::) |
| 17:00:11 | → | fired joins (LA@2600:3c00::f03c:92ff:fee3:aace) |
| 17:00:11 | → | TheCoffeMaker joins (~TheCoffeM@user/thecoffemaker) |
| 17:00:11 | → | rune_ joins (sid21167@id-21167.ilkley.irccloud.com) |
| 17:00:11 | → | aristid joins (sid1599@id-1599.uxbridge.irccloud.com) |
| 17:00:11 | → | absence joins (torgeihe@hildring.pvv.ntnu.no) |
| 17:00:11 | → | rembo10 joins (~rembo10@main.remulis.com) |
| 17:00:11 | → | enikar joins (~enikar@user/enikar) |
| 17:00:11 | → | mud joins (~mud@user/kadoban) |
| 17:00:11 | → | ftzm joins (~ftzm@085080230038.dynamic.telenor.dk) |
| 17:00:11 | → | forell joins (~forell@user/forell) |
| 17:00:11 | → | todi joins (~todi@p57803331.dip0.t-ipconnect.de) |
| 17:00:11 | → | tt1231097832435 joins (~tt1231@2603:6010:8700:4a81:219f:50d3:618a:a6ee) |
| 17:00:11 | → | anpad joins (~pandeyan@user/anpad) |
| 17:00:11 | → | dpk joins (~dpk@jains.nonceword.org) |
| 17:00:11 | → | piele joins (~piele@tbonesteak.creativeserver.net) |
| 17:00:11 | → | cyphase joins (~cyphase@user/cyphase) |
| 17:00:11 | → | tired joins (~tired@user/tired) |
| 17:00:11 | → | Hafydd joins (~Hafydd@user/hafydd) |
| 17:00:11 | → | ZLima12 joins (~zlima12@user/meow/ZLima12) |
| 17:00:11 | → | glguy joins (glguy@libera/staff/glguy) |
| 17:00:11 | → | superbil joins (~superbil@114-32-231-70.hinet-ip.hinet.net) |
| 17:00:11 | → | ThePenguin joins (~ThePengui@cust-95-80-24-166.csbnet.se) |
| 17:00:11 | → | Natch joins (~natch@c-92-34-7-158.bbcust.telenor.se) |
| 17:00:11 | → | Flow joins (~none@gentoo/developer/flow) |
| 17:00:11 | → | img joins (~img@user/img) |
| 17:00:11 | → | mesaoptimizer joins (~mesaoptim@user/PapuaHardyNet) |
| 17:00:11 | → | zzz joins (~z@user/zero) |
| 17:00:11 | → | arahael joins (~arahael@user/arahael) |
| 17:00:11 | → | Pozyomka joins (~pyon@user/pyon) |
| 17:00:11 | → | mikko joins (~mikko@user/mikko) |
| 17:00:11 | → | hgolden joins (~hgolden@2603:8000:9d00:3ed1:6c70:1ac0:d127:74dd) |
| 17:00:11 | → | philopsos joins (~caecilius@user/philopsos) |
| 17:00:11 | → | manwithluck joins (manwithluc@gateway/vpn/protonvpn/manwithluck) |
| 17:00:11 | → | tabemann joins (~tabemann@2600:1700:7990:24e0:9f6b:68a6:cce5:e580) |
| 17:00:11 | → | talismanick joins (~user@2601:644:937c:ed10::ae5) |
| 17:00:11 | → | jjhoo joins (~jahakala@user/jjhoo) |
| 17:00:11 | → | berberman joins (~berberman@user/berberman) |
| 17:00:11 | → | Axman6 joins (~Axman6@user/axman6) |
| 17:00:11 | → | ft joins (~ft@p4fc2a26f.dip0.t-ipconnect.de) |
| 17:00:11 | → | yaroot joins (~yaroot@2400:4052:ac0:d901:1cf4:2aff:fe51:c04c) |
| 17:00:11 | → | hiredman joins (~hiredman@frontier1.downey.family) |
| 17:00:11 | → | euandreh joins (~Thunderbi@189.6.105.228) |
| 17:00:11 | → | zmt00 joins (~zmt00@user/zmt00) |
| 17:00:11 | → | caconym joins (~caconym@user/caconym) |
| 17:00:11 | → | billchenchina joins (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) |
| 17:00:11 | → | ljdarj joins (~Thunderbi@user/ljdarj) |
| 17:00:11 | → | willscripted joins (~willscrip@user/willscripted) |
| 17:00:11 | → | jinsun joins (~jinsun@user/jinsun) |
| 17:00:11 | → | acidjnk_new joins (~acidjnk@p200300d6e7283f16f0fc97e1b3533d6e.dip0.t-ipconnect.de) |
| 17:00:11 | → | alp joins (~alp@2001:861:e3d6:8f80:2261:439d:9740:2954) |
| 17:00:11 | → | FragByte joins (~christian@user/fragbyte) |
| 17:00:11 | → | Tuplanolla joins (~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) |
| 17:00:11 | → | td_ joins (~td@i53870904.versanet.de) |
| 17:00:11 | → | hughjfchen joins (~hughjfche@vmi556545.contaboserver.net) |
| 17:00:11 | → | jess joins (meow@libera/staff/cat/jess) |
| 17:00:11 | → | pounce joins (~pounce@user/cute/pounce) |
| 17:00:11 | → | dumptruckman joins (~dumptruck@66-175-211-75.ip.linodeusercontent.com) |
| 17:00:11 | → | GdeVolpiano joins (~GdeVolpia@user/GdeVolpiano) |
| 17:00:11 | → | ggVGc joins (~ggVGc@a.lowtech.earth) |
| 17:00:11 | → | c_wraith joins (~c_wraith@adjoint.us) |
| 17:00:11 | → | Moyst__ joins (~moyst@user/moyst) |
| 17:00:11 | → | b20n joins (sid115913@id-115913.uxbridge.irccloud.com) |
| 17:00:11 | → | mrvdb joins (~mrvdb@2001:19f0:5000:8582:5400:ff:fe07:3df5) |
| 17:00:11 | → | Vajb joins (~Vajb@n7m8bu6eaitlx0eukg2-1.v6.elisa-mobile.fi) |
| 17:00:11 | → | dunj3 joins (~dunj3@2a01:239:328:1600::1) |
| 17:00:11 | → | smalltalkman joins (uid545680@id-545680.hampstead.irccloud.com) |
| 17:00:11 | → | nckx joins (nckx@libera/staff/owl/nckx) |
| 17:00:11 | → | picnoir joins (~picnoir@about/aquilenet/vodoo/NinjaTrappeur) |
| 17:00:11 | → | gabiruh joins (~gabiruh@vps19177.publiccloud.com.br) |
| 17:00:11 | → | orcus joins (~orcus@mail.brprice.uk) |
| 17:00:11 | → | dibblego joins (~dibblego@haskell/developer/dibblego) |
| 17:00:11 | → | mrmonday joins (~robert@what.i.hope.is.not.a.tabernaevagant.es) |
| 17:00:11 | → | guygastineau joins (~guygastin@137.184.131.156) |
| 17:00:11 | → | roosterphant_ joins (~roosterph@185.21.217.76) |
| 17:00:11 | → | ChanServ joins (ChanServ@services.libera.chat) |
| 17:00:12 | tantalum.libera.chat | sets mode +o ChanServ |
| 17:00:43 | × | Raito_Bezarius quits (~Raito@wireguard/tunneler/raito-bezarius) (Client Quit) |
| 17:00:43 | × | cross quits (~cross@spitfire.i.gajendra.net) (Max SendQ exceeded) |
| 17:00:43 | × | igemnace quits (~igemnace@user/igemnace) (Max SendQ exceeded) |
| 17:00:52 | × | alphazone quits (~alphazone@2.219.56.221) (Ping timeout: 240 seconds) |
| 17:01:07 | → | igemnace joins (~igemnace@user/igemnace) |
| 17:01:14 | × | pavonia quits (~user@user/siracusa) (Ping timeout: 252 seconds) |
| 17:01:17 | → | cross joins (~cross@spitfire.i.gajendra.net) |
| 17:02:06 | → | alphazone joins (~alphazone@2.219.56.221) |
| 17:07:26 | → | housemate joins (~housemate@146.70.66.228) |
| 17:10:05 | × | pera quits (~pera@user/pera) (Quit: leaving) |
| 17:10:59 | → | pavonia joins (~user@user/siracusa) |
| 17:11:03 | × | TheCoffeMaker quits (~TheCoffeM@user/thecoffemaker) (Remote host closed the connection) |
| 17:14:38 | → | euleritian joins (~euleritia@dynamic-176-006-147-178.176.6.pool.telefonica.de) |
| 17:15:30 | → | TheCoffeMaker joins (~TheCoffeM@user/thecoffemaker) |
| 17:16:41 | → | alexherbo2 joins (~alexherbo@2a02-8440-3307-845b-b47a-8df0-484a-dd57.rev.sfr.net) |
| 17:21:12 | × | wootehfoot quits (~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer) |
| 17:21:58 | × | oxide quits (~lambda@user/oxide) (Ping timeout: 265 seconds) |
| 17:22:15 | <bailsman> | If I make an IOVector, put it in a record, then later replace it with another IOVector, all garbage collection "works normally" right? It's going to notice that the old iovector has no references, and collect it? There's nothing special about iovectors other than that they're mutable? |
| 17:22:51 | × | bwe quits (~bwe@2a01:4f8:1c1c:4878::2) (Remote host closed the connection) |
| 17:23:10 | → | bwe joins (~bwe@2a01:4f8:1c1c:4878::2) |
| 17:23:36 | × | Digit quits (~user@user/digit) (Ping timeout: 252 seconds) |
| 17:23:39 | × | Digitteknohippie quits (~user@user/digit) (Ping timeout: 260 seconds) |
| 17:32:38 | → | jonkri joins (~jonkri@90-230-234-124-no600.tbcn.telia.com) |
| 17:34:34 | → | RedNifre joins (~RedNifre@dslb-002-201-038-124.002.201.pools.vodafone-ip.de) |
| 17:35:16 | <RedNifre> | Hello! Is there a name for (roughly) Foldable t => (a -> b -> Either a c -> Either a c -> t a -> Either a c ? Analogous to "flatMap" maybe "flatFold"? It would early return on the first "bad" Either value. |
| 17:36:23 | <RedNifre> | Sorry, that's not exactly what I meant. Basically, foldr, but the function returns an Either, but it does not need to take an Either as a parameter. |
| 17:38:26 | × | TheCoffeMaker quits (~TheCoffeM@user/thecoffemaker) (Remote host closed the connection) |
| 17:38:52 | → | TheCoffeMaker joins (~TheCoffeM@user/thecoffemaker) |
| 17:41:02 | <Rembane> | RedNifre: Could you perhaps use map, takeWhile and then compose that with whatever foldable function you need? |
| 17:42:42 | <Rembane> | RedNifre: Hm... that almost works, but you'll never get a Left from it. |
| 17:43:42 | <lxsameer> | is there any fiber or green thread implementation in haskell? |
| 17:44:23 | × | TheCoffeMaker quits (~TheCoffeM@user/thecoffemaker) (Ping timeout: 255 seconds) |
| 17:44:44 | <Rembane> | lxsameer: Yes! Here for instance: https://hackage.haskell.org/package/base-4.20.0.1/docs/Control-Concurrent.html#g:1 |
| 17:44:57 | <lxsameer> | Rembane: cheers |
| 17:45:01 | <Rembane> | lxsameer: np! |
| 17:46:13 | → | TheCoffeMaker joins (~TheCoffeM@user/thecoffemaker) |
| 17:51:50 | → | notzmv joins (~daniel@user/notzmv) |
| 18:05:17 | × | ThePenguin quits (~ThePengui@cust-95-80-24-166.csbnet.se) (Quit: ThePenguin) |
| 18:07:31 | → | ThePenguin joins (~ThePengui@cust-95-80-24-166.csbnet.se) |
| 18:12:49 | × | hellwolf quits (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) (Remote host closed the connection) |
| 18:13:07 | → | hellwolf joins (~user@04ed-dbc2-42ba-2a72-0f00-4d40-07d0-2001.sta.estpak.ee) |
| 18:13:32 | × | housemate quits (~housemate@146.70.66.228) (Quit: Nothing to see here. I wasn't there.) |
| 18:14:11 | × | acidjnk_new quits (~acidjnk@p200300d6e7283f16f0fc97e1b3533d6e.dip0.t-ipconnect.de) (Ping timeout: 252 seconds) |
| 18:17:30 | → | Digit joins (~user@user/digit) |
| 18:19:42 | → | michalz joins (~michalz@185.246.207.203) |
| 18:22:24 | × | euleritian quits (~euleritia@dynamic-176-006-147-178.176.6.pool.telefonica.de) (Ping timeout: 260 seconds) |
| 18:23:08 | → | euleritian joins (~euleritia@dynamic-176-004-002-246.176.4.pool.telefonica.de) |
| 18:23:12 | → | MajorBiscuit joins (~MajorBisc@2001:1c00:310:6a00:4b2d:45fc:5f3c:d4d5) |
| 18:23:17 | × | dostoyev1ky2 quits (~sck@user/dostoyevsky2) (Quit: leaving) |
| 18:23:23 | × | MajorBiscuit quits (~MajorBisc@2001:1c00:310:6a00:4b2d:45fc:5f3c:d4d5) (Client Quit) |
| 18:23:36 | → | dostoyevsky2 joins (~sck@user/dostoyevsky2) |
| 18:23:48 | → | MajorBiscuit joins (~MajorBisc@2001:1c00:310:6a00:4b2d:45fc:5f3c:d4d5) |
| 18:27:26 | × | EvanR quits (~EvanR@user/evanr) (Quit: Leaving) |
| 18:28:16 | × | ThePenguin quits (~ThePengui@cust-95-80-24-166.csbnet.se) (Remote host closed the connection) |
| 18:30:16 | → | ThePenguin joins (~ThePengui@cust-95-80-24-166.csbnet.se) |
| 18:36:12 | × | euleritian quits (~euleritia@dynamic-176-004-002-246.176.4.pool.telefonica.de) (Ping timeout: 252 seconds) |
| 18:45:23 | → | euleritian joins (~euleritia@dynamic-176-001-130-146.176.1.pool.telefonica.de) |
| 18:45:36 | → | housemate joins (~housemate@146.70.66.228) |
| 18:45:39 | × | housemate quits (~housemate@146.70.66.228) (Max SendQ exceeded) |
| 18:46:23 | → | housemate joins (~housemate@146.70.66.228) |
| 18:47:14 | × | housemate quits (~housemate@146.70.66.228) (Max SendQ exceeded) |
| 18:47:29 | × | euleritian quits (~euleritia@dynamic-176-001-130-146.176.1.pool.telefonica.de) (Read error: Connection reset by peer) |
| 18:48:27 | → | Jeanne-Kamikaze joins (~Jeanne-Ka@79.127.217.50) |
| 18:51:09 | × | MajorBiscuit quits (~MajorBisc@2001:1c00:310:6a00:4b2d:45fc:5f3c:d4d5) (Ping timeout: 252 seconds) |
| 18:57:45 | → | acidjnk_new joins (~acidjnk@p200300d6e7283f16f0fc97e1b3533d6e.dip0.t-ipconnect.de) |
| 18:59:22 | → | tzh joins (~tzh@c-76-115-131-146.hsd1.or.comcast.net) |
| 19:09:26 | × | institor quits (~henricus@user/institor) (K-Lined) |
| 19:13:47 | → | malte joins (~malte@152.89.107.66) |
| 19:17:50 | → | machinedgod joins (~machinedg@d108-173-18-100.abhsia.telus.net) |
| 19:21:27 | → | sprotte24 joins (~sprotte24@p200300d16f220900784866affc8a4e1f.dip0.t-ipconnect.de) |
| 19:28:22 | <RedNifre> | Well, if there is no name for such a thing (And since I'm actually programming in a different language where bind is called "flatMap"), I'll probably go with "flatFold" for now. |
| 19:28:39 | <RedNifre> | Or flatReduce |
| 19:30:31 | <Rembane> | RedNifre: Out of curiosity, which language are you working in? |
| 19:31:17 | <RedNifre> | It doesn't matter, but it's Kotlin (better Java). |
| 19:31:40 | <RedNifre> | I don't really have a choice, since it's basically the only viable language for Android. |
| 19:32:03 | <lxsameer> | "reduce" is generic enough to apply almost anywehere |
| 19:32:17 | <lxsameer> | s/anywhere/everywhere |
| 19:32:28 | <RedNifre> | Also, it's a good multi platform language as in KMP (Kotlin Multi Platform) compiles for JVM, iOS and JS. |
| 19:32:40 | <Rembane> | RedNifre: Cool! I have no experience at all with that, but FWIW: Elixir calls it reduce_while. |
| 19:32:56 | <RedNifre> | "reduce" is already a thing in Kotlin, it's kinda foldr for non-empty lists where the first element is used as a parameter to foldr the rest of the list. |
| 19:33:25 | <Rembane> | foldrWhile? |
| 19:33:28 | <RedNifre> | Oh, interesting! I'll look into reduce_while then to figure out the reason for that name. |
| 19:34:29 | <RedNifre> | By the way, is this also a good place to talk about dependently typed programming? Or is there a separate channel for it? |
| 19:35:06 | <Rembane> | RedNifre: https://hexdocs.pm/elixir/Enum.html#reduce_while/3 |
| 19:38:14 | <RedNifre> | Thanks! |
| 19:40:23 | <Rembane> | np! |
| 19:40:26 | <Rembane> | Good luck! |
| 19:43:59 | × | malte quits (~malte@152.89.107.66) (Remote host closed the connection) |
| 19:47:23 | → | euleritian joins (~euleritia@ip4d16fc9f.dynamic.kabel-deutschland.de) |
| 19:55:14 | × | haskellbridge quits (~hackager@syn-024-093-192-219.res.spectrum.com) (Remote host closed the connection) |
| 19:56:18 | × | hgolden quits (~hgolden@2603:8000:9d00:3ed1:6c70:1ac0:d127:74dd) (Quit: Leaving) |
| 19:56:39 | → | hgolden joins (~hgolden@2603:8000:9d00:3ed1:6c70:1ac0:d127:74dd) |
| 19:59:03 | × | troojg quits (~troojg@user/troojg) (Ping timeout: 276 seconds) |
| 20:00:05 | × | caconym quits (~caconym@user/caconym) (Quit: bye) |
| 20:00:41 | → | caconym joins (~caconym@user/caconym) |
| 20:05:39 | → | haskellbridge joins (~hackager@syn-024-093-192-219.res.spectrum.com) |
| 20:05:39 | ChanServ | sets mode +v haskellbridge |
| 20:16:29 | → | petrichor joins (~znc-user@user/petrichor) |
| 20:25:25 | → | Everything joins (~Everythin@178-133-144-115.mobile.vf-ua.net) |
| 20:26:36 | → | peterbecich joins (~Thunderbi@syn-047-229-123-186.res.spectrum.com) |
| 20:27:05 | × | billchenchina quits (~billchenc@2a0d:2580:ff0c:1:e3c9:c52b:a429:5bfe) (Remote host closed the connection) |
| 20:29:42 | × | tcard_ quits (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) (Quit: Leaving) |
| 20:32:05 | → | tcard joins (~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303) |
| 20:34:10 | → | Sgeo joins (~Sgeo@user/sgeo) |
| 20:37:00 | <hellwolf> | "Conditionals (e.g. “if e1 then e2 else e3”) means “ifThenElse e1 e2 e3”. However case expressions are unaffected." -- what, is actually a case expression, then? |
| 20:37:54 | <hellwolf> | Do I have to forego the case expression for this embedded language? |
| 20:40:04 | × | ljdarj quits (~Thunderbi@user/ljdarj) (Ping timeout: 260 seconds) |
| 20:40:05 | <geekosaur> | `case` is primitive (and in fact goes all the way down to STG) |
| 20:40:15 | <geekosaur> | `if` is syntax sugar |
| 20:41:02 | <geekosaur> | there is some desugaring of `case` because nested patterns aren't supported by Core or lower levels, but in the end it's still `case` |
| 20:43:35 | → | ljdarj joins (~Thunderbi@user/ljdarj) |
| 20:45:49 | <geekosaur> | well, actually, slight lie. `let` does pattern matching, and by the time you reach STG `case` has become `let` |
| 20:46:23 | <geekosaur> | but where Haskell-level `let` defaults to lazy pattern matching, in STG it's strict |
| 20:50:03 | → | _xor5 joins (~xor@ip-66-42-132-175.dynamic.fuse.net) |
| 20:50:04 | <hellwolf> | Is the advantage of case/pattern matching, over the if-then-else chains, in its ability to do exhaustiveness checking? |
| 20:50:30 | × | _xor quits (~xor@ip-66-42-132-175.dynamic.fuse.net) (Ping timeout: 252 seconds) |
| 20:50:31 | _xor5 | is now known as _xor |
| 20:51:33 | <hellwolf> | Maybe a bad formulation of the question. I guess ADT by definition needs pattern-matching/case analysis. |
| 20:52:20 | <hellwolf> | Without, you may emulate with if isConstructorA a then .. else if isCOnstructorB .. and so on. |
| 20:52:51 | <geekosaur> | `if` normally becomes a guard in a dummy `case` (`case () of () | …`) |
| 20:53:26 | <geekosaur> | this is alos why MukltiWayIf has the syntax it does, since the conversion to such a case with multiple guards is trivial |
| 20:54:11 | <geekosaur> | but yes, the base assumption is pattern matching on constructors |
| 20:55:51 | <geekosaur> | especially in Haskell, because that is strict by default and therefore drives evaluation |
| 21:01:06 | <hellwolf> | I think I found a solution, maybe it is common for eDSLs: say I have a keyword "match", I just need to do (BlockArguments alert) `match a \case -> Maybe a' -> a'; Nothing -> some_def`, where by a just needs to be constrained by an imaginary "EnumerablePatternMatchingCases", such that the codegen can just enumerate through the cases and generate code for all branches accordingly. |
| 21:02:07 | × | lxsameer quits (~lxsameer@Serene/lxsameer) (Ping timeout: 252 seconds) |
| 21:03:37 | → | troojg joins (~troojg@user/troojg) |
| 21:15:23 | → | eax joins (~eax@user/zenmov) |
| 21:20:00 | × | troojg quits (~troojg@user/troojg) (Ping timeout: 272 seconds) |
| 21:20:27 | → | Guest28 joins (~Guest63@2800:a4:10c5:4200:c0d2:e4ff:567a:64d8) |
| 21:21:42 | → | Unicorn_Princess joins (~Unicorn_P@user/Unicorn-Princess/x-3540542) |
| 21:31:07 | × | takuan quits (~takuan@178-116-218-225.access.telenet.be) (Remote host closed the connection) |
| 21:34:23 | × | Jeanne-Kamikaze quits (~Jeanne-Ka@79.127.217.50) (Quit: Leaving) |
| 21:34:59 | <hellwolf> | Overlapping function names from Prelude does not generate warnings, it seems acceptable? |
| 21:36:11 | <geekosaur> | correct, because they're not defined within the same module/scope. |
| 21:37:26 | <int-e> | you'll either have to hide the import or use qualified names if you want to use such a function though |
| 21:40:08 | <hellwolf> | right. makes sense. |
| 21:43:55 | <hellwolf> | rapid file mode... is this a Haskellite flame war: (a, b) => ... vs. a => b => ... |
| 21:44:22 | <hellwolf> | I just found that my emacs default formatter coping with the latter better. |
| 21:45:07 | <geekosaur> | strictly speaking the latter is wrong, and it means something different in some contexts (notably pattern synonyms) |
| 21:45:08 | <hellwolf> | *flavors war |
| 21:45:22 | <hellwolf> | oh? |
| 21:45:41 | <geekosaur> | so I wouldn't want to rely on it working because it might suddenly start to mean something different in the future |
| 21:45:48 | <hellwolf> | I did not know that. Actually, I rarely used the second one, and didn't realize it was correct. |
| 21:46:13 | <geekosaur> | in patsyns it distinguishes required contexts from provided contexts |
| 21:46:15 | <hellwolf> | well, I saw a recent video from bluefin, it was used there exclusively |
| 21:46:40 | <hellwolf> | (if you haven't watched, check it out) |
| 21:46:58 | <geekosaur> | I don't do videos for the most part (sensory issues) |
| 21:48:17 | eax | is now known as zenmov |
| 21:51:17 | <geekosaur> | anyway, strictly speaking it's a parser bug, and as such relying on it is a bad idea |
| 21:51:33 | <geekosaur> | so if bluefin is doing so they may be in for a surprise in a future ghc version |
| 21:52:35 | <geekosaur> | or a worse one if ghc hq decides to e.g. make it mean something related to RequiredTypeArguments |
| 21:52:37 | <hellwolf> | oh wow, that's stronger statement than I anticipated. I thought it was just a normal day flame-wars in geeks town. |
| 21:52:48 | <geekosaur> | check the Report |
| 21:53:16 | <hellwolf> | let me go back to the tuplite constraint approach... |
| 21:53:22 | <hellwolf> | is there also a 64 constraint limit :D |
| 21:53:29 | <hellwolf> | or it is unlimited. |
| 21:53:41 | <geekosaur> | I don't know |
| 21:54:17 | <geekosaur> | I would not be surprised if the typechecker falls over before hitting it though 🙂 |
| 21:57:21 | <hellwolf> | GHC stress test |
| 22:00:36 | <geekosaur> | (a) it is actually neither a value level tuple nor a normal type level tuple |
| 22:01:10 | → | Jeff94 joins (~Jeff@2603:8000:0:d7:bc06:28cf:84d9:61b8) |
| 22:01:11 | <geekosaur> | (b) type level tuples already exceed the value level limit (consider the size of the Foldable instance dictionary) |
| 22:01:56 | <geekosaur> | (at least, I think that becomes a tuple) |
| 22:02:12 | × | Jeff94 quits (~Jeff@2603:8000:0:d7:bc06:28cf:84d9:61b8) (Client Quit) |
| 22:06:35 | <hellwolf> | say no more, let me try |
| 22:07:31 | → | sdrfan123 joins (~sdrfan123@2607:fb91:db5:49ea:b971:f45f:2d53:96d1) |
| 22:08:31 | <hellwolf> | 100 constraints was fine |
| 22:10:02 | <hellwolf> | 1000s is fine too, I hope the empty class did not mattered. |
| 22:11:11 | × | michalz quits (~michalz@185.246.207.203) (Remote host closed the connection) |
| 22:11:28 | <hellwolf> | okay, made the classes less trivial, with one function only. still okay, but notice a tiny little delay when loading through ghci |
| 22:18:55 | <geekosaur> | actually (b) is wrong, instance dictionaries are value level but bypass the limit unless they're compiled internally to magic named records (I know they are at Core level, but not sure about before that) |
| 22:20:11 | × | Square quits (~Square@user/square) (Ping timeout: 244 seconds) |
| 22:21:06 | <hellwolf> | say no more, let me write a test case |
| 22:21:15 | <hellwolf> | sorry, wrogn copy paste |
| 22:21:17 | <hellwolf> | tuplelimits.hs:1:6: error: [GHC-94803] |
| 22:21:17 | <hellwolf> | • A 100-tuple is too large for GHC |
| 22:21:17 | <hellwolf> | (max size is 64) |
| 22:21:30 | <geekosaur> | I guess program-wide uniqueness means they have to be named |
| 22:22:16 | <geekosaur> | at Core level the names are "f$…" iirc (the … is the z-encoded class name and type parameters) |
| 22:24:39 | × | peterbecich quits (~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 260 seconds) |
| 22:24:49 | <hellwolf> | constraintslim.hs:2008:13: error: [GHC-89347] |
| 22:24:49 | <hellwolf> | • Constraint tuple arity too large: 1000 (max arity = 64) |
| 22:24:49 | <hellwolf> | Instead, use a nested tuple |
| 22:25:01 | <hellwolf> | constraint kind subjects to the same limit |
| 22:25:14 | <geekosaur> | interesting |
| 22:25:24 | <hellwolf> | while the class declaration does not. |
| 22:25:33 | <hellwolf> | sorry, function declaration |
| 22:25:55 | <hellwolf> | "Instead, use a nested tuple) |
| 22:26:12 | <hellwolf> | what the sorcery was the suggestino. |
| 22:26:38 | <hellwolf> | It encourages me to go a bit crazy, isn't it |
| 22:26:43 | <hellwolf> | let me try... |
| 22:28:38 | <hellwolf> | yep |
| 22:28:39 | <hellwolf> | I did it |
| 22:29:02 | geekosaur | wonders at what point the typechecker goes "wtf are you asking me to solve?!" |
| 22:29:16 | <hellwolf> | https://pastebin.com/BTCYzKLN |
| 22:29:33 | <hellwolf> | (a, (..)). A NP constraint. |
| 22:29:40 | <geekosaur> | 404 |
| 22:29:42 | <hellwolf> | 1000 of them |
| 22:30:00 | <hellwolf> | oh, being censorred |
| 22:30:11 | <hellwolf> | would i flood the screen if I do it here |
| 22:30:14 | <int-e> | @where paste |
| 22:30:14 | <lambdabot> | Help us help you: please paste full code, input and/or output at e.g. https://paste.tomsmeding.com |
| 22:30:24 | <geekosaur> | huh. recent pastes shows a bunch of gift card ads but they censor you? |
| 22:30:29 | <hellwolf> | https://paste.tomsmeding.com/fTQmMzsa |
| 22:30:52 | <hellwolf> | type As :: Type -> Constraint |
| 22:31:31 | <hellwolf> | so, we shall declare that, the Glorious Haskell Compile can support unlimited amount of constraints. |
| 22:31:36 | <geekosaur> | surprised they didn't simply consider that some weird Lisp 🙂 |
| 22:31:50 | <geekosaur> | did you actually apply that? |
| 22:32:05 | <hellwolf> | I am just glad that the compiler error messages suggest me to go on that dark path |
| 22:32:12 | <hellwolf> | I mean, why would you suggest that? |
| 22:32:22 | <hellwolf> | in what the actual practical case that error message can be useful? |
| 22:32:39 | <geekosaur> | best not to ask that question, I suspect 🙂 |
| 22:33:02 | <geekosaur> | there's probably some type level programmer who's hit it |
| 22:33:04 | <hellwolf> | I haven't applied to an actual type yet. let me keep coercing vim to generate code for me. |
| 22:33:31 | <hellwolf> | oh, that's a nice CV title "Type-level programmer" |
| 22:33:41 | <hellwolf> | not your garden variety of senior engineer |
| 22:38:17 | <hellwolf> | g :: As a => a -> String |
| 22:38:17 | <hellwolf> | g a = show1000 a |
| 22:38:18 | × | sdrfan123 quits (~sdrfan123@2607:fb91:db5:49ea:b971:f45f:2d53:96d1) (Quit: Client closed) |
| 22:38:33 | <hellwolf> | it took GHCi few seconds to load this abomination, but it did it. |
| 22:40:12 | × | jonkri quits (~jonkri@90-230-234-124-no600.tbcn.telia.com) (Quit: Client closed) |
| 22:43:18 | <hellwolf> | Main.hs:3014:8: error: |
| 22:43:18 | <hellwolf> | • Reduction stack overflow; size = 201 |
| 22:43:18 | <hellwolf> | When simplifying the following type: A200 Int |
| 22:43:21 | <hellwolf> | oh oh |
| 22:43:38 | <hellwolf> | https://play-haskell.tomsmeding.com/saved/5phxN7yg <-- good luck :) |
| 22:43:38 | <geekosaur> | lol |
| 22:44:18 | <hellwolf> | alright, I call it a day. That was some dark corner I just visited. |
| 22:44:37 | <geekosaur> | mm, I don't see a way to change that, sadly |
| 22:46:40 | <hellwolf> | oh, I didn't just give up yet, ghc again suggest another way to go darker path |
| 22:46:48 | <hellwolf> | GHC is made by non humans! |
| 22:47:59 | <hellwolf> | (alright, compiling, I am using "time" to record the time) |
| 22:48:06 | <hellwolf> | $ time ghc constraintslim.hs -freduction-depth=0 |
| 22:48:06 | <hellwolf> | [1 of 2] Compiling Main ( constraintslim.hs, constraintslim.o ) |
| 22:48:06 | <hellwolf> | [2 of 2] Linking constraintslim |
| 22:48:06 | <hellwolf> | real 0m52.627s |
| 22:48:06 | <hellwolf> | user 0m51.876s |
| 22:48:06 | <hellwolf> | sys 0m0.514s |
| 22:48:07 | <geekosaur> | s/by/for/ 😈 |
| 22:48:12 | <hellwolf> | Not too bad |
| 22:48:53 | → | emergence joins (emergence@vm0.max-p.me) |
| 22:49:55 | <hellwolf> | and it runs |
| 22:50:07 | <hellwolf> | all good. glorious to the haskell. |
| 22:50:16 | <hellwolf> | gn. |
| 23:05:20 | × | machinedgod quits (~machinedg@d108-173-18-100.abhsia.telus.net) (Ping timeout: 252 seconds) |
| 23:10:06 | × | misterfish quits (~misterfis@84.53.85.146) (Ping timeout: 252 seconds) |
| 23:22:00 | × | __monty__ quits (~toonn@user/toonn) (Quit: leaving) |
| 23:27:36 | → | misterfish joins (~misterfis@84.53.85.146) |
| 23:31:04 | × | hiredman quits (~hiredman@frontier1.downey.family) (Quit: Lost terminal) |
| 23:40:10 | × | alexherbo2 quits (~alexherbo@2a02-8440-3307-845b-b47a-8df0-484a-dd57.rev.sfr.net) (Remote host closed the connection) |
| 23:46:50 | → | MajorBiscuit joins (~MajorBisc@2001:1c00:310:6a00:4b2d:45fc:5f3c:d4d5) |
| 23:46:57 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Quit: = "") |
| 23:51:58 | × | Guest28 quits (~Guest63@2800:a4:10c5:4200:c0d2:e4ff:567a:64d8) (Quit: Client closed) |
| 23:56:47 | × | Everything quits (~Everythin@178-133-144-115.mobile.vf-ua.net) (Quit: leaving) |
| 23:59:05 | × | MajorBiscuit quits (~MajorBisc@2001:1c00:310:6a00:4b2d:45fc:5f3c:d4d5) (Quit: WeeChat 4.4.3) |
All times are in UTC on 2024-11-16.