Search found 25 matches

by Lispeth
Tue Jan 09, 2018 11:39 am
Forum: Common Lisp
Topic: Why is it usual to make everything a "registered system"?
Replies: 6
Views: 23462

Re: Why is it usual to make everything a "registered system"

Thank you, I misunderstood ASDF then!
by Lispeth
Tue Jan 09, 2018 9:58 am
Forum: Common Lisp
Topic: Why is it usual to make everything a "registered system"?
Replies: 6
Views: 23462

Re: Why is it usual to make everything a "registered system"

Well, my use case is that I want to write and deploy some kind of a web software (a discussion forum like this one here) because the existing solutions are not good enough. I don't want my potential users to spoil their ASDF directory with my bloat.
by Lispeth
Tue Jan 09, 2018 9:39 am
Forum: Common Lisp
Topic: Why is it usual to make everything a "registered system"?
Replies: 6
Views: 23462

Re: Why is it usual to make everything a "registered system"

I understood that ASDF would also add my application into its "registry" though so it can be loaded as a module. That's not desired behavior in this case. Make does not do that.

Or am I missing the point?
by Lispeth
Tue Jan 09, 2018 4:18 am
Forum: Common Lisp
Topic: Why is it usual to make everything a "registered system"?
Replies: 6
Views: 23462

Why is it usual to make everything a "registered system"?

Assuming I want to develop a stand-alone CL application, the usual recommendation is to write an ASD file for it so it can be installed as a "registered system". In my opinion, this makes no sense: Why should it be available like a module?
by Lispeth
Thu Jan 19, 2017 1:48 am
Forum: Common Lisp
Topic: Is there any decent GUI toolkit for MS Windows?
Replies: 13
Views: 36180

Re: Is there any decent GUI toolkit for MS Windows?

This could be my starting point with ECL, actually. Mind to elaborate?
by Lispeth
Mon Aug 22, 2016 10:05 am
Forum: Common Lisp
Topic: can sbcl run on a grsecurity hardened kernel?
Replies: 3
Views: 11574

Re: can sbcl run on a grsecurity hardened kernel?

pjstirling wrote:sbcl won't run with ASLR.
That makes SBCL a bad choice for server applications. Is there a way to circumvent this? Is a patch upcoming?
by Lispeth
Mon Mar 21, 2016 2:57 pm
Forum: Common Lisp
Topic: How can I process RUNE-DOM::ELEMENTs?
Replies: 12
Views: 31603

Re: How can I process RUNE-DOM::ELEMENTs?

Yes, but css-selectors does not work with a list structure.
by Lispeth
Sun Mar 20, 2016 10:08 am
Forum: Common Lisp
Topic: How can I process RUNE-DOM::ELEMENTs?
Replies: 12
Views: 31603

Re: How can I process RUNE-DOM::ELEMENTs?

Yes, that works. :)

Thank you a lot!
by Lispeth
Sat Mar 19, 2016 3:58 pm
Forum: Common Lisp
Topic: How can I process RUNE-DOM::ELEMENTs?
Replies: 12
Views: 31603

Re: How can I process RUNE-DOM::ELEMENTs?

Obviously I can't "take over" DOM elements:
cannot adopt #<RUNE-DOM::ELEMENT div {100418AD63}>, since it was created by a different document.
Thanks though. :(