jackdaniel changed the topic of #commonlisp to: Common Lisp, the #1=(programmable . #1#) programming language | Wiki: <https://www.cliki.net> | IRC Logs: <https://irclog.tymoon.eu/libera/%23commonlisp> | Cookbook: <https://lispcookbook.github.io/cl-cookbook> | Pastebin: <https://plaster.tymoon.eu/>
waleee has quit [Ping timeout: 265 seconds]
waleee has joined #commonlisp
haxcpu is now known as ay
MetaYan has quit [Ping timeout: 268 seconds]
euandreh has quit [Ping timeout: 250 seconds]
euandreh has joined #commonlisp
jmes has joined #commonlisp
Oladon has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
xlarsx has joined #commonlisp
xlarsx has quit [Ping timeout: 265 seconds]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
chip_x has quit [Remote host closed the connection]
MetaYan has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
<verisimilitude> It's nothing array displacement can't solve, but it's so odd how SORT doesn't accept :START and :END.
xlarsx has joined #commonlisp
xlarsx has quit [Ping timeout: 250 seconds]
<aeth> yes, it's definitely out of place, given how almost every good sequence function (in the standard or not) does
<aeth> you can also sort indices, though, e.g. (let ((a (vector 9 4 3 7 1))) (sort (vector 0 1 2 3 4) #'< :key (lambda (x) (aref a x))))
<aeth> which could be extended into having a start/end even though sorting itself can't
<aeth> e.g. (let ((a (vector 9 4 3 7 1))) (sort (vector 2 3 4) #'< :key (lambda (x) (aref a x))))
specbot has quit [Remote host closed the connection]
minion has quit [Read error: Connection reset by peer]
minion has joined #commonlisp
specbot has joined #commonlisp
specbot has quit [Remote host closed the connection]
minion has quit [Killed (NickServ (GHOST command used by minion1))]
minion has joined #commonlisp
specbot has joined #commonlisp
<verisimilitude> Yes, aeth, I've done that here: http://verisimilitudes.net/2021-05-31
<verisimilitude> In APL, this is called grade.
cosimone has quit [Remote host closed the connection]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
Oladon has quit [Quit: Leaving.]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
waleee has quit [Ping timeout: 260 seconds]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
<dre> oh my gosh guys
<dre> i had a ~brainwave~
<dre> at work in python land, I wrote a function that is just a one-line return
<dre> return { set comprehension } *
<dre> and someone asked me about it and I said "the function is basically a documenting label to the set comprehension"
<jcowan> I think that requiring SORT to support both lists and :start :end would be obnoxious.
zephyr has joined #commonlisp
<dre> is that why CL uses `labels` as defining functions? you're literally labelling some lisp forms as their own little name thing
<hayley> I recall gilberth mentioned it was a reference to "labels" in assembly, especially when you consider tail-calling to be jumping.
<hayley> JMC's original LISP used the singular LABEL to introduce self-reference still.
tyson2 has quit [Remote host closed the connection]
<dre> oh that makes better sense
<dre> sorry I'm really dumb :P
<dre> I sometimes find the CL naming to be a little bit difficult but that's just my newbiness
eddof13 has joined #commonlisp
d4ryus has quit [Ping timeout: 268 seconds]
igemnace has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
d4ryus has joined #commonlisp
<jcowan> dre: Everyone agrees that CL naming is unsystematic.
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<aeth> When CL has better names than Scheme, it's accidental. e.g. CL:MAP is better because the generic name was available, but Scheme already renamed MAPCAR to MAP.
<hayley> MAPCAR implies the existence of MAPCDR
<aeth> CL also contains a lot of legacy, e.g. SET, SETQ, SETF
<aeth> hayley: why stop there when you can have MAPCADR?
eddof13 has joined #commonlisp
<an_origamian> MAPCADDAR
tevo has quit [Ping timeout: 265 seconds]
<kakuhen> MAPNTH
tevo has joined #commonlisp
<fiddlerwoaroof> SORT on a displaced array probably has an undefined effect on the underlying array
<fiddlerwoaroof> Kills two arrays with one FUNCALL
<fiddlerwoaroof> Although I can't actually find the language in the standard that says this
splatt990 has quit [Ping timeout: 260 seconds]
mingus has quit [Ping timeout: 250 seconds]
<aeth> (defun mapeven (function list) (loop :for item :in list :for evenp := t :then (not evenp) :when evenp :collect (funcall function item)))
<aeth> (mapeven #'1+ (list 0 2 3 4 5 6 10 11 12)) => (1 4 6 11 13)
asarch has joined #commonlisp
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
xlarsx has joined #commonlisp
eddof13 has joined #commonlisp
<beach> an_origamian: Are you new here? I don't recognize your nick.
eddof13 has quit [Client Quit]
xlarsx has quit [Ping timeout: 244 seconds]
masinter has quit [Remote host closed the connection]
xlarsx has joined #commonlisp
asarch has quit [Quit: Leaving]
xlarsx has quit [Ping timeout: 248 seconds]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
ahc has joined #commonlisp
_cymew_ has joined #commonlisp
rgherdt has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
shka has joined #commonlisp
epony has quit [Ping timeout: 252 seconds]
razetime has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
mingus has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
dre has quit [Quit: Leaving]
enzuru has quit [Quit: ZNC 1.8.2 - https://znc.in]
Cymew has joined #commonlisp
enzuru has joined #commonlisp
m5zs7k has quit [Ping timeout: 250 seconds]
m5zs7k has joined #commonlisp
<an_origamian> beach: I am. I'm pretty new to IRC as well.
an_origamian has quit [Quit: Konversation terminated!]
Lycurgus has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
Dynom_ has joined #commonlisp
Dynom_ is now known as Guest3551
thuna` has joined #commonlisp
dre has joined #commonlisp
dre has quit [Remote host closed the connection]
<phantomics> Is there a reason I can't alter lists that are properties of objects? For example...
<phantomics> If I do this: (setf bbb nil) (setf (getf bbb :cc) (list :ee)) (setf (getf (rest (getf bbb :cc)) :ii) 10)
<phantomics> I will get my expected output, (:CC (:EE :II 10))
aartaka has joined #commonlisp
epony has joined #commonlisp
<phantomics> However, if bbb is replaced with (obj-plist myobject), where obj-plist is the list accessor for the class of myobject, then the list does not get changed
blackmonad has joined #commonlisp
<beach> Works for me.
lagash has quit [Ping timeout: 260 seconds]
<phantomics> Ok, must be missing something somewhere down the line
<pjb> phantomics: this is not a valid p-list: (progn (setf bbb nil) (setf (getf bbb :cc) (list :ee)) (setf (getf (rest (getf bbb :cc)) :ii) 10) (getf bbb :cc)) #| --> (:ee :ii 10) |#
lagash has joined #commonlisp
<pjb> Sorry, I'm confused. I need to wake up.
<verisimilitude> Why would it, fiddlerwoaroof?
<phantomics> pbj: it's not, but the (rest) of it is
<phantomics> That way it can be passed to various places and it'll share the same storage everywhere including newly added properties
<beach> phantomics: Can you show the code that doesn't work?
<beach> phantomics: Also, you need to create bbb before assigning to it.
<phantomics> Ok, I'll paste it. I did (defvar bbb) before the code above
<beach> OK.
cercopith_ has quit [Remote host closed the connection]
cercopith_ has joined #commonlisp
pve has joined #commonlisp
<phantomics> Here it is, should be somewhat clear. The shape-of method populates a metadata slot that's part of an object, while the render method attempts to modify a part of the metadata
<phantomics> I've also tried (setf (getf (rest (getf (varray-meta varray) :gen-meta)) :index-width) stuff) and that doesn't work either, (varray-meta) is the accessor for the metadata slot
aartaka has quit [Ping timeout: 265 seconds]
<beach> I just meant the same two lines but with the replacement you mentioned.
aartaka has joined #commonlisp
Lycurgus has quit [Quit: Exeunt juan@acm.org]
<phantomics> Ok, I figured it out, I was running something that overwrote the metadata that got reassigned
Vjalmr has joined #commonlisp
<beach> I see.
aartaka has quit [Ping timeout: 268 seconds]
<beach> phantomics: By the way, the indentation on that page is messed up, so either your code contains TABs, or it is incorrectly indented.
<phantomics> I've noticed that the recent version of Emacs I had does indenting in a different way
<phantomics> Like the alignment of clauses in (loop), has anyone else noticed this?
<beach> I take that back. The second time I loaded it, it looks better.
<beach> For LOOP I use the slime-indentation contribution which is basically required for it to be right.
<phantomics> Are the :for and :collect in the loop clauses toward the bottom supposed to be aligned? In older Emacs the :for would be further left
pranavats has left #commonlisp [Error from remote client]
<beach> Yes, they should be aligned and they are.
pranavats has joined #commonlisp
<beach> I would put the clause starting with :when on a new line.
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
razetime has quit [Ping timeout: 265 seconds]
<verisimilitude> I just manually align the LOOPs I write.
<verisimilitude> I don't specially align any clauses, however.
<beach> Oh, that's bad.
<beach> Both.
<beach> If you submit code that is manually aligned, that means the person reading it can't trust the indentation, so you force that person to count parentheses.
<beach> But maybe you don't submit your code.
makomo has joined #commonlisp
<verisimilitude> Maybe I don't submit my code to whom?
lottaquestions_ has joined #commonlisp
lottaquestions has quit [Ping timeout: 244 seconds]
<pjb> verisimilitude: to the open source gods.
<beach> verisimilitude: Anyone you might collaborate with, or ask for help or advice.
razetime has joined #commonlisp
<verisimilitude> I work alone, so no I don't have that issue.
<beach> Fair enough.
<verisimilitude> Regardless, no indentation can be trusted, because these programs are unfortunately distributed as text files.
<beach> So we should all count parentheses?
lottaquestions_ has quit [Quit: Konversation terminated!]
lottaquestions_ has joined #commonlisp
<verisimilitude> I have my computer count parentheses for me.
blackmonad has quit [Ping timeout: 252 seconds]
<verisimilitude> I don't generally read Lisp code I didn't write, anyway.
makomo has quit [Quit: WeeChat 3.5]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
cosimone has joined #commonlisp
MajorBiscuit has joined #commonlisp
<fiddlerwoaroof> verisimilitude: I was under the impression that there was a clause along the lines of "the user must use the return value of SORT" in the standard and that the state of the input sequence was undefined after SORT exits
<verisimilitude> I believe I checked for just that before I wrote the implementation of grade I shared earlier, because it also occurred to me.
<jackdaniel> fiddlerwoaroof: basically yes ("The sorting operation can be destructive in all cases. In the case of a vector argument, this is accomplished by permuting the elements in place. In the case of a list, the list is destructively reordered in the same manner as for nreverse. " - from the standard)
<fiddlerwoaroof> Yeah, although if you're assuming a vector, I think it's safe to assume the input sequence hasn't been ruined?
<fiddlerwoaroof> clhs nreverse
<verisimilitude> clhs sort
<fiddlerwoaroof> For lists, this clause in NREVERSE seems to apply: "The result might or might not be identical to sequence"
<jackdaniel> right, in case of a vector the imaginary "head" never changes
<acma> SLIME indents the LOOP clauses correctly anyway, so never had to bother about taking special care myself to indent them
<jackdaniel> in case of nreverse and co the head may end up in the middle of the sequence, so the new head is in a different place (so the old variable may reference a cons that is in not at the beginning of the sequence)
<beach> acma: As I recall, it has to do with slime-indentation being the default, but perhaps it did not use to be.
<jackdaniel> (in case of nreverse it will be probably at the end of the sequence, not the middle of course)
<acma> how can I check if slime-indentation is enabled in my editor?
<beach> Beats me. Sorry.
<fiddlerwoaroof> jackdaniel: that only applies to lists, though
<jackdaniel> yes, I've said that (and agreed with you) above
<fiddlerwoaroof> The standard seems to restrict operations on vectors to reordering items, in both cases
<fiddlerwoaroof> Sorry, missed that :)
<jackdaniel> no worries
<jackdaniel> that said all depends on your definition of being "ruined" - sometimes you don't want to modify the original sequence order (in this case a vector)
<jackdaniel> then calling sort on it may be undesired, because the original order will be ruined
aartaka has joined #commonlisp
ahc has quit [Quit: Client closed]
makomo_ has quit [Ping timeout: 265 seconds]
verisimilitude has quit [Ping timeout: 248 seconds]
<pjb> (let ((list (list 5 4 3 1 2))) (list list (sort list #'<))) #| --> (#1=(5) (1 2 3 4 . #1#)) |#
<pjb>
chipxxx has joined #commonlisp
chipxxx has quit [Remote host closed the connection]
chipxxx has joined #commonlisp
tibfulv has quit [Ping timeout: 268 seconds]
tibfulv has joined #commonlisp
random-nick has joined #commonlisp
jmdaemon has quit [Ping timeout: 260 seconds]
cercopith_ has quit [Ping timeout: 265 seconds]
cercopith has joined #commonlisp
aartaka has quit [Ping timeout: 246 seconds]
aartaka has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
thuna` has quit [Remote host closed the connection]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
pillton has quit [Remote host closed the connection]
hirez has quit [Ping timeout: 244 seconds]
aartaka has quit [Ping timeout: 268 seconds]
hirez has joined #commonlisp
aartaka has joined #commonlisp
hirez has quit [Client Quit]
tyson2 has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
hirez has joined #commonlisp
aartaka has quit [Ping timeout: 268 seconds]
aartaka has joined #commonlisp
attila_lendvai has joined #commonlisp
aartaka has quit [Ping timeout: 250 seconds]
thuna` has joined #commonlisp
aartaka has joined #commonlisp
makomo_ has joined #commonlisp
cosimone has quit [Ping timeout: 260 seconds]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
mariari has quit [Quit: WeeChat 3.6]
mariari has joined #commonlisp
aartaka has quit [Ping timeout: 265 seconds]
aartaka has joined #commonlisp
aartaka has quit [Ping timeout: 244 seconds]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
attila_lendvai has quit [Ping timeout: 250 seconds]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
ec_ has quit [Remote host closed the connection]
ec_ has joined #commonlisp
xaltsc has quit [Remote host closed the connection]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
Shinmera has quit [Ping timeout: 260 seconds]
Colleen has quit [Ping timeout: 252 seconds]
chip_x has joined #commonlisp
waleee has joined #commonlisp
epony has quit [Ping timeout: 252 seconds]
chipxxx has quit [Ping timeout: 265 seconds]
epony has joined #commonlisp
tyson2 has quit [Remote host closed the connection]
d4ryus has quit [Ping timeout: 252 seconds]
causal has quit [Quit: WeeChat 3.6]
aartaka has joined #commonlisp
d4ryus has joined #commonlisp
<Josh_2> Good Morning :sunglasses:
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
Shinmera has joined #commonlisp
Cymew has quit [Ping timeout: 244 seconds]
mingus has quit [Ping timeout: 268 seconds]
splatt990 has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
eddof13 has joined #commonlisp
hirez- has joined #commonlisp
hirez has quit [Ping timeout: 250 seconds]
cercopith_ has joined #commonlisp
cercopith has quit [Ping timeout: 268 seconds]
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Colleen has joined #commonlisp
Colleen has quit [Client Quit]
chip_x has quit [Read error: Connection reset by peer]
Colleen has joined #commonlisp
tyson2 has joined #commonlisp
eddof13 has joined #commonlisp
aartaka has quit [Ping timeout: 252 seconds]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
aartaka has joined #commonlisp
_cymew_ has quit [Ping timeout: 250 seconds]
tyson2 has quit [Remote host closed the connection]
waleee has quit [Ping timeout: 265 seconds]
mingus has joined #commonlisp
gamaliel has joined #commonlisp
<gamaliel> Hi, I'm relatively new to Lisp, and was wondering if there was some way to wrap docstrings when documenting my functions. For now I am using (concatenate 'string "<doc-piece1>" ... "<doc-piece-n>") and it seems awfully clunky.
|3b| has quit [Remote host closed the connection]
<beach> gamaliel: And it won't work, because docstrings are not evaluated.
<Bike> like linebreaks? you can just put them in the string
<Bike> "This function does bla bla bla [newline goes here] and such and such"
<gamaliel> @Bike: I tried it, but it doesn't seem to allow it. I am using paredit-mode.
<Bike> Doesn't allow it how?
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<gamaliel> Sorry, I meant, it places the cursor directly on the first column of the code after the newline instead of respecting the indentation of the previous line.
<gamaliel> So, if I start on the 8th space to write my docstring, placing newline moves the rest of the docstring to the 1st space.
<semz> if you want to get rid of the linebreaks entirely for aesthetic reasons or want to indent your docstrings in the source without that showing up in the docstring itself, you could do #.(format nil "your docstring here~<newline> bottom text"), which results in "your docstring herebottom text".
<semz> ~<newline> is a format command that ignores the newline and all whitespace at the beginning of the next line
eddof13 has joined #commonlisp
tane has joined #commonlisp
tane has quit [Changing host]
tane has joined #commonlisp
MajorBiscuit has quit [Ping timeout: 264 seconds]
<gamaliel> Ok, so to be clear, for writing a docstring I'd wrap it around #.(format nil "<my-docstring-text-piece1>~<newline><my-doc-string-text-piece2>") and add enters, spaces, etc. for manually indenting. Format would then take care of eliminating all extra space.
<_death> gamaliel: the indentation makes sense, because the text starts after the first double quote
<edgar-rft> gamalie: If you start the doctring on the 8th space in your code and also indent all following lines in the docstring by 8 spaces, then when the docstring gets printed the first line will start at line position 0 (because the docstring starts with the double quotes) and all subsequent lines will be printed with an indentation of 8 spaces. This is probably not what you want.
makomo_ has quit [Ping timeout: 268 seconds]
<semz> gamaliel: Pretty much, although keep in mind that ~<newline> by itself won't add a space between the concatenated pieces (you'd have to put one before the ~<newline>). You can test this without the #. in the REPL, it's just a format call after all
<semz> actually I suppose you can test it with the #. in the REPL as well, it makes no difference
ec_ has quit [Remote host closed the connection]
ec_ has joined #commonlisp
<beach> gamaliel: The ~@<newline> FORMAT directive means that initial space on the next line is ignored, so the lines of the documentation string are aligned in the left column even though the lines in the code are indented.
thuna` has quit [Ping timeout: 252 seconds]
<_death> beach: what's the point of using #. there?
<beach> Not much.
<beach> Good point.
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
aartaka has quit [Ping timeout: 244 seconds]
aartaka has joined #commonlisp
<gamaliel> It seems to do the trick for now. Thank you all.
<beach> Pleasure.
cosimone has joined #commonlisp
aartaka has quit [Ping timeout: 265 seconds]
aartaka has joined #commonlisp
gamaliel has quit [Ping timeout: 252 seconds]
xlarsx has joined #commonlisp
aartaka has quit [Ping timeout: 265 seconds]
aartaka has joined #commonlisp
xlarsx has quit [Ping timeout: 248 seconds]
makomo_ has joined #commonlisp
<fiddlerwoaroof> I recently used a function to trim leading whitespace up to a sentinel character in docstrings
|3b| has joined #commonlisp
frgo has joined #commonlisp
xlarsx has joined #commonlisp
avocadoist has joined #commonlisp
_cymew_ has joined #commonlisp
verisimilitude has joined #commonlisp
xlarsx has quit [Ping timeout: 252 seconds]
aartaka has quit [Ping timeout: 268 seconds]
aartaka has joined #commonlisp
ebrasca has joined #commonlisp
cosimone has quit [Ping timeout: 268 seconds]
hirez has joined #commonlisp
eddof13 has joined #commonlisp
hirez- has quit [Ping timeout: 265 seconds]
makomo has joined #commonlisp
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Vjalmr has quit [Ping timeout: 268 seconds]
_cymew_ has quit [Ping timeout: 265 seconds]
cosimone has joined #commonlisp
razetime has quit [Remote host closed the connection]
jmdaemon has joined #commonlisp
pranavats has left #commonlisp [Error from remote client]
pranavats has joined #commonlisp
waleee has joined #commonlisp
Vjalmr has joined #commonlisp
cosimone` has joined #commonlisp
thuna` has joined #commonlisp
cosimone has quit [Ping timeout: 268 seconds]
tyson2 has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
xlarsx has joined #commonlisp
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp
cosimone` has quit [Ping timeout: 250 seconds]
eddof13 has joined #commonlisp
b3lm0nt has quit [Ping timeout: 265 seconds]
_cymew_ has joined #commonlisp
Lord_of_Life_ has joined #commonlisp
Vjalmr has quit [Remote host closed the connection]
Lord_of_Life has quit [Ping timeout: 265 seconds]
Lord_of_Life_ is now known as Lord_of_Life
<pjb> gamaliel: when I type ( d e f u n SPC foo SPC ( ) RET " h e l l o RET I get: https://termbin.com/g2aju with | being the cursor.
<pjb> gamaliel: If typing RET on the closing " gets you out of the string, then you could use instead C-q C-j to insert a newline.
<pjb> gamaliel: But it would mean you have misconfigured your buffer.
_cymew_ has quit [Ping timeout: 244 seconds]
pranavats has left #commonlisp [Error from remote client]
pranavats has joined #commonlisp
makomo has quit [Ping timeout: 252 seconds]
attila_lendvai has joined #commonlisp
cosimone has joined #commonlisp
aartaka has quit [Ping timeout: 268 seconds]
aartaka has joined #commonlisp
makomo has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
mariari has quit [Ping timeout: 244 seconds]
igemnace has quit [Remote host closed the connection]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
mariari has joined #commonlisp
tyson2 has quit [Remote host closed the connection]
tyson2` has joined #commonlisp
xlarsx has quit [Remote host closed the connection]
tyson2` has quit [Ping timeout: 252 seconds]
xlarsx has joined #commonlisp
hirez- has joined #commonlisp
pranavats has left #commonlisp [Error from remote client]
pranavats has joined #commonlisp
hirez has quit [Ping timeout: 252 seconds]
xlarsx has quit [Remote host closed the connection]
xlarsx has joined #commonlisp
Guest3551 has quit [Quit: WeeChat 3.6]
tane has quit [Quit: Leaving]
thuna` has quit [Remote host closed the connection]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
makomo has quit [Ping timeout: 268 seconds]
zyni-moe has joined #commonlisp
zyni-moe has quit [Client Quit]
aartaka has quit [Ping timeout: 244 seconds]
makomo has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
an_origamian has joined #commonlisp
rgherdt has quit [Remote host closed the connection]
notzmv has quit [Ping timeout: 268 seconds]
causal has joined #commonlisp
tyson2 has joined #commonlisp
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
bilegeek has joined #commonlisp
akoana has joined #commonlisp
b3lm0nt_ has joined #commonlisp
b3lm0nt has quit [Ping timeout: 248 seconds]
attila_lendvai has quit [Ping timeout: 248 seconds]
xlarsx has quit [Ping timeout: 244 seconds]
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
shka has quit [Ping timeout: 265 seconds]
Colere is now known as LoupGris
xlarsx has joined #commonlisp
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pve has quit [Quit: leaving]
pranavats has joined #commonlisp
<b3lm0nt_> Question: does anyone here using Vim + Vlime + SBCL successfully on OpenBSD? i've been using that combination on my Macbook Pro just fine, but on OpenBSD I have an issues where the sldb debugger doesn't work (no sldb buffer opens when an error occurs).
xlarsx has quit [Ping timeout: 252 seconds]
eddof13 has joined #commonlisp
ebrasca has quit [Ping timeout: 264 seconds]
Noisytoot_ has joined #commonlisp
Noisytoot has quit [Read error: Connection reset by peer]
b3lm0nt_ has quit [Ping timeout: 268 seconds]
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Ping timeout: 268 seconds]
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp
Noisytoot_ has quit [Read error: Connection reset by peer]
b3lm0nt has quit [Ping timeout: 265 seconds]
hirez has joined #commonlisp
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp
hirez- has quit [Ping timeout: 268 seconds]
Noisytoot has joined #commonlisp
b3lm0nt has quit [Ping timeout: 252 seconds]
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp
eddof13 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pranavats has left #commonlisp [Disconnected: Replaced by new connection]
pranavats has joined #commonlisp
b3lm0nt has quit [Ping timeout: 248 seconds]
b3lm0nt has joined #commonlisp
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
hirez- has joined #commonlisp
hirez has quit [Ping timeout: 260 seconds]
b3lm0nt has quit [Ping timeout: 250 seconds]
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp
pieguy128 has quit [Ping timeout: 268 seconds]
pieguy128 has joined #commonlisp
b3lm0nt has quit [Ping timeout: 265 seconds]
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp
notzmv has joined #commonlisp
b3lm0nt has quit [Ping timeout: 246 seconds]
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Ping timeout: 265 seconds]
b3lm0nt has joined #commonlisp
b3lm0nt has quit [Changing host]
b3lm0nt has joined #commonlisp