Home liberachat/#haskell: Logs Calendar

Logs: liberachat/#haskell

←Prev  Next→
Page 1 .. 598 599 600 601 602 603 604 605 606 607 608 .. 18009
1,800,892 events total
2021-06-23 07:12:50 dminuoso shrugs
2021-06-23 07:13:49 × fizbin quits (~fizbin@c-73-33-197-160.hsd1.nj.comcast.net) (Ping timeout: 268 seconds)
2021-06-23 07:15:54 × sheepduck quits (~sheepduck@user/sheepduck) (Remote host closed the connection)
2021-06-23 07:16:04 dhouthoo joins (~dhouthoo@178-117-36-167.access.telenet.be)
2021-06-23 07:16:31 tromp joins (~textual@dhcp-077-249-230-040.chello.nl)
2021-06-23 07:17:06 × leah2 quits (~leah@vuxu.org) (Ping timeout: 240 seconds)
2021-06-23 07:18:33 × mikoto-chan quits (~mikoto-ch@ip-213-49-189-31.dsl.scarlet.be) (Quit: mikoto-chan)
2021-06-23 07:20:52 leah2 joins (~leah@vuxu.org)
2021-06-23 07:23:06 vpan joins (~vilius@212.117.1.172)
2021-06-23 07:23:35 warnz joins (~warnz@2600:1700:77c0:5610:799f:ce24:eb20:cceb)
2021-06-23 07:24:04 trcc joins (~trcc@users-1190.st.net.au.dk)
2021-06-23 07:25:59 × fendor quits (~fendor@178.115.129.107.wireless.dyn.drei.com) (Read error: Connection reset by peer)
2021-06-23 07:28:05 × warnz quits (~warnz@2600:1700:77c0:5610:799f:ce24:eb20:cceb) (Ping timeout: 268 seconds)
2021-06-23 07:29:08 × trent2 quits (~trent@2001:8003:340d:d00:b2de:b98:7a93:b0ea) (Ping timeout: 244 seconds)
2021-06-23 07:30:07 trent2 joins (~trent@2001:8003:340d:d00:b2de:b98:7a93:b0ea)
2021-06-23 07:30:29 amahl joins (~amahl@dsl-jklbng12-54fbca-64.dhcp.inet.fi)
2021-06-23 07:31:14 <talismanick> Actually...
2021-06-23 07:32:11 <talismanick> nvm
2021-06-23 07:34:05 × mpt quits (~tom@2a02:908:1862:49e0::3) (Ping timeout: 252 seconds)
2021-06-23 07:39:14 jakalx joins (~jakalx@base.jakalx.net)
2021-06-23 07:41:26 × tusko quits (~yeurt@user/tusko) (Remote host closed the connection)
2021-06-23 07:41:43 tusko joins (~yeurt@user/tusko)
2021-06-23 07:45:09 merijn joins (~merijn@83-160-49-249.ip.xs4all.nl)
2021-06-23 07:46:55 chaosite joins (~chaosite@user/chaosite)
2021-06-23 07:47:06 × euandreh_ quits (~euandreh@2804:14c:33:9fe5:3fd5:92e4:b3b4:44e0) (Ping timeout: 240 seconds)
2021-06-23 07:48:08 euandreh_ joins (~euandreh@2804:14c:33:9fe5:a60:af0:9ad8:d1f7)
2021-06-23 07:52:04 × chaosite quits (~chaosite@user/chaosite) (Ping timeout: 252 seconds)
2021-06-23 07:52:04 × MQ-17J quits (~MQ-17J@d14-69-206-129.try.wideopenwest.com) (Ping timeout: 252 seconds)
2021-06-23 07:53:01 MQ-17J joins (~MQ-17J@d14-69-206-129.try.wideopenwest.com)
2021-06-23 07:54:30 chaosite joins (~chaosite@user/chaosite)
2021-06-23 07:55:37 × eggplantade quits (~Eggplanta@2600:1700:bef1:5e10:e846:fcb5:a54b:afb8) (Remote host closed the connection)
2021-06-23 07:58:37 × bone-baboon quits (~bone-babo@37.19.198.11) (Ping timeout: 258 seconds)
2021-06-23 07:59:33 × chaosite quits (~chaosite@user/chaosite) (Ping timeout: 265 seconds)
2021-06-23 08:11:07 <outoftime> How to move from [Maybe a] to Maybe [a], disgard Nothing and collect Just a values? `sequence` returns Nothing if some of elements is nothing.
2021-06-23 08:11:09 hendursa1 joins (~weechat@user/hendursaga)
2021-06-23 08:11:59 × hendursaga quits (~weechat@user/hendursaga) (Ping timeout: 244 seconds)
2021-06-23 08:12:35 BosonCollider joins (~olofs@90-227-86-119-no542.tbcn.telia.com)
2021-06-23 08:14:03 chaosite joins (~chaosite@user/chaosite)
2021-06-23 08:14:20 × trent2 quits (~trent@2001:8003:340d:d00:b2de:b98:7a93:b0ea) (Ping timeout: 268 seconds)
2021-06-23 08:14:23 <maerwald> talismanick: I believe Franciman is vabal maintainer
2021-06-23 08:15:02 <peddie> outoftime: catMaybes
2021-06-23 08:15:31 <peddie> :t catMaybe
2021-06-23 08:15:32 <lambdabot> error:
2021-06-23 08:15:32 <lambdabot> • Variable not in scope: catMaybe
2021-06-23 08:15:32 <lambdabot> • Perhaps you meant one of these:
2021-06-23 08:15:41 <merijn> :t catMaybes
2021-06-23 08:15:42 <lambdabot> [Maybe a] -> [a]
2021-06-23 08:15:45 <merijn> Alternatively
2021-06-23 08:15:52 <merijn> Don't make a list of Maybe a to begin with
2021-06-23 08:15:54 <merijn> :t mapMaybe
2021-06-23 08:15:56 <lambdabot> (a -> Maybe b) -> [a] -> [b]
2021-06-23 08:16:59 × derelict quits (~derelict@user/derelict) (Ping timeout: 252 seconds)
2021-06-23 08:16:59 <maerwald> talismanick: also, feel free to provide patches for https://gitlab.haskell.org/haskell/ghcup-hs/-/issues/99
2021-06-23 08:17:09 × fef quits (~thedawn@user/thedawn) (Ping timeout: 244 seconds)
2021-06-23 08:17:32 × geekosaur quits (~geekosaur@xmonad/geekosaur) (Killed (NickServ (GHOST command used by allbery_b)))
2021-06-23 08:17:32 allbery_b joins (~geekosaur@xmonad/geekosaur)
2021-06-23 08:18:13 × xff0x quits (~xff0x@2001:1a81:5256:f800:ed61:c578:88bf:885a) (Ping timeout: 244 seconds)
2021-06-23 08:18:53 × chaosite quits (~chaosite@user/chaosite) (Ping timeout: 265 seconds)
2021-06-23 08:19:02 xff0x joins (~xff0x@port-92-193-228-27.dynamic.as20676.net)
2021-06-23 08:19:56 × Morrow quits (~MorrowM_@147.161.13.60) (Ping timeout: 252 seconds)
2021-06-23 08:28:56 mikoto-chan joins (~mikoto-ch@ip-213-49-189-31.dsl.scarlet.be)
2021-06-23 08:33:30 × peterhil quits (~peterhil@dsl-hkibng32-54f849-252.dhcp.inet.fi) (Ping timeout: 252 seconds)
2021-06-23 08:37:51 Nak50 joins (~Nak@2604:3d08:2678:cc00::4b6a)
2021-06-23 08:40:30 × gentauro_ quits (~gentauro@taa-cgn11.kviknet.dk) (Changing host)
2021-06-23 08:40:30 gentauro_ joins (~gentauro@user/gentauro)
2021-06-23 08:42:08 Guest25 joins (~Guest25@l37-195-240-36.novotelecom.ru)
2021-06-23 08:45:54 ubert joins (~Thunderbi@2a02:8109:9880:303c:ca5b:76ff:fe29:f233)
2021-06-23 08:47:36 __monty__ joins (~toonn@user/toonn)
2021-06-23 08:54:18 johnw joins (~johnw@2607:f6f0:3004:1:c8b4:50ff:fef8:6bf0)
2021-06-23 08:54:34 <phaazon> just wrote a bunch of linear functions… it felt good
2021-06-23 08:55:39 × Guest25 quits (~Guest25@l37-195-240-36.novotelecom.ru) (Quit: Client closed)
2021-06-23 08:56:01 eggplantade joins (~Eggplanta@2600:1700:bef1:5e10:e846:fcb5:a54b:afb8)
2021-06-23 08:57:13 yoctocell joins (~user@h87-96-130-155.cust.a3fiber.se)
2021-06-23 08:59:08 hegstal joins (~hegstal@2a02:c7f:7604:8a00:5796:3b40:5569:c90)
2021-06-23 09:00:18 × eggplantade quits (~Eggplanta@2600:1700:bef1:5e10:e846:fcb5:a54b:afb8) (Ping timeout: 240 seconds)
2021-06-23 09:01:58 × tromp quits (~textual@dhcp-077-249-230-040.chello.nl) (Quit: My iMac has gone to sleep. ZZZzzz…)
2021-06-23 09:04:15 bontaq joins (~user@ool-18e47f8d.dyn.optonline.net)
2021-06-23 09:08:43 × Nak50 quits (~Nak@2604:3d08:2678:cc00::4b6a) (Ping timeout: 246 seconds)
2021-06-23 09:10:00 tromp joins (~textual@dhcp-077-249-230-040.chello.nl)
2021-06-23 09:10:47 × jneira quits (~jneira@212.8.115.226) (Quit: Client closed)
2021-06-23 09:11:23 jneira joins (~jneira@212.8.115.226)
2021-06-23 09:12:32 × azeem quits (~azeem@dynamic-adsl-84-220-246-231.clienti.tiscali.it) (Ping timeout: 265 seconds)
2021-06-23 09:14:03 azeem joins (~azeem@176.201.6.138)
2021-06-23 09:17:47 cfricke joins (~cfricke@user/cfricke)
2021-06-23 09:23:56 × Erutuon quits (~Erutuon@user/erutuon) (Ping timeout: 268 seconds)
2021-06-23 09:29:51 × azeem quits (~azeem@176.201.6.138) (Ping timeout: 258 seconds)
2021-06-23 09:32:00 × albet70 quits (~xxx@2400:8902::f03c:92ff:fe60:98d8) (Remote host closed the connection)
2021-06-23 09:33:05 azeem joins (~azeem@176.201.6.138)
2021-06-23 09:33:07 albet70 joins (~xxx@2400:8902::f03c:92ff:fe60:98d8)
2021-06-23 09:36:13 <outoftime> May I ask what you think about this code https://pastebin.ubuntu.com/p/Z9ZQs9k84s/ ?
2021-06-23 09:36:18 Ariakenom joins (~Ariakenom@2001:9b1:efb:fc00:70b4:9739:defc:32cb)
2021-06-23 09:38:15 × killsushi quits (~killsushi@user/killsushi) (Quit: Leaving)
2021-06-23 09:43:54 × azeem quits (~azeem@176.201.6.138) (Ping timeout: 252 seconds)
2021-06-23 09:43:56 × curiousggay_ quits (~curiousgg@178.217.208.8) (Remote host closed the connection)
2021-06-23 09:48:42 azeem joins (~azeem@176.201.6.138)
2021-06-23 09:49:08 × ubert quits (~Thunderbi@2a02:8109:9880:303c:ca5b:76ff:fe29:f233) (Remote host closed the connection)
2021-06-23 09:49:20 ubert joins (~Thunderbi@2a02:8109:9880:303c:e6b3:18ff:fe83:8f33)
2021-06-23 09:49:36 × pavonia quits (~user@user/siracusa) (Quit: Bye!)
2021-06-23 09:49:57 Scotty_Trees joins (~Scotty_Tr@162-234-179-169.lightspeed.brhmal.sbcglobal.net)
2021-06-23 09:56:22 mc47 joins (~mc47@xmonad/TheMC47)

All times are in UTC.