2021/04/29

2021-04-29 00:25:33 +0000kelnoky(~shao@ip1f128ba7.dynamic.kabel-deutschland.de) (Quit: WeeChat 3.1)
2021-04-29 01:37:13 +0000kajzer(~kajzer@unaffiliated/kajzer) (Quit: WeeChat 3.1)
2021-04-29 01:44:00 +0000heatwave(~heatwave@192.145.118.161) (Quit: WeeChat 3.1)
2021-04-29 01:45:54 +0000heatwave(~heatwave@192.145.118.157)
2021-04-29 01:54:03 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com) (Ping timeout: 240 seconds)
2021-04-29 02:30:52 +0000theDon(~td@94.134.91.183) (Ping timeout: 240 seconds)
2021-04-29 02:32:53 +0000theDon(~td@muedsl-82-207-238-033.citykom.de)
2021-04-29 03:23:08 +0000novas0x2a1(~blah@157-131-126-102.fiber.dynamic.sonic.net)
2021-04-29 03:25:37 +0000novas0x2a(~blah@157-131-126-102.fiber.dynamic.sonic.net) (Ping timeout: 252 seconds)
2021-04-29 03:35:13 +0000growpotkin(~growpotki@130-45-30-154.dyn.grandenetworks.net) (Quit: ZNC 1.8.2 - https://znc.in)
2021-04-29 05:33:33 +0000ChubaDuba(~ChubaDuba@46.147.119.123)
2021-04-29 05:34:20 +0000xubun2(~xubun2@unaffiliated/xubun2)
2021-04-29 05:50:41 +0000wonko7(~wonko7@62.115.229.50)
2021-04-29 06:01:24 +0000ChubaDub1(~ChubaDuba@5.165.252.247)
2021-04-29 06:04:04 +0000ChubaDuba(~ChubaDuba@46.147.119.123) (Ping timeout: 268 seconds)
2021-04-29 06:26:53 +0000cfricke(~cfricke@unaffiliated/cfricke)
2021-04-29 06:29:01 +0000materiyolo(~materiyol@112.204.174.249)
2021-04-29 06:30:17 +0000idhugo__(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net)
2021-04-29 07:14:04 +0000thc202(~thc202@unaffiliated/thc202)
2021-04-29 07:42:29 +0000notis(~notis@185.51.134.222)
2021-04-29 07:47:57 +0000werneta(~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) (Remote host closed the connection)
2021-04-29 08:01:37 +0000kelnoky(~shao@ip1f128ba7.dynamic.kabel-deutschland.de)
2021-04-29 08:11:29 +0000werneta(~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net)
2021-04-29 08:23:07 +0000materiyolo(~materiyol@112.204.174.249) (Read error: Connection reset by peer)
2021-04-29 08:27:05 +0000ChubaDub1(~ChubaDuba@5.165.252.247) (Quit: WeeChat 1.6)
2021-04-29 08:45:21 +0000kelnoky(~shao@ip1f128ba7.dynamic.kabel-deutschland.de) (Quit: WeeChat 3.1)
2021-04-29 09:10:56 +0000notis(~notis@185.51.134.222) (Ping timeout: 246 seconds)
2021-04-29 09:21:52 +0000materiyolo(~materiyol@112.204.174.249)
2021-04-29 09:45:34 +0000kajzer(~kajzer@unaffiliated/kajzer)
2021-04-29 10:23:20 +0000 <Solid> Liskni_si: r.e. #76: shouldn't we rather bracket the two peeks in getClassHint instead of the call to xGetClassHint?
2021-04-29 10:23:37 +0000 <Solid> we can't really do any meaningful cleanup with just the status
2021-04-29 10:23:53 +0000 <Liskni_si> Solid: xGetClassHint is the one that allocates the two strings
2021-04-29 10:34:56 +0000 <Solid> but if we bracket that and an exception occurs surely it's not safe to peek to get the pointers to res_{name,class}?
2021-04-29 10:36:38 +0000 <Liskni_si> not sure I follow
2021-04-29 10:36:57 +0000 <Liskni_si> the bracket is there so that if an exception occurs, we don't forget the xFrees
2021-04-29 10:39:05 +0000 <Liskni_si> s/is there/would be there/ :-)
2021-04-29 10:40:21 +0000 <Solid> but if we put `xGetClassHint` in the acquire then the release only gets a `Status`; we only get the pointers after calling `#{peek ...}`
2021-04-29 10:42:07 +0000 <Liskni_si> oh, I see
2021-04-29 10:43:05 +0000cfricke(~cfricke@unaffiliated/cfricke) (Quit: WeeChat 3.1)
2021-04-29 10:43:15 +0000 <Liskni_si> but I believe it is indeed safe to peek at the pointers, as long as you're inside the alloca XClassHint bracket
2021-04-29 10:43:37 +0000 <Liskni_si> although it is a bit weird to peek at them twice
2021-04-29 10:49:31 +0000 <Liskni_si> it's a shame there's no alloca that acts like calloc :-/
2021-04-29 10:50:02 +0000 <Liskni_si> turns out it's not really safe to peek without also making sure the pointers are initialized to NULL
2021-04-29 10:50:24 +0000 <Liskni_si> this will end up being ugly code :-/
2021-04-29 10:51:49 +0000 <Liskni_si> it's entirely possible the rest of X11 (the haskell lib) is just as unsafe with exceptions, and in that case it may be best to just give up :-)
2021-04-29 10:52:53 +0000 <Liskni_si> it's mostly async exceptions we're talking about here, xGetClassHint or peek won't raise anything meaningful really
2021-04-29 11:03:45 +0000_0dI(~user@193-154-44-255.adsl.highway.telekom.at)
2021-04-29 11:25:57 +0000notis(~notis@85.203.44.60)
2021-04-29 11:38:44 +0000 <mc47[m]> Solid did you think about including your TI datatype in the TopicSpace module? I think they're pretty neat
2021-04-29 11:42:30 +0000 <mc47[m]> DynamicProjects was cool but it messes up my workspaces, and I'm not sure if that's the expected behavior
2021-04-29 11:47:31 +0000cfricke(~cfricke@unaffiliated/cfricke)
2021-04-29 11:56:10 +0000 <Solid> mc47[m]: I think I stole that particular definition from byorgey's config so I'd feel a bit weird about just adding it :P
2021-04-29 11:57:09 +0000 <Solid> Liskni_si: I see similar xFree usage throughout, but I still feel some self-destructive urge to get this right
2021-04-29 11:57:26 +0000 <mc47[m]> Oh, byorgey wrote DynamicProjects and it goes somewhere in that direction...
2021-04-29 11:59:17 +0000 <Solid> wrote and uses are two different things sometimes :>
2021-04-29 12:05:32 +0000xubun2(~xubun2@unaffiliated/xubun2) (Ping timeout: 240 seconds)
2021-04-29 12:08:31 +0000xubun2(~xubun2@unaffiliated/xubun2)
2021-04-29 12:40:17 +0000mc47(~yecinem@89.246.239.190)
2021-04-29 12:45:15 +0000idhugo__(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection)
2021-04-29 12:45:42 +0000idhugo__(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net)
2021-04-29 12:50:16 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com)
2021-04-29 12:55:00 +0000 <mc47> Solid yep he doesn't use it apparently... I promised myself I won't spend too much on it, but it's getting harder to keep that promise :D
2021-04-29 12:55:01 +0000notis(~notis@85.203.44.60) (Read error: Connection reset by peer)
2021-04-29 12:55:14 +0000 <Solid> :)
2021-04-29 12:59:37 +0000idhugo__(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Ping timeout: 252 seconds)
2021-04-29 13:03:50 +0000cfricke(~cfricke@unaffiliated/cfricke) (Quit: WeeChat 3.1)
2021-04-29 13:17:14 +0000kelnoky(~shao@ip1f128ba7.dynamic.kabel-deutschland.de)
2021-04-29 13:36:47 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com) (Quit: Connection closed)
2021-04-29 13:41:49 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com)
2021-04-29 13:43:38 +0000eb0t(~eblip@unaffiliated/eblip)
2021-04-29 14:10:21 +0000idhugo__(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net)
2021-04-29 14:43:10 +0000cfricke(~cfricke@unaffiliated/cfricke)
2021-04-29 14:56:41 +0000kelnoky(~shao@ip1f128ba7.dynamic.kabel-deutschland.de) (Quit: WeeChat 3.1)
2021-04-29 15:36:27 +0000seschwar(~seschwar@unaffiliated/seschwar)
2021-04-29 15:40:07 +0000growpotkin(~growpotki@130-45-30-154.dyn.grandenetworks.net)
2021-04-29 15:58:26 +0000notis(~notis@2a02:2149:8a44:5700:3fe0:286c:a70f:ba77)
2021-04-29 16:04:33 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com) (Quit: Connection closed)
2021-04-29 16:06:06 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com)
2021-04-29 16:15:05 +0000 <Solid> oh you merged the x11 pr already
2021-04-29 16:15:38 +0000 <Solid> that means I'm saved from self destructive tendencies
2021-04-29 16:15:40 +0000 <Solid> yay :D
2021-04-29 16:20:09 +0000 <Liskni_si> I didn't realize you actually intended to act upon those tendencies in that same PR
2021-04-29 16:20:16 +0000 <Liskni_si> but it's for the best I guess :-)
2021-04-29 16:20:29 +0000 <Solid> :)
2021-04-29 16:20:38 +0000 <Solid> tbh I should really lose my fear of low-level stuff
2021-04-29 16:20:45 +0000 <Solid> maybe I'll revisit this at some poin
2021-04-29 16:25:33 +0000 <Liskni_si> that fear is understandable, as the type system no longer has your back there
2021-04-29 16:26:02 +0000 <Liskni_si> I wonder if running GHC-compiled code under valgrind prints a lot of noise or not
2021-04-29 16:27:05 +0000 <Liskni_si> and then there's all that modern stuff like fuzzers and address space whatever and stack canaries and whatnot that wasn't available when I was young enough to do low-level stuff on a daily basis
2021-04-29 16:27:26 +0000 <Liskni_si> but it's not as solid as a type system :-)
2021-04-29 16:27:41 +0000 <geekosaur> +RTS -V0
2021-04-29 16:28:27 +0000cfricke(~cfricke@unaffiliated/cfricke) (Ping timeout: 260 seconds)
2021-04-29 16:28:42 +0000 <geekosaur> turns off the master timer, which reduces the noise considerably
2021-04-29 16:29:55 +0000 <geekosaur> I do wonder what valgrind would make of the 2-stage allocator though
2021-04-29 16:30:06 +0000 <geekosaur> memcheck's probably a lost cause
2021-04-29 16:33:19 +0000 <geekosaur> sadly there's no RTS option to select the old memory allocator, you need a ghc built with it
2021-04-29 16:33:44 +0000 <Liskni_si> I must admit I have very little idea what you're talking about :-)
2021-04-29 16:39:07 +0000materiyolo(~materiyol@112.204.174.249) (Read error: Connection reset by peer)
2021-04-29 16:40:03 +0000 <Solid> here's to hoping that I'll pick some of this stuff up through osmosis as time goes on =)
2021-04-29 16:44:45 +0000notis(~notis@2a02:2149:8a44:5700:3fe0:286c:a70f:ba77) (Ping timeout: 250 seconds)
2021-04-29 16:45:07 +0000notis(~notis@85.203.44.100)
2021-04-29 16:55:12 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com) (Quit: Connection closed)
2021-04-29 16:57:06 +0000coldpress(~coldpress@128.9.105.34.bc.googleusercontent.com) (Ping timeout: 240 seconds)
2021-04-29 16:57:43 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com)
2021-04-29 17:00:32 +0000idhugo__(~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Ping timeout: 240 seconds)
2021-04-29 17:22:50 +0000mc47(~yecinem@89.246.239.190) (Remote host closed the connection)
2021-04-29 17:38:11 +0000xubun2(~xubun2@unaffiliated/xubun2) (Ping timeout: 240 seconds)
2021-04-29 18:12:51 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com) (Quit: Connection closed)
2021-04-29 18:16:49 +0000ADG1089(~aditya@171.76.29.233)
2021-04-29 18:21:53 +0000geekosaur(930099da@rrcs-147-0-153-218.central.biz.rr.com)
2021-04-29 19:12:35 +0000ml|(~ml|@unaffiliated/ml/x-3958674) (Ping timeout: 246 seconds)
2021-04-29 19:20:40 +0000linuxguru(~linuxguru@2607:fea8:d660:468e::3)
2021-04-29 19:25:56 +0000ml|(~ml|@unaffiliated/ml/x-3958674)
2021-04-29 19:30:41 +0000ml|(~ml|@unaffiliated/ml/x-3958674) (Ping timeout: 268 seconds)
2021-04-29 19:39:42 +0000heatwave(~heatwave@192.145.118.157) (Quit: WeeChat 3.1)
2021-04-29 19:43:00 +0000ml|(~ml|@unaffiliated/ml/x-3958674)
2021-04-29 19:44:13 +0000toniz4(~toniz4@unaffiliated/toniz4)
2021-04-29 19:44:42 +0000thc202(~thc202@unaffiliated/thc202) (Quit: thc202)
2021-04-29 19:50:14 +0000toniz4(~toniz4@unaffiliated/toniz4) (Quit: leaving)
2021-04-29 19:50:33 +0000toniz4(~toniz4@unaffiliated/toniz4)
2021-04-29 19:51:41 +0000wonko7(~wonko7@62.115.229.50) (Ping timeout: 240 seconds)
2021-04-29 20:02:13 +0000_0dI(~user@193-154-44-255.adsl.highway.telekom.at) (Ping timeout: 260 seconds)
2021-04-29 20:31:22 +0000notis(~notis@85.203.44.100) (Ping timeout: 252 seconds)
2021-04-29 20:33:31 +0000notis(~notis@2a02:2149:8a44:5700:3fe0:286c:a70f:ba77)
2021-04-29 20:45:07 +0000ADG1089(~aditya@171.76.29.233) (Remote host closed the connection)
2021-04-29 21:02:15 +0000toniz4(~toniz4@unaffiliated/toniz4) (Remote host closed the connection)
2021-04-29 21:02:29 +0000kajzer(~kajzer@unaffiliated/kajzer) (Quit: WeeChat 3.1)
2021-04-29 21:03:10 +0000kajzer(~kajzer@unaffiliated/kajzer)
2021-04-29 21:40:26 +0000linuxguru(~linuxguru@2607:fea8:d660:468e::3) (Quit: WeeChat 3.1)
2021-04-29 21:52:54 +0000seschwar(~seschwar@unaffiliated/seschwar) (Quit: :wq)
2021-04-29 22:24:18 +0000drl(~l@2600:1700:8360:3870:4d08:914b:f058:f092)
2021-04-29 22:31:37 +0000drl(~l@2600:1700:8360:3870:4d08:914b:f058:f092) (Quit: Leaving)
2021-04-29 22:54:28 +0000kajzer(~kajzer@unaffiliated/kajzer) (Quit: WeeChat 3.1)
2021-04-29 22:54:49 +0000kajzer(~kajzer@unaffiliated/kajzer)
2021-04-29 23:02:19 +0000notis(~notis@2a02:2149:8a44:5700:3fe0:286c:a70f:ba77) (Ping timeout: 260 seconds)
2021-04-29 23:19:40 +0000gazler_(~gazler@195.107.2.81.in-addr.arpa) (Ping timeout: 252 seconds)
2021-04-29 23:37:29 +0000gazler(~gazler@195.107.2.81.in-addr.arpa)