Home liberachat/#xmonad: Logs Calendar

Logs: liberachat/#xmonad

←Prev  Next→
Page 1 .. 292 293 294 295 296 297 298 299 300 301 302 .. 1847
184,641 events total
2021-10-29 07:07:05 <Solid> we catch the exception thrown by getWindowAttributes and then... print it to stdout in the same way it would be if we didn't catch it
2021-10-29 07:07:27 <Solid> s/stdout/stderr/
2021-10-29 07:07:45 <Solid> that seems rather unintuitive (and, indeed, I don't see why we would write to stderr at all, since we have something useful to do if we catch it)
2021-10-29 07:14:07 jason joins (~jason@gateway/vpn/pia/sogens)
2021-10-29 07:14:19 <jason> hello
2021-10-29 07:14:25 <jason> xmonad users
2021-10-29 07:16:04 <Solid> hi, xmonad user :)
2021-10-29 07:16:52 <liskin> Solid: what useful thing would you do instead of printing?
2021-10-29 07:17:18 <Solid> liskin: there is a default value we give back already; why print it at all?
2021-10-29 07:17:34 <liskin> I see
2021-10-29 07:18:50 <liskin> Well my local fork carries https://github.com/liskin/xmonad/commit/d084b381c414427abb77a819025a6e7ddfe0b3b7 for months :-)
2021-10-29 07:19:14 <liskin> But I never felt confident to take that upstream
2021-10-29 07:19:28 <Solid> hah
2021-10-29 07:21:01 × jason quits (~jason@gateway/vpn/pia/sogens) (Quit: Lost terminal)
2021-10-29 07:21:12 <Solid> I was quite surprised to see that we don't refresh the window list after sending a DestroyWindowEvent
2021-10-29 07:35:45 qbt joins (~qbt@user/edun)
2021-10-29 07:45:33 alternateved joins (~user@staticline-31-183-149-3.toya.net.pl)
2021-10-29 07:48:41 × gruntsplatter quits (~sogens@gateway/vpn/pia/sogens) (Ping timeout: 264 seconds)
2021-10-29 08:16:54 × geekosaur quits (~geekosaur@xmonad/geekosaur) (Read error: Connection reset by peer)
2021-10-29 08:17:38 geekosaur joins (~geekosaur@xmonad/geekosaur)
2021-10-29 08:27:40 gruntsplatter joins (~sogens@gateway/vpn/pia/sogens)
2021-10-29 08:35:18 cfricke joins (~cfricke@user/cfricke)
2021-10-29 08:38:20 × werneta quits (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) (Ping timeout: 258 seconds)
2021-10-29 08:40:52 werneta joins (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net)
2021-10-29 08:43:18 <Solid> liskin: I'll also bump the stackage resolver of xmonad to 18.14, if you don't mind
2021-10-29 08:55:29 <liskin> Yeah, forgot that one. X11 too probably if anyone cares.
2021-10-29 09:00:09 × ninjanoob454[m] quits (~ninjanoob@2001:470:69fc:105::1:75e) (Quit: You have been kicked for being idle)
2021-10-29 09:00:43 Solid does not :)
2021-10-29 09:00:56 ninjanoob454[m] joins (~ninjanoob@2001:470:69fc:105::1:75e)
2021-10-29 09:01:00 ninjanoob454[m] parts (~ninjanoob@2001:470:69fc:105::1:75e) ()
2021-10-29 09:31:15 alternat` joins (~user@staticline-31-183-149-3.toya.net.pl)
2021-10-29 09:33:23 × alternateved quits (~user@staticline-31-183-149-3.toya.net.pl) (Ping timeout: 264 seconds)
2021-10-29 09:34:18 alternat` parts (~user@staticline-31-183-149-3.toya.net.pl) ()
2021-10-29 10:03:45 alternateved joins (~user@staticline-31-183-149-3.toya.net.pl)
2021-10-29 10:18:19 <geekosaur> Solid, one reason might be left over debugging; some time back getWindowAttributes was changed to throw an exception and we originally missed updating some calls, leading to occasional crashes
2021-10-29 10:18:42 <geekosaur> plus, well, why we made that change in the first place
2021-10-29 11:03:02 × faultline quits (~christian@nat-eduroam-01.scc.kit.edu) (Ping timeout: 246 seconds)
2021-10-29 11:15:32 × cfricke quits (~cfricke@user/cfricke) (Quit: WeeChat 3.3)
2021-10-29 11:30:09 electr0n joins (~electr0n@about/security/founder/electr0n)
2021-10-29 11:31:18 × geekosaur quits (~geekosaur@xmonad/geekosaur) (Remote host closed the connection)
2021-10-29 11:32:38 geekosaur joins (~geekosaur@xmonad/geekosaur)
2021-10-29 11:40:25 × alternateved quits (~user@staticline-31-183-149-3.toya.net.pl) (Remote host closed the connection)
2021-10-29 12:19:59 × geekosaur quits (~geekosaur@xmonad/geekosaur) (Quit: Leaving)
2021-10-29 12:21:11 geekosaur joins (~geekosaur@xmonad/geekosaur)
2021-10-29 12:31:22 cfricke joins (~cfricke@user/cfricke)
2021-10-29 13:23:35 <Solid> ah, that was probably this one https://github.com/xmonad/xmonad-contrib/issues/146
2021-10-29 13:36:34 <geekosaur> that actually came afterward, I think.
2021-10-29 13:37:07 <geekosaur> the background there is that the X11 wrappers often didn't check for NULL returns and coredumped if they got them
2021-10-29 13:37:20 <geekosaur> we may still have a few of those around
2021-10-29 13:37:42 <geekosaur> so getWindowAttributes was changed to check for nullPtr and throw a proper exception
2021-10-29 13:40:26 <geekosaur> which changed rare core dumps (usually we got garbage instead of what we wanted) into not so rare exceptions, thus the changes to catch getWindowAttributes exceptions afterward
2021-10-29 13:52:38 <Solid> most of these calls look pretty easy to replace
2021-10-29 13:53:14 <Solid> except the ones that happen in layouts; no good "default case" in case of an exception there :/
2021-10-29 13:54:33 <geekosaur> yeh, you pretty much have to let those happen and be caught and the layout stuff itself will thereby default to Full aka instance LayoutClass Full where {}
2021-10-29 14:17:07 seschwar joins (~seschwar@user/seschwar)
2021-10-29 14:19:12 × qbt quits (~qbt@user/edun) (Quit: Leaving.)
2021-10-29 14:19:50 <Solid> oh will it? that's nice at least
2021-10-29 14:22:47 faultline joins (~christian@193.27.14.21)
2021-10-29 14:24:32 × cfricke quits (~cfricke@user/cfricke) (Quit: WeeChat 3.3)
2021-10-29 14:47:01 qbt joins (~qbt@user/edun)
2021-10-29 14:47:03 × qbt quits (~qbt@user/edun) (Client Quit)
2021-10-29 15:00:08 mc47 joins (~mc47@xmonad/TheMC47)
2021-10-29 15:28:24 cfricke joins (~cfricke@user/cfricke)
2021-10-29 15:59:01 × cfricke quits (~cfricke@user/cfricke) (Quit: WeeChat 3.3)
2021-10-29 16:07:21 <geekosaur> 9.2.1. let the bug hunts begin!
2021-10-29 16:07:35 × seschwar quits (~seschwar@user/seschwar) (Ping timeout: 260 seconds)
2021-10-29 16:09:20 seschwar joins (~seschwar@user/seschwar)
2021-10-29 16:13:02 geekosaur figures he'll wait for another point release, just in case
2021-10-29 16:14:06 <geekosaur> and look, another backer!
2021-10-29 16:14:52 liskin is still on 8.8, because Debian :-/
2021-10-29 16:15:07 <liskin> but I'll probably add 9.2 to the CI
2021-10-29 16:40:45 × ft quits (~ft@shell.chaostreff-dortmund.de) (Ping timeout: 244 seconds)
2021-10-29 16:41:43 ft joins (~ft@shell.chaostreff-dortmund.de)
2021-10-29 17:24:40 <liskin> hm, I guess it's a bit early
2021-10-29 17:24:54 <liskin> haskell-ci does have a PR for GHC 9.2, but ghcup won't install it
2021-10-29 17:25:02 <liskin> well at least I'm ready
2021-10-29 17:25:11 <Solid> yeah I'd give it another one or two months
2021-10-29 17:25:26 <Solid> I feel like a lot of tooling still hasn't caught up to 9.0 even
2021-10-29 17:27:39 <geekosaur> well, a lot of folks have been giving 9.0 a miss because it's so buggy. 9.2.1 is supposed to be the bugfix release
2021-10-29 17:43:15 × thunderrd quits (~thunderrd@183.182.114.92) (Ping timeout: 260 seconds)
2021-10-29 17:56:04 thunderrd joins (~thunderrd@183.182.111.101)
2021-10-29 18:36:36 × thunderrd quits (~thunderrd@183.182.111.101) (Ping timeout: 268 seconds)
2021-10-29 18:50:31 thunderrd joins (~thunderrd@183.182.115.101)
2021-10-29 19:25:22 × gruntsplatter quits (~sogens@gateway/vpn/pia/sogens) (Quit: WeeChat 3.3)
2021-10-29 19:46:13 alternateved joins (~user@staticline-31-183-149-3.toya.net.pl)
2021-10-29 20:32:01 humky joins (~humky@user/humky)
2021-10-29 22:30:19 × alternateved quits (~user@staticline-31-183-149-3.toya.net.pl) (Ping timeout: 268 seconds)
2021-10-29 22:45:59 × mc47 quits (~mc47@xmonad/TheMC47) (Remote host closed the connection)
2021-10-29 22:46:17 <liskin> oh well, all deps build just fine with 9.2.1, but xmonad doesn't: https://github.com/liskin/xmonad/runs/4051913163?check_suite_focus=true
2021-10-29 22:46:57 <liskin> a bunch of Pattern match(es) are non-exhaustive because we do let (x:xs) = something which ghc doesn't know isn't []
2021-10-29 22:48:13 <L29Ah> but there's no 9.2.1
2021-10-29 22:48:25 <liskin> is there not?
2021-10-29 22:48:52 <L29Ah> https://www.haskell.org/ghc/download.html yes
2021-10-29 22:49:35 <liskin> well, some projects like to post announcement only after everything's really released :-D
2021-10-29 22:50:11 <liskin> as opposed to us, who first post the announcment and only then try to do the release
2021-10-29 22:50:41 <liskin> but according to Ben's twitter and Ben's post to the Haskell Discourse, it's been out for a few hours
2021-10-29 22:51:30 <geekosaur> also the email to haskell-cafe
2021-10-29 22:51:48 <geekosaur> probably the downloads page is having a caching issue again
2021-10-29 22:55:02 <geekosaur> https://downloads.haskell.org/ghc/9.2.1
2021-10-29 22:55:26 bsjd joins (~user@2a02:a020:84:23d4:37d1:6af5:b908:f830)

All times are in UTC.