Logs: freenode/#haskell
| 2021-03-27 14:00:53 | → | merijn joins (~merijn@83-160-49-249.ip.xs4all.nl) |
| 2021-03-27 14:02:39 | × | kav quits (~kari@dsl-hkibng42-56733f-225.dhcp.inet.fi) (Ping timeout: 265 seconds) |
| 2021-03-27 14:04:26 | × | Guest88512 quits (~textual@2603-7000-3040-0000-b985-54e1-77ea-63be.res6.spectrum.com) (Ping timeout: 258 seconds) |
| 2021-03-27 14:05:56 | → | ryxai joins (~textual@pool-71-183-41-241.nycmny.fios.verizon.net) |
| 2021-03-27 14:06:40 | → | molehillish joins (~molehilli@2600:8800:8d06:1800:f8ba:265:7129:d312) |
| 2021-03-27 14:08:49 | × | lampowner quits (~xblow@2a02:2168:b03:3b74::1) (Remote host closed the connection) |
| 2021-03-27 14:10:46 | × | hiroaki quits (~hiroaki@2a02:8108:8c40:2bb8:586e:5159:6fa7:bad0) (Ping timeout: 240 seconds) |
| 2021-03-27 14:11:09 | × | molehillish quits (~molehilli@2600:8800:8d06:1800:f8ba:265:7129:d312) (Ping timeout: 250 seconds) |
| 2021-03-27 14:11:55 | × | ryxai quits (~textual@pool-71-183-41-241.nycmny.fios.verizon.net) (Quit: Textual IRC Client: www.textualapp.com) |
| 2021-03-27 14:13:08 | × | Pickchea quits (~private@unaffiliated/pickchea) (Ping timeout: 246 seconds) |
| 2021-03-27 14:15:01 | <peanut_> | what is a function type constructor |
| 2021-03-27 14:15:19 | × | Kaiepi quits (~Kaiepi@47.54.252.148) (Remote host closed the connection) |
| 2021-03-27 14:17:52 | × | Varis quits (~Tadas@unaffiliated/varis) (Remote host closed the connection) |
| 2021-03-27 14:19:32 | → | Alleria__ joins (~textual@mskresolve-a.mskcc.org) |
| 2021-03-27 14:23:12 | → | hiroaki joins (~hiroaki@2a02:8108:8c40:2bb8:48b8:55e3:ebc5:16b6) |
| 2021-03-27 14:25:38 | × | zebrag quits (~inkbottle@aaubervilliers-654-1-98-245.w86-212.abo.wanadoo.fr) (Quit: Konversation terminated!) |
| 2021-03-27 14:26:19 | → | zebrag joins (~inkbottle@aaubervilliers-654-1-98-245.w86-212.abo.wanadoo.fr) |
| 2021-03-27 14:26:43 | → | kritzefitz joins (~kritzefit@212.86.56.80) |
| 2021-03-27 14:28:09 | <cjay> | peanut_: (->) in type signatures I think |
| 2021-03-27 14:29:01 | <peanut_> | :t map |
| 2021-03-27 14:29:03 | <lambdabot> | (a -> b) -> [a] -> [b] |
| 2021-03-27 14:29:12 | <peanut_> | like that (a -> b)? |
| 2021-03-27 14:29:44 | <cjay> | that is a function type, the function type constructor applied to two type variables |
| 2021-03-27 14:29:44 | <peanut_> | though i think thats just a function type |
| 2021-03-27 14:29:57 | × | rayyyy quits (~nanoz@gateway/tor-sasl/nanoz) (Remote host closed the connection) |
| 2021-03-27 14:30:03 | <cjay> | :kind (->) |
| 2021-03-27 14:30:10 | <cjay> | :t (->) |
| 2021-03-27 14:30:12 | <lambdabot> | error: parse error on input ‘->’ |
| 2021-03-27 14:30:30 | cjay | slaps lambdabot |
| 2021-03-27 14:30:38 | <peanut_> | lol |
| 2021-03-27 14:30:43 | <cjay> | ghci can do :kind |
| 2021-03-27 14:30:51 | <enikar> | % :kind (->) |
| 2021-03-27 14:30:51 | <yahb> | enikar: * -> * -> * |
| 2021-03-27 14:32:07 | → | mrchampion joins (~mrchampio@38.18.109.23) |
| 2021-03-27 14:32:28 | <enikar> | yahb works is a ghci :) |
| 2021-03-27 14:32:35 | <peanut_> | ooh its straight up just "(->)" |
| 2021-03-27 14:32:50 | <peanut_> | that makes more sense now, thanks |
| 2021-03-27 14:32:52 | <enikar> | oops s/works// |
| 2021-03-27 14:32:59 | <cjay> | :) |
| 2021-03-27 14:34:36 | × | s00pcan quits (~chris@075-133-056-178.res.spectrum.com) (Ping timeout: 260 seconds) |
| 2021-03-27 14:34:39 | × | tromp quits (~tromp@dhcp-077-249-230-040.chello.nl) (Remote host closed the connection) |
| 2021-03-27 14:34:43 | → | frozenErebus joins (~frozenEre@37.231.244.249) |
| 2021-03-27 14:34:46 | × | merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 240 seconds) |
| 2021-03-27 14:37:14 | <cjay> | Man, I wonder what was going on in the heads of whoever made unliftio. The safe-exceptions package of the same company has a catchAsync, and they admit themselves that it is needed in the README. But UnliftIO.Exception just omits any way to catch async exceptions. |
| 2021-03-27 14:37:29 | <cjay> | so weird |
| 2021-03-27 14:37:44 | → | malumore joins (~malumore@151.62.126.8) |
| 2021-03-27 14:38:18 | <cjay> | unlifting the catch from base manually is easy, but omitting it suggests that one should not be using it, which as far as I understand it, is just wrong |
| 2021-03-27 14:42:46 | hackage | math-functions 0.3.4.2 - Collection of tools for numeric computations https://hackage.haskell.org/package/math-functions-0.3.4.2 (AlexeyKhudyakov) |
| 2021-03-27 14:44:16 | → | urodna joins (~urodna@unaffiliated/urodna) |
| 2021-03-27 14:45:33 | × | elfets quits (~elfets@ip-37-201-23-96.hsi13.unitymediagroup.de) (Read error: Connection reset by peer) |
| 2021-03-27 14:49:01 | × | hc quits (~hc@fsfe/hc) (Quit: leaving) |
| 2021-03-27 14:49:09 | × | frozenErebus quits (~frozenEre@37.231.244.249) (Ping timeout: 268 seconds) |
| 2021-03-27 14:50:17 | → | hc joins (~hc@fsfe/hc) |
| 2021-03-27 14:51:47 | × | ajc quits (~ajc@69.231.232.79) (Remote host closed the connection) |
| 2021-03-27 14:52:12 | → | ajc joins (~ajc@69.231.232.79) |
| 2021-03-27 14:54:05 | → | Pickchea joins (~private@unaffiliated/pickchea) |
| 2021-03-27 14:56:56 | × | kritzefitz quits (~kritzefit@212.86.56.80) (Ping timeout: 252 seconds) |
| 2021-03-27 14:57:29 | × | acidjnk_new quits (~acidjnk@p200300d0c72b9512d8aaf3880c64deb7.dip0.t-ipconnect.de) (Ping timeout: 245 seconds) |
| 2021-03-27 14:57:49 | → | frozenErebus joins (~frozenEre@37.231.244.249) |
| 2021-03-27 15:04:40 | → | carlomagno joins (~cararell@148.87.23.11) |
| 2021-03-27 15:07:16 | hackage | slick 1.1.1.0 - A quick & easy static site builder built with shake and pandoc. https://hackage.haskell.org/package/slick-1.1.1.0 (ChrisPenner) |
| 2021-03-27 15:10:06 | → | merijn joins (~merijn@83-160-49-249.ip.xs4all.nl) |
| 2021-03-27 15:10:58 | → | tromp joins (~tromp@dhcp-077-249-230-040.chello.nl) |
| 2021-03-27 15:16:07 | × | tromp quits (~tromp@dhcp-077-249-230-040.chello.nl) (Read error: Connection reset by peer) |
| 2021-03-27 15:16:48 | → | tromp joins (~tromp@dhcp-077-249-230-040.chello.nl) |
| 2021-03-27 15:16:48 | × | merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 246 seconds) |
| 2021-03-27 15:16:50 | → | Varis joins (~Tadas@unaffiliated/varis) |
| 2021-03-27 15:20:58 | × | tromp quits (~tromp@dhcp-077-249-230-040.chello.nl) (Ping timeout: 240 seconds) |
| 2021-03-27 15:21:09 | → | geowiesnot joins (~user@87-89-181-157.abo.bbox.fr) |
| 2021-03-27 15:21:21 | → | mouseghost joins (~draco@87-206-9-185.dynamic.chello.pl) |
| 2021-03-27 15:21:22 | × | mouseghost quits (~draco@87-206-9-185.dynamic.chello.pl) (Changing host) |
| 2021-03-27 15:21:22 | → | mouseghost joins (~draco@wikipedia/desperek) |
| 2021-03-27 15:21:28 | → | tromp joins (~tromp@dhcp-077-249-230-040.chello.nl) |
| 2021-03-27 15:25:37 | × | zebrag quits (~inkbottle@aaubervilliers-654-1-98-245.w86-212.abo.wanadoo.fr) (Quit: Konversation terminated!) |
| 2021-03-27 15:25:59 | → | zebrag joins (~inkbottle@aaubervilliers-654-1-98-245.w86-212.abo.wanadoo.fr) |
| 2021-03-27 15:26:57 | → | s00pcan joins (~chris@075-133-056-178.res.spectrum.com) |
| 2021-03-27 15:27:52 | × | jlamothe quits (~jlamothe@198.251.55.207) (Quit: leaving) |
| 2021-03-27 15:28:26 | × | raym quits (~ray@115.187.32.14) (Quit: leaving) |
| 2021-03-27 15:28:38 | × | geowiesnot quits (~user@87-89-181-157.abo.bbox.fr) (Ping timeout: 240 seconds) |
| 2021-03-27 15:31:34 | → | tzh joins (~tzh@c-24-21-73-154.hsd1.wa.comcast.net) |
| 2021-03-27 15:33:21 | <maerwald> | How would one construct a filepath according to the abstract filepath proposal from a ByteString. On Unix you have two choices: `id` or a random encoding (utf8). On Windows, you must encode as utf16LE (ascii is a possibility too, but MS is deprecating those syscalls afaiu) |
| 2021-03-27 15:34:09 | → | star_cloud joins (~star_clou@ec2-34-220-44-120.us-west-2.compute.amazonaws.com) |
| 2021-03-27 15:34:14 | <maerwald> | it seems you could go for id for unix and lenientDecode on windows, but that doesn't seem well defined either |
| 2021-03-27 15:34:57 | <maerwald> | Maybe FilePath -- seems ridiculous, when it can only fail on one platform |
| 2021-03-27 15:35:30 | → | jophish joins (~jophish@li1766-207.members.linode.com) |
| 2021-03-27 15:37:07 | → | borne joins (~fritjof@200116b8640fd800f7ed9fd86a2491f0.dip.versatel-1u1.de) |
| 2021-03-27 15:37:47 | → | gxt joins (~gxt@gateway/tor-sasl/gxt) |
| 2021-03-27 15:38:24 | → | tpefreedom joins (~tsomers@184-157-240-110.dyn.centurytel.net) |
| 2021-03-27 15:41:18 | × | frozenErebus quits (~frozenEre@37.231.244.249) (Ping timeout: 240 seconds) |
| 2021-03-27 15:42:42 | → | apeyroux joins (~alex@78.20.138.88.rev.sfr.net) |
| 2021-03-27 15:42:45 | × | apeyroux quits (~alex@78.20.138.88.rev.sfr.net) (Client Quit) |
| 2021-03-27 15:47:40 | → | ddellacosta joins (~ddellacos@ool-44c73afa.dyn.optonline.net) |
| 2021-03-27 15:47:51 | → | jlamothe joins (~jlamothe@198.251.55.207) |
| 2021-03-27 15:50:35 | → | merijn joins (~merijn@83-160-49-249.ip.xs4all.nl) |
| 2021-03-27 15:50:58 | → | cole-h joins (~cole-h@c-73-48-197-220.hsd1.ca.comcast.net) |
| 2021-03-27 15:50:58 | → | kiweun joins (~kiweun@2607:fea8:2a62:9600:31a8:b768:9c51:16bb) |
| 2021-03-27 15:52:58 | × | ddellacosta quits (~ddellacos@ool-44c73afa.dyn.optonline.net) (Remote host closed the connection) |
| 2021-03-27 15:53:18 | × | conal quits (~conal@192.145.118.89) (Quit: Computer has gone to sleep.) |
| 2021-03-27 15:54:36 | → | ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta) |
| 2021-03-27 15:54:38 | × | star_cloud quits (~star_clou@ec2-34-220-44-120.us-west-2.compute.amazonaws.com) (Ping timeout: 240 seconds) |
All times are in UTC.