Logs: liberachat/#haskell
| 2021-07-26 20:11:18 | → | roboguy__ joins (~roboguy_@2605:a601:ac0e:ae00:959f:1295:6730:1386) |
| 2021-07-26 20:12:41 | → | robogu___ joins (~roboguy_@136.37.123.186) |
| 2021-07-26 20:13:52 | × | phma_ quits (phma@2001:5b0:211b:f028:d413:7a65:5bfd:d581) (Read error: Connection reset by peer) |
| 2021-07-26 20:14:40 | × | roboguy_ quits (~roboguy_@2605:a601:ac0e:ae00:f433:8617:e8c3:dcbe) (Ping timeout: 272 seconds) |
| 2021-07-26 20:14:53 | × | robogu___ quits (~roboguy_@136.37.123.186) (Client Quit) |
| 2021-07-26 20:15:32 | × | roboguy__ quits (~roboguy_@2605:a601:ac0e:ae00:959f:1295:6730:1386) (Ping timeout: 245 seconds) |
| 2021-07-26 20:16:58 | → | mnrmnaugh joins (~mnrmnaugh@pool-96-252-87-182.bstnma.fios.verizon.net) |
| 2021-07-26 20:17:18 | → | hexfive joins (~eric@50.35.83.177) |
| 2021-07-26 20:18:55 | → | jmorris joins (uid433911@id-433911.stonehaven.irccloud.com) |
| 2021-07-26 20:20:22 | → | mr-red joins (~drd@93-39-151-19.ip76.fastwebnet.it) |
| 2021-07-26 20:20:32 | × | drd quits (~drd@2001:b07:a70:9f1f:1562:34de:f50f:77d4) (Ping timeout: 245 seconds) |
| 2021-07-26 20:22:30 | × | jco quits (~jco@213-64-226-9-no542.tbcn.telia.com) (Remote host closed the connection) |
| 2021-07-26 20:25:49 | <ixlun> | Is there a way to get a kind of intersperse concat, so that: a -> [[a]] -> [a] |
| 2021-07-26 20:26:05 | <maerwald> | I can't believe I'm fixing stack bugs now. |
| 2021-07-26 20:26:06 | × | Vajb quits (~Vajb@hag-jnsbng11-58c3a1-224.dhcp.inet.fi) (Remote host closed the connection) |
| 2021-07-26 20:26:21 | <ixlun> | e.g. intersperseConcat 0 [[1,2,3],[4,5,6],[7,8,9]] = [1,2,3,0,4,5,6,0,7,8,9]? |
| 2021-07-26 20:26:48 | <geekosaur> | :t intercalate |
| 2021-07-26 20:26:49 | <lambdabot> | [a] -> [[a]] -> [a] |
| 2021-07-26 20:27:24 | × | alecs quits (~alecs@151.62.33.211) (Quit: WeeChat 3.2) |
| 2021-07-26 20:27:34 | → | notzmv joins (~zmv@user/notzmv) |
| 2021-07-26 20:27:46 | <ixlun> | Aha |
| 2021-07-26 20:27:49 | × | lavaman quits (~lavaman@98.38.249.169) (Remote host closed the connection) |
| 2021-07-26 20:28:07 | <geekosaur> | > intercalate 0 [[1,2,3],[4,5,6],[7,8,9]] = [1,2,3,0,4,5,6,0,7,8,9] |
| 2021-07-26 20:28:07 | <geekosaur> | duh |
| 2021-07-26 20:28:07 | <geekosaur> | > intercalate 0 [[1,2,3],[4,5,6],[7,8,9]] |
| 2021-07-26 20:28:09 | <lambdabot> | error: |
| 2021-07-26 20:28:09 | <lambdabot> | • No instance for (Num [Integer]) |
| 2021-07-26 20:28:09 | <lambdabot> | arising from a use of ‘e_10123456789’ |
| 2021-07-26 20:28:09 | <lambdabot> | <hint>:1:42: error: parse error on input ‘=’ |
| 2021-07-26 20:28:10 | <Rembane> | Intergalactic planetary. |
| 2021-07-26 20:28:22 | → | lavaman joins (~lavaman@98.38.249.169) |
| 2021-07-26 20:28:57 | <geekosaur> | > intercalate [0] [[1,2,3],[4,5,6],[7,8,9]] |
| 2021-07-26 20:28:58 | <lambdabot> | [1,2,3,0,4,5,6,0,7,8,9] |
| 2021-07-26 20:29:04 | <geekosaur> | there we go |
| 2021-07-26 20:31:39 | → | justsomeguy joins (~justsomeg@user/justsomeguy) |
| 2021-07-26 20:31:46 | <xerox> | :t intersperse |
| 2021-07-26 20:31:47 | <lambdabot> | a -> [a] -> [a] |
| 2021-07-26 20:32:38 | → | Vajb joins (~Vajb@hag-jnsbng11-58c3a1-224.dhcp.inet.fi) |
| 2021-07-26 20:32:42 | × | lavaman quits (~lavaman@98.38.249.169) (Ping timeout: 240 seconds) |
| 2021-07-26 20:32:55 | → | mcglk_ joins (~mcglk@131.191.49.120) |
| 2021-07-26 20:32:56 | × | mcglk quits (~mcglk@131.191.49.120) (Read error: Connection reset by peer) |
| 2021-07-26 20:33:06 | <edrx> | sm: fantastic, thanks!!! =) |
| 2021-07-26 20:33:49 | ← | edrx parts (~Eduardo@2804:56c:d2fd:4c00:aca5:2e51:5bdd:e463) (Killed buffer) |
| 2021-07-26 20:37:40 | <sm> | thanks 🙏🏻 maerwald! |
| 2021-07-26 20:38:45 | <maerwald> | sm: well, so far they haven't merged any of my PRs... I guess they don't like me :p |
| 2021-07-26 20:39:43 | <maerwald> | sm: maybe make some noise for me https://github.com/commercialhaskell/stack/pull/5593 |
| 2021-07-26 20:39:46 | × | falafel quits (~falafel@pool-96-255-70-50.washdc.fios.verizon.net) (Ping timeout: 240 seconds) |
| 2021-07-26 20:39:48 | → | Deide joins (~Deide@217.155.19.23) |
| 2021-07-26 20:39:48 | × | Deide quits (~Deide@217.155.19.23) (Changing host) |
| 2021-07-26 20:39:48 | → | Deide joins (~Deide@user/deide) |
| 2021-07-26 20:39:52 | <maerwald> | like "omg, this is what we needed" |
| 2021-07-26 20:40:16 | <sm> | maerwald: oh well, are you fixing bugs or proposing features ? |
| 2021-07-26 20:40:26 | <maerwald> | both |
| 2021-07-26 20:40:48 | <geekosaur> | not sure anyone over there cares about system-ghc: true |
| 2021-07-26 20:40:51 | <maerwald> | I'm close before forking stack :> |
| 2021-07-26 20:41:05 | <maerwald> | or rather: downstream patching |
| 2021-07-26 20:41:13 | <sm> | accepting prs is not always easy or quick as you probably know |
| 2021-07-26 20:41:53 | → | curiousgay joins (~curiousga@77-120-186-48.kha.volia.net) |
| 2021-07-26 20:42:24 | <maerwald> | geekosaur: wouldn't surprise me if they don't wanna fix bugs for certain features |
| 2021-07-26 20:45:23 | <sm> | also I don't know the state of stack maintenance but I bet it is nobody's job and probably negatively Snoyman's (in the way that you have to try to step back from projects to get other stuff done) |
| 2021-07-26 20:45:34 | × | burnsidesLlama quits (~burnsides@dhcp168-022.wadham.ox.ac.uk) (Remote host closed the connection) |
| 2021-07-26 20:46:04 | → | burnsidesLlama joins (~burnsides@dhcp168-022.wadham.ox.ac.uk) |
| 2021-07-26 20:46:42 | <maerwald> | There might be other reasons at play here ;) |
| 2021-07-26 20:49:18 | × | fef quits (~thedawn@user/thedawn) (Remote host closed the connection) |
| 2021-07-26 20:49:24 | → | deejaytee joins (~deejaytee@cpc91196-cmbg18-2-0-cust215.5-4.cable.virginm.net) |
| 2021-07-26 20:51:00 | × | burnsidesLlama quits (~burnsides@dhcp168-022.wadham.ox.ac.uk) (Ping timeout: 276 seconds) |
| 2021-07-26 20:51:59 | <sm> | I am so not interested in those |
| 2021-07-26 20:52:14 | <maerwald> | :) |
| 2021-07-26 20:52:54 | × | tv quits (~tv@user/tv) (Ping timeout: 250 seconds) |
| 2021-07-26 20:53:18 | × | jeetelongname quits (~jeet@host-89-241-98-229.as13285.net) (Ping timeout: 272 seconds) |
| 2021-07-26 20:53:25 | <maerwald> | sm: your user voice as someone heavily relying on `system-ghc: true` might still help |
| 2021-07-26 20:53:45 | <sm> | i never use that |
| 2021-07-26 20:53:55 | <maerwald> | they don't have to know |
| 2021-07-26 20:54:13 | <maerwald> | help me out here |
| 2021-07-26 20:54:21 | → | fawful joins (~guy@c-76-104-217-93.hsd1.wa.comcast.net) |
| 2021-07-26 20:56:32 | <sm> | I'm sure your pr will get processed like all others, no need for special pleading surely |
| 2021-07-26 20:57:07 | × | ubert quits (~Thunderbi@77.119.217.220.wireless.dyn.drei.com) (Ping timeout: 265 seconds) |
| 2021-07-26 20:58:19 | <maerwald> | that's quite optimistic |
| 2021-07-26 20:59:57 | × | mastarija quits (~mastarija@31.217.8.174) (Read error: Connection reset by peer) |
| 2021-07-26 21:01:08 | → | acidjnk joins (~acidjnk@p200300d0c72b9530cd3c2cd496b9a9f7.dip0.t-ipconnect.de) |
| 2021-07-26 21:01:33 | → | acidjnk_new joins (~acidjnk@p200300d0c72b95307d6f962729a92c22.dip0.t-ipconnect.de) |
| 2021-07-26 21:02:15 | → | acidjnk_new3 joins (~acidjnk@p200300d0c72b953020abcb826e8e1ebf.dip0.t-ipconnect.de) |
| 2021-07-26 21:02:32 | <sm> | I am frustrated by the usual negativity around what is in the end just another a great FOSS project so I think I'd better chill. I am optimistic :) |
| 2021-07-26 21:02:50 | <sm> | see you later |
| 2021-07-26 21:05:28 | → | LukeHoersten joins (~LukeHoers@user/lukehoersten) |
| 2021-07-26 21:05:44 | × | acidjnk quits (~acidjnk@p200300d0c72b9530cd3c2cd496b9a9f7.dip0.t-ipconnect.de) (Ping timeout: 252 seconds) |
| 2021-07-26 21:06:17 | × | acidjnk_new quits (~acidjnk@p200300d0c72b95307d6f962729a92c22.dip0.t-ipconnect.de) (Ping timeout: 252 seconds) |
| 2021-07-26 21:07:51 | → | merijn joins (~merijn@83-160-49-249.ip.xs4all.nl) |
| 2021-07-26 21:08:50 | → | eggplantade joins (~Eggplanta@108-201-191-115.lightspeed.sntcca.sbcglobal.net) |
| 2021-07-26 21:10:49 | <maerwald> | subscribe to lkml for a month if you think haskell is negative :p |
| 2021-07-26 21:11:08 | <yushyin> | :D |
| 2021-07-26 21:11:49 | × | LukeHoersten quits (~LukeHoers@user/lukehoersten) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2021-07-26 21:12:17 | <yushyin> | too much traffic anyway, wouldn't want to read all that |
| 2021-07-26 21:12:55 | <maerwald> | wouldn't be surprised if there were actual suicide attempts following lkml threads... at least Linus once talked about a case where he very harshly rejected a patch of someone who turned out to be suicidal |
| 2021-07-26 21:13:19 | <maerwald> | oddly, his conclusion wasn't to be less of an a**, but to reject patches earlier |
| 2021-07-26 21:18:03 | → | jneira_ joins (~jneira_@28.red-80-28-169.staticip.rima-tde.net) |
| 2021-07-26 21:18:07 | → | slac61603 joins (~slack1256@191.125.21.222) |
| 2021-07-26 21:18:25 | → | tv joins (~tv@user/tv) |
| 2021-07-26 21:18:40 | → | finsternis joins (~X@23.226.237.192) |
| 2021-07-26 21:20:12 | × | slack1256 quits (~slack1256@181.203.14.134) (Ping timeout: 250 seconds) |
All times are in UTC.