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/>
markb1 has quit [Ping timeout: 252 seconds]
alfiee has joined #commonlisp
Noisytoot has quit [Quit: ZNC 1.9.1 - https://znc.in]
istewart has joined #commonlisp
Noisytoot has joined #commonlisp
rkazak has joined #commonlisp
alfiee has quit [Ping timeout: 268 seconds]
markb1 has joined #commonlisp
rkazak has quit [Ping timeout: 268 seconds]
dnhester26 has joined #commonlisp
<dnhester26> I want to overwrite a function but I want access to the original function and call that function in the new funciton. I tried doing it with a let form but the variable with the function is basically just calling the overwritten function, so how can I do it instead?
dnhester26 has quit [Client Quit]
decweb has quit [Quit: Konversation terminated!]
JuanDaugherty has joined #commonlisp
dnhester26 has joined #commonlisp
<reb> dnhester26: I'm not exactly sure what you want ...
dnhester26 has quit [Remote host closed the connection]
<reb> If you have a function defined like (defun foo () 10) ... you can call it with (funcall 'foo), (funcall #'foo), and (funcall (symbol-function 'foo)).
<reb> If you take the result of (symbol-function 'foo) and save it away somewhere, you should still be able to call it after foo is redefined ...
<reb> (let ((old (symbol-function 'foo))) (defun foo () 20) (list (foo) (funcall old)))
dnhester26 has joined #commonlisp
<|3b|> with LET specifically, there might be some issues with when it gets evaluated, since DEFUN has compile-time side effects, but the LET isn't stored until the form is evaluated (so probably after compilation)
<dnhester26> so would flet work instead? or how can I do it?
<dnhester26> thanks for replying
markb1 has quit [Ping timeout: 268 seconds]
<|3b|> storing the old function in a global (defvar etc) should work as expected though
<dnhester26> reb: thanks, my chat disconnected, I just caught up with the logs. I will try that. I was doing (let ((old #'foo)) (defun foo ...)), will try again, thanks!
<|3b|> flet would probably be worse, since you would probably just call the function by name inside the flet
<dnhester26> ah, so just try defvar instead
<dnhester26> will try it now
<|3b|> alternately, find something in the spec saying the LET should definitely see the old definition, and then convince your implementation to fix it :)
<|3b|> or maybe use (setf symbol-value) instead of defun
decweb has joined #commonlisp
<|3b|> actually, i guess DEFUN doesn't have to have copile-time side effects, so it would be the stuff about compilation blocks instead?
<|3b|> compilation units i mean
<|3b|> or maybe compile-file?
JuanDaugherty is now known as ColinRobinson
ym has joined #commonlisp
rkazak has joined #commonlisp
<dnhester26> no, the REPL gets sstuck in a loop, still didn't work
<dnhester26> I did it with defvar and symbol-function, but still gets stuck in a loop :(
<|3b|> (defun foo ()1) (defparameter *foo* #'foo) (defun foo () (print (funcall *foo*))) works here
<|3b|> or (let ((foo #'foo)) (setf (symbol-function 'foo) (lambda () (+ 10 (funcall foo)))))
markb1 has joined #commonlisp
<|3b|> make sure you use #' and make sure you didn't have a bad definition of the function still from previous testing
<dnhester26> thanks, will try again, weird that it didn't for me
<dnhester26> maybe that's it
<dnhester26> I have (defvar original-parse (symbol-function 'com.inuoe.jzon:parse))
<dnhester26> and then `(funcall original-parse`
<|3b|> yeah, symbol-function should be fine
dra has quit [Ping timeout: 248 seconds]
<|3b|> hmm, possibly LET with SYMBOL-FUNCTION instead of FUNCTION / #' works too
<dnhester26> hm, I'm doing symbol-function and defvar, why would that be different than let?
decweb has quit [Quit: Konversation terminated!]
<|3b|> defvar should work with either
<|3b|> let might have issues in some cases because it is in a single form
<dnhester26> Ok, maybe I should just restart the REPL and try again tomorrow since it's late... if yours worked, then maybe my image is messed up, will try again tomorrow when I'm rested, thanks again for the help!
* |3b| somewhat thinks LET not working with FUNCTION might be a bug in at least some cases though
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 246 seconds]
markb1 has quit [Ping timeout: 244 seconds]
gnoo has quit [Ping timeout: 244 seconds]
gnoo has joined #commonlisp
decweb has joined #commonlisp
markb1 has joined #commonlisp
decweb has quit [Client Quit]
wbooze has quit [Ping timeout: 265 seconds]
Inline has quit [Ping timeout: 265 seconds]
<dnhester26> a bug in SBCL?
dansa has joined #commonlisp
<|3b|> yeah
<dnhester26> ah, never expected I would run into a bug here, I just assumed it was a result of my own ignorance of CL
bjorkintosh has quit [Ping timeout: 276 seconds]
<aeth> Bugs happen all of the time when your code isn't particularly idiomatic!
<aeth> That's why some people try to fuzz test
* |3b| thinks it is reasonably idiomatic, just not very common
decweb has joined #commonlisp
<aeth> |3b|: Well, in that particular case, it can be a regression in a particular thing that used to work, but nobody uses.
<|3b|> though possibly not the best way to do things, since you can't redefine the wrapper without recompiling the original
<aeth> Someone has to report regressions, after all
bjorkintosh has joined #commonlisp
bjorkintosh has joined #commonlisp
bjorkintosh has quit [Changing host]
<|3b|> and also because sbcl's behavior is easier to argue in the case of COMPILE-FILE (at least i think that was the thing that might allow it, can't find in spec atm)
<|3b|> since it allows calling functions in the same file specially in ways that interfere with redefinition
<|3b|> which could arguably apply to an optimized (funcall (function ...) ..) as well
<aeth> Not a _bug_ in that it complies with the spec, but it took (probably) several years (maybe up to 6) for me to notice a regression in SBCL's 2D bounds checking removal (or the lack thereof, even in the latest (2.5.1), in code that was written in an odd way specifically to remove these bounds checks, on (according to git blame) 2019-06-11).
<aeth> (well, up to 5 < x < 6 years)
<aeth> (although I probably wasn't on the latest-to-that-month version)
<dnhester26> interesting, someone suggested I just avoid this redefinition altogether and just use my own function because of how unreliable the solutions seem to be, so I probably will do that and just change the places where I used that function
<dnhester26> I'm also only on SBCL 2.4.9 I think
<|3b|> yeah, defining your own things is better in general
<|3b|> overwriting functions you don't control is bad style in general
<|3b|> imagine if other libs do that too... maybe you both 'fix' the same thing, and the fixes stack making it wrong again, or maybe they save and modify separately enough that it can overwrite your changes, etc so load order randomly breaks things
<|3b|> or maybe they 'fix' something you thought was already right
<|3b|> (and your 'fix' breaks what they thought was right)
<aeth> |3b|: so it's "fine" in application code, but not in library code
<|3b|> sort of. at least better in application code
* |3b| frequently runs multiple "applications" in one image
<aeth> Yes, the REPL is basically the command line
<aeth> With threads as processes
ezakimak has quit []
<aeth> It's actually kind of funny because you can get quite far in Common Lisp without bothering to solve nonessential problems such as "how do I launch this?"
ezakimak has joined #commonlisp
alfiee has joined #commonlisp
green has joined #commonlisp
<dnhester26> thanks. Hm, other things I did were also overwriting things because the library owner wouldn't accept a small change to allow for flexibility to customize the code for the users, so I hd made my own fork, but then I thought I may just make it into a library and overwrite the code there instead
<dnhester26> So you think it's better to fork it than overwrite the code?
alfiee has quit [Ping timeout: 272 seconds]
<|3b|> yeah, a fork with a new package/system name is better than a library that changes behavior of some other library
<|3b|> or one that just exports new versions of functions and internally uses the old library
<|3b|> as long as people have to explicitly request the new behavior
<|3b|> which both avoids problems of it possibly breaking things for unrelated users of the original code, and avoids people accidentally depending on the new behavior if they happened to also load something unrelated that used the new lib
HER is now known as hernan604
ColinRobinson has quit [Quit: praxis.meansofproduction.biz (juan@acm.org)]
Lord_Nightmare has quit [Quit: ZNC - http://znc.in]
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester_ has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
Lord_Nightmare has joined #commonlisp
dnhester_ has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
bpanthi977 has quit [Ping timeout: 248 seconds]
surabax has quit [Quit: Leaving]
green has quit [Ping timeout: 272 seconds]
dnhester26 has quit [Ping timeout: 248 seconds]
bpanthi977 has joined #commonlisp
markb1 has quit [Ping timeout: 252 seconds]
alfiee has joined #commonlisp
decweb has quit [Quit: Konversation terminated!]
alfiee has quit [Ping timeout: 252 seconds]
dansa has quit [Ping timeout: 252 seconds]
markb1 has joined #commonlisp
dnhester26 has joined #commonlisp
random-nick has quit [Ping timeout: 260 seconds]
troojg has joined #commonlisp
troojg has quit [Remote host closed the connection]
troojg has joined #commonlisp
troojg has quit [Remote host closed the connection]
bilegeek has joined #commonlisp
markb1 has quit [Ping timeout: 265 seconds]
decweb has joined #commonlisp
decweb has quit [Client Quit]
dnhester26 has quit [Ping timeout: 265 seconds]
rkazak has quit [Ping timeout: 248 seconds]
markb1 has joined #commonlisp
alfiee has joined #commonlisp
decweb has joined #commonlisp
alfiee has quit [Ping timeout: 244 seconds]
decweb has quit [Quit: Konversation terminated!]
markb1 has quit [Ping timeout: 246 seconds]
csos95 has quit [Ping timeout: 248 seconds]
rkazak has joined #commonlisp
dnhester26 has joined #commonlisp
spdegabrielle has quit [Quit: Connection closed for inactivity]
markb1 has joined #commonlisp
dnhester26 has quit [Ping timeout: 252 seconds]
pillton has joined #commonlisp
rkazak has quit [Ping timeout: 260 seconds]
waleee has quit [Remote host closed the connection]
decweb has joined #commonlisp
decweb has quit [Client Quit]
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 244 seconds]
Inline has joined #commonlisp
wbooze has joined #commonlisp
Pixel_Outlaw has joined #commonlisp
decweb has joined #commonlisp
rkazak has joined #commonlisp
wbooze has quit [Ping timeout: 246 seconds]
Inline has quit [Remote host closed the connection]
wbooze has joined #commonlisp
Inline has joined #commonlisp
Pixel_Outlaw has quit [Quit: Leaving]
ym has quit [Ping timeout: 248 seconds]
markb1 has quit [Ping timeout: 252 seconds]
edgar-rft_ has joined #commonlisp
edgar-rft` has quit [Ping timeout: 248 seconds]
rkazak has quit [Ping timeout: 265 seconds]
markb1 has joined #commonlisp
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 265 seconds]
decweb has quit [Quit: Konversation terminated!]
contrapunctus has left #commonlisp [#commonlisp]
BierLiebHaber has quit [Quit: No Ping reply in 180 seconds.]
zwr has quit [Read error: Connection reset by peer]
BierLiebHaber has joined #commonlisp
contrapunctus has joined #commonlisp
zwr has joined #commonlisp
rkazak has joined #commonlisp
Inline has quit [Remote host closed the connection]
Inline has joined #commonlisp
wbooze has quit [Remote host closed the connection]
wbooze has joined #commonlisp
rkazak has quit [Ping timeout: 246 seconds]
alfiee has joined #commonlisp
drewjose has joined #commonlisp
alfiee has quit [Ping timeout: 248 seconds]
drewjose has left #commonlisp [bye]
pabs3 has quit [Ping timeout: 268 seconds]
mgl_ has joined #commonlisp
dnhester26 has joined #commonlisp
rainthree has joined #commonlisp
markb1 has quit [Ping timeout: 265 seconds]
dnhester26 has quit [Ping timeout: 252 seconds]
markb1 has joined #commonlisp
mange has quit [Quit: Quittin' time!]
soweli_iki has quit [Remote host closed the connection]
veqq1 has joined #commonlisp
veqq has quit [Ping timeout: 244 seconds]
veqq1 is now known as veqq
rkazak has joined #commonlisp
wbooze has quit [Remote host closed the connection]
rkazak has quit [Ping timeout: 252 seconds]
pabs3 has joined #commonlisp
Inline has quit [Remote host closed the connection]
alfiee has joined #commonlisp
nybble has quit [Ping timeout: 248 seconds]
Inline has joined #commonlisp
alfiee has quit [Ping timeout: 260 seconds]
rkazak has joined #commonlisp
Inline has quit [Max SendQ exceeded]
markb1 has quit [Ping timeout: 268 seconds]
chomwitt has joined #commonlisp
mishoo has joined #commonlisp
pve has joined #commonlisp
markb1 has joined #commonlisp
wbooze has joined #commonlisp
msv has quit [Remote host closed the connection]
msv has joined #commonlisp
alternateved has joined #commonlisp
rkazak has quit [Ping timeout: 276 seconds]
wbooze has quit [Remote host closed the connection]
nil78 has quit [Read error: Connection reset by peer]
bpanthi977 has quit [Ping timeout: 276 seconds]
nil78 has joined #commonlisp
reb has quit [Read error: Connection reset by peer]
reb has joined #commonlisp
veqq has quit [Ping timeout: 260 seconds]
veqq has joined #commonlisp
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 268 seconds]
rkazak has joined #commonlisp
rkazak has quit [Ping timeout: 244 seconds]
veqq1 has joined #commonlisp
istewart has quit [Quit: Konversation terminated!]
rkazak has joined #commonlisp
veqq has quit [Ping timeout: 272 seconds]
veqq has joined #commonlisp
dnhester26 has joined #commonlisp
veqq1 has quit [Ping timeout: 252 seconds]
pillton has quit [Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.4)]
Equill has joined #commonlisp
alfiee has joined #commonlisp
Th30n has joined #commonlisp
rainthree has quit [Ping timeout: 276 seconds]
alfiee has quit [Ping timeout: 252 seconds]
shka has joined #commonlisp
veqq1 has joined #commonlisp
veqq has quit [Ping timeout: 268 seconds]
veqq1 is now known as veqq
veqq1 has joined #commonlisp
veqq has quit [Ping timeout: 252 seconds]
veqq1 is now known as veqq
rkazak has quit [Ping timeout: 260 seconds]
veqq1 has joined #commonlisp
markb1 has quit [Ping timeout: 260 seconds]
rainthree has joined #commonlisp
veqq has quit [Ping timeout: 252 seconds]
veqq1 is now known as veqq
veqq1 has joined #commonlisp
veqq has quit [Ping timeout: 252 seconds]
veqq1 has quit [Ping timeout: 252 seconds]
nil78 has quit [Read error: Connection reset by peer]
markb1 has joined #commonlisp
nil78 has joined #commonlisp
rkazak has joined #commonlisp
yaneko9 has joined #commonlisp
alfiee has joined #commonlisp
yaneko has quit [Ping timeout: 244 seconds]
yaneko9 is now known as yaneko
alfiee has quit [Ping timeout: 244 seconds]
attila_lendvai has joined #commonlisp
rkazak has quit [Ping timeout: 260 seconds]
bpanthi977 has joined #commonlisp
markb1 has quit [Ping timeout: 272 seconds]
dnhester26 has quit [Ping timeout: 276 seconds]
bpanthi977 has quit [Ping timeout: 260 seconds]
rkazak has joined #commonlisp
markb1 has joined #commonlisp
Th30n has quit [Ping timeout: 252 seconds]
Th30n has joined #commonlisp
csos95 has joined #commonlisp
rkazak has quit [Ping timeout: 260 seconds]
alfiee has joined #commonlisp
markb1 has quit [Ping timeout: 276 seconds]
Th30n has quit [Read error: Connection reset by peer]
Th30n has joined #commonlisp
dnhester26 has joined #commonlisp
alfiee has quit [Ping timeout: 246 seconds]
Th30n has quit [Ping timeout: 252 seconds]
markb1 has joined #commonlisp
rkazak has joined #commonlisp
yaneko has quit [Quit: parting]
yaneko has joined #commonlisp
markb1 has quit [Ping timeout: 260 seconds]
yaneko has quit [Quit: parting]
rkazak has quit [Ping timeout: 272 seconds]
chomwitt has quit [Quit: WeeChat 3.8]
markb1 has joined #commonlisp
alfiee has joined #commonlisp
rkazak has joined #commonlisp
alfiee has quit [Ping timeout: 245 seconds]
cqst has quit [Ping timeout: 252 seconds]
yaneko has joined #commonlisp
rkazak has quit [Ping timeout: 248 seconds]
rkazak has joined #commonlisp
rainthree has quit [Remote host closed the connection]
rainthree has joined #commonlisp
zwr has quit [Read error: Connection reset by peer]
rainthree has quit [Ping timeout: 252 seconds]
bilegeek has quit [Quit: Leaving]
zwr has joined #commonlisp
decweb has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dra has joined #commonlisp
dra has joined #commonlisp
dra has quit [Changing host]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
markb1 has quit [Ping timeout: 248 seconds]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
rainthree has joined #commonlisp
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
pabs3 has quit [Read error: Connection reset by peer]
pabs3 has joined #commonlisp
alfiee has joined #commonlisp
rkazak has quit [Ping timeout: 252 seconds]
alfiee has quit [Ping timeout: 252 seconds]
cqst has joined #commonlisp
surabax has joined #commonlisp
rainthree has quit [Ping timeout: 244 seconds]
markb1 has joined #commonlisp
dnhester26 has joined #commonlisp
rainthree has joined #commonlisp
rainthree has quit [Ping timeout: 244 seconds]
rkazak has joined #commonlisp
King_julian has joined #commonlisp
bpanthi977 has joined #commonlisp
bpanthi977 has quit [Ping timeout: 252 seconds]
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester_ has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester_ has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
markb1 has quit [Ping timeout: 252 seconds]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dansa has joined #commonlisp
alfiee has joined #commonlisp
markb1 has joined #commonlisp
rkazak has quit [Ping timeout: 272 seconds]
alfiee has quit [Ping timeout: 265 seconds]
random-nick has joined #commonlisp
chiselfuse has quit [Ping timeout: 264 seconds]
chiselfuse has joined #commonlisp
josrr has joined #commonlisp
markb1 has quit [Ping timeout: 265 seconds]
rkazak has joined #commonlisp
markb1 has joined #commonlisp
yaneko has quit [Quit: parting]
dnhester26 has joined #commonlisp
dnhester26 has quit [Ping timeout: 248 seconds]
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 244 seconds]
rkazak has quit [Ping timeout: 248 seconds]
dnhester26 has joined #commonlisp
ym has joined #commonlisp
waleee has joined #commonlisp
rainthree has joined #commonlisp
amoroso has joined #commonlisp
pabs3 has quit [Ping timeout: 276 seconds]
rkazak has joined #commonlisp
pabs3 has joined #commonlisp
King_julian has quit [Ping timeout: 244 seconds]
varjag has joined #commonlisp
chomwitt has joined #commonlisp
rkazak has quit [Ping timeout: 260 seconds]
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 268 seconds]
rkazak has joined #commonlisp
dra has quit [Ping timeout: 248 seconds]
markb1 has quit [Ping timeout: 248 seconds]
rkazak has quit [Ping timeout: 248 seconds]
markb1 has joined #commonlisp
varjag has quit [Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.3)]
dnhester26 has quit []
alfiee has joined #commonlisp
chomwitt has quit [Quit: WeeChat 3.8]
markb1 has quit [Ping timeout: 248 seconds]
amoroso has quit [Ping timeout: 248 seconds]
rainthree has quit [Ping timeout: 244 seconds]
alfiee has quit [Ping timeout: 244 seconds]
rkazak has joined #commonlisp
markb1 has joined #commonlisp
jonatack has quit [Read error: Connection reset by peer]
JuanDaugherty has joined #commonlisp
rkazak has quit [Ping timeout: 252 seconds]
rkazak has joined #commonlisp
alfiee has joined #commonlisp
yaneko has joined #commonlisp
markb1 has quit [Ping timeout: 246 seconds]
amoroso has joined #commonlisp
JuanDaugherty is now known as ColinRobinson
alfiee has quit [Ping timeout: 246 seconds]
theruran has quit [Quit: Connection closed for inactivity]
rkazak has quit [Ping timeout: 260 seconds]
ryefolk has joined #commonlisp
amoroso has quit [Remote host closed the connection]
ColinRobinson is now known as JuanDaugherty
JuanDaugherty has quit [Quit: praxis.meansofproduction.biz (juan@acm.org)]
chum-cha has joined #commonlisp
markb1 has joined #commonlisp
craigbro has joined #commonlisp
soweli_iki has joined #commonlisp
apac has joined #commonlisp
rkazak has joined #commonlisp
soweli_iki has quit [Changing host]
soweli_iki has joined #commonlisp
waleee has quit [Remote host closed the connection]
rkazak has quit [Ping timeout: 248 seconds]
markb1 has quit [Ping timeout: 276 seconds]
markb1 has joined #commonlisp
rkazak has joined #commonlisp
alfiee has joined #commonlisp
amoroso has joined #commonlisp
chomwitt has joined #commonlisp
alfiee has quit [Ping timeout: 246 seconds]
rainthree has joined #commonlisp
rkazak has quit [Ping timeout: 260 seconds]
amoroso has quit [Quit: Leaving]
markb1 has quit [Ping timeout: 244 seconds]
dansa has quit [Ping timeout: 272 seconds]
tjbw has joined #commonlisp
cage has joined #commonlisp
cage has quit [Excess Flood]
cage has joined #commonlisp
rkazak has joined #commonlisp
chomwitt has quit [Ping timeout: 246 seconds]
markb1 has joined #commonlisp
rkazak has quit [Ping timeout: 248 seconds]
skin has joined #commonlisp
jonatack has joined #commonlisp
alfiee has joined #commonlisp
veqq has joined #commonlisp
alfiee has quit [Ping timeout: 252 seconds]
chomwitt has joined #commonlisp
rkazak has joined #commonlisp
bpanthi977 has joined #commonlisp
geminium has joined #commonlisp
markb1 has quit [Ping timeout: 260 seconds]
rkazak has quit [Ping timeout: 252 seconds]
nybble has joined #commonlisp
apac has quit [Ping timeout: 248 seconds]
markb1 has joined #commonlisp
wbooze has joined #commonlisp
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 265 seconds]
bpanthi977 has quit [Ping timeout: 252 seconds]
pranav has quit [Remote host closed the connection]
wbooze has quit [Quit: Leaving]
bpanthi977 has joined #commonlisp
rkazak has joined #commonlisp
rainthree has quit [Ping timeout: 265 seconds]
rkazak has quit [Ping timeout: 245 seconds]
pranav has joined #commonlisp
rkazak has joined #commonlisp
wbooze has joined #commonlisp
bilegeek has joined #commonlisp
yottabyte has joined #commonlisp
rkazak has quit [Ping timeout: 268 seconds]
Lord_of_Life has quit [Ping timeout: 252 seconds]
Lord_of_Life_ has joined #commonlisp
Lord_of_Life_ is now known as Lord_of_Life
josrr has quit [Remote host closed the connection]
josrr has joined #commonlisp
rainthree has joined #commonlisp
alfiee has joined #commonlisp
wbooze has quit [Ping timeout: 260 seconds]
Guest1457 is now known as steew
steew has quit [Changing host]
steew has joined #commonlisp
alfiee has quit [Ping timeout: 252 seconds]
Inline has joined #commonlisp
rkazak has joined #commonlisp
apac has joined #commonlisp
wbooze has joined #commonlisp
rkazak has quit [Ping timeout: 272 seconds]
Thermoriax has quit [Quit: Back in a bit]
alfiee has joined #commonlisp
waleee has joined #commonlisp
alfiee has quit [Ping timeout: 265 seconds]
rainthree has quit [Read error: Connection reset by peer]
rkazak has joined #commonlisp
mwnaylor has joined #commonlisp
gpiero has quit [Quit: Quitting...]
bpanthi977 has quit [Ping timeout: 276 seconds]
shawnw has quit [Ping timeout: 260 seconds]
mishoo has quit [Ping timeout: 260 seconds]
Thermoriax has joined #commonlisp
ldb has joined #commonlisp
ldb has quit [Changing host]
ldb has joined #commonlisp
josrr has quit [Remote host closed the connection]
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 268 seconds]
wbooze has quit [Quit: Leaving]
ldb has quit [Remote host closed the connection]
ldb has joined #commonlisp
geminium has quit [Ping timeout: 244 seconds]
rkazak has quit [Ping timeout: 246 seconds]
akoana has joined #commonlisp
ldb has quit [Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.4)]
Devon has quit [Ping timeout: 244 seconds]
dra has joined #commonlisp
kevingal has joined #commonlisp
Alfr has quit [Quit: Leaving]
varjag has joined #commonlisp
rkazak has joined #commonlisp
alfiee has joined #commonlisp
Thermoriax_1 has joined #commonlisp
skin has quit [Ping timeout: 252 seconds]
Thermoriax has quit [Ping timeout: 260 seconds]
alfiee has quit [Ping timeout: 244 seconds]
skin has joined #commonlisp
akoana has quit [Quit: leaving]
apac has quit [Ping timeout: 248 seconds]
cage has quit [Quit: rcirc on GNU Emacs 29.4]
mgl_ has quit [Remote host closed the connection]
Alfr has joined #commonlisp
Equill has quit [Ping timeout: 246 seconds]
rkazak has quit [Ping timeout: 268 seconds]
nil78 has quit [Read error: Connection reset by peer]
Thermoriax_1 is now known as Thermoriax
JuanDaugherty has joined #commonlisp
bpanthi977 has joined #commonlisp
alfiee has joined #commonlisp
nil78 has joined #commonlisp
rkazak has joined #commonlisp
alfiee has quit [Ping timeout: 246 seconds]
dansa has joined #commonlisp
rkazak has quit [Ping timeout: 248 seconds]
pve has quit [Quit: leaving]
pillton has joined #commonlisp
rkazak2 has joined #commonlisp
jonatack has quit [Read error: Connection reset by peer]
MyNetAz has quit [Remote host closed the connection]
MyNetAz has joined #commonlisp
shka has quit [Quit: Konversation terminated!]
rkazak2 has quit [Ping timeout: 268 seconds]
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 244 seconds]
msv has quit [Ping timeout: 252 seconds]
theruran has joined #commonlisp
nil78 has quit [Read error: Connection reset by peer]
squishy_bloob has joined #commonlisp
alternateved has quit [Remote host closed the connection]
nil78 has joined #commonlisp
dansa has quit [Quit: have a good night]
msv has joined #commonlisp
rkazak2 has joined #commonlisp
ym has quit [Quit: Leaving]
varjag has quit [Ping timeout: 260 seconds]
rkazak2 has quit [Ping timeout: 252 seconds]
dra has quit [Ping timeout: 268 seconds]
chum-cha has quit [Ping timeout: 276 seconds]
rkazak2 has joined #commonlisp
skin has quit [Quit: Lost terminal]
alfiee has joined #commonlisp
alfiee has quit [Ping timeout: 252 seconds]
Thermoriax has quit [Ping timeout: 268 seconds]
rkazak2 has quit [Ping timeout: 260 seconds]