2024/08/31

2024-08-31 00:00:39 +0000 <geekosaur> …and you miss them 🙂
2024-08-31 00:01:24 +0000 <ski> was just about to reply, when they headed back out into the void
2024-08-31 00:16:10 +0000neuroevolutus(~neuroevol@37.19.200.161)
2024-08-31 00:32:09 +0000califax(~califax@user/califx) (Remote host closed the connection)
2024-08-31 00:35:53 +0000califax(~califax@user/califx)
2024-08-31 00:38:07 +0000JuanDaugherty(~juan@user/JuanDaugherty) (Quit: JuanDaugherty)
2024-08-31 00:42:59 +0000 <d34df00d> I've asked about optimizing a not-TCO'd-function that does NFA matching with backtracking a few days ago.
2024-08-31 00:43:05 +0000athan(~athan@syn-098-153-145-140.biz.spectrum.com) (Quit: Konversation terminated!)
2024-08-31 00:43:30 +0000 <d34df00d> So turns out having an explicit mutable vector with a stack of things to visit cuts the run time down from ~ 400 ms to ~ 230 ms.
2024-08-31 00:44:18 +0000 <d34df00d> That is, these two versions: https://bpa.st/G3XA
2024-08-31 00:44:48 +0000 <d34df00d> (sure, I'll need a proper vector with a not-hardcoded capacity, but as a PoC that's good enough).
2024-08-31 00:50:05 +0000neuroevolutus(~neuroevol@37.19.200.161) (Ping timeout: 256 seconds)
2024-08-31 00:59:53 +0000dolio(~dolio@130.44.140.168) (Quit: ZNC 1.8.2 - https://znc.in)
2024-08-31 01:03:08 +0000dolio(~dolio@130.44.140.168)
2024-08-31 01:12:26 +0000 <haskellbridge> <Bowuigi> d34df00d : Does detecting DFAs and PEGs cut the run time? Those have more efficient execution AFAIK
2024-08-31 01:15:38 +0000 <mauke> how do I do fmod() in Haskell?
2024-08-31 01:16:05 +0000 <mauke> (floating-point modulo)
2024-08-31 01:17:18 +0000 <d34df00d> Bowuigi: DFAs might suffer exponential state explosion, so I'm not even trying those.
2024-08-31 01:17:45 +0000 <haskellbridge> <Bowuigi> Well, what about PEGs?
2024-08-31 01:18:08 +0000 <d34df00d> Although lazy DFA construction, where you basically keep a set of states reachable at each point in the string as you scan the string, have AFAIR the same asympthotics as DFAs, but without the explosion.
2024-08-31 01:18:28 +0000 <d34df00d> Although you lose exact backtracking, which is important for some of the features I'm planning to implement later (like lookahead and atomic grouping).
2024-08-31 01:19:02 +0000 <d34df00d> Haven't looked at PEGs :) My aim is to implement https://arxiv.org/abs/2401.12639 in haskell.
2024-08-31 01:21:38 +0000aforemny_(~aforemny@2001:9e8:6cc8:4500:8afd:cf35:f7f8:813a) (Ping timeout: 245 seconds)
2024-08-31 01:22:18 +0000aforemny(~aforemny@2001:9e8:6ce2:6c00:9ee7:8194:4522:87ac)
2024-08-31 01:23:02 +0000 <geekosaur> mauke: it's hidden in Data.Fixed for some reason (https://downloads.haskell.org/ghc/latest/docs/libraries/base-4.20.0.0-1f57/Data-Fixed.html#v:mod-39-)
2024-08-31 01:24:20 +0000 <mauke> geekosaur: thanks
2024-08-31 01:28:20 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 255 seconds)
2024-08-31 01:30:41 +0000benjaminl_(~benjaminl@c-76-144-12-233.hsd1.or.comcast.net)
2024-08-31 01:31:47 +0000 <mauke> basic parser skeleton is working: https://paste.tomsmeding.com/foU0kJNk
2024-08-31 01:31:51 +0000benjaminl(~benjaminl@user/benjaminl) (Ping timeout: 276 seconds)
2024-08-31 01:32:14 +0000 <mauke> associativity isn't working yet, though
2024-08-31 01:32:18 +0000 <mauke> and unary operators are missing
2024-08-31 01:40:59 +0000 <Leary> [exa], tomsmeding: `\p f g xs -> join . getCompose $ for xs \x -> Compose $ if p x then pure <$> f x else pure (g x)`?
2024-08-31 01:43:04 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 01:47:33 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 01:48:20 +0000yin(~z@user/zero) (Quit: quit)
2024-08-31 01:49:59 +0000zero(~z@user/zero)
2024-08-31 01:58:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 02:02:32 +0000zero(~z@user/zero) (Quit: quit)
2024-08-31 02:03:21 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-08-31 02:05:14 +0000zero(~z@user/zero)
2024-08-31 02:14:27 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 02:18:46 +0000ZharMeny(~ZharMeny@user/ZharMeny) (Quit: '`)
2024-08-31 02:18:57 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 02:29:42 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com)
2024-08-31 02:29:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 02:34:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 02:35:58 +0000Jeanne-Kamikaze(~Jeanne-Ka@static-198-54-134-109.cust.tzulo.com)
2024-08-31 02:38:07 +0000Jeanne-Kamikaze(~Jeanne-Ka@static-198-54-134-109.cust.tzulo.com) (Client Quit)
2024-08-31 02:45:22 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 02:45:36 +0000nitrix(~nitrix@user/meow/nitrix) (Quit: ZNC 1.8.2 - https://znc.in)
2024-08-31 02:47:21 +0000nitrix(~nitrix@user/meow/nitrix)
2024-08-31 02:49:50 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 02:59:33 +0000td_(~td@i5387090B.versanet.de) (Ping timeout: 248 seconds)
2024-08-31 03:00:49 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 03:01:35 +0000td_(~td@i53870912.versanet.de)
2024-08-31 03:05:18 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-08-31 03:10:30 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 03:14:46 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 03:24:17 +0000Lord_of_Life_(~Lord@user/lord-of-life/x-2819915)
2024-08-31 03:24:18 +0000Lord_of_Life(~Lord@user/lord-of-life/x-2819915) (Ping timeout: 276 seconds)
2024-08-31 03:24:31 +0000hgolden_(~hgolden@146.70.173.229)
2024-08-31 03:25:37 +0000Lord_of_Life_Lord_of_Life
2024-08-31 03:25:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 03:26:06 +0000zeroyin
2024-08-31 03:26:51 +0000hgolden__(~hgolden@23.162.40.69) (Ping timeout: 252 seconds)
2024-08-31 03:28:26 +0000youthlic(~Thunderbi@user/youthlic)
2024-08-31 03:28:51 +0000youthlic(~Thunderbi@user/youthlic) (Client Quit)
2024-08-31 03:30:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 03:31:21 +0000youthlic(~Thunderbi@user/youthlic)
2024-08-31 03:32:50 +0000EvanR(~EvanR@user/evanr) (Quit: Leaving)
2024-08-31 03:41:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 03:45:57 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 03:56:41 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 03:57:50 +0000aforemny_(~aforemny@2001:9e8:6cf1:7a00:ddbb:e255:c0ea:74ea)
2024-08-31 03:59:14 +0000aforemny(~aforemny@2001:9e8:6ce2:6c00:9ee7:8194:4522:87ac) (Ping timeout: 260 seconds)
2024-08-31 04:01:20 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 04:12:08 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 04:16:17 +0000youthlic(~Thunderbi@user/youthlic) (Ping timeout: 248 seconds)
2024-08-31 04:16:53 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 04:18:13 +0000troojg(~troojg@user/troojg)
2024-08-31 04:18:57 +0000weary-traveler(~user@user/user363627) (Remote host closed the connection)
2024-08-31 04:26:00 +0000youthlic(~Thunderbi@user/youthlic)
2024-08-31 04:26:29 +0000xff0x(~xff0x@2405:6580:b080:900:15aa:6ce:9db7:891e) (Ping timeout: 248 seconds)
2024-08-31 04:27:33 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 04:28:04 +0000xff0x(~xff0x@2405:6580:b080:900:15aa:6ce:9db7:891e)
2024-08-31 04:32:08 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 04:35:58 +0000troojg(~troojg@user/troojg) (Ping timeout: 272 seconds)
2024-08-31 04:42:58 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 04:47:54 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-08-31 04:48:50 +0000takuan(~takuan@178-116-218-225.access.telenet.be)
2024-08-31 04:58:21 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 05:03:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 05:08:47 +0000rosco(~rosco@175.136.158.234)
2024-08-31 05:11:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 05:16:08 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 05:16:37 +0000euphores(~SASL_euph@user/euphores) (Ping timeout: 248 seconds)
2024-08-31 05:19:02 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net)
2024-08-31 05:24:01 +0000euphores(~SASL_euph@user/euphores)
2024-08-31 05:25:05 +0000youthlic(~Thunderbi@user/youthlic) (Ping timeout: 248 seconds)
2024-08-31 05:26:13 +0000athan(~athan@syn-098-153-145-140.biz.spectrum.com)
2024-08-31 05:26:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 05:31:49 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 05:32:20 +0000rosco(~rosco@175.136.158.234) (Quit: Lost terminal)
2024-08-31 05:41:45 +0000euphores(~SASL_euph@user/euphores) (Quit: Leaving.)
2024-08-31 05:42:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 05:46:56 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 05:48:09 +0000ddellacosta(~ddellacos@ool-44c73c8f.dyn.optonline.net)
2024-08-31 05:48:38 +0000euphores(~SASL_euph@user/euphores)
2024-08-31 05:57:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 05:58:47 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 255 seconds)
2024-08-31 06:02:23 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-08-31 06:11:01 +0000hgolden__(~hgolden@146.70.173.37)
2024-08-31 06:12:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 06:12:36 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net) (Ping timeout: 252 seconds)
2024-08-31 06:13:15 +0000hgolden_(~hgolden@146.70.173.229) (Ping timeout: 246 seconds)
2024-08-31 06:16:59 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 06:17:52 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-08-31 06:27:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 06:32:20 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds)
2024-08-31 06:43:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 06:48:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-08-31 06:58:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 07:03:32 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 272 seconds)
2024-08-31 07:04:19 +0000CrunchyFlakes(~CrunchyFl@ip-109-42-115-64.web.vodafone.de)
2024-08-31 07:13:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 07:16:34 +0000rvalue(~rvalue@user/rvalue) (Read error: Connection reset by peer)
2024-08-31 07:17:03 +0000rvalue(~rvalue@user/rvalue)
2024-08-31 07:17:52 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 07:23:38 +0000acidjnk_new(~acidjnk@p200300d6e72cfb6904e5b367ab9b2182.dip0.t-ipconnect.de)
2024-08-31 07:25:16 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-08-31 07:28:52 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 07:33:09 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 07:36:23 +0000misterfish(~misterfis@84.53.85.146)
2024-08-31 07:44:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 07:44:17 +0000xff0x(~xff0x@2405:6580:b080:900:15aa:6ce:9db7:891e) (Ping timeout: 248 seconds)
2024-08-31 07:49:09 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-08-31 07:49:24 +0000sourcetarius(~sourcetar@user/sourcetarius)
2024-08-31 07:56:38 +0000gmg(~user@user/gehmehgeh)
2024-08-31 07:58:44 +0000srazkvt(~sarah_@2a01:e0a:483:6900:b6d5:d9cd:2f20:2e49)
2024-08-31 07:59:42 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 08:04:10 +0000srazkvt(~sarah_@2a01:e0a:483:6900:b6d5:d9cd:2f20:2e49) (Quit: Leaving)
2024-08-31 08:04:27 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-08-31 08:04:35 +0000tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz)
2024-08-31 08:07:52 +0000 <tomsmeding> Leary: does not quite conform to the original type: in your version, f and g are invoked for each element in the two partitions in turn, whereas [exa]'s original type required f and g to be invoked _once_ on the full partition
2024-08-31 08:08:43 +0000 <tomsmeding> but it's definitely a clever construction that I _almost_ understand :p
2024-08-31 08:11:32 +0000 <Leary> Yeah, it's hard to know how much of that type is X and how much is Y. I'm guessing that access to each partition as a whole isn't actually necessary.
2024-08-31 08:11:49 +0000 <tomsmeding> fair
2024-08-31 08:12:34 +0000oo_miguel(~Thunderbi@78.10.207.45)
2024-08-31 08:14:25 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 08:16:18 +0000oneeyedalien(~oneeyedal@user/oneeyedalien)
2024-08-31 08:16:47 +0000 <Leary> Re understanding, a moderate fleshing-out would look like `type TwoPhase f = Compose f f; runTwoPhase = join . getCompose; now = Compose . fmap pure; later = Compose . pure`. Then it's `\p f g -> runTwoPhase . traverse \x -> if p x then now (f x) else later (g x)`.
2024-08-31 08:17:51 +0000 <tomsmeding> yes I got that far, essentially
2024-08-31 08:18:08 +0000 <tomsmeding> I kind of understand the data flow, but it's not quite intuitive enough that I'd easily be able to come up with it
2024-08-31 08:18:34 +0000 <tomsmeding> thanks :)
2024-08-31 08:19:22 +0000 <tomsmeding> it's starting to make more sense already
2024-08-31 08:19:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 08:20:56 +0000xff0x(~xff0x@2405:6580:b080:900:482e:12f2:d9e4:60fe)
2024-08-31 08:26:31 +0000ctrl(~ctrl@syn-098-151-160-141.res.spectrum.com)
2024-08-31 08:29:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 08:31:04 +0000ctrl(~ctrl@syn-098-151-160-141.res.spectrum.com) (Ping timeout: 260 seconds)
2024-08-31 08:33:51 +0000Tuplanolla(~Tuplanoll@91-159-69-59.elisa-laajakaista.fi)
2024-08-31 08:34:18 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-08-31 08:45:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 08:49:53 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 08:53:19 +0000rvalue-(~rvalue@user/rvalue)
2024-08-31 08:53:54 +0000rvalue(~rvalue@user/rvalue) (Ping timeout: 246 seconds)
2024-08-31 08:57:27 +0000rvalue-rvalue
2024-08-31 09:00:42 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 09:05:05 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-08-31 09:13:39 +0000oneeyedalien(~oneeyedal@user/oneeyedalien) (Ping timeout: 260 seconds)
2024-08-31 09:15:25 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 09:19:58 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 09:22:30 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 09:26:55 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 09:28:45 +0000oneeyedalien(~oneeyedal@user/oneeyedalien)
2024-08-31 09:33:16 +0000sawilagar(~sawilagar@user/sawilagar)
2024-08-31 09:37:55 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 09:43:08 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 272 seconds)
2024-08-31 09:46:11 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-08-31 09:53:21 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 09:56:17 +0000__monty__(~toonn@user/toonn)
2024-08-31 09:57:47 +0000youthlic(~Thunderbi@user/youthlic)
2024-08-31 09:57:58 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds)
2024-08-31 09:58:30 +0000ctrlcrshr(~ctrlcrshr@syn-098-151-160-141.res.spectrum.com)
2024-08-31 10:00:03 +0000ctrlcrshr(~ctrlcrshr@syn-098-151-160-141.res.spectrum.com) (Client Quit)
2024-08-31 10:00:22 +0000ctrlcrshr(~ctrlcrshr@syn-098-151-160-141.res.spectrum.com)
2024-08-31 10:02:08 +0000youthlic(~Thunderbi@user/youthlic) (Ping timeout: 252 seconds)
2024-08-31 10:05:04 +0000ctrlcrshr(~ctrlcrshr@syn-098-151-160-141.res.spectrum.com) (Ping timeout: 252 seconds)
2024-08-31 10:08:06 +0000nyc(~nyc@user/nyc) (Ping timeout: 252 seconds)
2024-08-31 10:08:46 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 10:09:26 +0000sroso(~sroso@user/SrOso)
2024-08-31 10:09:53 +0000sroso(~sroso@user/SrOso) (Max SendQ exceeded)
2024-08-31 10:11:52 +0000youthlic(~Thunderbi@user/youthlic)
2024-08-31 10:13:18 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 245 seconds)
2024-08-31 10:15:41 +0000sroso(~sroso@user/SrOso)
2024-08-31 10:16:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 10:21:54 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 10:25:17 +0000Square(~Square@user/square)
2024-08-31 10:32:45 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 10:37:15 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 10:40:57 +0000Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-08-31 10:42:22 +0000ZharMeny(~ZharMeny@user/ZharMeny)
2024-08-31 10:48:10 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 10:53:49 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 11:04:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 11:09:14 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 11:13:38 +0000oneeyedalien(~oneeyedal@user/oneeyedalien) (Ping timeout: 252 seconds)
2024-08-31 11:17:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 11:23:12 +0000sroso(~sroso@user/SrOso) (Quit: Leaving :))
2024-08-31 11:24:17 +0000nnm-(nnm-@user/nnm-) (Quit: ZNC 1.9.x-git-165-6f28db4a - https://znc.in)
2024-08-31 11:26:36 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-08-31 11:31:39 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-08-31 11:33:36 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-08-31 11:35:44 +0000Inst(~Inst@user/Inst) (Read error: Connection reset by peer)
2024-08-31 11:36:48 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 11:41:30 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 11:43:06 +0000youthlic(~Thunderbi@user/youthlic) (Quit: youthlic)
2024-08-31 11:52:13 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 11:56:24 +0000sprout(~sprout@84-80-106-227.fixed.kpn.net) (Ping timeout: 260 seconds)
2024-08-31 11:58:20 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-08-31 12:09:25 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 12:13:45 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-08-31 12:18:25 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 12:21:29 +0000m1dnight(~christoph@78-20-63-126.access.telenet.be) (Ping timeout: 260 seconds)
2024-08-31 12:22:46 +0000 <[exa]> Leary: wow cool
2024-08-31 12:22:56 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 12:22:59 +0000 <[exa]> not quite the thing but I'm putting this aside for later :D
2024-08-31 12:33:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 12:38:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-08-31 12:49:15 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 12:50:06 +0000m1dnight(~christoph@78-20-63-126.access.telenet.be)
2024-08-31 12:53:41 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 12:59:48 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-08-31 13:01:08 +0000divya(~user@202.170.201.40)
2024-08-31 13:04:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 13:06:52 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-08-31 13:09:05 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 13:12:08 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-08-31 13:12:29 +0000oneeyedalien(~oneeyedal@user/oneeyedalien)
2024-08-31 13:15:51 +0000target_i(~target_i@user/target-i/x-6023099)
2024-08-31 13:19:19 +0000oneeyedalien(~oneeyedal@user/oneeyedalien) (Quit: Leaving)
2024-08-31 13:19:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 13:24:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 13:32:08 +0000CrunchyFlakes(~CrunchyFl@ip-109-42-115-64.web.vodafone.de) (Read error: Connection reset by peer)
2024-08-31 13:34:52 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 13:37:41 +0000ChaiTRex(~ChaiTRex@user/chaitrex) (Ping timeout: 260 seconds)
2024-08-31 13:38:37 +0000 <[exa]> hoogle is down? :'(
2024-08-31 13:38:52 +0000 <haskellbridge> <Jade> yup
2024-08-31 13:39:33 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 13:41:01 +0000 <yin> i feel like hoogle should have a couple of mirrors
2024-08-31 13:41:56 +0000ChaiTRex(~ChaiTRex@user/chaitrex)
2024-08-31 13:43:08 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-08-31 13:44:19 +0000xff0x(~xff0x@2405:6580:b080:900:482e:12f2:d9e4:60fe) (Ping timeout: 260 seconds)
2024-08-31 13:45:02 +0000xff0x(~xff0x@2405:6580:b080:900:482e:12f2:d9e4:60fe)
2024-08-31 13:45:09 +0000 <[exa]> +1 yin
2024-08-31 13:45:38 +0000 <haskellbridge> <Jade> https://hoogle.mangoiv.com/
2024-08-31 13:50:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 13:51:35 +0000sprout(~sprout@84-80-106-227.fixed.kpn.net)
2024-08-31 13:53:27 +0000 <yin> Jade: nice. it would be worth to consider configuring DNS fallover
2024-08-31 13:54:36 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds)
2024-08-31 13:54:40 +0000 <haskellbridge> <Jade> that's not my instance ^^
2024-08-31 13:54:53 +0000 <haskellbridge> <Jade> or do you mean in general
2024-08-31 14:05:42 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 14:10:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 14:15:59 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 14:24:09 +0000CrunchyFlakes(~CrunchyFl@ip-109-42-115-64.web.vodafone.de)
2024-08-31 14:24:16 +0000 <yin> in general. a lot of stuff depends on hoogle
2024-08-31 14:24:35 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-08-31 14:24:56 +0000 <yin> i noticed because duckduckgo has the `h!` shortcut i use all the time
2024-08-31 14:26:40 +0000 <yin> i had no idea there were mirrors. DNS fallover across all official(?)/known mirrors would be nice
2024-08-31 14:26:55 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net)
2024-08-31 14:30:54 +0000 <Maxdamantus> that can't just be done with DNS because the different mirrors would need to provide suitable certificates.
2024-08-31 14:35:36 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 14:40:18 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 14:41:12 +0000spew(~spew@201.141.99.170)
2024-08-31 14:46:25 +0000CiaoSen(~Jura@2a05:5800:251:3f00:ca4b:d6ff:fec1:99da)
2024-08-31 14:50:25 +0000m1dnight(~christoph@78-20-63-126.access.telenet.be) (Ping timeout: 248 seconds)
2024-08-31 14:51:00 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 14:55:27 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 15:01:44 +0000ubert(~Thunderbi@178.165.175.79.wireless.dyn.drei.com) (Ping timeout: 265 seconds)
2024-08-31 15:02:32 +0000youthlic(~Thunderbi@user/youthlic)
2024-08-31 15:05:32 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Read error: Connection reset by peer)
2024-08-31 15:06:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 15:08:02 +0000esnos(~user@176.106.34.161)
2024-08-31 15:11:09 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 15:11:13 +0000CiaoSen(~Jura@2a05:5800:251:3f00:ca4b:d6ff:fec1:99da) (Ping timeout: 252 seconds)
2024-08-31 15:18:48 +0000ddellacosta(~ddellacos@ool-44c73c8f.dyn.optonline.net) (Ping timeout: 272 seconds)
2024-08-31 15:21:25 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 15:25:54 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 15:36:52 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 15:41:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 15:43:51 +0000tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net)
2024-08-31 15:45:42 +0000Inst(~Inst@user/Inst)
2024-08-31 15:50:04 +0000 <haskellbridge> <sm> hoogle.haskell.org is down again
2024-08-31 15:50:24 +0000 <haskellbridge> <sm> oops, already noted
2024-08-31 15:51:15 +0000 <haskellbridge> <sm> alternative: https://stackage.org
2024-08-31 15:52:16 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 15:57:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-08-31 16:00:43 +0000ZharMeny(~ZharMeny@user/ZharMeny) (Ping timeout: 252 seconds)
2024-08-31 16:01:05 +0000justsomeguy(~justsomeg@user/justsomeguy)
2024-08-31 16:07:42 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 16:11:23 +0000econo_(uid147250@id-147250.tinside.irccloud.com)
2024-08-31 16:12:06 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 16:22:25 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 16:27:01 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds)
2024-08-31 16:32:28 +0000DragonMaus(~dragonmau@user/dragonmaus) (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.)
2024-08-31 16:33:16 +0000DragonMaus(~dragonmau@user/dragonmaus)
2024-08-31 16:36:28 +0000m1dnight(~christoph@d8D861908.access.telenet.be)
2024-08-31 16:37:52 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 16:42:45 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-08-31 16:48:24 +0000justsomeguy(~justsomeg@user/justsomeguy) (Ping timeout: 252 seconds)
2024-08-31 16:52:27 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-08-31 16:53:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 16:57:56 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 17:00:35 +0000CrunchyFlakes(~CrunchyFl@ip-109-42-115-64.web.vodafone.de) (Read error: Connection reset by peer)
2024-08-31 17:01:01 +0000CrunchyFlakes(~CrunchyFl@ip-109-42-115-64.web.vodafone.de)
2024-08-31 17:03:57 +0000justsomeguy(~justsomeg@user/justsomeguy)
2024-08-31 17:04:58 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com)
2024-08-31 17:08:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 17:13:41 +0000sawilagar(~sawilagar@user/sawilagar) (Ping timeout: 265 seconds)
2024-08-31 17:14:41 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-08-31 17:16:44 +0000raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net)
2024-08-31 17:23:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 17:23:31 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-08-31 17:25:45 +0000azlaan(~azlaan@user/azlaan)
2024-08-31 17:27:07 +0000pavonia(~user@user/siracusa) (Quit: Bye!)
2024-08-31 17:27:49 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 17:28:34 +0000JuanDaugherty(~juan@user/JuanDaugherty)
2024-08-31 17:30:21 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-08-31 17:31:01 +0000azlaan(~azlaan@user/azlaan) (Quit: WeeChat 4.4.1)
2024-08-31 17:31:18 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 252 seconds)
2024-08-31 17:32:38 +0000youthlic(~Thunderbi@user/youthlic) (Quit: youthlic)
2024-08-31 17:35:30 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 17:40:05 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 17:40:37 +0000VictorHugenay(~VictorHug@user/VictorHugenay) (Quit: Konversation terminated!)
2024-08-31 17:43:02 +0000Inst(~Inst@user/Inst) (Ping timeout: 252 seconds)
2024-08-31 17:47:33 +0000Jeanne-Kamikaze(~Jeanne-Ka@79.127.217.39)
2024-08-31 17:56:10 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 17:59:36 +0000gmg(~user@user/gehmehgeh) (Ping timeout: 260 seconds)
2024-08-31 18:00:33 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 18:01:54 +0000gmg(~user@user/gehmehgeh)
2024-08-31 18:03:06 +0000euandreh(~Thunderbi@189.6.105.228)
2024-08-31 18:11:37 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 18:12:33 +0000euandreh(~Thunderbi@189.6.105.228) (Quit: euandreh)
2024-08-31 18:15:04 +0000pieguy128(~pieguy128@bras-base-mtrlpq5031w-grc-50-65-93-192-80.dsl.bell.ca) (Quit: ZNC 1.8.2 - https://znc.in)
2024-08-31 18:16:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 18:20:39 +0000raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net) (Ping timeout: 276 seconds)
2024-08-31 18:24:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 18:28:57 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-08-31 18:35:46 +0000JuanDaugherty(~juan@user/JuanDaugherty) (Quit: JuanDaugherty)
2024-08-31 18:39:07 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com)
2024-08-31 18:39:52 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 18:47:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 18:50:25 +0000divya`(~user@202.170.201.214)
2024-08-31 18:50:29 +0000AlexZenon(~alzenon@178.34.150.250) (Ping timeout: 252 seconds)
2024-08-31 18:51:09 +0000AlexNoo(~AlexNoo@178.34.150.250) (Ping timeout: 260 seconds)
2024-08-31 18:52:02 +0000divya(~user@202.170.201.40) (Ping timeout: 248 seconds)
2024-08-31 18:58:53 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 19:03:20 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 19:06:21 +0000AlexNoo(~AlexNoo@178.34.150.250)
2024-08-31 19:12:16 +0000AlexZenon(~alzenon@178.34.150.250)
2024-08-31 19:14:18 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 19:15:09 +0000ubert(~Thunderbi@178.165.175.79.wireless.dyn.drei.com)
2024-08-31 19:18:44 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 19:19:33 +0000ubert(~Thunderbi@178.165.175.79.wireless.dyn.drei.com) (Ping timeout: 245 seconds)
2024-08-31 19:20:54 +0000AlexNoo_(~AlexNoo@178.34.150.250)
2024-08-31 19:22:15 +0000troojg(~troojg@user/troojg)
2024-08-31 19:23:17 +0000raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net)
2024-08-31 19:24:32 +0000AlexNoo(~AlexNoo@178.34.150.250) (Ping timeout: 272 seconds)
2024-08-31 19:25:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 19:26:57 +0000takuan(~takuan@178-116-218-225.access.telenet.be) (Remote host closed the connection)
2024-08-31 19:27:34 +0000AlexNoo_AlexNoo
2024-08-31 19:29:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-08-31 19:33:47 +0000swamp_(~zmt00@user/zmt00) (Read error: Connection reset by peer)
2024-08-31 19:35:25 +0000zmt00(~zmt00@user/zmt00)
2024-08-31 19:37:03 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-08-31 19:38:24 +0000Unicorn_Princess(~Unicorn_P@user/Unicorn-Princess/x-3540542)
2024-08-31 19:40:50 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 19:43:12 +0000justsomeguy(~justsomeg@user/justsomeguy) (Quit: WeeChat 3.6)
2024-08-31 19:43:22 +0000Sgeo(~Sgeo@user/sgeo)
2024-08-31 19:49:57 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-08-31 19:50:21 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-08-31 19:56:45 +0000michalz(~michalz@185.246.207.222)
2024-08-31 20:00:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 20:03:19 +0000ubert(~Thunderbi@178.165.175.79.wireless.dyn.drei.com)
2024-08-31 20:05:42 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 272 seconds)
2024-08-31 20:07:39 +0000ubert(~Thunderbi@178.165.175.79.wireless.dyn.drei.com) (Ping timeout: 246 seconds)
2024-08-31 20:13:01 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-08-31 20:14:09 +0000weary-traveler(~user@user/user363627)
2024-08-31 20:16:16 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 20:21:04 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 20:27:42 +0000ZharMeny(~ZharMeny@user/ZharMeny)
2024-08-31 20:32:02 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 20:33:58 +0000A_DragonDNS
2024-08-31 20:34:22 +0000neuroevolutus(~neuroevol@206.217.206.95)
2024-08-31 20:35:03 +0000spew(~spew@201.141.99.170) (Quit: spew)
2024-08-31 20:36:41 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-08-31 20:39:58 +0000CrunchyFlakes(~CrunchyFl@ip-109-42-115-64.web.vodafone.de) (Read error: Connection reset by peer)
2024-08-31 20:41:16 +0000neuroevolutus(~neuroevol@206.217.206.95) (Quit: Client closed)
2024-08-31 20:42:26 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-08-31 20:43:02 +0000CrunchyFlakes(~CrunchyFl@ip-109-42-115-64.web.vodafone.de)
2024-08-31 20:44:15 +0000neuroevolutus(~neuroevol@146.70.211.24)
2024-08-31 20:46:39 +0000lxsameer(~lxsameer@Serene/lxsameer)
2024-08-31 20:47:28 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 20:48:15 +0000CrunchyFlakes(~CrunchyFl@ip-109-42-115-64.web.vodafone.de) (Read error: Connection reset by peer)
2024-08-31 20:51:06 +0000tcard_(~tcard@2400:4051:5801:7500:1e90:74c3:2754:ce8a) (Quit: Leaving)
2024-08-31 20:52:05 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 20:54:47 +0000sourcetarius(~sourcetar@user/sourcetarius) (Quit: zzz)
2024-08-31 20:55:13 +0000gentauro(~gentauro@user/gentauro) (Read error: Connection reset by peer)
2024-08-31 20:58:01 +0000hgolden_(~hgolden@23.162.40.110)
2024-08-31 20:58:06 +0000lxsameer(~lxsameer@Serene/lxsameer) (Ping timeout: 252 seconds)
2024-08-31 21:00:05 +0000oo_miguel(~Thunderbi@78.10.207.45) (Ping timeout: 260 seconds)
2024-08-31 21:00:26 +0000tcard(~tcard@2400:4051:5801:7500:cf17:befc:ff82:5303)
2024-08-31 21:00:39 +0000hgolden__(~hgolden@146.70.173.37) (Ping timeout: 260 seconds)
2024-08-31 21:01:10 +0000gentauro(~gentauro@user/gentauro)
2024-08-31 21:02:53 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 21:06:05 +0000SheBREW
2024-08-31 21:07:09 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-08-31 21:07:24 +0000BREWShe
2024-08-31 21:12:01 +0000pavonia(~user@user/siracusa)
2024-08-31 21:18:20 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 21:19:08 +0000sourcetarius(~sourcetar@user/sourcetarius)
2024-08-31 21:19:22 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net) (Ping timeout: 252 seconds)
2024-08-31 21:22:19 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-08-31 21:22:28 +0000michalz(~michalz@185.246.207.222) (Remote host closed the connection)
2024-08-31 21:22:40 +0000ZharMenyGET`
2024-08-31 21:23:14 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 21:23:40 +0000target_i(~target_i@user/target-i/x-6023099) (Quit: leaving)
2024-08-31 21:34:03 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 21:36:35 +0000troojg(~troojg@user/troojg) (Ping timeout: 252 seconds)
2024-08-31 21:36:54 +0000divya`(~user@202.170.201.214) (Remote host closed the connection)
2024-08-31 21:38:08 +0000GET`ZharMeny
2024-08-31 21:38:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 21:40:29 +0000ash3en(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207)
2024-08-31 21:43:39 +0000SovereignNoumena(~Sovereign@207.195.86.72)
2024-08-31 21:44:57 +0000esnos(~user@176.106.34.161) (Remote host closed the connection)
2024-08-31 21:49:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 21:52:59 +0000SovereignNoumena(~Sovereign@207.195.86.72) (Read error: Connection reset by peer)
2024-08-31 21:54:08 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-08-31 21:55:46 +0000ash3en(~Thunderbi@2a03:7846:b6eb:101:93ac:a90a:da67:f207) (Quit: ash3en)
2024-08-31 22:04:54 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 22:04:56 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 255 seconds)
2024-08-31 22:05:38 +0000Jeanne-Kamikaze(~Jeanne-Ka@79.127.217.39) (Quit: Leaving)
2024-08-31 22:09:21 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 22:12:05 +0000misterfish(~misterfis@84.53.85.146) (Ping timeout: 248 seconds)
2024-08-31 22:15:01 +0000Zer000(~Zer000@64.137.132.10)
2024-08-31 22:15:46 +0000 <Zer000> Is there a mirror for hoogle.haskell.org? that one is down atm.
2024-08-31 22:17:12 +0000 <geekosaur> again?
2024-08-31 22:17:21 +0000 <geekosaur> davean ^
2024-08-31 22:18:07 +0000 <geekosaur> meanwhile https://hoogle.mangoiv.com is a little underfeatured but should be as complete as the main one
2024-08-31 22:18:22 +0000 <Zer000> Oh sweet, thanks
2024-08-31 22:18:36 +0000 <geekosaur> you can also use the one on stackage.org
2024-08-31 22:19:53 +0000 <Zer000> Oh perfect.
2024-08-31 22:20:18 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 22:22:20 +0000 <energizer> does haskell know that -inf is the initial element for max?
2024-08-31 22:26:10 +0000 <mauke> know in what sense?
2024-08-31 22:26:38 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 245 seconds)
2024-08-31 22:28:48 +0000 <mauke> https://paste.tomsmeding.com/5nso6Lhb an interactive calculator
2024-08-31 22:29:08 +0000 <mauke> in this version, associativity should actually work. still no unary operators, though
2024-08-31 22:31:01 +0000econo_(uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity)
2024-08-31 22:37:28 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 22:40:17 +0000ZharMeny(~ZharMeny@user/ZharMeny) (Ping timeout: 248 seconds)
2024-08-31 22:40:42 +0000Guest98(~Guest98@46.188.123.238)
2024-08-31 22:41:57 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 22:43:18 +0000__monty__(~toonn@user/toonn) (Quit: leaving)
2024-08-31 22:44:21 +0000Artea(~Lufia@artea.pt) (Ping timeout: 252 seconds)
2024-08-31 22:44:54 +0000econo_(uid147250@id-147250.tinside.irccloud.com)
2024-08-31 22:46:29 +0000sourcetarius(~sourcetar@user/sourcetarius) (Read error: Connection reset by peer)
2024-08-31 22:46:55 +0000sourcetarius(~sourcetar@user/sourcetarius)
2024-08-31 22:47:35 +0000neuroevolutus(~neuroevol@146.70.211.24) (Ping timeout: 256 seconds)
2024-08-31 22:51:16 +0000Guest98(~Guest98@46.188.123.238) (Quit: Client closed)
2024-08-31 22:52:53 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 22:53:44 +0000SovereignNoumena(~Sovereign@68-69-210-238.sktn.hsdb.sasknet.sk.ca)
2024-08-31 22:54:03 +0000SovereignNoumena(~Sovereign@68-69-210-238.sktn.hsdb.sasknet.sk.ca) (Read error: Connection reset by peer)
2024-08-31 22:58:19 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-08-31 23:02:21 +0000 <energizer> like `sum []` knows 0 is the initial element for +
2024-08-31 23:02:31 +0000fiddlerw-(~fiddlerwo@user/fiddlerwoaroof) (Ping timeout: 264 seconds)
2024-08-31 23:06:29 +0000 <c_wraith> > maximum [] :: Double
2024-08-31 23:06:31 +0000 <lambdabot> *Exception: Prelude.maximum: empty list
2024-08-31 23:06:40 +0000 <c_wraith> It dodges the question
2024-08-31 23:09:02 +0000 <c_wraith> > getMax $ (Max 5.0) <> (Max 2.33) :: Double -- let's try another approach
2024-08-31 23:09:04 +0000 <lambdabot> 5.0
2024-08-31 23:09:06 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 23:09:11 +0000 <c_wraith> > getMax $ mempty :: Double
2024-08-31 23:09:12 +0000 <lambdabot> error:
2024-08-31 23:09:12 +0000 <lambdabot> • No instance for (Bounded Double) arising from a use of ‘mempty’
2024-08-31 23:09:12 +0000 <lambdabot> • In the second argument of ‘($)’, namely ‘mempty’
2024-08-31 23:09:25 +0000 <c_wraith> Still dodging the question, but at compile time now :)
2024-08-31 23:09:32 +0000 <c_wraith> So... No.
2024-08-31 23:13:46 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-08-31 23:24:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 23:25:03 +0000Artea(~Lufia@2001:41d0:404:200::2d7)
2024-08-31 23:27:35 +0000raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net) (Ping timeout: 244 seconds)
2024-08-31 23:30:53 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-08-31 23:34:22 +0000hiredman(~hiredman@frontier1.downey.family) (Quit: Lost terminal)
2024-08-31 23:34:36 +0000 <monochrom> I find the anthropopmorphizing "haskell knows", "sum knows" confusing.
2024-08-31 23:35:10 +0000 <monochrom> The Integer type does not have a minus infinity. The question is moot.
2024-08-31 23:36:21 +0000 <monochrom> Does Haskell "know" that Integer lacks the identity element of max?
2024-08-31 23:36:58 +0000 <dolio> Haskell died in 1982.
2024-08-31 23:37:05 +0000 <dolio> He doesn't know anything anymore.
2024-08-31 23:37:09 +0000 <monochrom> :)
2024-08-31 23:38:28 +0000 <energizer> monochrom: can you understand what i mean by `sum` knows that Double has the 0.0 identity element for +
2024-08-31 23:38:38 +0000 <monochrom> No.
2024-08-31 23:38:59 +0000 <energizer> is this guy serious
2024-08-31 23:39:08 +0000 <monochrom> I also don't understand how "sum knows" transitions to "haskell knows" instead of "maximum knows".
2024-08-31 23:40:30 +0000 <monochrom> I also pointed out that Integer does not have a minus infinity, so even if haskell/maximum "knows" (whatever that means), it is not "allowed" (whatever that means).
2024-08-31 23:41:44 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 23:42:03 +0000 <energizer> anyway thanks c_wraith
2024-08-31 23:42:22 +0000raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net)
2024-08-31 23:43:15 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net)
2024-08-31 23:46:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-08-31 23:49:52 +0000 <weary-traveler> energizer: in the case of `sum', the 0 you get is the `mempty' corresponding to the Monoid instance of Sum
2024-08-31 23:50:39 +0000 <energizer> weary-traveler: yeah that's about what i figured
2024-08-31 23:50:44 +0000 <monochrom> Except that the code of sum hardcodes 0 and doesn't go through any Monoid stuff.
2024-08-31 23:51:13 +0000 <weary-traveler> hm does it?
2024-08-31 23:51:25 +0000 <monochrom> The type is revealing. It is only for Num.
2024-08-31 23:51:51 +0000 <energizer> it seems like there could be a (Double, Max, -inf) monoid but i guess it's not represented anywhere
2024-08-31 23:51:56 +0000 <monochrom> Or rather, it may use only Num methods.
2024-08-31 23:52:12 +0000 <weary-traveler> it uses only num methods, by specifying Sum
2024-08-31 23:52:28 +0000 <weary-traveler> the definition i'm seeing is `sum = getSum #. foldMap' Sum'
2024-08-31 23:52:43 +0000 <monochrom> And maximum, it may only use Ord methods. There is no Ord method that tells you a global lower bound.
2024-08-31 23:57:05 +0000Zer000(~Zer000@64.137.132.10) (Quit: Client closed)
2024-08-31 23:57:08 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-08-31 23:57:38 +0000raehik(~raehik@rdng-25-b2-v4wan-169990-cust1344.vm39.cable.virginm.net) (Ping timeout: 248 seconds)