<ixelp>
GitHub - varjagg/deptree: System dependency listing and archiving tool for Common Lisp
<splittist>
varjag: cool! You have a "dependenies’" in the README
<varjag>
oh thanks
random-nick has joined #commonlisp
mgl has quit [Quit: Client closed]
son0p has joined #commonlisp
attila_lendvai has quit [Ping timeout: 244 seconds]
kevingal has joined #commonlisp
Inline has quit [Ping timeout: 260 seconds]
Inline has joined #commonlisp
pfdietz has joined #commonlisp
zxcvz has joined #commonlisp
tevo has quit [Read error: Connection reset by peer]
jonatack1 has joined #commonlisp
jon_atack has quit [Read error: Connection reset by peer]
<Shinmera>
I've launched a patreon. If you'd like to help me continue to develop Lisp libraries full-time, please consider backing my work: https://www.patreon.com/Shinmera
rgherdt_ has joined #commonlisp
<beach>
Good idea!
<Shinmera>
I've been meaning to do it for years, heh
<beach>
Can donors have an opinion on what you should be working on? :)
<Shinmera>
I considered putting something like that in as a reward, but for now the best you can do is leave comments. There's no guarantees, however.
<Shinmera>
I feel like managing the conflicting directions people would want to pull me in is a headache I'm not yet ready for
<beach>
Got it.
<beach>
I fully understand.
tevo has joined #commonlisp
rgherdt has quit [Ping timeout: 260 seconds]
<Shinmera>
That said, I might pivot further to splitting my dev work to part time and part time freelancing, in which case I could be hired to work on specific things.
<Shinmera>
That would be significantly more expensive than a patreon pledge though, I'm afraid :)
<beach>
Sure.
<beach>
I have said many times that in the past that the lack of money is not what makes progress slow with Common Lisp, but the lack of people that are both qualified and available. Now, there is at least one person that is both qualified (at least for some tasks) and available.
<Shinmera>
Hmmm, well, it's a bit of an intertwined issue, no? I'm sure plenty of folks would pivot back to doing lisp work if it paid *well enough*
<beach>
They would, but not many of them are qualified.
<Shinmera>
I don't know that I'm in a position to really judge that :)
<beach>
... at least for the kind of stuff that I would like to see done.
kenran has joined #commonlisp
tyson2 has joined #commonlisp
anip has joined #commonlisp
myclm__ has joined #commonlisp
dino_tutter has quit [Ping timeout: 260 seconds]
msavoritias has quit [Ping timeout: 256 seconds]
msavoritias has joined #commonlisp
rainthree has quit [Read error: Connection reset by peer]
zxcvz has quit [Quit: zxcvz]
mrcom has quit [Remote host closed the connection]
habamax has quit [Quit: ERC 5.5.0.29.1 (IRC client for GNU Emacs 29.1.50)]
Cymew has quit [Ping timeout: 250 seconds]
igemnace has quit [Read error: Connection reset by peer]
thuna` has joined #commonlisp
igemnace has joined #commonlisp
kenran has quit [Remote host closed the connection]
kenran has joined #commonlisp
lucasta_ has joined #commonlisp
lucasta_ has quit [Ping timeout: 246 seconds]
gxt has quit [Remote host closed the connection]
ec has quit [Remote host closed the connection]
gxt has joined #commonlisp
ec has joined #commonlisp
_cymew_ has quit [Ping timeout: 245 seconds]
donleo has quit [Ping timeout: 250 seconds]
varjag has quit [Quit: ERC (IRC client for Emacs 27.1)]
bird_ has joined #commonlisp
notzmv has joined #commonlisp
pranavats has left #commonlisp [Error from remote client]
Perflosopher has quit [Quit: Ping timeout (120 seconds)]
Perflosopher has joined #commonlisp
<jcowan>
beach: I will add that the same problem applies to all the Lisps.
NotThatRPG has joined #commonlisp
lucasta_ has joined #commonlisp
dino_tutter has joined #commonlisp
zxcvz has joined #commonlisp
zxcvz has quit [Client Quit]
rolling-lambda has joined #commonlisp
NotThatRPG has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pranavats has joined #commonlisp
Nixkernal has quit [Ping timeout: 245 seconds]
davidbe has quit [Quit: Connection closed for inactivity]
lucasta_ has quit [Ping timeout: 252 seconds]
rtypo has joined #commonlisp
myclm__ has quit [Quit: Leaving]
ronald has joined #commonlisp
dcb has joined #commonlisp
msavoritias has quit [Ping timeout: 252 seconds]
_cymew_ has joined #commonlisp
dino_tutter has quit [Ping timeout: 244 seconds]
pranavats has left #commonlisp [Error from remote client]
pranavats has joined #commonlisp
igemnace has quit [Quit: WeeChat 4.0.4]
pranavats has left #commonlisp [Error from remote client]
_cymew_ has quit [Ping timeout: 260 seconds]
donleo has joined #commonlisp
msavoritias has joined #commonlisp
dino_tutter has joined #commonlisp
dcb has quit [Quit: MSN Messenger 4.0.4]
Pixel_Outlaw has joined #commonlisp
McParen has joined #commonlisp
tyson2 has quit [Remote host closed the connection]
<McParen>
does anyone know if slime or emacs support the #| |# comments, for example to comment out a region, defun, or to just insert the comment delimiters?
<edgar-rft>
just tested with Slime, this works as expected: (print #| ignore this |# "Hello World!") prints and returns the string "Hello World!")
<fitzsim>
but M-; only prefixes with ;;
<fitzsim>
not sure if that's configurable; it'd be neat if C-u M-; would do #| |# on the region
hernan_ is now known as hernan
<gilberth>
Not really. #| |# is for comments within a line not for commenting out whole lines. And actually when you look at existing Lisp code, you find that #| |# isn't used much.
tevo has quit [Ping timeout: 244 seconds]
<McParen>
i mostly need it to quickly comment out code, not for real comments.
<gilberth>
Then use #+(or) That's quicker.
<McParen>
not for a single defun, just for random parts of code.
igemnace has joined #commonlisp
<edgar-rft>
Emacs *Help* says: You can configure ‘comment-style’ to change the way regions are commented.
<McParen>
i am actually quite surprised that there already isnt a binding for this in slime, manually adding those two delimiters is quick enough, so i assumend everybody is using them the same way
<edgar-rft>
There *might* be such a thing in Slime but I never used it, therefore I don't know :-(
<gilberth>
idk. It's rare that I want to comment a random piece and not just a form somewhere. I mean, after all even when commented out things need to be balanced, right? And when lazy and I'm in procedural land, I at times also just place a single quote <'> in front of a form that should do anything.
<bike>
i usually use #+(or) for code since that's more natural with the sexp layout. like if i have (defun foo () ... (bar)) and i want to comment out the call, #+(or) is better since it preserves the ) at the end of the defun
<bike>
keybinding for it might be nice, though
donleo has quit [Ping timeout: 252 seconds]
yottabyte has joined #commonlisp
mrcom has joined #commonlisp
jff has joined #commonlisp
jff has quit [Client Quit]
tyson2 has joined #commonlisp
zaymington has quit [Read error: Connection reset by peer]