Logs: freenode/#haskell
| 2021-04-02 03:48:57 | × | Jd007 quits (~Jd007@162.156.11.151) (Quit: Jd007) |
| 2021-04-02 03:48:57 | × | fosterite quits (~fosterite@2600:6c46:7800:fecf:a922:8eee:4a67:e896) (Read error: Connection reset by peer) |
| 2021-04-02 03:49:36 | → | fosterite joins (~fosterite@2600:6c46:7800:fecf:a922:8eee:4a67:e896) |
| 2021-04-02 03:52:23 | × | alx741 quits (~alx741@181.196.69.168) (Quit: alx741) |
| 2021-04-02 03:54:29 | → | __minoru__shirae joins (~shiraeesh@109.166.58.127) |
| 2021-04-02 03:54:53 | × | fosterite quits (~fosterite@2600:6c46:7800:fecf:a922:8eee:4a67:e896) (Ping timeout: 258 seconds) |
| 2021-04-02 03:56:43 | → | Jd007 joins (~Jd007@162.156.11.151) |
| 2021-04-02 03:59:11 | × | machinedgod quits (~machinedg@24.105.81.50) (Ping timeout: 240 seconds) |
| 2021-04-02 04:00:41 | × | conal quits (~conal@192.145.118.115) (Ping timeout: 240 seconds) |
| 2021-04-02 04:02:02 | <hololeap> | is it better to put `ghc-options: -Wall -Wcompat` in cabal.project.local, cabal.project, or the .cabal file itself? |
| 2021-04-02 04:03:46 | → | moet joins (~moet@172.58.35.224) |
| 2021-04-02 04:03:53 | <hololeap> | i suppose cabal.project wouldn't be a good place |
| 2021-04-02 04:05:04 | → | merijn joins (~merijn@83-160-49-249.ip.xs4all.nl) |
| 2021-04-02 04:07:18 | → | justsomeguy joins (~justsomeg@unaffiliated/--/x-3805311) |
| 2021-04-02 04:07:32 | → | notzmv joins (~zmv@unaffiliated/zmv) |
| 2021-04-02 04:09:53 | <edwardk> | I put -Wall in the .cabal file usually |
| 2021-04-02 04:10:42 | → | conal joins (~conal@192.145.118.233) |
| 2021-04-02 04:11:16 | × | molehillish quits (~molehilli@2600:8800:8d06:1800:49e2:dd02:cb68:846) (Remote host closed the connection) |
| 2021-04-02 04:11:36 | × | nrh^ quits (nrh@ip98-184-89-2.mc.at.cox.net) () |
| 2021-04-02 04:15:02 | <hololeap> | i was looking at the list here, and wondered if it made sense to ship all those extra warnings with the repo, or keep it local: https://medium.com/mercury-bank/enable-all-the-warnings-a0517bc081c3 |
| 2021-04-02 04:15:18 | <hololeap> | (just in general) |
| 2021-04-02 04:15:20 | → | caef^ joins (caef@ip98-184-89-2.mc.at.cox.net) |
| 2021-04-02 04:15:30 | → | asdfghjkl100 joins (49336fc4@c-73-51-111-196.hsd1.il.comcast.net) |
| 2021-04-02 04:17:24 | → | plakband joins (~plakband@softbank126227040096.bbtec.net) |
| 2021-04-02 04:20:33 | × | plakband quits (~plakband@softbank126227040096.bbtec.net) (Client Quit) |
| 2021-04-02 04:21:33 | <monochrom> | cabal.project.local if you want it a personal setting |
| 2021-04-02 04:22:07 | × | astroanax quits (~astroanax@cosmic.voyage) (Quit: WeeChat 3.2-dev) |
| 2021-04-02 04:23:40 | <moet> | how can i write into a repa array? |
| 2021-04-02 04:24:11 | → | elliott_ joins (~elliott@pool-108-51-101-42.washdc.fios.verizon.net) |
| 2021-04-02 04:29:27 | → | fosterite joins (~fosterite@2600:6c46:7800:fecf:a922:8eee:4a67:e896) |
| 2021-04-02 04:34:42 | <hololeap> | moet: looks like it depends on the representation |
| 2021-04-02 04:35:02 | <hololeap> | e.g. Data.Array.Repa.Unboxed.fromUnboxed |
| 2021-04-02 04:35:03 | × | fosterite quits (~fosterite@2600:6c46:7800:fecf:a922:8eee:4a67:e896) (Ping timeout: 250 seconds) |
| 2021-04-02 04:37:28 | <moet> | hololeap: I don't think that function allows me to write into a repa array, it just allows construction of an array from a shape & vector |
| 2021-04-02 04:38:18 | <moet> | thanks |
| 2021-04-02 04:39:09 | × | merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 265 seconds) |
| 2021-04-02 04:39:29 | <hololeap> | moet: unsafeWriteMVec ? i've never used the library fwiw |
| 2021-04-02 04:39:35 | <hololeap> | it looks confusing |
| 2021-04-02 04:42:15 | → | SLNP joins (~SLNP@195.140.213.38) |
| 2021-04-02 04:42:57 | <moet> | i think MVec isn't the right approach either. it seems to be a bespoke type for a single purpose, not related to the goal of mutating elements in an Array |
| 2021-04-02 04:43:10 | <moet> | no problem; i found some people on SO saying that it's basically not supported |
| 2021-04-02 04:47:36 | × | matryoshka quits (~matryoshk@2606:6080:1002:8:3285:30e:de43:8809) (Ping timeout: 246 seconds) |
| 2021-04-02 04:48:24 | → | hexfive joins (~hexfive@50.35.83.177) |
| 2021-04-02 04:51:32 | × | hexfive quits (~hexfive@50.35.83.177) (Client Quit) |
| 2021-04-02 04:54:16 | → | fosterite joins (~fosterite@2600:6c46:7800:fecf:f009:c5a6:bc28:3e60) |
| 2021-04-02 04:54:38 | × | elliott_ quits (~elliott@pool-108-51-101-42.washdc.fios.verizon.net) (Ping timeout: 240 seconds) |
| 2021-04-02 04:58:54 | × | fosterite quits (~fosterite@2600:6c46:7800:fecf:f009:c5a6:bc28:3e60) (Ping timeout: 258 seconds) |
| 2021-04-02 04:59:12 | → | DTZUZU joins (~DTZUZO@205.ip-149-56-132.net) |
| 2021-04-02 05:01:38 | × | DTZUZU_ quits (~DTZUZO@207.81.119.43) (Ping timeout: 246 seconds) |
| 2021-04-02 05:02:43 | → | ddellaco_ joins (~ddellacos@ool-44c73afa.dyn.optonline.net) |
| 2021-04-02 05:04:51 | × | hpc quits (~juzz@ip98-169-35-13.dc.dc.cox.net) (Ping timeout: 258 seconds) |
| 2021-04-02 05:06:12 | → | hpc joins (~juzz@ip98-169-35-13.dc.dc.cox.net) |
| 2021-04-02 05:07:16 | × | solvr quits (57e3c46d@87.227.196.109) (Quit: Connection closed) |
| 2021-04-02 05:10:11 | × | ddellaco_ quits (~ddellacos@ool-44c73afa.dyn.optonline.net) (Ping timeout: 240 seconds) |
| 2021-04-02 05:12:01 | × | arahael quits (~arahael@121-44-10-207.tpgi.com.au) (Quit: "Rebooting tmux!") |
| 2021-04-02 05:13:07 | → | arahael joins (~arahael@121-44-10-207.tpgi.com.au) |
| 2021-04-02 05:15:19 | × | ezrakilty quits (~ezrakilty@97-126-95-37.tukw.qwest.net) (Remote host closed the connection) |
| 2021-04-02 05:15:41 | × | pavonia quits (~user@unaffiliated/siracusa) (Ping timeout: 240 seconds) |
| 2021-04-02 05:16:58 | → | pavonia joins (~user@unaffiliated/siracusa) |
| 2021-04-02 05:17:43 | × | eruditass quits (uid248673@gateway/web/irccloud.com/x-nzructhhtvyozyez) (Quit: Connection closed for inactivity) |
| 2021-04-02 05:19:33 | × | elusive quits (~Jeanne-Ka@static-198-54-134-72.cust.tzulo.com) (Quit: Leaving) |
| 2021-04-02 05:22:15 | × | ajc quits (~ajc@69.231.232.79) (Ping timeout: 246 seconds) |
| 2021-04-02 05:22:32 | × | ajc_ quits (~ajc@69.231.232.79) (Ping timeout: 268 seconds) |
| 2021-04-02 05:29:45 | → | takuan joins (~takuan@178-116-218-225.access.telenet.be) |
| 2021-04-02 05:30:43 | → | v01d4lph4 joins (~v01d4lph4@223.190.20.92) |
| 2021-04-02 05:36:01 | <hololeap> | it seems strange to me that -Wprepositive-qualified-module exists |
| 2021-04-02 05:36:26 | × | stree quits (~stree@68.36.8.116) (Ping timeout: 240 seconds) |
| 2021-04-02 05:37:07 | <hololeap> | what makes `import M qualified` better? |
| 2021-04-02 05:37:15 | × | vicfred quits (~vicfred@unaffiliated/vicfred) (Quit: Leaving) |
| 2021-04-02 05:39:13 | → | plutoniix joins (~q@ppp-223-24-155-53.revip6.asianet.co.th) |
| 2021-04-02 05:39:19 | → | doraemon joins (~doraemon@117.222.66.9) |
| 2021-04-02 05:40:37 | → | solvr joins (57e3c46d@87.227.196.109) |
| 2021-04-02 05:41:15 | → | codygman__ joins (~user@47.186.207.161) |
| 2021-04-02 05:44:55 | × | codygman__ quits (~user@47.186.207.161) (Remote host closed the connection) |
| 2021-04-02 05:45:17 | → | codygman__ joins (~user@47.186.207.161) |
| 2021-04-02 05:45:56 | → | molehillish joins (~molehilli@2600:8800:8d06:1800:49e2:dd02:cb68:846) |
| 2021-04-02 05:46:11 | × | v01d4lph4 quits (~v01d4lph4@223.190.20.92) (Ping timeout: 240 seconds) |
| 2021-04-02 05:46:12 | <remexre> | I guess module names now line up? |
| 2021-04-02 05:46:43 | <remexre> | if I'm reading https://cdn.remexre.xyz/screenshots/a4a4a9a7a334e817a47280455ba906d8e6221c3c.png my eyes are going back and forth when reading module names |
| 2021-04-02 05:46:43 | → | eell joins (~eell@ip68-228-88-197.oc.oc.cox.net) |
| 2021-04-02 05:47:19 | × | eell quits (~eell@ip68-228-88-197.oc.oc.cox.net) (Client Quit) |
| 2021-04-02 05:47:53 | → | eell joins (~eell@ip68-228-88-197.oc.oc.cox.net) |
| 2021-04-02 05:48:33 | → | eell2 joins (~eell@ip68-228-88-197.oc.oc.cox.net) |
| 2021-04-02 05:49:10 | → | stree joins (~stree@68.36.8.116) |
| 2021-04-02 05:55:27 | × | SLNP quits (~SLNP@195.140.213.38) (Remote host closed the connection) |
| 2021-04-02 05:55:38 | × | codygman__ quits (~user@47.186.207.161) (Remote host closed the connection) |
| 2021-04-02 05:57:14 | × | nbloomf quits (~nbloomf@2600:1700:ad14:3020:c8ca:5fa3:40f5:5b78) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2021-04-02 05:58:27 | × | plutoniix quits (~q@ppp-223-24-155-53.revip6.asianet.co.th) (Quit: Leaving) |
| 2021-04-02 06:00:21 | × | doraemon quits (~doraemon@117.222.66.9) (Ping timeout: 265 seconds) |
| 2021-04-02 06:09:09 | × | average quits (uid473595@gateway/web/irccloud.com/x-iajetmultxvekhqd) (Quit: Connection closed for inactivity) |
| 2021-04-02 06:11:16 | × | eell2 quits (~eell@ip68-228-88-197.oc.oc.cox.net) (Quit: Leaving) |
| 2021-04-02 06:11:16 | × | eell quits (~eell@ip68-228-88-197.oc.oc.cox.net) (Quit: Leaving) |
| 2021-04-02 06:20:06 | → | alorente joins (~alorente@185.204.1.185) |
| 2021-04-02 06:30:26 | → | DTZUZU_ joins (~DTZUZO@207.81.119.43) |
| 2021-04-02 06:32:44 | × | DTZUZU quits (~DTZUZO@205.ip-149-56-132.net) (Ping timeout: 265 seconds) |
| 2021-04-02 06:35:42 | → | merijn joins (~merijn@83-160-49-249.ip.xs4all.nl) |
| 2021-04-02 06:37:07 | <hololeap> | yeah that was the only thing i could think of. i would prefer it although adding another extension for it seems a bit overkill |
| 2021-04-02 06:38:31 | × | molehillish quits (~molehilli@2600:8800:8d06:1800:49e2:dd02:cb68:846) (Remote host closed the connection) |
| 2021-04-02 06:39:40 | → | molehillish joins (~molehilli@2600:8800:8d06:1800:49e2:dd02:cb68:846) |
| 2021-04-02 06:40:59 | × | Tario quits (~Tario@201.192.165.173) (Ping timeout: 252 seconds) |
All times are in UTC.