2024/09/14

2024-09-14 00:01:02 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds)
2024-09-14 00:01:41 +0000morb(~morb@pool-108-41-100-120.nycmny.fios.verizon.net)
2024-09-14 00:09:49 +0000pavonia(~user@user/siracusa)
2024-09-14 00:12:04 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 00:17:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 00:31:20 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 00:32:15 +0000califax(~califax@user/califx) (Remote host closed the connection)
2024-09-14 00:32:56 +0000byte(~byte@149.28.222.189) (Remote host closed the connection)
2024-09-14 00:33:23 +0000califax(~califax@user/califx)
2024-09-14 00:33:25 +0000byte(~byte@149.28.222.189)
2024-09-14 00:36:35 +0000morb(~morb@pool-108-41-100-120.nycmny.fios.verizon.net) (Remote host closed the connection)
2024-09-14 00:36:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-09-14 00:44:03 +0000JuanDaugherty(~juan@user/JuanDaugherty) (Quit: JuanDaugherty)
2024-09-14 00:44:04 +0000 <monochrom> Sure! Iff the algebra of the effect is a free algebra.
2024-09-14 00:45:06 +0000 <monochrom> For example the algebraic effect of putChar and getChar (Plotkin's papers etc call it teletype) is an example.
2024-09-14 00:45:56 +0000FinnElija(~finn_elij@user/finn-elija/x-0085643) (Remote host closed the connection)
2024-09-14 00:46:13 +0000FinnElija(~finn_elij@user/finn-elija/x-0085643)
2024-09-14 00:49:32 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 00:54:17 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-09-14 01:05:42 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 01:10:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-09-14 01:13:02 +0000dmwit(~dmwit@pool-173-66-76-243.washdc.fios.verizon.net)
2024-09-14 01:14:01 +0000lol_jcarpenter2
2024-09-14 01:17:02 +0000 <dmwit> I'd like to make a parameterized pattern synonym. Is there a way? I tried `pattern Prefix :: String -> String; pattern Prefix s <- (stripPrefix s -> Just _)`, but GHC says s is not in scope.
2024-09-14 01:18:44 +0000 <dmwit> (not in scope on the left, in particular, sorry)
2024-09-14 01:20:59 +0000 <c_wraith> dmwit: you can't pass a *value* argument to a pattern, but...
2024-09-14 01:21:22 +0000 <dmwit> oh I love that
2024-09-14 01:21:38 +0000 <dmwit> Compile-time constants are good enough, thanks for the hint. ^_^
2024-09-14 01:21:55 +0000 <c_wraith> I played around with this before. https://paste.tomsmeding.com/8ll7FMC7
2024-09-14 01:23:32 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 01:23:35 +0000 <c_wraith> You can do something like: case "foo bar" of PB2 @"foo" s -> s == " bar"
2024-09-14 01:23:43 +0000 <c_wraith> (rename as you desire)
2024-09-14 01:25:22 +0000 <c_wraith> Maybe in ghc 9.12, it can be modified to use RequiredTypeArguments so you don't even need the @
2024-09-14 01:28:08 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 01:39:36 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 01:40:11 +0000 <c_wraith> (I did just check. While 9.10 has -XRequiredTypeArguments, it can't be used in a pattern's type. Unsure if that's planned to change.)
2024-09-14 01:46:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-09-14 01:54:25 +0000 <haskellbridge> <thirdofmay18081814goya> hm is there a deeper structure which relates algebraic effects to higher-order effects?
2024-09-14 01:55:15 +0000 <haskellbridge> <thirdofmay18081814goya> i.e. does handling higher-order effects have to be done in an ad-hoc fashion
2024-09-14 01:58:18 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 02:02:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-09-14 02:10:50 +0000 <Leary> magic_rb: In `data Free f a = Pure a | Op (f (Free f a))`, the algebraic effect `Op :: forall f a. f (Free f a) -> Free f a` is a constructor parametric in `f`; it can only be a free F-algebra for any given F. You later collapse the free F-algebra by supplying an `F (M A) -> M A` for some monad M and A. For comparison, consider an implementation of algebraic effects using delimited control: you first supply an F-algebra `F (Cont R A) -> Cont R A`, then
2024-09-14 02:10:51 +0000 <Leary> within a delimited scope you gain access to a corresponding (non-free) algebraic effect `opF :: forall b. F (Cont A b) -> Cont A b`.
2024-09-14 02:13:43 +0000ZharMeny(~ZharMeny@user/ZharMeny) (Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.4))
2024-09-14 02:15:33 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 02:16:50 +0000 <Leary> thirdofmay: I don't know about "deeper structure", but 'A Framework for Higher-Order Effects & Handlers' unifies various ad-hoc extensions of base algebraic effects by enriching the free monad in a broad and direct (not so ad-hoc) way.
2024-09-14 02:18:45 +0000 <haskellbridge> <thirdofmay18081814goya> Leary: neat, will take a look, ty!
2024-09-14 02:20:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 02:33:53 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 02:39:12 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-09-14 02:43:29 +0000td_(~td@i53870934.versanet.de) (Ping timeout: 255 seconds)
2024-09-14 02:45:16 +0000td_(~td@i5387091B.versanet.de)
2024-09-14 02:46:19 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net) (Ping timeout: 264 seconds)
2024-09-14 02:51:52 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 02:56:34 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-09-14 03:03:45 +0000spew(~spew@201.141.99.170) (Quit: spew)
2024-09-14 03:07:27 +0000Adran(~adran@botters/adran)
2024-09-14 03:09:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 03:10:54 +0000TMA(tma@twin.jikos.cz) (Ping timeout: 246 seconds)
2024-09-14 03:12:59 +0000TMA(tma@twin.jikos.cz)
2024-09-14 03:14:06 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 03:17:36 +0000dmwit(~dmwit@pool-173-66-76-243.washdc.fios.verizon.net) ()
2024-09-14 03:19:59 +0000xff0x(~xff0x@2405:6580:b080:900:faf:b23:bfac:f0c0) (Ping timeout: 260 seconds)
2024-09-14 03:21:38 +0000xff0x_(~xff0x@2405:6580:b080:900:faf:b23:bfac:f0c0)
2024-09-14 03:27:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 03:31:39 +0000Lord_of_Life(~Lord@user/lord-of-life/x-2819915) (Ping timeout: 260 seconds)
2024-09-14 03:32:20 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-09-14 03:33:29 +0000Lord_of_Life(~Lord@user/lord-of-life/x-2819915)
2024-09-14 03:39:57 +0000glguy(glguy@libera/staff/glguy) (Quit: Quit)
2024-09-14 03:41:18 +0000glguy(glguy@libera/staff/glguy)
2024-09-14 03:45:41 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 03:47:50 +0000 <albet70> there is a list [[], [1,6], [2,7], [3], [], [4]] how to get the longest consecutive nunber [1,2,3]?
2024-09-14 03:48:17 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 255 seconds)
2024-09-14 03:49:58 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 245 seconds)
2024-09-14 03:50:47 +0000 <glguy> albet70: Check out Data.List.sortOn
2024-09-14 03:55:36 +0000Adran(~adran@botters/adran) (Remote host closed the connection)
2024-09-14 04:01:44 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 04:06:10 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 04:09:37 +0000youthlic(~Thunderbi@user/youthlic)
2024-09-14 04:12:14 +0000Adran(~adran@botters/adran)
2024-09-14 04:18:55 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 04:23:21 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-09-14 04:35:22 +0000gawen(~gawen@user/gawen) (Quit: cya)
2024-09-14 04:35:45 +0000 <haskellbridge> <thirdofmay18081814goya> what's a semantic interpretation for haskell's free monad?
2024-09-14 04:35:57 +0000 <haskellbridge> <thirdofmay18081814goya> or a mathematical formalization
2024-09-14 04:36:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 04:36:41 +0000 <EvanR> free monad and free stuff is from math, haskell's free monad is the bastardization of that xD
2024-09-14 04:36:45 +0000gawen(~gawen@user/gawen)
2024-09-14 04:36:56 +0000 <EvanR> so it's already formalized
2024-09-14 04:37:36 +0000 <haskellbridge> <thirdofmay18081814goya> well that's the problem i need the formalization of the bastardized version
2024-09-14 04:37:43 +0000 <haskellbridge> <thirdofmay18081814goya> the thing that allows you to make tree-like structures
2024-09-14 04:38:10 +0000 <haskellbridge> <thirdofmay18081814goya> tree-like data structures
2024-09-14 04:38:47 +0000 <EvanR> tree data structures is data Tree a = Leaf a | Branch [Tree a]
2024-09-14 04:39:39 +0000 <EvanR> free monad is the totally uncommitted monad structure
2024-09-14 04:40:56 +0000 <EvanR> like data List a = Nil | Cons a (List a) is the totally uncommitted monoid
2024-09-14 04:41:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-09-14 04:41:33 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com)
2024-09-14 04:42:18 +0000 <EvanR> you may also like "A free monad is a free object relative to a forgetful functor whose domain is a category of monads."
2024-09-14 04:42:22 +0000 <haskellbridge> <thirdofmay18081814goya> EvanR: if we're speaking "Free f a", free monad multiplication is given by "f"? or what is it from the category-theoretical free monad that provides recursion-like properties?
2024-09-14 04:42:27 +0000 <EvanR> https://ncatlab.org/nlab/show/free+monad
2024-09-14 04:43:08 +0000 <haskellbridge> <thirdofmay18081814goya> yeah the issue with the ncatlab article is I don't get how it's used as a basis for recursive data structures, if it really corresponds to the category-theoretical free monad
2024-09-14 04:43:14 +0000 <EvanR> it doesn't add recursion either...
2024-09-14 04:44:56 +0000 <EvanR> the key to free stuff is the free-forgetful adjoint functor pair
2024-09-14 04:45:30 +0000 <haskellbridge> <thirdofmay18081814goya> EvanR: what i'm saying is it doesn't tell us much about why it's useful for defining recursive data structures in haskell
2024-09-14 04:45:38 +0000 <EvanR> that's not what it's for
2024-09-14 04:45:53 +0000 <Leary> thirdofmay: Apart from the fact that `Free f a` ~ `Fix (Const a + f)`, free monads don't really have anything to do with defining recursive data structures.
2024-09-14 04:46:42 +0000 <EvanR> in haskell you use it to define monadic actions against an API defined by a functor
2024-09-14 04:46:54 +0000 <Leary> It sounds like what you actually want to know about is (type level) fixpoint operators.
2024-09-14 04:46:56 +0000 <EvanR> then the actions can be interpreted by a separated runner
2024-09-14 04:47:08 +0000 <EvanR> one or more runners
2024-09-14 04:49:30 +0000 <haskellbridge> <thirdofmay18081814goya> Leary: hm right
2024-09-14 04:54:03 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 04:58:18 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 245 seconds)
2024-09-14 05:10:21 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 05:11:59 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 260 seconds)
2024-09-14 05:14:44 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 05:26:05 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 05:29:56 +0000Squared(~Square@user/square)
2024-09-14 05:30:45 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-09-14 05:31:26 +0000meygerjos(~meygerjos@syn-024-090-143-083.res.spectrum.com)
2024-09-14 05:38:36 +0000meygerjos(~meygerjos@syn-024-090-143-083.res.spectrum.com) (Ping timeout: 276 seconds)
2024-09-14 05:39:12 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 05:43:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-09-14 05:46:09 +0000takuan(~takuan@178-116-218-225.access.telenet.be)
2024-09-14 05:56:54 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 05:58:39 +0000euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de) (Ping timeout: 260 seconds)
2024-09-14 05:59:53 +0000euleritian(~euleritia@dynamic-176-006-139-193.176.6.pool.telefonica.de)
2024-09-14 06:01:56 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-09-14 06:11:52 +0000weary-traveler(~user@user/user363627) (Remote host closed the connection)
2024-09-14 06:12:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 06:14:32 +0000john(~john@2406:5a00:241a:5600:64db:a6da:b040:bf3f) (Read error: Connection reset by peer)
2024-09-14 06:16:06 +0000john(~john@2406:5a00:241a:5600:41c4:1903:9759:a97c)
2024-09-14 06:17:03 +0000meygerjos(~meygerjos@syn-024-090-143-083.res.spectrum.com)
2024-09-14 06:17:03 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 245 seconds)
2024-09-14 06:17:06 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-09-14 06:21:13 +0000meygerjos(~meygerjos@syn-024-090-143-083.res.spectrum.com) (Ping timeout: 245 seconds)
2024-09-14 06:28:54 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 06:33:33 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 06:36:31 +0000califax(~califax@user/califx) (Remote host closed the connection)
2024-09-14 06:38:02 +0000califax(~califax@user/califx)
2024-09-14 06:43:12 +0000Guest5(~Guest5@2001:871:242:2c0f:3308:6159:967a:a1a)
2024-09-14 06:44:32 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 06:47:10 +0000 <albet70> there are three list, take one element from everyone list, to form a new list, which function is for this?
2024-09-14 06:47:28 +0000FinnElija(~finn_elij@user/finn-elija/x-0085643) (Remote host closed the connection)
2024-09-14 06:47:32 +0000 <monochrom> zip3?
2024-09-14 06:47:51 +0000FinnElija(~finn_elij@user/finn-elija/x-0085643)
2024-09-14 06:49:27 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-09-14 06:49:35 +0000ash3en(~Thunderbi@2a01:c23:9498:f00:6a45:b60b:690e:f299)
2024-09-14 06:51:12 +0000 <albet70> [1,2] [3] [4,5,6] take one every time from one list, get [1,3,4] [1,3,5] [1,3,6] [2,3,4] [2,3,5] [2,3,6]
2024-09-14 06:52:38 +0000Guest5(~Guest5@2001:871:242:2c0f:3308:6159:967a:a1a) (Quit: Client closed)
2024-09-14 06:53:15 +0000 <Leary> > sequenceA [[1, 2], [3], [4,5,6]]
2024-09-14 06:53:16 +0000 <lambdabot> [[1,3,4],[1,3,5],[1,3,6],[2,3,4],[2,3,5],[2,3,6]]
2024-09-14 06:53:25 +0000 <albet70> yes!
2024-09-14 07:00:00 +0000caconym9(~caconym@user/caconym) (Quit: bye)
2024-09-14 07:00:17 +0000JamesMowery(~JamesMowe@ip98-167-207-182.ph.ph.cox.net) (Quit: Goodbye)
2024-09-14 07:00:33 +0000JamesMowery(~JamesMowe@ip98-167-207-182.ph.ph.cox.net)
2024-09-14 07:00:36 +0000caconym9(~caconym@user/caconym)
2024-09-14 07:01:49 +0000JuanDaugherty(~juan@user/JuanDaugherty)
2024-09-14 07:02:22 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 07:03:17 +0000Pixi__(~Pixi@user/pixi) (Quit: Leaving)
2024-09-14 07:03:44 +0000Pixi(~Pixi@user/pixi)
2024-09-14 07:06:56 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-09-14 07:09:11 +0000 <haskellbridge> <thirdofmay18081814goya> Leary: EvanR Leary initial object in category of algebras over a free monad gives categorical semantics for inductive types
2024-09-14 07:13:24 +0000 <JuanDaugherty> i just noticed this channel is a third of its peak size on freenode
2024-09-14 07:16:12 +0000 <JuanDaugherty> guess there was some blow off to whereever the bridge goes
2024-09-14 07:20:32 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 07:22:02 +0000 <Leary> thirdofmay: You might have to flesh that out for us. Or provide a good reference.
2024-09-14 07:25:34 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 07:27:31 +0000 <albet70> is there function can check if a list is consective numbers like [1,2,3]?
2024-09-14 07:31:02 +0000kuribas(~user@ptr-17d51encmw6a8jd7fum.18120a2.ip6.access.telenet.be)
2024-09-14 07:32:16 +0000 <haskellbridge> <Jade> isConsecutive [] = True
2024-09-14 07:32:16 +0000 <haskellbridge> isCobsecutive (x : xs) = xs `isPrefixOf` [x + 1 ..]
2024-09-14 07:35:33 +0000kuribas(~user@ptr-17d51encmw6a8jd7fum.18120a2.ip6.access.telenet.be) (Remote host closed the connection)
2024-09-14 07:36:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 07:36:47 +0000 <ski> > (\xs -> and (zipWith (\x y -> x + 1 == y) xs (tail xs))) [0,1,2]
2024-09-14 07:36:48 +0000 <lambdabot> True
2024-09-14 07:37:37 +0000misterfish(~misterfis@84.53.85.146)
2024-09-14 07:38:26 +0000 <Leary> I also had `all (== 1) . (zipWith subtract <*> tail)`, but Jade's is better.
2024-09-14 07:38:44 +0000 <Leary> Though it gives me evil thoughts.
2024-09-14 07:39:08 +0000 <Leary> :t (`isInfixOf` [minBound .. maxBound])
2024-09-14 07:39:09 +0000 <lambdabot> (Eq a, Bounded a, Enum a) => [a] -> Bool
2024-09-14 07:41:29 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-09-14 07:43:41 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-09-14 07:44:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-09-14 07:49:17 +0000sourcetarius(~sourcetar@user/sourcetarius)
2024-09-14 07:50:56 +0000 <albet70> is there a function can get the sublist which is max length in a list? like [[1,2,3], [4]] the sublist is [1,2,3]
2024-09-14 07:51:30 +0000 <tomsmeding> :t maximumBy
2024-09-14 07:51:31 +0000 <lambdabot> Foldable t => (a -> a -> Ordering) -> t a -> a
2024-09-14 07:51:38 +0000 <tomsmeding> :t maximumBy (comparing length)
2024-09-14 07:51:39 +0000 <lambdabot> (Foldable t1, Foldable t2) => t1 (t2 a) -> t2 a
2024-09-14 07:52:46 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 07:55:34 +0000acidjnk(~acidjnk@p200300d6e72cfb993124db42593adef3.dip0.t-ipconnect.de)
2024-09-14 07:57:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 07:59:34 +0000target_i(~target_i@user/target-i/x-6023099)
2024-09-14 08:06:39 +0000ash3en(~Thunderbi@2a01:c23:9498:f00:6a45:b60b:690e:f299) (Ping timeout: 246 seconds)
2024-09-14 08:08:47 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 08:13:55 +0000 <JuanDaugherty> :version
2024-09-14 08:13:57 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-09-14 08:14:01 +0000 <JuanDaugherty> @version
2024-09-14 08:14:01 +0000 <lambdabot> lambdabot 5.3.0.1
2024-09-14 08:14:01 +0000 <lambdabot> git clone https://github.com/lambdabot/lambdabot
2024-09-14 08:22:25 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-09-14 08:25:11 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 08:26:51 +0000wootehfoot(~wootehfoo@user/wootehfoot)
2024-09-14 08:29:48 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 08:31:21 +0000wootehfoot(~wootehfoo@user/wootehfoot) (Client Quit)
2024-09-14 08:36:34 +0000Tuplanolla(~Tuplanoll@91-159-69-59.elisa-laajakaista.fi)
2024-09-14 08:37:47 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 08:43:01 +0000wootehfoot(~wootehfoo@user/wootehfoot)
2024-09-14 08:45:09 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-09-14 08:47:55 +0000mreh(~matthew@host86-160-168-12.range86-160.btcentralplus.com)
2024-09-14 08:50:44 +0000 <probie> A warning that `maximumBy` calls the supplied functions on each comparison, so may be a poor choice for "expensive" functions like `length`
2024-09-14 08:56:13 +0000tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net) (Quit: zzz)
2024-09-14 08:57:19 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 09:01:41 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 09:14:45 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 09:19:19 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 09:19:32 +0000 <Squared> I like Miso alot for SPA's, but as for any such there is a bit of overhead with message passing. If you just want a create a super simple database backed website in haskell what could be a good alternative? Ease of use prioritized here.
2024-09-14 09:22:39 +0000 <Squared> .../minimal effort
2024-09-14 09:25:59 +0000lxsameer(~lxsameer@Serene/lxsameer)
2024-09-14 09:28:14 +0000__monty__(~toonn@user/toonn)
2024-09-14 09:30:52 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 09:35:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 09:45:02 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-09-14 09:47:10 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 09:47:54 +0000Sgeo(~Sgeo@user/sgeo) (Read error: Connection reset by peer)
2024-09-14 09:51:59 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 10:03:37 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 10:08:19 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 10:12:54 +0000lxsameer(~lxsameer@Serene/lxsameer) (Ping timeout: 276 seconds)
2024-09-14 10:16:09 +0000Squared(~Square@user/square) (Ping timeout: 276 seconds)
2024-09-14 10:16:49 +0000mreh(~matthew@host86-160-168-12.range86-160.btcentralplus.com) (Ping timeout: 248 seconds)
2024-09-14 10:16:50 +0000dibblego(~dibblego@haskell/developer/dibblego) (Ping timeout: 248 seconds)
2024-09-14 10:18:19 +0000dibblego(~dibblego@116-255-1-119.ip4.superloop.au)
2024-09-14 10:18:19 +0000dibblego(~dibblego@116-255-1-119.ip4.superloop.au) (Changing host)
2024-09-14 10:18:19 +0000dibblego(~dibblego@haskell/developer/dibblego)
2024-09-14 10:21:58 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 10:24:05 +0000john(~john@2406:5a00:241a:5600:41c4:1903:9759:a97c) (Read error: Connection reset by peer)
2024-09-14 10:25:44 +0000john(~john@2406:5a00:241a:5600:41c4:1903:9759:a97c)
2024-09-14 10:26:33 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-09-14 10:27:21 +0000JamesMowery6(~JamesMowe@ip98-167-207-182.ph.ph.cox.net)
2024-09-14 10:29:14 +0000JamesMowery(~JamesMowe@ip98-167-207-182.ph.ph.cox.net) (Ping timeout: 255 seconds)
2024-09-14 10:29:14 +0000JamesMowery6JamesMowery
2024-09-14 10:32:31 +0000sourcetarius(~sourcetar@user/sourcetarius) (Read error: Connection reset by peer)
2024-09-14 10:33:36 +0000sourcetarius(~sourcetar@user/sourcetarius)
2024-09-14 10:37:03 +0000wootehfoot(~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer)
2024-09-14 10:38:03 +0000wootehfoot(~wootehfoo@user/wootehfoot)
2024-09-14 10:38:21 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 10:42:53 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 245 seconds)
2024-09-14 10:54:33 +0000sourcetarius(~sourcetar@user/sourcetarius) (Ping timeout: 245 seconds)
2024-09-14 10:56:23 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 11:00:04 +0000caconym9(~caconym@user/caconym) (Quit: bye)
2024-09-14 11:00:57 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-09-14 11:10:45 +0000caconym9(~caconym@user/caconym)
2024-09-14 11:13:34 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 11:16:33 +0000wootehfoot(~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer)
2024-09-14 11:18:16 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 265 seconds)
2024-09-14 11:21:15 +0000euphores(~SASL_euph@user/euphores) (Remote host closed the connection)
2024-09-14 11:22:22 +0000ddb(ddb@tilde.club)
2024-09-14 11:23:17 +0000remedan(~remedan@ip-62-245-108-153.bb.vodafone.cz) (Quit: Bye!)
2024-09-14 11:27:08 +0000remedan(~remedan@ip-62-245-108-153.bb.vodafone.cz)
2024-09-14 11:29:59 +0000ZharMeny(~ZharMeny@user/ZharMeny)
2024-09-14 11:30:55 +0000euphores(~SASL_euph@user/euphores)
2024-09-14 11:31:04 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 11:35:49 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 11:46:14 +0000wootehfoot(~wootehfoo@user/wootehfoot)
2024-09-14 11:47:51 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 11:52:44 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 11:53:16 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-09-14 11:57:29 +0000mreh(~matthew@host86-160-168-12.range86-160.btcentralplus.com)
2024-09-14 12:03:27 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 12:06:28 +0000 <haskellbridge> <thirdofmay18081814goya> Leary: sorry had gone to sleep, https://maciejcs.wordpress.com/2012/04/17/free-monads-and-their-algebras/
2024-09-14 12:07:41 +0000 <haskellbridge> <thirdofmay18081814goya> initial object in category of algebra over endofunctor is categorical semantics for inductive types: https://ncatlab.org/nlab/show/initial+algebra+of+an+endofunctor#semantics_for_inductive_types
2024-09-14 12:08:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 12:09:04 +0000 <Franciman> what do you demand of an object to make it a semantics of a formal system?
2024-09-14 12:10:46 +0000 <haskellbridge> <thirdofmay18081814goya> Franciman: be able to prove two derivations in the formal system are the same, beyond syntactic identity
2024-09-14 12:10:53 +0000 <haskellbridge> <thirdofmay18081814goya> in a satisfactory way
2024-09-14 12:11:12 +0000 <Franciman> very demure
2024-09-14 12:11:15 +0000 <Franciman> thanks
2024-09-14 12:11:43 +0000ski. o O ( proofnets )
2024-09-14 12:11:57 +0000 <Franciman> proofnets are semantics for proofs?
2024-09-14 12:12:31 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-09-14 12:12:45 +0000 <ski> proofnets is an attempt to get rid of more of the accidental syntax of proofs/derivations
2024-09-14 12:13:22 +0000 <Franciman> yes
2024-09-14 12:13:47 +0000 <Franciman> so you think semantics is actually a more polished syntax? :P
2024-09-14 12:13:59 +0000 <Franciman> would be nice to have a syntax directly working as semantics
2024-09-14 12:14:17 +0000 <Franciman> according to herr thirdofmay18081814goya
2024-09-14 12:14:24 +0000 <Franciman> definition
2024-09-14 12:16:08 +0000 <ski> just mentioning it as something potentially interesting for (e.g.) thirdofmay18081814goya to check out
2024-09-14 12:16:37 +0000 <haskellbridge> <thirdofmay18081814goya> watching a conference about them as i wait for coffee to wake me up
2024-09-14 12:16:52 +0000 <leah2> anything on proofnets that requires less exegesis than girard?
2024-09-14 12:16:55 +0000YuutaW(~YuutaW@2404:f4c0:f9c3:502::100:17b7) (Ping timeout: 264 seconds)
2024-09-14 12:17:10 +0000 <Franciman> yes leah2 there is something
2024-09-14 12:17:18 +0000 <Franciman> i think you can look at erhard's work?
2024-09-14 12:17:21 +0000 <Franciman> wait
2024-09-14 12:17:39 +0000 <Franciman> sorry, retoré https://www.sciencedirect.com/science/article/pii/S030439750100175X
2024-09-14 12:17:46 +0000 <Franciman> also abrusci
2024-09-14 12:17:55 +0000 <JuanDaugherty> TIL: perplexity
2024-09-14 12:17:57 +0000 <ski> hm, i recognize that name, at least
2024-09-14 12:18:12 +0000 <ski> @wn perplexity
2024-09-14 12:18:13 +0000 <lambdabot> *** "perplexity" wn "WordNet (r) 3.0 (2006)"
2024-09-14 12:18:13 +0000 <lambdabot> perplexity
2024-09-14 12:18:13 +0000 <lambdabot> n 1: trouble or confusion resulting from complexity
2024-09-14 12:18:34 +0000 <JuanDaugherty> https://en.wikipedia.org/wiki/Perplexity
2024-09-14 12:19:13 +0000 <Franciman> leah2: another source to get into proof nets is going via Linear Substitution Calculus by Accattoli and Kesner
2024-09-14 12:19:38 +0000 <Franciman> it is a lambda calculus formalism that is isomorphic to proof nets for MELL iirc
2024-09-14 12:19:38 +0000 <JuanDaugherty> but apparently its also a tool brand name and SMOG like measure on arkiv
2024-09-14 12:19:58 +0000 <ski> (hm, i think i saw in some paper a reference to some paper by Abrusci (&al ?), on non-commutative logic)
2024-09-14 12:20:05 +0000 <leah2> Franciman: thx
2024-09-14 12:21:22 +0000 <Franciman> ski: i think retoré has done work on non communist logic too
2024-09-14 12:21:26 +0000 <Franciman> err commutative*
2024-09-14 12:21:44 +0000 <JuanDaugherty> freudian
2024-09-14 12:21:46 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 12:21:47 +0000 <ski> yea, i wasn't sure if i'd seen that name or not
2024-09-14 12:24:04 +0000 <Franciman> ski: looking at dblp i see abrusci working on lambek calculus
2024-09-14 12:24:48 +0000 <Franciman> lol i'm scared of reading: Formal Ontologies and Coherent Spaces. J. Appl. Log. 12(1): 67-74 (2014)
2024-09-14 12:25:41 +0000ski. o O ( "RedPRL is the People's Refinement Logic, a next-generation homage to Nuprl" <https://github.com/redprl/sml-redprl> )
2024-09-14 12:26:14 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-09-14 12:26:25 +0000 <ski> sounds exciting (and abstruse), Franciman :p
2024-09-14 12:27:16 +0000 <Franciman> ski: hmm it seems related to semantic web ontologies
2024-09-14 12:27:42 +0000 <Franciman> https://www.sciencedirect.com/science/article/pii/S1570868313000487?via%3Dihub <- if you care
2024-09-14 12:28:03 +0000 <Franciman> sounds fun tho, because they say they provide a geometrical way to work with ontologies
2024-09-14 12:28:12 +0000 <ski> i know some people have applied categorical methodology to ontologies
2024-09-14 12:28:15 +0000 <Franciman> and we all know what geometrical entails in this world of machine learning algorithms working on maifolds
2024-09-14 12:28:22 +0000 <Franciman> do you have any link, ski ?
2024-09-14 12:28:49 +0000 <ski> hm. maybe "Seven Sketches in Composability" has some relevant link in references
2024-09-14 12:28:59 +0000 <Franciman> thanks
2024-09-14 12:29:10 +0000 <ski> (it does have a chapter on applying CT to databases)
2024-09-14 12:30:03 +0000 <ski> but i know i've seen some paper link on ontology stuff with CT, i think either ##prolog, or #logicmoo
2024-09-14 12:30:37 +0000Squared(~Square@user/square)
2024-09-14 12:30:55 +0000 <ski> maybe dmiles could recall a link
2024-09-14 12:32:32 +0000 <Franciman> sorry ski https://arxiv.org/abs/1803.05316 is this the seven sketches you refer to?
2024-09-14 12:38:11 +0000 <ski> yes, or <http://www.dspivak.net/7sketches.pdf>. also <http://brendanfong.com/7sketches.html>
2024-09-14 12:38:30 +0000 <Franciman> ty
2024-09-14 12:39:59 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 12:43:30 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-09-14 12:44:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 12:52:54 +0000euleritian(~euleritia@dynamic-176-006-139-193.176.6.pool.telefonica.de) (Read error: Connection reset by peer)
2024-09-14 12:53:12 +0000euleritian(~euleritia@ip4d16fc38.dynamic.kabel-deutschland.de)
2024-09-14 12:53:26 +0000 <[exa]> monochrom: btw the interval tree from yesterday _is_ a really nice exercise in the end, even for implementation case analysis (the range splitting explodes very easily unless you fold the logic into data)
2024-09-14 12:55:03 +0000 <[exa]> `Map beginIdx endIdx` is a pretty good representation, and you can assume the C-style open-ended intervals to make it really nice
2024-09-14 12:56:31 +0000misterfish(~misterfis@84.53.85.146) (Ping timeout: 264 seconds)
2024-09-14 12:57:28 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 12:58:19 +0000misterfish(~misterfis@84.53.85.146)
2024-09-14 13:00:28 +0000youthlic(~Thunderbi@user/youthlic) (Remote host closed the connection)
2024-09-14 13:01:54 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net)
2024-09-14 13:02:09 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 13:03:08 +0000youthlic(~Thunderbi@user/youthlic)
2024-09-14 13:05:58 +0000 <haskellbridge> <magic_rb> Leary thanks but what you explained went way over my head, ill have to sit down and actually analyze what you said lol
2024-09-14 13:15:22 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 13:20:45 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-09-14 13:32:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 13:36:46 +0000ash3en(~Thunderbi@2a01:c23:9498:f00:6a45:b60b:690e:f299)
2024-09-14 13:37:03 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 13:37:24 +0000auri_(~auri@fsf/member/auri)
2024-09-14 13:38:06 +0000auri(~auri@fsf/member/auri) (Ping timeout: 246 seconds)
2024-09-14 13:50:34 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 13:54:29 +0000wootehfoot(~wootehfoo@user/wootehfoot) (Ping timeout: 248 seconds)
2024-09-14 13:54:54 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-09-14 13:56:59 +0000JuanDaugherty(~juan@user/JuanDaugherty) (Quit: JuanDaugherty)
2024-09-14 14:04:12 +0000morb(~morb@pool-108-41-100-120.nycmny.fios.verizon.net)
2024-09-14 14:07:23 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 14:08:39 +0000morb(~morb@pool-108-41-100-120.nycmny.fios.verizon.net) (Ping timeout: 260 seconds)
2024-09-14 14:10:33 +0000hiecaq`(~hiecaq@user/hiecaq) (Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.4))
2024-09-14 14:11:59 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-09-14 14:13:06 +0000weary-traveler(~user@user/user363627)
2024-09-14 14:19:01 +0000FinnElija(~finn_elij@user/finn-elija/x-0085643) (Remote host closed the connection)
2024-09-14 14:20:36 +0000FinnElija(~finn_elij@user/finn-elija/x-0085643)
2024-09-14 14:21:20 +0000morb(~morb@pool-108-41-100-120.nycmny.fios.verizon.net)
2024-09-14 14:25:13 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 14:25:57 +0000morb(~morb@pool-108-41-100-120.nycmny.fios.verizon.net) (Ping timeout: 248 seconds)
2024-09-14 14:28:21 +0000sourcetarius(~sourcetar@user/sourcetarius)
2024-09-14 14:28:42 +0000mreh(~matthew@host86-160-168-12.range86-160.btcentralplus.com) (Ping timeout: 265 seconds)
2024-09-14 14:29:41 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-09-14 14:32:55 +0000AlexNoo_(~AlexNoo@94.233.241.202)
2024-09-14 14:33:39 +0000john(~john@2406:5a00:241a:5600:41c4:1903:9759:a97c) (Read error: Connection reset by peer)
2024-09-14 14:34:24 +0000john(~john@2406:5a00:241a:5600:41c4:1903:9759:a97c)
2024-09-14 14:34:55 +0000AlexZenon(~alzenon@178.34.163.219) (Ping timeout: 264 seconds)
2024-09-14 14:36:28 +0000AlexNoo(~AlexNoo@178.34.163.219) (Ping timeout: 252 seconds)
2024-09-14 14:39:00 +0000AlexZenon(~alzenon@94.233.241.202)
2024-09-14 14:42:40 +0000AlexNoo_AlexNoo
2024-09-14 14:42:48 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 14:43:41 +0000jinsun_(~jinsun@user/jinsun)
2024-09-14 14:43:41 +0000jinsun(~jinsun@user/jinsun) (Killed (erbium.libera.chat (Nickname regained by services)))
2024-09-14 14:43:41 +0000jinsun_jinsun
2024-09-14 14:46:04 +0000aljustiet(aljustiet@user/meow/aljustiet) (Quit: fBNC - https://bnc4free.com)
2024-09-14 14:47:24 +0000misterfish(~misterfis@84.53.85.146) (Ping timeout: 246 seconds)
2024-09-14 14:47:44 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 14:51:49 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net) (Ping timeout: 260 seconds)
2024-09-14 14:52:33 +0000ash3en(~Thunderbi@2a01:c23:9498:f00:6a45:b60b:690e:f299) (Quit: ash3en)
2024-09-14 14:59:02 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 14:59:26 +0000gmg(~user@user/gehmehgeh) (Remote host closed the connection)
2024-09-14 15:00:12 +0000gmg(~user@user/gehmehgeh)
2024-09-14 15:02:13 +0000troojg(~troojg@user/troojg)
2024-09-14 15:02:54 +0000weary-traveler(~user@user/user363627) (Remote host closed the connection)
2024-09-14 15:05:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-09-14 15:06:56 +0000ChaiTRex(~ChaiTRex@user/chaitrex) (Ping timeout: 260 seconds)
2024-09-14 15:07:18 +0000spew(~spew@201.141.99.170)
2024-09-14 15:08:39 +0000L29Ah(~L29Ah@wikipedia/L29Ah) ()
2024-09-14 15:09:58 +0000ChaiTRex(~ChaiTRex@user/chaitrex)
2024-09-14 15:16:28 +0000visilii_(~visilii@46.61.242.60)
2024-09-14 15:18:01 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 15:19:49 +0000visilii(~visilii@46.61.242.155) (Ping timeout: 248 seconds)
2024-09-14 15:22:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-09-14 15:25:10 +0000hiecaq(~hiecaq@user/hiecaq)
2024-09-14 15:32:00 +0000lxsameer(~lxsameer@Serene/lxsameer)
2024-09-14 15:34:07 +0000econo_(uid147250@id-147250.tinside.irccloud.com)
2024-09-14 15:35:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 15:36:53 +0000califax(~califax@user/califx) (Remote host closed the connection)
2024-09-14 15:38:28 +0000califax(~califax@user/califx)
2024-09-14 15:39:53 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 15:42:19 +0000misterfish(~misterfis@84.53.85.146)
2024-09-14 15:42:20 +0000naxx(~brandt@177.191-pool-nas4-sc.sccoast.net)
2024-09-14 15:47:59 +0000troojg(~troojg@user/troojg) (Remote host closed the connection)
2024-09-14 15:51:02 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 15:55:23 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 245 seconds)
2024-09-14 16:05:20 +0000tired(~tired@user/tired) (Quit: /)
2024-09-14 16:09:07 +0000troojg(~troojg@user/troojg)
2024-09-14 16:09:11 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 16:10:51 +0000sourcetarius_(~sourcetar@user/sourcetarius)
2024-09-14 16:11:13 +0000sourcetarius(~sourcetar@user/sourcetarius) (Read error: Connection reset by peer)
2024-09-14 16:11:25 +0000ash3en(~Thunderbi@2a01:c23:9498:f00:6a45:b60b:690e:f299)
2024-09-14 16:13:38 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 16:15:28 +0000misterfish(~misterfis@84.53.85.146) (Ping timeout: 252 seconds)
2024-09-14 16:20:12 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 16:20:48 +0000califax(~califax@user/califx) (Remote host closed the connection)
2024-09-14 16:21:07 +0000ash3en(~Thunderbi@2a01:c23:9498:f00:6a45:b60b:690e:f299) (Ping timeout: 264 seconds)
2024-09-14 16:25:00 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 16:28:04 +0000wootehfoot(~wootehfoo@user/wootehfoot)
2024-09-14 16:29:53 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30)
2024-09-14 16:30:24 +0000troojg(~troojg@user/troojg) (Ping timeout: 260 seconds)
2024-09-14 16:32:57 +0000califax(~califax@user/califx)
2024-09-14 16:36:27 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 16:40:56 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 255 seconds)
2024-09-14 16:47:01 +0000spew(~spew@201.141.99.170) (Quit: spew)
2024-09-14 16:48:30 +0000misterfish(~misterfis@84.53.85.146)
2024-09-14 16:50:48 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 16:55:46 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-09-14 17:04:56 +0000 <haskellbridge> <thirdofmay18081814goya> Leary: alternative formulation: suppose that we want to define a recursive data type X. then we're looking for T such that X = T(X). i.e., we're looking for a fixed point. a free monad is able to express such a fixed point
2024-09-14 17:06:36 +0000 <monochrom> But free monads are a bit less general.
2024-09-14 17:06:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 17:08:28 +0000tzh(~tzh@c-76-115-131-146.hsd1.or.comcast.net)
2024-09-14 17:08:41 +0000 <monochrom> For free monads, the fixed point equation is X(A) = T(A,X(A)), where T has the form T(A,R) = A + F(R), where F is a functor.
2024-09-14 17:10:14 +0000AlexNoo_(~AlexNoo@94.233.241.202)
2024-09-14 17:10:46 +0000 <haskellbridge> <thirdofmay18081814goya> hm right
2024-09-14 17:11:01 +0000 <monochrom> [] does not fit that form, and even ignoring that form is still not a free monad, for example.
2024-09-14 17:11:11 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 17:11:37 +0000 <monochrom> But each [A] is a free algebra. :)
2024-09-14 17:13:03 +0000 <monochrom> [A] = F([A]) where F is the functor F(R) = 1 + A*R.
2024-09-14 17:13:24 +0000AlexNoo(~AlexNoo@94.233.241.202) (Ping timeout: 252 seconds)
2024-09-14 17:16:51 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com)
2024-09-14 17:17:04 +0000tomboy64(~tomboy64@user/tomboy64) (Ping timeout: 252 seconds)
2024-09-14 17:17:04 +0000drlkf(~drlkf@192.184.163.34.bc.googleusercontent.com) (Ping timeout: 252 seconds)
2024-09-14 17:17:07 +0000 <monochrom> Fortunately, you can see how X(A) above is also a free algebra, using the functor G(R) = A + F(R).
2024-09-14 17:17:26 +0000todi(~todi@p57803331.dip0.t-ipconnect.de) (Ping timeout: 252 seconds)
2024-09-14 17:17:28 +0000drlkf(~drlkf@192.184.163.34.bc.googleusercontent.com)
2024-09-14 17:18:42 +0000todi(~todi@p57803331.dip0.t-ipconnect.de)
2024-09-14 17:19:38 +0000mauke(~mauke@user/mauke) (Ping timeout: 252 seconds)
2024-09-14 17:19:47 +0000mauke(~mauke@user/mauke)
2024-09-14 17:20:22 +0000Natch(~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se) (Ping timeout: 252 seconds)
2024-09-14 17:21:40 +0000Natch(~natch@c-9e07225c.038-60-73746f7.bbcust.telenor.se)
2024-09-14 17:23:22 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 17:24:02 +0000haveo(~weechat@pacamara.iuwt.fr) (Ping timeout: 252 seconds)
2024-09-14 17:24:26 +0000haveo(~weechat@pacamara.iuwt.fr)
2024-09-14 17:25:52 +0000sprout(~sprout@84-80-106-227.fixed.kpn.net) (Ping timeout: 252 seconds)
2024-09-14 17:26:12 +0000sprout(~sprout@84-80-106-227.fixed.kpn.net)
2024-09-14 17:26:29 +0000AlexNoo_AlexNoo
2024-09-14 17:27:42 +0000TheCoffeMaker_(~TheCoffeM@186.136.173.70) (Ping timeout: 252 seconds)
2024-09-14 17:28:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 276 seconds)
2024-09-14 17:30:18 +0000tomboy64(~tomboy64@user/tomboy64)
2024-09-14 17:30:23 +0000czy(~user@2a00:23c6:54a8:6301:c977:9d83:7d7f:2fe5)
2024-09-14 17:30:46 +0000TheCoffeMaker(~TheCoffeM@user/thecoffemaker)
2024-09-14 17:31:04 +0000euphores(~SASL_euph@user/euphores) (Ping timeout: 260 seconds)
2024-09-14 17:32:29 +0000Pozyomka(~pyon@user/pyon) (Read error: Connection reset by peer)
2024-09-14 17:33:09 +0000Pozyomka(~pyon@user/pyon)
2024-09-14 17:34:51 +0000euphores(~SASL_euph@user/euphores)
2024-09-14 17:39:38 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 17:43:50 +0000TheCoffeMaker_(~TheCoffeM@186.136.173.70)
2024-09-14 17:44:12 +0000TheCoffeMaker(~TheCoffeM@user/thecoffemaker) (Ping timeout: 252 seconds)
2024-09-14 17:44:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 17:45:18 +0000tv(~tv@user/tv) (Ping timeout: 252 seconds)
2024-09-14 17:45:18 +0000Rembane(~Rembane@user/Rembane) (Ping timeout: 252 seconds)
2024-09-14 17:45:49 +0000sprout(~sprout@84-80-106-227.fixed.kpn.net) (Ping timeout: 252 seconds)
2024-09-14 17:45:50 +0000nitrix(~nitrix@user/meow/nitrix) (Ping timeout: 252 seconds)
2024-09-14 17:45:50 +0000[_________](~oos95GWG@user/oos95GWG) (Ping timeout: 252 seconds)
2024-09-14 17:45:57 +0000acro_(~acro@user/acro)
2024-09-14 17:45:57 +0000nitrix_(~nitrix@user/meow/nitrix)
2024-09-14 17:46:02 +0000peutri_(~peutri@bobo.desast.re) (Ping timeout: 252 seconds)
2024-09-14 17:46:02 +0000eugenrh(~eugenrh@user/eugenrh) (Ping timeout: 252 seconds)
2024-09-14 17:46:11 +0000peutri(~peutri@bobo.desast.re)
2024-09-14 17:46:46 +0000acro(~acro@user/acro) (Ping timeout: 252 seconds)
2024-09-14 17:46:46 +0000acro_acro
2024-09-14 17:47:11 +0000irssi(~Rembane@user/Rembane)
2024-09-14 17:47:38 +0000[_________](~oos95GWG@user/oos95GWG)
2024-09-14 17:47:49 +0000bollu3(~bollu@159.65.151.13)
2024-09-14 17:47:59 +0000nitrix_nitrix
2024-09-14 17:48:00 +0000eugenrh(~eugenrh@user/eugenrh)
2024-09-14 17:48:25 +0000sprout(~sprout@84-80-106-227.fixed.kpn.net)
2024-09-14 17:49:42 +0000bollu(~bollu@159.65.151.13) (Ping timeout: 252 seconds)
2024-09-14 17:49:42 +0000bollu3bollu
2024-09-14 17:50:01 +0000misterfish(~misterfis@84.53.85.146) (Ping timeout: 244 seconds)
2024-09-14 17:52:38 +0000sand-witch(~m-mzmz6l@vmi833741.contaboserver.net) (Ping timeout: 252 seconds)
2024-09-14 17:53:09 +0000czy(~user@2a00:23c6:54a8:6301:c977:9d83:7d7f:2fe5) (Ping timeout: 265 seconds)
2024-09-14 17:53:25 +0000sand-witch(~m-mzmz6l@vmi833741.contaboserver.net)
2024-09-14 17:56:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 17:56:58 +0000misterfish(~misterfis@84.53.85.146)
2024-09-14 17:57:52 +0000euphores(~SASL_euph@user/euphores) (Quit: Leaving.)
2024-09-14 17:59:39 +0000euphores(~SASL_euph@user/euphores)
2024-09-14 18:00:00 +0000tv(~tv@user/tv)
2024-09-14 18:01:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 18:13:04 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30) (Ping timeout: 260 seconds)
2024-09-14 18:13:50 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 18:18:26 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds)
2024-09-14 18:19:36 +0000pavonia(~user@user/siracusa) (Quit: Bye!)
2024-09-14 18:20:19 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net)
2024-09-14 18:20:43 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30)
2024-09-14 18:21:11 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 18:23:29 +0000 <lxsameer> hey folks, how do you add a dependency flag to your cabal and ghci workflow? for example one on my dependencies has a flag -f json.
2024-09-14 18:23:51 +0000 <lxsameer> when I add it to my ghc-options cabal is happy and builds, but ghci yells at me
2024-09-14 18:24:10 +0000deriamis(nobody@172-232-162-115.ip.linodeusercontent.com) (Ping timeout: 252 seconds)
2024-09-14 18:24:17 +0000 <tomsmeding> lxsameer: I take it you have a *.cabal file? Do you have a cabal.project file too?
2024-09-14 18:24:17 +0000 <sclv> you can specify a flag for a dependency in a cabal.project file
2024-09-14 18:24:21 +0000 <davean> use cabal repl
2024-09-14 18:24:26 +0000 <geekosaur> ^
2024-09-14 18:24:26 +0000deriamis(nobody@2600:3c0a::f03c:95ff:fee8:f335)
2024-09-14 18:24:38 +0000 <tomsmeding> also that, plain ghci will not work in a cabal project
2024-09-14 18:25:03 +0000 <geekosaur> well, it will if you use environment files, but they'll also bite your ass at some point
2024-09-14 18:25:24 +0000 <lxsameer> tomsmeding: yeah i have both
2024-09-14 18:25:26 +0000 <sclv> also if your dependency has a flag that changes the exposed api surface area, then that is a Bad Practice and they shouldn't do that (not that you necessarily can control that)
2024-09-14 18:25:34 +0000 <tomsmeding> lxsameer: if you want to see how to write flags: look at a freeze file, i.e. `cabal freeze` and then look at cabal.project.freeze
2024-09-14 18:25:34 +0000 <lxsameer> ah, ok so not the main file
2024-09-14 18:25:40 +0000 <tomsmeding> that file is valid syntax for a cabal.project
2024-09-14 18:25:46 +0000 <lxsameer> cheers
2024-09-14 18:26:03 +0000irssiRembane
2024-09-14 18:26:06 +0000 <sclv> here's some example syntax in the docs https://cabal.readthedocs.io/en/3.4/cabal-project.html#solver-configuration-options
2024-09-14 18:26:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-09-14 18:26:45 +0000 <monochrom> Yeah putting it cabal.project is cleaner than remembering that you have to say "cabal install --lib ... tons of options to sets flags ..."
2024-09-14 18:27:00 +0000 <geekosaur> --write-environment-files=always
2024-09-14 18:27:08 +0000 <geekosaur> (or cabal.project equivalent)
2024-09-14 18:27:21 +0000 <geekosaur> but, as I said, eventually it'll bite your ass hard
2024-09-14 18:27:54 +0000 <geekosaur> it's like "cabal hell" but limited to your project because they're written to local build directories
2024-09-14 18:28:33 +0000 <tomsmeding> *project directories, right?
2024-09-14 18:28:38 +0000 <tomsmeding> ghc won't look in dist-newstyle
2024-09-14 18:28:39 +0000 <geekosaur> once you start building up different versions, ghc will start grabbing wrong versions of deps
2024-09-14 18:28:41 +0000 <lxsameer> cabal.project.local would be acceptable right?
2024-09-14 18:28:45 +0000 <geekosaur> yes
2024-09-14 18:28:55 +0000 <geekosaur> tomsmeding, source dirs
2024-09-14 18:28:57 +0000 <tomsmeding> cabal.project.local is for stuff you don't want to push
2024-09-14 18:29:17 +0000 <tomsmeding> geekosaur: right. My definition of "build directory" is "dist-newstyle" :p
2024-09-14 18:30:15 +0000 <monochrom> I still use cabal-install --lib, but now I keep it in directory-local env files. :)
2024-09-14 18:30:42 +0000 <tomsmeding> it's not that it can't work, but if you don't need it, better not have to think about doing it right
2024-09-14 18:32:51 +0000 <geekosaur> yep. still has this problem lurking, thoiugh. it's safest with a freeze file and nuking the env files any time you update the freeze file. I *think* that will avoid the worst issues
2024-09-14 18:32:59 +0000 <monochrom> Its just for study notes. A different topic to learn uses a different directory, e.g., I have one directory for learning hmatrix, a different one for learning sqlite and the sqlite-simple package. They won't interfere with each other.
2024-09-14 18:34:05 +0000 <monochrom> More seriously projects like my https://github.com/treblacy/cabalgc are properly cabalized.
2024-09-14 18:34:51 +0000 <monochrom> Basically iff I would just want to say "make" if it were C, I cabalize for Haskell.
2024-09-14 18:35:03 +0000 <dmj`> would be interesting to make a language that compiles to sqlite VM instructions, w/ a static type system
2024-09-14 18:35:12 +0000 <tomsmeding> the thing with C is that the step from `make` to something else is humungous
2024-09-14 18:39:50 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 18:40:39 +0000aljustiet(~aljustiet@user/meow/aljustiet)
2024-09-14 18:44:33 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-09-14 18:44:56 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Quit: peterbecich)
2024-09-14 18:45:24 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com)
2024-09-14 18:45:27 +0000michalz(~michalz@185.246.207.201)
2024-09-14 18:49:05 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30) (Ping timeout: 252 seconds)
2024-09-14 18:57:44 +0000mreh(~matthew@host86-160-168-12.range86-160.btcentralplus.com)
2024-09-14 18:57:50 +0000JuanDaugherty(~juan@user/JuanDaugherty)
2024-09-14 19:00:01 +0000caconym9(~caconym@user/caconym) (Quit: bye)
2024-09-14 19:00:37 +0000caconym9(~caconym@user/caconym)
2024-09-14 19:01:47 +0000misterfish(~misterfis@84.53.85.146) (Ping timeout: 265 seconds)
2024-09-14 19:09:14 +0000wootehfoot(~wootehfoo@user/wootehfoot) (Read error: Connection reset by peer)
2024-09-14 19:09:59 +0000weary-traveler(~user@user/user363627)
2024-09-14 19:14:10 +0000spew(~spew@201.141.99.170)
2024-09-14 19:16:02 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 19:21:07 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-09-14 19:25:12 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-09-14 19:26:31 +0000machinedgod(~machinedg@d50-99-47-73.abhsia.telus.net) (Ping timeout: 264 seconds)
2024-09-14 19:29:56 +0000L29Ah(~L29Ah@wikipedia/L29Ah)
2024-09-14 19:30:41 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30)
2024-09-14 19:33:13 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 19:37:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 244 seconds)
2024-09-14 19:39:07 +0000 <cheater> tomsmeding: why are freeze files necessary to have a dependency flag?
2024-09-14 19:39:20 +0000 <tomsmeding> cheater: they aren't
2024-09-14 19:39:32 +0000 <geekosaur> it's just a convenient way to see where dep flags fit in
2024-09-14 19:39:35 +0000 <tomsmeding> I just pointed to them as an example of how the syntax works
2024-09-14 19:39:43 +0000 <cheater> ahh
2024-09-14 19:39:45 +0000 <cheater> gotcha, thanks guys
2024-09-14 19:39:55 +0000 <tomsmeding> because freeze files contents are the same language as what goes in cabal.project
2024-09-14 19:49:01 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 19:52:14 +0000Squared(~Square@user/square) (Ping timeout: 260 seconds)
2024-09-14 19:53:15 +0000mreh(~matthew@host86-160-168-12.range86-160.btcentralplus.com) (Ping timeout: 252 seconds)
2024-09-14 19:53:38 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 20:04:53 +0000troojg(~troojg@user/troojg)
2024-09-14 20:04:57 +0000 <__monty__> tomsmeding: I keep hearing good things about Meson.
2024-09-14 20:05:47 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 20:10:19 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 20:13:18 +0000spew(~spew@201.141.99.170) (Read error: Connection reset by peer)
2024-09-14 20:13:48 +0000michalz_(~michalz@185.246.207.215)
2024-09-14 20:15:01 +0000 <geekosaur> the point, I think, was more that moving from make to anything else is a "complete build system rewrite" deal, not a simple migration
2024-09-14 20:15:15 +0000michalz(~michalz@185.246.207.201) (Ping timeout: 265 seconds)
2024-09-14 20:15:16 +0000 <geekosaur> (and possibly redesign)
2024-09-14 20:17:02 +0000 <geekosaur> none of the make alternatives are drop-in replacements
2024-09-14 20:18:03 +0000 <geekosaur> even early ones like cake (roughly, a cross between make and ccache) took a lot of work
2024-09-14 20:19:24 +0000spew(~spew@201.141.99.170)
2024-09-14 20:21:43 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 20:23:21 +0000 <tomsmeding> __monty__: does meson do dependencies?
2024-09-14 20:23:35 +0000 <tomsmeding> as long as there are no dependencies to be built/installed, I can do with make just fine
2024-09-14 20:24:17 +0000 <EvanR> this? https://cakebuild.net/
2024-09-14 20:24:23 +0000 <tomsmeding> preprocessing source files is no problem, multiple different configurations can be done with variables
2024-09-14 20:24:35 +0000 <tomsmeding> make is perfectly fine UNTIL one needs anything involving external dependencies
2024-09-14 20:24:45 +0000 <geekosaur> no, I'm talking about one from back in 1989ish
2024-09-14 20:25:11 +0000 <geekosaur> it was aware of configurations, cached build products, and shared them across configurations when possible
2024-09-14 20:25:55 +0000 <geekosaur> its downfall was that by far the most common pair of configurations is "devel / production" (debug-forward vs. optimization-forward), where the possible sharing is pretty much 0
2024-09-14 20:26:12 +0000 <geekosaur> oh, and defining configurations was messy
2024-09-14 20:26:31 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-09-14 20:27:04 +0000ash3en(~Thunderbi@146.70.124.222)
2024-09-14 20:27:21 +0000 <geekosaur> https://www.semanticscholar.org/paper/Cake%3A-a-fifth-generation-version-of-make-Somogyi/3e973b5c9…
2024-09-14 20:29:51 +0000 <geekosaur> in practice, make+ccache turned out to be more practically usable
2024-09-14 20:31:07 +0000benjaminl_(~benjaminl@2601:1c0:847f:9c70:223:24ff:fe66:4370) (Read error: Connection reset by peer)
2024-09-14 20:31:22 +0000benjaminl(~benjaminl@user/benjaminl)
2024-09-14 20:35:24 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30) (Ping timeout: 260 seconds)
2024-09-14 20:38:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 20:43:01 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 248 seconds)
2024-09-14 20:50:26 +0000ec(~ec@gateway/tor-sasl/ec) (Remote host closed the connection)
2024-09-14 20:52:37 +0000weary-traveler(~user@user/user363627) (Remote host closed the connection)
2024-09-14 20:53:38 +0000target_i(~target_i@user/target-i/x-6023099) (Quit: leaving)
2024-09-14 20:53:46 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30)
2024-09-14 20:55:42 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 20:57:34 +0000troojg(~troojg@user/troojg) (Ping timeout: 260 seconds)
2024-09-14 21:00:29 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 21:04:04 +0000aljustiet(~aljustiet@user/meow/aljustiet) (Ping timeout: 265 seconds)
2024-09-14 21:07:12 +0000ash3en(~Thunderbi@146.70.124.222) (Quit: ash3en)
2024-09-14 21:10:34 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 21:12:09 +0000peterbecich(~Thunderbi@syn-047-229-123-186.res.spectrum.com) (Ping timeout: 260 seconds)
2024-09-14 21:17:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 21:20:29 +0000Sgeo(~Sgeo@user/sgeo)
2024-09-14 21:20:37 +0000tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2024-09-14 21:27:37 +0000lxsameer(~lxsameer@Serene/lxsameer) (Ping timeout: 255 seconds)
2024-09-14 21:28:29 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30) (Ping timeout: 260 seconds)
2024-09-14 21:30:19 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 21:34:50 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 21:47:09 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 21:48:54 +0000tomboy64(~tomboy64@user/tomboy64) (Ping timeout: 260 seconds)
2024-09-14 21:51:36 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 246 seconds)
2024-09-14 21:53:38 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30)
2024-09-14 21:55:37 +0000tomboy64(~tomboy64@user/tomboy64)
2024-09-14 21:56:24 +0000michalz_(~michalz@185.246.207.215) (Remote host closed the connection)
2024-09-14 22:00:54 +0000takuan(~takuan@178-116-218-225.access.telenet.be) (Remote host closed the connection)
2024-09-14 22:04:09 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 22:08:34 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 22:16:15 +0000weary-traveler(~user@user/user363627)
2024-09-14 22:20:32 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 22:25:19 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 264 seconds)
2024-09-14 22:28:19 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30) (Ping timeout: 264 seconds)
2024-09-14 22:29:17 +0000__monty__(~toonn@user/toonn) (Quit: leaving)
2024-09-14 22:29:31 +0000TheCoffeMaker_(~TheCoffeM@186.136.173.70) (Quit: So long and thanks for all the fish)
2024-09-14 22:36:56 +0000hgolden_(~hgolden@146.70.174.37) (Remote host closed the connection)
2024-09-14 22:38:55 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 22:39:04 +0000hgolden(~hgolden@169.150.203.36)
2024-09-14 22:43:44 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 22:44:14 +0000TheCoffeMaker(~TheCoffeM@user/thecoffemaker)
2024-09-14 22:50:14 +0000john(~john@2406:5a00:241a:5600:41c4:1903:9759:a97c) (Read error: Connection reset by peer)
2024-09-14 22:51:07 +0000john(~john@2406:5a00:241a:5600:16f:d6b6:8ecf:f15b)
2024-09-14 22:51:07 +0000gmg(~user@user/gehmehgeh) (Quit: Leaving)
2024-09-14 22:56:04 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 22:58:48 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30)
2024-09-14 23:00:39 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 23:07:04 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30) (Ping timeout: 260 seconds)
2024-09-14 23:09:53 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30)
2024-09-14 23:14:22 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 23:14:25 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30) (Ping timeout: 248 seconds)
2024-09-14 23:19:19 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 23:22:12 +0000hueso(~root@user/hueso) (Quit: hueso)
2024-09-14 23:22:36 +0000acidjnk(~acidjnk@p200300d6e72cfb993124db42593adef3.dip0.t-ipconnect.de) (Ping timeout: 246 seconds)
2024-09-14 23:28:28 +0000JuanDaugherty(~juan@user/JuanDaugherty) (Quit: JuanDaugherty)
2024-09-14 23:30:42 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 23:32:17 +0000hiredman(~hiredman@frontier1.downey.family) (Quit: Lost terminal)
2024-09-14 23:32:31 +0000athan(~athan@syn-098-153-145-140.biz.spectrum.com)
2024-09-14 23:35:06 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-09-14 23:41:27 +0000gmg(~user@user/gehmehgeh)
2024-09-14 23:43:22 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30)
2024-09-14 23:43:53 +0000emmanuelux(~emmanuelu@user/emmanuelux)
2024-09-14 23:45:51 +0000mhatta(~mhatta@www21123ui.sakura.ne.jp) (Quit: ZNC 1.9.1+deb1 - https://znc.in)
2024-09-14 23:46:23 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl)
2024-09-14 23:46:44 +0000rao^(~rao@c-98-242-74-66.hsd1.ga.comcast.net) (Ping timeout: 260 seconds)
2024-09-14 23:47:51 +0000mhatta(~mhatta@www21123ui.sakura.ne.jp)
2024-09-14 23:50:49 +0000sw4n(~sw4n@2605:59c0:40f0:9610:559:7713:a305:7d30) (Ping timeout: 260 seconds)
2024-09-14 23:51:19 +0000Tuplanolla(~Tuplanoll@91-159-69-59.elisa-laajakaista.fi) (Quit: Leaving.)
2024-09-14 23:51:24 +0000merijn(~merijn@204-220-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-09-14 23:52:42 +0000mhatta(~mhatta@www21123ui.sakura.ne.jp) (Ping timeout: 252 seconds)
2024-09-14 23:52:50 +0000mhatta_(~mhatta@www21123ui.sakura.ne.jp)
2024-09-14 23:54:51 +0000morb(~morb@pool-108-41-100-120.nycmny.fios.verizon.net)
2024-09-14 23:58:43 +0000hueso(~root@user/hueso)
2024-09-14 23:59:31 +0000morb(~morb@pool-108-41-100-120.nycmny.fios.verizon.net) (Ping timeout: 265 seconds)