beneroth changed the topic of #picolisp to: PicoLisp language | The scalpel of software development | Channel Log: https://libera.irclog.whitequark.org/picolisp | Check www.picolisp.com for more information
aelius has quit [Ping timeout: 252 seconds]
ygrek has quit [Remote host closed the connection]
aelius has joined #picolisp
_whitelogger has joined #picolisp
chexum has quit [Remote host closed the connection]
chexum has joined #picolisp
rob_w has joined #picolisp
<rob_w> is this chat the same as on matrix/element picolisp room ?
<rob_w> ah seems not .. nvm
<beneroth_> kinda the same chat, but completely isolated
beneroth_ has quit [Quit: Leaving]
beneroth has joined #picolisp
<abu[7]> Yeah, the bridge to Matrix was abandoned by libera
<abu[7]> somehow did not work well as I understood it
<beneroth> telnet is really hard, understandable that Elements/Matrix cannot support that properly /s
<abu[7]> Is telnet involved?
<beneroth> no, telnet is basically just TCP text channel. and so is IRC.
<beneroth> no?
<abu[7]> right
<abu[7]> but just text is not hard
<beneroth> I really just have bad feelings about the elements company
<abu[7]> telnet has more things though
<abu[7]> I don't use Element
<abu[7]> FluffyChat is better imho
<beneroth> I have element at the moment, but only for you ;)
<abu[7]> thanks :)
<abu[7]> and #messe iirc
<beneroth> T
corecheckno has joined #picolisp
rob_w has quit [Remote host closed the connection]
chexum has quit [Ping timeout: 244 seconds]
chexum has joined #picolisp
<tankf33der> hi all
<abu[7]> o/ tankf33der!
<tankf33der> haven't programmed for some time and don't remember anything
<abu[7]> :)
<tankf33der> i have a list (setq L (range 1 5))
<tankf33der> (head 2 L)
<tankf33der> (1 2)
<abu[7]> T
<tankf33der> question - how to get shorter and correctly this (setq L (cddr L))
<tankf33der> >?
<abu[7]> Not really any better way. (++ L) (++ L)
<abu[7]> not shorter
<abu[7]> Perhaps (tail -2 L)
<abu[7]> but it does not set
<abu[7]> same as cddr ;)
<tankf33der> o
<tankf33der> ok
<abu[7]> How about (cut 2 'L) ?
<tankf33der> YES, cut!!!
<tankf33der> this is what i am looging for!
<tankf33der> aha
<abu[7]> Yeah
<abu[7]> : (while L (printsp (cut 2 'L)))
<abu[7]> (1 2) (3 4) (5) -> (5)
<tankf33der> yeah
<abu[7]> or
<abu[7]> : (for (L (range 1 5) L) (printsp (cut 2 'L)))
<abu[7]> (1 2) (3 4) (5)
beneroth_ has joined #picolisp
beneroth has quit [Ping timeout: 265 seconds]
beneroth_ has quit [Quit: Leaving]
beneroth has joined #picolisp