jackdaniel changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language | <http://cliki.net/> <https://irclog.tymoon.eu/freenode/%23lisp> <https://irclog.whitequark.org/lisp> <http://ccl.clozure.com/irc-logs/lisp/> | SBCL 1.5.4, CMUCL 21b, ECL 16.1.3, CCL 1.11.5, ABCL 1.5.0
Kundry_Wag has joined #lisp
paul0 has quit [Read error: Connection reset by peer]
paul0 has joined #lisp
Kundry_Wag has quit [Ping timeout: 268 seconds]
Ricchi has joined #lisp
Insanity_ has quit [Quit: Connection closed for inactivity]
Jeanne-Kamikaze has joined #lisp
lucasb has quit [Quit: Connection closed for inactivity]
Kundry_Wag has joined #lisp
torbo has joined #lisp
nullman has joined #lisp
nullniverse has joined #lisp
ebrasca has quit [Remote host closed the connection]
akoana has joined #lisp
EvW has quit [Ping timeout: 250 seconds]
FennecCode has joined #lisp
torbo has quit [Remote host closed the connection]
Frobozz has joined #lisp
Tristam has quit [Ping timeout: 258 seconds]
sonologico has quit [Remote host closed the connection]
sonologico has joined #lisp
semz has joined #lisp
vms14 has joined #lisp
vms14 has quit [Changing host]
vms14 has joined #lisp
<vms14> I want to create this macro
<vms14> (defmacro with-date (&body body)
<vms14> `(destructuring-bind (seconds minutes hours day month year week-day day-p zone) (get-date) ,@body))
<vms14> but then I need to ignore all the non used arguments if I don't want to see a lot of warnings
druidgreeneyes has joined #lisp
<vms14> what I'm doing wrong? I want to have a macro which asks for the current date and binds for you the variables
<Bike> do (destructuring-bind (...vars...) (declare (ignorable ...vars...)) ...)
<vms14> or how to ignore all non used arguments
<vms14> oh
<Bike> that'll silence any warnings for not using them, but let you use them if you want
<vms14> ty
druidgreeneyes has quit [Client Quit]
druidgreeneyes has joined #lisp
<vms14> there was a format option to display the month number with words? like what does with roman numbers and english text numbers
<Bike> clhs ~r
AndroUser2 has joined #lisp
macdavid313 has joined #lisp
AndroUser2 has quit [Remote host closed the connection]
druidgreeneyes has quit [Quit: Quit]
druidgreeneyes has joined #lisp
borracciaBlu has joined #lisp
druidgreeneyes has quit [Quit: Quit]
druidgreeneyes has joined #lisp
macdavid313 has quit [Remote host closed the connection]
macdavid313 has joined #lisp
borracciaBlu has quit [Ping timeout: 244 seconds]
anewuser has joined #lisp
semz has quit [Quit: Leaving]
sonologico has quit [Ping timeout: 245 seconds]
igemnace has quit [Quit: WeeChat 2.5]
Kundry_Wag has quit [Remote host closed the connection]
Kundry_Wag has joined #lisp
Bike has quit [Quit: Lost terminal]
Kundry_Wag has quit [Ping timeout: 272 seconds]
Jeanne-Kamikaze has quit [Quit: Leaving]
Josh_2 has quit [Quit: ERC (IRC client for Emacs 26.2)]
GloriaReed has joined #lisp
orivej has quit [Ping timeout: 246 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
xkapastel has quit [Quit: Connection closed for inactivity]
jgodbout has joined #lisp
GloriaReed has quit [Ping timeout: 272 seconds]
iarebatm` has quit [Ping timeout: 248 seconds]
jgodbout has quit [Ping timeout: 245 seconds]
ahungry has joined #lisp
gravicappa has joined #lisp
igemnace has joined #lisp
GloriaReed has joined #lisp
igemnace has quit [Quit: WeeChat 2.5]
<beach> Good morning everyone!
mindthelion has joined #lisp
techquila has quit [Ping timeout: 246 seconds]
igemnace has joined #lisp
vlatkoB has joined #lisp
lavaflow has quit [Ping timeout: 268 seconds]
Lycurgus has joined #lisp
keep_learning_M has joined #lisp
keep_learning_M has quit [Client Quit]
keep_learning_M has joined #lisp
borracciaBlu has joined #lisp
borracciaBlu has quit [Ping timeout: 245 seconds]
GloriaReed has quit [Quit: GloriaReed]
lavaflow has joined #lisp
vms14 has quit [Quit: WeeChat 2.3]
ahungry has quit [Remote host closed the connection]
Necktwi_ has joined #lisp
Necktwi_ has quit [Client Quit]
wigust has joined #lisp
wigust- has quit [Ping timeout: 268 seconds]
_Theo_ has joined #lisp
sauvin has joined #lisp
dale has quit [Quit: My computer has gone to sleep]
Lycurgus has quit [Quit: Exeunt]
orivej has joined #lisp
slyrus__ has quit [Ping timeout: 258 seconds]
ggole has joined #lisp
drot has joined #lisp
drot has quit [Client Quit]
borracciaBlu has joined #lisp
drot has joined #lisp
borracciaBlu has quit [Ping timeout: 246 seconds]
macdavid313 has quit [Remote host closed the connection]
SaganMan has joined #lisp
lavaflow has quit [Ping timeout: 245 seconds]
lavaflow has joined #lisp
<Harag> morning
FennecCode has quit [Quit: ERC (IRC client for Emacs 26.2)]
<Harag> I have a little object db I wrote, its designed in 3 logical layers basic, indexed and the kitchen sink thrown in. The idea is to use different asd files to load only what is needed for a layer. My question is should the layers be in their own package/namespace or should I keep it in the same namespace
zaquest has quit [Remote host closed the connection]
<ck_> I'd say it is better form to use separate packages
<Harag> that was my feeling as well but I was hesitant that I could find my self with circular references some time in the future as I add more functionality
<Harag> suppose i must just be careful to not end up there
<PuercoPop> Harag: how does it compare to bknr-store feature-wise?
ltriant has quit [Quit: leaving]
<Harag> its a very naive store uses plists and the persisted data files are human readable
<Harag> I never used bknr-store, but my previous experience with clos based data stores left me disillusioned
<PuercoPop> It can't be that naive if it has indexes. Storing things as plists seems like playing to Lisps strength more than anything.
anewuser has quit [Quit: anewuser]
__jrjsmrtn__ has joined #lisp
<Harag> :PuercoPop i call it naive because of that very fact, everything including the index is using lisp and minimal functionality, the way the data is stored in separate files often negates the need heavy indexing
<aeth> Harag: as a last resort to avoid a circular reference, you can pass a symbol from one layer to another e.g. in a macro... it's pretty rare, though, even with one-package-per-file
_jrjsmrtn has quit [Ping timeout: 245 seconds]
<no-defun-allowed> Okay, I broke something in SLIME and any attempt to type anything in the repl just gives me the message "Text is read-only". What should I do?
<aeth> Harag: e.g. if A depends on B but B needs a symbol from A, then you can pass the symbol from A into B in e.g. a macro api.
permagreen has quit [Remote host closed the connection]
ealfonso5 has joined #lisp
<Harag> :aeth ok, well I wont pretend I can see how that code looks in my head now but I will keep it in mind. the store will most likely only ever be used and extended by me so I will just have to solve the problem if it ever comes up
ealfonso has quit [Read error: Connection reset by peer]
<Harag> :ck_ :PuercoPop :aeth thanx for the input
jprajzne has joined #lisp
<ck_> no-defun-allowed: where's your cursor at?
<no-defun-allowed> the end of the buffer, at the _ in "CL-USER> _"
<no-defun-allowed> nowhere stupid, it should work but refuses to
<ck_> does , work?
<no-defun-allowed> ,in-package doesn't
rippa has joined #lisp
<ck_> hmm. Your asking here tells me you'd rather not restart, right?
<no-defun-allowed> yeah, I have some slightly elaborate state
<ck_> try to set inhibit-read-only to t
<no-defun-allowed> doesn't like that, "Wrong type argument: integer-or-marker-p, nil" and the input has the package name font
<ck_> hmm. Have you tried sending something to the repl already? C-c C-j or whatever the standard binding is
<Harag> :PuercoPop ... on that point of lisp strengths, doing a reduce with string comparisons over 10k plists ... 0.004 to 0.008 seconds of real time... i can live with that
<ck_> talking about slime-eval-last-expression-in-repl
<no-defun-allowed> C-c C-e works, I'm going to dump out a load form and restart since I made a method for that
<ck_> C-c C-o, or C-c M-o doesn't do anything for you?
<no-defun-allowed> nope
<ck_> Weird. Well, I have no further suggestions other than using the ielm repl to fiddle with the lisp repl buffer state
<ck_> Good luck.
<no-defun-allowed> I've restarted it and restored the state using make-load-form (which I wrote a method for).
<no-defun-allowed> Oh fuck, those methods didn't get everything.
keep_learning_M has quit [Quit: This computer has gone to sleep]
zaquest has joined #lisp
<schweers> no-defun-allowed: I’m a bit late for this, but maybe it happens again. Did you try killing the repl buffer and calling M-x slime-repl RET?
<no-defun-allowed> That could work.
a7f4 has joined #lisp
makomo has joined #lisp
SaganMan has quit [Quit: WeeChat 1.6]
borracciaBlu has joined #lisp
Lord_of_Life has quit [Ping timeout: 245 seconds]
borracciaBlu has quit [Ping timeout: 272 seconds]
Lord_of_Life has joined #lisp
liberiga has joined #lisp
Nomenclatura has quit [Quit: q]
arduo has joined #lisp
sammich has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
cosimone has joined #lisp
sammich has joined #lisp
liberiga has quit [Ping timeout: 260 seconds]
orivej has quit [Ping timeout: 246 seconds]
paul0 has quit [Read error: Connection reset by peer]
paul0 has joined #lisp
amerlyq has joined #lisp
<LdBeth> Good afternoon
qbeek has joined #lisp
<beach> Hello LdBeth.
paul0 has quit [Read error: Connection reset by peer]
paul0 has joined #lisp
borracciaBlu has joined #lisp
nanoz has joined #lisp
igemnace has quit [Read error: Connection reset by peer]
igemnace has joined #lisp
mathrick has quit [Ping timeout: 250 seconds]
<beach> I added "A calendar program" to this list: metamodular.com/Common-Lisp/suggested-projects.html
<beach> It is an application that would be perfect for McCLIM.
<beach> Plus, there are no tough requirements on performance.
Kundry_Wag has joined #lisp
maxxcan has joined #lisp
maxxcan has quit [Client Quit]
<beach> A simple first version would be adequate, and more features could be added later, like sophisticated ways of handling overlapping events.
Kundry_Wag has quit [Remote host closed the connection]
orivej has joined #lisp
<beach> It would be a perfect application to work on for someone who would like to use it as an opportunity to learn CLIM/McCLIM.
Kundry_Wag has joined #lisp
<beach> I suggest taking inspiration from Google calendar.
mathrick has joined #lisp
Kundry_Wag has quit [Ping timeout: 258 seconds]
cosimone has quit [Ping timeout: 264 seconds]
cosimone has joined #lisp
random-nick has joined #lisp
Lycurgus has joined #lisp
qbeek has quit [Remote host closed the connection]
akoana has left #lisp ["Leaving"]
liberiga has joined #lisp
lavaflow has quit [Ping timeout: 248 seconds]
<jonatack> \quit
jonatack has quit [Quit: WeeChat 2.3]
borracciaBlu has quit [Ping timeout: 246 seconds]
jonatack has joined #lisp
<jonatack> no-defun-allowed: drive-by thought, could also do M-x sl-i-li (slime-restart-inferior-lisp)
mindthelion has quit [Remote host closed the connection]
Lycurgus has quit [Quit: Exeunt]
nil has quit [Quit: Fairfarren.]
jello_pudding has joined #lisp
nil has joined #lisp
m00natic has joined #lisp
vsync has quit [Quit: ZNC - http://znc.sourceforge.net]
vsync has joined #lisp
hhdave has joined #lisp
<no-defun-allowed> jonatack: Not really, that would lose my state, which I recovered only because I could recreate it since it's mostly transforming an online API.
<jonatack> no-defun-allowed: oh right, sorry
<no-defun-allowed> Maybe trying to create a new REPL would work better. I'll test it.
<no-defun-allowed> Yeah, killing the REPL then M-x slime-repl looks like that would cut down lossage.
noobineer has joined #lisp
a7f4 has quit [Ping timeout: 272 seconds]
a7f4 has joined #lisp
nil has quit [Quit: Fairfarren.]
Ricchi has quit [Remote host closed the connection]
druidgreeneyes has quit [Ping timeout: 268 seconds]
druidgreeneyes has joined #lisp
nil has joined #lisp
kajo has joined #lisp
random-nick has quit [Ping timeout: 245 seconds]
krooked has joined #lisp
kajo has quit [Ping timeout: 250 seconds]
kajo has joined #lisp
krooked has quit [Remote host closed the connection]
cosimone has quit [Quit: WeeChat 2.5]
hhdave has quit [Quit: hhdave]
krooked has joined #lisp
<Harag> :beach ...just curious is some one actually working on a lisp operating system or is it just an exercise on paper?
krooked has quit [Ping timeout: 244 seconds]
EvW1 has joined #lisp
jello_pudding has quit [Remote host closed the connection]
mindCrime__ has joined #lisp
borracciaBlu has joined #lisp
<beach> Harag: I am. SICL is going to be a safe implementation that will be the basis of a multi-user operating system.
<beach> Unless I die first, of course.
<beach> Harag: My first-class global environments were designed so that several "users" can co-exist in the same system.
borracciaBlu has quit [Ping timeout: 245 seconds]
<beach> Harag: It is thought that getting a bootable image is the hard part of an OS, but I don't agree. The hard part is making it safe and stable.
<beach> In fact, the bootable part is not even terribly interesting. A lot of work could be done by running the entire thing as a Unix application.
Lycurgus has joined #lisp
<beach> The hard (and interesting) parts are getting a satisfactory user environment and a satisfactory application API.
borracciaBlu has joined #lisp
DGASAU has joined #lisp
papachan has joined #lisp
Patternmaster has joined #lisp
<beach> Harag: And Mezzano already exists, of course. But I don't know what state it is in.
<beach> And lately frodef has made some noise indicating that he might work on Movitz again.
random-nick has joined #lisp
<Lycurgus> it's the lisp version of the great american novel
<dlowe> that and making a viable replacement for the hyperspec
<dlowe> which one day I will try to get back to :p
ebrasca has joined #lisp
<bjorkintosh> what's wrong with the hyperspec dlowe?
<LdBeth> To be concise, it was aimed for language implementors so a language learner could get confused
<dlowe> The main wrongness is that you can't distribute modified versions
<dlowe> so no notes, corrections, or links to other sources can be added
<bjorkintosh> can it be forked and then notes, corrections and links added?
<dlowe> No.
<bjorkintosh> or is that prohibited? oh. why not?
LiamH has joined #lisp
<bjorkintosh> oh lisp works.
<bjorkintosh> right.
<Lycurgus> they and allegro are the ibm and ms of lisp
<LdBeth> You may able to write a “companion book” and hyperlink to it, I guess
<beach> I also need an editable version of it for WSCL. I started trying to turn the dpANS document into a single LaTeX document (not a single file, a single document), but it is just too hard.
<moldybits> some of the links in the hyperspec are wrong
<beach> But I am convinced that such a version of the dpANS would be quite valuable.
<moldybits> what's dpANS?
<Lycurgus> LdBeth, yeah nobody can prevent that sort of thing, it's not copyright infringment to promote an asshole
<beach> moldybits: "draft proposal for American National Standard" I believe. It's the draft of the standard, but I understand it is virtually identical to the final standard.
<beach> moldybits: And that one is free for us to use.
<moldybits> ah, but freely available
<beach> Yes.
<moldybits> familiar with that situation from C land
<dlowe> beach: I have a project that turns the latex into a s-expr markup
<dlowe> it's really tough, though
<beach> dlowe: Good. But the dpANS is not LaTeX, and that is a large part of the problem.
<beach> Plus, it is one plain TeX document per chapter, with lots of custom macros that have been superseded by LaTeX.
<dlowe> I made a TeX parser/macro expander, with the idea that I could manually specify macros that didn't expand.
<beach> That sounds like a good start.
<dlowe> The hope is to produce something that is >90% converted and then do the rest by hand to produce the final document.
<LdBeth> Is anyone here familiar with SGML?
<dlowe> and then write an html renderer for the structured markup
<beach> dlowe: Sounds like a plan.
HDurer has quit [Remote host closed the connection]
<dlowe> It's a long term plan - I started this like seven years ago
<beach> There is no rush.
<dlowe> I suppose not
Josh_2 has joined #lisp
cosimone has joined #lisp
Bike has joined #lisp
borracciaBlu has quit [Ping timeout: 268 seconds]
<beach> Lycurgus: Are you saying that planning a Lisp operating system is a futile project?
<p_l> beach: I'm pretty sure some "great american novels" got delivered
<beach> Maybe so. Just checking what Lycurgus meant here.
<Josh_2> But there already is one :O
<dlowe> it's an idiom in America for a thing that everyone says they are working on.
<p_l> dlowe: or at least aspire to
<p_l> last entry on the list of novels considered to be such is from 1997, so not bad
<LdBeth> GG
<Lycurgus> beach, no not at all have my own intentions in that direction
xkapastel has joined #lisp
<beach> OK.
gareppa has joined #lisp
gareppa has quit [Remote host closed the connection]
_nir_ has quit [Quit: WeeChat 2.2]
<galdor> is there a way to get the output of the compiler when the cffi groveller fails ? I end up with a UIOP/RUN-PROGRAM:SUBPROCESS-ERROR which only contains a code, command line and process which is a UIOP/LAUNCH-PROGRAM::PROCESS-INFO with OUTPUT-STREAM set to NIL
orivej has quit [Ping timeout: 248 seconds]
saravia has joined #lisp
lucasb has joined #lisp
dddddd has joined #lisp
mindCrime has joined #lisp
mindCrime__ has quit [Ping timeout: 244 seconds]
mindCrime_ has joined #lisp
qbeek has joined #lisp
mindCrime has quit [Ping timeout: 245 seconds]
dale has joined #lisp
Kundry_Wag has joined #lisp
superkumasan has joined #lisp
<Xach> galdor: i run the build in emacs and scroll back :(
<Xach> the screamer-plus license looks untenable :(
<galdor> it seems to end up in *inferior-lisp* indeed; still better than nothing, but I really need to write a patch so that the output end up in the condition
<galdor> "You may not distribute the code without prior consent from me." -> well at least it is clear :)
<galdor> unless I'm mistaken, it means it is not open source
<Xach> i have written to the author to see if that is still the desire and intent
<Xach> maybe their desire has changed since then
liberiga has quit [Ping timeout: 260 seconds]
nowhereman has quit [Ping timeout: 268 seconds]
Lycurgus has quit [Quit: Exeunt]
gareppa has joined #lisp
gareppa has quit [Remote host closed the connection]
jprajzne has quit [Quit: Leaving.]
nick91238 has joined #lisp
pnp has joined #lisp
orivej has joined #lisp
DGASAU has quit [Ping timeout: 268 seconds]
mindCrime has joined #lisp
mindCrime_ has quit [Ping timeout: 246 seconds]
mindCrime_ has joined #lisp
mindCrime has quit [Ping timeout: 246 seconds]
lavaflow has joined #lisp
iovec has joined #lisp
orivej has quit [Ping timeout: 245 seconds]
smazga has joined #lisp
orivej has joined #lisp
papachan has quit [Quit: Leaving]
ravndal has quit [Quit: WeeChat 2.5]
amerlyq has quit [Quit: amerlyq]
amerlyq has joined #lisp
pnp has quit [Ping timeout: 260 seconds]
maxxcan has joined #lisp
a7f4 has quit [Ping timeout: 248 seconds]
gjvc has quit [Remote host closed the connection]
DGASAU has joined #lisp
NickBusey has quit [Ping timeout: 245 seconds]
t58 has joined #lisp
maxxcan has quit [Quit: maxxcan]
makomo_ has joined #lisp
m00natic has quit [Remote host closed the connection]
makomo has quit [Ping timeout: 245 seconds]
EvW1 has quit [Ping timeout: 250 seconds]
Ven`` has joined #lisp
<ebrasca> I think phoe is making some documentation.
t58 has quit [Remote host closed the connection]
t58 has joined #lisp
CrazyEddy has joined #lisp
dkrm has quit [Quit: WeeChat 2.5]
orivej has quit [Ping timeout: 248 seconds]
dkrm has joined #lisp
<dlowe> yeah, it's kind of a different thing he's trying to do
qbeek has quit [Quit: Leaving...]
qbeek has joined #lisp
Ven`` has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Ven`` has joined #lisp
Ven`` has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
qbeek has quit [Quit: Leaving...]
xkapastel has quit [Quit: Connection closed for inactivity]
lucasb has quit [Quit: Connection closed for inactivity]
ravenous_ has joined #lisp
ravenous_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lonjil has quit [Quit: No Ping reply in 180 seconds.]
Bike has quit [Remote host closed the connection]
lonjil has joined #lisp
makomo_ has quit [Quit: WeeChat 2.4]
Bike has joined #lisp
cosimone has quit [Quit: WeeChat 2.5]
semz has joined #lisp
smazga has quit [Ping timeout: 245 seconds]
superkumasan has quit [Ping timeout: 268 seconds]
Lycurgus has joined #lisp
Lycurgus has quit [Client Quit]
lucasb has joined #lisp
sauvin has quit [Read error: Connection reset by peer]
pnp has joined #lisp
permagreen has joined #lisp
ravenous_ has joined #lisp
smazga has joined #lisp
Kundry_Wag has quit [Read error: No route to host]
Kundry_Wag has joined #lisp
Aruseus has joined #lisp
Nomenclatura has joined #lisp
xkapastel has joined #lisp
Josh_2 has quit [Quit: ERC (IRC client for Emacs 26.2)]
pnp has quit [Ping timeout: 260 seconds]
ebrasca has quit [Remote host closed the connection]
smazga has quit [Ping timeout: 245 seconds]
<Harag> :beach ...thanx for side tracking me there for a couple of hours some interesting reading, there is a lot of projects out there but they all look seriously short of manpower :(
cyberyl has joined #lisp
nanoz has quit [Ping timeout: 244 seconds]
smazga has joined #lisp
<Harag> :beach ...just thinking out loud ...why not start with just a server version server version of a lispos? Something that can be put in a docker container...
cosimone has joined #lisp
Kundry_Wag has quit [Read error: Connection reset by peer]
Kundry_Wag has joined #lisp
<dlowe> If I understand what you're saying, that is basically a lisp implementation.
Ven`` has joined #lisp
<Harag> :dlowe ...well yes minus the linux os that would normally used... would it be much smaller? maybe throw in a library for the docker containers to work well/easy together...I am no expert just wondering
<Harag> for one it would be immediately useful as a web server at least
<Harag> or a distrubuted DB
<White_Flame> as beach said, there's no real benefit at the user level or application developer level between running bare metal and running as a process on top of an existing OS
random-nick has quit [Ping timeout: 245 seconds]
<dlowe> IPC gets a lot nicer
iovec has quit [Quit: Connection closed for inactivity]
<Harag> :White_Flame not sure what you mean...are you saying that there would be no benefits in application design, roll out or performance to a lispos?
<dlowe> imagine being able to just pass a complex object and its referants to another program
<White_Flame> Harag: since common lisp is an image based system, the running lisp *is* already an OS.
<Harag> ok
random-nick has joined #lisp
qbeek has joined #lisp
<Harag> :White_Flame so what is needed then? I superior container for the image? Or nothing?
<dlowe> The running lisp isn't an OS. wtf. There's no interrupt handling, no drivers, no DMA, no anything that qualifies
<White_Flame> Harag: needed for what specifically?
<White_Flame> dlowe: right, the hardware tends to be abstracted away, but it still loosely counts in terms of managing your execution environment
<dlowe> What's needed is an army of programmers to write hardware drivers and interfaces and code to coordinate between them all.
<White_Flame> why not, at least in the interim, take advantage of all that which already is there in extant OSes
<dlowe> That's the status quo
<White_Flame> but the "comprehensive lisp-based user environment" still isn't built up, at least not to the level of lisp machines
<White_Flame> and that layer doesn't need to run bare metal
<White_Flame> IMO, that becomes kind of a distraction
<dlowe> Okay, yes, that's true.
<Harag> :White_Flame what are the components that need to make up the lisp-based user environment? This stuff is far out of my scope of experience so excuse the obviously dumb questions
<White_Flame> running multiple graphical applications in a full-screen environment in a single lisp image
<White_Flame> including the repl & dev stuff
amerlyq has quit [Quit: amerlyq]
<Harag> :White_Flame ...ok so you are saying that some one should start working on VR user interface instead or even better a direct brain interface... that way it might be ready by the time the non lisp world has implemented there version *wink* *wink*
nick91238 has quit [Remote host closed the connection]
<Harag> their
Bike has quit [Remote host closed the connection]
vlatkoB has quit [Remote host closed the connection]
rune has joined #lisp
<Harag> Jokes aside is "comprehensive lisp-based user environment" such a difficult thing to do or is their just not enough will power and manpower out there?
<White_Flame> basically a lack of manpower behind a single project
<White_Flame> likely because lisp is such a roll-your-own language
<White_Flame> commercial ventures unified development both of teams creating lisp machines with full lisp OSes, as well as unifying Common Lisp from all the naturally fragmented lisps before it
rune is now known as urqL
gravicappa has quit [Ping timeout: 245 seconds]
<Harag> :White_Flame ...yes I remember the days before I went full lisp... I never rolled my own
<dlowe> I mean, pretty much every big system has had money behind it
<dlowe> Even the ones that start small and scrappy didn't get big until there was money.
Lord_of_Life has quit [Ping timeout: 272 seconds]
urqL has quit [Quit: ERC (IRC client for Emacs 26.2)]
Lord_of_Life has joined #lisp
orivej has joined #lisp
EvW has joined #lisp
erqL has joined #lisp
<Harag> well I am off have a good evening
erqL has left #lisp [#lisp]
jack_rabbit has joined #lisp
<jack_rabbit> Hey, jackdaniel. I was looking at ECL, and it looks like it's actively developed. I don't see any releases since ~2016. (https://common-lisp.net/project/ecl/static/files/release/) Are there any plans to publish new releases of ECL?
ravenous_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Mandus has quit [Ping timeout: 258 seconds]
Mandus has joined #lisp
druidgreeneyes has quit [Ping timeout: 264 seconds]
druidgreeneyes has joined #lisp
trebor_home has joined #lisp
GloriaReed has joined #lisp
GloriaReed has quit [Client Quit]
vms14 has joined #lisp
GloriaReed has joined #lisp
lavaflow has quit [Ping timeout: 245 seconds]
mindCrime_ has quit [Ping timeout: 246 seconds]
random-nick has quit [Ping timeout: 258 seconds]
GloriaReed has quit [Quit: GloriaReed]
GloriaReed has joined #lisp
Josh_2 has joined #lisp
GloriaReed has quit [Client Quit]
qbeek has quit [Remote host closed the connection]
ggole has quit [Quit: Leaving]
orivej has quit [Ping timeout: 246 seconds]
xantoz has quit [Quit: WeeChat 2.5]
xantoz has joined #lisp
lavaflow has joined #lisp
<jackdaniel> jack_rabbit: there are
<jackdaniel> you may check out the milestone on our repository to see remaining two issues before we start testing
<jack_rabbit> Oh, fantastic!
<jack_rabbit> 90% complete.
<jackdaniel> but they are not small (however they are already started)
EvW has quit [Ping timeout: 250 seconds]
<jack_rabbit> "re-implement green threads" yeah, that doesn't sound small. :)
lavaflow has quit [Ping timeout: 245 seconds]
<jackdaniel> green threads are not hard given you have delimited continuations and timers (for a scheduler)
<jack_rabbit> I see.
<jack_rabbit> Are the timers and testing the difficult ones then?
<jackdaniel> delimited continuations require changes of how runtime environment is handled, the actual context switch part could be implemented with longjmp
cl-arthur has joined #lisp
<jackdaniel> timers are not difficult but also take time - I want to copy sbcl's api and functionality instead of providing simpler version
kajo has quit [Quit: From my rotting body, flowers shall grow and I am in them and that is eternity. -- E. M.]
<jackdaniel> sometims when I try to take a step out to see my plans from the broader perspective I see this: https://pics.awwmemes.com/you-know-what-this-place-needs-giant-fuckin-triangles-thats-58136426.png :) good night \o
<jack_rabbit> hahaha! Well I wish you good luck. Looks like you've been working on it for a long time and it's getting close.
<jack_rabbit> Good night.
xkapastel has quit [Quit: Connection closed for inactivity]
druidgreeneyes has quit [Ping timeout: 272 seconds]
hhdave has joined #lisp
Ven`` has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
random-nick has joined #lisp
Insanity_ has joined #lisp
LiamH has quit [Quit: Leaving.]
Kundry_Wag has quit [Remote host closed the connection]
Kundry_Wag has joined #lisp
smazga has quit [Quit: leaving]
Mandus has quit [Ping timeout: 268 seconds]
Mandus has joined #lisp
druidgreeneyes has joined #lisp
Kundry_W_ has joined #lisp
Kundry_Wag has quit [Read error: Connection reset by peer]
Mandus has quit [Ping timeout: 245 seconds]
Mandus has joined #lisp
random-nick has quit [Ping timeout: 248 seconds]
cartwright has quit [Ping timeout: 260 seconds]
josemanuel has quit [Quit: leaving]
jmercouris has joined #lisp
Nomenclatura has quit [Quit: q]
random-nick has joined #lisp
hhdave has quit [Quit: hhdave]
jmercouris has quit [Remote host closed the connection]
Bike has joined #lisp
EvW has joined #lisp
jack_rabbit has quit [Ping timeout: 246 seconds]
cosimone has quit [Ping timeout: 252 seconds]
saravia has quit [Remote host closed the connection]
saravia has joined #lisp
akoana has joined #lisp
Kundry_W_ has quit [Remote host closed the connection]
lavaflow has joined #lisp
Kundry_Wag has joined #lisp
druidgreeneyes has quit [Ping timeout: 258 seconds]
Kundry_Wag has quit [Ping timeout: 245 seconds]
cyberyl has quit [Remote host closed the connection]
Josh_2 has quit [Quit: ERC (IRC client for Emacs 26.2)]
random-nick has quit [Ping timeout: 246 seconds]
Kundry_Wag has joined #lisp
Jeanne-Kamikaze has joined #lisp
Kundry_Wag has quit [Ping timeout: 258 seconds]
karlosz has quit [Quit: karlosz]