Logs: freenode/#haskell
| 2020-10-26 22:09:29 | → | conal joins (~conal@2600:380:442a:9d99:d1c8:a6d4:f859:73e4) |
| 2020-10-26 22:09:33 | × | Tops21 quits (~Tobias@dyndsl-095-033-095-051.ewe-ip-backbone.de) (Ping timeout: 258 seconds) |
| 2020-10-26 22:09:34 | <noname234234> | how do you split file contents to lines by `\n`? |
| 2020-10-26 22:09:49 | <noname234234> | im disappointed that I couldn't get a simple answer from google |
| 2020-10-26 22:09:57 | <noname234234> | everyone says some other package to install |
| 2020-10-26 22:09:58 | <noname234234> | lol |
| 2020-10-26 22:10:07 | → | Varis joins (~Tadas@unaffiliated/varis) |
| 2020-10-26 22:10:08 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-10-26 22:10:32 | <Athas> | gnumonic: if you made the parser generate Haskell source, then it would not be an eDSL, but just a compiler, wouldn't it? |
| 2020-10-26 22:10:35 | → | falafel_ joins (~falafel@71-34-132-121.clsp.qwest.net) |
| 2020-10-26 22:10:38 | <monsterchrom> | > lines "abc\ndef\n" |
| 2020-10-26 22:10:40 | <lambdabot> | ["abc","def"] |
| 2020-10-26 22:10:46 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-10-26 22:10:47 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-10-26 22:10:58 | <noname234234> | if I wanted to split on custom characters? |
| 2020-10-26 22:11:24 | topos | is now known as topos____ |
| 2020-10-26 22:11:28 | <monsterchrom> | Then it's a simple recursion you can steal from the simple source code of lines |
| 2020-10-26 22:11:39 | <monsterchrom> | or the "split" package |
| 2020-10-26 22:11:54 | → | polyrain joins (~polyrain@2001:8003:e501:6901:caf:e594:a7fb:67e) |
| 2020-10-26 22:11:56 | <monsterchrom> | I usually just steal. It's just 3 lines. |
| 2020-10-26 22:13:06 | <noname234234> | uh |
| 2020-10-26 22:13:19 | <noname234234> | is there a way to unload a module in ghci session? |
| 2020-10-26 22:13:22 | <noname234234> | Or I have to restart it |
| 2020-10-26 22:13:25 | × | cr3 quits (~cr3@192-222-143-195.qc.cable.ebox.net) (Ping timeout: 240 seconds) |
| 2020-10-26 22:13:29 | × | elfets quits (~elfets@ip-37-201-23-96.hsi13.unitymediagroup.de) (Quit: Leaving) |
| 2020-10-26 22:13:46 | <yushyin> | :m - ModuleA |
| 2020-10-26 22:14:25 | × | elliott_ quits (~elliott_@pool-108-51-141-12.washdc.fios.verizon.net) (Ping timeout: 240 seconds) |
| 2020-10-26 22:14:30 | <monsterchrom> | If you do a :load on the module you want, that's also a reset. |
| 2020-10-26 22:14:47 | × | whataday quits (~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection) |
| 2020-10-26 22:15:10 | <monsterchrom> | That's a simplified story. The real story is much more nuanced than that. |
| 2020-10-26 22:15:27 | hackage | streaming-bytestring 0.2.0 - Fast, effectful byte streams. https://hackage.haskell.org/package/streaming-bytestring-0.2.0 (fosskers) |
| 2020-10-26 22:15:46 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-10-26 22:15:46 | → | hvr_ joins (~hvr@haskell/developer/hvr) |
| 2020-10-26 22:15:54 | → | whataday joins (~xxx@2400:8902::f03c:92ff:fe60:98d8) |
| 2020-10-26 22:16:23 | × | hvr quits (~hvr@haskell/developer/hvr) (Read error: Connection reset by peer) |
| 2020-10-26 22:18:42 | → | nuncanada joins (~dude@179.235.160.168) |
| 2020-10-26 22:19:43 | × | fendor quits (~fendor@078132040188.public.t-mobile.at) (Read error: Connection reset by peer) |
| 2020-10-26 22:19:48 | × | conal quits (~conal@2600:380:442a:9d99:d1c8:a6d4:f859:73e4) (Quit: Computer has gone to sleep.) |
| 2020-10-26 22:19:57 | → | fendor joins (~fendor@078132040188.public.t-mobile.at) |
| 2020-10-26 22:21:44 | × | tromp quits (~tromp@dhcp-077-249-230-040.chello.nl) (Remote host closed the connection) |
| 2020-10-26 22:23:40 | × | nuncanada quits (~dude@179.235.160.168) (Ping timeout: 265 seconds) |
| 2020-10-26 22:26:11 | <noname234234> | why this doesn't work? `foldr (++) ["str", "str"] [' ']` |
| 2020-10-26 22:26:48 | <dibblego> | foldr (++) ["str", "str"] [[" "]] |
| 2020-10-26 22:27:22 | × | Varis quits (~Tadas@unaffiliated/varis) (Remote host closed the connection) |
| 2020-10-26 22:28:41 | <noname234234> | I think I have confused the argument order |
| 2020-10-26 22:28:42 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-10-26 22:28:57 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-10-26 22:29:14 | <dsal> | What are you trying to do there? |
| 2020-10-26 22:29:30 | <dibblego> | perhaps you want intercalate |
| 2020-10-26 22:29:51 | → | conal joins (~conal@mobile-166-170-38-213.mycingular.net) |
| 2020-10-26 22:30:01 | → | Varis joins (~Tadas@unaffiliated/varis) |
| 2020-10-26 22:30:27 | × | danvet quits (~Daniel@2a02:168:57f4:0:efd0:b9e5:5ae6:c2fa) (Ping timeout: 272 seconds) |
| 2020-10-26 22:32:06 | × | invaser quits (~Thunderbi@31.148.23.125) (Ping timeout: 260 seconds) |
| 2020-10-26 22:33:44 | → | p8m joins (p8m@gateway/vpn/protonvpn/p8m) |
| 2020-10-26 22:35:45 | × | DavidEichmann quits (~david@43.240.198.146.dyn.plus.net) (Remote host closed the connection) |
| 2020-10-26 22:36:35 | × | Varis quits (~Tadas@unaffiliated/varis) (Remote host closed the connection) |
| 2020-10-26 22:36:48 | → | DavidEichmann joins (~david@43.240.198.146.dyn.plus.net) |
| 2020-10-26 22:37:04 | → | Varis joins (~Tadas@unaffiliated/varis) |
| 2020-10-26 22:37:07 | × | noname234234 quits (5e7be11d@94.123.225.29) (Remote host closed the connection) |
| 2020-10-26 22:39:01 | × | son0p quits (~son0p@181.136.122.143) (Remote host closed the connection) |
| 2020-10-26 22:41:30 | × | heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection) |
| 2020-10-26 22:43:58 | → | Katarushisu7 joins (~Katarushi@cpc149712-finc20-2-0-cust535.4-2.cable.virginm.net) |
| 2020-10-26 22:44:01 | × | justsomeguy quits (~justsomeg@unaffiliated/--/x-3805311) () |
| 2020-10-26 22:44:56 | × | Katarushisu quits (~Katarushi@cpc149712-finc20-2-0-cust535.4-2.cable.virginm.net) (Ping timeout: 265 seconds) |
| 2020-10-26 22:44:56 | Katarushisu7 | is now known as Katarushisu |
| 2020-10-26 22:50:03 | → | servo joins (~servo@196.112.1.113) |
| 2020-10-26 22:50:21 | → | seanvert` joins (~user@177.84.244.242) |
| 2020-10-26 22:51:00 | × | lambda-11235 quits (~lambda-11@2600:1700:7c70:4600:252e:56ab:ce70:1eed) (Max SendQ exceeded) |
| 2020-10-26 22:51:39 | → | tromp joins (~tromp@dhcp-077-249-230-040.chello.nl) |
| 2020-10-26 22:51:43 | → | lambda-11235 joins (~lambda-11@2600:1700:7c70:4600:252e:56ab:ce70:1eed) |
| 2020-10-26 22:51:51 | yorick1 | is now known as yorick |
| 2020-10-26 22:53:22 | × | hyperisco quits (~hyperisco@d192-186-117-226.static.comm.cgocable.net) (Ping timeout: 256 seconds) |
| 2020-10-26 22:54:25 | × | servo quits (~servo@196.112.1.113) (Ping timeout: 240 seconds) |
| 2020-10-26 22:54:28 | × | __monty__ quits (~toonn@unaffiliated/toonn) (Quit: leaving) |
| 2020-10-26 22:56:21 | × | conal quits (~conal@mobile-166-170-38-213.mycingular.net) (Quit: Computer has gone to sleep.) |
| 2020-10-26 22:57:46 | × | seanvert` quits (~user@177.84.244.242) (Ping timeout: 260 seconds) |
| 2020-10-26 22:58:12 | topos____ | is now known as topos |
| 2020-10-26 23:04:34 | × | dhouthoo quits (~dhouthoo@ptr-eiv6509pb4ifhdr9lsd.18120a2.ip6.access.telenet.be) (Quit: WeeChat 2.9) |
| 2020-10-26 23:05:10 | → | geowiesnot joins (~user@87-89-181-157.abo.bbox.fr) |
| 2020-10-26 23:06:30 | → | damianfral3 joins (~damianfra@174.red-37-13-187.dynamicip.rima-tde.net) |
| 2020-10-26 23:06:47 | × | justanotheruser quits (~justanoth@unaffiliated/justanotheruser) (Ping timeout: 260 seconds) |
| 2020-10-26 23:08:00 | × | Chi1thangoo quits (~Chi1thang@87.112.60.168) (Read error: Connection reset by peer) |
| 2020-10-26 23:08:34 | → | Chi1thangoo joins (~Chi1thang@87.112.60.168) |
| 2020-10-26 23:09:13 | × | Katarushisu quits (~Katarushi@cpc149712-finc20-2-0-cust535.4-2.cable.virginm.net) (Ping timeout: 264 seconds) |
| 2020-10-26 23:09:22 | → | Katarushisu joins (~Katarushi@cpc149712-finc20-2-0-cust535.4-2.cable.virginm.net) |
| 2020-10-26 23:10:33 | × | tmciver quits (~tmciver@cpe-172-101-40-226.maine.res.rr.com) (Ping timeout: 265 seconds) |
| 2020-10-26 23:10:59 | × | ericsagnes quits (~ericsagne@2405:6580:0:5100:c9f4:39c8:ab29:a9e1) (Ping timeout: 272 seconds) |
| 2020-10-26 23:12:26 | → | tmciver joins (~tmciver@cpe-172-101-40-226.maine.res.rr.com) |
| 2020-10-26 23:13:37 | → | heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) |
| 2020-10-26 23:14:32 | → | jbox joins (~atlas@unaffiliated/jbox) |
| 2020-10-26 23:14:39 | → | zebrag joins (~inkbottle@aaubervilliers-654-1-111-120.w86-198.abo.wanadoo.fr) |
| 2020-10-26 23:14:50 | × | Katarushisu quits (~Katarushi@cpc149712-finc20-2-0-cust535.4-2.cable.virginm.net) (Ping timeout: 256 seconds) |
| 2020-10-26 23:14:57 | × | xerox_ quits (~xerox@unaffiliated/xerox) (Ping timeout: 260 seconds) |
| 2020-10-26 23:15:13 | × | dbmikus quits (~dbmikus@cpe-76-167-86-219.natsow.res.rr.com) (Ping timeout: 264 seconds) |
| 2020-10-26 23:15:18 | × | gehmehgeh quits (~ircuser1@gateway/tor-sasl/gehmehgeh) (Quit: Leaving) |
| 2020-10-26 23:15:23 | × | vacm quits (~vacwm@70.23.92.191) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2020-10-26 23:15:27 | × | mrchampion quits (~mrchampio@216-211-57-41.dynamic.tbaytel.net) (Quit: Leaving) |
| 2020-10-26 23:15:40 | → | mbomba joins (~mbomba@142.114.9.241) |
| 2020-10-26 23:16:39 | → | christo joins (~chris@81.96.113.213) |
| 2020-10-26 23:17:17 | × | inkbottle quits (~inkbottle@aaubervilliers-654-1-117-120.w86-198.abo.wanadoo.fr) (Ping timeout: 260 seconds) |
All times are in UTC.