Newest at the top
2025-02-03 21:04:11 +0100 | fmira | (~user@user/fmira) fmira |
2025-02-03 21:03:40 +0100 | fmira | (~user@user/fmira) (Remote host closed the connection) |
2025-02-03 21:03:20 +0100 | <Athas> | dminuoso: it doesn't fail anymore. Before it failed with a linker error about libdw.a referencing some undefined symbols . |
2025-02-03 21:01:17 +0100 | caconym | (~caconym@user/caconym) caconym |
2025-02-03 21:00:05 +0100 | gorignak | (~gorignak@user/gorignak) gorignak |
2025-02-03 21:00:00 +0100 | caconym | (~caconym@user/caconym) (Quit: bye) |
2025-02-03 20:59:34 +0100 | gorignak | (~gorignak@user/gorignak) (Quit: quit) |
2025-02-03 20:55:29 +0100 | tabaqui1 | (~root@87.200.129.102) (Ping timeout: 248 seconds) |
2025-02-03 20:51:48 +0100 | sprotte24 | (~sprotte24@p200300d16f26a80008f1d39836015ac5.dip0.t-ipconnect.de) |
2025-02-03 20:50:39 +0100 | weary-traveler | (~user@user/user363627) (Remote host closed the connection) |
2025-02-03 20:49:54 +0100 | gorignak | (~gorignak@user/gorignak) gorignak |
2025-02-03 20:49:23 +0100 | gorignak | (~gorignak@user/gorignak) (Quit: quit) |
2025-02-03 20:48:34 +0100 | <kuribas`> | albet70: you can turn a right fold into a left fold with early exit. |
2025-02-03 20:47:52 +0100 | prasad | (~Thunderbi@2601:243:c001:3f07::89) |
2025-02-03 20:47:46 +0100 | <dminuoso> | Athas: Can you share your nix derivation, perhaps including the builder output on how it fails? |
2025-02-03 20:47:34 +0100 | prasad | (~Thunderbi@c-73-75-25-251.hsd1.in.comcast.net) (Quit: prasad) |
2025-02-03 20:46:50 +0100 | <lambdabot> | [1,2,3,0] |
2025-02-03 20:46:49 +0100 | <kuribas`> | > foldr (\x k a -> if x == 0 then [0] else x:k a) id [1, 2, 3, 0, 4] [] |
2025-02-03 20:45:49 +0100 | <hellwolf> | https://paste.tomsmeding.com/E5JKADZq |
2025-02-03 20:44:04 +0100 | Square | (~Square@user/square) Square |
2025-02-03 20:40:24 +0100 | <albet70> | rec = \ls -> \k -> mapK (\x -> \c -> if x == 0 then k ? else c (1/x)) ls k |
2025-02-03 20:40:10 +0100 | alfiee | (~alfiee@user/alfiee) (Ping timeout: 252 seconds) |
2025-02-03 20:39:43 +0100 | gorignak | (~gorignak@user/gorignak) gorignak |
2025-02-03 20:39:12 +0100 | gorignak | (~gorignak@user/gorignak) (Quit: quit) |
2025-02-03 20:37:49 +0100 | <albet70> | try to keep the previous result befor meet the break item in the list, like rec [1,2,3,0,4] return [1,2,3,0] not just [0], but that p in mapK can not keep previous result |
2025-02-03 20:36:02 +0100 | alfiee | (~alfiee@user/alfiee) alfiee |
2025-02-03 20:32:34 +0100 | <davean> | mauke: yah that first sentance seems pretty critical though. |
2025-02-03 20:32:23 +0100 | euleritian | (~euleritia@ip5f5ad1be.dynamic.kabel-deutschland.de) |
2025-02-03 20:32:15 +0100 | <mauke> | I can't connect the first sentence, but the rest makes sense |
2025-02-03 20:32:05 +0100 | euleritian | (~euleritia@dynamic-176-006-140-194.176.6.pool.telefonica.de) (Read error: Connection reset by peer) |
2025-02-03 20:30:39 +0100 | <hellwolf> | *can parse |
2025-02-03 20:30:34 +0100 | <hellwolf> | right. hmm, only LLM can try, at that point. |
2025-02-03 20:30:09 +0100 | <davean> | Maybem I'm not sure what they asked was even coherent english though. |
2025-02-03 20:29:57 +0100 | <hellwolf> | albet70: we might need to suggest you to think differently. what are the starting materials you have? |
2025-02-03 20:29:32 +0100 | gorignak | (~gorignak@user/gorignak) gorignak |
2025-02-03 20:29:16 +0100 | <hellwolf> | it certainly misses the Haskell context. |
2025-02-03 20:29:04 +0100 | <hellwolf> | I think by statement, it means like those "statements" in other languages where effectful expression are usually sequentially laid out. |
2025-02-03 20:29:01 +0100 | gorignak | (~gorignak@user/gorignak) (Quit: quit) |
2025-02-03 20:27:36 +0100 | <davean> | albet70: I can not parse what you said |
2025-02-03 20:27:17 +0100 | <albet70> | or can it? |
2025-02-03 20:27:05 +0100 | hellwolf | (~user@262a-8508-ab6e-9670-0f00-4d40-07d0-2001.sta.estpak.ee) hellwolf |
2025-02-03 20:26:57 +0100 | sord937 | (~sord937@gateway/tor-sasl/sord937) (Quit: sord937) |
2025-02-03 20:26:47 +0100 | hellwolf | (~user@274b-85a5-2831-cb8b-0f00-4d40-07d0-2001.sta.estpak.ee) (Quit: rcirc on GNU Emacs 29.4) |
2025-02-03 20:26:09 +0100 | <albet70> | since that p in mapK can't keep value |
2025-02-03 20:25:24 +0100 | <albet70> | how to do statement in function without in do notation? like the rec [1,2,3,0,4] id will return [0.0], how let it be [1,2,3,0]? |
2025-02-03 20:24:02 +0100 | <smiesner> | hi, again i'd like to ask if someone knows tools for model-to-model transformations in haskell. is hydra such a tool? i want to translate from/to different UDP standards |
2025-02-03 20:19:31 +0100 | supercode | (~supercode@user/supercode) (Quit: Client closed) |
2025-02-03 20:19:21 +0100 | gorignak | (~gorignak@user/gorignak) gorignak |
2025-02-03 20:18:50 +0100 | gorignak | (~gorignak@user/gorignak) (Quit: quit) |
2025-02-03 20:18:36 +0100 | remedan | (~remedan@62.245.108.153) remedan |