IRC channel logs

2024-05-23.log

back to list of logs

<old>if cl has it, why not guile
<Kolev>daviwil, Gerald Sussman fez?
<daviid>slightly ot, though i use sxml, i have a little problem to pad a row, in a table defined using div and class def ... here - https://paste.centos.org/view/162b2839 - if anyone here knows why and how to fix it ... thanks
<daviwil>Kolev: https://upload.wikimedia.org/wikipedia/commons/0/0e/Jerry_Sussman.jpg
<old>is there a channel for hoot?
<dthompson>old: #spritely
<old>dthompson: thx
<old>I wonder, will Guile be the first scheme entirely runnable on the web via hoot?
<freakingpenguin>Is there a built-in one-function procedure to append lists together and delete duplicates simultaneously or do you have to append and delete separately?
<dsmith>freakingpenguin, Prob separate. See https://www.gnu.org/software/guile/manual/html_node/SRFI_002d1-Deleting.html#index-delete_002dduplicates
<shawnw>With the SRFI-1 module loaded, (delete-duplicates! (append list1 list2 ... listN)) is simple enough.
<shawnw>Or maybe a trip through a hash table if you don't care about order.
<mwette>I think I lost my erc. if this is repeat I apologize
<mwette>srfi-1 lset-union will do it
<mwette>(lset-union equal? '(a b c) '(b c d)) => (d a b c)