jackdaniel changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language | <https://irclog.tymoon.eu/freenode/%23lisp> <https://irclog.whitequark.org/lisp> <http://ccl.clozure.com/irc-logs/lisp/> | offtopic --> #lispcafe
pyx has joined #lisp
marusich has joined #lisp
pyx has quit [Client Quit]
contrapunctus has left #lisp ["Disconnected: Replaced by new connection"]
contrapunctus has joined #lisp
contrapunctus has left #lisp ["Disconnected: closed"]
akoana has joined #lisp
Inline has quit [Ping timeout: 240 seconds]
contrapunctus has joined #lisp
EvW has quit [Ping timeout: 244 seconds]
wsinatra has joined #lisp
CrazyEddy has quit [Remote host closed the connection]
contrapunctus has left #lisp ["Disconnected: closed"]
contrapunctus has joined #lisp
quazimodo has joined #lisp
wxie has joined #lisp
galex-713_ has joined #lisp
galex-713 has quit [Ping timeout: 260 seconds]
earl-ducaine has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
torbo has joined #lisp
Aurora_v_kosmose has quit [Ping timeout: 240 seconds]
Aurora_v_kosmose has joined #lisp
<Plazma> So is there a list somewhere that goes over what lisp may not be good at or the right tools for?
wxie has quit [Ping timeout: 240 seconds]
gko_ has joined #lisp
madage has quit [Ping timeout: 240 seconds]
<xristos> Plazma: anything UI-related, web, parallelism, minimalism, embedded scripting, maybe multimedia and games
<xristos> this is for CL, my personal views, others will disagree ;p
madage has joined #lisp
<xristos> you can do all of these things in CL, but you'll be swimming against the tide
<xristos> i'm also ignoring the commercial CL implementations that have solutions to some of these domains
<phantomics> CL is great for building React apps
<phantomics> Instead of using something like Redux to implement a consistent data model across components, you can use a macro that implements components based on a common template
<phantomics> That way you avoid the inconsistency of hand-wired components but you're not piling on more stuff at runtime
mindCrime_ has quit [Excess Flood]
mindCrime_ has joined #lisp
<Plazma> Wow xristos what's left for it to be good at :p
Lycurgus has joined #lisp
Jeanne-Kamikaze has quit [Quit: Leaving]
<xristos> Plazma: what's left is exactly what you should be using CL for
<xristos> problems that don't have well-defined solutions
<Plazma> Ah fair enough
secretmyth has joined #lisp
<xristos> i'd also posit that a lot of people here are willing to put in extra effort and time, to solve a problem with CL even if CL is not a good fit
madage has quit [Ping timeout: 240 seconds]
<xristos> for many reasons
<Lycurgus> and yet how often you see something you think should be in lisp (or similar) and sometimes in fact was, but now it is java or python
madage has joined #lisp
rumbler31 has quit [Remote host closed the connection]
<Lycurgus> like the knowledge engineering text from 2016 whose implementation was done in java
rumbler31 has joined #lisp
<xristos> Lycurgus: well if you used Lisp to explore the domain and come up with a solution and later decide to rework it to be more accessible in a different language, no harm done
<xristos> Lisp has done its job in my book
<Lycurgus> in my book: harm
<Lycurgus> barring contractual obligations and the like
<Lycurgus> it generally comes across as a sell out so that a broader application of labor is possible
<Lycurgus> and it's always great when you see stuff that didn. e.g. SNEPS, which actually did a lil bit but then went back
<Lycurgus> that's somewhat common too
rumbler31 has quit [Ping timeout: 244 seconds]
<Lycurgus> btw if Parmenides is being revived can FRuleKit be far behind?
<Lycurgus> going back to cl is less common than staying sold out or bit rotting
<Lycurgus> at least keep the cl version current and the main dev one
zooey_ has quit [Remote host closed the connection]
zooey has joined #lisp
secretmyth has quit [Ping timeout: 244 seconds]
xrash has joined #lisp
Jeanne-Kamikaze has joined #lisp
holycow has joined #lisp
Bike has quit [Quit: Lost terminal]
zooey has quit [Remote host closed the connection]
zooey has joined #lisp
<_death> Lycurgus: I added frulekit code yesterday.. it shouldn't be hard to get it to run
<Lycurgus> added it where?
<Lycurgus> ah, ty will look at it in a bit
<Lycurgus> (i already had the last source state ofc)
<_death> I am playing programmer ping pong.. currently waiting for someone else to do some work before I resume
<Lycurgus> non-cooperatively?
<Lycurgus> i.e by serendip oder?
<_death> Lycurgus: cooperatively.. you can fork, make changes and pull request, and then I'll do changes, and then you, etc.
<Lycurgus> i c
<_death> for the frulekit code, the first step is to create an asdf system for it.. then get it to compile and load
FennecCo` has joined #lisp
<jcowan> xristos: I thought ECL was all about embedded scripting.
<aeth> I'd object to the "parallelism" part. CL is better than the median language at parallelism. I mean, some languages aren't even parallel at all so... probably in the top 20%, if not better.
<Lycurgus> actually the first step for frulekit is evaluate it as a rete in today's context
<aeth> e.g. Python has the GIL (and you can't just remove it in third party implementations because of the implicit race conditions in popular libraries that no one tested for)... OCaml is still trying to be updated for multicore. And a bunch of other examples...
<aeth> So quite a few languages have a much bleaker situation here, unlike, say, UI, where CL's user experience currently really is pretty bad
<Lycurgus> well raggedy i'd call it, not actually bad, just a lot of ports that didn make it all the way to fungible
<Lycurgus> yet
<Lycurgus> stuff close to base clx seems to be OK last I checked
<Lycurgus> no doubt a general reflorit will goose that into shape
<Lycurgus> (of lisp as the AI lang of choice)
<Lycurgus> haskell is a role model, it's amazing how far they've come in the last 15 y
<Lycurgus> (overall not UI specifically)
<Lycurgus> these days UI kinda wants to be in js, is there a cl ui thing that goes in that direction?
<Lycurgus> like squeakjs
orivej has joined #lisp
Alfr has joined #lisp
Alfr_ has quit [Ping timeout: 260 seconds]
akoana has left #lisp ["Leaving"]
_whitelogger has joined #lisp
contrapunctus has left #lisp ["Disconnected: Replaced by new connection"]
contrapunctus has joined #lisp
<beach> Good morning everyone!
<Lycurgus> moin beach
<xristos> jcowan: it sure is but i'd pick Lua every time
<xristos> or pick from any number of schemes
CrazyEddy has joined #lisp
<copec> [I'm doing some experimenting with my own pseudo-graph engine] Would it be considered bad form to defclass a new subclass with mixins determined by the data when opening a file of my own format?
<beach> I don't see why it would be bad.
Lycurgus has quit [Quit: Exeunt]
iAmDecim_ has joined #lisp
iAmDecim has quit [Ping timeout: 240 seconds]
<copec> Do you happen to know how the various implementation store object instances of a class beach? Is each instance its own discrete object in memory? Or is it more like a table with instances versus slots for each class?
Christ0pher has quit [Ping timeout: 240 seconds]
<copec> The AoMOP book example does it like a table iirc
<beach> I can't imagine any implementation other than the former. The objects must be subject to garbage collection as any other object, so they would have to be allocated like any others.
Christ0pher has joined #lisp
ft has quit [Ping timeout: 244 seconds]
<beach> I don't remember that example in the book, but if they did it that way, it must have been just an example for illustrating some point.
<copec> Yeah, I figured it was for illustration purposes of lisp in lisp
<copec> thanks beach
<beach> Sure.
wsinatra has quit [Quit: WeeChat 2.9]
Oladon has joined #lisp
jackdaniel has quit [Ping timeout: 240 seconds]
jackdaniel has joined #lisp
minion has quit [Remote host closed the connection]
specbot has quit [Disconnected by services]
minion has joined #lisp
specbot has joined #lisp
orivej_ has joined #lisp
luna_is_here has quit [Ping timeout: 240 seconds]
orivej has quit [Ping timeout: 244 seconds]
luna_is_here has joined #lisp
ft has joined #lisp
mindCrime_ has quit [Excess Flood]
mindCrime_ has joined #lisp
torbo has quit [Remote host closed the connection]
gravicappa has joined #lisp
space_otter has joined #lisp
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 240 seconds]
Lord_of_Life_ is now known as Lord_of_Life
bocaneri is now known as Sauvin
edgar-rft has quit [Quit: Leaving]
mindCrime_ is now known as mindCrime
karayan has quit [Remote host closed the connection]
karayan has joined #lisp
narimiran has joined #lisp
jesse1010 has quit [Ping timeout: 244 seconds]
aartaka has joined #lisp
orivej_ has quit [Ping timeout: 240 seconds]
Oladon has quit [Quit: Leaving.]
Nilby has joined #lisp
iAmDecim_ has quit [Ping timeout: 244 seconds]
skapata has joined #lisp
skapata has left #lisp [#lisp]
Jeanne-Kamikaze has quit [Ping timeout: 244 seconds]
ggole has joined #lisp
narimiran has quit [Quit: leaving]
karayan has quit [Ping timeout: 244 seconds]
orivej has joined #lisp
Oladon has joined #lisp
mgsk- has quit [Ping timeout: 240 seconds]
mgsk_ has joined #lisp
Ibero39 has joined #lisp
aleamb has quit [Read error: Connection reset by peer]
Ibero39 has quit [Ping timeout: 244 seconds]
contrapunctus has left #lisp ["Disconnected: closed"]
fwoaroof[m] has quit [*.net *.split]
gaqwas[m] has quit [*.net *.split]
Gnuxie[m] has quit [*.net *.split]
rme has quit [*.net *.split]
moon-child has quit [*.net *.split]
sebboh has quit [*.net *.split]
knobo has quit [*.net *.split]
zooey has quit [*.net *.split]
Aurora_v_kosmose has quit [*.net *.split]
madage has quit [*.net *.split]
hendursaga has quit [*.net *.split]
luckless_ has quit [*.net *.split]
gxt__ has quit [*.net *.split]
cantstanya has quit [*.net *.split]
xrash has quit [Ping timeout: 258 seconds]
jonatack has quit [Ping timeout: 240 seconds]
aartaka_d has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
holycow has quit [Quit: Lost terminal]
heisig has joined #lisp
contrapunctus has joined #lisp
gko_ has quit [Ping timeout: 240 seconds]
gaqwas has joined #lisp
gaqwas has joined #lisp
gaqwas has quit [Changing host]
orivej has quit [Ping timeout: 258 seconds]
shka_ has joined #lisp
Gnuxie[m] has joined #lisp
gaqwas[m] has joined #lisp
fwoaroof[m] has joined #lisp
moon-child has joined #lisp
rme has joined #lisp
knobo has joined #lisp
sebboh has joined #lisp
zooey has joined #lisp
orivej has joined #lisp
hendursaga has joined #lisp
cantstanya has joined #lisp
jonatack has joined #lisp
Oladon has quit [Quit: Leaving.]
madage has joined #lisp
Aurora_v_kosmose has joined #lisp
luckless_ has joined #lisp
gxt__ has joined #lisp
brown121408 has joined #lisp
brown121408 has quit [Client Quit]
mindCrime has quit [Excess Flood]
mindCrime has joined #lisp
jonatack has quit [Ping timeout: 244 seconds]
ebrasca has joined #lisp
space_otter has quit [Remote host closed the connection]
jonatack has joined #lisp
hendursa1 has joined #lisp
tutti has joined #lisp
hendursaga has quit [Ping timeout: 240 seconds]
jw4 has quit [Read error: Connection reset by peer]
jonatack has quit [Ping timeout: 244 seconds]
jonatack has joined #lisp
pve has joined #lisp
jw4 has joined #lisp
FennecCo` has quit [Ping timeout: 244 seconds]
IPmonger has quit [Ping timeout: 240 seconds]
rumbler31 has joined #lisp
pve has quit [Ping timeout: 244 seconds]
aartaka_d has quit [Read error: Connection reset by peer]
rumbler31 has quit [Ping timeout: 240 seconds]
pve has joined #lisp
mindCrime has quit [Ping timeout: 244 seconds]
wxie has joined #lisp
tutti has quit [Ping timeout: 244 seconds]
bilegeek has quit [Quit: Leaving]
gko_ has joined #lisp
toorevitimirp has joined #lisp
flak has joined #lisp
rippa has joined #lisp
rippa has quit [Client Quit]
random-nick has joined #lisp
ramHero has joined #lisp
marusich has quit [Remote host closed the connection]
simendsjo has joined #lisp
wxie has quit [Ping timeout: 240 seconds]
cosimone has joined #lisp
gko_ has quit [Ping timeout: 240 seconds]
ramHero has quit [Quit: ERC (IRC client for Emacs 26.3)]
ramHero has joined #lisp
ramHero has left #lisp [#lisp]
ramHero has joined #lisp
ramHero has quit [Client Quit]
ramHero has joined #lisp
ramHero has left #lisp ["ERC (IRC client for Emacs 26.3)"]
ramHero has joined #lisp
EvW has joined #lisp
ukari has joined #lisp
wxie has joined #lisp
ramHero has quit [Remote host closed the connection]
ramHero has joined #lisp
galex-713_ has quit [Ping timeout: 244 seconds]
galex-713 has joined #lisp
ramHero has quit [Remote host closed the connection]
Inline has joined #lisp
galex-713 has quit [Ping timeout: 244 seconds]
iAmDecim_ has joined #lisp
wxie has quit [Ping timeout: 258 seconds]
bitmapper has quit [Ping timeout: 244 seconds]
simendsjo has quit [Remote host closed the connection]
iAmDecim_ has quit [Ping timeout: 258 seconds]
dyeplexer has joined #lisp
dyeplexer has left #lisp ["Leaving"]
simendsjo has joined #lisp
cosimone has quit [Quit: Quit.]
gko_ has joined #lisp
orivej has quit [Ping timeout: 264 seconds]
iAmDecim_ has joined #lisp
galex-713 has joined #lisp
karayan has joined #lisp
ramHero has joined #lisp
iAmDecim_ has quit [Ping timeout: 244 seconds]
sbodin has joined #lisp
treflip has joined #lisp
<ebrasca> How to check if string contain some text
<ebrasca> like some text starting with "MAIL FROM:<" then some email adres and end with ">"
Inline has quit [Quit: Leaving]
<Josh_2> regex?
galex-713 has quit [Ping timeout: 240 seconds]
<treflip> ebrasca: you need a regular expression
<ebrasca> Josh_2: Can I check if email adress is correct with regex?
<no-defun-allowed> Checking email validity with a regex is one of those highly cursed things you shouldn't do, but matching "MAIL FROM:<(.*)>" could work if I remember POSIX syntax right.
<ebrasca> Why it is cursed?
simendsjo has quit [Ping timeout: 240 seconds]
<phoe> because it's 446 characters long
<no-defun-allowed> I was looking for that exact post, but yes.
<no-defun-allowed> But I don't think you'll see <> or whitespace in an email address, so (.*) would work fine.
cosimone has joined #lisp
epony has quit [Remote host closed the connection]
epony has joined #lisp
ramHero has quit [Remote host closed the connection]
toorevitimirp has quit [Remote host closed the connection]
contrapunctus has left #lisp ["Disconnected: closed"]
contrapunctus has joined #lisp
toorevitimirp has joined #lisp
rumbler31 has joined #lisp
Inline has joined #lisp
cosimone has quit [Quit: Quit.]
Sauvin has quit [Ping timeout: 256 seconds]
__jrjsmrtn__ has quit [Ping timeout: 240 seconds]
__jrjsmrtn__ has joined #lisp
toorevitimirp has quit [Remote host closed the connection]
toorevitimirp has joined #lisp
AeroNotix has joined #lisp
<AeroNotix> hi - when converting between lisp numbers and C ints. How do I convert a C integer into a Lisp number?
<AeroNotix> and vice versa
aartaka has joined #lisp
<AeroNotix> There's `cffi:translate-to-foreign` but it doesn't appear there's an implementation for ints. Even still, I am not sure exactly how you would translate.
<AeroNotix> my initial thought is to write a function which would look at the raw memory and translate it that way. Am I thinking about this wrong?
<AeroNotix> It feels super unergonomic when dealing with ints in CFFI and nothing I've seen in the documentation points to a simpler mechanism.
<AeroNotix> specifically I am dealing with a C library that uses a lot of int*'s.
jonatack has quit [Ping timeout: 244 seconds]
aartaka has quit [Ping timeout: 256 seconds]
toorevitimirp has quit [Remote host closed the connection]
<beach> Maybe you can write a Common Lisp replacement for that library.
<AeroNotix> beach: it's pretty complicated
<AeroNotix> beach: any way it looks like I was just overlooking cffi:mem-ref
<beach> So does your debugging experience seem to be.
aartaka has joined #lisp
<AeroNotix> beach: it's much easier to wrap a library implementing QUIC+HTTp3 than it is to write it from scratch :)
<beach> For you individually, perhaps. But you would do a favor to others if you would write a Common Lisp replacement.
<AeroNotix> beach: my rate is $95/h if you're interested
<beach> I see.
<phoe> AeroNotix: wait, a C integer into a Lisp number?
<AeroNotix> phoe: yeah disregard, I think. I was overthinking things
toorevitimirp has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
<phoe> cffi:mem-ref with proper type
<phoe> s/type/foreign type/
<AeroNotix> yup that works. I was misunderstanding what it would do
<AeroNotix> My understanding was flawed. I was thinking the memory layout / representation of a C int would be incompatible with Lisp numbers
<beach> phoe: Maybe you should charge for that help.
<phoe> it dereferences C pointers and converts the result into a Lisp value, so from an int* you get an int
<AeroNotix> beach: I'd be happy to pay
<beach> Good to know.
<AeroNotix> beach: i get your initial point, but just suggesting to rewrite a complicated project in Lisp vs trying to use it directly is just a bonkers way to approach things :)
<phoe> beach: sure, if the rate is $95 per hour then I'll get ~¢40 since answering that took me like ten seconds
<AeroNotix> phoe: where do you want it sent. I can pay in PLN
<AeroNotix> sent 1.50zl
toorevitimirp has quit [Remote host closed the connection]
<AeroNotix> beach: happy?
<phoe> this is a proof that one can make money on Lisp
<AeroNotix> I was genuinely gonna approach this channel in a few weeks to pay for some lisp work if the current thing I've working on pans out
<AeroNotix> s/I've/I'm
edgar-rft has joined #lisp
<AeroNotix> There was a PDF floating around for a Lisp OS that I think Strandh was working on. Anyone remember it?
EvW has quit [Ping timeout: 240 seconds]
<AeroNotix> yup this
<AeroNotix> thanks
<AeroNotix> Was there ever an implementation of this?
<beach> No.
<beach> Not yet, I should say.
<AeroNotix> beach: are you Strandh? I forget people's real names in here
<beach> Yes, that's what "beach" means.
<AeroNotix> oh
<AeroNotix> ok
<beach> I am still working on SICL, which I think of as the basis of CLOSOS.
<AeroNotix> I was playing with Mezzanno for a while. Interesting project.
<beach> Definitely.
<AeroNotix> Could I just drop SICL in to replace whichever implementation I use now??
<beach> Not yet. But the plan is for it to be ANSI compliant when it's done.
<AeroNotix> ok
<AeroNotix> eh, I need my freenode password to join #sicl.
epony has quit [Remote host closed the connection]
epony has joined #lisp
orivej has joined #lisp
X-Scale` has joined #lisp
X-Scale has quit [Ping timeout: 240 seconds]
X-Scale` is now known as X-Scale
ayuce has joined #lisp
hendursa1 has quit [Quit: hendursa1]
MiGhTYGirLs2` has joined #lisp
hendursaga has joined #lisp
MiGhTYGirLs2` has quit [Quit: Hi you want to buy selected products or Phish my webpage design? http://amazonian2.000webhostapp.com / https://exodux222.wordpress.com]
xrash has joined #lisp
jonatack has joined #lisp
ayuce has quit [Remote host closed the connection]
jesse1010 has joined #lisp
ramHero has joined #lisp
aartaka has joined #lisp
aartaka_d has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
aartaka_d has quit [Read error: Connection reset by peer]
Lord_Nightmare has quit [Ping timeout: 246 seconds]
Lord_Nightmare has joined #lisp
AeroNotix has quit [Quit: WeeChat 2.9]
Lord_Nightmare has quit [Ping timeout: 258 seconds]
kaftejiman has joined #lisp
sbodin has quit [Ping timeout: 260 seconds]
Bourne has quit [Ping timeout: 240 seconds]
Bourne has joined #lisp
dmr0x80 has joined #lisp
dmr0x80 has quit [Client Quit]
dmr0x80 has joined #lisp
galex-713 has joined #lisp
dmr0x80 has quit [Quit: WeeChat 3.0-dev]
dmr0x80 has joined #lisp
dmr0x80 has quit [Client Quit]
dmr0x80 has joined #lisp
dmr0x80 has quit [Quit: WeeChat 3.0-dev]
dmr0x80 has joined #lisp
dmr0x80 has quit [Client Quit]
dmr0x80 has joined #lisp
dmr0x80 has quit [K-Lined]
EvW1 has joined #lisp
wglb has joined #lisp
rumbler31 has quit [Remote host closed the connection]
cosimone has joined #lisp
Inline has quit [Ping timeout: 244 seconds]
wglb has quit [Remote host closed the connection]
dmr0x80 has joined #lisp
dmr0x80 has quit [Client Quit]
wglb has joined #lisp
rogersm has joined #lisp
aartaka has joined #lisp
rogersm has quit [Quit: Leaving...]
aartaka_d has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
Rengan has joined #lisp
Jeanne-Kamikaze has joined #lisp
Lord_of_Life_ has joined #lisp
ski has quit [Ping timeout: 244 seconds]
Lord_of_Life has quit [Ping timeout: 240 seconds]
Lord_of_Life_ is now known as Lord_of_Life
yitzi has joined #lisp
<ebrasca> beach: Hi , can I contribute code to seconds-climacs?
rumbler31 has joined #lisp
mikecheck has joined #lisp
galex-713 has quit [Ping timeout: 244 seconds]
aartaka_d has quit [Ping timeout: 258 seconds]
galex-713 has joined #lisp
<phoe> beach: TCLCS will be about 320 pages after typesetting.
gko_ has quit [Ping timeout: 244 seconds]
kaftejiman has quit [Remote host closed the connection]
aartaka has joined #lisp
Rengan has quit [Remote host closed the connection]
Rengan has joined #lisp
Rengan has quit [Remote host closed the connection]
aartaka has quit [Ping timeout: 246 seconds]
Rengan has joined #lisp
aartaka has joined #lisp
yitzi has quit [Quit: yitzi]
ayuce has joined #lisp
Rengan has quit [Remote host closed the connection]
bitmapper has joined #lisp
karlosz has quit [Quit: karlosz]
heisig has quit [Quit: Leaving]
ukari has quit [Remote host closed the connection]
Nilby has quit [Read error: Connection reset by peer]
Rengan has joined #lisp
mindCrime has joined #lisp
treflip has quit [Quit: WeeChat 2.6]
cosimone has quit [Quit: Quit.]
FennecCode has quit [Ping timeout: 240 seconds]
gravicappa has quit [Ping timeout: 240 seconds]
gravicappa has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
aartaka has joined #lisp
EvW1 has quit [Ping timeout: 244 seconds]
orivej has quit [Ping timeout: 244 seconds]
Inline has joined #lisp
rogersm has joined #lisp
orivej has joined #lisp
rogersm has quit [Remote host closed the connection]
rogersm has joined #lisp
iAmDecim_ has joined #lisp
iAmDecim_ has quit [Ping timeout: 260 seconds]
X-Scale` has joined #lisp
X-Scale has quit [Ping timeout: 240 seconds]
X-Scale` is now known as X-Scale
mindCrime has quit [Excess Flood]
mindCrime has joined #lisp
izh_ has joined #lisp
<mseddon> Phoe: what is the full title and when can I give you money for it? ;)
<phoe> mseddon: The Common Lisp Condition System, you can already give me money for it
<Plazma> oh i'll give phoe money , for what
<mseddon> Take my money!
<phoe> it's a preorder at the moment, but I have just sent the final remarks to Apress so you could expect that the book would start being available later this month
<Plazma> phoe: holy shit that's your book?
<phoe> Plazma: yes, that's my book
<Plazma> wow man congrats! i didn't know you were so well accomplished
<phoe> neither did I
<phoe> but it just happened one day
<Plazma> nice
<Plazma> i've got 2 books out there i'm a technical autho on
<Plazma> author on
<mseddon> Common lisp's condition system is massively.is
<Plazma> but i did it for a fiend and to get recognition
<phantomics> Very cool, this could help with April error handling
<mseddon> Misunderstood* bleh. Sorry phones are awful.
bocaneri has joined #lisp
<phoe> phantomics: gasp, I see you are here too
<phantomics> intermittently
<mseddon> I look forward to a dedicated treatment!
<phoe> sure, and if you have any questions about how the CL condition system works then there's plenty of people who should be able to answer, including (hopefully) me
<Plazma> i was expecting phoe to pass the buck on that one ( i wrote a book on it but please bug someone else) :P
<mseddon> He's inadvertently advertised for the job. But so have you :p
<phoe> well that could also be a good idea because of burnout, but hey, I guess I'm kinda qualified for answering CLCS questions now
yitzi has joined #lisp
akoana has joined #lisp
rogersm has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 244 seconds]
yitzi has quit [Read error: Connection reset by peer]
karlosz has joined #lisp
<borei> oh, Condition system - just made big dive into it, would love to get book about it.
<borei> available by the end of the month ?
<phoe> uh, just looked - the current estimated date is october 9
<phoe> so I might have just lied to you all
<phoe> octovber 9th is what is on their page at the moment
rogersm has joined #lisp
yitzi has joined #lisp
<borei> Oct 9 - that is fine, don't see any problems with it.
yitzi has quit [Client Quit]
johnjay has quit [Ping timeout: 244 seconds]
flak has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
kaftejiman has joined #lisp
rogersm has quit []
ggole has quit [Quit: Leaving]
Jesin has quit [Quit: Leaving]
shka_ has quit [Ping timeout: 246 seconds]
karayan has quit [Remote host closed the connection]
gravicappa has quit [Ping timeout: 244 seconds]
karayan has joined #lisp
Jesin has joined #lisp
johnjay has joined #lisp
iamFIREcracker has quit [Ping timeout: 258 seconds]
rumbler31 has quit [Ping timeout: 256 seconds]
mindCrime has quit [Excess Flood]
mindCrime has joined #lisp
Volt_ has joined #lisp
EvW has joined #lisp
random-nick has quit [Ping timeout: 240 seconds]
dra_ has joined #lisp
dra_ is now known as dra
<dra> Hello!
whiteline_ has quit [Ping timeout: 240 seconds]
izh_ has quit [Quit: Leaving]
Jeanne-Kamikaze has quit [Ping timeout: 260 seconds]
Rengan has quit [Remote host closed the connection]
pve_ has joined #lisp
FennecCode has joined #lisp
MichaelRaskin has quit [Quit: MichaelRaskin]
pve has quit [Ping timeout: 240 seconds]
iAmDecim_ has joined #lisp
wxie has joined #lisp
karstensrage has quit [Quit: ZNC - http://znc.in]
iAmDecim_ has quit [Ping timeout: 244 seconds]
pfdietz has joined #lisp
ebrasca has left #lisp ["ERC (IRC client for Emacs 26.3)"]
ramHero has quit [Ping timeout: 256 seconds]
iamFIREcracker has joined #lisp
iamFIREcracker has quit [Ping timeout: 240 seconds]
kawanochan has joined #lisp
dra has quit [Quit: Leaving]
wxie has quit [Ping timeout: 246 seconds]
pfdietz has quit [Remote host closed the connection]
oldtopman has quit [Quit: *poof*]
oldtopman has joined #lisp
pve has joined #lisp
pve has quit [Client Quit]
pve_ has quit [Ping timeout: 244 seconds]
edgar-rft has quit [Quit: Leaving]
sjl has quit [Ping timeout: 260 seconds]
bilegeek has joined #lisp
pfdietz has joined #lisp
<pfdietz> Yet another book for my Lisp bookshelf. Still looking for a copy of the Chineual.
kawanochan has quit [Quit: WeeChat 2.3]
Inline has quit [Remote host closed the connection]
<jcowan> pfdietz: What book?
Lord_Nightmare has joined #lisp
<pfdietz> Phoe's TCLCS
karstensrage has joined #lisp
karstensrage is now known as Guest67372
Oladon has joined #lisp
Lord_Nightmare has quit [Quit: ZNC - http://znc.in]
xrash has quit [Ping timeout: 244 seconds]
Lord_Nightmare has joined #lisp
Guest67372 has left #lisp ["Leaving"]
lavaflow has quit [Quit: WeeChat 2.9]
Guest75385 has joined #lisp
ogawachan has joined #lisp