Logs: freenode/#haskell
| 2020-11-14 14:22:15 | <Feuermagier> | wow |
| 2020-11-14 14:22:38 | → | jesser[m] joins (jessermatr@gateway/shell/matrix.org/x-goezqreqcnfmgjgv) |
| 2020-11-14 14:22:48 | <Feuermagier> | what do the "." do? |
| 2020-11-14 14:22:55 | <ski> | function composition |
| 2020-11-14 14:23:16 | <ski> | > (sum . map (^ 2)) [0 .. 7] |
| 2020-11-14 14:23:18 | <lambdabot> | 140 |
| 2020-11-14 14:23:24 | <ski> | > sum (map (^ 2) [0 .. 7]) |
| 2020-11-14 14:23:25 | <lambdabot> | 140 |
| 2020-11-14 14:23:35 | → | loprakoa[m] joins (loprakoama@gateway/shell/matrix.org/x-uehnwgnrwlslrkww) |
| 2020-11-14 14:23:37 | → | wanaks[m] joins (wanaksmatr@gateway/shell/matrix.org/x-hwcfdrwbfomwajud) |
| 2020-11-14 14:23:43 | <ski> | > sum (map (^ 2) [0 .. 7]) :: Expr |
| 2020-11-14 14:23:45 | <lambdabot> | 0 + 0 * 0 + 1 * 1 + 2 * 2 + 3 * 3 + 4 * 4 + 5 * 5 + 6 * 6 + 7 * 7 |
| 2020-11-14 14:23:56 | <Feuermagier> | why do we group and sort? |
| 2020-11-14 14:23:58 | <kuribas> | @type M.fromListWithKey (const (+)) . map (,1) |
| 2020-11-14 14:23:59 | <lambdabot> | (Ord b, Num a) => [b] -> M.Map b a |
| 2020-11-14 14:24:04 | → | wrunt[m] joins (wruntmatri@gateway/shell/matrix.org/x-fajabshtqlxbdigd) |
| 2020-11-14 14:24:05 | <ski> | > group "mississippi" |
| 2020-11-14 14:24:07 | <lambdabot> | ["m","i","ss","i","ss","i","pp","i"] |
| 2020-11-14 14:24:11 | <ski> | > (group . sort) "mississippi" |
| 2020-11-14 14:24:13 | <lambdabot> | ["iiii","m","pp","ssss"] |
| 2020-11-14 14:24:14 | × | taurux quits (~taurux@net-188-152-78-21.cust.vodafonedsl.it) (Quit: ZNC 1.7.5 - https://znc.in) |
| 2020-11-14 14:25:03 | <Feuermagier> | aaaah |
| 2020-11-14 14:25:52 | × | o1lo01ol1o quits (~o1lo01ol1@bl11-140-216.dsl.telepac.pt) (Remote host closed the connection) |
| 2020-11-14 14:26:29 | <Zetagon> | kuribas: emacs-lisp is far from a bad language. it has the advantage of being a lisp so a lot of things can be improved with libraries. It has borrowed a lot of functionality from common lisp for example with cl-lib. But yeah it's not the best language either |
| 2020-11-14 14:27:04 | × | ezzieyguywuf quits (~Unknown@unaffiliated/ezzieyguywuf) (Remote host closed the connection) |
| 2020-11-14 14:27:17 | <kuribas> | Zetagon: I find it aweful, because: no propper lexical scope, though that's fixed in later versions, no namespaces, one global interpreter thread, etc... |
| 2020-11-14 14:27:25 | → | miseenplace[m] joins (miseenplac@gateway/shell/matrix.org/x-ywbimksbsmmywabw) |
| 2020-11-14 14:27:55 | <Zetagon> | Name spaces are done by prefixing the package name :P |
| 2020-11-14 14:28:05 | ski | idly notes "aweful" used to be a positive description |
| 2020-11-14 14:28:17 | → | michaelpj joins (michaelpjm@gateway/shell/matrix.org/x-xcnlzlahcxbogqup) |
| 2020-11-14 14:28:30 | → | ThaEwat joins (thaewraptm@gateway/shell/matrix.org/x-dfjdlbdjkbnyawpv) |
| 2020-11-14 14:28:41 | <Zetagon> | Actually it technically has two namespaces, one for functions and one for variables |
| 2020-11-14 14:28:49 | → | iinuwa joins (iinuwamatr@gateway/shell/matrix.org/x-jxshhrkktrqfnuqi) |
| 2020-11-14 14:29:08 | → | jtojnar joins (jtojnarmat@gateway/shell/matrix.org/x-xtyqemcpdpeklcda) |
| 2020-11-14 14:29:13 | <kuribas> | ski: isn't that awesome? |
| 2020-11-14 14:29:15 | → | camlriot42 joins (camlriotma@gateway/shell/matrix.org/x-iyuyyccohcedziwd) |
| 2020-11-14 14:29:58 | → | sm[m] joins (simonmicma@gateway/shell/matrix.org/x-lbfifyukhotihtyp) |
| 2020-11-14 14:30:01 | → | falling-edge[m] joins (falling-ed@gateway/shell/matrix.org/x-gqfvjootjpkyvsru) |
| 2020-11-14 14:30:30 | → | hnOsmium0001[m] joins (hnosmium00@gateway/shell/matrix.org/x-uzbrsqhjgvjvnext) |
| 2020-11-14 14:30:46 | <kuribas> | ski: or do you mean like a century ago? |
| 2020-11-14 14:30:57 | <Zetagon> | wiktionary seems to agree with ski |
| 2020-11-14 14:31:07 | <ski> | awful [..] 2. Exceedingly great; usually applied intensively. [..] 4. (now rare) Inspiring awe; filling with profound reverence or respect; profoundly impressive. 5. (now rare) Struck or filled with awe. [..] 7. Worshipful; reverential; law-abiding. |
| 2020-11-14 14:31:21 | <ski> | kuribas : or more, perhaps |
| 2020-11-14 14:32:54 | → | dyniec[m] joins (dyniecmatr@gateway/shell/matrix.org/x-zwmchqxypgwrfvvf) |
| 2020-11-14 14:33:13 | → | rednaZ[m] joins (r3dnazmatr@gateway/shell/matrix.org/x-gpnsxbbsvkfpdeul) |
| 2020-11-14 14:33:15 | → | wi[m] joins (w1gzmatrix@gateway/shell/matrix.org/x-gkgxegvxecteylnk) |
| 2020-11-14 14:33:17 | → | TekShifter[m] joins (tekshifter@gateway/shell/matrix.org/x-xtsbzpbdrwjrjwbu) |
| 2020-11-14 14:33:30 | → | ComaGrayce[m] joins (commagrays@gateway/shell/matrix.org/x-dqibnbgwhohubrkt) |
| 2020-11-14 14:34:40 | → | elpfen[m] joins (elpfenmatr@gateway/shell/matrix.org/x-drqtnjthyplttipt) |
| 2020-11-14 14:34:56 | × | da39a3ee5e6b4b0d quits (~da39a3ee5@cm-171-98-105-4.revip7.asianet.co.th) (Ping timeout: 272 seconds) |
| 2020-11-14 14:35:00 | → | ezzieyguywuf joins (~Unknown@unaffiliated/ezzieyguywuf) |
| 2020-11-14 14:36:33 | → | heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) |
| 2020-11-14 14:37:02 | × | tmciver quits (~tmciver@cpe-172-101-40-226.maine.res.rr.com) (Ping timeout: 260 seconds) |
| 2020-11-14 14:37:17 | → | tmciver joins (~tmciver@cpe-172-101-40-226.maine.res.rr.com) |
| 2020-11-14 14:37:30 | hackage | hakyll-convert 0.3.0.2 - Convert from other blog engines to Hakyll. https://hackage.haskell.org/package/hakyll-convert-0.3.0.2 (AlexanderBatischev) |
| 2020-11-14 14:40:40 | → | vfaronov joins (~vfaronov@broadband-95-84-210-78.ip.moscow.rt.ru) |
| 2020-11-14 14:41:00 | × | heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 244 seconds) |
| 2020-11-14 14:41:58 | × | vfaronov quits (~vfaronov@broadband-95-84-210-78.ip.moscow.rt.ru) (Client Quit) |
| 2020-11-14 14:42:18 | → | vfaronov joins (~vfaronov@broadband-95-84-210-78.ip.moscow.rt.ru) |
| 2020-11-14 14:43:03 | → | alp joins (~alp@2a01:e0a:58b:4920:c402:b115:cf96:fa96) |
| 2020-11-14 14:44:30 | × | vfaronov quits (~vfaronov@broadband-95-84-210-78.ip.moscow.rt.ru) (Client Quit) |
| 2020-11-14 14:44:43 | × | teardown quits (~user@gateway/tor-sasl/mrush) (Ping timeout: 240 seconds) |
| 2020-11-14 14:44:44 | → | vfaronov joins (~vfaronov@broadband-95-84-210-78.ip.moscow.rt.ru) |
| 2020-11-14 14:44:45 | × | vfaronov quits (~vfaronov@broadband-95-84-210-78.ip.moscow.rt.ru) (Client Quit) |
| 2020-11-14 14:46:58 | → | teardown joins (~user@gateway/tor-sasl/mrush) |
| 2020-11-14 14:50:18 | → | urodna joins (~urodna@unaffiliated/urodna) |
| 2020-11-14 14:55:23 | × | texasmynsted_ quits (~texasmyns@99.96.221.112) (Ping timeout: 260 seconds) |
| 2020-11-14 14:59:48 | → | o1lo01ol1o joins (~o1lo01ol1@bl11-140-216.dsl.telepac.pt) |
| 2020-11-14 15:00:01 | × | skvidal quits (~skvidal@185.163.110.116) () |
| 2020-11-14 15:04:14 | × | mirrorbird quits (~psutcliff@176.227.57.79) (Ping timeout: 264 seconds) |
| 2020-11-14 15:05:05 | → | test joins (5806b690@144.red-88-6-182.staticip.rima-tde.net) |
| 2020-11-14 15:05:29 | test | is now known as Guest7066 |
| 2020-11-14 15:05:58 | × | bitmapper quits (uid464869@gateway/web/irccloud.com/x-vehblmdtqrevxqug) (Quit: Connection closed for inactivity) |
| 2020-11-14 15:06:59 | × | Guest7066 quits (5806b690@144.red-88-6-182.staticip.rima-tde.net) (Remote host closed the connection) |
| 2020-11-14 15:09:20 | → | jakalx joins (~jakalx@base.jakalx.net) |
| 2020-11-14 15:10:52 | × | darjeeling_ quits (~darjeelin@122.245.208.31) (Ping timeout: 260 seconds) |
| 2020-11-14 15:14:43 | × | babygnu quits (~robert@gateway/tor-sasl/babygnu) (Ping timeout: 240 seconds) |
| 2020-11-14 15:15:25 | → | babygnu joins (~robert@gateway/tor-sasl/babygnu) |
| 2020-11-14 15:15:30 | hackage | hexpat-streamparser 0.0.1 - https://hackage.haskell.org/package/hexpat-streamparser-0.0.1 (KristofBastiaensen) |
| 2020-11-14 15:15:41 | <kuribas> | there you go :) |
| 2020-11-14 15:15:59 | → | todda7 joins (~torstein@ppp-2-84-17-169.home.otenet.gr) |
| 2020-11-14 15:16:54 | × | Tario quits (~Tario@201.192.165.173) (Read error: Connection reset by peer) |
| 2020-11-14 15:17:15 | × | alp quits (~alp@2a01:e0a:58b:4920:c402:b115:cf96:fa96) (Ping timeout: 272 seconds) |
| 2020-11-14 15:18:17 | → | alp joins (~alp@2a01:e0a:58b:4920:1990:a633:1538:99c3) |
| 2020-11-14 15:18:30 | hackage | byte-count-reader 0.10.1.2 - Read strings describing a number of bytes like 2Kb and 0.5 MiB https://hackage.haskell.org/package/byte-count-reader-0.10.1.2 (danielrolls) |
| 2020-11-14 15:18:53 | ← | jakalx parts (~jakalx@base.jakalx.net) ("Disconnected: closed") |
| 2020-11-14 15:18:55 | → | knupfer joins (~Thunderbi@87.123.206.158) |
| 2020-11-14 15:19:36 | fendor__ | is now known as fendor |
| 2020-11-14 15:20:23 | × | babygnu quits (~robert@gateway/tor-sasl/babygnu) (Ping timeout: 240 seconds) |
| 2020-11-14 15:20:26 | × | royal_screwup21 quits (52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) (Quit: Connection closed) |
| 2020-11-14 15:21:01 | → | royal_screwup21 joins (52254809@gateway/web/cgi-irc/kiwiirc.com/ip.82.37.72.9) |
| 2020-11-14 15:21:56 | <fendor> | cabal does not like literate haskell files |
| 2020-11-14 15:21:59 | <fendor> | or is it ghc? |
| 2020-11-14 15:23:05 | → | FunPika joins (~FunPika@92.223.89.101) |
| 2020-11-14 15:23:17 | <kuribas> | fendor: they do |
| 2020-11-14 15:23:24 | <kuribas> | fendor: did you name it .lhs? |
| 2020-11-14 15:24:19 | <fendor> | kuribas, but the error messages are not of the same quality. ghc just says:`unlit' failed in phase `Literate pre-processor'. pointing to the first line. Some lines above, you can read the actual errors |
| 2020-11-14 15:26:01 | → | da39a3ee5e6b4b0d joins (~da39a3ee5@cm-171-98-105-4.revip7.asianet.co.th) |
| 2020-11-14 15:27:19 | <fendor> | but it is rather hidden, compared to the rich error messages we usually get |
| 2020-11-14 15:27:54 | → | Gurkenglas joins (~Gurkengla@unaffiliated/gurkenglas) |
All times are in UTC.