Logs: freenode/#haskell
| 2020-10-30 17:16:03 | → | thir joins (~thir@p200300f27f0b7e004c18ab60065ea01b.dip0.t-ipconnect.de) |
| 2020-10-30 17:16:58 | → | bartemius joins (~bartemius@109.252.20.20) |
| 2020-10-30 17:17:10 | hackage | phonetic-languages-plus 0.1.0.0 - Some common shared between different packages functions. https://hackage.haskell.org/package/phonetic-languages-plus-0.1.0.0 (OleksandrZhabenko) |
| 2020-10-30 17:17:20 | → | nbloomf joins (~nbloomf@2600:1700:ad14:3020:5d05:5ba3:751c:f26a) |
| 2020-10-30 17:17:42 | → | Kingpatzer joins (~user@c-73-5-166-112.hsd1.mn.comcast.net) |
| 2020-10-30 17:20:10 | × | ubert quits (~Thunderbi@p200300ecdf1e5396e6b318fffe838f33.dip0.t-ipconnect.de) (Ping timeout: 268 seconds) |
| 2020-10-30 17:21:28 | × | bliminse quits (~bliminse@host109-158-129-241.range109-158.btcentralplus.com) (Ping timeout: 246 seconds) |
| 2020-10-30 17:22:19 | → | gehmehgeh joins (~ircuser1@gateway/tor-sasl/gehmehgeh) |
| 2020-10-30 17:22:20 | → | bliminse joins (~bliminse@host109-158-129-241.range109-158.btcentralplus.com) |
| 2020-10-30 17:23:08 | × | nbloomf quits (~nbloomf@2600:1700:ad14:3020:5d05:5ba3:751c:f26a) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2020-10-30 17:24:45 | <Kingpatzer> | hey folks, quick (i hope) and likely dumb question: I just |
| 2020-10-30 17:24:45 | <Kingpatzer> | started worknig through cis194 and I would like to print |
| 2020-10-30 17:24:45 | <Kingpatzer> | out the results from the "testWhatWentWrong" function as |
| 2020-10-30 17:24:45 | <Kingpatzer> | one string per line. Some google fu got me to "mapM_ |
| 2020-10-30 17:24:45 | <Kingpatzer> | putStrLn [String]" but that fails with an error because |
| 2020-10-30 17:24:45 | <Kingpatzer> | testWhatWentWrong returns IO [String] and not plain |
| 2020-10-30 17:24:45 | <Kingpatzer> | [String]. Anyway I can accomplish just printnig each |
| 2020-10-30 17:24:46 | <Kingpatzer> | string on it's own line? |
| 2020-10-30 17:24:56 | <Kingpatzer> | oops, sorry about that, pasting didn't work as intended |
| 2020-10-30 17:24:58 | <ghoulguy> | Kingpatzer: please do not paste into your IRC client |
| 2020-10-30 17:25:05 | → | nbloomf joins (~nbloomf@2600:1700:ad14:3020:5d05:5ba3:751c:f26a) |
| 2020-10-30 17:25:30 | → | coot joins (~coot@37.30.51.206.nat.umts.dynamic.t-mobile.pl) |
| 2020-10-30 17:25:53 | × | nbloomf quits (~nbloomf@2600:1700:ad14:3020:5d05:5ba3:751c:f26a) (Client Quit) |
| 2020-10-30 17:26:36 | <tomsmeding> | Kingpatzer: 'testWhatWentWrong >>= mapM_ putStrLn' perhaps? or using do-notation, 'do result <- testWhatWentWrong ; mapM_ putStrLn result' |
| 2020-10-30 17:27:04 | → | mastarija joins (~mastarija@93-136-65-246.adsl.net.t-com.hr) |
| 2020-10-30 17:27:53 | <Kingpatzer> | that worked tomsmeding. thanks! |
| 2020-10-30 17:28:14 | × | sam___ quits (~sam@78.148.22.93.rev.sfr.net) (Ping timeout: 264 seconds) |
| 2020-10-30 17:28:50 | × | alp_ quits (~alp@2a01:e0a:58b:4920:2d4f:a367:8a30:586b) (Ping timeout: 264 seconds) |
| 2020-10-30 17:29:21 | × | idhugo quits (~idhugo@80-62-116-101-mobile.dk.customer.tdc.net) (Ping timeout: 260 seconds) |
| 2020-10-30 17:30:57 | → | jbox joins (~atlas@unaffiliated/jbox) |
| 2020-10-30 17:32:44 | <tomsmeding> | Kingpatzer: both mean exactly the same thing; >>= is what do-notation "desugars" (converts) to intermally |
| 2020-10-30 17:32:52 | → | nineonine joins (~textual@216-19-190-182.dyn.novuscom.net) |
| 2020-10-30 17:32:53 | × | Jesin quits (~Jesin@pool-72-66-101-18.washdc.fios.verizon.net) (Quit: Leaving) |
| 2020-10-30 17:33:14 | <tomsmeding> | you use >>= to "continue" your program having access to the value within the monad, here IO |
| 2020-10-30 17:33:23 | → | alp_ joins (~alp@2a01:e0a:58b:4920:a94e:f7d6:8198:b42c) |
| 2020-10-30 17:33:42 | → | christo joins (~chris@81.96.113.213) |
| 2020-10-30 17:33:50 | <tomsmeding> | (hooks in nicely in the discussion of continuations just now...) |
| 2020-10-30 17:33:56 | × | coot quits (~coot@37.30.51.206.nat.umts.dynamic.t-mobile.pl) (Quit: coot) |
| 2020-10-30 17:34:57 | <monsterchrom> | For IO we write in callback style. Do you "extract the answer". Supply a callback that receives the answer. |
| 2020-10-30 17:35:14 | <monsterchrom> | or even s/that receives/to receive/ |
| 2020-10-30 17:35:26 | × | Kaivo quits (~Kaivo@104-200-86-99.mc.derytele.com) (Ping timeout: 258 seconds) |
| 2020-10-30 17:35:26 | × | xff0x_ quits (~fox@2001:1a81:52d0:1400:27e4:ce:8da5:24fb) (Ping timeout: 264 seconds) |
| 2020-10-30 17:35:35 | <monsterchrom> | http://www.vex.net/~trebla/haskell/IO.xhtml |
| 2020-10-30 17:35:49 | × | bliminse quits (~bliminse@host109-158-129-241.range109-158.btcentralplus.com) (Quit: leaving) |
| 2020-10-30 17:35:55 | → | p8m joins (p8m@gateway/vpn/protonvpn/p8m) |
| 2020-10-30 17:35:55 | <monsterchrom> | OTOH CIS194 would not have you dabble in IO without first teaching you this. |
| 2020-10-30 17:35:58 | × | christo quits (~chris@81.96.113.213) (Remote host closed the connection) |
| 2020-10-30 17:36:14 | → | christo joins (~chris@81.96.113.213) |
| 2020-10-30 17:36:39 | × | thir quits (~thir@p200300f27f0b7e004c18ab60065ea01b.dip0.t-ipconnect.de) (Remote host closed the connection) |
| 2020-10-30 17:36:46 | → | thir joins (~thir@p200300f27f0b7e004c18ab60065ea01b.dip0.t-ipconnect.de) |
| 2020-10-30 17:36:52 | <monsterchrom> | It's pure effectless functional programming for the first 70% at least. |
| 2020-10-30 17:37:17 | <tomsmeding> | as it should be |
| 2020-10-30 17:37:45 | → | Kaivo joins (~Kaivo@ec2-15-222-231-32.ca-central-1.compute.amazonaws.com) |
| 2020-10-30 17:38:31 | × | asheshambasta quits (~user@ptr-e1lysawl9rr13i61o92.18120a2.ip6.access.telenet.be) (Remote host closed the connection) |
| 2020-10-30 17:39:17 | × | hiroaki quits (~hiroaki@2a02:908:4b18:e20::f733) (Ping timeout: 268 seconds) |
| 2020-10-30 17:40:05 | × | codygman quits (~codygman@47-184-107-46.dlls.tx.frontiernet.net) (Ping timeout: 260 seconds) |
| 2020-10-30 17:41:09 | hackage | uniqueness-periods-vector-general 0.5.2.0 - Some kind of the optimization approach to data inner structure. https://hackage.haskell.org/package/uniqueness-periods-vector-general-0.5.2.0 (OleksandrZhabenko) |
| 2020-10-30 17:42:26 | → | codygman joins (~codygman@2600:380:f938:a10f:573f:2468:f5ab:7302) |
| 2020-10-30 17:42:54 | × | mastarija quits (~mastarija@93-136-65-246.adsl.net.t-com.hr) (Quit: Leaving) |
| 2020-10-30 17:43:54 | × | christo quits (~chris@81.96.113.213) (Remote host closed the connection) |
| 2020-10-30 17:44:31 | × | codygman quits (~codygman@2600:380:f938:a10f:573f:2468:f5ab:7302) (Read error: Connection reset by peer) |
| 2020-10-30 17:44:37 | → | christo joins (~chris@81.96.113.213) |
| 2020-10-30 17:44:53 | → | codygman joins (~codygman@47-184-107-46.dlls.tx.frontiernet.net) |
| 2020-10-30 17:45:03 | × | taurux quits (~taurux@net-130-25-101-121.cust.vodafonedsl.it) (Quit: ZNC 1.7.5 - https://znc.in) |
| 2020-10-30 17:45:37 | × | softwarm quits (4408f588@ip68-8-245-136.sd.sd.cox.net) (Remote host closed the connection) |
| 2020-10-30 17:46:23 | × | conal quits (~conal@64.71.133.70) (Quit: Computer has gone to sleep.) |
| 2020-10-30 17:49:56 | × | christo quits (~chris@81.96.113.213) (Remote host closed the connection) |
| 2020-10-30 17:50:00 | <mantovani> | exit |
| 2020-10-30 17:50:03 | → | zrl joins (4910eeec@c-73-16-238-236.hsd1.vt.comcast.net) |
| 2020-10-30 17:50:45 | → | conal joins (~conal@64.71.133.70) |
| 2020-10-30 17:53:43 | → | LKoen joins (~LKoen@lstlambert-657-1-123-43.w92-154.abo.wanadoo.fr) |
| 2020-10-30 17:54:39 | → | chaosmasttter joins (~chaosmast@p200300c4a70a4101f96c699b406ffa93.dip0.t-ipconnect.de) |
| 2020-10-30 17:57:33 | → | xff0x_ joins (~fox@2001:1a81:52d0:1400:27e4:ce:8da5:24fb) |
| 2020-10-30 17:57:34 | × | mbomba quits (~mbomba@bras-base-toroon2719w-grc-49-142-114-9-241.dsl.bell.ca) (Quit: WeeChat 2.9) |
| 2020-10-30 17:59:39 | × | geekosaur quits (82659a09@host154-009.vpn.uakron.edu) (Ping timeout: 245 seconds) |
| 2020-10-30 18:00:00 | × | cosimone quits (~cosimone@2001:b07:ae5:db26:d849:743b:370b:b3cd) (Remote host closed the connection) |
| 2020-10-30 18:00:01 | × | xnt14 quits (~xnt14@185.204.1.185) () |
| 2020-10-30 18:00:25 | → | cosimone joins (~cosimone@2001:b07:ae5:db26:d849:743b:370b:b3cd) |
| 2020-10-30 18:03:10 | hackage | uniqueness-periods-vector-examples 0.14.0.0 - Usage examples for the uniqueness-periods-vector series of packages https://hackage.haskell.org/package/uniqueness-periods-vector-examples-0.14.0.0 (OleksandrZhabenko) |
| 2020-10-30 18:03:18 | × | DirefulSalt quits (DirefulSal@gateway/vpn/privateinternetaccess/direfulsalt) (Read error: Connection reset by peer) |
| 2020-10-30 18:03:41 | × | cosimone quits (~cosimone@2001:b07:ae5:db26:d849:743b:370b:b3cd) (Remote host closed the connection) |
| 2020-10-30 18:03:41 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
| 2020-10-30 18:03:46 | × | fredcy quits (~fredcy@mail.yankowski.com) (Quit: ZNC - http://znc.in) |
| 2020-10-30 18:03:51 | → | DirefulSalt joins (DirefulSal@gateway/vpn/privateinternetaccess/direfulsalt) |
| 2020-10-30 18:04:03 | → | chkno joins (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) |
| 2020-10-30 18:04:05 | → | fredcy joins (~fredcy@mail.yankowski.com) |
| 2020-10-30 18:04:05 | → | cosimone joins (~cosimone@2001:b07:ae5:db26:d849:743b:370b:b3cd) |
| 2020-10-30 18:04:12 | → | softwarm joins (4408f588@ip68-8-245-136.sd.sd.cox.net) |
| 2020-10-30 18:06:03 | × | heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Remote host closed the connection) |
| 2020-10-30 18:08:24 | × | softwarm quits (4408f588@ip68-8-245-136.sd.sd.cox.net) (Ping timeout: 245 seconds) |
| 2020-10-30 18:08:25 | × | dyamon quits (~dyamon@cpc69058-oxfd26-2-0-cust662.4-3.cable.virginm.net) (Quit: WeeChat 2.9) |
| 2020-10-30 18:10:07 | → | heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) |
| 2020-10-30 18:10:22 | kuribas | is now known as kuribastard |
| 2020-10-30 18:12:24 | × | dyeplexer quits (~lol@unaffiliated/terpin) (Remote host closed the connection) |
| 2020-10-30 18:14:35 | × | kuribastard quits (~user@ptr-25vy0i7skjncktb6m9t.18120a2.ip6.access.telenet.be) (Quit: ERC (IRC client for Emacs 26.3)) |
| 2020-10-30 18:15:24 | × | nineonine quits (~textual@216-19-190-182.dyn.novuscom.net) (Quit: My MacBook has gone to sleep. ZZZzzz…) |
| 2020-10-30 18:15:38 | × | wroathe quits (~wroathe@c-73-24-27-54.hsd1.mn.comcast.net) (Ping timeout: 264 seconds) |
| 2020-10-30 18:16:21 | × | cosimone quits (~cosimone@2001:b07:ae5:db26:d849:743b:370b:b3cd) (Remote host closed the connection) |
| 2020-10-30 18:17:51 | → | geekosaur joins (82659a09@host154-009.vpn.uakron.edu) |
| 2020-10-30 18:17:52 | × | chkno quits (~chkno@75-7-2-127.lightspeed.sntcca.sbcglobal.net) (Read error: Connection reset by peer) |
All times are in UTC.