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.
<
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]>
and #messe iirc
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
<
tankf33der>
i have a list (setq L (range 1 5))
<
tankf33der>
(head 2 L)
<
tankf33der>
question - how to get shorter and correctly this (setq L (cddr L))
<
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 ;)
<
abu[7]>
How about (cut 2 'L) ?
<
tankf33der>
YES, cut!!!
<
tankf33der>
this is what i am looging for!
<
abu[7]>
: (while L (printsp (cut 2 'L)))
<
abu[7]>
(1 2) (3 4) (5) -> (5)
<
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