jackdaniel changed the topic of #commonlisp to: Common Lisp, the #1=(programmable . #1#) programming language | Wiki: <https://www.cliki.net> | IRC Logs: <https://irclog.tymoon.eu/libera/%23commonlisp> | Cookbook: <https://lispcookbook.github.io/cl-cookbook> | Pastebin: <https://plaster.tymoon.eu/>
slyrus has quit [Ping timeout: 260 seconds]
slyrus has joined #commonlisp
eddof13 has joined #commonlisp
<josrr> Kingsy: I know you ditched Jonathan, I just want to show you that the code in the documentation works https://plaster.tymoon.eu/view/4205#4205
<Kingsy> haha then what the... ?
jonatack has joined #commonlisp
<josrr> It seems that your %to-json method, it is not the same as jonathan:%to-json; most likely yours is defined in another package.
b00p has joined #commonlisp
slyrus has quit [Remote host closed the connection]
dwhelan1_ has joined #commonlisp
yitzi has joined #commonlisp
istewart has joined #commonlisp
amb007 has joined #commonlisp
dwhelan1_ has quit [Quit: Leaving]
Lycurgus has joined #commonlisp
amb007 has quit [Ping timeout: 255 seconds]
kevingal has quit [Ping timeout: 255 seconds]
kevingal has joined #commonlisp
dwhelan1890 has joined #commonlisp
dwhelan1890 has quit [Client Quit]
dwhelan1890 has joined #commonlisp
dwhelan1890 has quit [Client Quit]
slyrus has joined #commonlisp
jon_atack has joined #commonlisp
b00p has quit [Quit: b00p]
jonatack has quit [Ping timeout: 272 seconds]
b00p has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
dra has quit [Ping timeout: 272 seconds]
skeemer has quit [Ping timeout: 255 seconds]
pillton has joined #commonlisp
brokkoli_origin has quit [Ping timeout: 252 seconds]
slyrus has joined #commonlisp
brokkoli_origin has joined #commonlisp
slyrus has quit [Ping timeout: 260 seconds]
brokkoli_origin has quit [Remote host closed the connection]
svm is now known as msv
Inline has quit [Quit: Leaving]
Inline has joined #commonlisp
brokkoli_origin has joined #commonlisp
slyrus has joined #commonlisp
slyrus has quit [Ping timeout: 252 seconds]
notzmv has joined #commonlisp
random-nick has quit [Ping timeout: 256 seconds]
eddof13 has quit [Quit: eddof13]
slyrus has joined #commonlisp
eddof13 has joined #commonlisp
eddof13 has quit [Client Quit]
Mon_Ouie has quit [Read error: Connection reset by peer]
slyrus has quit [Ping timeout: 260 seconds]
tyson2 has quit [Remote host closed the connection]
PuercoPop has joined #commonlisp
mulk has quit [Ping timeout: 264 seconds]
mulk has joined #commonlisp
slyrus has joined #commonlisp
kevingal has quit [Ping timeout: 256 seconds]
amb007 has joined #commonlisp
slyrus has quit [Ping timeout: 256 seconds]
amb007 has quit [Ping timeout: 255 seconds]
tertek has quit [Quit: %quit%]
tertek has joined #commonlisp
brokkoli_origin has quit [Ping timeout: 260 seconds]
brokkoli_origin has joined #commonlisp
waleee has quit [Ping timeout: 272 seconds]
keinbock has quit []
slyrus has joined #commonlisp
slyrus has quit [Ping timeout: 255 seconds]
slyrus has joined #commonlisp
b00p has quit [Quit: b00p]
josrr has quit [Remote host closed the connection]
slyrus has quit [Ping timeout: 268 seconds]
slyrus has joined #commonlisp
vyrsh has joined #commonlisp
igemnace has joined #commonlisp
slyrus has quit [Ping timeout: 264 seconds]
ec has quit [Ping timeout: 260 seconds]
dsmith has quit [Ping timeout: 246 seconds]
ec has joined #commonlisp
yitzi has quit [Remote host closed the connection]
dsmith has joined #commonlisp
yitzi has joined #commonlisp
slyrus has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
rtypo has quit [Quit: WeeChat 4.2.1]
decweb has quit [Ping timeout: 260 seconds]
X-Scale has joined #commonlisp
slyrus has joined #commonlisp
slyrus has quit [Ping timeout: 240 seconds]
ec has quit [Read error: Connection reset by peer]
ec has joined #commonlisp
mgl has joined #commonlisp
slyrus has joined #commonlisp
bjorkintosh has quit [Ping timeout: 268 seconds]
slyrus has quit [Ping timeout: 260 seconds]
slyrus has joined #commonlisp
<Bubblegumdrop> Kingsy I also ran into this problem (storing floating points in SQL db yields bizarre results), I used fixed point arithmetic http://paste.debian.net/hidden/d923ed5f/
<ixelp> Debian Pastezone
<Bubblegumdrop> I'm not sure about json
<Bubblegumdrop> Kingsy jonathan has built in to-json that seems to work?
<Bubblegumdrop> CL-TAGMAN> (jonathan:to-json (list :test 1.44d0))
<Bubblegumdrop> "{\"TEST\":1.44}"
wacki has joined #commonlisp
<beach> *sigh* Bubblegumdrop: You can't represent a decimal value with exactly two decimal digits exactly in Common Lisp, nor in most modern programming languages.
<gilberth> I doubt that this was assumed even.
<Bubblegumdrop> I was using this code specifically for "100 cents in a dollar" money arithmetic allowing for some inaccuracy e.g. always rounding from 0.001 to 0.00
<aeth> A JSON library could do it. That particular JSON library might not be able to. As I mentioned in #clschool you could do something like (/ (round (* (expt 10 2) 1.234)) (expt 10 2)) to produce a rational, but the JSON library would have to be able to accept a rational, which apparently that one does not, and it wouldn't round trip (back into a rational) without something fancy like a schema or something.
<beach> ... exactly as a floating-point value, I meant of course.
slyrus has quit [Ping timeout: 272 seconds]
<Bubblegumdrop> yes using exact floating points led to bizarre results
<Bubblegumdrop> like how (= 1.439999999..6 1.44) => T
<Bubblegumdrop> I was using SQLite as the backing SQL db and it only stores REAL floating points
<beach> Bubblegumdrop: What is an "exact floating point"?
<Bubblegumdrop> kind of like "do what I mean"
<gilberth> I just was a bit perplexed because that value printed when read as a single float would would be the same as single float 1.44. So I suspected coercion to single float in the library. I took that term "rounding error" used as a hint. And for all practical purposes you can assume that JSON uses double floats. At least I would expect that using the same library I don't loose bits when I write JSON and read it again.
<Bubblegumdrop> e.g. if I have 0.5 and 0.5 I expect 1.00 dollars, not 1.00000000000000000000007 dollars
<aeth> Bubblegumdrop: every finite representation of numbers will produce bizarre results sometimes, but you could e.g. use decimal floating point, too, not just fixed point (assuming it is in a certain range for a certain number of digits precision)
<Bubblegumdrop> This code allows for arbitrary "increments"
<aeth> rationals, however, aren't finite and so don't have this problem. But, well, you can easily have them grow grow grow into huge bignums over bignums
<aeth> (* OK, bignums are finite in practice, but just add more RAM and make the heap larger)
<Bubblegumdrop> I could probably add a class instead of +DIVISION-COUNTER+ being set to some specific value
<beach> Bubblegumdrop: That particular one will work, but there is no way you can add 0.35 and 0.65 and get 1 exactly.
<Bubblegumdrop> That's precicely the issue I encountered
<beach> Well, maybe this particular example works too, I didn't check.
<Bubblegumdrop> Yes, I can paste the test suite for this code if you like, it's pretty straightforward
<beach> Don't paste it for me.
<aeth> I've written my own (almost certainly not optimized) fixed point before, but it's... ugh. Particularly when you get to SIN, COS, TAN, EXP, EXPT, SQRT... I gave up there. Not like rationals will help there, either, though.
shka has joined #commonlisp
slyrus has joined #commonlisp
slyrus has quit [Remote host closed the connection]
slyrus has joined #commonlisp
amb007 has joined #commonlisp
istewart has quit [Quit: Konversation terminated!]
amb007 has quit [Ping timeout: 268 seconds]
amb007 has joined #commonlisp
Pixel_Outlaw has quit [Remote host closed the connection]
zetef has joined #commonlisp
King_julian has joined #commonlisp
Renfield has quit [Ping timeout: 240 seconds]
wacki has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
Renfield has joined #commonlisp
iNomad has joined #commonlisp
pve has joined #commonlisp
zetef has quit [Ping timeout: 255 seconds]
chomwitt has joined #commonlisp
rgherdt has joined #commonlisp
slyrus has quit [Remote host closed the connection]
chomwitt has quit [Ping timeout: 260 seconds]
amb007 has quit [Ping timeout: 246 seconds]
amb007 has joined #commonlisp
slyrus has joined #commonlisp
synchromesh has quit [Read error: Connection reset by peer]
synchromesh has joined #commonlisp
slyrus has quit [Ping timeout: 256 seconds]
King_julian has quit [Ping timeout: 255 seconds]
iNomad has quit [Remote host closed the connection]
iNomad has joined #commonlisp
meritamen has joined #commonlisp
* splittist wonders what to do about accommodation in Vienna with the venue still uncertain.
<Mondenkind> 10
slyrus has joined #commonlisp
chomwitt has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
zetef has joined #commonlisp
danse-nr3 has joined #commonlisp
Cymew has joined #commonlisp
danse-nr3 has quit [Ping timeout: 260 seconds]
slyrus has joined #commonlisp
attila_lendvai has joined #commonlisp
danse-nr3 has joined #commonlisp
slyrus has quit [Ping timeout: 260 seconds]
meritamen has quit [Quit: Client closed]
amb007 has quit [Ping timeout: 240 seconds]
amb007 has joined #commonlisp
dino_tutter has joined #commonlisp
bendersteed has joined #commonlisp
alcor has joined #commonlisp
igemnace has quit [Read error: Connection reset by peer]
King_julian has joined #commonlisp
vyrsh has quit [Ping timeout: 255 seconds]
slyrus has joined #commonlisp
<splittist> Too late - decision made!
chomwitt has quit [Quit: WeeChat 3.8]
tok has joined #commonlisp
igemnace has joined #commonlisp
slyrus has quit [Ping timeout: 272 seconds]
danse-nr3 has quit [Ping timeout: 268 seconds]
zetef has quit [Ping timeout: 260 seconds]
danse-nr3 has joined #commonlisp
bendersteed has quit [Remote host closed the connection]
bendersteed has joined #commonlisp
danse-nr3 has quit [Remote host closed the connection]
varjag has joined #commonlisp
danse-nr3 has joined #commonlisp
yitzi has quit [Remote host closed the connection]
zetef has joined #commonlisp
slyrus has joined #commonlisp
attila_lendvai has quit [Ping timeout: 255 seconds]
donleo has joined #commonlisp
Inline has quit [Ping timeout: 264 seconds]
slyrus has quit [Ping timeout: 260 seconds]
zetef has quit [Ping timeout: 264 seconds]
anticomputer has joined #commonlisp
anticomputer_ has quit [Ping timeout: 260 seconds]
anticomputer has quit [Remote host closed the connection]
anticomputer has joined #commonlisp
slyrus has joined #commonlisp
ec has quit [Remote host closed the connection]
skeemer has joined #commonlisp
ec has joined #commonlisp
Lord_of_Life has quit [Ping timeout: 255 seconds]
Lord_of_Life has joined #commonlisp
slyrus has quit [Ping timeout: 260 seconds]
<Shinmera> It should be close to the SBCL25 venue
slyrus has joined #commonlisp
zetef has joined #commonlisp
prxq has joined #commonlisp
zetef has quit [Remote host closed the connection]
slyrus has quit [Ping timeout: 268 seconds]
decweb has joined #commonlisp
zetef has joined #commonlisp
vyrsh has joined #commonlisp
slyrus has joined #commonlisp
Krystof has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
zetef has quit [Remote host closed the connection]
random-nick has joined #commonlisp
slyrus has joined #commonlisp
easye has quit [Remote host closed the connection]
yitzi has joined #commonlisp
mm007emko has quit [Ping timeout: 260 seconds]
easye has joined #commonlisp
mm007emko has joined #commonlisp
slyrus has quit [Ping timeout: 260 seconds]
pillton has quit [Remote host closed the connection]
Inline has joined #commonlisp
mm007emko has quit [Read error: Connection reset by peer]
mm007emko has joined #commonlisp
amb007 has quit [Ping timeout: 268 seconds]
amb007 has joined #commonlisp
chsasank8 has joined #commonlisp
slyrus has joined #commonlisp
chsasank has quit [Ping timeout: 268 seconds]
chsasank8 is now known as chsasank
<scymtym> ::notify mivanchev in esrap rules, you can sometimes avoid :destructure + ignore like this (:destructure (one two three) (declare (ignore one three)) two) → (:function second) (:lambda (two) two) that is by "chaining" multiple rule options or even just (:function second) in this particular case which does not need a body
<Colleen> scymtym: Got it. I'll let mivanchev know as soon as possible.
attila_lendvai has joined #commonlisp
bjorkintosh has joined #commonlisp
bjorkintosh has joined #commonlisp
bjorkintosh has quit [Changing host]
slyrus has quit [Ping timeout: 256 seconds]
markb1 has quit [Ping timeout: 264 seconds]
synchromesh has quit [Read error: Connection reset by peer]
younder has joined #commonlisp
synchromesh has joined #commonlisp
vyrsh has quit [Quit: Konversation terminated!]
slyrus has joined #commonlisp
danse-nr3 has quit [Ping timeout: 268 seconds]
bendersteed has quit [Quit: bendersteed]
slyrus has quit [Ping timeout: 260 seconds]
markb1 has joined #commonlisp
bendersteed has joined #commonlisp
chsasank9 has joined #commonlisp
chsasank has quit [Ping timeout: 256 seconds]
chsasank9 is now known as chsasank
tyson2 has joined #commonlisp
slyrus has joined #commonlisp
a51 has quit [Quit: WeeChat 4.2.1]
danse-nr3 has joined #commonlisp
bendersteed has quit [Remote host closed the connection]
bendersteed has joined #commonlisp
thuna` has joined #commonlisp
a51 has joined #commonlisp
josrr has joined #commonlisp
amb007 has quit [Ping timeout: 255 seconds]
danse-nr3 has quit [Remote host closed the connection]
danse-nr3 has joined #commonlisp
pfdietz has quit [Quit: Client closed]
King_julian has quit [Ping timeout: 272 seconds]
pfdietz has joined #commonlisp
X-Scale has quit [Quit: Client closed]
slyrus has quit [Ping timeout: 264 seconds]
rgherdt has quit [Ping timeout: 240 seconds]
b00p has joined #commonlisp
chrcav has quit [Ping timeout: 255 seconds]
reb has quit [Remote host closed the connection]
chrcav has joined #commonlisp
danse-nr3 has quit [Remote host closed the connection]
reb has joined #commonlisp
danse-nr3 has joined #commonlisp
b00p has quit [Quit: b00p]
danse-nr3 has quit [Ping timeout: 272 seconds]
b00p has joined #commonlisp
slyrus has joined #commonlisp
King_julian has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
b00p has quit [Quit: b00p]
danse-nr3 has joined #commonlisp
danse-nr3 has quit [Remote host closed the connection]
danse-nr3 has joined #commonlisp
slyrus has joined #commonlisp
a51 has quit [Quit: WeeChat 4.2.1]
jrx has joined #commonlisp
slyrus has quit [Ping timeout: 255 seconds]
King_julian has quit [Ping timeout: 260 seconds]
mm007emko has quit [Ping timeout: 256 seconds]
mm007emko has joined #commonlisp
kevingal has joined #commonlisp
slyrus has joined #commonlisp
King_julian has joined #commonlisp
bendersteed has quit [Remote host closed the connection]
ronald has quit [Ping timeout: 252 seconds]
bendersteed has joined #commonlisp
rgherdt has joined #commonlisp
bendersteed has quit [Changing host]
bendersteed has joined #commonlisp
attila_lendvai has quit [Ping timeout: 240 seconds]
ronald has joined #commonlisp
ronald has quit [Read error: Connection reset by peer]
ronald has joined #commonlisp
reb has quit [Remote host closed the connection]
jon_atack has quit [Ping timeout: 246 seconds]
josrr has quit [Ping timeout: 268 seconds]
jonatack has joined #commonlisp
josrr has joined #commonlisp
Guest52 has quit [Ping timeout: 250 seconds]
slyrus has quit [Ping timeout: 264 seconds]
zetef has joined #commonlisp
tyson2 has quit [Read error: Connection reset by peer]
nij- has joined #commonlisp
FragmentedCurve has joined #commonlisp
slyrus has joined #commonlisp
didi has joined #commonlisp
<didi> Can `coerce' be extended? For example, so I can use it to coerce a self defined class of sparse matrix into (array * (* *))?
pfdietz has quit [Ping timeout: 250 seconds]
varjag has quit [Quit: ERC (IRC client for Emacs 27.1)]
pfdietz has joined #commonlisp
<bike> No.
<didi> Thanks.
bendersteed has quit [Quit: bendersteed]
eddof13 has joined #commonlisp
slyrus has quit [Ping timeout: 252 seconds]
<yitzi> Extensible sequences might count as a small extension window?
eddof13 has quit [Client Quit]
pfdietz has quit [Ping timeout: 250 seconds]
zetef has quit [Remote host closed the connection]
mm007emko has quit [Read error: Connection reset by peer]
mm007emko has joined #commonlisp
slyrus has joined #commonlisp
slyrus has quit [Ping timeout: 256 seconds]
vyrsh has joined #commonlisp
Lycurgus has quit [Quit: leaving]
waleee has joined #commonlisp
vyrsh has quit [Quit: Konversation terminated!]
slyrus has joined #commonlisp
nij- has quit [Ping timeout: 252 seconds]
slyrus has quit [Ping timeout: 268 seconds]
King_julian has quit [Ping timeout: 260 seconds]
semarie has quit [Quit: WeeChat 4.2.1]
semarie has joined #commonlisp
danse-nr3 has quit [Ping timeout: 255 seconds]
jrx has quit [Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.3.50)]
zetef has joined #commonlisp
yitzi has quit [Remote host closed the connection]
slyrus has joined #commonlisp
eddof13 has joined #commonlisp
kevingal has quit [Ping timeout: 260 seconds]
vyrsh has joined #commonlisp
tyson2 has joined #commonlisp
b00p has joined #commonlisp
alcor has quit [Remote host closed the connection]
danza has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
Inline has quit [Ping timeout: 256 seconds]
dra has joined #commonlisp
Inline has joined #commonlisp
yitzi has joined #commonlisp
zetef has quit [Remote host closed the connection]
slyrus has joined #commonlisp
igemnace has quit [Read error: Connection reset by peer]
kevingal has joined #commonlisp
Guest52 has joined #commonlisp
amb007 has joined #commonlisp
b00p has quit [Quit: b00p]
a51 has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
jon_atack has joined #commonlisp
jonatack has quit [Ping timeout: 260 seconds]
b00p has joined #commonlisp
igemnace has joined #commonlisp
Cymew has quit [Ping timeout: 260 seconds]
slyrus has joined #commonlisp
wacki has joined #commonlisp
cage has joined #commonlisp
kevingal has quit [Ping timeout: 268 seconds]
josrr has quit [Remote host closed the connection]
b00p has quit [Quit: b00p]
igemnace has quit [Quit: WeeChat 4.2.1]
slyrus has quit [Ping timeout: 268 seconds]
josrr has joined #commonlisp
Pixel_Outlaw has joined #commonlisp
ec has quit [Ping timeout: 260 seconds]
ec has joined #commonlisp
dra has quit [Ping timeout: 268 seconds]
Inline has quit [Quit: Leaving]
Inline has joined #commonlisp
thuna` has quit [Ping timeout: 272 seconds]
slyrus has joined #commonlisp
danza has quit [Ping timeout: 268 seconds]
iNomad has quit [Quit: leaving]
nij- has joined #commonlisp
slyrus has quit [Ping timeout: 240 seconds]
slyrus has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
random-nick has quit [Ping timeout: 256 seconds]
slyrus has joined #commonlisp
random-nick has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
slyrus has joined #commonlisp
amb007 has quit [Ping timeout: 255 seconds]
amb007 has joined #commonlisp
pfdietz has joined #commonlisp
slyrus has quit [Ping timeout: 255 seconds]
eddof13 has quit [Quit: eddof13]
eddof13 has joined #commonlisp
shka has quit [Ping timeout: 260 seconds]
zetef has joined #commonlisp
slyrus has joined #commonlisp
zetef has quit [Remote host closed the connection]
thuna` has joined #commonlisp
slyrus has quit [Ping timeout: 256 seconds]
reb has joined #commonlisp
nij- has quit [Ping timeout: 268 seconds]
vyrsh has quit [Quit: Konversation terminated!]
cage has quit [Quit: rcirc on GNU Emacs 29.2]
zetef has joined #commonlisp
zxcvz has joined #commonlisp
zxcvz has quit [Client Quit]
shka has joined #commonlisp
slyrus has joined #commonlisp
slyrus has quit [Ping timeout: 272 seconds]
<Kingsy> Bubblegumdrop: yeah I went to jonathan and it worked just fine. but with help yesterday I was also able to make shasht work too
slyrus has joined #commonlisp
<Kingsy> does anyone know if the loop macro has a continue? to just skip the curent loop iteration and continuewith the next one?
<bike> it does not, but you can use conditionals to accomplish the same thing
yitzi has quit [Remote host closed the connection]
<Kingsy> yeah true. but ugly though
<Kingsy> anyway yep. that works. I wonder if its better to use a different looping construct that has this. - if there are any
varjag has joined #commonlisp
slyrus has quit [Ping timeout: 256 seconds]
zetef has quit [Remote host closed the connection]
<didi> Kingsy: I use recursion for this kind of thing.
<Kingsy> didi: ugh. hahaha recursion hurts my brain so I usually avoid it
yitzi has joined #commonlisp
shka has quit [Ping timeout: 268 seconds]
<didi> Kingsy: Interesting. Lisp is usually full of recursion.
<Kingsy> haha I mean its ok. I can read it. but I tend to just stay away from it when I write code. there is usually another way, albeit more verbose
<cdegroot> If recursion hurts your brain but LOOP does not.... there's brain research people that probably want a word with you ;-)
<Kingsy> lol!
<Kingsy> yeah tbh I don't really enjoy loop either.
<Kingsy> woudl you all recommend drakma for making HTTP requests in CL? or are there other choices that are nicer to use? for example I cant see a way of getting the status code from the response with drakma. no mention of it in the docs either. so just asking before I jump into the source.
<didi> You don't like `loop', you don't like recursion. You might get into trouble sometime.
<Kingsy> into trouble? :D
<didi> I mean, you do not enjoy some common constructions in lisp.
slyrus has joined #commonlisp
<Kingsy> maybe I just need to get used to it!
<Kingsy> loop I mean
<didi> Do you like `do'?
<Kingsy> yeah thats much more familiar, i.e what I know as a for loop syntax or at least close.
<didi> Well, then there you go.
tyson2 has quit [Remote host closed the connection]
<Kingsy> hah yeah!
<scymtym> Kingsy: the status code as an integer is the second return value of DRAKMA:HTTP-REQUEST. the documentation string explains all return values where it says "The function returns SEVEN values ..."
<Kingsy> just saw it yep. sorry I should have had a good read first.
<Kingsy> scymtym: thanks!
<scymtym> sure, no worries
slyrus has quit [Ping timeout: 268 seconds]
occ has quit [Ping timeout: 268 seconds]
thuna` has quit [Remote host closed the connection]
occ has joined #commonlisp
slyrus has joined #commonlisp
<aeth> Common Lisp and recursion has a complicated relationship. On the one hand, it's not guaranteed to do TCO so you can overflow the stack. On the other hand, LABELS is literally right there, just waiting for convenient recursion.
eddof13 has quit [Quit: eddof13]
pve has quit [Quit: leaving]
slyrus has quit [Ping timeout: 260 seconds]
<didi> LABELS ftw.
slyrus has joined #commonlisp
kevingal has joined #commonlisp
Lycurgus has joined #commonlisp
dra has joined #commonlisp
slyrus has quit [Ping timeout: 268 seconds]
wacki has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
slyrus has joined #commonlisp
josrr has left #commonlisp [ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.2)]
josrr has joined #commonlisp
nij- has joined #commonlisp
slyrus has quit [Ping timeout: 255 seconds]
a51 has quit [Quit: WeeChat 4.2.1]
donleo has quit [Remote host closed the connection]
prokhor has quit [Remote host closed the connection]
donleo has joined #commonlisp
prokhor has joined #commonlisp
tok has quit [Remote host closed the connection]
slyrus has joined #commonlisp
snits has quit [Ping timeout: 252 seconds]
slyrus has quit [Ping timeout: 268 seconds]
slyrus has joined #commonlisp
jmdaemon has joined #commonlisp
slyrus has quit [Ping timeout: 255 seconds]
yitzi has quit [Remote host closed the connection]
slyrus has joined #commonlisp
slyrus has quit [Ping timeout: 256 seconds]
rgherdt has quit [Quit: Leaving]
dino_tutter has quit [Ping timeout: 246 seconds]
msv has quit [Remote host closed the connection]
msv has joined #commonlisp
slyrus has joined #commonlisp
slyrus has quit [Ping timeout: 255 seconds]