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/>
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mariari has quit [Ping timeout: 268 seconds]
mariari has joined #commonlisp
mariari has quit [Ping timeout: 268 seconds]
mariari has joined #commonlisp
Devon has joined #commonlisp
ec has quit [Remote host closed the connection]
azimut has joined #commonlisp
mariari has quit [Ping timeout: 260 seconds]
mariari has joined #commonlisp
random-nick has quit [Ping timeout: 265 seconds]
Lord_of_Life_ has joined #commonlisp
Lord_of_Life has quit [Ping timeout: 252 seconds]
Lord_of_Life_ is now known as Lord_of_Life
count3rmeasur3 has joined #commonlisp
jmes has quit [Read error: Connection reset by peer]
jmes has joined #commonlisp
jmes has quit [Ping timeout: 260 seconds]
jmes has joined #commonlisp
notzmv has quit [Ping timeout: 268 seconds]
Devon has quit [Ping timeout: 265 seconds]
count3rmeasur3 has quit [Ping timeout: 252 seconds]
xlarsx has quit [Remote host closed the connection]
xlarsx has joined #commonlisp
Devon has joined #commonlisp
xlarsx has quit [Ping timeout: 252 seconds]
Devon has quit [Ping timeout: 265 seconds]
gateway2000 has joined #commonlisp
blackmonad has joined #commonlisp
xlarsx has joined #commonlisp
count3rmeasure has joined #commonlisp
causal has joined #commonlisp
xlarsx has quit [Ping timeout: 268 seconds]
waleee has quit [Ping timeout: 268 seconds]
<count3rmeasure> anyone have any leads on GIS libraries that would help one do essentially what geodjango does?
xlarsx has joined #commonlisp
xlarsx has quit [Ping timeout: 260 seconds]
tyson2 has quit [Remote host closed the connection]
Devon has joined #commonlisp
<beach> minion: What doe GIS stand for?
<minion> a banana
<hayley> minion: What does GIS stand for?
<minion> Gilling Inestimability Soldado
<hayley> "Geographic Information System"
<beach> Ah, I am not quite awake yet. Still working on my coffee.
<beach> Thanks hayley.
blackmonad has quit [Remote host closed the connection]
prokhor_ has quit [Ping timeout: 264 seconds]
<beach> I guess the people here who know neither what the abbreviation means, nor what geodjango is would be unlikely to answer the question anyway.
Devon has quit [Ping timeout: 265 seconds]
<kakuhen> "CL is dead because i was too lazy to click the top result in google for 'common lisp websocket'." amazing.
<kakuhen> what next? golang is dead for having no SIMD library?
notzmv has joined #commonlisp
<count3rmeasure> sorry all I got pulled away!
<count3rmeasure> yes, Geographic Information System, and geodjango is the extension to the python web framework Django that allows for database and framework wide awareness of polygon data types for cartography
<jcowan> All known programming languages are dead.
<jcowan> Also, all known programmers are now dead.
<hayley> Amateurs. Bela Lugosi is undead.
* jcowan laughs
<count3rmeasure> yes
<jcowan> Also dead.
<count3rmeasure> I'm going to listen to that right now
<jcowan> To what, _Dracula_?
<count3rmeasure> bauhaus for the win
<mason> Dracula's not a particularly good vampire story.
<mason> The Historian, now...
<count3rmeasure> this is such a good song to hack to
<jcowan> The subtitle is "A Mystery", I think because horror was not yet a genre
<jcowan> (of Dracula, that is)
<count3rmeasure> for the logs if anyone else asks, it appears this page has some leads on my initial question https://www.cliki.net/geospatial
thuna` has quit [Remote host closed the connection]
ec has joined #commonlisp
ec has quit [Ping timeout: 258 seconds]
ec has joined #commonlisp
hineios2 has joined #commonlisp
hineios has quit [Ping timeout: 268 seconds]
hineios2 is now known as hineios
ec has quit [Ping timeout: 258 seconds]
masinter has quit [Ping timeout: 260 seconds]
masinter has joined #commonlisp
chipxxx has joined #commonlisp
chipxxx has quit [Remote host closed the connection]
chipxxx has joined #commonlisp
chipxxx has quit [Read error: Connection reset by peer]
chipxxx has joined #commonlisp
chipxxx has quit [Remote host closed the connection]
chipxxx has joined #commonlisp
azimut has quit [Remote host closed the connection]
azimut has joined #commonlisp
count3rmeasure has quit [Ping timeout: 252 seconds]
count3rmeasure has joined #commonlisp
azimut has quit [Remote host closed the connection]
<verisimilitude> I misremembered a discussion about it earlier, kakuhen; the point, however, is that whether a language be ``dead'' or not is arbitrary and generally unimportant.
<verisimilitude> People look at finished software and whine that it hasn't been touched in years, so it must be ``dead''.
euandreh has quit [Ping timeout: 265 seconds]
count3rmeasure has quit [Read error: Connection reset by peer]
cosimone has joined #commonlisp
shka has joined #commonlisp
xlarsx has joined #commonlisp
azimut has joined #commonlisp
_cymew_ has joined #commonlisp
chipxxx has quit [Read error: Connection reset by peer]
scymtym has joined #commonlisp
<pjb> verisimilitude: live software is like gagh. If you like to run after your food, it's for you. I prefer dead software.
xlarsx has quit [Remote host closed the connection]
xlarsx has joined #commonlisp
<verisimilitude> I'd also prefer to use ``dead'' software.
xlarsx has quit [Ping timeout: 252 seconds]
verisimilitude has quit [Ping timeout: 264 seconds]
gamaliel has joined #commonlisp
<gamaliel> Hi, how would I export (setf foo) function symbols in a package for the (:use ...) list of symbols?
<beach> gamaliel: Packages export symbols, not functions.
<gamaliel> Yes, I meant the (setf foo) kind of symbol for a setf function.
<beach> So if the symbol FOO is exported, then you can use (setf your-package:foo) with a single package prefix.
<beach> That's not a symbol
<beach> It is a list of two symbols.
<beach> s/package prefix/package marker/
<gamaliel> Oh, ok. I am just having a bit of a problem with a test where it can't find my (setf get-entry-list) function because the symbol isn't exported. But I already exported the get-entry-list symbol.
<beach> If that symbol is in a different package, you may need to either import it or use a package marker.
<beach> What makes you think the reason it can't find your function is that the symbol isn't exported.
<pjb> gamaliel: also, when you modify the source of defpackage forms, it's not enough; you also need to evaluate the new defpackage forms, for the changes to be taken into account in the REPL. (or reload the program).
igemnace has joined #commonlisp
<gamaliel> The test output gave me "The function (COMMON-LISP:SETF ACCOUNTING-APP/USER::GET-ENTRY-LIST) is
<gamaliel>   undefined." But I checked on the accounting-app/user package and it is indeed there, and the :get-entry-list symbol is exported.
<pjb> gamaliel: good. But is a function named (COMMON-LISP:SETF ACCOUNTING-APP/USER::GET-ENTRY-LIST) defined anywhere?
<beach> gamaliel: That error is not because the symbol is not exported.
<_death> it may be that you try to call the function before you define it
<gamaliel> Never mind, i found the cause. It was in accounting-app/ledger package, not accounting-app/user.
<pjb> gamaliel: that's a reason why I don't like too much multiplying packages.
<gamaliel> Well, I had it all under the accounting-app package directly, but I felt like many functions would clash if I kept them all under the same namespace. So, I decided to split them into 1-package per file.
<gamaliel> But I'm not really sure, I just was following some tutorials that put one package per file. Guess that isn't the flex they made it be.
<beach> I find that convention creates more problems than it solves.
<beach> I can't figure out who came up with it, nor why.
<gamaliel> I at least had a bit of fun learning how to manage packages and symbols. My only previous related experience was with R namespaces, which are... very different.
<beach> gamaliel: Here: http://metamodular.com/Common-Lisp/Tutorial/modules.html is how I do it.
<gamaliel> Very nice read. I like the module approach, since a part of my software will be a large set of pre-defined "templates". I hadn't yet seen a tutorial use the (in-package :asdf-user) line at the beginning of a defsystem entry. Seems like a very clean way to define systems.
chipxxx has joined #commonlisp
<beach> Thanks!
<beach> That particular IN-PACKAGE form is not recommended by ASDF, but I find it helps Emacs/SLIME parse the DEFSYSTEM form.
<beach> Since ASDF does not recommend it, something might break in the future if you use it.
<beach> When ASDF loads a system definition, it automatically sets the package to the right one, presumably ASDF-USER at the moment.
<gamaliel> Oh, ok. I like how it is clear in specifying where you are starting the defsystem form evaluation, though.
<beach> Yes, that's why I do it.
<beach> I am not sure why the ASDF documentation says what it does.
<beach> I guess I should ask the maintainer at some point.
<pjb> I use (asdf:defsystem …) in general.
<beach> Sure, that fixes that symbol.
specbot has quit [Remote host closed the connection]
minion has quit [Remote host closed the connection]
specbot has joined #commonlisp
minion has joined #commonlisp
cosimone` has joined #commonlisp
cosimone has quit [Ping timeout: 248 seconds]
lisp123 has joined #commonlisp
xlarsx has joined #commonlisp
pranavats has left #commonlisp [Error from remote client]
pranavats has joined #commonlisp
xlarsx has quit [Ping timeout: 265 seconds]
Devon has joined #commonlisp
xlarsx has joined #commonlisp
lisp123 has quit [Read error: Connection reset by peer]
lisp123 has joined #commonlisp
lisp123 has quit [Remote host closed the connection]
lisp123 has joined #commonlisp
gamaliel has quit [Quit: Client closed]
lisp123 has quit [Remote host closed the connection]
Dynom_ has joined #commonlisp
Dynom_ is now known as Guest9721
random-nick has joined #commonlisp
epony has quit [Ping timeout: 252 seconds]
kevingal has joined #commonlisp
waleee has joined #commonlisp
xlarsx has quit [Ping timeout: 268 seconds]
pve has joined #commonlisp
shka has quit [Ping timeout: 248 seconds]
atgreen has joined #commonlisp
elderK has joined #commonlisp
notzmv has quit [Ping timeout: 268 seconds]
anticomputer has quit [Remote host closed the connection]
<doomduck> pjb: idk seems like there's a big difference between "a library written by 1 person is dead but I can fix it", and "a compiler is dead" ... at least I personally have zero intention of tracking down compiler bugs
<jackdaniel> compilers are mere programs, don'g worry
mariari has quit [Quit: WeeChat 3.6]
cosimone` has quit [Ping timeout: 248 seconds]
anticomputer has joined #commonlisp
mariari has joined #commonlisp
<pjb> doomduck: jackdaniel is right.
<pjb> doomduck: but you're also right, avoid using software whose sources you cannot read in a lifetime!
<pjb> doomduck: better: only use software you've written yourself.
<doomduck> ... I know you're joking but like, some things are more scary than others ... having some code unoptimized because a compiler can't figure it out is less scary than codegen bugs that cause UB because the compiler thought something doesn't alias when it does
<doomduck> or just the recent c++ async clusterfuck
<doomduck> and "bugs in the standard" lol
<pjb> Yes. That's also a reason why you would want to use simplier languages, simplier to understand and simplier to compile. Thus we can better ensure they have fewer bugs.
molson has joined #commonlisp
waleee has quit [Ping timeout: 268 seconds]
<jcowan> It just moves the bugs around. Assemblers are simpler than any compiler, but assembly-language programs have more bugs because they have more LOC.
tyson2 has joined #commonlisp
<pjb> jcowan: lisp is the simpliest language.
<pjb> but since you can implement easily abstractions of various kind in it, you can write bugfree programs.
<jcowan> "In principle, yes."
<edgar-rft> bugs are an important part of the food chain, bugfree programs aren't good for the environment
<doomduck> jcowan: it might move the bugs around, but bugs in your code are much less problematic than bugs in the compiler or toolchain ... but ofc yeah assembler is a special thing, but I don't think most people would consider that a language
<jcowan> In one sense. But given a buggy situation, the odds are high that the bug is in your code. There are bugs in sbcl or gcc or whatever, but the likelihood that you are the first to hit one is small, and there are generally a lot of eyes and brains on it all the time. Your own code, not so much.
<jcowan> The fact that the number of LOCs per bug is pretty much constant explains why higher-level languages have been a win for many decades now.
<pjb> and more so, languages where you can easily generate automatically your code thanks to nice macros, like lisp.
xlarsx has joined #commonlisp
anticomputer has quit [Quit: quit]
anticomputer has joined #commonlisp
pjb has quit [Read error: Connection reset by peer]
xlarsx has quit [Remote host closed the connection]
xlarsx has joined #commonlisp
xlarsx has quit [Ping timeout: 260 seconds]
<AadVersteden[m]> the pretty printer automatically indents nested objects. i'd like to redefine print-object but make use of the facility that tracks the depth at which things should be rendered. i fail to find references to the relevant facilities.
<yitzi> pprint-logical-block?
<AadVersteden[m]> yitzi: thanks, that'll be it :D
frgo has joined #commonlisp
<yitzi> cool. There are about 3 different implementations of the pretty printer. They each have a slightly different "pretty stream" mechanism.
jmdaemon has quit [Ping timeout: 248 seconds]
euandreh has joined #commonlisp
_cymew_ has quit [Ping timeout: 265 seconds]
akoana has joined #commonlisp
cosimone has joined #commonlisp
waleee has joined #commonlisp
<AadVersteden[m]> Perhaps `~<...~:>` could be closer to what I need. I need to experiment a bit :-)
dilated_dinosaur has quit [Quit: Leaving]
dilated_dinosaur has joined #commonlisp
notzmv has joined #commonlisp
<AadVersteden[m]> does pprint-logical-block support nested logical blocks/
<AadVersteden[m]> s///?/
cosimone has quit [Remote host closed the connection]
pjb has joined #commonlisp
elderK has quit [Quit: Connection closed for inactivity]
chipxxx has quit [Ping timeout: 250 seconds]
xlarsx has joined #commonlisp
<beach> AadVersteden[m]: I encourage you to use the implementation yitzi created. That way we can have it tested.
<AadVersteden[m]> oh cool. is it on quicklisp? what's the name?
xlarsx has quit [Ping timeout: 268 seconds]
puchacz has joined #commonlisp
cosimone has joined #commonlisp
<AadVersteden[m]> Also: do I understand correctly that the common lisp specification doesn't allow me to hook into the mechanism for indenting?
epony has joined #commonlisp
<beach> You need to check with yitzi for the details. I have put its use on hold because SICL is not quite ready for it yet.
<beach> Initially, I deliberately did not make the pretty printer part of the SICL project, because i thought I would use the library that is the basis of what everyone else uses. Then I looked at the code of that library, and I instantly changed my mind.
<beach> So yitzi took the challenge and wrote a much better implementation.
<beach> I can imagine that implementation is more flexible in what it allows the user to configure.
waleee has quit [Ping timeout: 246 seconds]
<cosimone> hello, does anyone know if there is some way to get a monotonically increasing real time value in an arbitrary resolution, not necessarily internal-time-units-per-second?
<cosimone> preferably in an implementation-independent manner
<beach> Why can't you just decide on a unit of resolution and increment an integer that represents a value using that resolution?
<pjb> I have a (com.informatimago.common-lisp.cesarum.time:get-real-time)
<beach> Oh, you want it to reflect THE real time?
<cosimone> beach: that approach only limits me to the resolution specified by internal-time-units-per-second
<cosimone> if it's in microseconds, how can you know how many nanoseconds specifically have passed?
<beach> cosimone: Never mind. I misunderstood what you wanted to do.
<cosimone> what i want to do specifically is to measure time with nanosecond precision
<cosimone> using the time function won't cut it since i'm trying to gather latency measurements for individual elements
<pjb> Then you should use CFFI to call the OS to get it.
<cosimone> pjb: that sounds like a possible solution, but i'm interested to see if there is a "native" cl solution for this
<cosimone> does uiop of all things provide timespec/etc. functions? that would be an alright approach for me
<pjb> The standard specified internal-time-units-per-second ; nothing says it's not nanoseconds.
<cosimone> nothing says it HAS to be nanoseconds either
<cosimone> on the latest clozure cl version, it isn't
<cosimone> it's 1000000
<pjb> When the stadard was specified, computers didn't re3ach nanoseconds.
<cosimone> that's fine, but irrelevant to what i was interested in
<pjb> Nothing prevents you to provide a patch so that ccl uses the nanosecond nowadays.
eddof13 has joined #commonlisp
<cosimone> no, but i fail to see the relevance of this statement
<cosimone> if there is no known way of doing this in an implementation-independent way and without using CFFI, just say that
<pjb> Completeness.
<pjb> I provided you with all the solutions.
eddof13 has quit [Client Quit]
<beach> cosimone: Since the standard does not mention any other way than what you initially mentioned, I can't see how an implementation-independent solution could be found.
<AadVersteden[m]> cosimone: What sometimes happens in that case is the definition of a library that works across most CL implementations. That's certainly imperfect but it may be the closest you can get. If you're building something to share widely, perhaps creating a library that will contain that feature would make it easier for others to extend it for their preferred implementation. Lest that, I'd go for CFFI or similar.
<AadVersteden[m]> Specifically: if you're scratching your own itch, I'd do it inline.
azimut_ has joined #commonlisp
azimut has quit [Quit: ZNC - https://znc.in]
<Shinmera> cosimone: on sbcl you can use sb-ext:get-time-of-day
tyson2 has quit [Remote host closed the connection]
akoana has quit [Quit: leaving]
prokhor_ has joined #commonlisp
kevingal has quit [Remote host closed the connection]
xlarsx has joined #commonlisp
xlarsx has quit [Ping timeout: 250 seconds]
_cymew_ has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
<jackdaniel> I've used a monotonic clock via ffi when I had such need; it worked just fine
<jackdaniel> (linux interface, I don't remember the exact name of the function)
azimut_ has quit [Ping timeout: 258 seconds]
azimut has joined #commonlisp
igemnace has quit [Remote host closed the connection]
xlarsx has joined #commonlisp
cage has joined #commonlisp
tyson2 has joined #commonlisp
gamaliel has joined #commonlisp
verisimilitude has joined #commonlisp
Devon has quit [Ping timeout: 246 seconds]
ec has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
Devon has joined #commonlisp
Lycurgus has joined #commonlisp
ec has quit [Ping timeout: 258 seconds]
ec has joined #commonlisp
Devon has quit [Ping timeout: 252 seconds]
notzmv has quit [Ping timeout: 268 seconds]
waleee has joined #commonlisp
<verisimilitude> It's really easy to write a flawless machine code program, jcowan.
<verisimilitude> As for decreasing the size of programs to remove flaws, APL is still the king in that respect.
Devon has joined #commonlisp
gamaliel has quit [Quit: Client closed]
Lycurgus has quit [Quit: Exeunt juan@acm.org]
tyson2 has quit [Remote host closed the connection]
ec has quit [Ping timeout: 258 seconds]
igemnace has joined #commonlisp
cosimone has quit [Ping timeout: 260 seconds]
akoana has joined #commonlisp
chipxxx has joined #commonlisp
Josh_2 has joined #commonlisp
chipxxx has quit [Ping timeout: 268 seconds]
chipxxx has joined #commonlisp
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Quit: WeeChat 3.4.1]
Guest87 has joined #commonlisp
tyson2 has joined #commonlisp
Josh_2 has quit [Remote host closed the connection]
Guest87 has quit [Ping timeout: 252 seconds]
xlarsx has quit [Remote host closed the connection]
xlarsx has joined #commonlisp
xlarsx has quit [Ping timeout: 265 seconds]
igemnace has quit [Quit: WeeChat 3.6]
<jcowan> verisimilitude: I shall be happy to see your flawless web browser written in assembly language.
<verisimilitude> Be not obtuse.
<verisimilitude> Obviously, it's easier to write a flawless program with a smaller range of behaviour, and this is somewhat forced at the machine code level.
xlarsx has joined #commonlisp
<verisimilitude> No WWW browser has a formal specification in anything except flawed code, because all of them are garbage.
<jcowan> Code (which is what the WHATWG spec is) *is* a formalism.
chip_x has joined #commonlisp
chipxxx has quit [Ping timeout: 260 seconds]
<verisimilitude> Isn't that a ``living standard''?
<verisimilitude> Regardless, there's a lot of software much smaller and simpler than a WWW browser.
jmdaemon has joined #commonlisp
<Bike> verisimilitude: you have spent the last several days being grouchy here about the general state of software. it is off topic. stop doing this. there are more appropriate venues.
tyson2 has quit [Remote host closed the connection]
<verisimilitude> I didn't start it.
<verisimilitude> Well, I may have started it.
<phoe> but there's this thing where over these past few days there wasn't a day where the main topic for some time wasn't debating verisimilitude's views on software
<verisimilitude> Yes, that's fair.
<Bike> that is my main concern, yes.
<phoe> and speaking in irc terms, that's not #commonlisp, that's #verisimilitude
<phoe> which is a whole separate channel
<phoe> I wonder if #lispcafe would be a better venue to be honest since it has various discussions
<phoe> only some of which are directly related to CL
<phoe> and most of which are interesting
<contrapunctus> «more appropriate venues» like #cal-coop / #applied-language 😏
notzmv has joined #commonlisp
<contrapunctus> Or #lispcafe, yes
<verisimilitude> No, I have a channel effectively for myself on a different network. I suppose I'll leave this channel for another few years now. If pve would like to talk to me about my library, I'll be in #lispcafe for a bit.
verisimilitude has left #commonlisp [ERC (IRC client for Emacs 27.2)]
<phoe> if that's the deal you deem acceptable then that's fair
<Bike> i will be a bit more general: everyone, if you are half an hour in to an argument about web standards or chip design or what ever, please take a step back and consider if this is the place.
<phoe> (incf Bike)
<Bike> it's not like you have to talk about common lisp at all times, but having a _lot_ of _long_ conversations about other stuff is not great
chip_x has quit [Read error: Connection reset by peer]
<pjb> jcowan: WriteNow! once was a flaweless word processor written in 68030 assembler.
Devon has quit [Ping timeout: 252 seconds]
<pjb> jcowan: then they rewrote it in Objective-C…
_cymew_ has quit [Ping timeout: 264 seconds]
<jcowan> http://www.nzdl.org/cgi-bin/library?e=d-00000-00---off-0tidbits--00-0----0-10-0---0---0direct-10---4-------0-1l--11-nl-50---20-about---10-0-1-00-0--4----0-0-11-10-0utfZz-8-00&cl=CL1.1&d=HASH0198f0ff8982bf656ec14898.17&gt=1 is about WriteNow bugs, though it is not dated so I don't know which version it is talking about, the reference to Mac Classic suggests that it is the assembly language version.
<masinter> assembly langauge is buggy because the hardware is buggy
Guest9721 has quit [Quit: WeeChat 3.6]
<_death> don't let the FDIVs bite
<yitzi> ::notify AadVersteden my pretty printer is https://github.com/yitzchak/Inravina ... the readme is out of date because I am the process of detaching it from Incless (the SICL printer) in order to make it work with implementation's other than SICL. This currently works with SBCL, ECL, CLASP and ABCL. If you want to talk about it feel free to DM me.
<Colleen> yitzi: Got it. I'll let AadVersteden know as soon as possible.
notzmv has quit [Ping timeout: 250 seconds]
Noisytoot has quit [Excess Flood]
Noisytoot has joined #commonlisp
Colere has quit [Ping timeout: 265 seconds]
Furor has joined #commonlisp
Lemniscate has joined #commonlisp
Furor has quit [Ping timeout: 252 seconds]
pve has quit [Quit: leaving]
cage has quit [Quit: rcirc on GNU Emacs 27.1]
tyson2 has joined #commonlisp
puchacz has quit [Quit: Client closed]
puchacz has joined #commonlisp
puchacz has quit [Client Quit]
puchacz has joined #commonlisp
xlarsx has quit [Remote host closed the connection]
xlarsx has joined #commonlisp
xlarsx has quit [Ping timeout: 252 seconds]
puchacz has quit [Quit: Client closed]
ec has joined #commonlisp
xlarsx has joined #commonlisp
ec has quit [Ping timeout: 258 seconds]
xlarsx has quit [Ping timeout: 268 seconds]
notzmv has joined #commonlisp
xlarsx has joined #commonlisp
xlarsx has quit [Ping timeout: 268 seconds]
lagash has quit [Ping timeout: 268 seconds]
Devon has joined #commonlisp
Oladon has joined #commonlisp
xlarsx has joined #commonlisp
xlarsx has quit [Ping timeout: 268 seconds]
eddof13 has joined #commonlisp
lagash has joined #commonlisp
eddof13 has quit [Client Quit]
causal has quit [Quit: WeeChat 3.6]