jackdaniel changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language | <http://cliki.net/> <https://irclog.tymoon.eu/freenode/%23lisp> <https://irclog.whitequark.org/lisp> <http://ccl.clozure.com/irc-logs/lisp/> | SBCL 1.5.4, CMUCL 21b, ECL 16.1.3, CCL 1.11.5, ABCL 1.5.0
karlosz has joined #lisp
Codaraxis has joined #lisp
<analogue> Evening!
EvW has quit [Ping timeout: 240 seconds]
Codaraxis has quit [Quit: Leaving]
Codaraxis has joined #lisp
GuerrillaMonkey has joined #lisp
karlosz has quit [Quit: karlosz]
Involuntary has quit [Ping timeout: 265 seconds]
karlosz has joined #lisp
hvxgr has quit [Remote host closed the connection]
ealfonso has quit [Ping timeout: 240 seconds]
karlosz has quit [Quit: karlosz]
karlosz has joined #lisp
cods has quit [Ping timeout: 268 seconds]
karlosz has quit [Quit: karlosz]
permagreen has quit [Remote host closed the connection]
hvxgr has joined #lisp
tourjin has joined #lisp
<tourjin> i don't see sbcl in cygwin setup. should I install it from out of setup for cygwin?
<no-defun-allowed> http://sbcl.org/platform-table.html has a Windows installer for you.
<DrDuck> Can I expect Winston and Horn's code from their 'Lisp' book to compile even though the book was published in '89?
<tourjin> cygwin and windows10 considered same?
<Bike> DrDuck: if it doesn't have any extensions it's pretty likely to work or mostly work
<DrDuck> Can you tell Common Lisp to manually garbage collect an object?
<Bike> no, the garbage collector is not standard. also, if you can refer to an object and pass it to such a function, it's not garbage
<no-defun-allowed> Well, if there was some function for it, calling it would create a reference to that object, so no.
<no-defun-allowed> But (trivial-garbage:gc :full t) will do a full garbage collection (if you load the trivial-garbage system).
<DrDuck> :(
<Bike> what are you trying to do?
<no-defun-allowed> It would be terribly inefficient to garbage collect only one object, when a significant proportion of the heap is scanned.
<DrDuck> i want to force the garbage collector to clear up some memory explicitly when i tell it to
<Bike> well, as ddefun said, the implementation usually has a hook to run the collector manually
<Bike> but are you running out of memory or something?
<no-defun-allowed> How would you pick what memory to clear?
makomo has quit [Ping timeout: 245 seconds]
<DrDuck> just want to experiment with it
<Bike> in a garbage collected system memory is not really a concern directly, so you should only need to worry about it if you need to tune performance or the like
<Bike> unlike C where it's core to the semantics
xkapastel has quit [Quit: Connection closed for inactivity]
<Bike> especially, you can't do something like (free x) (print x) like you can in C (i mean, it's invalid, but you can write it)
lucasb has quit [Quit: Connection closed for inactivity]
notzmv has joined #lisp
permagreen has joined #lisp
schjetne has joined #lisp
tourjin has quit [Ping timeout: 240 seconds]
schjetne has quit [Ping timeout: 244 seconds]
<p_l> DrDuck: with automatic memory management, usually the only thing you can do is to explicitly trigger the GC, but not tell it to collect something. There are ways to handle that, though, like object caches and sometimes there are ways to get manual memory control
<analogue> Hey all!
<White_Flame> there's also dynamic-extent, which basically uses stack storage
<analogue> I'm looking into a Lisp family language to learn after using Racket some...
<p_l> yeah, dynamic-extent hints to compiler that the specified binding will have values that live only within scope
<analogue> What tends to be most used in industry, if anyone has a reccomendation?
<no-defun-allowed> This is #lisp, we do Common Lisp here, so CL is most used here. (:
<p_l> analogue: "industry" is notoriously bad guideline in Lisp case. Most visible popular stuff? Clojure and Racket. Hidden in weird places doing important work? Common Lisp and helluva lot of Scheme. With occassional throwback to pre-ZetaLisp days
<p_l> and by helluva lot of scheme I mean "significant portion of PS3 and PS4 consoles got to run a heavily Scheme-d software"
<analogue> Yeah, it's not particularly popular in general development stuff it seems
<analogue> I liked using racket in a class I took
<no-defun-allowed> Did you know...tinyscheme is used in macOS access control of some sort I forgot the name of?
<analogue> small languages are my fave though
<analogue> I see, thanks!
<p_l> analogue: the general guideline is that if you want to use Lisp (any lisp), take a task where nobody except you cares about language choice
<p_l> that's surprisingly common in enterprise software, where they pay you to solve a problem, and language is last thing they are going to inquire on so long as it works on their systems
<analogue> Lol
<p_l> macOS sandbox, iirc, uses Scheme48 in decision engine
<analogue> Good to know!
<analogue> Yeah, I think it seems most useful in research type cases
<p_l> analogue: drew doesn't show up here much anymore, but he talked about earning money mainly by making intranet web apps for various companies
<p_l> the companies didn't ask him to program in specific language, they asked him to solve a problem
<analogue> I see
<p_l> and sometimes you might even end up building a new language to fit their requirements, where Lisp makes a lot of things easier :)
<analogue> Contract work like tat appeals to me :)
* p_l once did, using Blockly as base
semz has quit [Ping timeout: 264 seconds]
<analogue> Most of my experience has been with medium sized older C++ codebases though so far
<p_l> analogue: one use case you might have is to introduce dynamic programming by end user to such a codebase
<p_l> ECL makes it probably even easier than most
<p_l> the aforementioned blockly use case? we pitched to client that they would be able to change processing equations/rules without having a java & PL/SQL expert come and recompile the program
<analogue> What differences are there between the dialects of Common Lisp?
<analogue> I see, that's pretty cool!
<analogue> I'm not familiar with blockly
<no-defun-allowed> There is only one Common Lisp, any differences are implementations.
<analogue> Gotcha
<p_l> well, with exception of Allegro's "modern mode" (lowercase, case-preserving), all important implementations comply with ANSI CL standard
<no-defun-allowed> The differences between those implementations include compilers and extensions (like exposing GC functions, FFI, threads, etc)
<p_l> the differences are in compiler capabilities, tooling, etc.
jiny has joined #lisp
<p_l> LW for example has pretty nice GUI library and AFAIK splendid delivery options (plus stuff like WHO-CALLS)
<ck_> what's special about lispworks who-calls?
<analogue> Scheme appeals to me the most I think, would you say it is much to transition between the languages?
<p_l> ck_: it exists :>
<ck_> p_l: but does it work differently than the slime xref equivalent?
<p_l> analogue: significant differences, IMO. CL has non-hygienic macros and doesn't care that much about text representation of code. ANSI CL is also much bigger standard by itself and thus a lot of things that are "every implementation is different" in Scheme are boringly standard in CL
<p_l> ck_: iirc, SLIME's doesn't support querying who call's function at point on all implementations
<analogue> I see
<analogue> Would you have any book reccomendations?
<p_l> minion: tell analogue about pcl
<minion> analogue: direct your attention towards pcl: pcl-book: "Practical Common Lisp", an introduction to Common Lisp by Peter Seibel, available at http://www.gigamonkeys.com/book/ and in dead-tree form from Apress (as of 11 April 2005).
<ck_> p_l: sure. I just wondered why you singled out the lispworks functionality -- perhaps because it works slightly differently or better.
<analogue> on CL or Scheme that is?
<p_l> minion: tell analogue about paip
<minion> analogue: paip: Paradigms of Artificial Intelligence Programming. More about Common Lisp than Artificial Intelligence. Now freely available at https://github.com/norvig/paip-lisp
<p_l> analogue: I don't have much on scheme, but "How to Design Programs" might be of interest
<analogue> Oh I was just looking through PCL!
<p_l> and of course the classic (light on Scheme, heavy on Computer Science) "Structure and Interpretation of Computer Programs"
<analogue> Actually, my AI class is using norvig's text
<analogue> I'm sure that will pair well!
<analogue> Got it
<analogue> Thanks, p_l!
semz has joined #lisp
vaporatorius has quit [Read error: Connection reset by peer]
vaporatorius has joined #lisp
vaporatorius has quit [Read error: Connection reset by peer]
analogue has quit [Quit: Leaving]
shifty has quit [Ping timeout: 268 seconds]
vaporatorius has joined #lisp
vaporatorius has quit [Read error: Connection reset by peer]
vaporatorius has joined #lisp
vaporatorius has quit [Read error: Connection reset by peer]
sjl has joined #lisp
GuerrillaMonkey has quit [Remote host closed the connection]
jiny has quit [Ping timeout: 245 seconds]
broccolistem has joined #lisp
weilawei has joined #lisp
risingbulge has joined #lisp
risingbulge has left #lisp [#lisp]
<beach> Good morning everyone!
broccolistem has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
elderK has joined #lisp
Codaraxis has quit [Read error: Connection reset by peer]
dddddd has quit [Remote host closed the connection]
Codaraxis has joined #lisp
Codaraxis has quit [Ping timeout: 244 seconds]
awolven has joined #lisp
_whitelogger has joined #lisp
Codaraxis has joined #lisp
nanoz has joined #lisp
gravicappa has joined #lisp
vaporatorius has joined #lisp
vaporatorius has quit [Read error: Connection reset by peer]
mindthelion has joined #lisp
techquila has quit [Ping timeout: 240 seconds]
ggole has joined #lisp
Nomenclatura has quit [Quit: q]
dale has quit [Quit: My computer has gone to sleep]
SaganMan has joined #lisp
Bike has quit [Quit: Lost terminal]
PuercoPope has joined #lisp
broccolistem has joined #lisp
_whitelogger has joined #lisp
shka_ has joined #lisp
refpga has quit [Remote host closed the connection]
jello_pudding has joined #lisp
Codaraxis_ has joined #lisp
Codaraxis has quit [Ping timeout: 264 seconds]
slyrus_ has quit [Quit: Leaving]
igemnace has quit [Quit: WeeChat 2.5]
defaultxr has quit [Ping timeout: 258 seconds]
ravenousmoose has joined #lisp
<thijso> morning
Codaraxis_ is now known as Codaraxis
<beach> Hello thijso.
mindthelion has quit [Read error: Connection reset by peer]
techquila has joined #lisp
techquila has quit [Max SendQ exceeded]
techquila has joined #lisp
refpga has joined #lisp
jonatack has quit [Ping timeout: 264 seconds]
TMA has joined #lisp
akoana has left #lisp ["Leaving"]
jello_pudding has quit [Remote host closed the connection]
schjetne has joined #lisp
jonatack has joined #lisp
ravenousmoose has quit [Ping timeout: 252 seconds]
jonatack_ has joined #lisp
jonatack_ has quit [Client Quit]
fraxamo has joined #lisp
jonatack has quit [Read error: Connection reset by peer]
makomo has joined #lisp
jonatack has joined #lisp
jonatack has quit [Client Quit]
jonatack has joined #lisp
cosimone has joined #lisp
Codaraxis has quit [Read error: Connection reset by peer]
momozor has joined #lisp
khisanth_ has quit [Ping timeout: 268 seconds]
<momozor> Hi, can I get some feedback of the code in https://github.com/momozor/Saurna/blob/master/src/main.lisp.
seok has quit [Remote host closed the connection]
momozor has quit [Quit: leaving]
khisanth_ has joined #lisp
Codaraxis has joined #lisp
Codaraxis has quit [Remote host closed the connection]
xkapastel has joined #lisp
shaakyamuni[m] has joined #lisp
SaganMan has quit [Ping timeout: 246 seconds]
varjag has joined #lisp
dddddd has joined #lisp
Lord_of_Life has joined #lisp
SaganMan has joined #lisp
scymtym has quit [Ping timeout: 268 seconds]
karswell has quit [Read error: No route to host]
lavaflow has quit [Ping timeout: 245 seconds]
cosimone has quit [Quit: Leaving]
ravenousmoose has joined #lisp
nanoz has quit [Ping timeout: 245 seconds]
ravenousmoose has quit [Ping timeout: 276 seconds]
scymtym has joined #lisp
cods has joined #lisp
hiroaki has joined #lisp
nowhere_man has joined #lisp
lemoinem has quit [Remote host closed the connection]
zigpaw has quit [Quit: Vanishing into darkness in 1..2..3...]
zigpaw has joined #lisp
nowhere_man has quit [Read error: Connection reset by peer]
ravenousmoose has joined #lisp
Necktwi has joined #lisp
nowhere_man has joined #lisp
nowhere_man has quit [Ping timeout: 264 seconds]
nowhereman has joined #lisp
Inline__ has joined #lisp
Inline has quit [Ping timeout: 264 seconds]
puchacz has joined #lisp
jonatack has quit [Ping timeout: 245 seconds]
nowhereman has quit [Ping timeout: 276 seconds]
<puchacz> hi, what's the recommended library that implements curve fitting?
<puchacz> for example, for exponential decay I can write in Mathematica: FindFit[points, a Exp[-x b], {a, b}, x]
<puchacz> and it t tells me {a -> 1.00123, b -> 0.0365592}
Necktwi has quit [Ping timeout: 246 seconds]
shifty has joined #lisp
nowhere_man has joined #lisp
t58 has joined #lisp
Necktwi has joined #lisp
<thijso> Shinmera: what implementations have you tested verbose on? On SBCL my code runs without errors, but on ECL it looks like verbose is messing with other threads, namely a thread running a usocket UDP server. After a few seconds that thread dies with an unknown error...
<thijso> And this is only when adding in verbose for logging. Without it, the code works on ECL as expected.
EvW has joined #lisp
<Shinmera> Hmm.
<Shinmera> first I hear of this. Do you have any information beyond that it crashes?
<thijso> Well, the error I get is kinda weird as well: "The condition Not a condition type: NIL occurred with errno: 0." and " [Condition of type USOCKET:UNKNOWN-ERROR]"
<Shinmera> Verbose does use a background thread to do the logging in. ECL might not like it if it's printing from there and from another thread at the same time.
<Shinmera> But beyond that I don't know.
<thijso> Hmm...
<thijso> Well, now the question becomes, do I start digging, or give up and just do my own debug logging... ;)
<thijso> Hey... the main thread was still running and now it says: "Attempted to recursively lock #<lock (nonrecursive) "MESSAGE-LOCK" 0x55a7b1b55360> which is already owned by #<process "verbose-thread" 0x55a7b0a2b400>
<Shinmera> Well, that's more interesting.
<thijso> I've seen that one before, too
<Shinmera> Only idea I have about that is that condition-wait doesn't release the lock for some reason
<Shinmera> Lemme see if I can reproduce
igemnace has joined #lisp
<thijso> Sure. I'm gonna be away for couple of hours, but I'll check the logs when I get back.
<Shinmera> Okey, got it.
schjetne has quit [Ping timeout: 258 seconds]
<Shinmera> Well, I get the failure, but not why it happens
nanoz has joined #lisp
analogue has joined #lisp
jonatack has joined #lisp
<Shinmera> It seems like ECL is, under some circumstances, returning NIL from condition-wait with the lock still held.
<Shinmera> thijso: Fixed via workaround in e47f34a
Bike has joined #lisp
shifty has quit [Ping timeout: 268 seconds]
shifty has joined #lisp
xkapastel has quit [Quit: Connection closed for inactivity]
defaultxr has joined #lisp
EvW has quit [Ping timeout: 250 seconds]
EvW has joined #lisp
Necktwi has quit [Quit: leaving]
schjetne has joined #lisp
aautcsh has joined #lisp
knicklux has joined #lisp
SaganMan has quit [Quit: WeeChat 1.6]
Necktwi has joined #lisp
lucasb has joined #lisp
nowhere_man has quit [Ping timeout: 245 seconds]
Necktwi has quit [Ping timeout: 245 seconds]
Necktwi has joined #lisp
nowhere_man has joined #lisp
schjetne has quit [Ping timeout: 258 seconds]
schjetne has joined #lisp
X-Scale has joined #lisp
gigetoo has quit [Ping timeout: 268 seconds]
gigetoo has joined #lisp
red-dot has joined #lisp
cosimone has joined #lisp
schjetne has quit [Ping timeout: 268 seconds]
cosimone has quit [Quit: Leaving]
pnp has joined #lisp
v88m has quit [Ping timeout: 245 seconds]
xkapastel has joined #lisp
dxtr has quit [Ping timeout: 246 seconds]
dxtr has joined #lisp
<thijso> Shinmera: great, I'll check it out
zch has joined #lisp
McParen has joined #lisp
<thijso> The 'attempted to recursively lock..' error seems to be gone, indeed, but I still get the 'Condition of type: UNKNOWN-ERROR' at the start in the udp processing thread, Shinmera... Looks like I'll need to do some debugging there
v88m has joined #lisp
puchacz has quit [Quit: Connection closed for inactivity]
<Shinmera> I don't know what that's about, so I can't help you there.
igemnace has quit [Quit: WeeChat 2.5]
<thijso> The error message with that one is: "The condition Not a condition type: NIL occurred with errno: 0." Somehow the udp thread is getting signalled with a condition NIL? Is that how I need to read that error?
<thijso> No, I know, Shinmera
pnp has left #lisp [#lisp]
ggole has quit [Remote host closed the connection]
<thijso> Just weird that it crops up only if I include verbose as a dependency. Even without calling any code in there. But I think it always starts up threads, right? Is there a way to turn that off?
MrBismuth has joined #lisp
ggole has joined #lisp
<Shinmera> The docs mention this.
<Shinmera> push :verbose-no-init to *features* before loading.
<thijso> Ah, sorry. Missed that.
<thijso> Thanks
<Shinmera> No problem.
MrBusiness3 has quit [Ping timeout: 250 seconds]
<thijso> On the other hand, eventually I would like to use the threading stuff in verbose as well, otherwise the benefit is next to zero...
igemnace has joined #lisp
zch is now known as zdm
schjetne has joined #lisp
rotty has quit [Quit: WeeChat 2.6-dev]
rotty has joined #lisp
schjetne has quit [Ping timeout: 244 seconds]
lavaflow has joined #lisp
igemnace has quit [Ping timeout: 244 seconds]
orivej has quit [Ping timeout: 264 seconds]
nowhere_man has quit [Remote host closed the connection]
nowhere_man has joined #lisp
EvW has quit [Ping timeout: 264 seconds]
nowhere_man has quit [Remote host closed the connection]
nowhere_man has joined #lisp
igemnace has joined #lisp
schjetne has joined #lisp
yoeljacobsen has joined #lisp
orivej has joined #lisp
awolven has quit [Ping timeout: 258 seconds]
nowhere_man has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 268 seconds]
jiny has joined #lisp
aautcsh has quit [Quit: aautcsh]
aautcsh has joined #lisp
analogue has quit [Quit: Leaving]
McParen has left #lisp [#lisp]
weilawei has left #lisp ["Leaving"]
jiny has quit [Remote host closed the connection]
red-dot has quit [Quit: Going offline, see ya! (www.adiirc.com)]
awolven has joined #lisp
techquila has quit [Ping timeout: 258 seconds]
knicklux has quit [Ping timeout: 250 seconds]
hiroaki has quit [Ping timeout: 268 seconds]
red-dot has joined #lisp
Aruseus has joined #lisp
orivej has joined #lisp
knicklux has joined #lisp
EvW has joined #lisp
karswell has joined #lisp
knicklux has quit [Ping timeout: 244 seconds]
notzmv has quit [Read error: Connection reset by peer]
rippa has joined #lisp
scymtym has quit [Ping timeout: 250 seconds]
EvW has quit [Ping timeout: 250 seconds]
scymtym has joined #lisp
makomo has quit [Quit: WeeChat 2.4]
yoeljacobsen has quit [Ping timeout: 245 seconds]
nydel has quit [Read error: Connection reset by peer]
scymtym has quit [Ping timeout: 245 seconds]
orivej has quit [Ping timeout: 244 seconds]
MinnowTaur has joined #lisp
zdm has quit [Quit: Leaving]
gxt has quit [Quit: WeeChat 2.5]
knicklux has joined #lisp
hortiel has joined #lisp
<hortiel> why is /topic saying #1= and #1!
<hortiel> #1#
<hortiel> are they saying lisp is number 1 programming language?
<ck_> no, it is saying it is 'infinitely programmable'
<ck_> clhs 2.4.8.15
awolven has quit [Ping timeout: 244 seconds]
<ck_> hortiel: ↑
broccolistem has joined #lisp
sjl has quit [Quit: WeeChat 2.2-dev]
<hortiel> i didn't get that definition
<hortiel> object has object representation... what the heck
<hortiel> what is #1# even mean
<hortiel> #1= is it lisp syntax
sjl has joined #lisp
<tfb> hortiel: when reading data (which is the same as when reading code) #n= (where n is an integer) makes a 'label' for something being read, and #n# refers to that label. This means self-referential (circular) objects can be read.
awolven has joined #lisp
quazimodo has quit [Ping timeout: 268 seconds]
fraxamo has quit [Quit: Leaving]
<moldybits> #1=42 is the same as 42 except you can now refer to 42 with #1#, but only within the same "read context" or something like that.
broccolistem has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<moldybits> try (list #1=(print 'hi) #1# '#1#) maybe.
awolven is now known as clothespin
broccolistem has joined #lisp
broccolistem has quit [Client Quit]
zch has joined #lisp
zch is now known as zdm
jcob has quit [Ping timeout: 246 seconds]
akoana has joined #lisp
jcob has joined #lisp
gxt has joined #lisp
akoana has left #lisp ["Leaving"]
akoana has joined #lisp
zdm has quit [Quit: Leaving]
yoeljacobsen has joined #lisp
saravia has joined #lisp
shifty has quit [Ping timeout: 245 seconds]
davr0s_ has joined #lisp
davr0s has joined #lisp
mpcjanssen has quit [Quit: WeeChat 1.9.1]
Necktwi has quit [Quit: leaving]
<pjb> hortiel: indeed, it could also say #42= and #42# to hint that lisp is the answer to the big question of life, the universe, and all that.
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
analogue has joined #lisp
EvW has joined #lisp
scymtym has joined #lisp
zdm has joined #lisp
Oladon has quit [Ping timeout: 252 seconds]
Oladon has joined #lisp
cosimone has joined #lisp
lavaflow has quit [Ping timeout: 246 seconds]
gravicappa has quit [Ping timeout: 245 seconds]
fengshaun has quit [Remote host closed the connection]
fengshaun has joined #lisp
hortiel has quit [Quit: WeeChat 2.5]
knicklux has quit [Ping timeout: 268 seconds]
lavaflow has joined #lisp
elderK has quit [Quit: WeeChat 1.9]
vydd has joined #lisp
ggole has quit [Quit: Leaving]
thijso has quit [Read error: No route to host]
thijso has joined #lisp
techquila has joined #lisp
Ven`` has joined #lisp
Posterdati has quit [*.net *.split]
Posterdati has joined #lisp
shka_ has quit [Quit: Konversation terminated!]
xkapastel has quit [Quit: Connection closed for inactivity]
__jrjsmrtn__ has quit [*.net *.split]
__jrjsmrtn__ has joined #lisp
ravenousmoose has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ravndal has quit [Quit: WeeChat 2.5]
ravndal has joined #lisp
fengshaun has quit [Ping timeout: 245 seconds]
fengshaun_ has joined #lisp
anewuser has joined #lisp
lavaflow has quit [Ping timeout: 268 seconds]
sabrac has quit [Remote host closed the connection]
Lord_of_Life_ has joined #lisp
karlosz has joined #lisp
clothespin has quit [Ping timeout: 276 seconds]
Lord_of_Life has quit [Ping timeout: 245 seconds]
Lord_of_Life_ is now known as Lord_of_Life
saravia has quit [Remote host closed the connection]
lavaflow has joined #lisp
schjetne has quit [Ping timeout: 245 seconds]
orivej has joined #lisp
refpga has quit [Remote host closed the connection]
Aruseus has quit [Remote host closed the connection]
makomo has joined #lisp
akoana has left #lisp ["Leaving"]
karlosz has quit [Quit: karlosz]
igemnace has quit [Quit: WeeChat 2.5]
ltriant has joined #lisp
sellout- has quit [Ping timeout: 245 seconds]
sellout- has joined #lisp
karlosz has joined #lisp
schjetne has joined #lisp
varjag has quit [Ping timeout: 268 seconds]
Ven`` has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fengshaun_ is now known as fengshaun
varjag has joined #lisp
varjag has quit [Remote host closed the connection]
schjetne has quit [Ping timeout: 245 seconds]
permagreen has quit [Remote host closed the connection]
nanoz has quit [Ping timeout: 258 seconds]
permagreen has joined #lisp
red-dot has quit [Quit: Going offline, see ya! (www.adiirc.com)]
lavaflow has quit [Ping timeout: 245 seconds]
lavaflow has joined #lisp
vydd has quit [Ping timeout: 245 seconds]
thijso has quit [Ping timeout: 246 seconds]
dddddd has quit [Remote host closed the connection]
zdm has quit [Quit: Leaving]
anewuser has quit [Ping timeout: 268 seconds]
cosimone has quit [Ping timeout: 250 seconds]
slyrus has joined #lisp
karlosz has quit [Quit: karlosz]
flazh has quit [Ping timeout: 245 seconds]
t58_ has joined #lisp
t58 has quit [Ping timeout: 245 seconds]
red-dot has joined #lisp
Jeanne-Kamikaze has joined #lisp
zdm has joined #lisp
schjetne has joined #lisp