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/>
lusciouslover has joined #commonlisp
troojg has quit [Ping timeout: 276 seconds]
rkazak has joined #commonlisp
istewart has joined #commonlisp
notzmv has joined #commonlisp
rkazak has quit [Ping timeout: 276 seconds]
jonatack has quit [Ping timeout: 252 seconds]
cercopith_ has joined #commonlisp
cercopith has quit [Read error: Connection reset by peer]
semz has quit [Quit: ZNC 1.9.0+deb2build3 - https://znc.in]
semz has joined #commonlisp
bpanthi977 has quit [Remote host closed the connection]
bpanthi977 has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
toadlicker has joined #commonlisp
rkazak has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
Spawns_Carpeting has quit [Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in]
bpanthi977 has quit [Ping timeout: 260 seconds]
Spawns_Carpeting has joined #commonlisp
troojg has joined #commonlisp
rkazak has quit [Ping timeout: 244 seconds]
bpanthi977 has joined #commonlisp
random-nick has quit [Ping timeout: 260 seconds]
King_julian has quit [Ping timeout: 276 seconds]
King_julian has joined #commonlisp
bpanthi978 has joined #commonlisp
bpanthi977 has quit [Ping timeout: 272 seconds]
bpanthi978 is now known as bpanthi977
msv has quit [Quit: Leaving]
rtypo has quit [Ping timeout: 252 seconds]
dstein64- has joined #commonlisp
bpanthi977 has quit [Ping timeout: 260 seconds]
rkazak has joined #commonlisp
dstein64 has quit [Ping timeout: 276 seconds]
dstein64- is now known as dstein64
khrbtxyz has joined #commonlisp
msv has joined #commonlisp
jA_cOp has quit [Read error: Connection reset by peer]
jA_cOp has joined #commonlisp
bpanthi977 has joined #commonlisp
rkazak has quit [Ping timeout: 248 seconds]
fosskers has joined #commonlisp
[X-Scale] has joined #commonlisp
X-Scale has quit [Ping timeout: 260 seconds]
[X-Scale] is now known as X-Scale
DragonMaus has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
Thermoriax_1 has quit [Ping timeout: 260 seconds]
DragonMaus has joined #commonlisp
bpanthi977 has quit [Ping timeout: 244 seconds]
mange has joined #commonlisp
terrorjack has quit [Quit: The Lounge - https://thelounge.chat]
terrorjack has joined #commonlisp
rkazak has joined #commonlisp
bpanthi977 has joined #commonlisp
troojg has quit [Ping timeout: 260 seconds]
rkazak has quit [Ping timeout: 276 seconds]
zwr has quit [Read error: Connection reset by peer]
notzmv has quit [Ping timeout: 248 seconds]
zwr has joined #commonlisp
bpanthi977 has quit [Ping timeout: 276 seconds]
<jasom> Is method redefinition not well-defined by the standard? I noticed that SBCL warns when I do this.
<jasom> " If the generic function already has a method that agrees with the method being defined on parameter specializers and qualifiers, defmethod replaces the existing method with the one now being defined. For a definition of agreement in this context. see Section 7.6.3 (Agreement on Parameter Specializers and Qualifiers)." So anyone know why sbcl WARNs this?
rkazak has joined #commonlisp
<decweb> need to post an example, I redefine generics all the time without issue.
<decweb> There's something you've changed from one definition to the next that is probably causing the problem.
<jasom> Put this in a file that is part of an ASDF system that :depends-on "yason" then (asdf:load) the system: (defmethod yason:encode ((object (eql nil)) &optional (stream yason::*json-output*)) (write-string "false" stream) object)
<jasom> I get "WARNING: redefining YASON:ENCODE (#<SB-MOP:EQL-SPECIALIZER NIL>) in DEFMETHOD"
<decweb> Without consulting the spec and not being an expert at all, I'm thinking &optional and &key parameters do not accept defaults on generic methods, but perhaps I'm just forgetting
<decweb> Does it need to be EQL 'NIL? no idea
<gilberth> All of that is a red herring.
<decweb> You might use (object null) as well
<jasom> From the specialized-lambda-list that's fine: &key{var | ({var | (keywordvar)} [initform [supplied-p-parameter] ])}
jrm has quit [Quit: ciao]
<jasom> gilberth: do you know the answer or just that decweb's suggestions aren't it?
<gilberth> Same happens with DEFUN. SBCL pulls https://novaspec.org/cl/3_2_Compilation#sec_3_2_2_3 fifth item.
<ixelp> 3.2 Compilation | Common Lisp Nova Spec
<_death> I can imagine one would like to know when redefining a method..
<gilberth> "A call within a file to a named function that is defined in the same file refers to that function, unless that function has been declared notinline. The consequences are unspecified if functions are redefined individually at run time or multiply defined in the same file."
jrm has joined #commonlisp
<gilberth> And this is why c-c c-c doesn't work reliably with SBCL, but c-c c-k is ok.
<jasom> gilberth: I didn't relized that "named function" included methods
<gilberth> A generic function is a function as well. And I'm sure that when you ask an SBCL they count replacing a method as redefining here. But you would need to ask them.
<gilberth> * an SBCL guy
<_death> (it's a style warning)
<decweb> If I put (defmethod encode ((object (eql nil)) &optional (stream *standard-output*)) (write-string "false" stream) object) in a file and C-C it repeatedly, I get no warnings after the first
<jasom> _death: if it were a style warning I wouldn't have been concerned; it's a warning
<decweb> If I do it from the repl, I get warnings every time.
<decweb> C-c C-c that is, works fine in slime
<decweb> on this example
<jasom> decweb: that's entirely consistent with gilberth's description of why
<decweb> Yes, just validating
<decweb> So it's sensitive to file context.
<_death> jason: (subtypep 'sb-kernel:redefinition-with-defmethod 'style-warning) => t
<gilberth> decweb: c-c c-c will bite you eventually. At least with DEFUN. Been there, more than once, cost be quite a bit of hair.
<jasom> _death: nevertheless it prints "WARNING: redefining YASON:ENCODE (#<SB-MOP:EQL-SPECIALIZER NIL>) in DEFMETHOD"
<jasom> SBCL 2.4.10
rkazak has quit [Ping timeout: 260 seconds]
<jasom> I guess I need to get off my butt and submit a PR for allowing customizing the encode type of nil; YASON already has customization for *inputs* of null/false so having outputs as well makes sense.
<decweb> I haven't had much problem with C-c C-c vs C-c C-k for individual functions, but if you've got #'fun references to it hanging around, time to recompile more than just the function being redefined.
<jasom> decweb: compiler optimizations can break you in the future then; sbcl could e.g. start inlining small functions defined in the same file and be within spec.
<decweb> uncle, uncle, happy to recompile more :-)
<jasom> You also can get less good style-warnings for some classes of mistakes
<decweb> When I'm really stumped I reload the system with :FORCE, and if I'm still stumped, blow away cached fasls.
<decweb> Happily SBCL hasn't messed with my mind much because I'm a casual user rarely doing fancy things.
<jasom> I default to C-c C-k and use C-c C-c to get slime to pickup new definitions for completion and/or indentation (when I'm in the middle of code-entry so C-c C-k will fail)
<decweb> Meanwhle, good stuff to know, appreciated.
jrm has quit [Quit: ciao]
jrm has joined #commonlisp
<jasom> gilberth: Thanks for the help
bpanthi977 has joined #commonlisp
<decweb> Re: nil, usually if I want to specialize on nil I use NULL as a type. Is (EQL NIL) preferred?
<decweb> I haven't tried to determine if one would be faster than the other.
<jasom> TIL that NULL is a class (not just a type). (EQL NIL) will be chosen over NULL since EQL specializers precede all other specializers
X-Scale has quit [Ping timeout: 260 seconds]
admich1 has quit [Ping timeout: 276 seconds]
admich1 has joined #commonlisp
<_death> jasom: it prints as WARNING because warn is used, rather than sb-int:style-warn.. cosmetic
bpanthi977 has quit [Ping timeout: 260 seconds]
bpanthi977 has joined #commonlisp
X-Scale has joined #commonlisp
<jasom> _death: so that's why ASDF completes
rkazak has joined #commonlisp
<beach> SBCL seems to warn only when the second definition is a different file from the first one.
<beach> It seems reasonable to me to give some indication then. But perhaps not a warning.
<jasom> beach: apparently it's a style-warning that is printed as WARNING
<beach> I have (DEBUG 3) in my .sbclrc, and I think SBCL does not inline then, nor does it use all the liberties that the standard allows with function in a compilation unit. So C-c C-c should always work then.
<beach> jasom: I see.
<beach> I really don't understand why (DEBUG 3) is not the default.
<jasom> beach: Is it a lot slower than (DEBUG 1)?
<jasom> I do like being able to inspect all locals in sldb which needs (DEBUG 3)
<beach> I have no idea because I always use (DEBUG 3) so I can't compare.
Oladon has quit [Quit: Leaving.]
decweb has quit [Quit: Konversation terminated!]
rkazak has quit [Ping timeout: 276 seconds]
mulk has quit [Ping timeout: 252 seconds]
mulk has joined #commonlisp
rkazak has joined #commonlisp
rkazak has quit [Ping timeout: 248 seconds]
X-Scale has quit [Ping timeout: 260 seconds]
Lord_Nightmare has quit [Quit: ZNC - http://znc.in]
Lord_Nightmare has joined #commonlisp
rkazak has joined #commonlisp
rkazak has quit [Ping timeout: 244 seconds]
notzmv has joined #commonlisp
Gleefre has joined #commonlisp
bpanthi977 has quit [Ping timeout: 260 seconds]
rkazak has joined #commonlisp
<fosskers> I usually only turn on (debug 3) if I need that extra view into the locals.
<fosskers> Most of the time (debug 1) seems to be sufficient.
<aeth> I usually just print debug with FORMAT, which is really handy because it can even handle lists and things that can be turned into lists. So I've personally never really needed DEBUG 3
<aeth> Inserting a FORMAT followed by a BREAK is almost always enough to see what's going on.
<jackdaniel> in not-so-small programs you often have a deeply nested structure as a parameter -- "printing" is not enough for inspecting it
<aeth> I suppose inlining can still sometimes get in the way by making the error show up in the wrong place, and by making inserting a FORMAT there not register without a full ASDF reload instead of a simple local recompile
<fosskers> aeth: consider also Sly Stickers.
<fosskers> I've never print-debugged once since starting CL thanks to those.
<aeth> jackdaniel: Well, the drawback is that I usually have to define a print-object, if it's simple enough, or a separate print function if it would be far too verbose to normally print.
<aeth> a print-object method, I mean
<jackdaniel> I guess it is a "you do you" kind of a situation. I don't imagine printing 10s of records in the output record history to simply realise, that I must also to inspect one of them
<aeth> Also, it seems to scale. I have > 20,000 lines of code in my largest project.
<aeth> Very, very dense code that generates quite a bit.
<jackdaniel> forgive being ironic, but surely around ~10,000 is print-object methods ,)
King_julian has quit [Read error: Connection reset by peer]
<aeth> I actually only define 18.
pve has joined #commonlisp
<aeth> Assuming a length of 10 lines each, that would be 180 lines
<aeth> I probably should define more, though
<aeth> I will say that my flavor of print-debugging kind of depends on me controlling most of my stack, since I know where to look and I know where to insert code and I'm confident about inserting code (although M-. would mostly work if you remember to remove it later)
<jackdaniel> I'm not saying that print debugging is a bad approach, only that it is not always sufficient (or, if you like, sometimes it is inadequate)
rkazak has quit [Ping timeout: 248 seconds]
King_julian has joined #commonlisp
<aeth> I think you have to write with it in mind, but it mostly lines up with writing with the REPL in mind, too.
<aeth> It's really annoying when the problem can't be printed because it's a bunch of arbitrary, constantly-updating single-floats that represent in-engine stuff, though. Once I just drew cubes at these locations.
notzmv has quit [Ping timeout: 265 seconds]
admich1 has quit [Read error: Connection reset by peer]
admich1 has joined #commonlisp
ebrasca has joined #commonlisp
apac has joined #commonlisp
ingeniot has joined #commonlisp
rkazak has joined #commonlisp
<jackdaniel> something like this? https://turtleware.eu/static/paste/matrix.mp4 :3
rkazak has quit [Ping timeout: 260 seconds]
edgar-rft` has joined #commonlisp
ingeniot has quit [Ping timeout: 252 seconds]
lcn_ has joined #commonlisp
notzmv has joined #commonlisp
edgar-rft has quit [Ping timeout: 252 seconds]
rkazak has joined #commonlisp
apac has quit [Ping timeout: 244 seconds]
mgl has joined #commonlisp
TactfulCitrus has quit [Remote host closed the connection]
rkazak has quit [Ping timeout: 248 seconds]
apac has joined #commonlisp
notzmv has quit [Ping timeout: 244 seconds]
notzmv has joined #commonlisp
<jackdaniel> apparently this tool is implemented partially in Common Lisp: https://osh-autodoc.org/ ; not sure whether it was mentioend here before. a tool that generates assembly manuals from CAD specifications
<ixelp> OSH Automated Documentation
puke has quit [Quit: puke]
puke has joined #commonlisp
puke has quit [Remote host closed the connection]
rkazak has joined #commonlisp
puke has joined #commonlisp
puke has quit [Remote host closed the connection]
puke has joined #commonlisp
istewart has quit [Quit: Konversation terminated!]
rkazak has quit [Ping timeout: 252 seconds]
fosskers has quit [Remote host closed the connection]
msv has quit [Ping timeout: 248 seconds]
msv has joined #commonlisp
admich1 has quit [Ping timeout: 252 seconds]
notzmv has quit [Read error: Connection reset by peer]
admich1 has joined #commonlisp
apac has quit [Ping timeout: 276 seconds]
rkazak has joined #commonlisp
treflip has joined #commonlisp
rkazak has quit [Ping timeout: 248 seconds]
leeb has joined #commonlisp
leeb_ has quit [Ping timeout: 248 seconds]
bpanthi977 has joined #commonlisp
bpanthi977 has quit [Ping timeout: 248 seconds]
admich1 has quit [Remote host closed the connection]
admich1 has joined #commonlisp
<fengshaun> what's a canonical way to return a boolean or an error with a message? the errors are not 'exceptional', so a condition wouldn't logically fit. I'm thinking (values bool string) may be it?
<jackdaniel> how about (valuea (make-condition 'non-exc :bool bool :strimg string) ?
inline has quit [Remote host closed the connection]
rkazak has joined #commonlisp
<fengshaun> valuea?
inline has joined #commonlisp
<jackdaniel> im typing on phone
<jackdaniel> typo
<fengshaun> oh
<fengshaun> yea, could use a condition and add the message
younder has quit [Remote host closed the connection]
rkazak has quit [Ping timeout: 276 seconds]
attila_lendvai has joined #commonlisp
ewig has joined #commonlisp
cage has joined #commonlisp
rkazak has joined #commonlisp
treflip` has joined #commonlisp
treflip has quit [Ping timeout: 260 seconds]
inline has quit [Remote host closed the connection]
inline has joined #commonlisp
chomwitt has joined #commonlisp
X-Scale has joined #commonlisp
rkazak has quit [Ping timeout: 265 seconds]
fart_cat has quit [Ping timeout: 276 seconds]
fart_cat has joined #commonlisp
shawnw has joined #commonlisp
admich1 has quit [Read error: Connection reset by peer]
admich1 has joined #commonlisp
King_julian has quit [Read error: Connection reset by peer]
puke has quit [Quit: puke]
puke has joined #commonlisp
puke has quit [Remote host closed the connection]
puke has joined #commonlisp
rtypo has joined #commonlisp
King_julian has joined #commonlisp
rkazak has joined #commonlisp
akovalenko has quit [Ping timeout: 248 seconds]
Lord_of_Life_ has joined #commonlisp
Lord_of_Life has quit [Ping timeout: 248 seconds]
Lord_of_Life_ is now known as Lord_of_Life
akovalenko has joined #commonlisp
rkazak has quit [Ping timeout: 260 seconds]
toadlicker_ has joined #commonlisp
toadlicker has quit [Read error: Connection reset by peer]
BierLiebHaber has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
BierLiebHaber has joined #commonlisp
<scymtym> regrading SBCL's method redefinition warning: that warning is signaled only if the method redefinition is "interesting" which means if the old and the new method are defined in different files
<scymtym> this seems to have been the case with the original question since one method seems to have come from the yason system and the other from code using that system. in such a scenario, the warning seems justified to me since it is likely that the user is overwriting behavior that someone else defined. there can be false positives, of course, when restructuring code
<scymtym> i see beach mentioned this. sorry for the noise
rkazak has joined #commonlisp
decweb has joined #commonlisp
random-nick has joined #commonlisp
toadlicker has joined #commonlisp
toadlicker_ has quit [Remote host closed the connection]
toadlicker has quit [Read error: Connection reset by peer]
toadlicker has joined #commonlisp
rkazak has quit [Ping timeout: 252 seconds]
varjag has joined #commonlisp
rkazak has joined #commonlisp
treflip`` has joined #commonlisp
rkazak has quit [Ping timeout: 248 seconds]
treflip` has quit [Ping timeout: 265 seconds]
Ruby has quit [Ping timeout: 260 seconds]
Ruby has joined #commonlisp
rkazak has joined #commonlisp
<inline> sheet
<inline> can't get the clocc clhs-doc to connect to the hyperspec remotely
<inline> no idea why
<inline> i get a 400 Bad Request always
rkazak has quit [Ping timeout: 272 seconds]
treflip`` has quit [Changing host]
treflip`` has joined #commonlisp
treflip`` is now known as treflip
markb1 has quit [Ping timeout: 265 seconds]
cage has quit [Remote host closed the connection]
treflip` has joined #commonlisp
treflip has quit [Ping timeout: 248 seconds]
mange has quit [Quit: Zzz...]
rkazak has joined #commonlisp
cage has joined #commonlisp
<inline> so it connects, but the request is malformed
<inline> i don't get why
<inline> i can read a local HyperSpec with it just fine, but then it's another :file handler which does that
<inline> i already fixed it to accept https links (adjusted the port too) but still no idea, why my request is malformed
<inline> hmmmm
treflip` has quit [Ping timeout: 272 seconds]
rkazak has quit [Ping timeout: 248 seconds]
bpanthi977 has joined #commonlisp
rkazak has joined #commonlisp
inline has quit [Ping timeout: 252 seconds]
trelfip has joined #commonlisp
varjag has quit [Ping timeout: 248 seconds]
doyougnu has quit [Ping timeout: 252 seconds]
manwithluck has quit [Ping timeout: 252 seconds]
doyougnu has joined #commonlisp
scymtym has quit [Ping timeout: 252 seconds]
manwithluck has joined #commonlisp
scymtym has joined #commonlisp
pve has quit [Ping timeout: 276 seconds]
trelfip has quit [Read error: Connection reset by peer]
pve has joined #commonlisp
trelfip has joined #commonlisp
toadlicker has quit [Remote host closed the connection]
toadlicker has joined #commonlisp
dsgdsg has joined #commonlisp
rkazak has quit [Ping timeout: 265 seconds]
eddof13 has joined #commonlisp
inline has joined #commonlisp
wbooze has joined #commonlisp
eddof13 has quit [Ping timeout: 272 seconds]
<|3b|> one nice thing about print debugging is that it has history, so for things that take a while (or aren't deterministic) you can more easily trace back a problem than if you had to restart to hit a breakpoint at each earlier stage of tracing the problem
<|3b|> (assuming you managed to print out enough relevant things of course)
<|3b|> does depend a lot on domain though, other types of things are nicer to just poke around in inspector or whatever
bpanthi977 has quit [Ping timeout: 260 seconds]
bpanthi978 has joined #commonlisp
bpanthi978 is now known as bpanthi977
<wbooze> well i got this: https://dpaste.com/9DX2XVFM7
<ixelp> dpaste: 9DX2XVFM7
rkazak has joined #commonlisp
<wbooze> and this is url-open-http https://dpaste.com/9CNUSCFFC
<ixelp> dpaste: 9CNUSCFFC
<wbooze> i previousyl defined a url-open-https where i segregated the https stuff, but now it's all in one again
<wbooze> afaik CRLF stuff is already handled in url.lisp in clocc/cllib/url.lisp
<wbooze> so that's not it either i think, i tried with LF too it's the same
<wbooze> a simple curl gives me the resource but in clocc/sbcl it just fails
<wbooze> hmmmm
Gleefre has quit [Remote host closed the connection]
Gleefre has joined #commonlisp
King_julian has quit [Read error: Connection reset by peer]
rkazak has quit [Ping timeout: 248 seconds]
King_julian has joined #commonlisp
attila_lendvai has quit [Ping timeout: 260 seconds]
younder has joined #commonlisp
<|3b|> CRLF is specified in HTTP, so changing that should make things worse
<|3b|> no idea what's wrong though, even a complex curl to match headers and order works
attila_lendvai has joined #commonlisp
rkazak has joined #commonlisp
rkazak has quit [Ping timeout: 276 seconds]
rendar has joined #commonlisp
rendar has quit [Changing host]
rendar has joined #commonlisp
chomwitt has quit [Ping timeout: 276 seconds]
trelfip` has joined #commonlisp
trelfip has quit [Ping timeout: 244 seconds]
rkazak has joined #commonlisp
rkazak has quit [Ping timeout: 268 seconds]
mgl has quit []
apac has joined #commonlisp
triffid has quit [Ping timeout: 244 seconds]
parjanya has joined #commonlisp
stirl has joined #commonlisp
Gleefre has quit [Remote host closed the connection]
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
triffid has joined #commonlisp
rkazak has joined #commonlisp
<wbooze> right, i couldn't discover anything wrong yet, however when i change that list* to list i get a timeout instead (because suddenly there's a nil at the end which is not a vector)
rkazak has quit [Ping timeout: 260 seconds]
apac has quit [Ping timeout: 265 seconds]
gorignak has joined #commonlisp
stirl has quit [Ping timeout: 276 seconds]
stirl has joined #commonlisp
rkazak has joined #commonlisp
admich1 has quit [Ping timeout: 245 seconds]
admich1 has joined #commonlisp
apac has joined #commonlisp
rkazak has quit [Ping timeout: 276 seconds]
Gleefre has joined #commonlisp
admich1 has quit [Read error: Connection reset by peer]
admich1 has joined #commonlisp
yitzi has joined #commonlisp
garlic0x13 has joined #commonlisp
garlic0x1 has quit [Ping timeout: 260 seconds]
garlic0x13 is now known as garlic0x1
zxcvz has joined #commonlisp
stirl has quit [Ping timeout: 276 seconds]
apac has quit [Ping timeout: 248 seconds]
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
rkazak has joined #commonlisp
Gleefre has quit [Remote host closed the connection]
zxcvz has quit [Quit: zxcvz]
admich1 has quit [Ping timeout: 245 seconds]
decweb has quit [Quit: Konversation terminated!]
admich1 has joined #commonlisp
decweb has joined #commonlisp
bpanthi977 has quit [Ping timeout: 248 seconds]
yazz_ has joined #commonlisp
bpanthi977 has joined #commonlisp
trelfip`` has joined #commonlisp
trelfip`` has quit [Remote host closed the connection]
yazz has quit [Ping timeout: 252 seconds]
rkazak has quit [Ping timeout: 276 seconds]
treflip has joined #commonlisp
trelfip` has quit [Ping timeout: 252 seconds]
yazz_ has quit [Ping timeout: 248 seconds]
rkazak has joined #commonlisp
Gleefre has joined #commonlisp
yazz has joined #commonlisp
treflip has quit [Read error: Connection reset by peer]
treflip has joined #commonlisp
bpanthi977 has quit [Ping timeout: 276 seconds]
bpanthi977 has joined #commonlisp
admich1 has quit [Read error: Connection reset by peer]
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
cage has quit [Read error: Connection reset by peer]
admich1 has joined #commonlisp
admich1 has quit [Ping timeout: 252 seconds]
admich1 has joined #commonlisp
treflip has quit [Ping timeout: 248 seconds]
Gleefre has quit [Ping timeout: 272 seconds]
King_julian has quit [Ping timeout: 260 seconds]
chomwitt has joined #commonlisp
admich1 has quit [Ping timeout: 276 seconds]
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
rkazak has quit [Ping timeout: 252 seconds]
Gleefre has joined #commonlisp
yitzi has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
admich1 has joined #commonlisp
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
Gleefre has quit [Remote host closed the connection]
Gleefre has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
uhuh has joined #commonlisp
uhuh has quit [Changing host]
uhuh has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
jonatack has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
gorignak has quit [Quit: quit]
decweb has joined #commonlisp
decweb has quit [Client Quit]
decweb has joined #commonlisp
apac has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
jon_atack has joined #commonlisp
jonatack has quit [Ping timeout: 252 seconds]
decweb has quit [Quit: Konversation terminated!]
rkazak has joined #commonlisp
King_julian has joined #commonlisp
rkazak has quit [Ping timeout: 265 seconds]
Everything has joined #commonlisp
gorignak has joined #commonlisp
rkazak has joined #commonlisp
lcn__ has joined #commonlisp
stirl has joined #commonlisp
johnjaye has quit [Ping timeout: 260 seconds]
gorignak has quit [Quit: quit]
lcn_ has quit [Ping timeout: 244 seconds]
johnjaye has joined #commonlisp
gorignak has joined #commonlisp
Gleefre has quit [Remote host closed the connection]
Gleefre has joined #commonlisp
rkazak has quit [Ping timeout: 272 seconds]
decweb has joined #commonlisp
rkazak has joined #commonlisp
Oladon has joined #commonlisp
ewig has quit [Remote host closed the connection]
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
dsgdsg has quit [Ping timeout: 260 seconds]
rkazak has quit [Ping timeout: 276 seconds]
dsgdsg has joined #commonlisp
apac has quit [Ping timeout: 244 seconds]
rkazak has joined #commonlisp
lcn_ has joined #commonlisp
Gleefre has quit [Ping timeout: 272 seconds]
lcn__ has quit [Ping timeout: 272 seconds]
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
Everything has quit [Quit: Lost terminal]
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
rkazak has quit [Ping timeout: 245 seconds]
cercopith_ has quit [Remote host closed the connection]
rkazak has joined #commonlisp
apac has joined #commonlisp
dsgdsg has quit [Ping timeout: 260 seconds]
uhuh has quit [Remote host closed the connection]
rkazak has quit [Ping timeout: 268 seconds]
rkazak has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
rkazak has quit [Ping timeout: 260 seconds]
apac has quit [Quit: Konversation terminated!]
jon_atack has quit [Ping timeout: 252 seconds]
johnjaye has quit [Ping timeout: 252 seconds]
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
rkazak has joined #commonlisp
msv has quit [Read error: Connection reset by peer]
msv has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
rkazak has quit [Ping timeout: 272 seconds]
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
thonkpod has quit [Ping timeout: 260 seconds]
thonkpod has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
gorignak has quit [Quit: quit]
decweb has joined #commonlisp
gorignak has joined #commonlisp
rkazak has joined #commonlisp
johnjaye has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
rkazak has quit [Ping timeout: 260 seconds]
attila_lendvai has quit [Ping timeout: 252 seconds]
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
jonatack has joined #commonlisp
stirl has quit [Ping timeout: 260 seconds]
pve has quit [Quit: leaving]
rkazak has joined #commonlisp
jon_atack has joined #commonlisp
jonatack has quit [Ping timeout: 252 seconds]
jonatack has joined #commonlisp
rkazak has quit [Ping timeout: 252 seconds]
jon_atack has quit [Ping timeout: 252 seconds]
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
admich1 has quit [Remote host closed the connection]
admich1 has joined #commonlisp
troojg has joined #commonlisp
Ruby has quit [Quit: ZNC - https://znc.in]
Ruby has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
rkazak has joined #commonlisp
lcn_ has quit [Ping timeout: 244 seconds]
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
King_julian has quit [Ping timeout: 248 seconds]
King_julian has joined #commonlisp
rkazak has quit [Ping timeout: 248 seconds]
gorignak has quit [Quit: quit]
gorignak has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
decweb has joined #commonlisp
screwlisp has joined #commonlisp