kamafam has quit [Read error: Connection reset by peer]
bobcave has quit [Quit: Leaving]
thuna`` has joined #commonlisp
Cymew has quit [Quit: Konversation terminated!]
NotThatRPG has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
yitzi has quit [Remote host closed the connection]
_cymew_ has quit [Ping timeout: 265 seconds]
disruptek has joined #commonlisp
sailorCat has quit [Remote host closed the connection]
sailorCa- has joined #commonlisp
rogersm has joined #commonlisp
cage has joined #commonlisp
cage has quit [Excess Flood]
cage has joined #commonlisp
spdegabrielle has quit [Quit: Connection closed for inactivity]
gioyik has quit [Quit: WeeChat 4.4.1]
wacki has joined #commonlisp
yitzi has joined #commonlisp
chrcav has quit [Quit: Lost terminal]
Akbar-Birbal has left #commonlisp [#commonlisp]
josrr has quit [Remote host closed the connection]
lucasta has quit [Remote host closed the connection]
chrcav has joined #commonlisp
jonatack has quit [Ping timeout: 265 seconds]
jonatack has joined #commonlisp
mgl__ has joined #commonlisp
mgl__ has quit [Read error: Connection reset by peer]
mgl__ has joined #commonlisp
jmercouris has quit [Ping timeout: 252 seconds]
jmercouris has joined #commonlisp
X-Scale has quit [Quit: Client closed]
amb007 has quit [Ping timeout: 246 seconds]
amb007 has joined #commonlisp
thuna` has joined #commonlisp
thuna`` has quit [Ping timeout: 244 seconds]
NotThatRPG has joined #commonlisp
NotThatRPG has quit [Client Quit]
spdegabrielle has joined #commonlisp
NotThatRPG has joined #commonlisp
ym has joined #commonlisp
dnhester26 has joined #commonlisp
<dnhester26>
Hi, can someone help me? I have a project that i've been developing on slime/sly for a while. Now I'm trying to run it as a script from the terminal and I get an error debugger invoked on a QUICKLISP-CLIENT:SYSTEM-NOT-FOUND in thread
<dnhester26>
I have added a parent directory to ql:*local-project-directories*, not sure why it wouldn't work now
<dnhester26>
What should I do?
<dlowe>
dnhester26: what value did you push?
<dlowe>
did it end in a /
<dnhester26>
(truename "/home/myproject")
<dnhester26>
no, no ending /
<dnhester26>
dlowe thanks for replying. What do you think?
random-nickname is now known as random-nick
<dnhester26>
ohhh
<dnhester26>
sorry, just realoized what the problem was!
<dnhester26>
the subdirectories are themselves git repos, and they were not all cloned
<dnhester26>
had to do --recurse-submodules in the git clone
<dnhester26>
sorry to bother, somehow was dealing with this for a few hours, and after asking the question the issue just occurred to me
amb007 has quit [Ping timeout: 246 seconds]
mgl__ has quit [Read error: Connection reset by peer]
amb007 has joined #commonlisp
mgl__ has joined #commonlisp
waleee has joined #commonlisp
<dlowe>
it's a very common thing to happen. Have you heard of rubber-ducking?
<NotThatRPG>
Wonder if anyone could help me with MUFFLE-CONDITIONS in SBCL. I'm trying to muffle style warnings, but they are getting through anyway. See https://pastebin.com/pTSewW9D
<ixelp>
Problem with SB-EXT:MUFFLE-CONDITIONS - Pastebin.com
Pixel_Outlaw has joined #commonlisp
<NotThatRPG>
Possibly I'm not understanding something about compile time and load time...
<NotThatRPG>
Actually, seems like wrapping in (let (#+sbcl (sb-ext:*muffled-warnings* 'style-warning)) ...) works. Not at all sure why.
<mrcom>
NotThatRPG: Missing a colon in front of SBCL
<NotThatRPG>
mrcom: #+sbcl is fine
<mrcom>
(Right?)
<mrcom>
Wrong :)
<NotThatRPG>
Not sure why the locally form does not work and the let-binding does work
<dnhester26>
dlowe: haha I hadn't just read the wikipedia page
Bicyclidine has joined #commonlisp
zxcvz has quit [Quit: zxcvz]
<Bicyclidine>
defconstant may be signaling a warning at runtime
<bike>
defconstant may be signaling a style warning at runtime
<Bicyclidine>
wow awesome
<Bicyclidine>
anyway, and the declaration only does anything within the compiler
<Bicyclidine>
yeah, if i put `(defconstant *test* 4)` in a file and compile it, with the declaration i get no warning _during compile-file_, but then it warns when i load it
<dnhester26>
ok, just loaded a project on an ubuntu box and I'm getting this random error: COMPILE-FILE-ERROR while compiling #<CL-SOURCE-FILE "dissect" "backend" "sbcl">
<dnhester26>
It seems that this is a dependency
<dnhester26>
any ideas on what to do?
<dnhester26>
the project runs fine in my mac on my laptop
<ixelp>
Compilation error under ros/sbcl-bin/2.4.3 and up; DEBUG-VAR-INFO · Issue #23 · Shinmera/dissect · GitHub
<Shinmera>
maybe I need to start adding a notice to my projects to use the shirakumo dist
* Shinmera
sighs
<Bicyclidine>
you could mention this on the readme, i guess, but who reads?
<mrcom>
This sounds like a job for -- FAQ BOT!
<Shinmera>
Bicyclidine: i'd also have to remember to update the readme again when it becomes out of date, which I definitely won't
<Bicyclidine>
yeah...
<palter>
A while back, I mentioned I had built a Forth 2012 implementation in Common Lisp for a client and would announce it if I was given permission. Today, I was allowed to make it public. MIT license, CCL and SBCL, https://github.com/gmpalter/cl-forth
<ixelp>
GitHub - gmpalter/cl-forth: Common Lisp implementation of the Forth 2012 Standard
<Shinmera>
nice
<palter>
Includes an FFI as well.
<mrcom>
That is very cool. What is the use case? Integration with existing code? Dev environment?
<mrcom>
Ooh... it's a compiler? With interpreter for dev?
mgl__ has quit [Ping timeout: 246 seconds]
<palter>
Client has an application that relies on an old Forth compiler/interpreter. They needed it replaced before it started to fail as there's no one to maintain it.
<mrcom>
The integration of Lisp & Forth is very nice.
<palter>
My implementation compiles Forth into Lisp which is then compiled by the Lisp's compiler.
rozenglass has quit [Ping timeout: 260 seconds]
<palter>
There's some info in the README.md. I need to finish the FFI.md writeup
<mrcom>
Yeah, I'm looking at it right now.
<mrcom>
I don
<mrcom>
I don't imagine they're too awfully concerned about object size :)
rozenglass has joined #commonlisp
<mrcom>
But even 100's MB is small today.
<palter>
Not really. Their applications are huge, written in Common Lisp. They talk to Forth over a socket and use it as a poor man's FFI.
* mrcom
remembers the days of the 4MB Linux install.
* palter
Remembers the IBM 1130 with 8K bytes of core.
<mrcom>
I imagine anybody who's been debugging that kind of interaction is now your BFF.
<mrcom>
("I can _inspect_ it!")
rozenglass has quit [Ping timeout: 260 seconds]
rozenglass has joined #commonlisp
<mrcom>
I'll bet some managers are loving you, too.
X-Scale has quit [Quit: Client closed]
<mrcom>
I am curious about what kind of huge Lisp project also has For... Ah. CERN.
<mrcom>
Or similar.
<palter>
Nope and I'm not allowed to say.
veltas has joined #commonlisp
mwnaylor has joined #commonlisp
veltas has left #commonlisp [#commonlisp]
<Pixel_Outlaw>
So do you also inherit Common Lisp's exception handling? Very cool project.
bike has quit [Read error: Connection reset by peer]
_cymew_ has joined #commonlisp
<dlowe>
palter: ##forth also wants to chat to you :)
<dlowe>
s/to/with/
<mrcom>
Hopefully they let you talk about it some day, or brag about it themselves.
Bicyclidine has quit [Quit: Client closed]
bike has joined #commonlisp
cage has quit [Quit: rcirc on GNU Emacs 29.4]
<yacin>
whoa cool palter !
<yacin>
i was thinking to write a toy forth in lisp for advent of code, but maybe i'll just use this :)
Pixel_Outlaw has quit [Quit: Leaving]
_cymew_ has quit [Ping timeout: 246 seconds]
dajole has joined #commonlisp
Pixel_Outlaw has joined #commonlisp
st_aldini has joined #commonlisp
yitzi has quit [Remote host closed the connection]
kamafam has joined #commonlisp
kamafam has quit [Read error: Connection reset by peer]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #commonlisp
kaskal- has joined #commonlisp
kaskal has quit [Ping timeout: 246 seconds]
<varjag>
palter: very cool
ym has quit [Ping timeout: 246 seconds]
pve has quit [Quit: leaving]
jonatack has quit [Ping timeout: 252 seconds]
jonatack has joined #commonlisp
attila_lendvai has quit [Ping timeout: 248 seconds]
X-Scale has joined #commonlisp
wacki has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
jon_atack has joined #commonlisp
jonatack has quit [Read error: Connection reset by peer]
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
akoana has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Read error: Connection reset by peer]
dnhester26 has joined #commonlisp
dnhester26 has quit [Read error: Connection reset by peer]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Remote host closed the connection]
dnhester26 has joined #commonlisp
dnhester26 has quit [Ping timeout: 246 seconds]
flip214 has quit [Ping timeout: 276 seconds]
alternateved has quit [Remote host closed the connection]
shawnw has joined #commonlisp
shka has quit [Ping timeout: 260 seconds]
paddymahoney has quit [Ping timeout: 246 seconds]
varjag has quit [Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.2)]
donleo has quit [Ping timeout: 244 seconds]
paddymahoney has joined #commonlisp
szkl has joined #commonlisp
dnhester26 has joined #commonlisp
NotThatRPG has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
molson has joined #commonlisp
runxiyu has quit [Ping timeout: 248 seconds]
molson__ has quit [Ping timeout: 248 seconds]
akoana has quit [Quit: leaving]
X-Scale has quit [Quit: Client closed]
dnhester26 has quit [Remote host closed the connection]