jackdaniel changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language | <https://irclog.tymoon.eu/freenode/%23lisp> <https://irclog.whitequark.org/lisp> <http://ccl.clozure.com/irc-logs/lisp/> | offtopic --> #lispcafe
iAmDecim has quit [Ping timeout: 256 seconds]
Bourne has quit [Ping timeout: 258 seconds]
sonologico has joined #lisp
bsd4me has joined #lisp
dominic34 has joined #lisp
Lycurgus has quit [Ping timeout: 240 seconds]
dominic34 has quit [Client Quit]
progfun has joined #lisp
Plazma has joined #lisp
Kundry_W_ has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 264 seconds]
dddddd has quit [Ping timeout: 240 seconds]
EvW has quit [Ping timeout: 260 seconds]
davepdotorg has joined #lisp
orivej has joined #lisp
davepdotorg has quit [Ping timeout: 272 seconds]
orivej has quit [Ping timeout: 240 seconds]
_jrjsmrtn has joined #lisp
mindCrime_ has quit [Ping timeout: 260 seconds]
__jrjsmrtn__ has quit [Ping timeout: 256 seconds]
mindCrime_ has joined #lisp
gxt__ has quit [Remote host closed the connection]
payph0ne has quit [Ping timeout: 245 seconds]
gxt__ has joined #lisp
payph0ne has joined #lisp
<fiddlerwoaroof> _death: I think that there's actually a "hangs forever" bug in my code
dddddd has joined #lisp
<fiddlerwoaroof> Although, it's interesting, because it may be mitigated by the way the COMM library handles socket closing
Oladon has quit [Quit: Leaving.]
mangoicedtea has quit [Quit: Leaving]
terpri_ has quit [Remote host closed the connection]
terpri_ has joined #lisp
Oddity_ has joined #lisp
Oddity__ has quit [Ping timeout: 244 seconds]
galex-713_ has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
Kaisyu has joined #lisp
Lycurgus has joined #lisp
secretmyth has quit [Ping timeout: 240 seconds]
benjamin-l has joined #lisp
space_otter has joined #lisp
jesse1010 has quit [Ping timeout: 256 seconds]
payph0ne has quit [Remote host closed the connection]
Alfr_ has joined #lisp
payph0ne has joined #lisp
Alfr has quit [Ping timeout: 240 seconds]
AmatureProgramme has quit [Quit: Leaving]
contrapunctus has left #lisp ["Disconnected: closed"]
contrapunctus has joined #lisp
<beach> Good morning everyone!
zooey has quit [Quit: quit]
zooey_ has joined #lisp
payph0ne has quit [Remote host closed the connection]
davepdotorg has joined #lisp
saitousama has quit [Quit: WeeChat 2.3]
davepdotorg has quit [Ping timeout: 244 seconds]
progfun has quit [Ping timeout: 265 seconds]
orivej has joined #lisp
<coltkirk> good morning
<beach> Hello coltkirk.
<coltkirk> since I've been working through CL for the past month or so and I use IRC all the time via emacs, figured this would be a nice place to park
<beach> #lisp is a good place to hang out.
<coltkirk> i rarely use freenode as some of the people can be intense and irritable, but the #lisp room seems like a good spot
snowyfox has joined #lisp
<beach> Apparently, #lisp is one of the best IRC channels. We try to stay on topic, and there are people here that prevent truly unacceptable behavior.
<coltkirk> cool, well i'm seriously studying lisp so I'm here to listen and learn
<beach> Great! There is also #clschool for truly elementary questions. #lisp is more geared to discussions between a bit more experienced Lispers.
<beach> But newbie questions are tolerated.
<beach> If the newbie gets too annoying, he or she is directed to #clschool.
natj212_ has joined #lisp
sm2n_ has joined #lisp
bitmappe_ has joined #lisp
ajithmk has joined #lisp
natj212 has quit [Ping timeout: 258 seconds]
sm2n has quit [Remote host closed the connection]
Jesin has quit [Ping timeout: 258 seconds]
Robdgreat has quit [Ping timeout: 258 seconds]
hiroaki has quit [Ping timeout: 258 seconds]
Robdgreat has joined #lisp
hiroaki has joined #lisp
bitmapper has quit [Ping timeout: 258 seconds]
<ajithmk> Hey Guys,
<ajithmk> How are vectors implemented in sbcl? Apart from the bookkeeping required for vectors on the top of arrays, I want to know if the main data ie elements themselves are stored as arrays.
brown121407 has joined #lisp
<ajithmk> A vector constrained to hold single-floats, specifically.
Alloc has quit [Ping timeout: 246 seconds]
<Bike> i'm not sure what you're asking. what do you mean "elements themselves are stored as arrays"?
<Bike> a (simple-array single-float (*)) will probably be a header followed by single-floats with no indirection
<ajithmk> I mean, are they stored contiguously in memory like c arrays?
<beach> Yes.
<Bike> on any implementation worth its salt, yes
<ajithmk> In contrast to something like list
<beach> Definitely not lists.
<Bike> i'm pretty sure every implementation stores array data contiguously, though there might be more or less indirection depending on dimensionality, simplicity, etc
<ajithmk> Ah cool. 👍
<beach> ajithmk: What is the reason for your question?
<Bike> if the array is not specialized, the data will be boxed, so there's more indirection there, but it's still random access
<ajithmk> I have a file which contains something like 1000 floats. I parsed them and stored them in a list(by 'push'ing), naively. And then I realized that in C++ I used std:vector<float> to hold them. So I was wondering if list is inefficient and may be I can use a vector in lisp specialized on single-floats instead.
<beach> It depends on how you want to access them later. And it depends on whether you know how many you have from the start.
<beach> But that's just elementary algorithmic complexity.
gravicappa has joined #lisp
<beach> Like if you grow a vector regularly, you need to copy your elements, so a list may be more efficient.
<beach> But if you access the elements randomly, then a vector is better.
<ajithmk> But that is the same problem with C++ vectors too. They have to resize anyway if we are pushing more elements than initial size.
<beach> Sure.
<beach> Though in Common Lisp you have adjustable arrays.
<beach> So you can use something like VECTOR-PUSH-EXTEND which makes life easier.
luckless has quit [Ping timeout: 240 seconds]
mindCrime_ has quit [Ping timeout: 260 seconds]
luckless has joined #lisp
<ajithmk> I just checked that extend push. Great. At this point those specialized adjustable vectors are almost the same as C++ vectors.
<beach> Why do you care about C++?
Bike has quit [Quit: Lost terminal]
<ajithmk> Haha. Actually I don't. I am porting a small application I have written earlier in C++ to CL and was thinking about the data structures along the way.
<beach> I see.
toorevitimirp has joined #lisp
Alloc has joined #lisp
froggey has quit [Ping timeout: 240 seconds]
benjamin-l has quit [Ping timeout: 246 seconds]
benjamin-l has joined #lisp
froggey has joined #lisp
IceK1ng has joined #lisp
orivej has quit [Ping timeout: 264 seconds]
benjamin-l has quit [Client Quit]
Oladon has joined #lisp
IceK1ng has left #lisp [#lisp]
brown121407 has quit [Quit: My IRC client committed suicide.]
torbo has quit [Remote host closed the connection]
brown121407 has joined #lisp
beaky has quit [Read error: Connection reset by peer]
beaky has joined #lisp
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 265 seconds]
Lord_of_Life_ is now known as Lord_of_Life
toorevitimirp has quit [Ping timeout: 264 seconds]
orivej has joined #lisp
terpri_ has quit [Ping timeout: 260 seconds]
terpri has joined #lisp
iAmDecim has joined #lisp
Aurora_v_kosmose has quit [Remote host closed the connection]
Aurora_v_kosmose has joined #lisp
gaqwas has joined #lisp
gaqwas has quit [Changing host]
gaqwas has joined #lisp
narimiran has joined #lisp
snowyfox has quit [Ping timeout: 260 seconds]
Bourne has joined #lisp
aartaka has joined #lisp
galex-713_ has quit [Ping timeout: 256 seconds]
bsd4me has quit [Quit: Leaving]
galex-713 has joined #lisp
bocaneri has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
aartaka_d has joined #lisp
aartaka has joined #lisp
sm2n_ is now known as sm2n
aartaka_d has quit [Ping timeout: 260 seconds]
davepdotorg has joined #lisp
progfun has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
davepdotorg has quit [Ping timeout: 246 seconds]
iAmDecim has quit [Ping timeout: 260 seconds]
aartaka has joined #lisp
treflip has joined #lisp
Oladon has quit [Quit: Leaving.]
jprajzne has quit [Ping timeout: 260 seconds]
Jesin has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
luckless has quit [Ping timeout: 240 seconds]
jprajzne has joined #lisp
luckless has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
gravicappa has quit [Ping timeout: 258 seconds]
flazh has joined #lisp
luckless has quit [Remote host closed the connection]
luckless has joined #lisp
treflip has quit [Quit: WeeChat 2.6]
IPmonger has quit [Ping timeout: 258 seconds]
IPmonger has joined #lisp
aartaka has joined #lisp
kopiyka has quit [Remote host closed the connection]
ajithmk has quit [Quit: Connection closed for inactivity]
jonatack has quit [Ping timeout: 244 seconds]
phadthai has quit [Ping timeout: 256 seconds]
phadthai has joined #lisp
ljavorsk has joined #lisp
bilegeek has quit [Quit: Leaving]
contrapunctus has left #lisp ["Disconnected: closed"]
pve has joined #lisp
contrapunctus has joined #lisp
<phoe> good morningggg
galex-713 has quit [Quit: No Ping reply in 180 seconds.]
galex-713 has joined #lisp
<no-defun-allowed> Hello phoe
earenndil has joined #lisp
ggole has joined #lisp
iamFIREc1 has joined #lisp
earenndil has quit [Client Quit]
moon-child has joined #lisp
iamFIREcracker has quit [Ping timeout: 264 seconds]
gaqwas has quit [Remote host closed the connection]
<beach> Hey phoe.
brown121407 has quit [Remote host closed the connection]
Cymew has joined #lisp
shka_ has joined #lisp
orivej has quit [Ping timeout: 258 seconds]
jprajzne1 has joined #lisp
jonatack has joined #lisp
jonatack has quit [Ping timeout: 260 seconds]
jonatack has joined #lisp
iAmDecim has joined #lisp
shangul has joined #lisp
iAmDecim has quit [Ping timeout: 265 seconds]
Christ0p1er has joined #lisp
Christ0pher has quit [Ping timeout: 260 seconds]
coltkirk has quit [Ping timeout: 240 seconds]
galex-713 has quit [Ping timeout: 272 seconds]
galex-713 has joined #lisp
jw4 has quit [Read error: Connection reset by peer]
davepdotorg has joined #lisp
hendursa1 has joined #lisp
parjanya has quit [Ping timeout: 246 seconds]
jw4 has joined #lisp
hendursaga has quit [Ping timeout: 240 seconds]
rgherdt has joined #lisp
igemnace has joined #lisp
galex-713 has quit [Ping timeout: 246 seconds]
davepdotorg has quit [Remote host closed the connection]
davepdotorg has joined #lisp
Blukunfando has quit [Read error: Connection reset by peer]
_whitelogger has joined #lisp
Bourne has quit [Read error: Connection reset by peer]
datajerk has quit [Ping timeout: 256 seconds]
Lycurgus has quit [Quit: Exeunt]
Blukunfando has joined #lisp
datajerk has joined #lisp
Harag has joined #lisp
<Harag> Morning
<Harag> Is there anybody here that knows lparallel?
progfun has quit [Ping timeout: 256 seconds]
<phoe> kinda sorta yes, I guess
<phoe> what's the question?
<Harag> thanx phoe
<Harag> I am trying to use lparallel:pdotimes but if you have a return-from
<Harag> some where in the call "chain" and it gets called pdotimes crashes
<Harag> with "Attempt to RETURN-FROM a block or GO to a tag that no longer
<Harag> exists..."
<Harag> eish sorry that paste went horribly wrong
<phoe> paste the whole function somewhere
<phoe> (just not here)
<phoe> it seems that you are closing over a block or a tagbody and then transferring the closure to another thread
<Harag> phoe the dotimes calls a function that calls a function that calls a function that has the return-from ... so not sure what to paste for you
<Harag> hang on let me try to come up with a simple example that shows the behaviour
<phoe> show me the code that calls RETURN-FROM
<phoe> the error must be lexical in this case
ayuce has joined #lisp
cosimone has joined #lisp
Jach[m] has left #lisp ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
cosimone has quit [Client Quit]
<Harag> never mind phoe... your comment got me thinking and I found a another pdotimes in the chain it is most likely the issue
wxie has joined #lisp
<phoe> :O
space_otter has quit [Remote host closed the connection]
cosimone has joined #lisp
<phoe> PDOTIMES implicitly creates an anonymous function
<phoe> likely this function then gets passed to other threads and therefore outside of its lexical scope
<phoe> so you must not' (block foo (pdotimes ... (lambda () (return-from foo ...)))
<phoe> because that's going to crash in the way you described
<phoe> uh, sorry, I mean
<phoe> (block foo (pdotimes ... (return-from foo)))
<phoe> but you may
<phoe> (pdotimes ... (block foo (return-from foo)))
gravicappa has joined #lisp
<phoe> if do-sequence does any parallelization then this won't be valid code
<phoe> exactly for the reason I have mentioned
<Harag> do-sequence just calls dotimes
<Harag> pdotimes I mean
<phoe> yes
<phoe> then that's not going to work well
<phoe> you need to restructure that function a little bit
<phoe> can't tell you how at the moment though, too distracted with $DAYJOB
Bourne has joined #lisp
<scymtym> looks like PFIND-IF could work
<phoe> ^
<Harag> phoe: thanx I at a loss with the block bit you are speaking about...
<phoe> Harag: DEFMETHOD implicitly defines a named block
<Harag> aaah
<phoe> that's why returning from functions and methods works. :D
<phoe> simplifying, (DEFUN FOO (...) ...) === (SETF (FDEFINITION 'FOO) (LAMBDA (...) (BLOCK FOO ...)))
<phoe> DEFMETHOD works like that, too, except a method is added to an existing GF and the generated LAMBDA is a part of that method.
rgherdt has quit [Ping timeout: 260 seconds]
cosimone has quit [Quit: Quit.]
<Harag> scymtym: thanx will try that
<Harag> thank you phoe
rgherdt has joined #lisp
<scymtym> Harag: i hope it works
treflip has joined #lisp
<Harag> scymtym: going to sit down take a deep breath and then mock up simpler examples and see what works and what does not then go back my actual code and see if I can apply what I hopefully learned
yitzi has quit [Quit: yitzi]
<phoe> aaaa
<phoe> there is much drilling in my block of flats today
<beach> Ouch!
progfun has joined #lisp
<phoe> there will be little talk from me today in order to avoid broadcasting madness over the network
<beach> Sure.
jesse1010 has joined #lisp
davepdotorg has quit [Remote host closed the connection]
davepdotorg has joined #lisp
bendersteed has joined #lisp
jprajzne has quit [Quit: jprajzne]
bendersteed has quit [Changing host]
bendersteed has joined #lisp
jprajzne has joined #lisp
brown121407 has joined #lisp
markoong has joined #lisp
brown121407 has quit [Read error: Connection reset by peer]
brown121407 has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
brown121407 has quit [Remote host closed the connection]
Harag has quit [Ping timeout: 260 seconds]
aartaka has quit [Read error: Connection reset by peer]
jonatack has quit [Ping timeout: 264 seconds]
contrapunctus has left #lisp ["Disconnected: Replaced by new connection"]
contrapunctus has joined #lisp
contrapunctus has left #lisp ["Disconnected: closed"]
contrapunctus has joined #lisp
shangul has quit [Quit: Leaving]
wxie has quit [Ping timeout: 260 seconds]
<phoe> Online Lisp Meeting #8: the stream has started, the proper video will begin in 17 minutes. https://www.twitch.tv/TwitchPlaysCommonLisp
galex-713 has joined #lisp
rogersm has joined #lisp
<beach> I think I'll watch the entire thing later then. Thanks for letting us know about the duration.
<phoe> it seems that the first 90 minutes are APL proper and the latter 90 minutes is a demonstration of a product that utilizes this technology
<phoe> (and Q&A)
ebrasca has joined #lisp
jesse1010 has quit [Ping timeout: 265 seconds]
Bourne has quit [Read error: Connection timed out]
jesse1010 has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
bendersteed has quit [Remote host closed the connection]
davepdotorg has quit [Remote host closed the connection]
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
bitmappe_ has quit [Ping timeout: 264 seconds]
OptimusMKD has joined #lisp
ljavorsk has quit [Ping timeout: 240 seconds]
cosimone has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
Gerula has quit [Read error: Connection reset by peer]
Gerula has joined #lisp
progfun has quit [Ping timeout: 246 seconds]
scymtym_ has joined #lisp
Aurora_v_kosmose has quit [Ping timeout: 240 seconds]
davepdotorg has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
scymtym has quit [Ping timeout: 264 seconds]
montxero has joined #lisp
Aurora_v_kosmose has joined #lisp
hendursa1 has quit [Quit: hendursa1]
hendursaga has joined #lisp
davepdotorg has quit [Remote host closed the connection]
davepdotorg has joined #lisp
jprajzne has quit [Quit: jprajzne]
jonatack has joined #lisp
rogersm has quit [Read error: Connection reset by peer]
jprajzne has joined #lisp
<Josh_2> Afternoon all
<phoe> hellooo
wxie has joined #lisp
Bourne has joined #lisp
davepdotorg has quit [Remote host closed the connection]
davepdotorg has joined #lisp
<pve> Hey, does slime look for an init file on startup, like ~/.slime.lisp or something?
<pve> I use slime-connected-hook to load ~/.slime.lisp, but I was wondering if this functionality is built in already.
contrapunctus has left #lisp ["Disconnected: closed"]
contrapunctus has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
wsinatra_ has quit [Ping timeout: 240 seconds]
Archenoth has joined #lisp
progfun has joined #lisp
<Xach> pve: there's a swank.lisp it loads, not sure of location
<Xach> i use one, let me look
rumbler31 has joined #lisp
<Xach> ~/.swank.lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
Inline has joined #lisp
<pve> Xach: oh nice, I should use that then.. thank you
Kundry_Wag has joined #lisp
Bike has joined #lisp
<pve> (I want to make sure slime-xref-undefine-method gets loaded :)
davepdot_ has joined #lisp
Kundry_Wag has quit [Remote host closed the connection]
davepdotorg has quit [Read error: Connection reset by peer]
<Inline> sbcl.org is down omg
<Inline> what happened to the sourcerers....
Kundry_Wag has joined #lisp
<Inline> lol
wsinatra has joined #lisp
<_death> sourcerer was a good program
iAmDecim has joined #lisp
coltkirk has joined #lisp
wsinatra_ has joined #lisp
postit has joined #lisp
orivej has joined #lisp
<_death> ah, it was actually called sourcer.. https://corexor.wordpress.com/2015/12/09/sourcer-and-windows-source/ .. offtopic anyway
iAmDecim has quit [Ping timeout: 260 seconds]
gko_ has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
<phoe> OLM#8 is over, I'll send all the recording links as soon as I get them
<phoe> thanks to everyone who participated!
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
joast has quit [Quit: Leaving.]
narimiran has quit [Ping timeout: 256 seconds]
iAmDecim has joined #lisp
random-nick has joined #lisp
progfun has quit [Ping timeout: 256 seconds]
aeth has quit [Ping timeout: 240 seconds]
X-Scale has quit [Ping timeout: 260 seconds]
X-Scale` has joined #lisp
joast has joined #lisp
X-Scale` is now known as X-Scale
aeth has joined #lisp
Alloc has quit [Ping timeout: 265 seconds]
Alloc has joined #lisp
terpri has quit [Remote host closed the connection]
terpri has joined #lisp
EvW has joined #lisp
minerjoe has quit [Ping timeout: 265 seconds]
cosimone has quit [Quit: Quit.]
luckless has quit [Ping timeout: 240 seconds]
OptimusMKD has quit [Quit: Leaving]
luckless has joined #lisp
rgherdt has quit [Read error: Connection reset by peer]
rgherdt has joined #lisp
Alloc has quit [Ping timeout: 260 seconds]
Alloc has joined #lisp
IPmonger has quit [Ping timeout: 260 seconds]
dominic34 has joined #lisp
dominic34 has quit [Excess Flood]
dominic34 has joined #lisp
IPmonger has joined #lisp
galex-713 has quit [Ping timeout: 244 seconds]
IPmonger has quit [Ping timeout: 258 seconds]
IPmonger has joined #lisp
hiroaki has quit [Ping timeout: 240 seconds]
iAmDecim has quit [Ping timeout: 240 seconds]
wxie has quit [Ping timeout: 258 seconds]
EvW has quit [Quit: EvW]
sjl_ has joined #lisp
Kaisyu has quit [Quit: Connection closed for inactivity]
gaqwas has joined #lisp
gaqwas has quit [Changing host]
gaqwas has joined #lisp
hendursaga has quit [Ping timeout: 240 seconds]
hendursaga has joined #lisp
mindCrime_ has joined #lisp
Inline has quit [Ping timeout: 272 seconds]
secretmyth has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
aartaka has joined #lisp
jprajzne1 has quit [Quit: Leaving.]
Oladon has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jonatack has quit [Quit: jonatack]
AmatureProgramme has joined #lisp
rgherdt_ has joined #lisp
rgherdt has quit [Ping timeout: 256 seconds]
jonatack has joined #lisp
theseb has joined #lisp
orivej has quit [Ping timeout: 258 seconds]
theseb has quit [Client Quit]
theseb has joined #lisp
<Josh_2> Has anyone used dexadors keep-alive functionality, where you provide a stream for it to keep sending requests
<Josh_2> I am unsure if it is working correctly
orivej has joined #lisp
Alloc has quit [Ping timeout: 256 seconds]
Alloc has joined #lisp
<Josh_2> I do not think it is working (or I'm doing something wrong) firefox is maintaining It's connection just fine
brown121407 has joined #lisp
Codaraxis has joined #lisp
orivej has quit [Ping timeout: 260 seconds]
Codaraxis_ has quit [Ping timeout: 264 seconds]
orivej has joined #lisp
Inline has joined #lisp
postit has quit [Quit: Connection closed for inactivity]
orivej_ has joined #lisp
orivej has quit [Ping timeout: 265 seconds]
brown121407 has quit [Remote host closed the connection]
grumble has quit [Ping timeout: 606 seconds]
grumble has joined #lisp
rgherdt_ has quit [Remote host closed the connection]
Cymew has quit [Ping timeout: 246 seconds]
orivej_ has quit [Ping timeout: 264 seconds]
cosimone has joined #lisp
orivej has joined #lisp
bsd4me has joined #lisp
progfun has joined #lisp
jprajzne has quit [Quit: jprajzne]
toorevitimirp has joined #lisp
jprajzne has joined #lisp
skapata has joined #lisp
scymtym_ has quit [Ping timeout: 240 seconds]
toorevitimirp has quit [Quit: Konversation terminated!]
mindCrime_ has quit [Ping timeout: 260 seconds]
davepdot_ has quit [Remote host closed the connection]
Oladon has quit [Quit: Leaving.]
mindCrime_ has joined #lisp
orivej has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #lisp
rippa has joined #lisp
EvW has joined #lisp
galex-713 has joined #lisp
ukari has joined #lisp
igemnace has quit [Quit: WeeChat 2.9]
mindCrime_ has quit [Ping timeout: 240 seconds]
Colleen has quit [Remote host closed the connection]
Colleen has joined #lisp
Bourne has quit [Read error: Connection reset by peer]
gaqwas has quit [Remote host closed the connection]
davepdotorg has joined #lisp
gaqwas has joined #lisp
davepdotorg has quit [Ping timeout: 244 seconds]
gko_ has quit [Ping timeout: 265 seconds]
bitmapper has joined #lisp
EvW has quit [Ping timeout: 244 seconds]
Lord_of_Life_ has joined #lisp
coltkirk has left #lisp ["ERC (IRC client for Emacs 26.1)"]
Lord_of_Life has quit [Ping timeout: 264 seconds]
Lord_of_Life_ is now known as Lord_of_Life
scymtym has joined #lisp
nmg_ has quit [Ping timeout: 244 seconds]
jprajzne has quit [Quit: jprajzne]
nmg has joined #lisp
ukari has quit [Remote host closed the connection]
ukari has joined #lisp
secretmyth has quit [Remote host closed the connection]
secretmyth has joined #lisp
jprajzne has joined #lisp
akoana has joined #lisp
aaaaaa has joined #lisp
davepdotorg has joined #lisp
Krystof has quit [Ping timeout: 256 seconds]
markoong has quit [Ping timeout: 264 seconds]
davepdotorg has quit [Ping timeout: 272 seconds]
ukari has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 256 seconds]
orivej has joined #lisp
<pve> Suppose I do (defclass foo () ((name :allocation :class :accessor name :initform nil))) and want to access to slot without making a new instance. Is there a recommended way to do this?
<pve> (name (closer-mop:class-prototype (find-class 'foo))) seems to work
<Bike> use the class-prototype function in yeah that.
<pve> ok thanks
ebrasca has quit [Remote host closed the connection]
<Josh_2> is there a way I can get socket-accept to timeout?
theseb has quit [Quit: Leaving]
orivej has quit [Ping timeout: 240 seconds]
<flip214> Josh_2: there's a macro WITH-TIMEOUT, perhaps that helps
orivej has joined #lisp
<Josh_2> That should do
<Josh_2> thanks flip214!
hendursaga has quit [Ping timeout: 240 seconds]
hendursaga has joined #lisp
davepdotorg has joined #lisp
progfun has quit [Ping timeout: 256 seconds]
<Josh_2> Worked perfectly!
davepdotorg has quit [Ping timeout: 272 seconds]
cosimone has quit [Quit: Quit.]
treflip has quit [Quit: WeeChat 2.6]
nmg has quit [Ping timeout: 244 seconds]
nmg has joined #lisp
Oddity_ has quit [Ping timeout: 260 seconds]
jprajzne has quit [Quit: jprajzne]
Oddity has joined #lisp
EvW has joined #lisp
Codaraxis_ has joined #lisp
Bourne has joined #lisp
bocaneri has quit [Ping timeout: 240 seconds]
skapata has left #lisp ["Ĝis"]
Inline has quit [Ping timeout: 244 seconds]
Codaraxis has quit [Ping timeout: 260 seconds]
treflip has joined #lisp
iAmDecim has joined #lisp
davepdotorg has joined #lisp
jprajzne has joined #lisp
davepdotorg has quit [Ping timeout: 246 seconds]
toorevitimirp has joined #lisp
terpri has quit [Ping timeout: 260 seconds]
terpri has joined #lisp
orivej has quit [Ping timeout: 240 seconds]
orivej has joined #lisp
terpri_ has joined #lisp
terpri has quit [Read error: Connection reset by peer]
gaqwas has quit [Remote host closed the connection]
jprajzne has quit [Quit: jprajzne]
terpri has joined #lisp
terpri_ has quit [Ping timeout: 260 seconds]
jprajzne has joined #lisp
treflip has quit [Quit: WeeChat 2.6]
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
iAmDecim has quit [Ping timeout: 256 seconds]
terpri_ has joined #lisp
terpri has quit [Ping timeout: 260 seconds]
gravicappa has quit [Ping timeout: 258 seconds]
toorevitimirp has quit [Quit: Konversation terminated!]
gravicappa has joined #lisp
terpri_ has quit [Ping timeout: 260 seconds]
davepdotorg has joined #lisp
Inline has joined #lisp
terpri has joined #lisp
hiroaki has joined #lisp
davepdotorg has quit [Ping timeout: 240 seconds]
ggole has quit [Quit: Leaving]
terpri_ has joined #lisp
terpri has quit [Ping timeout: 244 seconds]
yitzi has joined #lisp
narimiran has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
iAmDecim has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
aeth has quit [Ping timeout: 256 seconds]
aeth has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
Archenoth has quit [Read error: Connection reset by peer]
luckless has quit [Ping timeout: 240 seconds]
jprajzne has quit [Quit: jprajzne]
luckless has joined #lisp
Archenoth has joined #lisp
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
EvW has quit [Ping timeout: 260 seconds]
luckless has quit [Remote host closed the connection]
luckless has joined #lisp
yitzi has quit [Read error: Connection reset by peer]
progfun has joined #lisp
narimiran has quit [Quit: leaving]
Krystof has joined #lisp
simendsjo has joined #lisp
EvW has joined #lisp
wsinatra has quit [Quit: WeeChat 2.9]
simendsjo has quit [Quit: ERC (IRC client for Emacs 27.1)]
terpri_ has quit [Remote host closed the connection]
simendsjo has joined #lisp
terpri_ has joined #lisp
random-nick has quit [Ping timeout: 260 seconds]
wsinatra_ has quit [Ping timeout: 264 seconds]
shka_ has quit [Ping timeout: 246 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
random-nick has joined #lisp
saitousama has joined #lisp
Blukunfando has quit [Remote host closed the connection]
Blukunfando has joined #lisp
wsinatra_ has joined #lisp
davepdotorg has joined #lisp
snowyfox has joined #lisp
davepdotorg has quit [Ping timeout: 246 seconds]
bilegeek has joined #lisp
mindCrime_ has joined #lisp
gravicappa has quit [Ping timeout: 240 seconds]
markoong has joined #lisp
jprajzne has joined #lisp
random-nick has quit [Ping timeout: 264 seconds]
mfiano has quit [Quit: WeeChat 2.9]
mfiano has joined #lisp
dominic34 has quit [Quit: dominic34]
aaaaaa has quit [Quit: leaving]
iAmDecim has quit [Ping timeout: 258 seconds]
lavaflow has quit [Quit: l8r]
Oladon has joined #lisp
Aurora_iz_kosmos has joined #lisp
Aurora_v_kosmose has quit [Quit: Пока, мир.]
Aurora_iz_kosmos is now known as Aurora_v_kosmose
lavaflow has joined #lisp
wsinatra has joined #lisp
karlosz has quit [Quit: karlosz]
karlosz has joined #lisp
rumbler31 has quit [Ping timeout: 246 seconds]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
Bourne has quit [Read error: Connection reset by peer]
jprajzne has joined #lisp
progfun has quit [Ping timeout: 260 seconds]
galex-713 has quit [Ping timeout: 246 seconds]
galex-713 has joined #lisp
PuercoPop has quit [Read error: Connection reset by peer]
snowyfox has quit []
snowyfox has joined #lisp
sjl_ has quit [Ping timeout: 256 seconds]
simendsjo has quit [Ping timeout: 256 seconds]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
pve has quit [Quit: leaving]
Oladon has quit [Quit: Leaving.]
sr-hm has quit [Read error: Connection reset by peer]
srhm has joined #lisp
Bourne has joined #lisp
jprajzne has quit [Quit: jprajzne]
lavaflow has quit [Quit: WeeChat 2.9]
lavaflow has joined #lisp
skapata has joined #lisp
skapata has left #lisp [#lisp]
akoana has left #lisp ["Leaving"]
jprajzne has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
karlosz has quit [Quit: karlosz]
Oladon has joined #lisp
<mathrick> so what's up with sbcl.org? It's been down for a while it seems
markoong has quit [Ping timeout: 258 seconds]
<mathrick> is there any reason I'd be getting "bogus DEFPACKAGE option: :LOCAL-NICKNAMES" with SBCL 2.0.7? :PACKAGE-LOCAL-NICKNAMES is in *FEATURES*
<mathrick> oh, I messed up the syntax, nevermind
mangoicedtea has joined #lisp
Jesin has quit [Quit: Leaving]