Logs: freenode/#haskell
| 2021-04-15 12:13:07 | → | xff0x joins (~xff0x@2001:1a81:5212:400:5254:5969:59c7:5023) |
| 2021-04-15 12:14:41 | × | geowiesnot quits (~user@i15-les02-ix2-87-89-181-157.sfr.lns.abo.bbox.fr) (Ping timeout: 260 seconds) |
| 2021-04-15 12:18:19 | → | frozenErebus joins (~frozenEre@37.231.244.249) |
| 2021-04-15 12:20:51 | <kuribas> | I found a solution for my problem of how to create forms. |
| 2021-04-15 12:21:12 | <kuribas> | Because some forms may depend on other forms, but they still need to be known statically. |
| 2021-04-15 12:21:23 | <kuribas> | So it isn't a Monad, but also not an Applicative either. |
| 2021-04-15 12:21:27 | → | Stanley00 joins (~stanley00@unaffiliated/stanley00) |
| 2021-04-15 12:21:29 | × | Stanley00 quits (~stanley00@unaffiliated/stanley00) (Remote host closed the connection) |
| 2021-04-15 12:21:53 | <kuribas> | They idea is to have a "form-builder" Monad, where you can register forms, then using the registered forms to specify the dependencies (as an applicative). |
| 2021-04-15 12:22:21 | <kuribas> | the form-builder then can assign unique IDs for each form. |
| 2021-04-15 12:23:27 | × | aVikingTrex quits (~aVikingTr@2001:8003:340d:d00:b2de:b98:7a93:b0ea) (Ping timeout: 260 seconds) |
| 2021-04-15 12:24:02 | → | Stanley00 joins (~stanley00@unaffiliated/stanley00) |
| 2021-04-15 12:25:10 | × | bitdex quits (~bitdex@gateway/tor-sasl/bitdex) (Quit: = "") |
| 2021-04-15 12:26:16 | × | Stanley00 quits (~stanley00@unaffiliated/stanley00) (Client Quit) |
| 2021-04-15 12:27:35 | → | rond_ joins (5940206b@89-64-32-107.dynamic.chello.pl) |
| 2021-04-15 12:28:03 | → | Franciman joins (~francesco@host-212-171-46-208.pool212171.interbusiness.it) |
| 2021-04-15 12:28:13 | → | xkapastel joins (uid17782@gateway/web/irccloud.com/x-eeudlqiuuwrtzpbi) |
| 2021-04-15 12:28:15 | <Franciman> | Hi all, I have a problem with servant-to-elm |
| 2021-04-15 12:28:21 | <Franciman> | it generates elm code that does not compile |
| 2021-04-15 12:28:25 | <Franciman> | because of an indentation issue |
| 2021-04-15 12:28:33 | <Franciman> | have you experienced something similar? |
| 2021-04-15 12:29:07 | × | Alleria_ quits (~AllahuAkb@2603-7000-3040-0000-ac34-8d7e-1853-75bb.res6.spectrum.com) (Ping timeout: 250 seconds) |
| 2021-04-15 12:29:24 | → | ddellacosta joins (ddellacost@gateway/vpn/mullvad/ddellacosta) |
| 2021-04-15 12:30:02 | → | dcoutts__ joins (~duncan@94.186.125.91.dyn.plus.net) |
| 2021-04-15 12:31:38 | <Uniaika> | .2 |
| 2021-04-15 12:31:41 | × | mikoto-chan quits (~anass@gateway/tor-sasl/mikoto-chan) (Quit: mikoto-chan) |
| 2021-04-15 12:32:02 | → | mikoto-chan joins (~anass@gateway/tor-sasl/mikoto-chan) |
| 2021-04-15 12:33:35 | × | ddellacosta quits (ddellacost@gateway/vpn/mullvad/ddellacosta) (Ping timeout: 246 seconds) |
| 2021-04-15 12:35:36 | × | Guest_98 quits (6c1020d6@pool-108-16-32-214.phlapa.fios.verizon.net) (Quit: Ping timeout (120 seconds)) |
| 2021-04-15 12:38:03 | × | rond_ quits (5940206b@89-64-32-107.dynamic.chello.pl) (Quit: Connection closed) |
| 2021-04-15 12:40:24 | × | v01d4lph4 quits (~v01d4lph4@122.160.65.250) (Remote host closed the connection) |
| 2021-04-15 12:41:30 | × | BosonCollider quits (~olofs@90-227-86-119-no542.tbcn.telia.com) (Ping timeout: 265 seconds) |
| 2021-04-15 12:42:21 | × | mikoto-chan quits (~anass@gateway/tor-sasl/mikoto-chan) (Ping timeout: 240 seconds) |
| 2021-04-15 12:43:17 | → | mikoto-chan joins (~anass@gateway/tor-sasl/mikoto-chan) |
| 2021-04-15 12:48:44 | → | timCF joins (~i.tkachuk@200-149-20-81.sta.estpak.ee) |
| 2021-04-15 12:49:15 | → | Alleria_ joins (~AllahuAkb@69.202.254.168) |
| 2021-04-15 12:49:54 | → | geekosaur joins (930099da@rrcs-147-0-153-218.central.biz.rr.com) |
| 2021-04-15 12:52:47 | → | slack1256 joins (~slack1256@191.113.234.51) |
| 2021-04-15 12:53:11 | × | fiedlr quits (~fiedlr@83.148.33.254) (Remote host closed the connection) |
| 2021-04-15 12:55:40 | <timCF> | Hello! Is there some well-known generic Text-like type which can represent errors in complex business logic, where the most functions are returning something like `ExceptT Text m a`. Text is not very flexible in cases where sensitive data might be involved, and should be shown only in some particular cases. Basically I want to replace Text with something like `Error {errorSensitive :: Text, |
| 2021-04-15 12:55:41 | × | sord937 quits (~sord937@gateway/tor-sasl/sord937) (Quit: sord937) |
| 2021-04-15 12:55:46 | <timCF> | errorInsensitive :: Text, errorShowSensitive :: Bool}` and implement manually `Show` instance for this type. Just thinking, maybe I'm re-inventing the wheel and such thing/pattern already exists somewhere. |
| 2021-04-15 12:56:25 | × | andreas303 quits (~andreas@gateway/tor-sasl/andreas303) (Remote host closed the connection) |
| 2021-04-15 12:57:00 | → | andreas303 joins (~andreas@gateway/tor-sasl/andreas303) |
| 2021-04-15 12:57:21 | → | graf_blutwurst joins (~user@2001:171b:226e:adc0:24b2:5439:95f2:6db1) |
| 2021-04-15 12:57:23 | × | Natch quits (~natch@c-e070e255.014-297-73746f25.bbcust.telenor.se) (Ping timeout: 246 seconds) |
| 2021-04-15 12:57:35 | → | BosonCollider joins (~olofs@90-227-86-119-no542.tbcn.telia.com) |
| 2021-04-15 13:00:01 | → | Natch joins (~Natch@c-e070e255.014-297-73746f25.bbcust.telenor.se) |
| 2021-04-15 13:00:54 | × | raichoo quits (~raichoo@dslb-088-077-024-130.088.077.pools.vodafone-ip.de) (Quit: Lost terminal) |
| 2021-04-15 13:01:16 | <kuribas> | timCF: seems easy enough to define |
| 2021-04-15 13:01:43 | → | jamm_ joins (~jamm@unaffiliated/jamm) |
| 2021-04-15 13:04:16 | → | nicholasbulka joins (~nicholasb@2601:900:4301:da0:34df:482b:a0b7:2d77) |
| 2021-04-15 13:04:24 | → | hyperisco joins (~hyperisco@d192-186-117-226.static.comm.cgocable.net) |
| 2021-04-15 13:05:29 | × | Alleria_ quits (~AllahuAkb@69.202.254.168) (Ping timeout: 260 seconds) |
| 2021-04-15 13:06:05 | → | ddellaco_ joins (~ddellacos@ool-44c73afa.dyn.optonline.net) |
| 2021-04-15 13:09:56 | <tdammers> | Franciman: maybe the Elm compiler has been changed? |
| 2021-04-15 13:10:21 | <Franciman> | the docs say that the library is compatible with elm 0.19 |
| 2021-04-15 13:10:25 | <Franciman> | now I use elm 0.19.2 |
| 2021-04-15 13:10:36 | <Franciman> | will a minor version bump cause so much havoc? |
| 2021-04-15 13:10:46 | <tdammers> | with elm, anything's possible |
| 2021-04-15 13:10:49 | <Franciman> | oh I see |
| 2021-04-15 13:10:50 | <aforemny> | Franciman: Maybe as a work-around you could run elm-format on the resulting elm files? Maybe elm-format is able to fix the indentation issue. |
| 2021-04-15 13:11:02 | <Franciman> | that is a terrific idea |
| 2021-04-15 13:11:03 | <Franciman> | thanks |
| 2021-04-15 13:11:06 | <aforemny> | Franciman: There are no syntax changes from 0.19.0 to 0.19.2 as far as I know |
| 2021-04-15 13:11:29 | <Franciman> | is this elm format: https://github.com/avh4/elm-format ? |
| 2021-04-15 13:11:36 | <aforemny> | Franciman: Yes |
| 2021-04-15 13:11:45 | <Franciman> | thanks |
| 2021-04-15 13:12:00 | <aforemny> | Franciman: Hope it works! :fingerscrossed: |
| 2021-04-15 13:14:32 | <L29Ah> | is it me or ghc build system breaks if i build it with make -j9? |
| 2021-04-15 13:14:53 | × | idhugo quits (~idhugo@87-49-147-45-mobile.dk.customer.tdc.net) (Ping timeout: 246 seconds) |
| 2021-04-15 13:15:33 | × | Mrbuck quits (~Mrbuck@gateway/tor-sasl/mrbuck) (Ping timeout: 240 seconds) |
| 2021-04-15 13:15:45 | → | esp32_prog joins (~esp32_pro@37.120.201.122) |
| 2021-04-15 13:17:05 | × | nicholasbulka quits (~nicholasb@2601:900:4301:da0:34df:482b:a0b7:2d77) (Remote host closed the connection) |
| 2021-04-15 13:17:12 | → | carlomagno joins (~cararell@148.87.23.7) |
| 2021-04-15 13:17:18 | → | nicholasbulka joins (~nicholasb@2601:900:4301:da0:34df:482b:a0b7:2d77) |
| 2021-04-15 13:19:20 | → | Mrbuck joins (~Mrbuck@gateway/tor-sasl/mrbuck) |
| 2021-04-15 13:20:39 | → | Alleria_ joins (~AllahuAkb@2603-7000-3040-0000-1861-6f3f-b8b6-91aa.res6.spectrum.com) |
| 2021-04-15 13:21:02 | → | HannaM joins (~quassel@p54849510.dip0.t-ipconnect.de) |
| 2021-04-15 13:22:23 | × | geekosaur quits (930099da@rrcs-147-0-153-218.central.biz.rr.com) (Quit: Connection closed) |
| 2021-04-15 13:22:33 | × | rprije quits (~rprije@59-102-63-15.tpgi.com.au) (Ping timeout: 240 seconds) |
| 2021-04-15 13:23:20 | → | idhugo joins (~idhugo@87-49-147-45-mobile.dk.customer.tdc.net) |
| 2021-04-15 13:25:36 | → | Sorny joins (~Sornaensi@077213199124.dynamic.telenor.dk) |
| 2021-04-15 13:25:37 | → | Tom53 joins (9ec25c49@158.194.92.73) |
| 2021-04-15 13:26:24 | → | nbloomf joins (~nbloomf@2600:1700:ad14:3020:c9cb:2da:a0e5:f567) |
| 2021-04-15 13:27:42 | × | Tom53 quits (9ec25c49@158.194.92.73) (Client Quit) |
| 2021-04-15 13:28:07 | × | ddellaco_ quits (~ddellacos@ool-44c73afa.dyn.optonline.net) (Remote host closed the connection) |
| 2021-04-15 13:28:13 | × | pavonia quits (~user@unaffiliated/siracusa) (Quit: Bye!) |
| 2021-04-15 13:28:25 | → | ddellaco_ joins (~ddellacos@ool-44c73afa.dyn.optonline.net) |
| 2021-04-15 13:28:31 | → | fiedlr joins (~fiedlr@83.148.33.254) |
| 2021-04-15 13:28:54 | × | nbloomf quits (~nbloomf@2600:1700:ad14:3020:c9cb:2da:a0e5:f567) (Client Quit) |
| 2021-04-15 13:29:51 | × | Sorna quits (~Sornaensi@79.142.232.102) (Ping timeout: 268 seconds) |
| 2021-04-15 13:32:55 | → | geekosaur joins (930099da@rrcs-147-0-153-218.central.biz.rr.com) |
| 2021-04-15 13:33:33 | × | gimps quits (~gimps@185.169.233.12) (Remote host closed the connection) |
| 2021-04-15 13:35:09 | × | gnumonic quits (~gnumonic@c-73-170-91-210.hsd1.ca.comcast.net) (Ping timeout: 265 seconds) |
| 2021-04-15 13:35:45 | → | ph88 joins (~ph88@ip5f5af6fd.dynamic.kabel-deutschland.de) |
| 2021-04-15 13:39:51 | × | Pickchea quits (~private@unaffiliated/pickchea) (Ping timeout: 260 seconds) |
| 2021-04-15 13:41:51 | × | timCF quits (~i.tkachuk@200-149-20-81.sta.estpak.ee) (Quit: leaving) |
| 2021-04-15 13:41:51 | <fendor> | L29Ah, I think you should rather ask that in #ghc? |
| 2021-04-15 13:42:51 | <L29Ah> | idk; > Please ask user questions in #haskell |
All times are in UTC.