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
mon_aaraj has quit [Ping timeout: 246 seconds]
Brucio-61 has joined #commonlisp
mon_aaraj has joined #commonlisp
mht-wtf has joined #commonlisp
mon_aaraj has quit [Ping timeout: 252 seconds]
mon_aaraj has joined #commonlisp
causal has joined #commonlisp
Lord_of_Life has quit [Ping timeout: 248 seconds]
Lord_of_Life has joined #commonlisp
adeht has quit [Ping timeout: 258 seconds]
resttime has quit [Ping timeout: 252 seconds]
morganw has quit [Remote host closed the connection]
Devon has joined #commonlisp
adeht has joined #commonlisp
resttime has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
lisp123 has joined #commonlisp
trumae has quit [Ping timeout: 240 seconds]
trumae has joined #commonlisp
igemnace has quit [Ping timeout: 246 seconds]
lisp123 has quit [Ping timeout: 250 seconds]
trumae has quit [Read error: Connection reset by peer]
trumae has joined #commonlisp
asarch has joined #commonlisp
Devon has quit [Ping timeout: 240 seconds]
asarch has quit [Ping timeout: 244 seconds]
mixotricha has joined #commonlisp
waleee has quit [Ping timeout: 260 seconds]
Devon has joined #commonlisp
Devon has quit [Ping timeout: 248 seconds]
akoana has quit [Quit: leaving]
Bike has quit [Quit: Lost terminal]
BytesAndCoffee has quit [Ping timeout: 252 seconds]
ns12 has quit [Ping timeout: 252 seconds]
mht-wtf has quit [Ping timeout: 252 seconds]
gabc has quit [Ping timeout: 252 seconds]
ns12 has joined #commonlisp
<beach> Good morning everyone!
Guest74 has joined #commonlisp
gabc has joined #commonlisp
BytesAndCoffee has joined #commonlisp
mht-wtf has joined #commonlisp
Devon has joined #commonlisp
lisp123 has joined #commonlisp
Devon has quit [Ping timeout: 255 seconds]
lisp123 has quit [Ping timeout: 256 seconds]
pillton has joined #commonlisp
pranavats has left #commonlisp [#commonlisp]
pranavats has joined #commonlisp
_paul0 has quit [Ping timeout: 246 seconds]
igemnace has joined #commonlisp
mixotricha has quit [Ping timeout: 252 seconds]
wmblathers has quit [Quit: Leaving...]
pranavats has left #commonlisp [#commonlisp]
prokhor_ has quit [Remote host closed the connection]
prokhor has joined #commonlisp
pranavats has joined #commonlisp
defaultxr has joined #commonlisp
mixotricha has joined #commonlisp
<CodeBitCookie[m]> Good Morning Everyone! (and beach)
jmd_ has quit [Ping timeout: 244 seconds]
trumae has quit [Ping timeout: 246 seconds]
trumae has joined #commonlisp
lisp123 has joined #commonlisp
bilegeek has joined #commonlisp
lisp123 has quit [Ping timeout: 276 seconds]
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
trumae has quit [Remote host closed the connection]
shka has joined #commonlisp
karlosz has joined #commonlisp
igemnace has quit [Remote host closed the connection]
Devon has joined #commonlisp
Devon has quit [Ping timeout: 255 seconds]
random-nick has joined #commonlisp
jack_rabbit has quit [Remote host closed the connection]
knusbaum has joined #commonlisp
<rendar> does common lisp represent data using s-expressions? like another language would use json, for example
<hayley> You can do that, yes.
<rendar> there is an example of data represented by s-expressions?
karlosz_ has joined #commonlisp
<jdz> rendar: Look at an ASDF system.
<hayley> The first example that came to mind is <https://github.com/robert-strandh/Compta/blob/master/home>. However note the square brackets; those are used to specify that the reader should read an instance of a class, rather than a list. And the #N= and #N# labels allow for structure sharing.
<jdz> And that same project has an ASDF system definition here: https://github.com/robert-strandh/Compta/blob/master/compta.asd
<rendar> i see
karlosz has quit [Ping timeout: 260 seconds]
karlosz_ is now known as karlosz
utis has quit [Ping timeout: 248 seconds]
<rendar> from what i see, you'll have (exp (exp )) and (exp ((exp) (exp))) but not (exp (exp) (exp)) ..or am i wrong? i'm very new to the lisp world
<hayley> I picked that example because an ASDF system could be considered code (though the DEFSYSTEM macro makes the system definition very declarative), whereas that account file is definitely not code.
defaultxr has quit [Ping timeout: 255 seconds]
<hayley> You can have (exp (exp) (exp)).
<jdz> rendar: It's just data, you can have whatever you want.
<rendar> ok
<hayley> More precisely, the grammar of lists looks something like List ::= ( Object+ ) ; Object ::= List | Symbol | String | Number | ... ; so lists can be nested however you feel is appropriate.
<hayley> (Though that notation is somewhat informal.)
<hayley> And the first rule should be List ::= ( Object* ) since we can have zero elements in a list. Oops.
<rendar> i see
<jdz> https://en.wikipedia.org/wiki/S-expression is pretty clear on this.
<rendar> thanks
<rendar> i wish a book to profoundly understand s-exp and all the magic behind lisp, an advices?
<rendar> any*
<jdz> There is no magic.
<jdz> You don't need a book, I'd suggest by reading the wikipedia page linked above.
utis has joined #commonlisp
<Alfr> What, no magic? Then why's there a wizard tucked in that corner?
<jdz> To scare off curious newbies.
<jdz> Those who persist in spite of the wizard are the worthy ones to continue on their road to Lisp.
<rendar> lol
pjb has quit [Remote host closed the connection]
<Nilby> the true magic is how s-exps mirror how the universe creates something from nothing
<Alfr> jdz, ah, well ... Just don't forget to feed him, he seems a bit malnourished to me.
<Josh_2> Good mornin'
lisp123 has joined #commonlisp
Posterdati has quit [Read error: Connection reset by peer]
lisp123 has quit [Ping timeout: 246 seconds]
<Nilby> rendar: I think http://t3x.org/lfn/ and http://t3x.org/clc/ show some of the deep magic of lisp
rodicm has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
<rendar> interesting thanks
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
pve has joined #commonlisp
rotateq has joined #commonlisp
MajorBiscuit has joined #commonlisp
Posterdati has joined #commonlisp
Th30n has joined #commonlisp
MajorBiscuit has quit [Client Quit]
lagash has quit [Ping timeout: 255 seconds]
MajorBiscuit has joined #commonlisp
ttree has quit [Ping timeout: 258 seconds]
rainthree has joined #commonlisp
mrcom has quit [Ping timeout: 244 seconds]
mrcom has joined #commonlisp
gxt has quit [Ping timeout: 240 seconds]
gxt has joined #commonlisp
<contrapunctus> Is there a library which can return information about a `read` form? e.g. whether it's an atom, function call, or definition; the definition type (generic, method, function, struct, etc), the definition name, the method qualifier (for methods), the docstring, the lambda list...
karlosz has quit [Ping timeout: 276 seconds]
<contrapunctus> (Like the `definitions` system, except `definitions` seems to depend on the client knowing the package of the definition, whereas I don't know what package a `read` form is defined in and it'd be convoluted to find out. :\)
lawt has quit [Ping timeout: 272 seconds]
aartaka has quit [Ping timeout: 248 seconds]
lawt has joined #commonlisp
rainthree has quit [Ping timeout: 260 seconds]
rogersm has joined #commonlisp
rainthree has joined #commonlisp
<beach> If you don't know the package, you can not determine what the operator does.
<hayley> Detecting IN-PACKAGE forms should be good enough, like in SLIME.
pve has quit [Quit: leaving]
lisp123 has joined #commonlisp
dimlibera has joined #commonlisp
dim has quit [Ping timeout: 244 seconds]
lisp123 has quit [Ping timeout: 250 seconds]
pjb has joined #commonlisp
prokhor_ has joined #commonlisp
anticomputer has quit [Remote host closed the connection]
anticomputer has joined #commonlisp
prokhor has quit [Ping timeout: 258 seconds]
scymtym has joined #commonlisp
bilegeek has quit [Quit: Leaving]
rainthree3 has joined #commonlisp
rainthree has quit [Read error: Connection reset by peer]
alvaro121 has quit [Quit: Bye]
alvaro121 has joined #commonlisp
mon_aaraj has quit [Ping timeout: 248 seconds]
mon_aaraj has joined #commonlisp
Th30n has quit [Ping timeout: 256 seconds]
dimlibera is now known as dim
<Shinmera> The Kandria Kickstarter is now live! https://www.kickstarter.com/projects/shinmera/kandria
Brucio-61 has quit [Ping timeout: 252 seconds]
scymtym has quit [Ping timeout: 260 seconds]
Brucio-61 has joined #commonlisp
<ck_> the wishlist banner is a link, but not the demo one. Is that intentional?
scymtym has joined #commonlisp
<Shinmera> Nope, good shout.
<ck_> Good luck with the fundraising
Th30n has joined #commonlisp
lisp123 has joined #commonlisp
<lisp123> Shinmera: Pledged to the Kickstarter. Good luck. Very nicely thought out rewards
<lisp123> contrapunctus: what do you mean
<Shinmera> lisp123: thank you!
molson has quit [Ping timeout: 246 seconds]
<lisp123> You know you can get the package name for any symbol
<lisp123> If you are simply reading a text file, then you will have to search for the in-package forms and also work your way through any defpackages
<lisp123> but its hard to say without any more details
mixotricha has quit [Quit: Client closed]
rainthree3 has quit [Ping timeout: 240 seconds]
mixotricha has joined #commonlisp
<CodeBitCookie[m]> Shinmera: Good Luck! Love your stuff!
mixotricha has quit [Client Quit]
mixotricha has joined #commonlisp
pillton has quit [Remote host closed the connection]
lisp123 has quit [Remote host closed the connection]
<Josh_2> So much code I could refactor into my own custom classes :sob:
<Josh_2> custom meta class
<jamesmartinez> Shinmera: OMG a game written in CL!
* mfiano watches the monetary value climb to the moon
orestarod has joined #commonlisp
makomo has joined #commonlisp
igemnace has joined #commonlisp
<mfiano> Could someone help me with LOOP? I want to create a list of ("foo" "foo-bar" "foo-bar-baz") given a string "foo-bar-baz" (as an example, could be any depth)
Oddity has quit [Ping timeout: 276 seconds]
pve has joined #commonlisp
<jackdaniel> and how is that related to loop?
<mfiano> I'm trying to do it with LOOP after failing with other methods, including LOOP
<shka> mfiano: well, you want be collecting subseq and call position of -?
<mfiano> Yeah I've been trying variations of that
lisp123 has joined #commonlisp
* mfiano goes on a tea break. Must not be with it today.
<Shinmera> CodeBitCookie[m]: thank you!
attila_lendvai has joined #commonlisp
<jackdaniel> mfiano: (loop for pos = -1 then (position #\- "foo-bar-baz" :start (1+ pos)) while pos collect (subseq "foo-bar-baz" (1+ pos))) ;?
<jackdaniel> plus-minus off-by-one errors (left as an excercise)
lisp123 has quit [Ping timeout: 240 seconds]
<mfiano> Ha!
<mfiano> ("foo/bar/baz" "bar/baz" "baz")
<mfiano> I tried with #\/
<shka> oh, i was to late
<mfiano> shka: No yours was the only correct one
<mfiano> Thanks
<jackdaniel> mine was incorrect? :(
<mfiano> jackdaniel: Yeah, see output above and see example output
<jackdaniel> and what is the expected output?
<jackdaniel> well, nevermind, since you have your answer
<mfiano> What I said in the example
<jackdaniel> ah, from the other side
<CodeBitCookie[m]> Shinmera: Is alloy usable now?
<Shinmera> That's a very hazy adjective
<mfiano> He uses it for Kandria, but it still has some rough edges to work on later.
lisp123 has joined #commonlisp
<Shinmera> It has a lot of rough edges.
<mfiano> Yeah I was being nice :)
<lisp123> jackdaniel: mfiano: (loop for pos = -1 then (position #\- "foo-bar-baz" :start (1+ pos)) while pos collect (subseq "foo-bar-baz" (1+ pos))) ;? --> surely at this point one abandons the loop ;)
<mfiano> Thanks for all the solutions!
eull has joined #commonlisp
livoreno has quit [Ping timeout: 248 seconds]
<lisp123> do compilers automatically convert recursive calls to iteration?
<mfiano> lisp123: Also, you can't get the package name of all symbols, re: your earlier statement
<lisp123> inherited symbols?
<mfiano> No symbols without a package :)
<lisp123> now that i remember, there was a catch
<lisp123> oh :) Also I think inherited symbols are tricky to deal with
<Josh_2> lisp123: isn't that tco?
<lisp123> Josh_2: maybe - but does tco still keep calling the function (just passing the values down) (i dont know, asking)
<jackdaniel> lisp123: some compilers do when it is possible (sometimes it is not possible)
mon_aaraj has quit [Read error: Connection reset by peer]
<mfiano> and other times the compiler doesn't know it's possible
<jackdaniel> CL:DO is an ultimate recursive function syntactic sugar
<lisp123> did you write that post about DO ? There was a good one a while back
<jackdaniel> I'm not sure whether it is /that/ post, but I wrote something about DO, yes
mon_aaraj has joined #commonlisp
<lisp123> Yeah it was that one
<mfiano> I think I read that, but I will have to read it again.
<mfiano> daniel always has interesting articles
livoreno has joined #commonlisp
leeb has joined #commonlisp
<jackdaniel> oh, thanks
<mfiano> Bookmarked for later though. Neck deep in recursion
<pjb> lisp123: that depends on the kind of compiler. Continuation based compilers usually derecursive automatically, by a matter of fact.
<pjb> lisp123: other compilers don't do it automatically, they need a specific optimization phase to do it.
thuna` has joined #commonlisp
lisp123 has quit [Remote host closed the connection]
azimut has quit [Ping timeout: 240 seconds]
Bike has joined #commonlisp
mon_aaraj has quit [Ping timeout: 255 seconds]
mon_aaraj has joined #commonlisp
<shka> jackdaniel is the average do enjoyer
<jackdaniel> shka: ?
<shka> oh, i am joking about how you really like DO
<jackdaniel> well, yeah, no; I'm not very fond of using raw DO
<shka> oh, ok
defaultxr has joined #commonlisp
<Bike> do is tail recursion is lambda, the ultimate goto, and goto is considered harmful
livoreno has quit [Ping timeout: 244 seconds]
<rotateq> Bike: Yes, cause it's not seen that it's not when the scope is clearly limited.
<Josh_2> Is there a tutorial anywhere on how to use sessions with clack/ningle?
<jackdaniel> goto is harmful because it is a limited version of longjmp!
leeb has quit [Ping timeout: 246 seconds]
<hayley> longjmp is harmful because it is a limited version of call-with-current-continuation!
<rotateq> Then good I don't know really much C to know about setjmp/longjmp.
<rotateq> But more about continuations. :)
<pranavats> phoe: I think you once mentioned a CL codebase that contained a TeX parser in it. Can you share that link?
lisp123 has joined #commonlisp
deadmarshal has joined #commonlisp
Brucio-61 has quit [Read error: Connection reset by peer]
Brucio-61 has joined #commonlisp
lisp123 has quit [Ping timeout: 255 seconds]
subpsuny1 has joined #commonlisp
Th30n has quit [Quit: WeeChat 3.5]
<gendl> Hi has anyone tried using this: https://gitlab.common-lisp.net/clci/gitlab-ci
* etimmons waves at gendl
<gendl> I'm trying to use it with a project which is hosted on a different gitlab instance, not sure whether or how that's possible. Do I have to copy the whole repo to my other gitlab instance?
<etimmons> Sorry I haven't replied to your issue yet! The answer is really "it depends". If you just use the definitions to build up your own jobs, you can easily access it from another Gitlab instance. If you want to use the precanned pipelines, then you (currently at least), need to mirror the repo.
<etimmons> That's because those precanned pipelines have a local: include in them, which I don't think mixes well with remote: includes
cage has joined #commonlisp
rodicm has quit [Quit: Leaving]
rotateq has quit [Remote host closed the connection]
Bike_ has joined #commonlisp
Guest74 has quit [Quit: Connection closed]
citizenandrew has joined #commonlisp
Bike has quit [Quit: Connection closed]
Bike_ is now known as Bike
<pranavats> Thanks Shinmera. This might come in handy if I don't find something more complete. The repo in question is a different one though.
rainthree has joined #commonlisp
citizenandrew has left #commonlisp [#commonlisp]
lagash has joined #commonlisp
<Josh_2> Can't figure out how to use sessions with ningle
Guest74 has joined #commonlisp
pranavats has left #commonlisp [Error from remote client]
<Josh_2> :sob:
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
rotateq has joined #commonlisp
leeb has joined #commonlisp
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 248 seconds]
leeb has quit [Ping timeout: 276 seconds]
hexology- has joined #commonlisp
hexology has quit [Quit: hex on you ...]
pranavats has joined #commonlisp
<gendl> etimmons: for my first stunt, I'd like to start a ccl Linux container, load Gendl (either from quicklisp or clpm — ideally would like to try both) then dump a Lisp image with gendl loaded, and end up with a new container image with that Gendl-ccl image in it.
<gendl> Additionally would like to exfiltrate the newly built Gendl image out from the container for use in putting together a standalone (non-docker) distribution as well (but having used the standard linux-ccl container to build it)
<gendl> When that is done, I'd like to adjust it to do a build from Gendl repo directly (as part of the repo's pipeline) rather than from ql or clpm gendl — while pulling the rest of gendl's depended-upon libraries from ql and/or clpm/clpi.
rainthree3 has joined #commonlisp
<gendl> .. so I'm really not sure whether I'm needing to just "use the definitions" or use precanned pipelines...
<gendl> I can show you what I'm trying so far..
rainthree has quit [Ping timeout: 240 seconds]
<gendl> Maybe continue this in #clpm or another channel at your convenience?
<gendl> or as issue comments if you'd like to preserve the convo there..
dlowe has joined #commonlisp
<Josh_2> I think I figured it out. Lack creates a session for every request, and I have to store and restore the automatically created SID for authentication
<Josh_2> What a PITA. Hunchentoot makes this much more pleasant :sob:
<Josh_2> I should just use Hunchentoot
treflip has joined #commonlisp
<dlowe> Hunchentoot works but I think is pretty vulnerable to session cookie spoofing
<dlowe> (can't speak to how Lack does it)
<dlowe> the fact that Lack sets a cookie for every request makes me think it's protecting against replay attacks
<Josh_2> You can easily change the function used to generate the session cookie ID's
Colere has quit [Ping timeout: 240 seconds]
Colere has joined #commonlisp
<etimmons> gendl: Sorry, was in a meeting (and am busy for the next 4 hours). Do you just want to hop on a Jitsi at some point? Probably the most effective.
Furor has joined #commonlisp
utis has quit [Ping timeout: 256 seconds]
Lemniscate has joined #commonlisp
Colere has quit [Ping timeout: 258 seconds]
rainthree3 has quit [Read error: Connection reset by peer]
rainthree has joined #commonlisp
subpsuny1 has quit [Quit: leaving]
subpsunym has quit [Quit: leaving]
Furor has quit [Ping timeout: 246 seconds]
Colere has joined #commonlisp
utis has joined #commonlisp
Lemniscate has quit [Ping timeout: 258 seconds]
rodicm has joined #commonlisp
rodicm has quit [Client Quit]
rodicm has joined #commonlisp
rodicm has quit [Client Quit]
analogsalad has joined #commonlisp
mixotricha has quit [Quit: Client closed]
cosimone has joined #commonlisp
ttree has joined #commonlisp
<Guest74> I need help thinking of a name for an arg in a vector graphic render function that determines the placement of the path drawn based on a given location and how that point is to be interpreted, either it's :origin or a reference point on it's bounding box, e.g. :top-left :left :center.
* mfiano has no idea and thinks it needs more separation of concerns.
<Guest74> hmm, now that I write it out, maybe reference or reference-point with a default of :origin or :center is intuitive?
<Guest74> Specifiying where a shape is drawn seems to be a singular concern.
rodicm has joined #commonlisp
scymtym has quit [Ping timeout: 258 seconds]
Brucio-61 has quit [Ping timeout: 255 seconds]
<jackdaniel> one is the drawing position, and then :align :top-left or whatever (or :align-x :left :align-y :top - like in McCLIM)
<mfiano> The origin may not be where it is drawn. What is the frame of reference, etc.
scymtym has joined #commonlisp
<mfiano> How does it get anchored?
<mfiano> Too many questions to ask
<Guest74> :origin would be used for things like relative paths.
<Guest74> you start literally at the origin of the relative shape.  I would see this mainly as a benefit to those who make their own paths so they know their path origins, or text glyphs where in type-1 all relative paths usually start from glyph origin on the baseline.
<Guest74> jackdaniel: you call it drawing-position?
rodicm has quit [Ping timeout: 260 seconds]
<Guest74> or (render .... &key (:align :top-right) is probably better.  Since you're aligning that part of the shape with the location you give or 0,0
lisp123 has joined #commonlisp
<jackdaniel> I've called it a moment ago, but that was rather a lax description than a fixed term
<jackdaniel> you could call it the origin, sure
<White_Flame> Guest74: "registration" is another term I've seen in such dealings
Brucio-61 has joined #commonlisp
<Guest74> That makes sense as well.
MajorBiscuit has quit [Ping timeout: 260 seconds]
lisp123 has quit [Ping timeout: 260 seconds]
molson has joined #commonlisp
Dynom has joined #commonlisp
aartaka has joined #commonlisp
<Guest74> This is so much easier in a gui, just drag the shape wherever you want it and move its bounding box around.  Doing it elegantly through programming seems quite a bit harder. e.g. drawing lines in a flowchart between a rounded diamond and anything, which sure can be dealt with by tight bounding boxes in this case because the topmost point in the
<Guest74> path is at the center, but then there's things like Document where the bottom is off center and will always end up with a gap.
Guest74 has quit [Quit: Connection closed]
Posterdati has quit [Remote host closed the connection]
aartaka has quit [Ping timeout: 248 seconds]
aartaka has joined #commonlisp
mon_aaraj has quit [Ping timeout: 246 seconds]
loke has joined #commonlisp
rainthree has quit [Read error: Connection reset by peer]
rainthree has joined #commonlisp
mon_aaraj has joined #commonlisp
aartaka has quit [Ping timeout: 276 seconds]
rainthree has quit [Ping timeout: 252 seconds]
rogersm has quit [Ping timeout: 248 seconds]
aartaka has joined #commonlisp
qhong_ has joined #commonlisp
rainthree has joined #commonlisp
mister_m` has joined #commonlisp
treflip` has joined #commonlisp
prokhor has joined #commonlisp
zachel_ has joined #commonlisp
sveit has joined #commonlisp
grawlinson_ has joined #commonlisp
<pranavats> jackdaniel: Thank you. aster-math is what I was looking for.
nature_ has joined #commonlisp
Mandus has joined #commonlisp
<jackdaniel> sure
SAL9000_ has joined #commonlisp
aartaka has quit [Ping timeout: 244 seconds]
qhong_ is now known as qhong`
treflip has quit [*.net *.split]
thuna` has quit [*.net *.split]
prokhor_ has quit [*.net *.split]
okflo_ has quit [*.net *.split]
Mandus_ has quit [*.net *.split]
danieli has quit [*.net *.split]
Seok__ has quit [*.net *.split]
minion has quit [*.net *.split]
cognemo_ has quit [*.net *.split]
sveit_ has quit [*.net *.split]
SAL9000 has quit [*.net *.split]
zachel has quit [*.net *.split]
nature has quit [*.net *.split]
mister_m has quit [*.net *.split]
mariari has quit [*.net *.split]
flip214 has quit [*.net *.split]
qhong has quit [*.net *.split]
grawlinson has quit [*.net *.split]
grawlinson_ is now known as grawlinson
SAL9000_ is now known as SAL9000
thuna` has joined #commonlisp
danieli has joined #commonlisp
Seok__ has joined #commonlisp
minion has joined #commonlisp
okflo_ has joined #commonlisp
cognemo has joined #commonlisp
flip214 has joined #commonlisp
cognemo_ has joined #commonlisp
cognemo has quit [Ping timeout: 246 seconds]
opcode has quit [Ping timeout: 250 seconds]
flip214 has quit [Ping timeout: 246 seconds]
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #commonlisp
opcode has joined #commonlisp
mariari has joined #commonlisp
flip214 has joined #commonlisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #commonlisp
kaskal- has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
kaskal has quit [Ping timeout: 248 seconds]
<gendl> etimmons: I would welcome any jitsi time at your convenience. I will keep myself available after 4pm today. Shall we set this up under auspices of "clf office hours" as you outlined in one of your proposals?
cosimone has quit [Remote host closed the connection]
cosimone has joined #commonlisp
MajorBiscuit has joined #commonlisp
karlosz has joined #commonlisp
MajorBiscuit has quit [Ping timeout: 260 seconds]
aartaka has joined #commonlisp
lisp123 has joined #commonlisp
mon_aaraj has quit [Ping timeout: 258 seconds]
prokhor_ has joined #commonlisp
lisp123 has quit [Ping timeout: 256 seconds]
prokhor has quit [Remote host closed the connection]
mon_aaraj has joined #commonlisp
n1to has joined #commonlisp
treflip` has quit [Quit: goodnight]
morganw has joined #commonlisp
ec has quit [Quit: ec]
rodicm has joined #commonlisp
samebchase3 has joined #commonlisp
perr__ has joined #commonlisp
skyl4rk` has joined #commonlisp
aartaka has quit [Ping timeout: 260 seconds]
Brucio-61 has quit [Read error: Connection reset by peer]
azimut has joined #commonlisp
AndrewYu has joined #commonlisp
jfb4_ has joined #commonlisp
sukaeto1 has joined #commonlisp
nefercheprure has joined #commonlisp
pepsi has joined #commonlisp
ChibaPet has joined #commonlisp
monaaraj has joined #commonlisp
Brucio-61 has joined #commonlisp
waleee has joined #commonlisp
mon_aaraj has quit [*.net *.split]
makomo has quit [*.net *.split]
random-nick has quit [*.net *.split]
mason has quit [*.net *.split]
skyl4rk has quit [*.net *.split]
OlCe has quit [*.net *.split]
perr_ has quit [*.net *.split]
Krystof has quit [*.net *.split]
perrierjouet has quit [*.net *.split]
jamesmartinez has quit [*.net *.split]
sukaeto has quit [*.net *.split]
samebchase has quit [*.net *.split]
Andrew has quit [*.net *.split]
Patternmaster has quit [*.net *.split]
TMA has quit [*.net *.split]
jfb4 has quit [*.net *.split]
samebchase3 is now known as samebchase
jfb4_ is now known as jfb4
ChibaPet is now known as mason
Patternmaster has joined #commonlisp
Patternmaster has quit [Changing host]
Patternmaster has joined #commonlisp
Brucio-61 has quit [Read error: Connection reset by peer]
opcode has quit [Ping timeout: 250 seconds]
Krystof has joined #commonlisp
Brucio-61 has joined #commonlisp
random-nick has joined #commonlisp
opcode has joined #commonlisp
perrierjouet has joined #commonlisp
makomo has joined #commonlisp
aartaka has joined #commonlisp
rainthree has quit [Ping timeout: 244 seconds]
Oddity has joined #commonlisp
karlosz has quit [Ping timeout: 240 seconds]
rodicm has quit [Quit: Leaving]
jmdaemon has joined #commonlisp
karlosz has joined #commonlisp
OlCe` has joined #commonlisp
kpoeck has joined #commonlisp
Posterdati has joined #commonlisp
rodicm has joined #commonlisp
cage has quit [Quit: rcirc on GNU Emacs 27.1]
Posterdati is now known as Posterdati|NotHe
Posterdati|NotHe is now known as Posterdati
karlosz has quit [Ping timeout: 240 seconds]
defaultxr has quit [Quit: l8r]
karlosz has joined #commonlisp
analogsalad has quit [Quit: bye]
szkl has quit [Quit: Connection closed for inactivity]
scymtym has quit [Remote host closed the connection]
perr__ is now known as perro
Brucio-61 has quit [Remote host closed the connection]
Brucio-61 has joined #commonlisp
utis has quit [Read error: Connection reset by peer]
karlosz has quit [Quit: karlosz]
Brucio-61 has quit [Ping timeout: 240 seconds]
lisp123 has joined #commonlisp
Dynom has quit [Quit: WeeChat 3.5]
lisp123 has quit [Ping timeout: 248 seconds]
MajorBiscuit has joined #commonlisp
saturn2 has quit [Ping timeout: 252 seconds]
subpsunym has joined #commonlisp
ec has joined #commonlisp
Brucio-61 has joined #commonlisp
MajorBiscuit has quit [Ping timeout: 256 seconds]
kpoeck has quit [Quit: Client closed]
rotateq has quit [Quit: ERC 5.4 (IRC client for GNU Emacs 28.1)]
karlosz has joined #commonlisp
bldr has quit [Ping timeout: 272 seconds]
MajorBiscuit has joined #commonlisp
bldr has joined #commonlisp
MajorBiscuit has quit [Ping timeout: 256 seconds]
shka has quit [Ping timeout: 260 seconds]
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 255 seconds]
jmdaemon has quit [Quit: ZNC 1.8.2 - https://znc.in]
monaaraj has quit [Ping timeout: 276 seconds]
monaaraj has joined #commonlisp
rodicm has quit [Quit: Leaving]
monaaraj has quit [Ping timeout: 256 seconds]
mixotricha has joined #commonlisp
clone_of_saturn has joined #commonlisp
clone_of_saturn is now known as saturn2
monaaraj has joined #commonlisp
monaaraj has quit [Read error: Connection reset by peer]
monaaraj has joined #commonlisp
monaaraj has quit [Read error: Connection reset by peer]
pve has quit [Quit: leaving]
monaaraj has joined #commonlisp
akoana has joined #commonlisp
n1to has quit [Quit: Leaving]
karlosz has quit [Quit: karlosz]
MajorBiscuit has joined #commonlisp
thuna` has quit [Remote host closed the connection]
eull has quit [Quit: Konversation terminated!]
MajorBiscuit has quit [Ping timeout: 256 seconds]
monaaraj has quit [Ping timeout: 260 seconds]
monaaraj has joined #commonlisp
monaaraj has quit [Client Quit]
random-nick has quit [Ping timeout: 260 seconds]
karlosz has joined #commonlisp
orestarod has quit [Ping timeout: 260 seconds]
karlosz has quit [Client Quit]
morganw has quit [Remote host closed the connection]
kaskal has joined #commonlisp
kaskal- has quit [Ping timeout: 240 seconds]
makomo has quit [Ping timeout: 252 seconds]
lisp123 has joined #commonlisp
lisp123 has quit [Ping timeout: 248 seconds]