jackdaniel changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language<http://cliki.net/> logs:<https://irclog.whitequark.org/lisp,http://ccl.clozure.com/irc-logs/lisp/> | SBCL 1.4.5, CMUCL 21b, ECL 16.1.3, CCL 1.11.5, ABCL 1.5.0
rozenglass has quit [Remote host closed the connection]
OMGOMG has quit [Ping timeout: 252 seconds]
rozenglass has joined #lisp
phadthai has quit [Ping timeout: 252 seconds]
anewuser has joined #lisp
phadthai has joined #lisp
eddof13 has quit [Quit: eddof13]
fikka has joined #lisp
Essadon has quit [Quit: Qutting]
<void_pointer> jasom, pjb, and Bike: found a decent way to do it that isn't too much of a hack with an :after method for initialize-instance. assert takes places, so it isn't limited to just variables. So one just uses with-slots for the slots and then uses asserts on the various slots which will do the checks and allow the user to input new values for any that fail while updating the slots to the user given values.
fikka has quit [Ping timeout: 246 seconds]
anamorphic_ has quit [Ping timeout: 268 seconds]
eddof13 has joined #lisp
eddof13 has quit [Client Quit]
fikka has joined #lisp
fikka has quit [Ping timeout: 252 seconds]
makomo has joined #lisp
fikka has joined #lisp
fikka has quit [Ping timeout: 245 seconds]
mejja has quit [Quit: mejja]
impulse has quit [Ping timeout: 252 seconds]
impulse has joined #lisp
fikka has joined #lisp
<jcowan> void_pointer: that would only work if all the asserts are done all over after the restarts, no?
<void_pointer> jcowan: depends on how coupled the asserts are. If the coupling is only mild, then it would be possible to have an assert handle two or three coupled parameters together
<void_pointer> jcowan: but it does definitely fall apart very quickly
fikka has quit [Ping timeout: 268 seconds]
<void_pointer> luckily for my use case, they are only coupled in pairs
jack_rabbit has joined #lisp
fikka has joined #lisp
fikka has quit [Ping timeout: 246 seconds]
sjl has joined #lisp
Volt_ has joined #lisp
anamorphic has joined #lisp
fikka has joined #lisp
spal has quit [Ping timeout: 276 seconds]
fikka has quit [Ping timeout: 268 seconds]
void_pointer has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
spal has joined #lisp
vutral has quit [Ping timeout: 240 seconds]
fikka has joined #lisp
vutral has joined #lisp
ebzzry has quit [Read error: Connection reset by peer]
ebzzry has joined #lisp
anamorphic has quit [Ping timeout: 272 seconds]
fikka has quit [Ping timeout: 244 seconds]
nicdev has joined #lisp
warweasle has quit [Quit: later]
dddddd has quit [Ping timeout: 252 seconds]
Ekho has quit [Ping timeout: 246 seconds]
<fiddlerwoaroof> Has anyone used asdf:program-op?
<fiddlerwoaroof> I can't quite figure out how to specify the output path
fikka has joined #lisp
Ekho has joined #lisp
ryan_vw has joined #lisp
dddddd has joined #lisp
fikka has quit [Ping timeout: 244 seconds]
Oladon has joined #lisp
angavrilov has quit [Remote host closed the connection]
fikka has joined #lisp
jochens has joined #lisp
makomo has quit [Ping timeout: 252 seconds]
fikka has quit [Ping timeout: 272 seconds]
jochens has quit [Ping timeout: 246 seconds]
robotoad has quit [Quit: robotoad]
wanz has joined #lisp
<PuercoPop> fiddlerwoaroof: :build-pathname
<LdBeth> Good evening everyone
fikka has joined #lisp
dale has quit [Quit: dale]
robotoad has joined #lisp
fikka has quit [Ping timeout: 240 seconds]
ryan_vw has quit [Ping timeout: 252 seconds]
wanz has quit [Quit: wanz]
wanz has joined #lisp
<fiddlerwoaroof> PuercoPop: interesting, I came up with a more complicated solution involving output-files
notzmv has joined #lisp
asarch has joined #lisp
<asarch> When you compile SBCL, what is the "native_bootstrap" option for?
<asarch> I guess using CLisp to compile SBCL is actually not a good idea, right?
<fiddlerwoaroof> Probably not for "normal" builds
<fiddlerwoaroof> If you're on a platform that clisp supports but sbcl doesn't, you don't have a choice, really
<fiddlerwoaroof> (s/clisp supports/clisp has a binary available/)
<asarch> Thank you
<asarch> Thank you very much fiddlerwoaroof :-)
<PuercoPop> fiddlerwoaroof: build-pathname worked for me, but I've only used it twice. I don't remember where I cargo culted it from though
arescorpio has joined #lisp
<fiddlerwoaroof> PuercoPop: cool, I'm just trying to figure out how I can get travis to build a binary with no dependencies on the system so I can upload it to github
<fiddlerwoaroof> I've figured out how to get the static-program-op thing that CFFI provides working, but I'm still working on not depending on osicat's shared library
didi has left #lisp ["O bella ciao bella ciao bella ciao, ciao, ciao."]
redrapscallion has joined #lisp
pierpa has quit [Quit: Page closed]
<redrapscallion> If I want to turn a list like (( (1 2 3) (4 5 6) (7 8 9) )) into (( (7 1 2 3) (7 4 5 6) (7 7 8 9) )), so just adding a 7 in front of each of those nested lists, is there any easy way to do this?
<redrapscallion> it doesn't seem like I can just easily cons them together
<no-defun-allowed> (loop for sublist in list collect (cons 7 sublist))?
Lycurgus has quit [Quit: Exeunt]
ryan_vw has joined #lisp
jarindyk has quit [Quit: Lost terminal]
Roy_Fokker has quit [Read error: Connection reset by peer]
<fiddlerwoaroof> Does anyone have any tips about making redistributable images that depend on shared libraries?
cylb has joined #lisp
jack_rabbit has quit [Ping timeout: 250 seconds]
cylb has quit [Ping timeout: 245 seconds]
ubii__ has joined #lisp
ubii_ has quit [Ping timeout: 250 seconds]
PuercoPop has left #lisp ["Killed buffer"]
moei has quit [Ping timeout: 272 seconds]
anewuser has quit [Quit: anewuser]
wanz has quit [Quit: wanz]
arescorpio has quit [Quit: Leaving.]
capadoodle has joined #lisp
nowhere_man has quit [Ping timeout: 252 seconds]
nowhere_man has joined #lisp
jack_rabbit has joined #lisp
wanz has joined #lisp
_whitelogger has joined #lisp
redrapscallion has quit [Quit: Page closed]
deng_cn has quit [Remote host closed the connection]
deng_cn has joined #lisp
Kundry_Wag has joined #lisp
MichaelRaskin has quit [Quit: MichaelRaskin]
Kundry_Wag has quit [Ping timeout: 268 seconds]
ubii__ is now known as ubii
wanz has quit [Quit: wanz]
wanz has joined #lisp
capadoodle has quit [Ping timeout: 256 seconds]
xkapastel has quit [Quit: Connection closed for inactivity]
ubii has quit [Quit: Leaving]
yes has joined #lisp
jack_rabbit has quit [Quit: Leaving]
asarch has quit [Quit: Leaving]
emaczen has joined #lisp
nly has quit [Ping timeout: 268 seconds]
jack_rabbit has joined #lisp
Bike has quit [Quit: Lost terminal]
meepdeew has joined #lisp
ggole has joined #lisp
xkapastel has joined #lisp
jochens has joined #lisp
drdo has quit [Remote host closed the connection]
drdo has joined #lisp
jochens has quit [Ping timeout: 272 seconds]
anniepoo_ has joined #lisp
pillton has quit [Ping timeout: 256 seconds]
capadoodle has joined #lisp
dddddd has quit [Remote host closed the connection]
ringer1 has joined #lisp
Kundry_Wag has joined #lisp
Kundry_Wag has quit [Ping timeout: 272 seconds]
jasmith has joined #lisp
Lycurgus has joined #lisp
_whitelogger has quit [Remote host closed the connection]
_whitelogger has joined #lisp
meepdeew has joined #lisp
meepdeew has quit [Ping timeout: 268 seconds]
beach has quit [Disconnected by services]
beach has joined #lisp
ym has quit [Remote host closed the connection]
makomo has joined #lisp
rozenglass has quit [Remote host closed the connection]
igemnace has quit [Ping timeout: 260 seconds]
shrdlu68 has joined #lisp
Oladon has quit [Quit: Leaving.]
Kundry_Wag has joined #lisp
makomo has quit [Ping timeout: 240 seconds]
<flip214> fiddlerwoaroof: use a shell script for starting, with LD_LIBRARY_PATH
Kundry_Wag has quit [Ping timeout: 260 seconds]
robotoad has quit [Quit: robotoad]
rozenglass has joined #lisp
astalla has joined #lisp
angavrilov has joined #lisp
makomo has joined #lisp
bpanthi1 has joined #lisp
vaporatorius has joined #lisp
vaporatorius has quit [Read error: Connection reset by peer]
<no-defun-allowed> are there any BNF parser generators for CL?
vaporatorius has joined #lisp
<beach> Do you mean a thing where you give it a grammar and it creates the parser for you?
<no-defun-allowed> yes, i'm open to any grammar syntax actually
<beach> I think there are several of those.
<beach> scymtym maintains esrap as I recall.
<no-defun-allowed> cl-yacc seems the nicest so far, but i still have to write the lexer myself.
<no-defun-allowed> i'd like to write an editor which basically runs on ASTs instead of text, but i'd like to handle languages other than lisp
<no-defun-allowed> the next simplest syntax i can think of which is somewhat irregular would be smalltalk, so i'll have a go writing syntax for that
``Erik has quit [Remote host closed the connection]
bpanthi1 has quit [Quit: bpanthi1]
orivej has quit [Ping timeout: 245 seconds]
nirved has joined #lisp
<pjb> no-defun-allowed: why your first step wasn't to ask cliki? https://cliki.net/site/search?query=parser+generator
<pjb> (6 pages of results!)
<no-defun-allowed> it's a lot though
<no-defun-allowed> also beach is on the second page so i'm not sure if the other four pages are any good
<pjb> Of course you must refine, asking for a specific kind of parser generatlr, like, LR, LALR, RD, Earley, etc.
<pjb> no-defun-allowed: Zebu is nice because it uses itself to parse the grammar. So if you want strict BNF grammar, you can define the parser to parse it, and then use it to write the grammars of the languages you want to parse.
<no-defun-allowed> O.o
<pjb> But there are more modern parser generators that are easier to use.
<pjb> Anyways, the answer to your question is a resounding YES. ;-)
<no-defun-allowed> haha
moei has joined #lisp
Kundry_Wag has joined #lisp
shrdlu68 has quit [Ping timeout: 260 seconds]
random-nick has joined #lisp
Kundry_Wag has quit [Ping timeout: 244 seconds]
<fiddlerwoaroof> flip214: I'm not sure if that works, because paths get hardcoded
<pjb> fiddlerwoaroof: hence the use of logical-pathname and run-time translations.
<fiddlerwoaroof> If I controlled the library in question, this wouldn't be a problem
<fiddlerwoaroof> Anyways, I've figured out how to use static-program-op to remove the dependency
<fiddlerwoaroof> Now on to figuring out how to combine that with :if-feature :)
beach has quit [Disconnected by services]
beach has joined #lisp
arbv has quit [Ping timeout: 272 seconds]
<pjb> Post bug reports to the authors' of the library, because they didn't use logical pathnames and give a chance to the user you are.
<fiddlerwoaroof> nah, I'll just fix their ASDF system definition
benjamin-l has quit [Quit: ZNC 1.7.1 - https://znc.in]
benjamin-l has joined #lisp
xkapastel has quit [Quit: Connection closed for inactivity]
<flip214> fiddlerwoaroof: in one of my projects, just before writing the core I do (cffi:close-foreign-library :libosicat)
<flip214> and upon starting up again (setf cffi:*foreign-library-directories*
<flip214> and that seems to work as expected.
<jackdaniel> hint: if you do the same trick with cl+ssl you also need to call cl+ssl:reload after loading all ffi libraries anew
<fiddlerwoaroof> Yeah, I figured that out about cl+ssl.
<fiddlerwoaroof> If I build sbcl with the linkable runtime, etc, I can statically link osicat into the dumped image and not depend on the shared object at all
<luis> fiddlerwoaroof: static-program-op is undocumented isn't it? If you'd like to submit some documentation for it that'd be great, even if it were just a draft
<fiddlerwoaroof> It's in cffi
<jackdaniel> and luis maintains cffi
<jackdaniel> so he is asking for documentation for cffi :)
<fiddlerwoaroof> Ah, sorry
<fiddlerwoaroof> There's a couple bugs I'm trying to figure out
<luis> I was trying to delegate my job stealthily, but my cover"s been blown!
<fiddlerwoaroof> Or, more precisely, missing features
<fiddlerwoaroof> It forks a second sbcl, but passing *features* from the parent to the child doesn't happen, which breaks ASDF's conditional compilation features
<fiddlerwoaroof> And then, on OSX, I think you basically have to use libtool to build .a files and not ar
<fiddlerwoaroof> I have a couple patches that fix these problems for my current use case
<luis> Sounds good. I'm not terribly familiar with static-program-op, it was submitted by Fare. The more context you can provide in a future pull request the better.
meepdeew has joined #lisp
<jackdaniel> oh, sorry for blowing up the cover! :-)
<luis> fiddlerwoaroof: so the *feature* rebinding happens after SBCL is forked?
<jackdaniel> is it forking or starting a fresh sbcl?
<fiddlerwoaroof> yeah, forking is the wrong word
<beach> Hmm. ENSURE-GENERIC-FUNCTION takes a METHOD-COMBINATION metaobject as one of its keyword arguments. So DEFGENERIC must convert the :METHOD-COMBINATION argument to a METHOD-COMBINATION metaobject before calling ENSURE-GENERIC-FUNCTION. But this can not be done by calling FIND-METHOD-COMBINATION, because FIND-METHOD-COMBINATION takes a generic function as its first argument, and we don't have one yet.
<fiddlerwoaroof> luis, jackdaniel: It saves a runtime image with stuff statically linked in and then uses that to rebuild the system
meepdeew has quit [Ping timeout: 252 seconds]
<fiddlerwoaroof> But, both times it dumps an image, it starts a fresh sbcl
<fiddlerwoaroof> This also seems to have the side-effect of losing the output file defined in the system definition of the system being dumped. and putting the binary in ~/.cache
<luis> fiddlerwoaroof: it seems to propagate asdf:*central-registry*, so maybe it needs to propagate more stuff. Seems brittle, though. (I'm reading the code from my phone, which is not ideal.)
<fiddlerwoaroof> Yeah
<Lycurgus> is it a phablet or a regular phone?
<Lycurgus> and it is forked as a process by the OS but that is before anything happens
* Lycurgus is suddenly curious of any package does do a full fork as opposed to threading
<Lycurgus> *if any
wanz has quit [Quit: wanz]
<jackdaniel> from what you say it seems like a not fully baked solution
<Lycurgus> see that a host of them would in an idiosyncratic way, e.g. gbbopen's module system
<jackdaniel> marking it as "experimental" in potential manual (or even issuing a warning) might be a good idea
wanz has joined #lisp
<adlai> the best kind of software is experiential
<Lycurgus> is that gonna be a thing, people talking across each other like that (experimental/experiential) ?
astalla has quit [Ping timeout: 268 seconds]
<jackdaniel> I don't understand both of you, sorry
* Lycurgus is trynna find if NetCLOS is still available someplace
benjamin-l has quit [Ping timeout: 246 seconds]
<Lycurgus> yes, from the author's site
mkolenda has quit [Remote host closed the connection]
mkolenda has joined #lisp
astalla has joined #lisp
kozy has quit [Remote host closed the connection]
<Lycurgus> it's setup for Allegro 5
kozy has joined #lisp
kozy has quit [Remote host closed the connection]
kozy has joined #lisp
<adlai> Lycurgus: sometimes a joke requires recalibrating the humors, or at the very least, careful rereading.
nanoz has joined #lisp
<Lycurgus> adlai, recalibrate all the humors! populists talking to populists and elites talking to elites was what I had in mind.
Kundry_Wag has joined #lisp
<pjb> Is Kardashian populist or elite?
<pjb> I think I have something here.
<pjb> Let's call it the Kardashian filter. It should become as famous as the Okhram razor…
<Xof> beach: you can use the class-prototype of the generic function class in ensure-generic-function-using-class
<Lycurgus> the Kardashian is the populist Kalman
astalla has quit [Ping timeout: 244 seconds]
Kundry_Wag has quit [Ping timeout: 252 seconds]
<jackdaniel> please move the offtopic to #lispcafe
<beach> Xof: The way I read it is that it's too late then. ENSURE-GENERIC-FUNCTION must be passed a METHOD-COMBINATION metaobject.
<beach> But I guess I could look it up in the DEFGENERIC macro before calling ENSURE-GENERIC-FUNCTION.
<beach> Xof: It doesn't matter. I have a differnt SICL-specific function that does not take the generic function argument. I'll just use that.
<beach> different
Essadon has joined #lisp
<beach> Xof: Do you read it differently?
beach has quit [Disconnected by services]
beach has joined #lisp
Bike has joined #lisp
beach has quit [Disconnected by services]
beach has joined #lisp
deng_cn has quit [Remote host closed the connection]
deng_cn has joined #lisp
rippa has quit [Ping timeout: 244 seconds]
astalla has joined #lisp
nly has joined #lisp
Lycurgus has quit [Quit: Exeunt]
dddddd has joined #lisp
jxy_ has quit [Ping timeout: 272 seconds]
jxy has joined #lisp
Achylles has joined #lisp
scymtym has quit [Ping timeout: 240 seconds]
orivej has joined #lisp
makomo has quit [Ping timeout: 245 seconds]
wanz has quit [Quit: wanz]
wanz has joined #lisp
razzy has quit [Ping timeout: 268 seconds]
terpri_ has quit [Quit: Leaving]
jcowan has quit [Quit: Connection closed for inactivity]
ebzzry has quit [Quit: WeeChat 2.1]
Achylles has quit [Remote host closed the connection]
vaporatorius has quit [Read error: Connection reset by peer]
flazh has quit [Ping timeout: 252 seconds]
orivej has quit [Ping timeout: 252 seconds]
rippa has joined #lisp
hhdave has joined #lisp
rippa has quit [Client Quit]
flazh has joined #lisp
Kundry_Wag has joined #lisp
pjb has quit [Remote host closed the connection]
Kundry_Wag has quit [Ping timeout: 246 seconds]
igemnace has joined #lisp
scymtym has joined #lisp
Roy_Fokker has joined #lisp
razzy has joined #lisp
<jebes> is there a next browser irc? Trying to debug the buffer switching problem and i'm completely clueless
nanoz has quit [Ping timeout: 272 seconds]
flazh has quit [Ping timeout: 252 seconds]
xkapastel has joined #lisp
dueyfinster has joined #lisp
nly has quit [Read error: Connection reset by peer]
<Lucretia> in ch6 of land of lisp, there are some functions, (say-hello) and (add-five), neither in sbcl, output the first string, it sits there waiting for input and on entering the input, it displays the message. any ideas?
chip2n has joined #lisp
flazh has joined #lisp
<Lucretia> https://bpaste.net/show/9d8cdfe8b3b8 line 2 is not displayed until after line 3 is executed
<beach> clhs finish-output
<beach> Lucretia: ↑
hhdave has quit [Ping timeout: 268 seconds]
<beach> Lucretia: The output is buffered. You may have to call FINISH-OUTPUT to empty the buffer.
<Lucretia> beach: thanks
<beach> Anytime.
chip2n has left #lisp [#lisp]
* Lucretia is quite surprised by the lack of extensions for vscode for common lisp
chip2n has joined #lisp
nly has joined #lisp
<jebes> * lucretia most everyone uses emacs.
<jebes> slime is top tier
<Lucretia> i stopped using emacs, was using Ada, and it wasn't great tbh
<jebes> what were your gripes with it?
<jebes> it takes a lot of configuring, the default expeirence is lack luster imo
<Lucretia> slooooooow
<jebes> w-what?
<Lucretia> with a lot of text, the ada parser was slow
makomo has joined #lisp
<Lucretia> moving the cursor around was painful
<jebes> I've never done ada, so i've never expeirenced this.
<beach> It is fine with Common Lisp.
<jebes> emacs feels snappier (#noanimationgang) than vs code to me
<beach> Lucretia: So you can safely go back to Emacs for Common Lisp code.
<jebes> or write your own vs code plugins, swank is a common lisp server.
<jebes> but emacs has slowly been getting lsp support.
deng_cn has quit [Remote host closed the connection]
deng_cn has joined #lisp
<Lucretia> and swank is part of slime?
<beach> Lucretia: It's the part that runs in the Common Lisp process.
<jebes> swank is the common lisp server that allows remoting into a repl
<jebes> what beach said
<Lucretia> does it do lsp as well?
<beach> "it"?
<Lucretia> swank
* Lucretia doesn't know much about this lisp stuff
<jebes> swank would need support for lsp, afaik
Kundry_Wag has joined #lisp
<jebes> Anyone here heard of Cycorp?
Kundry_Wag has quit [Ping timeout: 245 seconds]
dueyfinster has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
nokdoot has joined #lisp
rjid has joined #lisp
nly has quit [Read error: Connection reset by peer]
orivej has joined #lisp
pjb has joined #lisp
Zaab1t has joined #lisp
hel-io has joined #lisp
<fiddlerwoaroof> Lucretia: i used to use slimv for vim, which worked pretty well
<fiddlerwoaroof> I've also tried atom-slime and it works, but I've never heard of anyone that uses it.
ryan_vw has joined #lisp
jack_rabbit has quit [Ping timeout: 250 seconds]
hel-io_ has joined #lisp
hel-io has quit [Ping timeout: 252 seconds]
wanz has quit [Quit: wanz]
wanz has joined #lisp
nokdoot has quit [Quit: Leaving]
djeis[m] has joined #lisp
Kundry_Wag has joined #lisp
SaganMan has joined #lisp
Kundry_Wag has quit [Ping timeout: 240 seconds]
beach has quit [Disconnected by services]
rjid has quit [Ping timeout: 256 seconds]
beach has joined #lisp
hel-io_ has quit [Remote host closed the connection]
Lycurgus has joined #lisp
cylb has joined #lisp
astalla has quit [Ping timeout: 240 seconds]
<Lucretia> fiddlerwoaroof: ok
jmercouris has joined #lisp
hel-io has joined #lisp
Volt_ has quit [Read error: Connection reset by peer]
deng_cn has quit [Remote host closed the connection]
wanz has quit [Remote host closed the connection]
Volt_ has joined #lisp
deng_cn has joined #lisp
Volt_ has quit [Read error: Connection reset by peer]
smokeink has quit [Remote host closed the connection]
hel-io_ has joined #lisp
hel-io has quit [Ping timeout: 268 seconds]
astalla has joined #lisp
elderK has joined #lisp
igemnace has quit [Read error: Connection reset by peer]
cylb has quit [Ping timeout: 244 seconds]
meepdeew has joined #lisp
hel-io has joined #lisp
fsmunoz has quit [Ping timeout: 246 seconds]
hel-io_ has quit [Ping timeout: 252 seconds]
Inline has quit [Read error: Connection reset by peer]
Inline has joined #lisp
astalla has quit [Ping timeout: 244 seconds]
Inline has quit [Quit: Leaving]
meepdeew has quit [Remote host closed the connection]
astalla has joined #lisp
jmercouris has quit [Ping timeout: 268 seconds]
slyrus1 has quit [Ping timeout: 268 seconds]
astalla has quit [Ping timeout: 252 seconds]
jmercouris has joined #lisp
Inline has joined #lisp
Inline has quit [Read error: Connection reset by peer]
Inline has joined #lisp
Volt_ has joined #lisp
SaganMan has quit [Quit: WeeChat 1.6]
Inline has quit [Read error: Connection reset by peer]
nanoz has joined #lisp
dueyfinster has joined #lisp
hel-io has quit [Remote host closed the connection]
nly has joined #lisp
hel-io has joined #lisp
coltkirk has joined #lisp
Inline has joined #lisp
dueyfinster has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
robotoad has joined #lisp
dueyfinster has joined #lisp
varjag has joined #lisp
robdog has joined #lisp
rozenglass has quit [Remote host closed the connection]
<jmercouris> hey everyone, indiegogo campaign finished, we raised 1850$ for working on Next, thank you to everyone that contributed
<jmercouris> I hope to deliver something that will work nicely on macOS and Linux, I'll post any new major releases in this channel, but so far, things are going well
nly has quit [Quit: Quit]
nanoz has quit [Ping timeout: 240 seconds]
hel-io has quit [Remote host closed the connection]
hel-io has joined #lisp
hel-io has quit [Read error: Connection reset by peer]
makomo has quit [Ping timeout: 252 seconds]
<jmercouris> hey, what's the easiest way to launch a lambda in a new thread?
<Bike> bt:make-thread
<jmercouris> Bike: right, bordeaux threads, thanks
xristos has joined #lisp
dale has joined #lisp
ggole has quit [Quit: ggole]
makomo has joined #lisp
SaganMan has joined #lisp
lavaflow has quit [Ping timeout: 252 seconds]
* fiddlerwoaroof finds the new asdf warnings about system naming annoying
fsmunoz has joined #lisp
angavrilov has quit [Remote host closed the connection]
<jmercouris> deprecation warnings in general are annoying, as are deprecations and any system behavior changes
Lycurgus has quit [Quit: Exeunt]
dueyfinster has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
dra has joined #lisp
warweasle has joined #lisp
jinkies has joined #lisp
<fiddlerwoaroof> Yeah, but adding arbitrary rules to a central part of a programming ecosystem should only be done for really serious reasons
<fiddlerwoaroof> Plus, as far as I can tell these changes were pushed through without community buy-in
<|3b|> as far as i can tell, nobody wants to help maintain asdf, so they get what they get :/
sshirokov has quit [Ping timeout: 250 seconds]
sshirokov has joined #lisp
dra has left #lisp ["Using Circe, the loveliest of all IRC clients"]
petester has joined #lisp
dra has joined #lisp
yes has left #lisp [#lisp]
scymtym has quit [Ping timeout: 260 seconds]
kajo has quit [Ping timeout: 252 seconds]
nly has joined #lisp
kajo has joined #lisp
<jackdaniel> last time I've tried to contribute to asdf I had a very draining discussion about merge request, but there is a chance that the problem was an incompatibility of my personality with the peer reviewer (so I gave up)
ikki has joined #lisp
<nly> Jmercouris i tried to compile next today, apprantly qt won't compile in 8gb ram
ACE_Recliner_ has joined #lisp
ACE_Recliner_ has quit [Remote host closed the connection]
emaczen has quit [Ping timeout: 250 seconds]
<fiddlerwoaroof> You can install a binary distribution of qt
orivej has quit [Ping timeout: 252 seconds]
emaczen has joined #lisp
dra has quit [Ping timeout: 244 seconds]
<fiddlerwoaroof> Eventually I'll get around to writing lisp bindings to Linux's cgroups stuff
<fiddlerwoaroof> So I can have images that self-containerize
frgo_ has quit []
frgo has joined #lisp
makomo has quit [Ping timeout: 268 seconds]
hel-io has joined #lisp
hel-io_ has joined #lisp
anewuser has joined #lisp
hel-io has quit [Ping timeout: 245 seconds]
hel-io has joined #lisp
hel-io_ has quit [Ping timeout: 252 seconds]
<jmercouris> nly: QT is not necessary anymore, you must have a very old revision
<jmercouris> fiddlerwoaroof: are you suggesting that fare was a bit of a loose cannon :P?
<nly> Ah
<jmercouris> fiddlerwoaroof: how is the obj-c bridge going via CFFI? did you get the SBCL app to actually work?
<nly> Thanks, I thought i was following the proper steps in readme on github
<jmercouris> nly: are you on macOS or Linux?
<nly> Linux
<jmercouris> Linux actually compilese these days, only dependency is gtk and webkitgtk+
<jmercouris> s/compilese/compiles - too much time in a foreign country, my language skills are really messed up
<nly> Haha i got it
<jmercouris> though if you wait a little bit, like maybe a month or so, there should be a new Linux release
<nly> Thanks, next looks really promising :-)
mercourisj has joined #lisp
<mercourisj> with almost no dependencies, possibly distributed via your package manager or flatpak, undecided
jmercouris has quit [Ping timeout: 268 seconds]
hel-io_ has joined #lisp
hel-io has quit [Ping timeout: 252 seconds]
lavaflow has joined #lisp
hel-io has joined #lisp
hel-io_ has quit [Ping timeout: 252 seconds]
<fiddlerwoaroof> jmercouris: it works pretty well for me, but the code isn't in a great state for someone else to understand what's going on :)
<fiddlerwoaroof> ccl is more reliable than sbcl as far as producing a working app bundle goes, though
<mercourisj> fiddlerwoaroof: I applaud you, I didn't think you'd even get that far
<mercourisj> I had delved into the CCL code, and it looked like magic to me
<fiddlerwoaroof> interop isn't the hard part
<mercourisj> is it all of the assumptions about the app state?
<fiddlerwoaroof> It's things like gatekeeper that make your life interesting
<mercourisj> all of the signals you have to handle
<mercourisj> right
<mercourisj> that's where I figured a lot of the CCL code spent time, making a compatibility layer with Cocoa itself, which you'd have to reinvent and manually invoke
<fiddlerwoaroof> Nah, as long as you disable sbcl's attempts to catch floating point exceptions, the two runtimes get along pretty nicely
<mercourisj> interesting, so it is a separate cocoa process you are invoking and interoping with?
<mercourisj> I had misunderstood your approach then
<fiddlerwoaroof> No, two runtimes in the same process
<mercourisj> ah okay, so I did understand
<mercourisj> :D
<fiddlerwoaroof> The part I haven't had time to figure out is things like turning objective-c errors into lisp exceptions
<fiddlerwoaroof> right now, they just crash the process
<fiddlerwoaroof> which isn't very lisp
<mercourisj> but it is very exciting
<mercourisj> and leaves lots of space for all sorts of features to make their way into production code
<fiddlerwoaroof> ccl has an advantage here in that it was actually developed by Apple/Next for a while, as I understand it, so they've already done a lot of the hard work implementing the bridge
warweasle has quit [Quit: rcirc on GNU Emacs 24.4.1]
khisanth_ has joined #lisp
nly has quit [Quit: Quit]
<mercourisj> Well, I'm not so sure about that
<mercourisj> I'm pretty sure MacLisp was not developed by Apple
<fiddlerwoaroof> It's not maclisp
<mercourisj> I remember talking to RME about the lineage and it was a little bit different than what I thought
<mercourisj> Let me try to find the issue
<fiddlerwoaroof> Hmm, I might be confusing it with Harlequin's lispworks
<fiddlerwoaroof> this is what I'm referencing: http://thisoldlisp.com/talks/els-2018/
<fiddlerwoaroof> "Well anyway, after that some stuff happened, and Apple ended up acquiring Coral Software because Apple at the time was using Lisp and Smalltalk and other dynamic languages to do their research. So that happened"
<fiddlerwoaroof> Ah, next used Allegro
<fiddlerwoaroof> ... and switched to OpenMCL that became CCL
<mercourisj> Yes, Macintosch Common Lisp, I was correct
<mercourisj> s/Macintosch/Macintosh
hel-io_ has joined #lisp
<mercourisj> then to Coral Common Lisp
<mercourisj> or am I missing something?
<fiddlerwoaroof> It went, as I understand Coral Comon Lisp -> MCL/OpenMCL -> Clozure Common Lisp
<mercourisj> Ah, and you are saying Apple owned Coral
<mercourisj> interesting, didn't know that
<fiddlerwoaroof> Yeah
Guest13389 has quit [Ping timeout: 268 seconds]
<fiddlerwoaroof> Anyways, my bridge is really useful for the sorts of things one might use Applescript for already
<fiddlerwoaroof> E.g., here's a little demo of getting the current itunes track info: https://github.com/fiddlerwoaroof/objc-lisp-bridge/blob/master/scripting-bridge.lisp
hel-io has quit [Ping timeout: 252 seconds]
<fiddlerwoaroof> And here's a little bit of code I wrote for converting Safari's reading list into an org-mode file: https://github.com/fiddlerwoaroof/objc-lisp-bridge/blob/master/reading-list-reader.lisp
<fiddlerwoaroof> (I actually run that one in a cronjob so I can refile my reading list stuff into my bookmarks.org file)
<fiddlerwoaroof> But, my current project (slowly progressing project) is to figure out Mcclim so I can either ressurect the beagle backend using my system or write a new backend
<mercourisj> fiddlerwoaroof: I wish you the best of luck
<mercourisj> fiddlerwoaroof: what's that license on the code you posted? Can I include it in Next?
thinkpad has quit [Ping timeout: 268 seconds]
thinkpad has joined #lisp
groovy2shoes has quit [Excess Flood]
groovy2shoes has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
hel-io_ has quit [Remote host closed the connection]
jinkies has quit [Ping timeout: 240 seconds]
sbryant has quit [Ping timeout: 250 seconds]
vlatkoB has quit [Remote host closed the connection]
sbryant has joined #lisp
<fiddlerwoaroof> The .asd specifies MIT
<fiddlerwoaroof> Which is what I usually use for libraries
<fiddlerwoaroof> And, I don't notice any direct dependencies that are incompatible with such a license
<fiddlerwoaroof> mercourisj: ^
<fiddlerwoaroof> If you improve things, though, I'd appreciate PRs and/or design proposals
scymtym has joined #lisp
petester has quit [Quit: leaving]
v0|d has quit [Read error: Connection reset by peer]
ku has joined #lisp
potatonomicon has quit [Ping timeout: 272 seconds]
<emaczen> How do I update a specific system with quicklisp?
<sjl> You can clone it into local-projects and update to whatever version you want, and that will take precedence over whatever's in the quicklisp dist
<emaczen> what is the most up to date version?
<mercourisj> fiddlerwoaroof: of course
<sjl> ... of what?
<emaczen> of alexandria?
<mercourisj> is there a way to jump to defun in a loaded system by name?
<mercourisj> imenu only works for the current source file
<mercourisj> ivy-imenu-anywhere doesn't seem to work so well with the system, only with open files
<mercourisj> I guess I could open all the files in the system, but there must be an easier way :D
notzmv has quit [Quit: WeeChat 2.3]
kajo has quit [Quit: From my rotting body, flowers shall grow and I am in them and that is eternity. -- E. M.]
kajo has joined #lisp
chip2n has quit [Ping timeout: 252 seconds]
void_pointer has joined #lisp
Oladon has joined #lisp
cylb has joined #lisp
cylb has quit [Ping timeout: 268 seconds]
khisanth_ has quit [Ping timeout: 246 seconds]
robdog has joined #lisp
<djeis[m]> Does M-. not work?
emaczen has quit [Ping timeout: 264 seconds]
emaczen has joined #lisp
mercourisj has quit [Remote host closed the connection]
khisanth_ has joined #lisp
Zaab1t has quit [Quit: bye bye friends]
void_pointer has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
lemoinem is now known as Guest36788
Guest36788 has quit [Killed (tolkien.freenode.net (Nickname regained by services))]
lemoinem has joined #lisp
jcowan has joined #lisp
razzy has quit [Ping timeout: 252 seconds]
paul0 has joined #lisp
notzmv has joined #lisp
meepdeew has joined #lisp
rozenglass has joined #lisp
<aeth> When I want to find a defun by name I use M-. in the SLIME REPL as if it was M-. in a source file
khisanth_ has quit [Ping timeout: 245 seconds]
random-nick has quit [Read error: Connection reset by peer]
varjag has quit [Ping timeout: 250 seconds]
orivej has joined #lisp
dale has quit [Quit: dale]
<fouric> i keep hearing people talking about how CL's compiler macros are missing something
<fouric> perhaps some information available to them that they could technically have
<fouric> would someone mind clarifying what this is?
<fouric> ("technically" being that it's not a Hard Problem to write a compiler that supports the thing, but the CL spec wasn't written to allow it)