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/> | News: ELS'22 this Monday (2022-03-21), see https://european-lisp-symposium.org
zacque has joined #commonlisp
yauhsien has quit [Remote host closed the connection]
yauhsien has joined #commonlisp
psf has quit [Ping timeout: 272 seconds]
psf has joined #commonlisp
cl-arthur has joined #commonlisp
yauhsien has quit [Ping timeout: 240 seconds]
prokhor__ has joined #commonlisp
prokhor_ has quit [Remote host closed the connection]
<White_Flame> dbotton: --disable-debugger is a cmdline option, but I think it will probably still exit. Where would you want it to execute from after printing error/stack?
<dbotton> no don't want to exit at all
<dbotton> if sbcl goes down so do other sites etc
<White_Flame> but you say "I don't want to stop running", would you just want to hang or what?
<White_Flame> is this multithreaded and you just want the thread to die?
Bike has joined #commonlisp
<dbotton> No just the thread to die
<dbotton> Not sbcl
<White_Flame> and --disable-debugger causes sbcl to die when a non-main thread errors out?
pfd has quit [Quit: Client closed]
cl-arthur has quit [Ping timeout: 276 seconds]
aeth has quit [Ping timeout: 252 seconds]
aeth has joined #commonlisp
anticomputer has quit [Remote host closed the connection]
anticomputer has joined #commonlisp
santiagopim has quit [Ping timeout: 244 seconds]
trumae has quit [Read error: Connection reset by peer]
trumae has joined #commonlisp
yauhsien has joined #commonlisp
trumae has quit [Ping timeout: 256 seconds]
trumae has joined #commonlisp
<dbotton> yes
<dbotton> any thread
<dbotton> It is rare that a condition slips by but for some reason does in various web threads. playing now with restarts and services and so at least recovers and no longer need to run the websites in tmux
beach has quit [Remote host closed the connection]
beach has joined #commonlisp
yewscion has quit [Ping timeout: 272 seconds]
ec has quit [Quit: ec]
beach has quit [Ping timeout: 248 seconds]
yauhsien has quit [Remote host closed the connection]
yauhsien has joined #commonlisp
yauhsien has quit [Ping timeout: 256 seconds]
bilegeek has joined #commonlisp
beach` has joined #commonlisp
beach` is now known as beach
<beach> Good morning everyone!
<zacque> Is it correct that the only way to create an uninterned symbol at runtime is by evaluating GENSYM?
<zacque> Is there another way to do so?
<beach> clhs make-symbol
<zacque> Thanks! So, there are three ways to create uninterned symbols: GEMSYM, MAKE-SYMBOL, and COPY-SYMBOL
<beach> Also INTERN.
<beach> Oh, no, sorry. Not uninterned.
<beach> I shouldn't try to answer questions before I had my morning coffee.
tyson2 has quit [Remote host closed the connection]
<zacque> Ah, that's fine! Now I understand INTERN better by re-reading its dictionary entry, haha!
frgo has quit [Ping timeout: 260 seconds]
<mfiano> There are more ways, considering you can invoke the different compiler phases at runtime
<mfiano> (read-from-string "#:FOO") for example
<zacque> Oh, right, functions that invoke the READER
<beach> The reader will probably call one of the functions already mentioned, though.
<mfiano> It may call implementation details shared by both. Here we are only concerned with the standard ways though.
<Nilby> also (funcall (get-dispatch-macro-character #\# #\:) …) with the standard readtable
<mfiano> Can also get more clever with: (defpackage foo (:use cl) (:export foo)) (in-package :foo) (defparameter *foo* 'foo) (unintern 'foo) *foo*
anticomputer has quit [Remote host closed the connection]
karlosz has joined #commonlisp
anticomputer has joined #commonlisp
<mfiano> err I guess that should have exported *foo* which holds the reference to the unhomed symbol
<Nilby> I feel like the "count the ways to make an uninterned symbol" game could be endless: (progn (make-package :foo) (let ((s (intern "FOO" :foo))) (delete-package :foo) s))
<mfiano> You're not in Pythonland anymore
fitzsim has quit [Remote host closed the connection]
trumae has quit [Ping timeout: 260 seconds]
trumae has joined #commonlisp
fitzsim has joined #commonlisp
waleee has quit [Ping timeout: 252 seconds]
akoana has quit [Quit: leaving]
Sankalp has quit [Ping timeout: 240 seconds]
karlosz has quit [Quit: karlosz]
bilegeek has quit [Quit: Leaving]
jeosol has joined #commonlisp
yauhsien has joined #commonlisp
Sankalp has joined #commonlisp
trumae has quit [Remote host closed the connection]
yauhsien has quit [Remote host closed the connection]
yauhsien has joined #commonlisp
yauhsien has quit [Ping timeout: 244 seconds]
aartaka has joined #commonlisp
pranavats has joined #commonlisp
hashfunc1204 has joined #commonlisp
pranavats has left #commonlisp [#commonlisp]
Bike has quit [Quit: Connection closed]
rainthree has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
ttree has quit [Ping timeout: 260 seconds]
ttree has joined #commonlisp
yauhsien has joined #commonlisp
perrierjouet has quit [Ping timeout: 260 seconds]
ttree has quit [Ping timeout: 260 seconds]
karlosz has joined #commonlisp
pranavats has joined #commonlisp
karlosz has quit [Ping timeout: 244 seconds]
aartaka has quit [Ping timeout: 276 seconds]
aartaka has joined #commonlisp
aartaka has quit [Read error: Connection reset by peer]
aartaka has joined #commonlisp
<zacque> Interesting! Thanks for opening my eyes =D
<mfiano> (let ((s #1='s)) (unintern 's) #1#)
<mfiano> Or more concisely, (progn #1='s (unintern 's) #1#)
<mfiano> CL is an interesting language. Very flexible in ways to do things.
<mfiano> Even more concise: (progn (unintern #1='s) #1#)
anticomputer has quit [Ping timeout: 240 seconds]
yauhsien has quit [Ping timeout: 276 seconds]
pranavats has left #commonlisp [#commonlisp]
pranavats has joined #commonlisp
yauhsien has joined #commonlisp
<mfiano> I suppose you could even change PROGN to IF since UNINTERN is guaranteed to return non-NIL, if you want to keep playing code golf.
dmc00 has quit [Ping timeout: 248 seconds]
anticomputer has joined #commonlisp
karlosz has joined #commonlisp
igemnace has joined #commonlisp
karlosz has quit [Client Quit]
igemnace has quit [Remote host closed the connection]
igemnace has joined #commonlisp
yauhsien has quit [Read error: Connection reset by peer]
yauhsien has joined #commonlisp
pve has joined #commonlisp
bitmapper has quit [Quit: Connection closed for inactivity]
yauhsien has quit [Ping timeout: 260 seconds]
Oladon has quit [Quit: Leaving.]
anticomputer has quit [Ping timeout: 240 seconds]
anticomputer has joined #commonlisp
Dynom has joined #commonlisp
Algernon69 has joined #commonlisp
x88x88x has quit [Remote host closed the connection]
shka has joined #commonlisp
MajorBiscuit has joined #commonlisp
<zacque> I see, thanks!
hashfunc1204 has quit [Ping timeout: 272 seconds]
<zacque> I'm not playing code golf or count the number game. Just trying to consolidating my CL knowledge, so it's very kind of you to verify my naive observation/hypotheses =D
ttree has joined #commonlisp
<grawlinson> i just ran rt's test suite, 15/30 tests failed
<grawlinson> did something change since 1990?
<grawlinson> (specifically kevin rosenberg's cl-rt version)
attila_lendvai has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
prokhor__ has quit [Quit: Leaving]
prokhor__ has joined #commonlisp
x88x88x has joined #commonlisp
Brucio-61 has quit [Ping timeout: 260 seconds]
ttree has quit [Ping timeout: 246 seconds]
Arthur has joined #commonlisp
scymtym has quit [Ping timeout: 272 seconds]
<zacque> Is this a mistake? In the "Notes" of write dictionary entry, it is said (pprint object output-stream) == (write object :stream output-stream :escape t :pretty t). Instead, it should be ... == (progn (terpri output-stream) (write object :stream output-stream :escape t :pretty t)).
<zacque> Since PPRINT always insert a line break before printing out the pretty version of an object
yauhsien has joined #commonlisp
yauhsien has quit [Ping timeout: 272 seconds]
Brucio-61 has joined #commonlisp
OlCe has quit [Ping timeout: 276 seconds]
scymtym has joined #commonlisp
<beach> It could be a mistake. As I recall, notes are not normative.
attila_lendvai has quit [Remote host closed the connection]
attila_lendvai has joined #commonlisp
jmdaemon has quit [Ping timeout: 272 seconds]
varjag has joined #commonlisp
mister_m has quit [Ping timeout: 256 seconds]
<beach> clhs 1.4.3
<specbot> Sections Not Formally Part Of This Standard: http://www.lispworks.com/reference/HyperSpec/Body/01_dc.htm
rainthree has quit [Ping timeout: 276 seconds]
WBarends has joined #commonlisp
<zacque> Ya, but will still find it confusing if the information in the section is wrong...
santiagopim has joined #commonlisp
OlCe` has joined #commonlisp
MajorBiscuit has quit [Quit: WeeChat 3.4]
<beach> Of course.
yauhsien has joined #commonlisp
MajorBiscuit has joined #commonlisp
OlCe` has quit [Remote host closed the connection]
Dynom has quit [Quit: WeeChat 3.5]
zacque has quit [Quit: Goodbye :D]
prokhor__ has quit [Remote host closed the connection]
prokhor_ has joined #commonlisp
analogsalad has joined #commonlisp
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 246 seconds]
Josh_2 has quit [Remote host closed the connection]
random-nick has joined #commonlisp
Josh_2 has joined #commonlisp
pjb has quit [Ping timeout: 250 seconds]
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
perrierjouet has joined #commonlisp
yauhsien has quit [Remote host closed the connection]
rainthree has joined #commonlisp
Dynom has joined #commonlisp
yauhsien has joined #commonlisp
<madnificent> I'm catching errors when constructing an answer for a web service. However, I'd like the full error stack trace to be printed on STDOUT in that case for development purposes. If I hook slime onto the image then I can get a full stack trace, but how do I print that out when catching the error.
Arthur has quit [Ping timeout: 276 seconds]
<madnificent> I'm on SBCL normally and it's fine if it only works there. I've tried using trivial-backtrace but that prints substantially less depth than what I get through slime.
yauhsien has quit [Remote host closed the connection]
<jackdaniel> you are probably doing something like (handler-case (handle) (error () (trivial-backtrace…))
<jackdaniel> what you want is handler-bind that does not unwind the stack before passing the control to the handler
<madnificent> jackdaniel: right, that would make sense
<madnificent> will try. thank you
aartaka has quit [Ping timeout: 272 seconds]
<jackdaniel> sure
igemnace has quit [Remote host closed the connection]
yauhsien has joined #commonlisp
igemnace has joined #commonlisp
Arthur has joined #commonlisp
pranavats has left #commonlisp [#commonlisp]
Arthur has quit [Client Quit]
yauhsien has quit [Ping timeout: 272 seconds]
tyson2 has joined #commonlisp
pranavats has joined #commonlisp
Algernon69 has quit [Ping timeout: 248 seconds]
aartaka has joined #commonlisp
yauhsien has joined #commonlisp
pillton has quit [Remote host closed the connection]
pranavats has left #commonlisp [#commonlisp]
Everything has joined #commonlisp
dmc00 has joined #commonlisp
Lord_of_Life has quit [Ping timeout: 244 seconds]
Lord_of_Life has joined #commonlisp
aartaka has quit [Ping timeout: 240 seconds]
WBarends has quit [Quit: Textual IRC Client: www.textualapp.com]
Oddity has quit [Ping timeout: 276 seconds]
treflip has joined #commonlisp
MajorBiscuit has quit [Ping timeout: 244 seconds]
WBarends has joined #commonlisp
yauhsien has quit [Remote host closed the connection]
yauhsien has joined #commonlisp
MajorBiscuit has joined #commonlisp
trumae has joined #commonlisp
MajorBiscuit has quit [Client Quit]
yauhsien has quit [Ping timeout: 260 seconds]
analogsalad has quit [Quit: bye]
Algernon69 has joined #commonlisp
aartaka has joined #commonlisp
yauhsien has joined #commonlisp
ldb has joined #commonlisp
<ldb> Under what conditions SLIME would trying to restart the inferior-lisp process?
aartaka has quit [Ping timeout: 244 seconds]
aartaka has joined #commonlisp
Sankalp has quit [Ping timeout: 240 seconds]
yauhsien has quit [Remote host closed the connection]
yauhsien has joined #commonlisp
Sankalp has joined #commonlisp
<dbotton> ldb when you ask it to, normally you never restart the process
yauhsien has quit [Ping timeout: 240 seconds]
<dbotton> If asking why I may want, testing for reproducible builds probably most common reason for me
yauhsien has joined #commonlisp
ldb has quit [Ping timeout: 246 seconds]
zacque has joined #commonlisp
trev has joined #commonlisp
silasfox has joined #commonlisp
silasfox has quit [Client Quit]
yauhsien has quit [Remote host closed the connection]
ldb has joined #commonlisp
yauhsien has joined #commonlisp
Bike has joined #commonlisp
ldb has quit [Ping timeout: 260 seconds]
yauhsien has quit [Ping timeout: 240 seconds]
aeth has quit [Ping timeout: 272 seconds]
aeth has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
ldb has joined #commonlisp
aartaka has quit [Ping timeout: 246 seconds]
ldb has quit [Ping timeout: 256 seconds]
aartaka has joined #commonlisp
OlCe has joined #commonlisp
yauhsien has joined #commonlisp
zacque has quit [Quit: Goodbye :D]
<mrcom> dbotton: are you dropping into ldb? Ouch. That sounds like a heap-exhaustion or we-did-something-not-thread-safe-and-now-we're-toast.
<mrcom> Srrry, didn't read carefully enough. Cute nick, ldb :)
<mrcom> dbotton: I was probably wrong about Hutchentoot's threads.
frgo has joined #commonlisp
<mrcom> Just looked at the HT docs, and it says the default Taskmaster creates a thread for each connection. So killing a thread won't run out of task handlers.
ldb has joined #commonlisp
frgo_ has joined #commonlisp
Guest74 has joined #commonlisp
ldb has quit [Ping timeout: 240 seconds]
frgo has quit [Ping timeout: 252 seconds]
rainthree has quit [Ping timeout: 272 seconds]
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
even4voi- is now known as even4void
[smlckz] has joined #commonlisp
[smlckz] has quit [Changing host]
[smlckz] has joined #commonlisp
yauhsien has quit [Remote host closed the connection]
yauhsien has joined #commonlisp
ldb has joined #commonlisp
mbrndtgn has quit [Quit: The Lounge - https://thelounge.chat]
yauhsien has quit [Ping timeout: 256 seconds]
ldb has quit [Ping timeout: 244 seconds]
aartaka has quit [Ping timeout: 260 seconds]
jdz has quit [Remote host closed the connection]
mbrndtgn has joined #commonlisp
jdz has joined #commonlisp
jdz has quit [Quit: I'm done]
jdz has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
ttree has joined #commonlisp
ldb has joined #commonlisp
frgo_ has quit [Remote host closed the connection]
Dynom has quit [Quit: WeeChat 3.5]
frgo has joined #commonlisp
frgo has quit [Ping timeout: 240 seconds]
cage has joined #commonlisp
trumae has quit [Ping timeout: 260 seconds]
frgo has joined #commonlisp
dlowe has quit [Remote host closed the connection]
frgo has quit [Ping timeout: 272 seconds]
dlowe has joined #commonlisp
waleee has joined #commonlisp
pfd has joined #commonlisp
aeth has quit [Ping timeout: 260 seconds]
aeth has joined #commonlisp
Algernon69 has quit [Quit: Leaving]
aeth has quit [Ping timeout: 240 seconds]
pfd has quit [Quit: Client closed]
aeth has joined #commonlisp
frgo has joined #commonlisp
pjb has joined #commonlisp
frgo has quit [Ping timeout: 276 seconds]
pfd has joined #commonlisp
aartaka has joined #commonlisp
attila_lendvai has quit [Ping timeout: 260 seconds]
aartaka has quit [Ping timeout: 240 seconds]
aartaka has joined #commonlisp
aartaka has quit [Read error: Connection reset by peer]
aartaka has joined #commonlisp
ec has joined #commonlisp
aartaka has quit [Ping timeout: 244 seconds]
aartaka has joined #commonlisp
ldb has quit [Quit: ERC 5.4 (IRC client for GNU Emacs 28.1)]
pfd has quit [Quit: Client closed]
jeosol has quit [Quit: Client closed]
pfd has joined #commonlisp
tyson2 has quit [Remote host closed the connection]
Bike has quit [Quit: Connection closed]
Guest292 has joined #commonlisp
tane has joined #commonlisp
tane has quit [Changing host]
tane has joined #commonlisp
rogersm has joined #commonlisp
rainthree has joined #commonlisp
Guest292 has quit [Ping timeout: 252 seconds]
Oladon has joined #commonlisp
akoana has joined #commonlisp
Dynom has joined #commonlisp
Bike has joined #commonlisp
rogersm has quit [Quit: Leaving...]
yauhsien has joined #commonlisp
yauhsien has quit [Ping timeout: 276 seconds]
orestarod has joined #commonlisp
akoana has quit [Quit: leaving]
frgo has joined #commonlisp
fitzsim has quit [Remote host closed the connection]
causal has quit [Quit: WeeChat 3.5]
bitmapper has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
trev has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
random-nick has quit [Ping timeout: 246 seconds]
Guest74 has quit [Quit: Connection closed]
notzmv has quit [Ping timeout: 244 seconds]
tyson2 has joined #commonlisp
pfd has quit [Quit: Client closed]
random-nick has joined #commonlisp
rotateq has joined #commonlisp
pfd has joined #commonlisp
treflip has quit [Remote host closed the connection]
kpoeck has joined #commonlisp
jmdaemon has joined #commonlisp
kpoeck has quit [Quit: Client closed]
jmd_ has joined #commonlisp
jmdaemon has quit [Ping timeout: 272 seconds]
treflip has joined #commonlisp
aartaka has quit [Ping timeout: 244 seconds]
aartaka has joined #commonlisp
dstein64- has joined #commonlisp
alethkit has joined #commonlisp
aartaka has quit [Ping timeout: 272 seconds]
azimut has quit [Ping timeout: 240 seconds]
aartaka has joined #commonlisp
dstein64 has quit [Ping timeout: 240 seconds]
dstein64- is now known as dstein64
<alethkit> Hello! Is Mezzano's CL implementation the only one that can run on bare metal?
jmdaemon has joined #commonlisp
jmd_ has quit [Ping timeout: 246 seconds]
<pjb> alethkit: not only. There's also Movitz.
<pjb> alethkit: but even the implementations targetting POSIX systems, they mostly run on bare hardware, with just a few dependencies in libc and a kernel… They could easily be made to run on raw bare hardware.
dim has quit [Quit: ZNC 1.8.2+deb2+b1 - https://znc.in]
dim has joined #commonlisp
kpoeck has joined #commonlisp
tyson2 has quit [Remote host closed the connection]
<random-nick> genera also runs on (its own) bare hardware
<alethkit> pjb: So has anyone tried to port, say, SBCL to x86 bare metal in the past?
<rotateq> alethkit: SBCL is an implementation, ran from the start on bare metal afaik and compiles natively.
rainthree has quit [Ping timeout: 272 seconds]
pfd has quit [Quit: Client closed]
<Bike> "bare metal" can also mean independently of an operating system, and sbcl can't do that
<rotateq> Bike: Ah, good objection. :)
<alethkit> I should have clarified: I was indeed referring to being run without an OS
<alethkit> And I'm not sure attemping to port SBCL is the greatest of ideas
treflip has quit [Quit: good night]
<Nilby> I don't think it's even close to easy to run SBCL without an OS. It's tough to get it to be usable with just a kernel. Mezzano is far ahead in that regard.
<semz> consider also that Mezzano's bare metal is QEMU for the most part
<semz> since otherwise you'll be implementing drivers all day
<alethkit> So I guess Mezzano is the way to go
<alethkit> It's a shame that it's not very active
<dlowe> you have the power to change that! :)
<alethkit> True, but I should probably get to grips with CL first
<rotateq> alethkit: but the good thing is you can rely that it still works
<alethkit> The CL implementation?
<dlowe> one useful thing that could be done would be to merge Mezzano with current sbcl
<rotateq> alethkit: no Mezzano
<alethkit> Ah, right
<alethkit> So getting SBCL to work in Mezzano, or getting SBCL to work for embedded development via Mezzano's compiler?
<rotateq> oh I thought SBCL is used to compile Mezzano
tyson2 has joined #commonlisp
Sankalp has quit [Ping timeout: 240 seconds]
n1to has joined #commonlisp
<dlowe> I may be wrong but I thought sbcl was Mezzano's internal compiler
aartaka has quit [Ping timeout: 240 seconds]
<pjb> alethkit: nobody prevents you to make it more active.
Bike has quit [Quit: Connection closed]
<mrcom> Just saw Eitaro Fukamachi's web post (dated today), and he's saying that Hunchentoot is creating a thread per request. HT docs I just saw say, by default, it's per connection. Tom-A-to/Tom-AH-to, outdated info, or ???.
Everything has quit [Quit: leaving]
SAL9000 has quit [Quit: maintenance]
<mrcom> n/m--Tom-A-to/Tom-AH-to. Article later goes into detail, says "...creates a new thread when accepting a connection,... terminates the thread when it's disconnected."
Oddity has joined #commonlisp
<mrcom> So he's pretty much equating request w/ connection.
cage has quit [Quit: rcirc on GNU Emacs 27.1]
karlosz has joined #commonlisp
<random-nick> dlowe: mezzano uses its own compiler, and it's nowhere as good as sbcl's
karlosz has quit [Quit: karlosz]
notzmv has joined #commonlisp
Sankalp has joined #commonlisp
bilegeek has joined #commonlisp
tyson2 has quit [Remote host closed the connection]
ec has quit [Quit: ec]
ec has joined #commonlisp
pfd has joined #commonlisp
Dynom has quit [Quit: WeeChat 3.5]
<dlowe> all the more reason to merge them
attila_lendvai has joined #commonlisp
rotateq has quit [Ping timeout: 244 seconds]
mister_m has joined #commonlisp
<dlowe> though I think about having two compilers sharing the same image and it makes my brain hurt
Brucio-61 has quit [Ping timeout: 240 seconds]
scymtym has quit [Ping timeout: 272 seconds]
SAL9000 has joined #commonlisp
dlowe has quit [Remote host closed the connection]
Alfr has quit [Quit: Leaving]
dra has joined #commonlisp
karlosz has joined #commonlisp
tyson2 has joined #commonlisp
Brucio-61 has joined #commonlisp
yauhsien has joined #commonlisp
pillton has joined #commonlisp
Bike has joined #commonlisp
pve has quit [Quit: leaving]
attila_lendvai has quit [Ping timeout: 260 seconds]
kpoeck has quit [Quit: Client closed]
morganw has joined #commonlisp
scymtym has joined #commonlisp
karlosz has quit [Quit: karlosz]
tane has quit [Quit: Leaving]
yottabyte has quit [Quit: Connection closed for inactivity]
frgo_ has joined #commonlisp
frgo has quit [Ping timeout: 246 seconds]
pfd has quit [Quit: Client closed]
dec0d3r has joined #commonlisp
frgo_ has quit [Ping timeout: 244 seconds]
frgo has joined #commonlisp
pfd has joined #commonlisp
n1to has quit [Quit: Leaving]
Bike has quit [Quit: Connection closed]
yauhsien has quit [Ping timeout: 272 seconds]
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
orestarod has quit [Ping timeout: 248 seconds]
pfd has quit [Quit: Client closed]
random-nick has quit [Ping timeout: 244 seconds]
santiagopim has quit [Remote host closed the connection]
yauhsien has joined #commonlisp
shka has quit [Ping timeout: 246 seconds]
Bike has joined #commonlisp
aeth has quit [Ping timeout: 246 seconds]
aeth has joined #commonlisp
yauhsien has quit [Remote host closed the connection]
morganw has quit [Remote host closed the connection]
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
Bike has quit [Quit: Connection closed]
yauhsien has joined #commonlisp
torbo has joined #commonlisp
dra_ has joined #commonlisp
dra has quit [Ping timeout: 260 seconds]