IRC channel logs

2022-09-19.log

back to list of logs

<drakonis>hey folks, do we have any documentation for generating an iso with channels?
<drakonis>oops
<drakonis>wrong channel
***NullPointerErro1 is now known as NullPointerError
<civodul>hmm (not (list x y)) is not optimized to #f
<sneek>Welcome back civodul, you have 1 message!
<sneek>civodul, zamfofex says: I was able to set up a simple substitute server for the Hurd! ๐ŸŽ‰ <https://usercontent.irccloud-cdn.com/file/oXINsH6b/substitutes.png> For now, it only provides Hello with those tests disabled, but that should be enough to allow people to skip much of the bootstrapping process when trying it out, I feel. Also, I assume youโ€™re partaking on the birthday event, so I enjoy it (or have enjoyed it)! ๐ŸŽ‰
<dsmith-work>Arrr, Monday gretin's, maties
<civodul>comrades, please welcome ArneBab as new committer! :-)
<civodul>really happy to have one more person on board to take care of the patch queue!!
<drakonis>nice!
*sneek applauds
<lilyp>congratulations, comrade ArneBab
<antipode>civodul: optimising (not (list x y)) to #false is not correct in the general case, as 'x' or might do set! or (raise-exception ...) or such.
<antipode>However, going by ,compile (not (list x y)), it seems to be optimisd to something like (begin x y #false) (at least, I'm not seeing any allocations, though perhaps that's due to me not being good enough at reading Guile disassembly)
***NullPointerErro1 is now known as NullPointerError
<ArneBab>civodul: thank you! <3
<ArneBab>and thank you all, too! :-)
<ArneBab>I plan to only do small stuff I can actually test fully.
<civodul>antipode: yeah, you're right
<civodul>ArneBab: that'll be much appreciated, you rock!
<apteryx>ArneBab: congrats!
<ArneBab>hg diff
<ArneBab>arg, sorry, wrong window โ€ฆ
***ft_ is now known as ft
<singpolyma>Is there a guile builtin somewhere to do basic string replacements (such as "$" with "\\$" etc)
<drakonis>string replacement?
<drakonis>string-replacement-substring
<singpolyma>drakonis: thanks!