| 2023-05-04 00:13:08 +0200 | mncheck | (~mncheck@193.224.205.254) (Ping timeout: 240 seconds) | 
| 2023-05-04 01:25:28 +0200 | tv | (~tv@user/tv) (Read error: Connection reset by peer) | 
| 2023-05-04 01:40:50 +0200 | tv | (~tv@user/tv) | 
| 2023-05-04 02:02:44 +0200 | <[Leary]> | geekosaur: Some weird code in there, though I guess that was ezyang, not you. Like... | 
| 2023-05-04 02:02:49 +0200 | <[Leary]> | :t \mx f -> mx >>= maybe (return Nothing) (return . Just . f) | 
| 2023-05-04 02:02:50 +0200 | <lambdabot> | Monad m => m (Maybe a1) -> (a1 -> a2) -> m (Maybe a2) | 
| 2023-05-04 02:02:56 +0200 | <[Leary]> | Why not just double fmap? | 
| 2023-05-04 02:03:08 +0200 | <geekosaur> | yeh, I was pretty confused by that | 
| 2023-05-04 02:03:40 +0200 | <[Leary]> | And the direct application of a lambda in updateL1/2; why not let or where, or inline it? | 
| 2023-05-04 02:04:10 +0200 | <geekosaur> | mostly I just copied from the corresponding functions in the original (now ByWidth) | 
| 2023-05-04 02:04:27 +0200 | <geekosaur> | the mkNew… functions | 
| 2023-05-04 02:06:07 +0200 | <[Leary]> | I guess you prefer not to fix what isn't broken---personally, I wouldn't be able to resist cleaning that up. | 
| 2023-05-04 02:07:36 +0200 | <geekosaur> | yeh, I tend to stick to what's already there by default when messing with someone else's code | 
| 2023-05-04 02:09:03 +0200 | <geekosaur> | you can probably leave review comments if you want | 
| 2023-05-04 02:39:37 +0200 | tv | (~tv@user/tv) (Read error: Connection reset by peer) | 
| 2023-05-04 02:55:11 +0200 | tv | (~tv@user/tv) | 
| 2023-05-04 03:44:13 +0200 | hightower3 | (~hightower@230-61.dsl.iskon.hr) | 
| 2023-05-04 03:46:28 +0200 | hightower2 | (~hightower@230-70.dsl.iskon.hr) (Ping timeout: 240 seconds) | 
| 2023-05-04 03:56:01 +0200 | srk | (~sorki@user/srk) (Remote host closed the connection) | 
| 2023-05-04 03:56:20 +0200 | srk | (~sorki@user/srk) | 
| 2023-05-04 04:48:05 +0200 | td_ | (~td@i53870903.versanet.de) (Ping timeout: 240 seconds) | 
| 2023-05-04 04:50:05 +0200 | td_ | (~td@i5387092F.versanet.de) | 
| 2023-05-04 05:08:04 +0200 | rekahsoft | (~rekahsoft@bras-base-orllon1122w-grc-04-174-88-193-177.dsl.bell.ca) (Ping timeout: 268 seconds) | 
| 2023-05-04 08:05:12 +0200 | chomwitt | (~chomwitt@2a02:587:7a1f:b500:1ac0:4dff:fedb:a3f1) (Remote host closed the connection) | 
| 2023-05-04 08:07:07 +0200 | chomwitt | (~chomwitt@2a02:587:7a1f:b500:1ac0:4dff:fedb:a3f1) | 
| 2023-05-04 08:08:43 +0200 | chomwitt | (~chomwitt@2a02:587:7a1f:b500:1ac0:4dff:fedb:a3f1) (Remote host closed the connection) | 
| 2023-05-04 08:10:39 +0200 | chomwitt | (~chomwitt@2a02:587:7a1f:b500:1ac0:4dff:fedb:a3f1) | 
| 2023-05-04 08:50:17 +0200 | mncheck | (~mncheck@193.224.205.254) | 
| 2023-05-04 09:10:22 +0200 | mc47 | (~mc47@xmonad/TheMC47) | 
| 2023-05-04 09:10:48 +0200 | hightower3 | (~hightower@230-61.dsl.iskon.hr) (Ping timeout: 240 seconds) | 
| 2023-05-04 09:27:30 +0200 | zawaken- | (~zawaken@user/zawaken) | 
| 2023-05-04 09:28:24 +0200 | zawaken | (~zawaken@user/zawaken) (Ping timeout: 250 seconds) | 
| 2023-05-04 09:51:05 +0200 | stellacy | (~stellacy@gateway/tor-sasl/stellacy) (*.net *.split) | 
| 2023-05-04 09:51:05 +0200 | pharonix71 | (~pharonix7@user/pharonix71) (*.net *.split) | 
| 2023-05-04 09:52:07 +0200 | stellacy | (~stellacy@gateway/tor-sasl/stellacy) | 
| 2023-05-04 09:52:07 +0200 | pharonix71 | (~pharonix7@user/pharonix71) | 
| 2023-05-04 09:52:25 +0200 | <mekeor[m]> | hello. i use xmonad on guix system. after upgrading my user packages, i now can't recompile xmonad. ghc (or more specifically the linker ld) can't find "-lrt". but librt.so.1 is in my $LIBRARY_PATH. any ideas? | 
| 2023-05-04 09:54:41 +0200 | <geekosaur> | you need the non-versioned one (librt.so) at link time; librt.so.1 is a versioned runtime library | 
| 2023-05-04 09:55:16 +0200 | <geekosaur> | (this allows multiple runtime versions to coexist while allowing compilation to build against one of them) | 
| 2023-05-04 09:55:45 +0200 | <geekosaur> | I don't know guix so don't know how you proceed from here | 
| 2023-05-04 09:56:12 +0200 | <mekeor[m]> | oh.  could i also somehow tell ghc to not link against librt. i suspect it's not actually needed? | 
| 2023-05-04 09:56:32 +0200 | stellacy | (~stellacy@gateway/tor-sasl/stellacy) (Ping timeout: 240 seconds) | 
| 2023-05-04 09:56:36 +0200 | <geekosaur> | that would be up to the settings file, I think | 
| 2023-05-04 09:57:01 +0200 | <geekosaur> | cat $(ghc --print-libdir)/settings | 
| 2023-05-04 09:57:47 +0200 | <mekeor[m]> | jpoiret: why will :static fix this? :) | 
| 2023-05-04 09:57:58 +0200 | <geekosaur> | note that editing the settings file manually is a lovely way to break ghc completely; make a backup first | 
| 2023-05-04 09:58:57 +0200 | <mekeor[m]> | i just got some more info from #guix. apparently, the guix maintainers forgot to add an empty librt.a. apparently, installing gcc-toolchain:static will fix it. i'm now trying. | 
| 2023-05-04 09:59:09 +0200 | <mekeor[m]> | yes, that works. | 
| 2023-05-04 09:59:19 +0200 | <mekeor[m]> | still, thanks, geekosaur! :) | 
| 2023-05-04 09:59:51 +0200 | stellacy | (~stellacy@gateway/tor-sasl/stellacy) | 
| 2023-05-04 11:00:16 +0200 | liskin[m] | (~liskinmat@2001:470:69fc:105::768) (Quit: You have been kicked for being idle) | 
| 2023-05-04 11:00:16 +0200 | unclechu | (~unclechu@2001:470:69fc:105::354) (Quit: You have been kicked for being idle) | 
| 2023-05-04 11:06:10 +0200 | YudditeG[m] | (~errisnotn@2001:470:69fc:105::3:3dbe) | 
| 2023-05-04 11:06:48 +0200 | hightower2 | (~hightower@85.94.71.188) | 
| 2023-05-04 11:25:33 +0200 | mc47 | (~mc47@xmonad/TheMC47) (Read error: Connection reset by peer) | 
| 2023-05-04 11:39:01 +0200 | ft | (~ft@p4fc2a88b.dip0.t-ipconnect.de) (Quit: leaving) | 
| 2023-05-04 11:45:30 +0200 | chomwitt | (~chomwitt@2a02:587:7a1f:b500:1ac0:4dff:fedb:a3f1) (Ping timeout: 260 seconds) | 
| 2023-05-04 11:56:04 +0200 | mncheck | (~mncheck@193.224.205.254) (Remote host closed the connection) | 
| 2023-05-04 12:57:44 +0200 | stellacy | (~stellacy@gateway/tor-sasl/stellacy) (Ping timeout: 240 seconds) | 
| 2023-05-04 12:59:05 +0200 | stellacy | (~stellacy@gateway/tor-sasl/stellacy) | 
| 2023-05-04 13:41:00 +0200 | mc47 | (~mc47@xmonad/TheMC47) | 
| 2023-05-04 14:05:43 +0200 | stellacy | (~stellacy@gateway/tor-sasl/stellacy) (Remote host closed the connection) | 
| 2023-05-04 14:06:09 +0200 | stellacy | (~stellacy@gateway/tor-sasl/stellacy) | 
| 2023-05-04 15:26:45 +0200 | mc47 | (~mc47@xmonad/TheMC47) (Remote host closed the connection) | 
| 2023-05-04 15:31:04 +0200 | chomwitt | (~chomwitt@ppp-94-67-201-180.home.otenet.gr) | 
| 2023-05-04 15:32:36 +0200 | nexilva[m] | (~nexilvama@2001:470:69fc:105::2:cf52) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:36 +0200 | qbit_m | (~qbittapen@2001:470:69fc:105::194) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:36 +0200 | YuuYin[m] | (~yuuyin@2001:470:69fc:105::8a6) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:36 +0200 | sibi | (~sibi@2001:470:69fc:105::8ab) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:36 +0200 | VarikValefor[m] | (~varikvale@2001:470:69fc:105::a5d) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:36 +0200 | Etxeberrialex[m] | (~etxeberri@2001:470:69fc:105::1:5ae6) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:37 +0200 | jade[m] | (~hopelessn@2001:470:69fc:105::3:4043) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:37 +0200 | mon_aaraj | (~montchncs@2001:470:69fc:105::8e6b) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:37 +0200 | geekosaur[m] | (~geekosaur@xmonad/geekosaur) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:37 +0200 | IsaacShapira[m] | (~isaacshap@2001:470:69fc:105::1:c253) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:37 +0200 | hellwolf[m] | (~hellwolfm@2001:470:69fc:105::3:6a4) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:37 +0200 | YudditeG[m] | (~errisnotn@2001:470:69fc:105::3:3dbe) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:37 +0200 | Thiago[m] | (~thiagommm@2001:470:69fc:105::3:7da) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:37 +0200 | mc47[m] | (~mc47matri@2001:470:69fc:105::733) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:37 +0200 | jchia[m] | (~jchiamatr@2001:470:69fc:105::c50b) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:38 +0200 | fr1d4y[m] | (~fr1d4yenv@2001:470:69fc:105::2:ea3c) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:38 +0200 | sythemeta847[m] | (~sythemeta@2001:470:69fc:105::3:4513) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:38 +0200 | JonathanWatson[m | (~jjwmatrix@2001:470:69fc:105::2:a544) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:38 +0200 | jedimahdi[m] | (~jedimahdi@2001:470:69fc:105::3:49bf) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:39 +0200 | deip[m] | (~deipmatri@2001:470:69fc:105::2:679e) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:39 +0200 | MPT[m] | (~mpt9611ma@2001:470:69fc:105::3:4597) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:40 +0200 | HAL[m] | (~evadk8mat@2001:470:69fc:105::3ed0) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:40 +0200 | mazte[m] | (~sujammama@2001:470:69fc:105::2:ea4c) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:40 +0200 | meck[m] | (~meckmeckd@2001:470:69fc:105::3a51) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:41 +0200 | mekeor[m] | (~mekeormat@2001:470:69fc:105::17e4) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:41 +0200 | sparksdrinker[m] | (~sparksdri@2001:470:69fc:105::3:1939) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:41 +0200 | derinachan[m] | (~derina541@2001:470:69fc:105::3:4af6) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:41 +0200 | Solid[m] | (~slot-matr@2001:470:69fc:105::1:a84) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:41 +0200 | lykos153 | (~lykos153@2001:470:69fc:105::c8ea) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:41 +0200 | nasrudin_[m] | (~nasrudinm@2001:470:69fc:105::2:f299) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:42 +0200 | HB[m] | (~hash@2001:470:69fc:105::1:19e2) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:32:43 +0200 | jaspion[m] | (~jaspionmo@2001:470:69fc:105::2:fd41) (Quit: Bridge terminating on SIGTERM) | 
| 2023-05-04 15:36:01 +0200 | sibi | (~sibi@2001:470:69fc:105::8ab) | 
| 2023-05-04 15:43:53 +0200 | qbit_m | (~qbittapen@2001:470:69fc:105::194) | 
| 2023-05-04 15:43:53 +0200 | YuuYin[m] | (~yuuyin@2001:470:69fc:105::8a6) | 
| 2023-05-04 15:43:53 +0200 | VarikValefor[m] | (~varikvale@2001:470:69fc:105::a5d) | 
| 2023-05-04 15:43:53 +0200 | mon_aaraj | (~montchncs@2001:470:69fc:105::8e6b) | 
| 2023-05-04 15:43:53 +0200 | nexilva[m] | (~nexilvama@2001:470:69fc:105::2:cf52) | 
| 2023-05-04 15:43:53 +0200 | sythemeta847[m] | (~sythemeta@2001:470:69fc:105::3:4513) | 
| 2023-05-04 15:43:53 +0200 | mpt7919[m] | (~mpt9611ma@2001:470:69fc:105::3:4597) | 
| 2023-05-04 15:43:53 +0200 | jade[m]1 | (~hopelessn@2001:470:69fc:105::3:4043) | 
| 2023-05-04 15:43:53 +0200 | Etxeberrialex[m] | (~etxeberri@2001:470:69fc:105::1:5ae6) | 
| 2023-05-04 15:43:53 +0200 | hellwolf[m] | (~hellwolfm@2001:470:69fc:105::3:6a4) | 
| 2023-05-04 15:43:54 +0200 | IsaacShapira[m] | (~isaacshap@2001:470:69fc:105::1:c253) | 
| 2023-05-04 15:43:54 +0200 | geekosaur[m] | (~geekosaur@xmonad/geekosaur) | 
| 2023-05-04 15:43:54 +0200 | derinachan[m] | (~derina541@2001:470:69fc:105::3:4af6) | 
| 2023-05-04 15:43:54 +0200 | YudditeG[m] | (~errisnotn@2001:470:69fc:105::3:3dbe) | 
| 2023-05-04 15:44:05 +0200 | jaspion[m] | (~jaspionmo@2001:470:69fc:105::2:fd41) | 
| 2023-05-04 15:44:05 +0200 | Solid[m] | (~slot-matr@2001:470:69fc:105::1:a84) | 
| 2023-05-04 15:44:05 +0200 | mazte[m] | (~sujammama@2001:470:69fc:105::2:ea4c) | 
| 2023-05-04 15:44:05 +0200 | jchia[m] | (~jchiamatr@2001:470:69fc:105::c50b) | 
| 2023-05-04 15:44:05 +0200 | JonathanWatson[m | (~jjwmatrix@2001:470:69fc:105::2:a544) | 
| 2023-05-04 15:44:05 +0200 | mc47[m] | (~mc47matri@2001:470:69fc:105::733) | 
| 2023-05-04 15:44:06 +0200 | jedimahdi[m] | (~jedimahdi@2001:470:69fc:105::3:49bf) | 
| 2023-05-04 15:44:06 +0200 | sparksdrinker[m] | (~sparksdri@2001:470:69fc:105::3:1939) | 
| 2023-05-04 15:44:06 +0200 | HAL[m] | (~evadk8mat@2001:470:69fc:105::3ed0) | 
| 2023-05-04 15:44:06 +0200 | meck[m] | (~meckmeckd@2001:470:69fc:105::3a51) | 
| 2023-05-04 15:44:06 +0200 | Thiago[m] | (~thiagommm@2001:470:69fc:105::3:7da) | 
| 2023-05-04 15:44:06 +0200 | fr1d4y[m] | (~fr1d4yenv@2001:470:69fc:105::2:ea3c) | 
| 2023-05-04 15:44:06 +0200 | HB[m] | (~hash@2001:470:69fc:105::1:19e2) | 
| 2023-05-04 15:44:06 +0200 | nasrudin_[m] | (~nasrudinm@2001:470:69fc:105::2:f299) | 
| 2023-05-04 15:44:06 +0200 | deip[m] | (~deipmatri@2001:470:69fc:105::2:679e) | 
| 2023-05-04 15:44:07 +0200 | lykos153 | (~lykos153@2001:470:69fc:105::c8ea) | 
| 2023-05-04 15:53:03 +0200 | mekeor[m] | (~mekeormat@2001:470:69fc:105::17e4) | 
| 2023-05-04 18:22:47 +0200 | mazte[m] | antagonista[m] | 
| 2023-05-04 19:54:13 +0200 | hightower2 | (~hightower@85.94.71.188) (Ping timeout: 268 seconds) | 
| 2023-05-04 21:07:11 +0200 | stackdroid18 | (14094@de1.hashbang.sh) | 
| 2023-05-04 23:01:21 +0200 | ft | (~ft@p4fc2a88b.dip0.t-ipconnect.de) | 
| 2023-05-04 23:05:21 +0200 | stackdroid18 | (14094@de1.hashbang.sh) (Quit: hasta la vista... tchau!) | 
| 2023-05-04 23:24:22 +0200 | noex | (~null@user/noex) (Quit: :q!) |