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
stzsch has joined #lisp
cosimone has quit [Ping timeout: 250 seconds]
rgherdt has quit [Ping timeout: 276 seconds]
smazga has quit [Quit: leaving]
<aeth> I think I found the problem with zpb-ttf and this one font I tried to load. It looks like it only supports format 4 for cmap subtables, but that code never got executed to error message... which is probably because this font file has multiple cmap tables and the first is format 4.
shifty has joined #lisp
LiamH has quit [Quit: Leaving.]
stzsch has quit [Ping timeout: 246 seconds]
vms14 has joined #lisp
<vms14> guys someone tried a lisp server for production?
<vms14> and with sbcl+hunchentoot?
<patrixl> production yes, but was an internal product not facing the wide internet
<vms14> I really like it and I wonder how would behave being a very busy server, I know it depends of the "kind of server", but would you rely on hunchentoot+sbcl as a standalone server?
<patrixl> radiance on top of hunchentoot
Oladon has joined #lisp
<patrixl> so yeah no idea how it would perform as a busy server
<vms14> I suppose if you compile it, you'd gain some performance
<vms14> would be better than something like apache+php?
<patrixl> I suppose so yes
<vms14> My initial idea is to use nginx as a front end server and serving static files, then reverse proxy to hunchentoot for dynamic stuff
<vms14> I don't know if makes sense to add another server like apache for some specific things
<vms14> but it seems nope
stzsch has joined #lisp
stux|RC-only has quit [Quit: Aloha!]
ebrasca` has joined #lisp
ebrasca has quit [Ping timeout: 265 seconds]
ravenousmoose has joined #lisp
Lycurgus has joined #lisp
ravenousmoose has quit [Ping timeout: 252 seconds]
<aeth> vms14: Afaik, CL's performance is going to be roughly comparable to Java's, except without the diverse selection of quality GCs (unless you use ABCL, of course), and without the warmup time of a JIT since they're mostly AOT compiled.
<aeth> Of course, the specifics depend on how it's written. You can write slow code in any language.
stux|RC-only has joined #lisp
ravenousmoose has joined #lisp
<vms14> aeth: you mean the java GC is better than sbcl's or other common lisp implementations?
<vms14> and I've read a lot of times for a noob lisper is very easy to make slow code
<vms14> so my code will be slow
<vms14> I'm aware of consing, but no more
ravenousmoose has quit [Ping timeout: 252 seconds]
aindilis has quit [Read error: Connection reset by peer]
EvW has quit [Ping timeout: 276 seconds]
<housel> Many of the JVM garbage collectors are very good, because serious research effort has been spent on them; SBCL's is not bad, but still not quite as good (depending on how it's used)
aindilis has joined #lisp
ravenousmoose has joined #lisp
<aeth> vms14: Specifics tend to be faster than generics. In some languages, "generics" are hard or impossible. On the other hand, in CL, it's often hard to not do something generic. e.g. Save something in a hash-table and then take it right out again and the implementation just lost all of its type inference and it could be anything.
ravenousmoose has quit [Ping timeout: 252 seconds]
<aeth> Also, CL will (* unless the implementation removes these if you locally set (safety 0)) bounds check if it doesn't know the length of an array. Combine the two. Put an array in a hash-table. Now it must bounds check that array on access if it's accessed via gethash.
<aeth> Fast code certainly is possible to write, but there's lots of performance pitfalls in CL.
fouric has quit [Quit: WeeChat 2.5]
<aeth> Ideally, the language would be extended with either more type hints and/or preserving some type inference in mind.
fouric has joined #lisp
lemonpepper24 has joined #lisp
<aeth> This is kinda micro-optimizing, though. What's more concerning is just how unflexible #'sort is in CL. This means people are more likely to have to copy to sort or sort via some hand-implemented and probably slower way.
<vms14> btw I'm a bit tempted to try the berkeley database, it's just a hash table database, very fast and mysql was written on top of that some time ago. I like the idea of using hashtables and put lisp code as a string on the values, then read it to have the code again. But it's just an idea
<Bike> what's the inflexible part
<aeth> Bike: Sort will only work on sequences (although :key can help a bit), and unlike just about every other sequence function, it doesn't have start and end, so you have to subseq if you only want to sort a subseq.
<Bike> oh, start and end would be good
<Bike> i'm not sure what you'd want to sort other than a sequence though
ravenousmoose has joined #lisp
<vms14> will common lisp have a new standard or alike? to at least add stuff like sockets, ffi, etc?
<aeth> Bike: e.g. sorting rows in a 2D array
<Bike> sort a displaced vector? also, in this alternate universe displaed vectors suck like
<Bike> vms14: probably not
<Bike> suck less*
<aeth> Bike: Also, another interesting possibility is sorting multiple sequences to match the order of one sequence. Lots of sequence functions take in an arbitrary number. In this case, there are several options, e.g. only sort based on the order in the first, sort of a key sequence.
<aeth> Another way to do that would be to have the predicate take in multiple arguments. I guess with the latter you can get the former by having the lambda list (item &rest rest) and ignoring rest
<vms14> well, I really like the language even knowing I don't know most of it. I think it's fine, but could be great if the standard had some stuff implementations had to implement in a non compatible way
<aeth> well, actually, there's two items so it'd be a bit trickier
<aeth> Maybe something like (multiple-sequence-sort (lambda (first-sequence-x first-sequence-y &rest rest) (declare (ignore rest)) (< first-sequence-x first-sequence-y)) seq1 seq2 seq3 seq4 ...)
<aeth> Could get messy internally if you mix vectors and lists, though
ravenousmoose has quit [Ping timeout: 245 seconds]
sjl has quit [Ping timeout: 268 seconds]
slyrus__ has joined #lisp
davepdot_ has joined #lisp
slyrus_ has quit [Ping timeout: 276 seconds]
notzmv has joined #lisp
nullniverse has joined #lisp
nullniverse has joined #lisp
nullniverse has quit [Changing host]
raghavgururajan has joined #lisp
PuercoPope has joined #lisp
davepdot_ has quit [Ping timeout: 268 seconds]
torbo has joined #lisp
theBlackDragon has quit [Quit: Boom.]
Kaisyu7 has quit [Quit: ERC (IRC client for Emacs 26.3)]
bitmapper has quit [Ping timeout: 250 seconds]
vms14 has quit [Remote host closed the connection]
oni-on-ion has quit [Ping timeout: 250 seconds]
Oladon has quit [Quit: Leaving.]
madand has quit [Quit: ZNC 1.7.5 - https://znc.in]
madand has joined #lisp
Jesin has joined #lisp
lemonpepper24 has quit [Ping timeout: 240 seconds]
Kaisyu7 has joined #lisp
Lycurgus has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
semz_ has quit [Ping timeout: 250 seconds]
benkard has joined #lisp
mulk has quit [Ping timeout: 276 seconds]
benkard is now known as mulk
milanj has quit [Quit: This computer has gone to sleep]
semz_ has joined #lisp
semz_ has quit [Changing host]
semz_ has joined #lisp
ravenousmoose has joined #lisp
ravenousmoose has quit [Ping timeout: 276 seconds]
EvW has joined #lisp
ravenousmoose has joined #lisp
ebrasca` has quit [Remote host closed the connection]
ebrasca has joined #lisp
ravenousmoose has quit [Ping timeout: 252 seconds]
ebzzry has quit [Read error: Connection reset by peer]
bacterio has quit [Read error: Connection reset by peer]
nydel has quit [Read error: Connection reset by peer]
Bike has quit [Quit: Lost terminal]
atgreen has quit [Ping timeout: 245 seconds]
EvW has quit [Ping timeout: 245 seconds]
_leb has joined #lisp
atgreen has joined #lisp
gravicappa has joined #lisp
Necktwi has quit [Quit: leaving]
khisanth_ has quit [Ping timeout: 240 seconds]
akoana has joined #lisp
clothespin has joined #lisp
t3rtius has joined #lisp
FreeBirdLjj has joined #lisp
torbo has quit [Remote host closed the connection]
pjb has quit [Remote host closed the connection]
stzsch has quit [Ping timeout: 276 seconds]
pjb has joined #lisp
zmt01 has joined #lisp
<fiddlerwoaroof> aeth: if it's guaranteed that the sequences are all of the same length, couldn't you use :KEY with something like (let ((idx 0)) (lambda (_) (prog1 (elt other-sequence idx) (incf idx)))) ?
FreeBirdLjj has quit [Ping timeout: 250 seconds]
<fiddlerwoaroof> Hmm, never mind, that won't work
pjb` has joined #lisp
zmt00 has quit [Ping timeout: 245 seconds]
stzsch has joined #lisp
pjb has quit [Ping timeout: 265 seconds]
stzsch has quit [Ping timeout: 276 seconds]
khisanth_ has joined #lisp
shifty has quit [Ping timeout: 268 seconds]
igemnace has joined #lisp
PuercoPope has quit [Read error: Connection reset by peer]
ravenousmoose has joined #lisp
ravenousmoose has quit [Ping timeout: 245 seconds]
igemnace has quit [Quit: WeeChat 2.6]
stzsch has joined #lisp
vlatkoB has joined #lisp
ggole has joined #lisp
davepdotorg has joined #lisp
davepdotorg has quit [Ping timeout: 240 seconds]
Lycurgus has joined #lisp
stzsch has quit [Ping timeout: 252 seconds]
adip has quit [Ping timeout: 276 seconds]
stzsch has joined #lisp
Necktwi has joined #lisp
flamebeard has joined #lisp
brettgilio has quit [Ping timeout: 276 seconds]
<beach> Good morning everyone!
<edgar-rft> Mornings could be significantly improved if they weren't so early.
anewuser has joined #lisp
t3rtius has quit [Remote host closed the connection]
stzsch has quit [Ping timeout: 276 seconds]
enrio has joined #lisp
<aeth> edgar-rft: mornings are actually really, really late... I only see them if I stay up all night!
rgherdt has joined #lisp
brettgilio has joined #lisp
stzsch has joined #lisp
shka_ has joined #lisp
stzsch has quit [Ping timeout: 276 seconds]
lowryder has quit [Ping timeout: 240 seconds]
lowryder has joined #lisp
stzsch has joined #lisp
dddddd has quit [Remote host closed the connection]
rgherdt has quit [Ping timeout: 246 seconds]
shifty has joined #lisp
_leb has quit []
leb has joined #lisp
jackdaniel has joined #lisp
leb has quit []
Lycurgus has quit [Ping timeout: 276 seconds]
shka_ has quit [Ping timeout: 268 seconds]
sauvin has joined #lisp
krid has quit [Ping timeout: 265 seconds]
keep_learning has joined #lisp
JohnMS_WORK has joined #lisp
milanj has joined #lisp
_whitelogger has joined #lisp
JohnMS_WORK has quit [Read error: Connection reset by peer]
JohnMS_WORK has joined #lisp
Necktwi has quit [Ping timeout: 240 seconds]
akoana has left #lisp ["Leaving"]
Duuqnd has joined #lisp
semz_ has quit [Ping timeout: 250 seconds]
Lycurgus has joined #lisp
ebzzry has quit [Read error: Connection reset by peer]
raghavgururajan has quit [Read error: Connection reset by peer]
ralt has joined #lisp
ebzzry has joined #lisp
scymtym has joined #lisp
dale has quit [Quit: My computer has gone to sleep]
m00natic has quit [Ping timeout: 246 seconds]
bmansurov has quit [Ping timeout: 245 seconds]
gareppa has joined #lisp
kajo has quit [Ping timeout: 252 seconds]
m00natic has joined #lisp
bmansurov has joined #lisp
z3t0 has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
jackdani1l has joined #lisp
jackdaniel has quit [Read error: Connection reset by peer]
jackdani1l is now known as jackdaniel
davepdotorg has joined #lisp
z3t0 has joined #lisp
hhdave has joined #lisp
xkapastel has joined #lisp
grumble has quit [Quit: God, you're more annoying than a creative voice mail message.]
grumble has joined #lisp
raghavgururajan has joined #lisp
jello_pudding has joined #lisp
adip has joined #lisp
spoeplau has joined #lisp
ebzzry has quit [Read error: Connection reset by peer]
raghavgururajan has quit [Remote host closed the connection]
Lycurgus has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
nullman has quit [Ping timeout: 246 seconds]
cosimone has joined #lisp
theBlackDragon has joined #lisp
ebzzry has joined #lisp
cosimone has quit [Quit: Terminated!]
jello_pudding has quit [Quit: Quit Client]
ljavorsk has joined #lisp
cosimone has joined #lisp
<LdBeth> aeth: so do I
anewuser has quit [Quit: anewuser]
<LdBeth> Most people get John Backus’ FP wrong. FP was inspired by early lisp where the use of higher order function is limit and only a few functions can take function as arguments, such as MAPCAR
ljavorsk has quit [Ping timeout: 245 seconds]
froggey has quit [Ping timeout: 268 seconds]
adip has quit [Ping timeout: 268 seconds]
Necktwi has joined #lisp
gareppa has quit [Quit: Leaving]
Lycurgus has joined #lisp
ljavorsk has joined #lisp
opt9 has joined #lisp
ljavorsk has quit [Remote host closed the connection]
ljavorsk has joined #lisp
ebzzry has quit [Remote host closed the connection]
gabiruh_ has quit [Quit: ZNC - 1.6.0 - http://znc.in]
gabiruh has joined #lisp
ljavorsk has quit [Ping timeout: 245 seconds]
cosimone has quit [Quit: Terminated!]
jonatack has quit [Ping timeout: 276 seconds]
ljavorsk has joined #lisp
davepdotorg has quit [Remote host closed the connection]
opt9 has quit [Ping timeout: 265 seconds]
davepdotorg has joined #lisp
davepdotorg has quit [Remote host closed the connection]
davepdotorg has joined #lisp
ljavorsk has quit [Remote host closed the connection]
ljavorsk has joined #lisp
enrioog has joined #lisp
enrio has quit [Ping timeout: 265 seconds]
capadoodle has quit [Quit: Connection closed for inactivity]
ljavorsk has quit [Ping timeout: 245 seconds]
Fare has quit [Ping timeout: 276 seconds]
ljavorsk has joined #lisp
saturn2 has quit [Ping timeout: 245 seconds]
saturn2 has joined #lisp
eeeeeta has joined #lisp
theBlackDragon has quit [Remote host closed the connection]
ljavorsk has quit [Ping timeout: 245 seconds]
davepdotorg has quit [Remote host closed the connection]
heisig has joined #lisp
davepdotorg has joined #lisp
dra has joined #lisp
enrio has joined #lisp
<dra> Hi.
amerlyq has joined #lisp
xkapastel has quit [Quit: Connection closed for inactivity]
enrioog has quit [Ping timeout: 250 seconds]
enrioog has joined #lisp
enrioog has quit [Read error: Connection reset by peer]
enrioog has joined #lisp
enrio has quit [Ping timeout: 240 seconds]
enrioog has quit [Read error: Connection reset by peer]
enrioog has joined #lisp
enrioog is now known as enrio
JohnMS has joined #lisp
milanj has quit [Quit: This computer has gone to sleep]
amerlyq has quit [Quit: amerlyq]
amerlyq has joined #lisp
amerlyq has quit [Client Quit]
JohnMS_WORK has quit [Ping timeout: 245 seconds]
Inline has quit [Quit: Leaving]
opt9 has joined #lisp
pfdietz has joined #lisp
jonatack has joined #lisp
theBlackDragon has joined #lisp
bitmapper has joined #lisp
milanj has joined #lisp
adip has joined #lisp
lucasb has joined #lisp
orivej has joined #lisp
xkapastel has joined #lisp
__vlgvrs has joined #lisp
EvW has joined #lisp
_paul0 has quit [Ping timeout: 246 seconds]
ljavorsk has joined #lisp
<beach> Hello dra.
atgreen has quit [Ping timeout: 265 seconds]
amerlyq has joined #lisp
orivej has quit [Ping timeout: 276 seconds]
jonatack has quit [Quit: jonatack]
opt9 has quit [Ping timeout: 265 seconds]
orivej has joined #lisp
amerlyq has quit [Quit: amerlyq]
amerlyq has joined #lisp
wxie has joined #lisp
enrio has quit [Read error: Connection reset by peer]
shifty has quit [Ping timeout: 240 seconds]
enrio has joined #lisp
EvW has quit [Ping timeout: 250 seconds]
cosimone has joined #lisp
louxiu has joined #lisp
Bike has joined #lisp
fivo has joined #lisp
Duuqnd has quit [Ping timeout: 246 seconds]
<fivo> How do I muffle a defmethod redefinition in sbcl.
<fivo> I tried
notzmv has quit [Ping timeout: 268 seconds]
<fivo> (locally (declare #+sbcl(sb-ext:muffle-conditions sb-kernel:redefinition-with-defmethod)) ....)
adip has quit [Ping timeout: 268 seconds]
adip has joined #lisp
flamebeard has quit []
* Xach does not know sorry
ljavorsk has quit [Ping timeout: 245 seconds]
bitmapper has quit [Remote host closed the connection]
bitmapper has joined #lisp
bitmapper has quit [Remote host closed the connection]
bitmapper has joined #lisp
bitmapper has quit [Read error: Connection reset by peer]
bitmappe_ has joined #lisp
<Cymew> It's not a style warning like a DEFUN redefinition? I have a note of this, which I never seems to have entered into my sbclrc for some reason: (declaim (sb-ext:muffle-conditions style-warning))
<Cymew> Not close to a working sbcl to test right now.
florest has joined #lisp
mulk has quit [Ping timeout: 276 seconds]
ljavorsk has joined #lisp
florest has quit [Quit: Leaving]
florest has joined #lisp
atgreen has joined #lisp
ljavorsk has quit [Ping timeout: 265 seconds]
ljavorsk has joined #lisp
orivej has quit [Ping timeout: 240 seconds]
<fivo> luis: yes I know, that is what I tried. Maybe I need to upgrade sbcl
<luis> fivo: (defun foo () (declare (sb-ext:muffle-conditions style-warning)) (does-not-exist)) works for me with SBCL 1.5.8, yes.
Fare has joined #lisp
<_death> (handler-bind ((sb-kernel:redefinition-with-defmethod #'muffle-warning)) (defmethod ...)) works
<luis> (sorry, I missed you were looking specifically at defmethod redefinitions)
<fivo> luis: yes, print-object to be more precise
enrio has quit [Ping timeout: 240 seconds]
brettgilio has quit [Ping timeout: 245 seconds]
<luis> fivo: I believe the method is added to the generic function (and the warning is signalled) when the fasl is loaded, not during compilation. I suppose that's why muffling via declare doesn't work.
ljavorsk has quit [Ping timeout: 276 seconds]
LiamH has joined #lisp
Lycurgus has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<fivo> luis: I see. Is there a downside to using _deaths method as a toplevel form?
wxie has quit [Ping timeout: 245 seconds]
milanj has quit [Quit: This computer has gone to sleep]
<luis> fivo: probably not. I don't think you should use the sb-kernel package though, it's a private implementation package.
<luis> fivo: but then using warning would catch more warnings than you'd like, so I can see how you'd prefer to be more specific.
jonatack has joined #lisp
anewuser has joined #lisp
enrio has joined #lisp
ebzzry has joined #lisp
JohnMS has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
ljavorsk has joined #lisp
enrio has quit [Read error: Connection timed out]
Fare has quit [Remote host closed the connection]
enrio has joined #lisp
Fare has joined #lisp
ljavorsk has quit [Ping timeout: 250 seconds]
anewuser has quit [Quit: anewuser]
FreeBirdLjj has joined #lisp
EvW1 has joined #lisp
atgreen has quit [Ping timeout: 268 seconds]
Fare has quit [Ping timeout: 250 seconds]
xkapastel has quit [Quit: Connection closed for inactivity]
Fare has joined #lisp
jxy has quit [Quit: leaving]
dddddd has joined #lisp
atgreen has joined #lisp
milanj has joined #lisp
kajo has joined #lisp
slac-in-the-box has joined #lisp
bitmappe_ has quit [Ping timeout: 240 seconds]
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
<z3t0> hi
<z3t0> has anyone made any decent progress doing android development with any sort of lisp?
<z3t0> I have noticed a few projects like EQL but it's not clear if its something thats being widely used / supported
jxy has joined #lisp
<dlowe> z3t0: I hear good things about mocl
<phadthai> some have used clojure, others ecl, I'm not sure in terms of statistics
<dlowe> I didn't know ecl was used on android
<dlowe> maybe the people at ##lisp would know more, since this channel is only Common Lisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
jonatack has quit [Ping timeout: 265 seconds]
pfdietz88 has joined #lisp
<z3t0> ah yep. I noticed that one. But was hoping to find something that was free, mainly because I want to at some point open source the application
cosimone has quit [Remote host closed the connection]
<pfdietz88> Racket runs on Android, if you don't want a Common Lisp.
cosimone has joined #lisp
heisig has quit [Quit: Leaving]
cosimone has quit [Quit: Terminated!]
rgherdt has joined #lisp
<jackdaniel3> check put eql5-android project
<jackdaniel3> there is also wip eql5-ios
<jackdaniel3> both are based on ecl and give you interactive gui accessible from repl
brettgilio has joined #lisp
louxiu has quit [Ping timeout: 265 seconds]
jonatack has joined #lisp
louxiu has joined #lisp
<z3t0> Thanks! That gives me a lot of leads. EQL looks promising, though I'm not clear on how lispy the interaction is
<z3t0> You say it gives a repl. does that mean I can do the usual slime development workflow?
<jackdaniel3> yes
<jackdaniel3> you may connect from desktop emacs to a phone
<jackdaniel> Polos Ruetz (EQL author and maintainer) works on it actively and the project is around for a few years
lemonpepper24 has joined #lisp
mn3m has joined #lisp
<jackdaniel> so it is fair to say that the project is mature
orivej has joined #lisp
<jackdaniel> here are ongoing efforts to bring ECL to IOS: https://gitlab.com/embeddable-common-lisp/ecl/merge_requests/164
bitmapper has joined #lisp
Lycurgus has joined #lisp
<z3t0> thats awesome thanks :)
mulk has joined #lisp
Fare has quit [Ping timeout: 240 seconds]
davr0s has quit [Read error: Connection reset by peer]
davr0s__ has quit [Read error: Connection reset by peer]
FreeBirdLjj has quit [Remote host closed the connection]
FreeBirdLjj has joined #lisp
<pjb`> nn/whoami
pjb` has quit [Quit: ERC (IRC client for Emacs 26.1)]
FreeBirdLjj has quit [Ping timeout: 240 seconds]
sjl has joined #lisp
ggole has quit [Quit: Leaving]
atgreen has quit [Read error: Connection reset by peer]
xkapastel has joined #lisp
brettgilio has quit [Ping timeout: 252 seconds]
davepdotorg has quit [Remote host closed the connection]
rgherdt has quit [Ping timeout: 276 seconds]
Necktwi has quit [Read error: Connection reset by peer]
Necktwi has joined #lisp
clothespin has quit [Ping timeout: 268 seconds]
slac-in-the-box has quit [Ping timeout: 276 seconds]
oni-on-ion has joined #lisp
pjb has joined #lisp
rgherdt has joined #lisp
FreeBirdLjj has joined #lisp
florest has quit [Quit: Leaving]
clothespin has joined #lisp
FreeBirdLjj has quit [Remote host closed the connection]
FreeBirdLjj has joined #lisp
Lycurgus has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
scymtym has quit [Ping timeout: 245 seconds]
fivo has quit [Quit: WeeChat 1.9.1]
hhdave has quit [Quit: hhdave]
pfdietz88 has quit [Remote host closed the connection]
shka_ has joined #lisp
mn3m has quit [Remote host closed the connection]
mn3m has joined #lisp
stepnem_ has joined #lisp
stepnem has quit [Ping timeout: 240 seconds]
bars0 has joined #lisp
mn3m has quit [Ping timeout: 268 seconds]
FreeBirdLjj has quit [Remote host closed the connection]
FreeBirdLjj has joined #lisp
Necktwi has quit [Read error: Connection reset by peer]
vlatkoB has quit [Remote host closed the connection]
FreeBirdLjj has quit [Ping timeout: 276 seconds]
slyrus has joined #lisp
Necktwi has joined #lisp
dgtlcmo has joined #lisp
slyrus__ has quit [Ping timeout: 240 seconds]
rgherdt has quit [Remote host closed the connection]
stepnem_ is now known as stepnem
sugarwren has joined #lisp
frgo has quit []
frgo has joined #lisp
slyrus_ has joined #lisp
slyrus has quit [Ping timeout: 268 seconds]
gareppa has joined #lisp
spoeplau has quit [Ping timeout: 252 seconds]
rippa has joined #lisp
m00natic has quit [Remote host closed the connection]
oni_on_ion has joined #lisp
oni-on-ion has quit [Ping timeout: 245 seconds]
pfdietz19 has joined #lisp
rgherdt has joined #lisp
dale_ has joined #lisp
dale_ is now known as dale
slyrus__ has joined #lisp
brettgilio has joined #lisp
slyrus_ has quit [Ping timeout: 240 seconds]
EvW1 has quit [Ping timeout: 276 seconds]
enrio has quit [Ping timeout: 265 seconds]
dra has quit [Remote host closed the connection]
gareppa has quit [Quit: Leaving]
lemonpepper24 has quit [Ping timeout: 276 seconds]
ravenousmoose has joined #lisp
davepdotorg has joined #lisp
davepdotorg has quit [Ping timeout: 252 seconds]
oni_on_ion has quit [Quit: Quit]
oni-on-ion has joined #lisp
xkapastel has quit [Quit: Connection closed for inactivity]
sauvin has quit [Ping timeout: 276 seconds]
milanj has quit [Quit: This computer has gone to sleep]
goulix has joined #lisp
stepnem has quit [Ping timeout: 268 seconds]
stepnem_ has joined #lisp
cwaydt has quit [Read error: Connection reset by peer]
cwaydt has joined #lisp
scymtym has joined #lisp
ralt has quit [Quit: Connection closed for inactivity]
gareppa has joined #lisp
bitmapper has quit [Ping timeout: 265 seconds]
Jesin has quit [Quit: Leaving]
Duuqnd has joined #lisp
amerlyq has quit [Quit: amerlyq]
Jesin has joined #lisp
X-Scale` has joined #lisp
X-Scale has quit [Ping timeout: 246 seconds]
X-Scale` is now known as X-Scale
guest1893 has joined #lisp
guest1893 has quit [Client Quit]
cosimone has joined #lisp
gravicappa has quit [Ping timeout: 240 seconds]
milanj has joined #lisp
izh_ has joined #lisp
Duuqnd has quit [Ping timeout: 245 seconds]
bars0 has quit [Quit: leaving]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
brettgilio has quit [Quit: Quit]
brettgilio has joined #lisp
brettgilio has quit [Client Quit]
gareppa has quit [Quit: Leaving]
mindthelion has quit [Ping timeout: 252 seconds]
shka_ has quit [Ping timeout: 245 seconds]
clothespin has quit [Ping timeout: 265 seconds]
Bike has quit [Remote host closed the connection]
Bike has joined #lisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
xrash has joined #lisp
izh_ has quit [Quit: Leaving]
gioyik has joined #lisp
techquila has joined #lisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
clothespin has joined #lisp
orivej has quit [Ping timeout: 265 seconds]
techquila has quit [Ping timeout: 276 seconds]
cosimone has quit [Quit: Terminated!]
pfdietz has quit [Remote host closed the connection]
quazimodo has quit [Ping timeout: 268 seconds]
quazimodo has joined #lisp
pfdietz19 has quit [Remote host closed the connection]
ravenousmoose has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gioyik has quit [Read error: Connection reset by peer]
techquila has joined #lisp
shifty has joined #lisp
Inline has joined #lisp
Fare has joined #lisp
Bike has quit [Quit: Bike]
sugarwren has quit [Quit: Leaving]
varjag has joined #lisp
X-Scale has quit [Ping timeout: 240 seconds]
X-Scale` has joined #lisp
X-Scale` is now known as X-Scale
quazimodo has quit [Ping timeout: 240 seconds]
quazimodo has joined #lisp
techquila has quit [Ping timeout: 250 seconds]
bitmapper has joined #lisp
ralt has joined #lisp
xrash has quit [Ping timeout: 240 seconds]
cosimone has joined #lisp
gioyik has joined #lisp
rgherdt has quit [Ping timeout: 246 seconds]
xrash has joined #lisp
xrash has quit [Excess Flood]
LiamH has quit [Quit: Leaving.]
xrash has joined #lisp
jmercouris has joined #lisp
Necktwi has quit [Remote host closed the connection]
rgherdt has joined #lisp
brettgilio has joined #lisp
Necktwi has joined #lisp
jmercouris has quit [Remote host closed the connection]
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
Fare has quit [Ping timeout: 240 seconds]
davepdotorg has joined #lisp
brettgilio has quit [Quit: Quit]
brettgilio has joined #lisp
davepdotorg has quit [Ping timeout: 265 seconds]
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
brettgilio has quit [Quit: Quit]
brettgilio has joined #lisp
brettgilio has quit [Client Quit]
slyrus has joined #lisp
slyrus__ has quit [Ping timeout: 268 seconds]
brettgilio has joined #lisp
Josh_2 has joined #lisp
mange has joined #lisp
nydel has joined #lisp
nydel has quit [Changing host]
nydel has joined #lisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
xrash has quit [Read error: Connection reset by peer]
nydel has quit [Quit: WeeChat 2.1]
varjag has quit [Ping timeout: 245 seconds]
EvW has joined #lisp
nydel has joined #lisp
nydel has quit [Changing host]
nydel has joined #lisp
Bike has joined #lisp
rgherdt has quit [Ping timeout: 246 seconds]