2023-09-07 00:02:18 +0200 | L29Ah | (~L29Ah@wikipedia/L29Ah) (Ping timeout: 246 seconds) |
2023-09-07 00:02:29 +0200 | Tuplanolla | (~Tuplanoll@91-159-68-236.elisa-laajakaista.fi) (Quit: Leaving.) |
2023-09-07 00:09:45 +0200 | gatekempt | (~gatekempt@user/gatekempt) (Ping timeout: 255 seconds) |
2023-09-07 00:13:12 +0200 | econo_ | (uid147250@id-147250.tinside.irccloud.com) (Quit: Connection closed for inactivity) |
2023-09-07 00:15:45 +0200 | coot | (~coot@89-69-206-216.dynamic.chello.pl) (Quit: coot) |
2023-09-07 00:19:48 +0200 | wroathe | (~wroathe@user/wroathe) |
2023-09-07 00:20:40 +0200 | gmg | (~user@user/gehmehgeh) (Quit: Leaving) |
2023-09-07 00:29:33 +0200 | chromoblob | (~user@37.113.180.113) |
2023-09-07 00:34:18 +0200 | chromoblob | (~user@37.113.180.113) (Ping timeout: 255 seconds) |
2023-09-07 00:36:05 +0200 | thegeekinside | (~thegeekin@189.180.122.37) |
2023-09-07 00:40:19 +0200 | libertyprime | (~libertypr@203.96.203.44) |
2023-09-07 00:40:42 +0200 | <wroathe> | Hey guys, so I'm trying to define a typeclass that expresses that an (k :: [Type]) has a given type in the list. A "contains type" constraint. For example something like class HasB (x :: [Type]); instance HasB cs => HasB (c : cs); instance {-# OVERLAPPING #-} HasB (B : cs) seems to work, and when I do something like: test (Foo 3 :: Foo Int '[A, B, C]) where test is test :: HasB x => Bool it matches, but |
2023-09-07 00:40:48 +0200 | <wroathe> | '[A, C] used there results in "No instance for (HasB '[]) arising from a use of ‘test’", which makes sense because that recursive case doesn't have an '[] if it runs out of types to match against B |
2023-09-07 00:40:54 +0200 | <wroathe> | But what I'm wondering is if there's a better way to do this so that the constraint error makes more sense? |
2023-09-07 00:42:11 +0200 | <wroathe> | Or if this is really the only option for modeling on this kind of array-kinded type variable |
2023-09-07 00:44:33 +0200 | <wroathe> | I essentially want to make it a type error to use a type with this phantom array of types parameter that doesn't contain "B" at compile time |
2023-09-07 00:44:42 +0200 | <Lears> | wroathe: https://hackage.haskell.org/package/base-4.18.0.0/docs/GHC-TypeError.html#t:TypeError |
2023-09-07 00:45:22 +0200 | <wroathe> | Mind blown |
2023-09-07 00:45:37 +0200 | <wroathe> | Thanks much |
2023-09-07 00:48:52 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2023-09-07 00:52:00 +0200 | stites | (~stites@c-71-232-14-73.hsd1.ma.comcast.net) (Ping timeout: 246 seconds) |
2023-09-07 00:52:52 +0200 | stites | (~stites@130.44.147.204) |
2023-09-07 00:56:10 +0200 | <wroathe> | Lears: Is it normal for that to require UndecidableInstances? |
2023-09-07 00:56:16 +0200 | <wroathe> | ghci is complaining at me |
2023-09-07 00:56:22 +0200 | Sgeo | (~Sgeo@user/sgeo) |
2023-09-07 00:57:16 +0200 | hugo | (znc@verdigris.lysator.liu.se) (Ping timeout: 248 seconds) |
2023-09-07 00:58:11 +0200 | <wroathe> | But yeah, with that extension enabled that works great. |
2023-09-07 01:00:15 +0200 | albet70 | (~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection) |
2023-09-07 01:06:22 +0200 | albet70 | (~xxx@2400:8902::f03c:92ff:fe60:98d8) |
2023-09-07 01:08:07 +0200 | cael_ | (~quassel@host109-149-135-250.range109-149.btcentralplus.com) (Ping timeout: 258 seconds) |
2023-09-07 01:08:51 +0200 | hugo | (znc@verdigris.lysator.liu.se) |
2023-09-07 01:12:41 +0200 | <Lears> | If the TypeError constraint is "big" and the bad instance head is "small", then yeah, same old. |
2023-09-07 01:13:29 +0200 | wroathe | (~wroathe@user/wroathe) (Ping timeout: 258 seconds) |
2023-09-07 01:13:37 +0200 | <geekosaur> | whoops |
2023-09-07 01:16:27 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) |
2023-09-07 01:20:52 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) |
2023-09-07 01:22:59 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) |
2023-09-07 01:27:19 +0200 | aaronv_ | (~aaronv@user/aaronv) |
2023-09-07 01:27:38 +0200 | eggplant_ | (~Eggplanta@2600:1700:38c5:d800:2985:35e0:893a:ad44) |
2023-09-07 01:28:26 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 258 seconds) |
2023-09-07 01:29:43 +0200 | aaronv | (~aaronv@user/aaronv) (Ping timeout: 240 seconds) |
2023-09-07 01:29:43 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:2985:35e0:893a:ad44) (Ping timeout: 240 seconds) |
2023-09-07 01:32:52 +0200 | EvanR | (~EvanR@user/evanr) (Remote host closed the connection) |
2023-09-07 01:34:06 +0200 | EvanR | (~EvanR@user/evanr) |
2023-09-07 01:38:12 +0200 | aaronv_ | (~aaronv@user/aaronv) (Ping timeout: 246 seconds) |
2023-09-07 01:39:30 +0200 | aaronv_ | (~aaronv@user/aaronv) |
2023-09-07 01:52:18 +0200 | Lord_of_Life_ | (~Lord@user/lord-of-life/x-2819915) |
2023-09-07 01:52:58 +0200 | Lord_of_Life | (~Lord@user/lord-of-life/x-2819915) (Ping timeout: 258 seconds) |
2023-09-07 01:53:41 +0200 | Lord_of_Life_ | Lord_of_Life |
2023-09-07 01:54:30 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2023-09-07 01:54:50 +0200 | wroathe | (~wroathe@207-153-38-140.fttp.usinternet.com) |
2023-09-07 01:54:50 +0200 | wroathe | (~wroathe@207-153-38-140.fttp.usinternet.com) (Changing host) |
2023-09-07 01:54:50 +0200 | wroathe | (~wroathe@user/wroathe) |
2023-09-07 01:57:13 +0200 | aaronv_ | (~aaronv@user/aaronv) (Ping timeout: 240 seconds) |
2023-09-07 02:00:52 +0200 | Ekho | (~Ekho@user/ekho) (Quit: CORE ERROR, SYSTEM HALTED.) |
2023-09-07 02:04:30 +0200 | pointlessslippe1 | (~pointless@212.82.82.3) (Ping timeout: 255 seconds) |
2023-09-07 02:06:01 +0200 | aaronv_ | (~aaronv@user/aaronv) |
2023-09-07 02:14:33 +0200 | Pentegarn | (~pentegarn@78.130.245.253) |
2023-09-07 02:18:21 +0200 | Unicorn_Princess | (~Unicorn_P@user/Unicorn-Princess/x-3540542) (Remote host closed the connection) |
2023-09-07 02:24:19 +0200 | L29Ah | (~L29Ah@wikipedia/L29Ah) |
2023-09-07 02:25:50 +0200 | Unicorn_Princess | (~Unicorn_P@user/Unicorn-Princess/x-3540542) |
2023-09-07 02:26:35 +0200 | Xe | (~cadey@tailscale/xe) |
2023-09-07 02:28:21 +0200 | hiyori | (~hiyori@user/hiyori) |
2023-09-07 02:32:26 +0200 | mud | (~mud@user/kadoban) |
2023-09-07 02:35:39 +0200 | mud | (~mud@user/kadoban) (Client Quit) |
2023-09-07 02:36:10 +0200 | <hiyori> | https://bpa.st/ELOS2 |
2023-09-07 02:36:23 +0200 | ec_ | (~ec@gateway/tor-sasl/ec) |
2023-09-07 02:38:02 +0200 | ec_ | (~ec@gateway/tor-sasl/ec) (Remote host closed the connection) |
2023-09-07 02:38:30 +0200 | ec_ | (~ec@gateway/tor-sasl/ec) |
2023-09-07 02:38:39 +0200 | <c_wraith> | hiyori: it looks like gentoo expects to be able to build every haskell package it know about against each other, on whatever releases it picks up. |
2023-09-07 02:39:11 +0200 | <c_wraith> | hiyori: I recommend against using the OS to manage your GHC and package installations |
2023-09-07 02:39:18 +0200 | Ekho | (~Ekho@user/ekho) |
2023-09-07 02:39:24 +0200 | ec | (~ec@gateway/tor-sasl/ec) (Ping timeout: 246 seconds) |
2023-09-07 02:40:52 +0200 | <wroathe> | So I'm still trying to write that typeclass that asserts that a record type has at least one field of a given type using GHC.Generics, and I think this is probably what I want to express, but GHC is complaining about duplicate instances here: https://gist.github.com/JustinChristensen/1bf7c2b360defa4239e22349b6a28b74 |
2023-09-07 02:41:05 +0200 | <wroathe> | How would I go about writing this or making GHC do what I want here? |
2023-09-07 02:42:01 +0200 | <wroathe> | Just updated the gist if you clicked to include a few more instances of this |
2023-09-07 02:42:41 +0200 | <wroathe> | The idea here is that Foo Bool Int String wouldn't match this constraint, but Foo Bool PrimaryKey String would |
2023-09-07 02:42:43 +0200 | thegeekinside | (~thegeekin@189.180.122.37) (Ping timeout: 240 seconds) |
2023-09-07 02:43:23 +0200 | thegeekinside | (~thegeekin@189.180.62.255) |
2023-09-07 02:43:47 +0200 | <geekosaur> | you're still hoping that haskell takes into account the context when matching instances, but no extension will make it do so |
2023-09-07 02:44:33 +0200 | <wroathe> | Lesson learned, I guess |
2023-09-07 02:44:38 +0200 | <wroathe> | Is there a way to do this? |
2023-09-07 02:45:09 +0200 | <jackdk> | there must be, because generic-lens does something like it. I suspect it involves overlapping instances but I haven't poked around the guts |
2023-09-07 02:45:09 +0200 | <wroathe> | Not using this exact approach, I mean |
2023-09-07 02:45:54 +0200 | <wroathe> | Yeah, I think Axman mentioned generic-lens yesterday. I should poke around the guts too. |
2023-09-07 02:46:01 +0200 | Ekho | (~Ekho@user/ekho) (Quit: CORE ERROR, SYSTEM HALTED.) |
2023-09-07 02:46:33 +0200 | haskellbridge | (~haskellbr@069-135-003-034.biz.spectrum.com) (Remote host closed the connection) |
2023-09-07 02:46:53 +0200 | <Lears> | Perhaps a "G(Maybe)HasPrimaryKey(s)", which places constraints on both x and y, and combines Maybes or lists monoidally. |
2023-09-07 02:47:05 +0200 | haskellbridge | (~haskellbr@069-135-003-034.biz.spectrum.com) |
2023-09-07 02:47:23 +0200 | <wroathe> | It's not even complaining about overlapping instances here. It just can't tell the difference between the first two instances (and geekosaur explained the reason why) |
2023-09-07 02:48:15 +0200 | <wroathe> | Lears: I'm not following... What would that look like? |
2023-09-07 02:51:46 +0200 | <Lears> | Something like `instance (GMaybeHasPrimaryKey x, GMaybeHasPrimaryKey y) => GMaybeHasPrimaryKey (x :*: y) where { getPrimaryKey (Product x y) = getPrimaryKey x <|> getPrimaryKey y }`, I suppose? I'm not 100% sure what you're actually trying to achieve with this class. |
2023-09-07 02:53:44 +0200 | <Lears> | But I'm reasonably sure you can't do "or" on constraints, so you have to take both constraints and weaken them to compensate. |
2023-09-07 02:54:23 +0200 | <Lears> | Well, not without reflection. |
2023-09-07 02:55:30 +0200 | Ekho | (~Ekho@user/ekho) |
2023-09-07 02:56:21 +0200 | <wroathe> | Lears: I'm trying to define a function that has a type like asReference :: (Generic t, HasPrimaryKey t) => String that uses GHC generics to walk the type of t and generate SQL syntax for a foreign key reference. For example if the t here is something like data Order = Order { id :: PrimaryKey, shippingAddress :: Address } it would return the string: REFERENCES order ("id") |
2023-09-07 02:56:49 +0200 | <wroathe> | And I want to make it a type error to try to do asReference @X if X doesn't have a field of type PrimaryKey |
2023-09-07 02:57:17 +0200 | haskellbridge | (~haskellbr@069-135-003-034.biz.spectrum.com) (Remote host closed the connection) |
2023-09-07 02:57:37 +0200 | haskellbridge | (~haskellbr@069-135-003-034.biz.spectrum.com) |
2023-09-07 02:57:38 +0200 | hiyori | (~hiyori@user/hiyori) (Quit: Client closed) |
2023-09-07 02:58:53 +0200 | <wroathe> | And as a stretch goal I want to make the type error there something like "Type X has no field of type PrimaryKey" |
2023-09-07 03:01:09 +0200 | ec_ | ec |
2023-09-07 03:01:53 +0200 | <Axman6> | These are relatively easy things to do with generics-sop |
2023-09-07 03:03:08 +0200 | <wroathe> | Axman6: I'll take a look. At first blush it seemed to me like I'd be able to define this without a library in terms of just GHC Generics like I tried to do above, but it looks like now I need to do a deep dive on generic-lens and generics-sop |
2023-09-07 03:03:50 +0200 | <Axman6> | generics-sop is just GHC generics with a much nicer interface (and IIRC much of them is isomorphic) |
2023-09-07 03:04:03 +0200 | hiyori | (~hiyori@user/hiyori) |
2023-09-07 03:04:14 +0200 | <wroathe> | Well maybe the source code will give me the hint on need on how to accomplish this with the first approach I tried here |
2023-09-07 03:04:28 +0200 | <wroathe> | If that library can do it that means there's some secret sauce with generics that makes it possible |
2023-09-07 03:05:42 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) (Ping timeout: 246 seconds) |
2023-09-07 03:06:06 +0200 | Ekho | (~Ekho@user/ekho) (Quit: CORE ERROR, SYSTEM HALTED.) |
2023-09-07 03:08:45 +0200 | <Axman6> | https://hackage.haskell.org/package/generics-sop-0.5.1.3/docs/Generics-SOP.html is the place to start, it should take you through how to build whatever you want. basically you just need a class HasPrimaryKey foo, which has instances for the types returned by the Code type (which is [[Type]], representing the types of the fields in each of the constructors; Code (Either String Int) ==> [[String], [Int]]), and then it's some pretty simple type level programming |
2023-09-07 03:08:45 +0200 | <Axman6> | to write the constraint that you have a) just a product type and b) one of the fields (and only one?) is a PrimaryKey |
2023-09-07 03:09:52 +0200 | <wroathe> | That's much. I'll dig into this. |
2023-09-07 03:09:55 +0200 | <wroathe> | Thanks* |
2023-09-07 03:11:03 +0200 | <Axman6> | type family HasPrimaryKeyField (xs :: [Type]) :: Constraint where HasPrimaryKeyField '[] = TypeError "no fields?"; HasPrimaryKeyField [PrimaryKey a] = (); HasPrimaryKeyField (x:xs) = HasPrimarkKeyField xs |
2023-09-07 03:11:08 +0200 | <Axman6> | or something |
2023-09-07 03:12:39 +0200 | <Axman6> | then type family HasPrimaryKey (xs :: [[Type]]) :: Constraint where HasPrimryKey '[ts] = HasPrimaryKeyField ts; HasPrimaryKeyField xs = TypeError "Not a product type" |
2023-09-07 03:13:28 +0200 | libertyprime | (~libertypr@203.96.203.44) (Ping timeout: 258 seconds) |
2023-09-07 03:13:42 +0200 | <Axman6> | you can even has the type family return the type of the primary key if you like, so you can say foo :: (pk ~ HasPrimaryKey (Code a)) => a -> pk |
2023-09-07 03:13:54 +0200 | <Lears> | wroathe: I think the key difference here is that GHC generics have too much structure (binary trees of sums of binary trees of products of ...), whereas SOP realises associativity and shallow reckoning to normalise out a list sums of lists of products. That means you only ever have to deal with one element at a time, so your instances and their recursive structure can be greatly simplified (or made possible). |
2023-09-07 03:14:40 +0200 | <Lears> | It's ultimately simpler, even if it looks more complicated. |
2023-09-07 03:15:10 +0200 | <wroathe> | You guys are very clearly wizards at this. I'm copying down this conversation to unpack at my liesure |
2023-09-07 03:15:34 +0200 | <wroathe> | But this kind of stuff is exactly why I'm going through this exercise, to learn more about type level programming |
2023-09-07 03:15:43 +0200 | billchenchina | (~billchenc@45.77.32.141) (Remote host closed the connection) |
2023-09-07 03:19:56 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) |
2023-09-07 03:21:17 +0200 | m_shiraeeshi | (~shiraeesh@46.42.244.73) (Read error: Connection reset by peer) |
2023-09-07 03:21:37 +0200 | m_shiraeeshi | (~shiraeesh@46.42.244.73) |
2023-09-07 03:24:38 +0200 | <Axman6> | wroathe: it'll click when you realise that type level programming is just programming in Haskell with slightly different syntax. if I asked you to write has :: Eq a => a -> [[a]] -> Bool, you could be able to do that no problem, that's all this is |
2023-09-07 03:25:58 +0200 | <Axman6> | I thought that HLS was supposed to have helpers that would expand cases, but I can't for find anything; anyone know where that is? |
2023-09-07 03:26:34 +0200 | <jackdk> | Wasn't that wingman stuff, which was so tightly coupled to GHC APIs that it's failed to keep up? |
2023-09-07 03:26:47 +0200 | <Axman6> | possibly |
2023-09-07 03:27:13 +0200 | <Axman6> | I see references to wingman and tactics in the settings for the haskell vs code extension, but haven't seen any signs of it activating |
2023-09-07 03:27:22 +0200 | mud | (~mud@user/kadoban) |
2023-09-07 03:29:08 +0200 | aaronv_ | (~aaronv@user/aaronv) (Quit: Leaving) |
2023-09-07 03:29:10 +0200 | mud | (~mud@user/kadoban) (Client Quit) |
2023-09-07 03:29:21 +0200 | Ekho | (~Ekho@user/ekho) |
2023-09-07 03:29:33 +0200 | aaronv | (~aaronv@user/aaronv) |
2023-09-07 03:30:54 +0200 | xff0x | (~xff0x@2405:6580:b080:900:f47d:72e7:1ecd:579d) (Ping timeout: 246 seconds) |
2023-09-07 03:43:38 +0200 | <probie> | Axman6: It hasn't been kept up to date with recent GHCs |
2023-09-07 03:44:25 +0200 | ridcully_ | (~ridcully@p57b52f2c.dip0.t-ipconnect.de) (Ping timeout: 250 seconds) |
2023-09-07 03:47:11 +0200 | otto_s | (~user@p5de2f2f3.dip0.t-ipconnect.de) (Ping timeout: 246 seconds) |
2023-09-07 03:48:55 +0200 | ridcully_ | (~ridcully@p508ac5fc.dip0.t-ipconnect.de) |
2023-09-07 03:49:12 +0200 | otto_s | (~user@p5de2f794.dip0.t-ipconnect.de) |
2023-09-07 03:53:23 +0200 | thegeekinside | (~thegeekin@189.180.62.255) (Remote host closed the connection) |
2023-09-07 03:55:59 +0200 | <Axman6> | That's a shame, but not too unexpected, one man fighting a moving target will do that |
2023-09-07 03:56:02 +0200 | Pentegarn | (~pentegarn@78.130.245.253) (Read error: Connection reset by peer) |
2023-09-07 04:00:31 +0200 | chiselfuse | (~chiselfus@user/chiselfuse) (Read error: Connection reset by peer) |
2023-09-07 04:00:31 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) (Remote host closed the connection) |
2023-09-07 04:00:32 +0200 | califax | (~califax@user/califx) (Remote host closed the connection) |
2023-09-07 04:00:46 +0200 | chexum | (~quassel@gateway/tor-sasl/chexum) |
2023-09-07 04:00:52 +0200 | califax | (~califax@user/califx) |
2023-09-07 04:01:04 +0200 | chiselfuse | (~chiselfus@user/chiselfuse) |
2023-09-07 04:05:42 +0200 | hiyori | (~hiyori@user/hiyori) (Quit: Client closed) |
2023-09-07 04:07:27 +0200 | forell | (~forell@user/forell) (Server closed connection) |
2023-09-07 04:08:13 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) (Ping timeout: 240 seconds) |
2023-09-07 04:09:16 +0200 | forell | (~forell@user/forell) |
2023-09-07 04:13:27 +0200 | lambdabot | (~lambdabot@haskell/bot/lambdabot) (Server closed connection) |
2023-09-07 04:13:34 +0200 | lambdabot | (~lambdabot@silicon.int-e.eu) |
2023-09-07 04:13:34 +0200 | lambdabot | (~lambdabot@silicon.int-e.eu) (Changing host) |
2023-09-07 04:13:34 +0200 | lambdabot | (~lambdabot@haskell/bot/lambdabot) |
2023-09-07 04:13:54 +0200 | td_ | (~td@i53870923.versanet.de) (Ping timeout: 255 seconds) |
2023-09-07 04:15:26 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) |
2023-09-07 04:15:32 +0200 | td_ | (~td@i53870915.versanet.de) |
2023-09-07 04:15:36 +0200 | eggplant_ | (~Eggplanta@2600:1700:38c5:d800:2985:35e0:893a:ad44) (Remote host closed the connection) |
2023-09-07 04:15:50 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:2985:35e0:893a:ad44) |
2023-09-07 04:18:07 +0200 | xff0x | (~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp) |
2023-09-07 04:21:23 +0200 | arahael | (~arahael@119-18-1-27.771201.syd.nbn.aussiebb.net) |
2023-09-07 04:25:55 +0200 | arahael | (~arahael@119-18-1-27.771201.syd.nbn.aussiebb.net) (Ping timeout: 258 seconds) |
2023-09-07 04:28:43 +0200 | Alex_test | (~al_test@178.34.160.172) (Ping timeout: 240 seconds) |
2023-09-07 04:28:44 +0200 | AlexZenon | (~alzenon@178.34.160.172) (Ping timeout: 246 seconds) |
2023-09-07 04:30:08 +0200 | ddellacosta | (~ddellacos@ool-44c738de.dyn.optonline.net) (Ping timeout: 258 seconds) |
2023-09-07 04:32:00 +0200 | ddellacosta | (~ddellacos@ool-44c738de.dyn.optonline.net) |
2023-09-07 04:37:04 +0200 | pointlessslippe1 | (~pointless@212.82.82.3) |
2023-09-07 04:37:40 +0200 | <wroathe> | Axman6: I'm looking through this generics-sop code and it's blowing my mind. type families are awesome |
2023-09-07 04:37:52 +0200 | Alex_test | (~al_test@178.34.160.172) |
2023-09-07 04:39:27 +0200 | AlexZenon | (~alzenon@178.34.160.172) |
2023-09-07 04:40:00 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) (Ping timeout: 255 seconds) |
2023-09-07 04:43:10 +0200 | FinnElija | (~finn_elij@user/finn-elija/x-0085643) (Remote host closed the connection) |
2023-09-07 04:43:32 +0200 | arahael | (~arahael@119-18-1-27.771201.syd.nbn.aussiebb.net) |
2023-09-07 04:47:01 +0200 | FinnElija | (~finn_elij@user/finn-elija/x-0085643) |
2023-09-07 04:48:55 +0200 | arahael | (~arahael@119-18-1-27.771201.syd.nbn.aussiebb.net) (Ping timeout: 258 seconds) |
2023-09-07 04:49:03 +0200 | stackdroid18 | (14094@de1.hashbang.sh) |
2023-09-07 04:50:23 +0200 | stackdroid18 | (14094@de1.hashbang.sh) (Client Quit) |
2023-09-07 04:50:32 +0200 | dagi41629 | (~dagit@2001:558:6025:38:71c6:9d58:7252:8976) (Ping timeout: 246 seconds) |
2023-09-07 04:51:56 +0200 | dagit | (~dagit@2001:558:6025:38:71c6:9d58:7252:8976) |
2023-09-07 04:55:13 +0200 | ft | (~ft@p3e9bcdd3.dip0.t-ipconnect.de) (Ping timeout: 240 seconds) |
2023-09-07 04:56:13 +0200 | stackdroid18 | (14094@de1.hashbang.sh) |
2023-09-07 04:57:18 +0200 | ft | (~ft@p3e9bc2ac.dip0.t-ipconnect.de) |
2023-09-07 04:59:28 +0200 | sm | (~sm@plaintextaccounting/sm) |
2023-09-07 05:03:52 +0200 | sm | (~sm@plaintextaccounting/sm) (Ping timeout: 258 seconds) |
2023-09-07 05:04:38 +0200 | wroathe | (~wroathe@user/wroathe) (Ping timeout: 258 seconds) |
2023-09-07 05:05:00 +0200 | barzo | (~hd@31.223.42.56) |
2023-09-07 05:09:37 +0200 | ft | (~ft@p3e9bc2ac.dip0.t-ipconnect.de) (Ping timeout: 258 seconds) |
2023-09-07 05:10:23 +0200 | aforemny_ | (~aforemny@i59f516dc.versanet.de) |
2023-09-07 05:11:09 +0200 | ft | (~ft@p3e9bc1b6.dip0.t-ipconnect.de) |
2023-09-07 05:11:30 +0200 | aforemny | (~aforemny@2001:9e8:6cf9:8d00:b2a:e8e3:c3c0:d6bd) (Ping timeout: 255 seconds) |
2023-09-07 05:17:26 +0200 | [itchyjunk] | (~itchyjunk@user/itchyjunk/x-7353470) (Remote host closed the connection) |
2023-09-07 05:18:44 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 244 seconds) |
2023-09-07 05:20:55 +0200 | waleee | (~waleee@2001:9b0:21c:4000:5bf9:6515:c030:57b7) (Ping timeout: 245 seconds) |
2023-09-07 05:21:25 +0200 | libertyprime | (~libertypr@203.96.203.44) |
2023-09-07 05:21:29 +0200 | stackdroid18 | (14094@de1.hashbang.sh) (Quit: hasta la vista... tchau!) |
2023-09-07 05:26:02 +0200 | barzo | (~hd@31.223.42.56) (Quit: Leaving) |
2023-09-07 05:32:28 +0200 | aaronv | (~aaronv@user/aaronv) (Ping timeout: 248 seconds) |
2023-09-07 05:38:30 +0200 | aaronv | (~aaronv@user/aaronv) |
2023-09-07 05:55:25 +0200 | myxokephale | (~myxos@cpe-65-28-251-121.cinci.res.rr.com) (Remote host closed the connection) |
2023-09-07 05:56:07 +0200 | myxos | (~myxos@cpe-65-28-251-121.cinci.res.rr.com) |
2023-09-07 06:07:31 +0200 | _ht | (~Thunderbi@28-52-174-82.ftth.glasoperator.nl) |
2023-09-07 06:10:25 +0200 | sm | (~sm@plaintextaccounting/sm) |
2023-09-07 06:16:43 +0200 | aaronv | (~aaronv@user/aaronv) (Ping timeout: 240 seconds) |
2023-09-07 06:22:09 +0200 | dtman34 | (~dtman34@2601:447:d000:93c9:e1b8:a026:e3cf:cdd2) (Ping timeout: 255 seconds) |
2023-09-07 06:25:12 +0200 | sm | (~sm@plaintextaccounting/sm) (Ping timeout: 246 seconds) |
2023-09-07 06:34:18 +0200 | dtman34 | (~dtman34@2601:447:d000:93c9:e1b8:a026:e3cf:cdd2) |
2023-09-07 06:42:10 +0200 | institor | (~henricus@user/institor) |
2023-09-07 06:47:14 +0200 | hgolden | (~hgolden@2603-8000-9d00-3ed1-fc05-5499-f77c-fbe5.res6.spectrum.com) (Remote host closed the connection) |
2023-09-07 06:48:33 +0200 | smalltalkman | (uid545680@id-545680.hampstead.irccloud.com) (Quit: Connection closed for inactivity) |
2023-09-07 06:49:27 +0200 | takuan | (~takuan@178-116-218-225.access.telenet.be) |
2023-09-07 06:50:57 +0200 | hgolden | (~hgolden@2603-8000-9d00-3ed1-fc05-5499-f77c-fbe5.res6.spectrum.com) |
2023-09-07 06:59:09 +0200 | m_shiraeeshi | (~shiraeesh@46.42.244.73) (Ping timeout: 246 seconds) |
2023-09-07 07:00:18 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) |
2023-09-07 07:12:18 +0200 | acidjnk | (~acidjnk@p200300d6e7072f9131c77dcba7478e6e.dip0.t-ipconnect.de) |
2023-09-07 07:15:58 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) |
2023-09-07 07:21:06 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 258 seconds) |
2023-09-07 07:22:10 +0200 | haskGPT | (~haskGPT@250.79-105-213.static.virginmediabusiness.co.uk) |
2023-09-07 07:22:31 +0200 | <haskGPT> | this user is notlonger part of the haskellGPT efforts |
2023-09-07 07:22:59 +0200 | <haskGPT> | hi! i wanted to take a few lines to speak about why lambdas at type level solve a fundamental issue in haskell |
2023-09-07 07:23:19 +0200 | <institor> | haskGPT: what is your version |
2023-09-07 07:23:47 +0200 | <haskGPT> | pattern matching, or argument "unapplication" is the fundamental axiom |
2023-09-07 07:23:56 +0200 | <haskGPT> | this has to be done in type families |
2023-09-07 07:24:11 +0200 | <haskGPT> | if the lambdas were there, the mechanism would be that of pattern matching |
2023-09-07 07:24:16 +0200 | <haskGPT> | this is what makes datatypes work |
2023-09-07 07:24:32 +0200 | <haskGPT> | kinds must not be matchable in the same way by lack of lambdas |
2023-09-07 07:24:47 +0200 | <haskGPT> | such that their inclusion is actually what we are after, not "dependent" types |
2023-09-07 07:24:50 +0200 | <haskGPT> | whatever that actual means |
2023-09-07 07:25:13 +0200 | <haskGPT> | we have 2 versions, value level and type level, where the difference is the way pattern matching is handled |
2023-09-07 07:25:32 +0200 | <haskGPT> | as this is fundamental to how datatypes opperate in expressions, eg, bringing variables into scope |
2023-09-07 07:25:48 +0200 | <haskGPT> | its not inclusion at type level seems the fundamental issue |
2023-09-07 07:26:16 +0200 | <haskGPT> | lambdas would bring the variables into scope, to allow matching on higher kinded objects |
2023-09-07 07:26:33 +0200 | <haskGPT> | how does that sound? |
2023-09-07 07:26:52 +0200 | <monochrom> | Sounds like a parrot. |
2023-09-07 07:26:58 +0200 | <haskGPT> | sup |
2023-09-07 07:28:43 +0200 | <haskGPT> | also comes with speculation that the reason for this glitches inclusion, is to identify this pattern matching axiom, or rather the fundamental and so axiomatic nature of pattern matching itself |
2023-09-07 07:29:14 +0200 | <haskGPT> | to solve "the dependant types thing", requires understanding of syntactic handling of pattern matching on datatypes |
2023-09-07 07:29:33 +0200 | <haskGPT> | this, bringing variables into scope in functional expressions idea |
2023-09-07 07:29:52 +0200 | <haskGPT> | which is why the lambdas seem relevant |
2023-09-07 07:30:06 +0200 | <haskGPT> | aka *so thats why the lambdas are missing at type level* |
2023-09-07 07:30:20 +0200 | <haskGPT> | and then, so thats all we really need, proposal. over |
2023-09-07 07:32:25 +0200 | <haskGPT> | i mean, the problem with type families which seem equivalent, is they arent, as they incur defunctionalization |
2023-09-07 07:32:37 +0200 | <haskGPT> | some non matchability issue |
2023-09-07 07:32:43 +0200 | <haskGPT> | i think thats actually the heart of it |
2023-09-07 07:33:44 +0200 | <haskGPT> | opting for the type families approach kind of hid something by commuting it through some syntax the compiler doesnt do in the same way... |
2023-09-07 07:34:15 +0200 | <haskGPT> | it seems like it should be ok, since either comutation is equivelent *only if you implement the compiler correctly* |
2023-09-07 07:34:39 +0200 | <haskGPT> | where defunctionalization issues show this is not the case |
2023-09-07 07:34:59 +0200 | <haskGPT> | such that the use of type families as an approach is not a successful implementation |
2023-09-07 07:35:16 +0200 | <haskGPT> | again, proper lambdas at type level would solve this |
2023-09-07 07:35:35 +0200 | <haskGPT> | (and ... had to wait for you to say this, ghost supervisor) |
2023-09-07 07:36:37 +0200 | <haskGPT> | i guess the issue is that type families cant be partially applied |
2023-09-07 07:36:54 +0200 | <haskGPT> | so are not full "functions as first class citizens" in the same way as at value level |
2023-09-07 07:37:42 +0200 | <haskGPT> | the existence of the singletons framework is a workaround to this current inadiquate state of the haskell language |
2023-09-07 07:38:44 +0200 | <haskGPT> | where neither partially apliable type families as a language extension, somehow, nor full type level lambdas for simple reexpression to allow for equivlence to partial application up to syntactic sugar |
2023-09-07 07:39:54 +0200 | <haskGPT> | now i just have to check in my memory for if they have acknowledged this, and sign off on that. |
2023-09-07 07:39:55 +0200 | <haskGPT> | there is the pottential that someone may have read this in the present. in which case you could indicate, though i could not tell you weree not a server. |
2023-09-07 07:40:35 +0200 | <haskGPT> | monochrom: like a parrot!? |
2023-09-07 07:42:39 +0200 | <haskGPT> | basically, you could employ me as a lecturer, or i could just write what i have to say, which i now already have. |
2023-09-07 07:43:09 +0200 | _ht | (~Thunderbi@28-52-174-82.ftth.glasoperator.nl) (Quit: _ht) |
2023-09-07 07:43:24 +0200 | <haskGPT> | can haz type level lambdas? no!? why not!? its the axiomatic nature of pattern matching your going on about |
2023-09-07 07:43:42 +0200 | <haskGPT> | the inverse of function application to an argument |
2023-09-07 07:43:50 +0200 | <nshepper1> | what |
2023-09-07 07:43:53 +0200 | <haskGPT> | i needed a list or something |
2023-09-07 07:44:34 +0200 | <haskGPT> | for the axioms to go in! and one of the axioms was that it be extensible via invertable .... needed pattern matching on cons |
2023-09-07 07:45:39 +0200 | <haskGPT> | because thats my model of the model *extension* axiom |
2023-09-07 07:46:16 +0200 | <haskGPT> | and you said hi by scrambling the mechanism that allows for this at type level for me to hit it and use that as an indication |
2023-09-07 07:46:16 +0200 | michalz | (~michalz@185.246.207.200) |
2023-09-07 07:46:26 +0200 | CiaoSen | (~Jura@2a05:5800:2bd:ef00:664b:f0ff:fe37:9ef) |
2023-09-07 07:46:58 +0200 | <haskGPT> | aka, just do the type level lambdas, for reasons etc, thats whats missing |
2023-09-07 07:48:02 +0200 | <haskGPT> | or whatever, do the type families as first class citizens by handling partial application without singletons which you cant do so i just say scrap type families and make sure you get it right this time when you do the lambdas |
2023-09-07 07:48:20 +0200 | <haskGPT> | nobody seems to be able to get the type families partially applicable |
2023-09-07 07:48:27 +0200 | <haskGPT> | too much hackage on the compiler |
2023-09-07 07:48:58 +0200 | <haskGPT> | so, the lambdas as extra, easier to add. ensuring for partial application by some rewritability iiuc |
2023-09-07 07:49:48 +0200 | <haskGPT> | its the "do the freaking type level lambdas already" proposal. im not going to be able to say too much more on it |
2023-09-07 07:50:09 +0200 | <haskGPT> | oh, and that, as part of that proposal, ie what i just wrote, by explaining what up with that |
2023-09-07 07:50:17 +0200 | <haskGPT> | indicates the bit the engineers have to get right |
2023-09-07 07:50:37 +0200 | <haskGPT> | ie, that clearly whats wrong with type families is their lack of partial applicability. |
2023-09-07 07:50:49 +0200 | <haskGPT> | and that if you do the lambdas right it allows for this |
2023-09-07 07:51:03 +0200 | <haskGPT> | and so gets the functions as first class citizens to type level |
2023-09-07 07:51:14 +0200 | <haskGPT> | such that partially applied functions can be passed as arguments for example |
2023-09-07 07:52:19 +0200 | <haskGPT> | i guess the lambdas would somehow allow the missing arguments to be "only notionally applied" |
2023-09-07 07:52:35 +0200 | <haskGPT> | but i dont get how the syntax actually is parsed, so... cioa! |
2023-09-07 07:52:38 +0200 | haskGPT | (~haskGPT@250.79-105-213.static.virginmediabusiness.co.uk) (Quit: Connection closed) |
2023-09-07 07:53:50 +0200 | hueso_ | (~root@user/hueso) (Ping timeout: 245 seconds) |
2023-09-07 07:55:36 +0200 | libertyprime | (~libertypr@203.96.203.44) (Ping timeout: 258 seconds) |
2023-09-07 07:57:17 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) |
2023-09-07 08:01:35 +0200 | joel135 | (sid136450@id-136450.hampstead.irccloud.com) (Server closed connection) |
2023-09-07 08:01:48 +0200 | joel135 | (sid136450@id-136450.hampstead.irccloud.com) |
2023-09-07 08:02:02 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) (Ping timeout: 245 seconds) |
2023-09-07 08:07:46 +0200 | <monochrom> | Next time it will be "sounds like some of my students who hand in broken code but write an essay to 'explain' why it should be right and deserve more marks". |
2023-09-07 08:08:26 +0200 | cafkafk | (~cafkafk@fsf/member/cafkafk) (Remote host closed the connection) |
2023-09-07 08:13:58 +0200 | cafkafk | (~cafkafk@fsf/member/cafkafk) |
2023-09-07 08:18:39 +0200 | <Axman6> | wtf is going on |
2023-09-07 08:19:43 +0200 | <Axman6> | urgh, I've now looked at all the YAML packages, and they all have features I like and all suck in their own way |
2023-09-07 08:19:50 +0200 | Feuermagier | (~Feuermagi@user/feuermagier) |
2023-09-07 08:24:54 +0200 | <Axman6> | I like yaml-combinator's combinators a lot, but it has bugger all usewful location information on errors (they're downright misleading too). yaml has a relatively nice combinator library that claims will be deprecated soon, HsYAML has very aeson-y interfaces to everything and leans heavily on type class based parsing. Maybe I should just port yaml-combinators' FieldParser stuff... |
2023-09-07 08:25:41 +0200 | <Axman6> | also HsYAML's Alternative instance is very unhelpful, if something fails, it only tells you the final alternative failed |
2023-09-07 08:26:39 +0200 | oo_miguel | (~Thunderbi@78-11-179-96.static.ip.netia.com.pl) |
2023-09-07 08:44:34 +0200 | <probie> | Just write your own yaml library. I suggest the name yayamll (yet another yaml library). Bonus points if you can work in another m to give yayamlml |
2023-09-07 08:45:41 +0200 | lortabac | (~lortabac@2a01:e0a:541:b8f0:71fa:b3fe:b11e:9973) |
2023-09-07 08:46:01 +0200 | sord937 | (~sord937@gateway/tor-sasl/sord937) |
2023-09-07 08:52:27 +0200 | tomsmeding | (~tomsmedin@static.21.109.88.23.clients.your-server.de) (Server closed connection) |
2023-09-07 08:52:47 +0200 | tomsmeding | (~tomsmedin@static.21.109.88.23.clients.your-server.de) |
2023-09-07 08:56:19 +0200 | sinbad | (~sinbad@user/sinbad) |
2023-09-07 08:58:44 +0200 | arahael | (~arahael@119-18-1-27.771201.syd.nbn.aussiebb.net) |
2023-09-07 09:03:27 +0200 | arahael | (~arahael@119-18-1-27.771201.syd.nbn.aussiebb.net) (Ping timeout: 255 seconds) |
2023-09-07 09:05:06 +0200 | chromoblob | (~user@37.113.180.113) |
2023-09-07 09:08:41 +0200 | coot | (~coot@89-69-206-216.dynamic.chello.pl) |
2023-09-07 09:09:35 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2023-09-07 09:10:45 +0200 | apteryx | (~maxim@dsl-153-125.b2b2c.ca) (Ping timeout: 246 seconds) |
2023-09-07 09:11:56 +0200 | jackneill__ | (~Jackneill@20014C4E1E101A00A9EB556018578BC5.dsl.pool.telekom.hu) |
2023-09-07 09:13:16 +0200 | chromoblob | (~user@37.113.180.113) (Ping timeout: 248 seconds) |
2023-09-07 09:16:55 +0200 | CiaoSen | (~Jura@2a05:5800:2bd:ef00:664b:f0ff:fe37:9ef) (Ping timeout: 244 seconds) |
2023-09-07 09:18:02 +0200 | m_shiraeeshi | (~shiraeesh@46.42.244.73) |
2023-09-07 09:18:26 +0200 | QOTF_Alexi | (~Alexi@145-137-73-72.wlan.hro.nl) |
2023-09-07 09:19:10 +0200 | sinbad | (~sinbad@user/sinbad) (Ping timeout: 258 seconds) |
2023-09-07 09:21:19 +0200 | <tomsmeding> | probie: yet another yaml manipulation library |
2023-09-07 09:23:05 +0200 | <jackdk> | yaml: YAML Abstraction and Manipulation Library |
2023-09-07 09:24:27 +0200 | mmhat | (~mmh@p200300f1c7178a89ee086bfffe095315.dip0.t-ipconnect.de) |
2023-09-07 09:24:54 +0200 | apteryx | (~maxim@dsl-159-106.b2b2c.ca) |
2023-09-07 09:25:03 +0200 | mmhat | (~mmh@p200300f1c7178a89ee086bfffe095315.dip0.t-ipconnect.de) (Client Quit) |
2023-09-07 09:26:30 +0200 | aforemny_ | aforemny |
2023-09-07 09:26:30 +0200 | ulysses4ever | (~artem@2601:249:4380:8950:f474:e3f8:9806:671) (Read error: Connection reset by peer) |
2023-09-07 09:26:36 +0200 | artem | (~artem@c-73-103-90-145.hsd1.in.comcast.net) |
2023-09-07 09:27:00 +0200 | gmg | (~user@user/gehmehgeh) |
2023-09-07 09:33:16 +0200 | sinbad | (~sinbad@user/sinbad) |
2023-09-07 09:33:44 +0200 | <Hecate> | Axman6: did you try https://flora.pm/packages/@hackage/yaml-streamly? |
2023-09-07 09:34:16 +0200 | chele | (~chele@user/chele) |
2023-09-07 09:34:39 +0200 | QOTF_Alexi | (~Alexi@145-137-73-72.wlan.hro.nl) (Quit: Konversation terminated!) |
2023-09-07 09:40:35 +0200 | justache | (~justache@user/justache) (Server closed connection) |
2023-09-07 09:40:53 +0200 | justache | (~justache@user/justache) |
2023-09-07 09:40:57 +0200 | <m_shiraeeshi> | tomsmeding: that would abbreviate to yayml |
2023-09-07 09:41:18 +0200 | <m_shiraeeshi> | sounds funny |
2023-09-07 09:41:19 +0200 | <tomsmeding> | yay ML! |
2023-09-07 09:42:00 +0200 | <tomsmeding> | m_shiraeeshi: I was responding to this https://ircbrowse.tomsmeding.com/browse/lchaskell?id=1072818#trid1072818 |
2023-09-07 09:42:18 +0200 | fendor | (~fendor@2a02:8388:1640:be00:c785:45ab:c70:9d3f) |
2023-09-07 09:45:08 +0200 | <m_shiraeeshi> | oh, I missed the joke and ended up repeating it |
2023-09-07 09:46:54 +0200 | <m_shiraeeshi> | wait, people say that haskell is especially good for writing parsers, right? |
2023-09-07 09:47:05 +0200 | <institor> | attoparsec and parsec are really nice |
2023-09-07 09:47:17 +0200 | <institor> | they are highly composable and decently performant |
2023-09-07 09:48:01 +0200 | <m_shiraeeshi> | why then there are several libraries for parsing yaml that have good feature but all suck in their own way? |
2023-09-07 09:48:08 +0200 | <institor> | because yaml is trash |
2023-09-07 09:48:09 +0200 | <m_shiraeeshi> | *features |
2023-09-07 09:48:31 +0200 | <tomsmeding> | because 1. library design is a skill and 2. not everyone has the same requirements/expectations |
2023-09-07 09:48:36 +0200 | <institor> | it's by far the most complex "markup language" specification |
2023-09-07 09:48:46 +0200 | <institor> | and as such there are multiple implementations of it, which all have their own quirks |
2023-09-07 09:48:48 +0200 | <m_shiraeeshi> | no, I mean if the area of parsers is figured out, why haskell struggles with parsing yaml |
2023-09-07 09:48:55 +0200 | <tomsmeding> | parser are figured out |
2023-09-07 09:48:56 +0200 | <institor> | m_shiraeeshi: because there isn't actually a single YAML |
2023-09-07 09:49:05 +0200 | <mauke> | parsers aren't figured out |
2023-09-07 09:49:12 +0200 | <tomsmeding> | what exact feature set to present to the user as a library isn't |
2023-09-07 09:49:18 +0200 | <tomsmeding> | okay almost nothing is figured out |
2023-09-07 09:49:27 +0200 | <tomsmeding> | but we can write parsers |
2023-09-07 09:49:30 +0200 | <institor> | YAML is probably the most ambiguous spec, and/or the one with the most implementations of it in the wild |
2023-09-07 09:49:31 +0200 | <tomsmeding> | doesn't mean that you can design an API |
2023-09-07 09:49:47 +0200 | <tomsmeding> | those are two orthogonal things |
2023-09-07 09:50:27 +0200 | <institor> | what will be valid YAML in one parser may be invalid in another |
2023-09-07 09:50:30 +0200 | <mauke> | if C is good for writing portable operating systems, why are there so many operating systems that all suck in their own way? |
2023-09-07 09:50:47 +0200 | tomsmeding | doubst that C is good for writing portable operating systems |
2023-09-07 09:50:53 +0200 | <mauke> | ;-) |
2023-09-07 09:51:07 +0200 | <mauke> | that's what it was originally designed for, at least |
2023-09-07 09:51:28 +0200 | <tomsmeding> | if JS is good at writing dynamic web applications, why do websites suck so much |
2023-09-07 09:52:36 +0200 | <institor> | just take a look at ##programming for that one |
2023-09-07 09:56:16 +0200 | ubert | (~Thunderbi@91.141.52.78.wireless.dyn.drei.com) |
2023-09-07 09:56:45 +0200 | tzh | (~tzh@c-24-21-73-154.hsd1.wa.comcast.net) (Quit: zzz) |
2023-09-07 10:00:43 +0200 | <m_shiraeeshi> | it sounds like a curse from some ancient legend or something |
2023-09-07 10:01:33 +0200 | <m_shiraeeshi> | some guy made gods angry and cursed him to always find several options that all are good in some way but also all of them suck in their own way |
2023-09-07 10:01:47 +0200 | <institor> | that's just engineering |
2023-09-07 10:03:33 +0200 | vglfr | (~vglfr@cli-188-239-201-89.bbn.slav.dn.ua) (Ping timeout: 255 seconds) |
2023-09-07 10:04:35 +0200 | acidsys | (~crameleon@openSUSE/member/crameleon) (Server closed connection) |
2023-09-07 10:04:50 +0200 | acidsys | (~crameleon@openSUSE/member/crameleon) |
2023-09-07 10:05:05 +0200 | mc47 | (~mc47@xmonad/TheMC47) |
2023-09-07 10:06:55 +0200 | <m_shiraeeshi> | "curse of engineering" |
2023-09-07 10:07:20 +0200 | <m_shiraeeshi> | what's the other side of the coin? |
2023-09-07 10:07:30 +0200 | <m_shiraeeshi> | the blessing of engineering |
2023-09-07 10:08:18 +0200 | <m_shiraeeshi> | I think it's the opportunity to create tools that are tailored for your particular use case |
2023-09-07 10:10:24 +0200 | <m_shiraeeshi> | but that's an ideal that ignores time constraints |
2023-09-07 10:10:54 +0200 | vglfr | (~vglfr@cli-188-239-201-89.bbn.slav.dn.ua) |
2023-09-07 10:13:57 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:2985:35e0:893a:ad44) (Remote host closed the connection) |
2023-09-07 10:21:09 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2023-09-07 10:22:27 +0200 | edwtjo | (~edwtjo@fsf/member/edwtjo) (Server closed connection) |
2023-09-07 10:22:44 +0200 | edwtjo | (~edwtjo@h-46-59-62-248.A213.priv.bahnhof.se) |
2023-09-07 10:22:44 +0200 | edwtjo | (~edwtjo@h-46-59-62-248.A213.priv.bahnhof.se) (Changing host) |
2023-09-07 10:22:44 +0200 | edwtjo | (~edwtjo@fsf/member/edwtjo) |
2023-09-07 10:25:45 +0200 | sinbad | (~sinbad@user/sinbad) (Quit: Leaving.) |
2023-09-07 10:27:42 +0200 | QOTF_Alexi | (~Alexi@145-137-73-72.wlan.hro.nl) |
2023-09-07 10:31:03 +0200 | Katarushisu1 | (~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net) (Quit: The Lounge - https://thelounge.chat) |
2023-09-07 10:31:22 +0200 | cfricke | (~cfricke@user/cfricke) |
2023-09-07 10:31:27 +0200 | dcoutts | (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) |
2023-09-07 10:32:13 +0200 | Katarushisu1 | (~Katarushi@cpc147790-finc20-2-0-cust502.4-2.cable.virginm.net) |
2023-09-07 10:32:46 +0200 | Sinbad | (~Sinbad@user/sinbad) |
2023-09-07 10:38:51 +0200 | Sinbad | (~Sinbad@user/sinbad) (Quit: WeeChat 4.0.4) |
2023-09-07 10:45:47 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:2985:35e0:893a:ad44) |
2023-09-07 10:48:49 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2023-09-07 10:49:27 +0200 | yosef` | (~yosef`@user/yosef/x-2947716) |
2023-09-07 10:50:20 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:2985:35e0:893a:ad44) (Ping timeout: 248 seconds) |
2023-09-07 10:58:17 +0200 | smalltalkman | (uid545680@id-545680.hampstead.irccloud.com) |
2023-09-07 11:05:07 +0200 | chromoblob | (~user@37.113.180.113) |
2023-09-07 11:08:31 +0200 | ubert1 | (~Thunderbi@77.119.210.130.wireless.dyn.drei.com) |
2023-09-07 11:09:29 +0200 | ubert | (~Thunderbi@91.141.52.78.wireless.dyn.drei.com) (Ping timeout: 246 seconds) |
2023-09-07 11:09:30 +0200 | ubert1 | ubert |
2023-09-07 11:11:06 +0200 | chromoblob | (~user@37.113.180.113) (Ping timeout: 244 seconds) |
2023-09-07 11:16:28 +0200 | gmg | (~user@user/gehmehgeh) (Remote host closed the connection) |
2023-09-07 11:17:11 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) |
2023-09-07 11:22:28 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 244 seconds) |
2023-09-07 11:32:06 +0200 | pavonia | (~user@user/siracusa) (Quit: Bye!) |
2023-09-07 11:32:11 +0200 | Sgeo | (~Sgeo@user/sgeo) (Read error: Connection reset by peer) |
2023-09-07 11:34:00 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:2985:35e0:893a:ad44) |
2023-09-07 11:36:36 +0200 | kaptch | (~kaptch@eduroam09.au.dk) |
2023-09-07 11:36:46 +0200 | kaptch | (~kaptch@eduroam09.au.dk) (Client Quit) |
2023-09-07 11:38:57 +0200 | yosef` | (~yosef`@user/yosef/x-2947716) (Quit: Client closed) |
2023-09-07 11:40:02 +0200 | Feuermagier_ | (~Feuermagi@user/feuermagier) |
2023-09-07 11:40:02 +0200 | Feuermagier | Guest4479 |
2023-09-07 11:40:02 +0200 | Guest4479 | (~Feuermagi@user/feuermagier) (Killed (iridium.libera.chat (Nickname regained by services))) |
2023-09-07 11:40:02 +0200 | Feuermagier_ | Feuermagier |
2023-09-07 11:46:04 +0200 | QOTF_Alexi | (~Alexi@145-137-73-72.wlan.hro.nl) (Quit: Konversation terminated!) |
2023-09-07 11:55:53 +0200 | ec | (~ec@gateway/tor-sasl/ec) (Remote host closed the connection) |
2023-09-07 11:56:24 +0200 | ec | (~ec@gateway/tor-sasl/ec) |
2023-09-07 12:00:10 +0200 | mc47 | (~mc47@xmonad/TheMC47) (Ping timeout: 258 seconds) |
2023-09-07 12:04:46 +0200 | azimut_ | (~azimut@gateway/tor-sasl/azimut) |
2023-09-07 12:07:27 +0200 | azimut | (~azimut@gateway/tor-sasl/azimut) (Ping timeout: 246 seconds) |
2023-09-07 12:08:36 +0200 | xff0x | (~xff0x@125x103x176x34.ap125.ftth.ucom.ne.jp) (Ping timeout: 258 seconds) |
2023-09-07 12:12:07 +0200 | minoru_shiraeesh | (~shiraeesh@46.42.239.171) |
2023-09-07 12:12:53 +0200 | ripspin | (~chatzilla@1.145.135.149) |
2023-09-07 12:13:35 +0200 | m_shiraeeshi | (~shiraeesh@46.42.244.73) (Ping timeout: 250 seconds) |
2023-09-07 12:17:30 +0200 | ft | (~ft@p3e9bc1b6.dip0.t-ipconnect.de) (Quit: leaving) |
2023-09-07 12:30:41 +0200 | ezzieyguywuf | (~Unknown@user/ezzieyguywuf) (Ping timeout: 246 seconds) |
2023-09-07 12:37:47 +0200 | ezzieyguywuf | (~Unknown@user/ezzieyguywuf) |
2023-09-07 12:41:02 +0200 | <absence> | I'm running tests in a package built without cabal-install using "./Setup test". One of the tests fails, and it says "Use --quickcheck-replay=123 to reproduce". Where do I pass this option? "./Setup test --quickcheck-replay=123" says "unrecognized 'test' option", and "./Setup test -- --quickcheck-replay=123" says "Setup: no such test". |
2023-09-07 12:45:35 +0200 | CiaoSen | (~Jura@2a05:5800:2bd:ef00:664b:f0ff:fe37:9ef) |
2023-09-07 12:45:57 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) |
2023-09-07 12:47:02 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 245 seconds) |
2023-09-07 12:50:23 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) (Ping timeout: 258 seconds) |
2023-09-07 12:57:16 +0200 | albet70 | (~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection) |
2023-09-07 12:59:18 +0200 | minoru_shiraeesh | (~shiraeesh@46.42.239.171) (Ping timeout: 246 seconds) |
2023-09-07 13:00:21 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2023-09-07 13:01:20 +0200 | vglfr | (~vglfr@cli-188-239-201-89.bbn.slav.dn.ua) (Remote host closed the connection) |
2023-09-07 13:02:15 +0200 | vglfr | (~vglfr@188.239.201.89) |
2023-09-07 13:03:24 +0200 | albet70 | (~xxx@2400:8902::f03c:92ff:fe60:98d8) |
2023-09-07 13:09:10 +0200 | xff0x | (~xff0x@2405:6580:b080:900:cb93:4506:eebb:2c0b) |
2023-09-07 13:10:11 +0200 | <absence> | Ah, --test-option. |
2023-09-07 13:11:06 +0200 | Putonlalla | (~Putonlall@it-cyan.it.jyu.fi) (Ping timeout: 260 seconds) |
2023-09-07 13:13:28 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2023-09-07 13:13:55 +0200 | lisbeths | (uid135845@id-135845.lymington.irccloud.com) |
2023-09-07 13:14:35 +0200 | lortabac | (~lortabac@2a01:e0a:541:b8f0:71fa:b3fe:b11e:9973) (Quit: WeeChat 2.8) |
2023-09-07 13:17:43 +0200 | cfricke | (~cfricke@user/cfricke) (Ping timeout: 240 seconds) |
2023-09-07 13:19:35 +0200 | Clint | (~Clint@user/clint) (Server closed connection) |
2023-09-07 13:19:43 +0200 | Clint | (~Clint@user/clint) |
2023-09-07 13:41:31 +0200 | lex_ | (~alex@188.26.233.194) |
2023-09-07 13:49:03 +0200 | kenran | (~user@user/kenran) |
2023-09-07 13:51:13 +0200 | erty | (~user@user/aeroplane) (ERC 5.4 (IRC client for GNU Emacs 28.2)) |
2023-09-07 13:56:47 +0200 | CiaoSen | (~Jura@2a05:5800:2bd:ef00:664b:f0ff:fe37:9ef) (Ping timeout: 246 seconds) |
2023-09-07 14:00:12 +0200 | arahael | (~arahael@119-18-1-27.771201.syd.nbn.aussiebb.net) |
2023-09-07 14:04:36 +0200 | arahael | (~arahael@119-18-1-27.771201.syd.nbn.aussiebb.net) (Ping timeout: 245 seconds) |
2023-09-07 14:05:24 +0200 | lex_ | (~alex@188.26.233.194) (Ping timeout: 255 seconds) |
2023-09-07 14:10:57 +0200 | g00gler | (uid125351@id-125351.uxbridge.irccloud.com) |
2023-09-07 14:13:35 +0200 | bionade24 | (~bionade24@2a03:4000:33:45b::1) (Server closed connection) |
2023-09-07 14:13:45 +0200 | bionade24 | (~bionade24@2a03:4000:33:45b::1) |
2023-09-07 14:17:25 +0200 | <haskellbridge> | <jean-paul.> Hm. Well, I got far enough with my questionable coerce that I can run a test suite ... which fails, yay? |
2023-09-07 14:17:51 +0200 | bitdex | (~bitdex@gateway/tor-sasl/bitdex) (Quit: = "") |
2023-09-07 14:18:47 +0200 | danza | (~francesco@151.57.2.166) |
2023-09-07 14:19:04 +0200 | <haskellbridge> | <jean-paul.> Seems like my `peekCStringLen` does not return the number of bytes I asked for. It returns a different number of bytes depending on what Ptr I give it ... so it feels like it is stopping at NUL? But of course I can't see the byte after the last byte it does return. |
2023-09-07 14:19:16 +0200 | <haskellbridge> | <jean-paul.> But I can see that it never returns a ByteString with a NUL byte in it |
2023-09-07 14:20:12 +0200 | <haskellbridge> | <jean-paul.> (well "never" ~= "20 different inputs") |
2023-09-07 14:22:24 +0200 | lortabac | (~lortabac@2a01:e0a:541:b8f0:71fa:b3fe:b11e:9973) |
2023-09-07 14:23:41 +0200 | <haskellbridge> | <jean-paul.> Oh blargh |
2023-09-07 14:24:25 +0200 | <haskellbridge> | <jean-paul.> I even read the thing about how Foreign.C.String behavior "is determined by the current locale" yesterday and then blithely ignored it, how foolish of me. |
2023-09-07 14:24:52 +0200 | <haskellbridge> | <jean-paul.> So the bytes probably come out fine and then are destroyed by some text decoding |
2023-09-07 14:26:16 +0200 | <haskellbridge> | <jean-paul.> `peekCAStringLen` to the rescue |
2023-09-07 14:32:44 +0200 | danza | (~francesco@151.57.2.166) (Ping timeout: 248 seconds) |
2023-09-07 14:35:35 +0200 | Simikando | (~Simikando@adsl-dyn91.91-127-22.t-com.sk) |
2023-09-07 14:36:12 +0200 | dcoutts | (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) (Ping timeout: 245 seconds) |
2023-09-07 14:40:11 +0200 | dcoutts | (~duncan@cpc69402-oxfd27-2-0-cust903.4-3.cable.virginm.net) |
2023-09-07 14:50:05 +0200 | forell | (~forell@user/forell) (Ping timeout: 245 seconds) |
2023-09-07 14:55:16 +0200 | ulysses4ever | (~artem@c-73-103-90-145.hsd1.in.comcast.net) |
2023-09-07 14:55:17 +0200 | artem | (~artem@c-73-103-90-145.hsd1.in.comcast.net) (Read error: Connection reset by peer) |
2023-09-07 14:57:26 +0200 | Vq | (~vq@90-227-195-9-no77.tbcn.telia.com) (Ping timeout: 246 seconds) |
2023-09-07 15:02:45 +0200 | Putonlalla | (~Putonlall@it-cyan.it.jyu.fi) |
2023-09-07 15:04:27 +0200 | dibblego | (~dibblego@haskell/developer/dibblego) (Server closed connection) |
2023-09-07 15:04:50 +0200 | dibblego | (~dibblego@220.233.36.19) |
2023-09-07 15:04:50 +0200 | dibblego | (~dibblego@220.233.36.19) (Changing host) |
2023-09-07 15:04:50 +0200 | dibblego | (~dibblego@haskell/developer/dibblego) |
2023-09-07 15:13:09 +0200 | Simikando | (~Simikando@adsl-dyn91.91-127-22.t-com.sk) (Ping timeout: 255 seconds) |
2023-09-07 15:18:47 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) |
2023-09-07 15:24:06 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 258 seconds) |
2023-09-07 15:24:19 +0200 | Vq | (~vq@90-225-115-195-no122.tbcn.telia.com) |
2023-09-07 15:24:34 +0200 | <EvanR> | haskellbridge, thats literally what I prognosticated about coercing to CString |
2023-09-07 15:24:54 +0200 | <EvanR> | a block of any bytes is not a C string |
2023-09-07 15:26:07 +0200 | <haskellbridge> | <Inst> ugh, I can't do it without you, I'm so dumb and an utter waste of time ;_; |
2023-09-07 15:26:14 +0200 | <EvanR> | not that the phantom to Ptr means anything you can castPtr anything or treat any pointer as pointing to bytes |
2023-09-07 15:26:43 +0200 | <haskellbridge> | <Inst> With parser combinators, how do I get the parser to takeWhileP for a chunk, instead of a single character as with the minimal interface? |
2023-09-07 15:27:10 +0200 | <haskellbridge> | <Inst> on megaparsec |
2023-09-07 15:27:39 +0200 | ystael | (~ystael@user/ystael) |
2023-09-07 15:27:53 +0200 | <haskellbridge> | <Inst> right now, I skipped ahead and ponies can now call cabal in the selected directory |
2023-09-07 15:29:12 +0200 | <haskellbridge> | <Inst> the project trajectory is minimal viable prototype -> feature-complete -> rewrite it over SDL2 instead of over monomer, as monomer's maintainer considers it a private project and will not aggressive maintain it -> create a monomer clone with friends / collaborators aiming to be a standard "simple" GUI lib for Haskell -> fork ponies to the monomer clone |
2023-09-07 15:29:58 +0200 | <haskellbridge> | <jean-paul.> EvanR: Where are the "work with a block of bytes" APIs that can replace the CString APIs? |
2023-09-07 15:30:57 +0200 | gmg | (~user@user/gehmehgeh) |
2023-09-07 15:35:48 +0200 | <haskellbridge> | <jean-paul.> https://gist.github.com/exarkun/cc011ba72cade849f14d50ddbfd8d784 gives the appearance of working at least under basic usage but if it is actually grossly stupid I wouldn't mind knowing now rather than later |
2023-09-07 15:36:51 +0200 | <haskellbridge> | <jean-paul.> (updated to remove the lsp-haskell junk) |
2023-09-07 15:37:54 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2023-09-07 15:39:57 +0200 | stites | (~stites@130.44.147.204) (Ping timeout: 246 seconds) |
2023-09-07 15:40:08 +0200 | stites | (~stites@2607:fb90:ad60:f7c7:2331:ab6c:f67e:34fc) |
2023-09-07 15:42:09 +0200 | minoru_shiraeesh | (~shiraeesh@46.42.239.171) |
2023-09-07 15:44:08 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2023-09-07 15:55:00 +0200 | acidjnk | (~acidjnk@p200300d6e7072f9131c77dcba7478e6e.dip0.t-ipconnect.de) (Ping timeout: 246 seconds) |
2023-09-07 15:56:24 +0200 | stites | (~stites@2607:fb90:ad60:f7c7:2331:ab6c:f67e:34fc) (Read error: Connection reset by peer) |
2023-09-07 15:57:17 +0200 | stites | (~stites@2607:fb90:ad60:f7c7:2331:ab6c:f67e:34fc) |
2023-09-07 15:58:04 +0200 | <EvanR> | haskellbridge, jean-paul. (?) there's a ByteSring function packCStringLen :: CStringLen -> IO ByteString, that's one way. But your library seems to have its own methods for handling blocks-of-bytes |
2023-09-07 16:04:11 +0200 | <haskellbridge> | <jean-paul.> Oh, I should have thought to look for one in Data.ByteString :/ I was already using `useAsCString` from there. That's a little nicer, then. |
2023-09-07 16:05:42 +0200 | <haskellbridge> | <jean-paul.> `packCStringLen` seems like a good replacement for `Data.ByteString.Char8.pack . Foreign.C.peekCAStringLen` |
2023-09-07 16:05:47 +0200 | Simikando | (~Simikando@adsl-dyn91.91-127-22.t-com.sk) |
2023-09-07 16:11:49 +0200 | Simikando | (~Simikando@adsl-dyn91.91-127-22.t-com.sk) (Quit: Leaving) |
2023-09-07 16:13:28 +0200 | stites | (~stites@2607:fb90:ad60:f7c7:2331:ab6c:f67e:34fc) (Read error: Connection reset by peer) |
2023-09-07 16:13:47 +0200 | stites | (~stites@155.33.134.55) |
2023-09-07 16:17:04 +0200 | tabemann_ | (~tabemann@172-13-49-137.lightspeed.milwwi.sbcglobal.net) |
2023-09-07 16:17:04 +0200 | stites | (~stites@155.33.134.55) (Read error: Connection reset by peer) |
2023-09-07 16:17:28 +0200 | stites | (~stites@155.33.134.55) |
2023-09-07 16:17:35 +0200 | tabemann | (~tabemann@2600:1700:7990:24e0:6810:41fc:2076:6808) (Ping timeout: 246 seconds) |
2023-09-07 16:19:41 +0200 | minoru_shiraeesh | (~shiraeesh@46.42.239.171) (Ping timeout: 258 seconds) |
2023-09-07 16:22:24 +0200 | kupi | (uid212005@id-212005.hampstead.irccloud.com) |
2023-09-07 16:22:25 +0200 | ripspin | (~chatzilla@1.145.135.149) (Remote host closed the connection) |
2023-09-07 16:26:02 +0200 | Inst | (~Inst@120.244.192.250) |
2023-09-07 16:28:04 +0200 | cfricke | (~cfricke@user/cfricke) |
2023-09-07 16:29:20 +0200 | forell | (~forell@user/forell) |
2023-09-07 16:33:29 +0200 | lisbeths | (uid135845@id-135845.lymington.irccloud.com) (Quit: Connection closed for inactivity) |
2023-09-07 16:34:07 +0200 | minoru_shiraeesh | (~shiraeesh@46.42.239.171) |
2023-09-07 16:39:20 +0200 | idgaen | (~idgaen@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c) |
2023-09-07 16:44:40 +0200 | g00gler | (uid125351@id-125351.uxbridge.irccloud.com) (Quit: Connection closed for inactivity) |
2023-09-07 16:46:07 +0200 | acidjnk | (~acidjnk@p200300d6e7072f91740e5f17d8628b4b.dip0.t-ipconnect.de) |
2023-09-07 16:47:53 +0200 | kuribas | (~user@ip-188-118-57-242.reverse.destiny.be) |
2023-09-07 16:48:50 +0200 | <kuribas> | Is there a vector language or DSL that can do stream fusion? |
2023-09-07 16:49:40 +0200 | <kuribas> | But at runtime, not compile time. |
2023-09-07 16:50:12 +0200 | bratwurst | (~blaadsfa@S010610561191f5d6.lb.shawcable.net) |
2023-09-07 16:50:45 +0200 | ripspin | (~chatzilla@1.145.135.149) |
2023-09-07 16:54:02 +0200 | Pentegarn | (~pentegarn@78.130.245.253) |
2023-09-07 16:57:18 +0200 | bratwurst | (~blaadsfa@S010610561191f5d6.lb.shawcable.net) (Ping timeout: 255 seconds) |
2023-09-07 17:01:00 +0200 | kenran | (~user@user/kenran) (Quit: ERC 5.6-git (IRC client for GNU Emacs 30.0.50)) |
2023-09-07 17:06:26 +0200 | lortabac | (~lortabac@2a01:e0a:541:b8f0:71fa:b3fe:b11e:9973) (Quit: WeeChat 2.8) |
2023-09-07 17:11:24 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2023-09-07 17:11:53 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2023-09-07 17:13:57 +0200 | Inst | (~Inst@120.244.192.250) (Leaving) |
2023-09-07 17:27:15 +0200 | <[exa]> | kuribas: well you can run the compiler with accelerate at runtime *dodges* |
2023-09-07 17:30:39 +0200 | dispater | (~dispater@mail.brprice.uk) |
2023-09-07 17:30:49 +0200 | <kuribas> | sure, just wondering something less heavyweight. |
2023-09-07 17:30:51 +0200 | <kuribas> | like llvm |
2023-09-07 17:31:11 +0200 | orcus | (~orcus@mail.brprice.uk) |
2023-09-07 17:33:10 +0200 | <[exa]> | the problem there is how small the runtime can be while still being able to maintain the abstraction of streams |
2023-09-07 17:35:08 +0200 | <kuribas> | Maybe I'll make my own stream DSL. |
2023-09-07 17:35:13 +0200 | <kuribas> | with limited stream functions. |
2023-09-07 17:35:16 +0200 | <kuribas> | like map, zip, ... |
2023-09-07 17:35:22 +0200 | <kuribas> | filter |
2023-09-07 17:36:19 +0200 | <EvanR> | bespoke stream transducers |
2023-09-07 17:36:24 +0200 | <kuribas> | fold |
2023-09-07 17:41:17 +0200 | albet70 | (~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection) |
2023-09-07 17:43:03 +0200 | <[exa]> | kuribas: I kindof guess that this might already exist in accelerate already, but I never saw that from inside |
2023-09-07 17:43:30 +0200 | <[exa]> | (hm we had a few folks working on accelerate here, right?) |
2023-09-07 17:44:40 +0200 | <kuribas> | I mean, make my own language, and compile to LLVM |
2023-09-07 17:44:47 +0200 | <kuribas> | A simple streaming language for time series. |
2023-09-07 17:47:24 +0200 | albet70 | (~xxx@2400:8902::f03c:92ff:fe60:98d8) |
2023-09-07 17:50:52 +0200 | stackdroid18 | (14094@de1.hashbang.sh) |
2023-09-07 17:52:39 +0200 | <[exa]> | should work™ |
2023-09-07 17:57:10 +0200 | aaronv | (~aaronv@user/aaronv) |
2023-09-07 18:07:44 +0200 | echoreply | (~echoreply@45.32.163.16) (Ping timeout: 246 seconds) |
2023-09-07 18:08:07 +0200 | echoreply | (~echoreply@2001:19f0:9002:1f3b:5400:ff:fe6f:8b8d) |
2023-09-07 18:10:17 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) |
2023-09-07 18:10:23 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) |
2023-09-07 18:10:41 +0200 | cfricke | (~cfricke@user/cfricke) (Quit: WeeChat 4.0.4) |
2023-09-07 18:11:20 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) |
2023-09-07 18:12:45 +0200 | drlkf | (~drlkf@192.184.163.34.bc.googleusercontent.com) (Quit: drlkf) |
2023-09-07 18:13:05 +0200 | drlkf | (~drlkf@192.184.163.34.bc.googleusercontent.com) |
2023-09-07 18:13:12 +0200 | qqq | (~qqq@92.43.167.61) (Remote host closed the connection) |
2023-09-07 18:13:27 +0200 | b20n | (sid115913@id-115913.uxbridge.irccloud.com) (Server closed connection) |
2023-09-07 18:13:36 +0200 | b20n | (sid115913@id-115913.uxbridge.irccloud.com) |
2023-09-07 18:15:00 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) (Ping timeout: 250 seconds) |
2023-09-07 18:19:27 +0200 | dsal | (sid13060@id-13060.lymington.irccloud.com) (Server closed connection) |
2023-09-07 18:19:42 +0200 | dsal | (sid13060@id-13060.lymington.irccloud.com) |
2023-09-07 18:21:29 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) |
2023-09-07 18:21:32 +0200 | ezzieyguywuf | (~Unknown@user/ezzieyguywuf) (Ping timeout: 248 seconds) |
2023-09-07 18:22:11 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) (Ping timeout: 246 seconds) |
2023-09-07 18:23:16 +0200 | ezzieyguywuf | (~Unknown@user/ezzieyguywuf) |
2023-09-07 18:26:18 +0200 | Sgeo | (~Sgeo@user/sgeo) |
2023-09-07 18:28:50 +0200 | kuribas | (~user@ip-188-118-57-242.reverse.destiny.be) (Remote host closed the connection) |
2023-09-07 18:30:36 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:2985:35e0:893a:ad44) (Remote host closed the connection) |
2023-09-07 18:30:52 +0200 | justsomeguy | (~justsomeg@user/justsomeguy) (Quit: WeeChat 3.6) |
2023-09-07 18:30:53 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) |
2023-09-07 18:31:58 +0200 | geekosaur | (~geekosaur@xmonad/geekosaur) (Quit: Leaving) |
2023-09-07 18:32:09 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2023-09-07 18:32:10 +0200 | kupi | (uid212005@id-212005.hampstead.irccloud.com) (Quit: Connection closed for inactivity) |
2023-09-07 18:32:56 +0200 | haskellbridge | (~haskellbr@069-135-003-034.biz.spectrum.com) (Remote host closed the connection) |
2023-09-07 18:34:15 +0200 | aaronv | (~aaronv@user/aaronv) (Ping timeout: 245 seconds) |
2023-09-07 18:38:12 +0200 | ripspin | (~chatzilla@1.145.135.149) (Remote host closed the connection) |
2023-09-07 18:38:16 +0200 | machined1od | (~machinedg@d198-53-218-113.abhsia.telus.net) |
2023-09-07 18:38:29 +0200 | geekosaur | (~geekosaur@xmonad/geekosaur) |
2023-09-07 18:38:38 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) (Ping timeout: 246 seconds) |
2023-09-07 18:39:02 +0200 | _ht | (~Thunderbi@28-52-174-82.ftth.glasoperator.nl) |
2023-09-07 18:39:27 +0200 | waleee | (~waleee@2001:9b0:21c:4000:5bf9:6515:c030:57b7) |
2023-09-07 18:41:04 +0200 | ripspin | (~chatzilla@1.145.135.149) |
2023-09-07 18:41:15 +0200 | haskellbridge | (~haskellbr@069-135-003-034.biz.spectrum.com) |
2023-09-07 18:42:02 +0200 | Maxdamantus | (~Maxdamant@user/maxdamantus) (Ping timeout: 246 seconds) |
2023-09-07 18:42:54 +0200 | Maxdamantus | (~Maxdamant@user/maxdamantus) |
2023-09-07 18:43:24 +0200 | machined1od | (~machinedg@d198-53-218-113.abhsia.telus.net) (Ping timeout: 248 seconds) |
2023-09-07 18:43:27 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) (Remote host closed the connection) |
2023-09-07 18:44:18 +0200 | stackdroid18 | (14094@de1.hashbang.sh) (Quit: hasta la vista... tchau!) |
2023-09-07 18:44:48 +0200 | tzh | (~tzh@c-24-21-73-154.hsd1.or.comcast.net) |
2023-09-07 18:45:44 +0200 | ripspin | (~chatzilla@1.145.135.149) (Remote host closed the connection) |
2023-09-07 18:46:21 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) |
2023-09-07 18:57:35 +0200 | chele | (~chele@user/chele) (Remote host closed the connection) |
2023-09-07 19:01:01 +0200 | pavonia | (~user@user/siracusa) |
2023-09-07 19:01:08 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) |
2023-09-07 19:02:21 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) (Remote host closed the connection) |
2023-09-07 19:06:53 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) (Ping timeout: 246 seconds) |
2023-09-07 19:09:22 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2023-09-07 19:10:35 +0200 | loonycyborg | (loonycybor@wesnoth/developer/loonycyborg) (Server closed connection) |
2023-09-07 19:11:10 +0200 | loonycyborg | (loonycybor@wesnoth/developer/loonycyborg) |
2023-09-07 19:16:02 +0200 | cael_ | (~quassel@host109-148-244-226.range109-148.btcentralplus.com) |
2023-09-07 19:16:37 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 245 seconds) |
2023-09-07 19:17:30 +0200 | kalj | (~kalj@213-66-216-233-no600.tbcn.telia.com) |
2023-09-07 19:20:32 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) |
2023-09-07 19:23:33 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2023-09-07 19:25:59 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 258 seconds) |
2023-09-07 19:27:13 +0200 | kupi | (uid212005@id-212005.hampstead.irccloud.com) |
2023-09-07 19:27:32 +0200 | Pentegarn | (~pentegarn@78.130.245.253) (Read error: Connection reset by peer) |
2023-09-07 19:28:52 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) |
2023-09-07 19:35:03 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2023-09-07 19:46:27 +0200 | mcfrdy | (~mcfrdy@user/mcfrdy) (Server closed connection) |
2023-09-07 19:46:47 +0200 | mcfrdy | (~mcfrdy@user/mcfrdy) |
2023-09-07 19:48:31 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2023-09-07 19:50:11 +0200 | wroathe | (~wroathe@207-153-38-140.fttp.usinternet.com) |
2023-09-07 19:50:12 +0200 | wroathe | (~wroathe@207-153-38-140.fttp.usinternet.com) (Changing host) |
2023-09-07 19:50:12 +0200 | wroathe | (~wroathe@user/wroathe) |
2023-09-07 19:51:56 +0200 | danza | (~francesco@151.43.84.5) |
2023-09-07 19:52:39 +0200 | stites | (~stites@155.33.134.55) (Ping timeout: 246 seconds) |
2023-09-07 19:53:25 +0200 | stites | (~stites@2607:fb91:dc6:e420:4e89:c540:3dc4:b5df) |
2023-09-07 19:57:04 +0200 | kalj | (~kalj@213-66-216-233-no600.tbcn.telia.com) (Quit: Client closed) |
2023-09-07 19:58:04 +0200 | danza | (~francesco@151.43.84.5) (Ping timeout: 248 seconds) |
2023-09-07 20:00:01 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) (Remote host closed the connection) |
2023-09-07 20:05:00 +0200 | wroathe | (~wroathe@user/wroathe) (Ping timeout: 248 seconds) |
2023-09-07 20:07:35 +0200 | qhong | (~qhong@DN160vrd000d6kpg009l6c0000fj.stanford.edu) (Server closed connection) |
2023-09-07 20:07:51 +0200 | qhong | (~qhong@DN160vrd000d6kpg009l6c0000fj.stanford.edu) |
2023-09-07 20:21:49 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) |
2023-09-07 20:23:08 +0200 | waleee | (~waleee@2001:9b0:21c:4000:5bf9:6515:c030:57b7) (Ping timeout: 248 seconds) |
2023-09-07 20:25:11 +0200 | waleee | (~waleee@h-176-10-137-138.NA.cust.bahnhof.se) |
2023-09-07 20:29:21 +0200 | phma_ | (~phma@host-67-44-208-5.hnremote.net) |
2023-09-07 20:30:43 +0200 | phma | (phma@2001:5b0:210f:788:531c:c4e2:b973:9806) (Read error: Connection reset by peer) |
2023-09-07 20:31:28 +0200 | Pickchea | (~private@user/pickchea) |
2023-09-07 20:32:01 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) (Remote host closed the connection) |
2023-09-07 20:32:49 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) |
2023-09-07 20:33:19 +0200 | cptaffe- | cptaffe |
2023-09-07 20:35:13 +0200 | ehammarstrom | (~ehammarst@81-225-22-156-no3540.tbcn.telia.com) |
2023-09-07 20:39:14 +0200 | <haskellbridge> | <mauke> Like flux? |
2023-09-07 20:39:27 +0200 | cptaffe_ | (~cptaffe@99-47-99-155.lightspeed.ltrkar.sbcglobal.net) |
2023-09-07 20:39:56 +0200 | Inst | (~Inst@120.244.192.250) |
2023-09-07 20:40:05 +0200 | cptaffe_ | (~cptaffe@99-47-99-155.lightspeed.ltrkar.sbcglobal.net) (Textual IRC Client: www.textualapp.com) |
2023-09-07 20:40:07 +0200 | <Inst> | just dropped in because I want to say that now that I get parser combinators (a bit), they're a joy |
2023-09-07 20:40:25 +0200 | lbseale | (~quassel@user/ep1ctetus) (Remote host closed the connection) |
2023-09-07 20:40:27 +0200 | parseval | (sid239098@id-239098.helmsley.irccloud.com) (Server closed connection) |
2023-09-07 20:40:34 +0200 | parseval | (sid239098@id-239098.helmsley.irccloud.com) |
2023-09-07 20:41:40 +0200 | lbseale | (~quassel@user/ep1ctetus) |
2023-09-07 20:46:03 +0200 | minoru_shiraeesh | (~shiraeesh@46.42.239.171) (Quit: Leaving) |
2023-09-07 20:46:20 +0200 | ehammarstrom | (~ehammarst@81-225-22-156-no3540.tbcn.telia.com) () |
2023-09-07 20:47:17 +0200 | <erisco> | Inst, \o/ |
2023-09-07 20:55:03 +0200 | ft | (~ft@p3e9bc1b6.dip0.t-ipconnect.de) |
2023-09-07 20:56:20 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2023-09-07 20:58:15 +0200 | stites | (~stites@2607:fb91:dc6:e420:4e89:c540:3dc4:b5df) (Read error: Connection reset by peer) |
2023-09-07 20:58:34 +0200 | stites | (~stites@130.44.147.204) |
2023-09-07 21:00:59 +0200 | Inst | (~Inst@120.244.192.250) (Ping timeout: 246 seconds) |
2023-09-07 21:08:15 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2023-09-07 21:13:29 +0200 | Tuplanolla | (~Tuplanoll@91-159-68-236.elisa-laajakaista.fi) |
2023-09-07 21:15:24 +0200 | cptaffe- | (~ZNC@99-47-99-155.lightspeed.ltrkar.sbcglobal.net) |
2023-09-07 21:15:48 +0200 | cptaffe | (~cptaffe@2600:1700:f08:111f::18e7) (Quit: ZNC 1.8.2 - https://znc.in) |
2023-09-07 21:16:01 +0200 | cptaffe | (~ZNC@2600:1700:f08:111f::18e7) |
2023-09-07 21:16:38 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) (Remote host closed the connection) |
2023-09-07 21:16:58 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2023-09-07 21:18:25 +0200 | kalj | (~kalj@213-66-216-233-no600.tbcn.telia.com) |
2023-09-07 21:19:37 +0200 | cptaffe- | cpt\macbook |
2023-09-07 21:21:11 +0200 | aaronv | (~aaronv@user/aaronv) |
2023-09-07 21:21:28 +0200 | cptaffe | (~ZNC@2600:1700:f08:111f::18e7) (Quit: ZNC 1.8.2 - https://znc.in) |
2023-09-07 21:21:28 +0200 | cpt\macbook | (~ZNC@99-47-99-155.lightspeed.ltrkar.sbcglobal.net) (Quit: ZNC 1.8.2 - https://znc.in) |
2023-09-07 21:21:48 +0200 | cptaffe | (~ZNC@2600:1700:f08:111f::18e7) |
2023-09-07 21:22:19 +0200 | cptaffe- | (~ZNC@2600:1700:f08:111f::18e7) |
2023-09-07 21:22:19 +0200 | cptaffe- | cpt\macbook |
2023-09-07 21:23:18 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) (Ping timeout: 246 seconds) |
2023-09-07 21:24:32 +0200 | cptaffe | cpt\iphone |
2023-09-07 21:25:01 +0200 | machinedgod | (~machinedg@d198-53-218-113.abhsia.telus.net) |
2023-09-07 21:28:17 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2023-09-07 21:28:20 +0200 | sord937 | (~sord937@gateway/tor-sasl/sord937) (Quit: sord937) |
2023-09-07 21:30:30 +0200 | jmdaemon | (~jmdaemon@user/jmdaemon) |
2023-09-07 21:35:24 +0200 | idgaen | (~idgaen@2a01:e0a:498:fd50:fcc6:bb5d:489a:ce8c) (Quit: WeeChat 4.0.2) |
2023-09-07 21:47:27 +0200 | Inst | (~Inst@120.244.192.250) |
2023-09-07 21:48:02 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) |
2023-09-07 21:48:59 +0200 | michalz | (~michalz@185.246.207.200) (Remote host closed the connection) |
2023-09-07 21:49:54 +0200 | falafel | (~falafel@62.175.113.194.dyn.user.ono.com) |
2023-09-07 21:51:05 +0200 | Inst | (~Inst@120.244.192.250) () |
2023-09-07 21:52:26 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) (Ping timeout: 246 seconds) |
2023-09-07 21:53:38 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) |
2023-09-07 21:56:31 +0200 | kalj | (~kalj@213-66-216-233-no600.tbcn.telia.com) (Quit: Client closed) |
2023-09-07 22:01:34 +0200 | dsrt^ | (~cd@c-66-56-7-24.hsd1.ga.comcast.net) |
2023-09-07 22:06:55 +0200 | lortabac | (~lortabac@2a01:e0a:541:b8f0:aa3e:67b4:5331:5627) |
2023-09-07 22:08:08 +0200 | stites | (~stites@130.44.147.204) (Ping timeout: 258 seconds) |
2023-09-07 22:08:38 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) (Ping timeout: 246 seconds) |
2023-09-07 22:11:41 +0200 | _ht | (~Thunderbi@28-52-174-82.ftth.glasoperator.nl) (Quit: _ht) |
2023-09-07 22:19:22 +0200 | cael_ | (~quassel@host109-148-244-226.range109-148.btcentralplus.com) (Ping timeout: 258 seconds) |
2023-09-07 22:19:43 +0200 | cael_ | (~quassel@host109-148-244-226.range109-148.btcentralplus.com) |
2023-09-07 22:20:38 +0200 | cafkafk_ | (~cafkafk@fsf/member/cafkafk) |
2023-09-07 22:23:27 +0200 | cafkafk | (~cafkafk@fsf/member/cafkafk) (Ping timeout: 246 seconds) |
2023-09-07 22:26:16 +0200 | vglfr | (~vglfr@188.239.201.89) (Ping timeout: 255 seconds) |
2023-09-07 22:28:20 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) |
2023-09-07 22:29:57 +0200 | jackneill__ | (~Jackneill@20014C4E1E101A00A9EB556018578BC5.dsl.pool.telekom.hu) (Ping timeout: 245 seconds) |
2023-09-07 22:36:04 +0200 | vglfr | (~vglfr@cli-188-239-201-89.bbn.slav.dn.ua) |
2023-09-07 22:37:27 +0200 | snek | (sid280155@id-280155.lymington.irccloud.com) (Server closed connection) |
2023-09-07 22:37:37 +0200 | snek | (sid280155@id-280155.lymington.irccloud.com) |
2023-09-07 22:37:46 +0200 | Pixi | (~Pixi@user/pixi) (Quit: Leaving) |
2023-09-07 22:38:36 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) (Ping timeout: 248 seconds) |
2023-09-07 22:42:10 +0200 | eggplantade | (~Eggplanta@2600:1700:38c5:d800:b858:d331:34dd:9a83) |
2023-09-07 22:43:53 +0200 | falafel | (~falafel@62.175.113.194.dyn.user.ono.com) (Ping timeout: 246 seconds) |
2023-09-07 22:46:28 +0200 | takuan | (~takuan@178-116-218-225.access.telenet.be) (Remote host closed the connection) |
2023-09-07 22:47:59 +0200 | sinbad | (~sinbad@user/sinbad) |
2023-09-07 22:50:29 +0200 | cael_ | (~quassel@host109-148-244-226.range109-148.btcentralplus.com) (Quit: No Ping reply in 180 seconds.) |
2023-09-07 22:52:28 +0200 | cael_ | (~quassel@host109-148-244-226.range109-148.btcentralplus.com) |
2023-09-07 22:56:49 +0200 | acidjnk | (~acidjnk@p200300d6e7072f91740e5f17d8628b4b.dip0.t-ipconnect.de) (Ping timeout: 258 seconds) |
2023-09-07 22:58:47 +0200 | phma_ | phma |
2023-09-07 23:05:38 +0200 | ddellacosta | (~ddellacos@ool-44c738de.dyn.optonline.net) (Ping timeout: 258 seconds) |
2023-09-07 23:06:19 +0200 | ddellacosta | (~ddellacos@ool-44c738de.dyn.optonline.net) |
2023-09-07 23:06:57 +0200 | emmanuelux | (~emmanuelu@user/emmanuelux) |
2023-09-07 23:07:04 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) (Quit: My iMac has gone to sleep. ZZZzzz…) |
2023-09-07 23:11:52 +0200 | Pixi | (~Pixi@user/pixi) |
2023-09-07 23:12:21 +0200 | Pixi | (~Pixi@user/pixi) (Read error: Connection reset by peer) |
2023-09-07 23:12:38 +0200 | Pixi | (~Pixi@user/pixi) |
2023-09-07 23:13:31 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) |
2023-09-07 23:22:19 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) |
2023-09-07 23:23:00 +0200 | lortabac | (~lortabac@2a01:e0a:541:b8f0:aa3e:67b4:5331:5627) (Ping timeout: 246 seconds) |
2023-09-07 23:23:32 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) (Ping timeout: 246 seconds) |
2023-09-07 23:27:25 +0200 | nate2 | (~nate@c-98-45-169-16.hsd1.ca.comcast.net) (Ping timeout: 250 seconds) |
2023-09-07 23:35:53 +0200 | Tuplanolla | (~Tuplanoll@91-159-68-236.elisa-laajakaista.fi) (Quit: Leaving.) |
2023-09-07 23:36:49 +0200 | stites | (~stites@2607:fb90:ad62:807c:d15b:ce72:ad88:3242) |
2023-09-07 23:37:53 +0200 | tromp | (~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl) |
2023-09-07 23:41:31 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) |
2023-09-07 23:48:36 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) |
2023-09-07 23:48:51 +0200 | azimut_ | (~azimut@gateway/tor-sasl/azimut) (Ping timeout: 246 seconds) |
2023-09-07 23:49:01 +0200 | son0p | (~ff@186.121.39.74) (Quit: Bye) |
2023-09-07 23:51:38 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) (Ping timeout: 258 seconds) |
2023-09-07 23:53:10 +0200 | merijn | (~merijn@088-129-128-083.dynamic.caiway.nl) (Ping timeout: 258 seconds) |
2023-09-07 23:53:52 +0200 | immae | (~immae@2a01:4f8:141:53e7::) (Quit: WeeChat 3.3) |
2023-09-07 23:56:24 +0200 | gmg | (~user@user/gehmehgeh) (Quit: Leaving) |
2023-09-07 23:56:34 +0200 | bratwurst | (~blaadsfa@2604:3d09:207f:f650:216:3eff:fe5a:a1f8) |