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/>
amb007 has quit [Ping timeout: 252 seconds]
amb007 has joined #commonlisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #commonlisp
amb007 has quit [Ping timeout: 264 seconds]
amb007 has joined #commonlisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #commonlisp
triffid has quit [Remote host closed the connection]
triffid has joined #commonlisp
amb007 has quit [Ping timeout: 246 seconds]
taku has quit [Ping timeout: 252 seconds]
amb007 has joined #commonlisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #commonlisp
amb007 has quit [Ping timeout: 248 seconds]
amb007 has joined #commonlisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #commonlisp
<Bubblegumdrop> Here's what I got
Akbar-Birbal has joined #commonlisp
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
amb007 has quit [Ping timeout: 252 seconds]
Gleefre has quit [Ping timeout: 256 seconds]
taku has joined #commonlisp
taku has quit [Changing host]
taku has joined #commonlisp
taku has quit [Remote host closed the connection]
edgar-rft_ has joined #commonlisp
edgar-rft` has quit [Ping timeout: 245 seconds]
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
fe[nl]ix has quit [Ping timeout: 252 seconds]
v88m has joined #commonlisp
fe[nl]ix has joined #commonlisp
Colleen has quit [Ping timeout: 252 seconds]
Colleen has joined #commonlisp
random-nick has quit [Ping timeout: 252 seconds]
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
jonatack has quit [Ping timeout: 252 seconds]
jonatack has joined #commonlisp
amb007 has joined #commonlisp
amb007 has quit [Ping timeout: 252 seconds]
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
ebrasca has quit [Read error: Connection reset by peer]
ebrasca` has joined #commonlisp
v88m has joined #commonlisp
jonatack has quit [Read error: Connection reset by peer]
ym has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
lucasta has quit [Quit: Leaving]
v88m has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
beach` has joined #commonlisp
beach has quit [Ping timeout: 276 seconds]
beach` is now known as beach
Pixel_Outlaw has quit [Quit: Leaving]
<aeth> I finally found a use for combining &rest and &key
<aeth> in a destructuring-bind, where in this particular part, you only care about one key
<beach> That's a pretty common one, for instance when you want to pass on keyword arguments to another function, but perhaps prefix them with some modified ones.
<aeth> I suppose &rest implies &allow-other-keys ?
<aeth> Or is this a nonportable assumption?
<beach> I don't think that's the case.
<aeth> so (&rest foo &key bar) wouldn't necessarily accept baz unless I add &allow-other-keys ?
<ixelp> Clostrophilia/Code/Generic-function-initialization/initialize-instance-methods.lisp at master · robert-strandh/Clostroph [...]
<aeth> ah, I see you do use &allow-other-keys
<aeth> and it does seem to be required
<beach> Yes, you need &ALLOW-OTHER-KEYS.
<aeth> in e.g. ,(destructuring-bind (x y &rest foo &key bar &allow-other-keys) (list 42 43 :bar 44 :baz 45) (values x y foo bar))
<ixelp> (destructuring-bind (x y &rest foo &key bar &allow-other-keys) (list 42 43 :bar 44 :baz 45) (values x y foo bar)) => 42; 43; (:BAR 44 :BAZ 45); 44
amb007 has joined #commonlisp
<beach> As I recall, there is an exception for methods. I think the wording in the standard is that a method function is called "as if given :ALLOW-OTHER-KEYS T" or something like that.
amb007 has quit [Ping timeout: 276 seconds]
<beach> ,(defgeneric foo (&rest x &key y &allow-other-keys)) ,(defmethod foo (&rest x &key y)) ,(foo :z 234)
<ixelp> (defgeneric foo (&rest x &key y &allow-other-keys)) => #<STANDARD-GENERIC-FUNCTION FOO #x144C444E> and (defmethod foo (&rest x &key y)) ;Compiler warnings : ↩ ; In (FOO NIL) inside an anonymous lambda form: Unused lexical variable X ↩ ↩ ; In (FOO NIL) inside an anonymous lambda form: Unused lexical variable Y ↩ => #<STANDARD-METHOD FOO NIL> finally (foo :z 234) => NIL
<beach> Er...
<beach> ,(defgeneric foo (&rest x &key y &allow-other-keys)) ,(defmethod foo (&rest x &key y) (list x y)) ,(foo :z 234)
<ixelp> (defgeneric foo (&rest x &key y &allow-other-keys)) => #<STANDARD-GENERIC-FUNCTION FOO #x144C3F7E> and (defmethod foo (&rest x &key y) (list x y)) => #<STANDARD-METHOD FOO NIL> finally (foo :z 234) => ((:Z 234) NIL)
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
decweb has quit [Ping timeout: 252 seconds]
<aeth> ah, methods must be where I saw that before and they are a special case
Akbar-Birbal has quit [Ping timeout: 245 seconds]
Akbar-Birbal has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
semarie has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
<beach> Interesting. In a fresh SBCL, if I do (DEFMETHOD FOO (&REST X &KEY Y) (LIST X Y)) and then (DEFGENERIC FOO (&REST X &KEY Y &ALLOW-OTHER-KEYS)) and then (FOO :Z 234) it works as expected, just as if I had interchanged the DEFGENERIC and DEFMETHOD forms.
<beach> However, if instead I do (DEFMETHOD FOO (&REST X &KEY Y) (LIST X Y)) and then (FOO :Z 234) (getting an error) and then (DEFGENERIC FOO (&REST X &KEY Y &ALLOW-OTHER-KEYS)) and then again (FOO :Z 234), I still get the error.
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
<beach> I guess they must be caching the discriminating function.
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
kaskal has quit [Ping timeout: 245 seconds]
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
treflip has joined #commonlisp
ebrasca` has quit [Remote host closed the connection]
younder has quit [Remote host closed the connection]
younder has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
anticomputer has quit [Remote host closed the connection]
anticomputer has joined #commonlisp
shka has joined #commonlisp
pve has joined #commonlisp
amb007 has joined #commonlisp
amb007 has quit [Read error: Connection reset by peer]
King_julian has joined #commonlisp
amb007 has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
alternateved has joined #commonlisp
Th30n has joined #commonlisp
Lord_of_Life_ has joined #commonlisp
Lord_of_Life has quit [Ping timeout: 260 seconds]
Lord_of_Life_ is now known as Lord_of_Life
mgl_ has joined #commonlisp
alternateved has quit [Remote host closed the connection]
varjag has joined #commonlisp
alternateved has joined #commonlisp
mishoo has joined #commonlisp
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
rainthree has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
Artea has joined #commonlisp
chkhd has joined #commonlisp
v88m has quit [Ping timeout: 244 seconds]
v88m has joined #commonlisp
rainthree3 has joined #commonlisp
rainthree33 has joined #commonlisp
mari-estel has joined #commonlisp
rainthree has quit [Ping timeout: 244 seconds]
dinomug has quit [Remote host closed the connection]
rainthree has joined #commonlisp
rainthree3 has quit [Ping timeout: 248 seconds]
kaskal has joined #commonlisp
igemnace_ has joined #commonlisp
igemnace has quit [Ping timeout: 252 seconds]
rainthree33 has quit [Ping timeout: 248 seconds]
igemnace_ is now known as igemnace
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
King_julian has quit [Ping timeout: 246 seconds]
jonatack has joined #commonlisp
donleo has joined #commonlisp
mari-estel has quit [Remote host closed the connection]
King_julian has joined #commonlisp
rainthree has quit [Quit: Leaving]
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
mwnaylor has quit [Ping timeout: 260 seconds]
v88m has quit [Ping timeout: 264 seconds]
v88m has joined #commonlisp
semarie has quit [Quit: quit]
v88m has quit [Read error: Connection reset by peer]
<Josh_2> GM GM :wave:
v88m has joined #commonlisp
chkhd has quit [Quit: ZZZzzz…]
chkhd has joined #commonlisp
random-nick has joined #commonlisp
Perflosopher has quit [Ping timeout: 272 seconds]
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
Perflosopher has joined #commonlisp
semarie has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
zetef has joined #commonlisp
chkhd is now known as chkhd`
chkhd` is now known as chkhd
chkhd is now known as chkhd`
chkhd` has quit [Quit: ZZZzzz…]
chkhd has joined #commonlisp
yitzi has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
younder has quit [Ping timeout: 265 seconds]
alcor has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
semarie has quit [Quit: quit]
zwr has quit [Read error: Connection reset by peer]
yitzi has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
younder has joined #commonlisp
semarie has joined #commonlisp
zwr has joined #commonlisp
leeb has joined #commonlisp
decweb has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
yitzi has joined #commonlisp
dilaver_ has quit [Quit: The Lounge - https://thelounge.chat]
dilaver_ has joined #commonlisp
bitspook has quit [Read error: Connection reset by peer]
chkhd has quit [Quit: ZZZzzz…]
chkhd has joined #commonlisp
pkal has joined #commonlisp
bitspook has joined #commonlisp
mrcom has quit [Ping timeout: 276 seconds]
jrm has quit [Ping timeout: 265 seconds]
semarie has quit [Ping timeout: 265 seconds]
jrm has joined #commonlisp
Venoflux has joined #commonlisp
treflip has quit [Ping timeout: 265 seconds]
chkhd is now known as chkhd`
semarie has joined #commonlisp
semarie has quit [Client Quit]
NotThatRPG has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
chkhd` has quit [Quit: ZZZzzz…]
chkhd has joined #commonlisp
varjag has quit [Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.3)]
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
King_julian has quit [Ping timeout: 276 seconds]
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
dnhester26 has joined #commonlisp
chkhd has quit [Quit: ZZZzzz…]
<dnhester26> hi beach: in your article http://metamodular.com/Software-engineering/uniform-reference-semantics.html the last section, doesn't that mean that CL violates uniform reference semantics for lists? ,(list)
<ixelp> Uniform reference semantics
<ixelp> (list) => NIL
<dnhester26> good afternoon, sorry to jump on the question like that
<beach> Hello dnhester26. No, what makes you think that?
<beach> dnhester26: But the thing with lists is that Common Lisp doesn't have an abstract data type LIST. A list is just a sequence of CONS cells ending with an atom, or not ending at all.
<dnhester26> beach: because ,(list) => NIL but I would expect it to be some empty list instead ()
<ixelp> (list) => NIL
<beach> That's what I mean by Common Lisp not having an abstract data type LIST.
<beach> In Common Lisp, () and NIL are the same object.
<beach> So a reference to a list is a reference to either an atom or to a CONS cell. If it is a reference to a CONS cell, you can definitely modify that CONS cell if you pass the reference to a function. If it is an atom, you can modify that atom if it is the kind of atom that allows modifications.
<dnhester26> So the equivalent in the article would really be making some struct in lisp which has a slot for a cons?
<beach> Yes, that's what you do if you want to create (say) a STACK implemented as a list.
<dnhester26> and list is just a convenience function for making cons cells?
<beach> Exactly.
<dnhester26> Hm, I guess we wouldn't loose the convenience functions because that slot int he struct would really be the list, and the struct itself is just for us to hold the reference to the object in case it's empty
<dnhester26> Ok, thanks
<beach> Sure.
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
<dnhester26> by the way, there's a service that gives free SSL certificates if you are interested for your website. It's called https://letsencrypt.org/
<ixelp> Let's Encrypt
<beach> *sigh* I really suck with web stuff. I wouldn't know what to do with one.
<beach> Now some people (notably aeth) are often quick to point out that implementations store small objects like fixnums and characters in the pointer itself, so they are not really references to chunks of memory. But those objects are immutable, so there is no way for application code to check whether they are references or not. So the semantics are preserved.
yitzi has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<beach> Rereading that page, I am reminded that, when I showed the "boat" example to my students and asked them what color x is, they said "it depends!". So I asked "on what?", and they said "how it is implemented!". And I then said, if that is true, then you would not ever be able to split your code into modules, because a person reading the code would have to understand the implementation of each module, in addition to the interface.
<beach> I mean, technically, my students were of course right, but what I meant was that nobody should ever program in a way that the answer is "it depends".
triffid has quit [Remote host closed the connection]
X-Scale has joined #commonlisp
Th30n has quit [Ping timeout: 260 seconds]
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
triffid has joined #commonlisp
semarie has joined #commonlisp
lucasta has joined #commonlisp
<Bubblegumdrop> gm
leeb has quit [Quit: leaving]
v88m has quit [Read error: Connection reset by peer]
X-Scale has quit [Quit: Client closed]
mrcom has joined #commonlisp
v88m has joined #commonlisp
dnhester26 has quit []
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
shawnw has joined #commonlisp
pranav has quit [Remote host closed the connection]
<drmeister> Does anyone use the MGL-PAX system for documentation? Has anyone gotten the emacs integration to work?
<drmeister> If anyone has gotten it to work, can you ping me? I want to use MGL-PAX but I'm either doing something wrong or the emacs integration needs some work. Probably the former.
jonatack has quit [Ping timeout: 272 seconds]
jonatack has joined #commonlisp
mgl_ has quit [Ping timeout: 264 seconds]
jonatack has quit [Ping timeout: 246 seconds]
jonatack has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
dino_tutter has quit [Quit: Leaving]
semarie has quit [Quit: quit]
semarie has joined #commonlisp
v88m has joined #commonlisp
<Bubblegumdrop> drmeister I was able to load it
pranav has joined #commonlisp
jungy has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
<drmeister> Bubblegumdrop: Thanks! Does the emacs integration work for you?
<drmeister> What happens when you M-. something?
<Bubblegumdrop> It looks like it. Yes M-. works
<drmeister> Hmmm
<Bubblegumdrop> drmeister I did have one slight issue
<Bubblegumdrop> https://github.com/melisgl/mgl-pax?tab=readme-ov-file#2-emacs-setup the second part of the installation instructions
<ixelp> GitHub - melisgl/mgl-pax: Documentation system, browser, generator.
<Bubblegumdrop> (load "~/quicklisp/mgl-pax.el")
<drmeister> Yeah?
<Bubblegumdrop> This isn't common lisp you'd type into your slime repl. but emacs lisp you might type into M-: or ielm
<drmeister> Right.
<Bubblegumdrop> I was trying to type (load "mgl-pax.el") at my repl and it was erroring
<Bubblegumdrop> I'm testing the documentation generation now
<Bubblegumdrop> M-. works though
<drmeister> It's emacs elisp - to be put in your .emacs or as I do - in my ~/.emacs.d/init.el file.
<Bubblegumdrop> I use sly it looks like this depends on slime
jungy has quit [Changing host]
jungy has joined #commonlisp
<Bubblegumdrop> so I installed slime
<Bubblegumdrop> and did M-x slime
<Bubblegumdrop> and it works in my slime repl
<Bubblegumdrop> Yeah I was able to M-. to foo-random::@foo-random-manual (from the DEFSECTION) as well.
<drmeister> Hmmm. Ok. My emacs setup is a bit complicated - I use evil mode. I think I'll try a vanilla setup. If I have trouble - can I come back to you with questions?
<Bubblegumdrop> Do you have a lot of stuff in your init.el ? I find I periodically have to nuke mine.
<Bubblegumdrop> I'm also using evil-mode! Yes, you can message me any time. I hang out in your channel #clasp
<Bubblegumdrop> I'm typically AFK but I know how to use /msg memoserv :)
<drmeister> Understood.
<Bubblegumdrop> I'd actually like to get involved in your project some day!
<drmeister> Oh - thanks. Sorry if I've been distracted - spinning up a company takes a lot of my attention.
v88m has joined #commonlisp
<drmeister> MGL-PAX looks awesome.
v88m has quit [Remote host closed the connection]
dino_tutter has joined #commonlisp
jungy has quit [Ping timeout: 264 seconds]
Akbar-Birbal has left #commonlisp [#commonlisp]
alcor has quit [Remote host closed the connection]
alcor has joined #commonlisp
opinionplatform_ has joined #commonlisp
v88m has joined #commonlisp
lucasta has quit [Quit: Leaving]
cage has joined #commonlisp
cage has quit [Excess Flood]
flip214 has quit [Read error: Connection reset by peer]
dnhester26 has joined #commonlisp
cage has joined #commonlisp
pranav has quit [Remote host closed the connection]
flip214 has joined #commonlisp
mountainman1312 has quit [Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.4)]
mountainman1312 has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
shka has quit [Remote host closed the connection]
Venoflux has quit [Quit: Venoflux]
shka has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
shka has quit [Client Quit]
shka has joined #commonlisp
shka has quit [Ping timeout: 252 seconds]
shka has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
theruran has joined #commonlisp
cdegroot has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
cdegroot has joined #commonlisp
jon_atack has joined #commonlisp
dnhester26 has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
jonatack has quit [Ping timeout: 260 seconds]
pranav has joined #commonlisp
dnhester26 has quit [Ping timeout: 260 seconds]
dnhester26 has joined #commonlisp
pranav has quit [Remote host closed the connection]
dnhester26 has quit []
Josh_2 has quit [Remote host closed the connection]
pranav has joined #commonlisp
treflip has joined #commonlisp
amb007 has quit [Ping timeout: 252 seconds]
amb007 has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
King_julian has joined #commonlisp
v88m has quit [Remote host closed the connection]
v88m has joined #commonlisp
spdegabrielle has joined #commonlisp
Everything has joined #commonlisp
jon_atack has quit [Ping timeout: 260 seconds]
v88m has quit [Read error: Connection reset by peer]
jonatack has joined #commonlisp
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
shawnw has quit [Ping timeout: 252 seconds]
v88m has joined #commonlisp
jonatack has quit [Read error: Connection reset by peer]
mgl_ has joined #commonlisp
jonatack has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
mishoo has quit [Ping timeout: 248 seconds]
treflip has quit [Remote host closed the connection]
zwr has quit [Read error: Connection reset by peer]
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
zwr has joined #commonlisp
simendsjo has joined #commonlisp
X-Scale has joined #commonlisp
v88m has joined #commonlisp
v88m has quit [Read error: Connection reset by peer]
X-Scale has quit [Quit: Client closed]
kpg has quit [Ping timeout: 244 seconds]
mwnaylor has joined #commonlisp
contrapunctus has quit [Ping timeout: 252 seconds]
contrapunctus has joined #commonlisp
simendsjo has quit [Ping timeout: 252 seconds]
kpg has joined #commonlisp
mgl_ has quit [Ping timeout: 252 seconds]
drewjose has quit [Ping timeout: 252 seconds]
spdegabrielle has quit [Quit: Connection closed for inactivity]
jungy has joined #commonlisp
jungy has quit [Changing host]
jungy has joined #commonlisp
drewjose has joined #commonlisp
jonatack has quit [Ping timeout: 252 seconds]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #commonlisp
molson has quit [Ping timeout: 246 seconds]
cage has quit [Quit: rcirc on GNU Emacs 29.4]
molson has joined #commonlisp
v88m has joined #commonlisp
molson_ has joined #commonlisp
molson has quit [Ping timeout: 246 seconds]
alcor has quit [Remote host closed the connection]
v88m has quit [Read error: Connection reset by peer]
jungy has quit [Ping timeout: 260 seconds]
kevingal has joined #commonlisp
jonatack has joined #commonlisp
random-jellyfish has joined #commonlisp
jonatack has quit [Ping timeout: 252 seconds]
kpg has quit [Ping timeout: 252 seconds]
jonatack has joined #commonlisp
ym has quit [Ping timeout: 246 seconds]
Gleefre has joined #commonlisp
jonatack has quit [Ping timeout: 252 seconds]
Shinmera- has joined #commonlisp
m5zs7k_ has joined #commonlisp
cinerion_ has joined #commonlisp
Shinmera has quit [Read error: Connection reset by peer]
Shinmera- is now known as Shinmera
doyougnu has quit [Ping timeout: 265 seconds]
kurfen_ has quit [Quit: ZNC - https://znc.in]
m5zs7k has quit [Ping timeout: 265 seconds]
cinerion has quit [Read error: Connection reset by peer]
doyougnu has joined #commonlisp
amb007 has quit [Ping timeout: 276 seconds]
kurfen has joined #commonlisp
Lord_Nightmare has quit [Quit: ZNC - http://znc.in]
pranav has quit [Read error: Connection reset by peer]
Everything has quit [Quit: leaving]
m5zs7k_ is now known as m5zs7k
Gleefre has quit [Remote host closed the connection]
pve has quit [Quit: leaving]
Gleefre has joined #commonlisp
ezakimak has quit [Quit: No Ping reply in 180 seconds.]
zlqrvx_ has joined #commonlisp
zlqrvx has quit [Read error: Connection reset by peer]
ezakimak has joined #commonlisp
alternateved has quit [Remote host closed the connection]
shawnw has joined #commonlisp
jonatack has joined #commonlisp
jonatack has quit [Ping timeout: 255 seconds]
lucasta has joined #commonlisp
NotThatRPG_ has joined #commonlisp
jonatack has joined #commonlisp
NotThatRPG has quit [Ping timeout: 252 seconds]
Lord_Nightmare has joined #commonlisp
jonatack has quit [Excess Flood]
shka has quit [Quit: Konversation terminated!]
jonatack has joined #commonlisp
akoana has joined #commonlisp
troojg has joined #commonlisp