Home freenode/#haskell: Logs Calendar

Logs: freenode/#haskell

←Prev  Next→
Page 1 .. 267 268 269 270 271 272 273 274 275 276 277 .. 5022
502,152 events total
2020-09-28 10:51:32 Alleria_ joins (~AllahuAkb@2604:2000:1484:26:152c:c49d:783f:dfa7)
2020-09-28 10:53:10 <maerwald> yushyin: some course must have started
2020-09-28 10:53:25 <yushyin> seems so :D
2020-09-28 10:53:43 × mirrorbird quits (~psutcliff@h85-8-41-6.cust.a3fiber.se) (Ping timeout: 246 seconds)
2020-09-28 10:53:54 <MarcelineVQ> maerwald: must be rough, hang in there
2020-09-28 10:54:04 × jgt quits (~jgt@46.250.27.223.pool.breezein.net) (Ping timeout: 246 seconds)
2020-09-28 10:56:07 × Alleria_ quits (~AllahuAkb@2604:2000:1484:26:152c:c49d:783f:dfa7) (Ping timeout: 260 seconds)
2020-09-28 10:56:34 heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net)
2020-09-28 10:57:15 Alleria_ joins (~AllahuAkb@69.202.254.168)
2020-09-28 10:58:54 jgt joins (~jgt@46.250.27.223.pool.breezein.net)
2020-09-28 11:01:03 × heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 265 seconds)
2020-09-28 11:02:35 × rprije quits (~rprije@27.143.220.203.dial.dynamic.acc01-myal-dub.comindico.com.au) (Ping timeout: 240 seconds)
2020-09-28 11:03:14 × Guest_50 quits (907c8df3@avp1.pip.aber.ac.uk) (Remote host closed the connection)
2020-09-28 11:03:40 v_m_v joins (~vm_v@31-10-157-87.cgn.dynamic.upc.ch)
2020-09-28 11:03:43 × jgt quits (~jgt@46.250.27.223.pool.breezein.net) (Ping timeout: 260 seconds)
2020-09-28 11:04:03 Aquazi joins (uid312403@gateway/web/irccloud.com/x-miajzzxztjikfpri)
2020-09-28 11:04:57 mirrorbird joins (~psutcliff@h85-8-41-6.cust.a3fiber.se)
2020-09-28 11:06:42 heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net)
2020-09-28 11:06:51 × merijn quits (~merijn@83-160-49-249.ip.xs4all.nl) (Ping timeout: 256 seconds)
2020-09-28 11:07:07 × mnrmnaugh quits (~mnrmnaugh@unaffiliated/mnrmnaugh) (Ping timeout: 240 seconds)
2020-09-28 11:08:04 jgt joins (~jgt@46.250.27.223.pool.breezein.net)
2020-09-28 11:08:40 × aplainzetakind quits (~johndoe@captainludd.powered.by.lunarbnc.net) (Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net)
2020-09-28 11:10:45 mnrmnaugh joins (~mnrmnaugh@unaffiliated/mnrmnaugh)
2020-09-28 11:11:10 × heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 256 seconds)
2020-09-28 11:11:33 <yushyin> maybe just add a faq entry, 'macOS common gotchas'
2020-09-28 11:12:05 rcdilorenzo joins (~rcdiloren@cpe-76-182-87-188.nc.res.rr.com)
2020-09-28 11:12:28 × jgt quits (~jgt@46.250.27.223.pool.breezein.net) (Ping timeout: 260 seconds)
2020-09-28 11:12:48 <MarcelineVQ> From what I've seen the most common gotcha is not reading the terminal output, and not pasting it into google to find out what it means if you do
2020-09-28 11:13:00 <MarcelineVQ> In that particular case a faq would go unread as well, imo
2020-09-28 11:13:02 <fendor> wasn't this mainly "I dont know about PATH"?
2020-09-28 11:13:16 <maerwald> MarcelineVQ: well, I just added https://gitlab.haskell.org/haskell/ghcup-hs/-/commit/3e429945dcd90bf65ed49dc36683c3d6ed37aa28
2020-09-28 11:13:19 <fendor> hard to write an FAQ about that
2020-09-28 11:13:22 <ph88> I have a typeclass with getStart and getStop Is there syntax that i automatically get getDuration for any instance that implements this typeclass ??
2020-09-28 11:13:33 <maerwald> which I think isn't really such a good idea, but it might decrease the noise here
2020-09-28 11:13:43 <fendor> maerwald, :+1:
2020-09-28 11:14:31 aplainzetakind joins (~johndoe@captainludd.powered.by.lunarbnc.net)
2020-09-28 11:15:31 <ph88> i think i found my answer here https://downloads.haskell.org/ghc/latest/docs/html/users_guide/glasgow_exts.html#default-method-signatures
2020-09-28 11:16:01 <MarcelineVQ> ph88: Oh ok I was gonna ask if getDuration was also part of the class
2020-09-28 11:16:42 heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net)
2020-09-28 11:17:16 jgt joins (~jgt@46.250.27.223.pool.breezein.net)
2020-09-28 11:17:20 <MarcelineVQ> mind that it doesn't need to be a class method, for the most part all you can do with a start and an end to get a duration is subtract, so there's not a huge point to having it be its own method as opposed to just a function you export that uses the class's methods
2020-09-28 11:17:26 <lortabac> ph88: including getDuration in the class makes sense if there is a possibility to provide a more efficient implementation for some instances
2020-09-28 11:17:44 <lortabac> otherwise a normal function is a better idea
2020-09-28 11:18:04 × xerox_ quits (~xerox@unaffiliated/xerox) (Ping timeout: 272 seconds)
2020-09-28 11:18:56 × v_m_v quits (~vm_v@31-10-157-87.cgn.dynamic.upc.ch) (Remote host closed the connection)
2020-09-28 11:19:27 <ph88> lortabac, why would you say a normal function is better ?
2020-09-28 11:19:31 owenowen joins (~owen@2a02:8084:d6c4:5700:64d9:defe:2add:6398)
2020-09-28 11:20:31 <lortabac> ph88: if the implementation is always the same, why should it be a class method?
2020-09-28 11:20:33 <MarcelineVQ> Because most defintions will just be getstart, dothing, get end, end - start
2020-09-28 11:20:45 × heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 240 seconds)
2020-09-28 11:23:03 v_m_v joins (~vm_v@31-10-157-87.cgn.dynamic.upc.ch)
2020-09-28 11:24:47 × bitmagie quits (~Thunderbi@200116b806356300acea16c9c4c48994.dip.versatel-1u1.de) (Quit: bitmagie)
2020-09-28 11:26:03 × _hekkaidekapus quits (~tchouri@gateway/tor-sasl/hekkaidekapus) (Ping timeout: 240 seconds)
2020-09-28 11:26:38 × owenowen quits (~owen@2a02:8084:d6c4:5700:64d9:defe:2add:6398) (Quit: Leaving.)
2020-09-28 11:26:51 heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net)
2020-09-28 11:28:11 × jespada quits (~jespada@90.254.241.6) (Ping timeout: 240 seconds)
2020-09-28 11:29:17 tchouri joins (~tchouri@gateway/tor-sasl/hekkaidekapus)
2020-09-28 11:29:28 tchouri is now known as hekkaidekapus
2020-09-28 11:30:35 jespada joins (~jespada@90.254.241.6)
2020-09-28 11:31:32 × heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 258 seconds)
2020-09-28 11:33:46 merijn joins (~merijn@83-160-49-249.ip.xs4all.nl)
2020-09-28 11:37:05 heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net)
2020-09-28 11:41:30 × auri_ quits (~auri_@fsf/memeber/auri-) (Ping timeout: 272 seconds)
2020-09-28 11:41:39 × heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 265 seconds)
2020-09-28 11:42:12 × chaosmasttter quits (~chaosmast@p200300c4a70aba01051f9f9accc8fe29.dip0.t-ipconnect.de) (Ping timeout: 260 seconds)
2020-09-28 11:44:09 Lycurgus joins (~niemand@98.4.96.130)
2020-09-28 11:45:07 × v_m_v quits (~vm_v@31-10-157-87.cgn.dynamic.upc.ch) (Remote host closed the connection)
2020-09-28 11:45:26 v_m_v joins (~vm_v@2a02:aa12:3200:6480:f507:71a:9334:3099)
2020-09-28 11:47:28 × alx741_ quits (~alx741@186.178.110.72) (Ping timeout: 260 seconds)
2020-09-28 11:47:50 × aurieeeh quits (~aurieh@static.91.102.243.136.clients.your-server.de) (Ping timeout: 272 seconds)
2020-09-28 11:48:36 heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net)
2020-09-28 11:48:58 hackage acc 0.1 - Sequence optimized for monoidal construction and folding https://hackage.haskell.org/package/acc-0.1 (NikitaVolkov)
2020-09-28 11:49:47 × v_m_v quits (~vm_v@2a02:aa12:3200:6480:f507:71a:9334:3099) (Ping timeout: 260 seconds)
2020-09-28 11:50:41 auri_ joins (~auri_@fsf/memeber/auri-)
2020-09-28 11:51:05 aurieeeh joins (~aurieh@static.91.102.243.136.clients.your-server.de)
2020-09-28 11:52:34 × kasdjf quits (2e0592c5@HSI-KBW-046-005-146-197.hsi8.kabel-badenwuerttemberg.de) (Ping timeout: 245 seconds)
2020-09-28 11:52:59 × heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 240 seconds)
2020-09-28 11:56:37 chaosmasttter joins (~chaosmast@p200300c4a70aba01051f9f9accc8fe29.dip0.t-ipconnect.de)
2020-09-28 11:56:53 × cpressey quits (~cpressey@79-72-202-6.dynamic.dsl.as9105.com) (Quit: WeeChat 1.9.1)
2020-09-28 11:59:13 TheScoop joins (~TheScoop@unaffiliated/tryte)
2020-09-28 11:59:33 × bitmapper quits (uid464869@gateway/web/irccloud.com/x-ufxmssfsrzweqpvh) (Quit: Connection closed for inactivity)
2020-09-28 12:00:01 × v4hn quits (~v4hn@185.244.214.216) ()
2020-09-28 12:00:02 alx741_ joins (~alx741@181.196.69.150)
2020-09-28 12:03:29 urodna joins (~urodna@unaffiliated/urodna)
2020-09-28 12:04:11 heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net)
2020-09-28 12:05:34 × snakemasterflex quits (~snakemast@213.100.206.23) (Ping timeout: 256 seconds)
2020-09-28 12:07:06 × cosimone quits (~cosimone@2001:b07:ae5:db26:f68c:50ff:fe0b:b774) (Read error: Connection reset by peer)
2020-09-28 12:08:31 × heatsink quits (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net) (Ping timeout: 260 seconds)
2020-09-28 12:09:47 ubert joins (~Thunderbi@178.165.129.225.wireless.dyn.drei.com)
2020-09-28 12:10:10 xerox_ joins (~xerox@unaffiliated/xerox)
2020-09-28 12:10:47 snakemasterflex joins (~snakemast@213.100.206.23)
2020-09-28 12:12:20 svipal joins (5baf3116@91-175-49-22.subs.proxad.net)
2020-09-28 12:13:59 <svipal> Yo
2020-09-28 12:14:14 heatsink joins (~heatsink@107-136-5-69.lightspeed.sntcca.sbcglobal.net)
2020-09-28 12:14:18 <svipal> Contexts not working for some reason in my projects that use inline-c
2020-09-28 12:14:47 <svipal> I have literally the same code as my old projects but somehow not working ? what is this black magic
2020-09-28 12:15:09 <svipal> ah
2020-09-28 12:15:09 <svipal> AH
2020-09-28 12:15:11 <svipal> nvm
2020-09-28 12:15:15 <merijn> New compiler? New version? New...?

All times are in UTC.