ChanServ 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/>
psilotorp has quit [Remote host closed the connection]
eta has quit [K-Lined]
random-nick has quit [Ping timeout: 260 seconds]
igemnace has quit [Remote host closed the connection]
yitzi has joined #lisp
skapata has quit [Ping timeout: 250 seconds]
Noisytoot has quit [Quit: ZNC 1.8.2 - https://znc.in]
Noisytoot has joined #lisp
xkapastel has quit []
dhil has quit [Ping timeout: 240 seconds]
aeth has quit [Ping timeout: 260 seconds]
ralt has quit [Quit: Connection closed for inactivity]
aeth has joined #lisp
galex-713 has quit [Ping timeout: 245 seconds]
whitgreenlghtsbr has quit [Quit: EXIT]
whitgreenlghtsbr has joined #lisp
mathrick has quit [Ping timeout: 240 seconds]
luckless_ has joined #lisp
luckless has quit [Ping timeout: 240 seconds]
klltkr has quit [Ping timeout: 258 seconds]
frost-lab has joined #lisp
frost-lab has quit [Client Quit]
frost-lab has joined #lisp
hineios4 has joined #lisp
hineios has quit [Ping timeout: 260 seconds]
hineios4 is now known as hineios
yoonkn has joined #lisp
homonyms has joined #lisp
<beach> Good morning everyone!
<jcowan> "Officially moved" is not a coherent concept
<jcowan> beach: I've read your paper on updating the ANS with interest
<beach> The WSCL stuff?
<beach> Oh, no, I think I know what you mean.
<beach> OK.
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
<beach> Yes.
<beach> I take it you have some remarks, yes?
<jcowan> It's based, as far as I can tell, on a "consensus between implmenters" model of standardization.
<beach> Oh? That's an interesting way of viewing it.
<jcowan> However, it does not consider the "contract between users and implmenters model."
<jcowan> As the C++ committee wrote: "A standard is a contract between implementers and users, to make it possible for users to write portable code. It's supposed to say what implementers are permitted to do, what they're required to do, and what users can and can't count on."
akoana has quit [Quit: leaving]
<beach> I am not sure I had that level of ambition when I wrote that page.
<beach> I merely wanted to explain to newbies what the situation for Common Lisp is.
* jcowan nods
<jcowan> Fair enough.
homonyms has quit [Remote host closed the connection]
orivej has joined #lisp
yoonkn has quit [Quit: ERC (IRC client for Emacs 28.0.50)]
<johnjay> the c/c++ thing as i understand it does a little of both
<johnjay> having a "standard" and then adding in features to it when they get popular enough
<johnjay> i suppose if one wanted to take this seriously you could implement a new version standard every decade indefinitely
<jcowan> indeed
<jcowan> Which is not necessarily a bad thing. Of course it takes time for implementations to catch up, although new implementation will tend to adopt the most recent version: at least that's been the experience with R7RS Scheme, which used the contract model, as opposed to R6 which used the consensus model
<jcowan> Another line from the C committee: "Existing code matters, existing implementations do not."
<johnjay> what is that part it keeps hinting at about adding a feature making the compiler impossible to optimize?
<johnjay> it mentioned eval and lexical environments but are there others
<jcowan> I've found that sort of thing when diggimng through old Lisps
<jcowan> or newer lisps based on the old ones
<johnjay> existing code matters. but i wouldn't say over everything else
<beach> johnjay: The Common Lisp standard was carefully crafted so that they knew that the features would allow for a compiler to generate good code.
<johnjay> i see
<beach> johnjay: When random newbies without any training in language design or compiler design suggest additions to the standard, they do not take stuff like that into account.
<jcowan> At the time, with AOT compilers and slow computers
<|3b|> specifying things that might not match a particular CPU architecture can be hard to optimize
<johnjay> well that's the other thing, hardware capabilities change and that does matter
<beach> johnjay: Another simple issue may be that the standard does not allow the user to redefine standard functions.
<|3b|> (which is a common reason for undefined behavior in C for example)
<johnjay> it's not really a convincing argument to say "this feature could be added now with modern hardware but we don't want to."
<beach> johnjay: If it did, then the compiler could not inline any standard functions.
<beach> johnjay: No, it's not a simple thing about faster hardware.
<beach> johnjay: It has to do with whether an entire host of compiler optimization techniques are even possible at all.
<johnjay> beach: if the user is specifying that ability then shouldn't they be willing to take the consequences of it?
<beach> johnjay: And that's what your typical newbie doesn't understand, because your typical newbie has no training in those domains whatsoever.
ahungry has joined #lisp
<jcowan> There are a lot of stupid UBs in C
<beach> johnjay: I am not expressing myself very well. Let me give you an example from the EVAL thing, OK?
<|3b|> yeah, "we hate users" is another common reason for UB in C :/
<beach> johnjay: Let's say the standard allows for EVAL to have access to lexical environment...
<jcowan> Tis is my favorite bit: "A nonempty source file does not end in a new-line character which is not immediately preceded by a backslash character or ends in a partial preprocessing token or comment [is undefined behavior]"
<beach> johnjay: Then the programmer writes (let ((x 234)) ... (eval (read)))
<beach> johnjay: Since the compiler can't know what will be evaluated, it may contain a reference to X, so even though X could be optimized away, the compiler can't do that.
<jcowan> Because at the time of standardization, two compilers treated that obvious error differently, so it was stamped "UB" instead of fixing it.
<beach> johnjay: So it has nothing to do with what the user does. It has to do with what the standard allows. The compiler writer must take into account the possibility of the user writing any conforming code.
johnjay has quit [Ping timeout: 260 seconds]
<beach> *sigh* another wasted attempt to get important information across.
<jcowan> Isn't that what teachers signed up for?
<jcowan> (My parents were university professors.)
<nij> lol.. true
<beach> jcowan: It appears to be the reality, but I am not sure that fact is known when people "sign up".
<jcowan> I suppose. I got to see the underside of the profession from an early age.
<nij> Sometimes the message got passed through, and that could be exciting.
<jcowan> Anyway, a "ping timeout" doesn't mean johnjay left in disgust; it's a network connectivity issue.
<beach> Indeed.
johnjay has joined #lisp
klltkr has joined #lisp
<beach> johnjay: Does that make sense to you?
<johnjay> no i was disconnected the whole time
<johnjay> sorry
<nij> You can read the log here if interested: https://irclog.tymoon.eu/freenode/%23lisp
gxt has quit [Remote host closed the connection]
gxt has joined #lisp
Sheilong has quit []
whitgreenlghtsbr has quit [Ping timeout: 260 seconds]
<jcowan> Imagine trying to implement Picolisp shallowly on top of CL or Scheme. All looks well until you find that NIL is not only false and (), it is also "", least fixnum, an EOF object, stdin, stdout, NaN, the top of the type hierarchy, and "no value".
Codaraxis_ has joined #lisp
<jcowan> Numbers are also functions, strings are symbols, the list goes on
<beach> It sounds like an exercise I would rather not attempt.
<jcowan> So I concluded
<jcowan> Of course you could write a picolisp interpreter in CL, but that would provide little advantage over writing it in C.
<beach> Some advantage, maybe. But the "shallow" part is gone.
Codaraxis has quit [Ping timeout: 260 seconds]
ahungry has quit [Remote host closed the connection]
froggey has quit [Ping timeout: 246 seconds]
froggey has joined #lisp
<johnjay> i was wondering the other day why not make all those things nil
<johnjay> or at least for purposes of looping
<johnjay> by the way my internet is unstable so i randomly disconnect sometimes
<johnjay> unfortunately as in this case it can happen at awkward times!
<johnjay> beach: that example makes me think of the -O0,-O1, etc flags in C, where you can explicitly ask for what optimizations to turn on or disallow
anticrisis_ has joined #lisp
<johnjay> meaning if the user *wants* slow or inefficient code... why not let them
anticrisis has quit [Ping timeout: 240 seconds]
frost-lab has quit [Quit: Connection closed]
killsushi has joined #lisp
frost-lab has joined #lisp
frost-lab has quit [Client Quit]
<beach> johnjay: That's not the choice that was made. I suspect that, since most application programmers have no clue about language design or compiler design, they would not understand the trade-offs.
<beach> ... and then they would complain that "Lisp is slow".
<remexre> maybe missing some context, but
<remexre> found it really interesting that (safety 0) isn't "anything goes"
<remexre> but rather that the spec enumerates (rather subtly, unfortunately) what behavior can do unfortunate things in the name of performance
<remexre> and I guess, that it isn't "any type error"
waleee-cl has quit [Quit: Connection closed for inactivity]
<nij> #quit
nij has quit [Quit: #lisp]
justBull has quit [Remote host closed the connection]
justBull has joined #lisp
sauvin has joined #lisp
gzj has joined #lisp
andrei-n has joined #lisp
frost-lab has joined #lisp
frost-lab has quit [Client Quit]
frost-lab has joined #lisp
tkd has quit [Quit: WeeChat 1.9.1]
Oladon has joined #lisp
green__ has quit [Ping timeout: 260 seconds]
sympt has joined #lisp
whitgreenlghtsbr has joined #lisp
gzj has quit [Ping timeout: 240 seconds]
dtman34 has quit [Ping timeout: 240 seconds]
DHARMAKAYA has quit [Quit: Turning off a portion of this simulation.]
albusp has quit [Ping timeout: 246 seconds]
cage_ has joined #lisp
Jesin has quit [Ping timeout: 265 seconds]
devrtz has quit [Ping timeout: 263 seconds]
devrtz has joined #lisp
notzmv has quit [Ping timeout: 263 seconds]
dhil has joined #lisp
anticrisis_ has quit [Read error: Connection reset by peer]
sympt_ has joined #lisp
raeda_ has joined #lisp
raeda has quit [Write error: Broken pipe]
Lord_of_Life has quit [Excess Flood]
sympt has quit [Remote host closed the connection]
edgar-rft has quit [Remote host closed the connection]
Lord_of_Life has joined #lisp
edgar-rft has joined #lisp
john2gb0 has quit [Ping timeout: 240 seconds]
froggey has quit [Ping timeout: 246 seconds]
hendursa1 has joined #lisp
hendursaga has quit [Ping timeout: 240 seconds]
Inline has joined #lisp
Inline has quit [Max SendQ exceeded]
Inline has joined #lisp
Inline has quit [Remote host closed the connection]
Inline has joined #lisp
Inline has quit [Max SendQ exceeded]
Inline has joined #lisp
creat has quit [*.net *.split]
splittist has quit [*.net *.split]
ecraven has quit [*.net *.split]
ark has quit [*.net *.split]
easye has quit [*.net *.split]
midre has quit [*.net *.split]
thonkpod has quit [*.net *.split]
spikhoff has quit [*.net *.split]
b20n has quit [*.net *.split]
luna_is_here has quit [*.net *.split]
buoy49 has quit [*.net *.split]
jackhill has quit [*.net *.split]
jsatk has quit [*.net *.split]
fe[nl]ix has quit [*.net *.split]
ioa has quit [*.net *.split]
Blkt has quit [*.net *.split]
Yardanico has quit [*.net *.split]
shrysr_ has quit [*.net *.split]
ozzloy has quit [*.net *.split]
thonkpod has joined #lisp
ecraven has joined #lisp
creat has joined #lisp
buoy49 has joined #lisp
ark has joined #lisp
spikhoff has joined #lisp
splittist has joined #lisp
b20n has joined #lisp
midre has joined #lisp
luna_is_here has joined #lisp
easye has joined #lisp
ioa has joined #lisp
jsatk has joined #lisp
jackhill has joined #lisp
shrysr_ has joined #lisp
fe[nl]ix has joined #lisp
Yardanico has joined #lisp
Blkt has joined #lisp
rkv[m] has quit [Ping timeout: 245 seconds]
xzax_[m] has quit [Ping timeout: 245 seconds]
agam_b[m] has quit [Ping timeout: 246 seconds]
dnjp[m] has quit [Ping timeout: 246 seconds]
nlif[m] has quit [Ping timeout: 245 seconds]
Gnuxie[m] has quit [Ping timeout: 246 seconds]
akanouras has quit [Ping timeout: 245 seconds]
e[m]1 has quit [Ping timeout: 246 seconds]
katco has quit [Ping timeout: 246 seconds]
tweet[m] has quit [Ping timeout: 246 seconds]
ms[m] has quit [Ping timeout: 245 seconds]
logenkain[m] has quit [Ping timeout: 245 seconds]
dieggsy has quit [Ping timeout: 246 seconds]
dmiles[m] has quit [Ping timeout: 276 seconds]
susam has quit [Ping timeout: 276 seconds]
Wikipedia[m] has quit [Ping timeout: 276 seconds]
artemon has quit [Ping timeout: 246 seconds]
kreyren has quit [Ping timeout: 246 seconds]
MrtnDk[m] has quit [Ping timeout: 276 seconds]
loke[m] has quit [Ping timeout: 245 seconds]
etimmons has quit [Ping timeout: 245 seconds]
hegz has quit [Ping timeout: 246 seconds]
ThaEwat has quit [Ping timeout: 246 seconds]
infra_red[m] has quit [Ping timeout: 246 seconds]
muh[m] has quit [Ping timeout: 276 seconds]
theo[m] has quit [Ping timeout: 276 seconds]
Duuqnd has quit [Ping timeout: 246 seconds]
klltkr has quit [Ping timeout: 245 seconds]
froggey has joined #lisp
klltkr has joined #lisp
Gnuxie[m] has joined #lisp
aartaka has joined #lisp
Inline has quit [Quit: Leaving]
Inline has joined #lisp
dieggsy has joined #lisp
logenkain[m] has joined #lisp
akanouras has joined #lisp
katco has joined #lisp
heisig has joined #lisp
john2gb0 has joined #lisp
ebrasca has joined #lisp
dmiles[m] has joined #lisp
susam has joined #lisp
pve has joined #lisp
pve_ has joined #lisp
hhdave has quit [Ping timeout: 265 seconds]
etimmons has joined #lisp
pve has quit [Ping timeout: 240 seconds]
pve_ is now known as pve
artemon has joined #lisp
andreyorst has quit [Quit: WeeChat 3.1]
hegz has joined #lisp
ThaEwat has joined #lisp
Jesin has joined #lisp
notzmv has joined #lisp
surabax has joined #lisp
surabax has quit [Client Quit]
vegansbane69636 has quit [Quit: The Lounge - https://thelounge.chat]
tfb has joined #lisp
gaqwas has joined #lisp
v88m has quit [Ping timeout: 246 seconds]
andrei-n has quit [Quit: Leaving]
Oladon has quit [Quit: Leaving.]
ecbrown has quit [Remote host closed the connection]
nullx002 has joined #lisp
gareppa has joined #lisp
elderK has quit [Quit: Connection closed for inactivity]
kopiyka has quit [Remote host closed the connection]
kopiyka has joined #lisp
Spawns_Carpeting has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
Spawns_Carpeting has joined #lisp
hiroaki has joined #lisp
Spawns_Carpeting has quit [Remote host closed the connection]
Spawns_Carpeting has joined #lisp
Spawns_Carpeting has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
Spawns_Carpeting has joined #lisp
Spawns_Carpeting has quit [Excess Flood]
Spawns_Carpeting has joined #lisp
random-nick has joined #lisp
Inline has quit [Remote host closed the connection]
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
Inline has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
Inline has quit [Remote host closed the connection]
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
yitzi has quit [Quit: Leaving]
tfb has quit [Remote host closed the connection]
Inline has joined #lisp
tfb has joined #lisp
tfb has quit [Ping timeout: 260 seconds]
orivej has quit [Ping timeout: 246 seconds]
Spawns_Carpeting has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
Spawns_Carpeting has joined #lisp
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
klltkr has quit [Ping timeout: 245 seconds]
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
tfb has quit [Remote host closed the connection]
tfb has joined #lisp
gareppa has quit [Quit: Leaving]
klltkr has joined #lisp
klltkr has quit [Client Quit]
nullx002 has quit [Quit: qicr for android: faster and better]
selwyn has joined #lisp
selwyn has quit [Remote host closed the connection]
selwyn has joined #lisp
selwyn has quit [Client Quit]
amerlyq has joined #lisp
selwyn has joined #lisp
scymtym has quit [Remote host closed the connection]
selwyn has quit [Quit: Leaving]
selwyn has joined #lisp
selwyn has quit [Remote host closed the connection]
hhdave has joined #lisp
selwyn has joined #lisp
selwyn has quit [Client Quit]
selwyn has joined #lisp
yitzi has joined #lisp
selwyn has quit [Quit: Leaving]
selwyn has joined #lisp
selwyn has quit [Remote host closed the connection]
selwyn has joined #lisp
gareppa has joined #lisp
scymtym has joined #lisp
epony has quit [Remote host closed the connection]
ldbeth has joined #lisp
epony has joined #lisp
CrashTestDummy2 has joined #lisp
sympt__ has joined #lisp
CrashTestDummy3 has quit [Ping timeout: 240 seconds]
sympt_ has quit [Ping timeout: 246 seconds]
CrashTestDummy3 has joined #lisp
kevingal has quit [Remote host closed the connection]
ukari has quit [Remote host closed the connection]
ukari has joined #lisp
CrashTestDummy2 has quit [Ping timeout: 240 seconds]
hendursa1 has quit [Quit: hendursa1]
hendursaga has joined #lisp
selwyn_ has joined #lisp
hiroaki has quit [Ping timeout: 258 seconds]
ldbeth has quit [Remote host closed the connection]
ldbeth has joined #lisp
selwyn has quit [Ping timeout: 240 seconds]
selwyn_ has quit [Read error: Connection reset by peer]
ldbeth has quit [Ping timeout: 246 seconds]
selwyn has joined #lisp
gareppa has quit [Quit: Leaving]
frost-lab has quit [Quit: Connection closed]
selwyn has quit [Read error: Connection reset by peer]
selwyn has joined #lisp
klltkr has joined #lisp
wydfre has joined #lisp
gareppa has joined #lisp
selwyn has quit [Quit: Leaving]
selwyn has joined #lisp
selwyn has quit [Read error: Connection reset by peer]
pyc has joined #lisp
spal has joined #lisp
spal has left #lisp [#lisp]
pyc_ has joined #lisp
spal has joined #lisp
gareppa has quit [Quit: Leaving]
spal has left #lisp [#lisp]
gareppa has joined #lisp
selwyn has joined #lisp
Krystof has quit [Ping timeout: 240 seconds]
cage_ has left #lisp ["Killed buffer"]
hiroaki has joined #lisp
eden has joined #lisp
hiroaki has quit [Ping timeout: 265 seconds]
akoana has joined #lisp
hiroaki has joined #lisp
ebrasca has quit [Remote host closed the connection]
ebrasca has joined #lisp
ebrasca has quit [Remote host closed the connection]
ebrasca has joined #lisp
waleee-cl has joined #lisp
ebrasca has quit [Remote host closed the connection]
ebrasca has joined #lisp
ebrasca has quit [Remote host closed the connection]
ebrasca has joined #lisp
ebrasca has quit [Remote host closed the connection]
gareppa has quit [Quit: Leaving]
gareppa has joined #lisp
v88m has joined #lisp
yitzi has quit [Quit: Leaving]
yitzi has joined #lisp
DHARMAKAYA has joined #lisp
ebrasca has joined #lisp
pyc_ has quit [Quit: Connection closed]
eden has quit [Ping timeout: 240 seconds]
ebrasca has quit [Ping timeout: 246 seconds]
ebrasca has joined #lisp
yitzi has quit [Quit: Leaving]
yitzi has joined #lisp
ebrasca has quit [Remote host closed the connection]
ebrasca has joined #lisp
ebrasca has quit [Remote host closed the connection]
ebrasca has joined #lisp
cage_ has joined #lisp
gareppa has quit [Quit: Leaving]
ebrasca has quit [Remote host closed the connection]
ebrasca has joined #lisp
ebrasca has quit [Remote host closed the connection]
orivej has joined #lisp
ebrasca has joined #lisp
spal has joined #lisp
ebrasca has quit [Remote host closed the connection]
ebrasca has joined #lisp
thmprover has joined #lisp
ebrasca has quit [Remote host closed the connection]
yitzi has quit [Quit: Leaving]
yitzi has joined #lisp
nullman` has joined #lisp
nullman has quit [Ping timeout: 260 seconds]
dtman34 has joined #lisp
thmprover has quit [Quit: This parting was well made]
dtman34 has quit [Ping timeout: 260 seconds]
dtman34 has joined #lisp
nullx002 has joined #lisp
klltkr has quit [Ping timeout: 250 seconds]
yitzi has quit [Quit: Leaving]
yitzi has joined #lisp
kevingal has joined #lisp
selwyn has quit [Read error: Connection reset by peer]
klltkr has joined #lisp
nullx002 has quit [Quit: qicr for android: faster and better]
nullx002 has joined #lisp
ukari has quit [Remote host closed the connection]
Colleen has quit [Quit: Colleen]
Colleen has joined #lisp
yitzi has quit [Quit: Leaving]
dtman34 has quit [Ping timeout: 260 seconds]
tfeb has joined #lisp
Krystof has joined #lisp
dtman34 has joined #lisp
tfb has quit [Ping timeout: 246 seconds]
chrpape has quit [Quit: ERC (IRC client for Emacs 25.2.2)]
theruran has joined #lisp
shifty has joined #lisp
yitzi has joined #lisp
theruran has quit []
dtman34 has quit [Ping timeout: 260 seconds]
dtman34 has joined #lisp
motersen has quit [Remote host closed the connection]
motersen has joined #lisp
jonatack has quit [Quit: jonatack]
jonatack has joined #lisp
shifty has quit [Ping timeout: 265 seconds]
cage_ has quit [Remote host closed the connection]
anticrisis has joined #lisp
amerlyq has quit [Quit: amerlyq]
selwyn has joined #lisp
raeda_ has quit [Quit: Leaving]
CrashTestDummy3 has quit [Quit: Leaving]
harovali has joined #lisp
<harovali> hi there, let's say I want to install sly, and I have slime installed. Do you think it is good idea to delete slime beforhand? If so, how it is safe to delete slime?
tfeb has quit []
<brass> harovali: What are you worried is going to happen when you delete slime?
killsushi has quit [Quit: Leaving]
yitzi has quit [Quit: Leaving]
<harovali> brass: no, that should not worry. Just that I'm lost as of deleting something I installed maybe via asdf , maybe via quicklisp, maybe another way.
<harovali> brass, addingly, I wonder if people delete slime when puttin sly, I don't know, I just supose they do that
<brass> I use sly, it works well
<harovali> brass: thanks
<brass> The lisp code used by slime is kept inside the emacs package
<brass> So when you uninstall it, it's removed
<harovali> brass that's interesting, thanks too.
<brass> np
nullx002 has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 260 seconds]
t1054Gues has quit [Quit: Reconnecting]
t1054Gues has joined #lisp
harovali has quit [Remote host closed the connection]
Inline has quit [Quit: Leaving]
CrashTestDummy has joined #lisp
arduo has joined #lisp
Inline has joined #lisp
DHARMAKAYA has quit [Quit: Turning off a portion of this simulation.]
DHARMAKA_ has joined #lisp
heisig has quit [Quit: Leaving]
albusp has joined #lisp
arduo has quit [Remote host closed the connection]
DHARMAKA_ has quit [Quit: Turning off a portion of this simulation.]
yitzi has joined #lisp
Sheilong has joined #lisp
selwyn has quit [Read error: Connection reset by peer]
aeth has quit [Ping timeout: 265 seconds]
aeth has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
aartaka has joined #lisp
yitzi has quit [Quit: Leaving]
kevingal has quit [Remote host closed the connection]
aeth has quit [Ping timeout: 260 seconds]
lottaquestions has quit [Quit: Konversation terminated!]
lottaquestions has joined #lisp
aeth has joined #lisp
yitzi has joined #lisp
pve has quit [Quit: leaving]
mrcom has quit [Quit: Leaving]
mrcom has joined #lisp
mrcom has quit [Client Quit]
mrcom has joined #lisp
gaqwas has quit [Ping timeout: 260 seconds]
mrcom has quit [Quit: Leaving]
Inline has quit [Remote host closed the connection]
Inline has joined #lisp
mrcom has joined #lisp
aartaka_d has joined #lisp
mrcom has quit [Remote host closed the connection]
aartaka has quit [Ping timeout: 260 seconds]
mrcom has joined #lisp
random-nick has quit [Ping timeout: 240 seconds]
mrchampion has quit [Ping timeout: 246 seconds]