00:00
jprajzne has quit [Quit: jprajzne]
00:00
jprajzne has joined #lisp
00:16
jprajzne has quit [Quit: jprajzne]
00:16
enrio has quit [Ping timeout: 250 seconds]
00:18
khisanth_ has quit [Ping timeout: 240 seconds]
00:20
jprajzne has joined #lisp
00:21
X-Scale` has joined #lisp
00:21
X-Scale has quit [Ping timeout: 265 seconds]
00:21
X-Scale` is now known as X-Scale
00:25
X-Scale` has joined #lisp
00:26
longshi has quit [Ping timeout: 245 seconds]
00:28
X-Scale has quit [Ping timeout: 268 seconds]
00:28
X-Scale` is now known as X-Scale
00:30
prite has quit [Ping timeout: 240 seconds]
00:41
khisanth_ has joined #lisp
00:42
vms14 has joined #lisp
00:44
<
vms14 >
I've stolen the style of perl CGI.pm
00:44
<
vms14 >
tags are really functions
00:45
ahungry has joined #lisp
00:45
<
vms14 >
so I've made a macro to create the same functions perl cgi has
00:45
<
vms14 >
(generator div)
00:45
<
vms14 >
(generator p)
00:45
<
vms14 >
(div (p "oh...") '(id maindiv))
00:46
<
vms14 >
I guess I'll another macro for autoclosing tags
00:51
<
vms14 >
oh, I like it
00:51
<
vms14 >
what problems will have doing this?
00:52
makomo has quit [Ping timeout: 240 seconds]
00:53
<
vms14 >
It seems it will just work
00:53
<
vms14 >
(format t (div (div (p "oh...") '(id thediv) '(oh mycat)) '(meh "MEH")))
00:53
<
vms14 >
<div meh="MEH"><div id="thediv" oh="mycat"><p>oh...</p></div></div>
00:58
<
Xach >
vms14: there's a project already that defines all tags in a package nanmed "<" and it is funny to read
00:59
<
vms14 >
Xach this way you can define your own "new" tags
00:59
<
Xach >
(<:head (<:title "Foo") ... (<:body (<:h1 "Hello) ...)))))
00:59
<
Xach >
maybe it's even <:head>, I don't remember.
00:59
<
Xach >
the audacity of the package name will be with me forever, though
01:01
<
fiddlerwoaroof_ >
xhtmlambda?
01:01
<
fiddlerwoaroof_ >
Anyways, I just discovered that the #p macro has a high chance of ruining your day.
01:03
<
fiddlerwoaroof_ >
I built a little GUI app in Lispworks for some AWS stuff and when I shared it with my coworkers, it didn’t work for them. This lead me to discover that it’s evaluated to a pathname object at read tome
01:03
<
fiddlerwoaroof_ >
So that ~ is expanded to the home directory on the build machine and not the end-user’s home directory.
01:03
<
Xach >
fiddlerwoaroof_: that depends on the implementation
01:04
<
Xach >
~ is not standard - user-homedir-pathname is the standard thing
01:04
<
Xach >
fiddlerwoaroof_: but that's an interesting failure mode!
01:04
<
fiddlerwoaroof_ >
Yeah.
01:04
<
Xach >
fiddlerwoaroof_: i had that problem with logical pathnames and #p"..." vs "..."
01:04
<
Xach >
and whether the logical host was defined in time
01:04
<
fiddlerwoaroof_ >
I spent several hours debugging this.
01:05
<
Xach >
fiddlerwoaroof_: does it defer the attempt to home-ize it if you use a string to designate the pathname instead?
01:07
EvW has quit [Ping timeout: 264 seconds]
01:08
<
fiddlerwoaroof_ >
I didn’t try that, I just switched to merge-pathnames and user-homedir-pathname.
01:08
<
fiddlerwoaroof_ >
Anyways, if you use fukamachi’s aws library, my fork will have a fix for this in a couple minutes :)
01:10
<
vms14 >
now Idk how to make a loop and use this macro
01:10
<
Josh_2 >
(loop :do (macro .. ) ) xD
01:11
<
vms14 >
the problem is I try to (dolist (tag '(p main section article)) (generator tag))
01:11
<
vms14 >
but tag isn't evaluated
01:13
anewuser has joined #lisp
01:14
<
no-defun-allowed >
You would have to dolist at compile or read-time.
01:14
<
aeth >
vms14: I mean, sure, that looks like it works, but I personally would rather have a series of write-foos than "<~a~~{~~{~~^ ~~a=\"~~a\"~~}~~}>~~a</~a>"
01:14
<
no-defun-allowed >
Something like (macrolet ((generator-list (&rest list) (cons 'progn (loop for name in list collect (list 'generator name))))) (generator-list p main section article))
01:14
<
aeth >
vms14: Also keep in mind that when you're generating format strings you basically commit to writing a macro since it's much more efficient for FORMAT to know what its format strings are ahead of time because FORMAT can be very optimized
01:14
<
vms14 >
aeth: the only complaint I have with this format is I know there is no need to repeat arg arg
01:14
<
vms14 >
how was to make format use the last argument?
01:15
<
vms14 >
ty no-defun-allowed
01:16
lucasb has quit [Quit: Connection closed for inactivity]
01:21
jprajzne has quit [Quit: jprajzne]
01:21
ahungry has quit [Remote host closed the connection]
01:22
dale has quit [Quit: My computer has gone to sleep]
01:28
doublex_ has joined #lisp
01:30
jprajzne has joined #lisp
01:31
ravenousmoose has joined #lisp
01:31
doublex has quit [Ping timeout: 245 seconds]
01:32
<
vms14 >
ty no-defun-allowed, now seems to work
01:35
ravenousmoose has quit [Ping timeout: 250 seconds]
01:36
ahungry has joined #lisp
01:39
semz has quit [Ping timeout: 245 seconds]
01:41
jprajzne has quit [Quit: jprajzne]
01:41
jprajzne has joined #lisp
01:42
space_otter has joined #lisp
01:44
space_otter has quit [Remote host closed the connection]
01:45
jprajzne has quit [Client Quit]
01:45
jprajzne has joined #lisp
01:49
bitmapper has quit [Ping timeout: 240 seconds]
01:49
doublex_ has quit [Read error: Connection reset by peer]
01:50
doublex has joined #lisp
01:52
semz has joined #lisp
01:52
semz has joined #lisp
01:52
semz has quit [Changing host]
01:53
ebzzry has quit [Ping timeout: 265 seconds]
01:55
<
vms14 >
oh I didn't realize I cannot have two childs
01:57
<
vms14 >
(ul (concatenate 'string (li "oh") (li "meh")))
01:58
<
vms14 >
I could create a shortcut for concatenate 'string
01:59
<
Josh_2 >
wouldn't it be better to just be able to go (ul (li "ree") (li "ree")) and have it all join up nice?
01:59
<
vms14 >
Josh_2: yes
02:01
schjetne has joined #lisp
02:02
ahungry` has joined #lisp
02:03
ahungry has quit [Ping timeout: 250 seconds]
02:06
toorevitimirp has joined #lisp
02:06
schjetne has quit [Ping timeout: 265 seconds]
02:07
<
vms14 >
(defmacro & (&body body) `(concatenate 'string ,@body))
02:07
<
vms14 >
(ul (& (li "oh") (li "meh")))
02:07
mindthelion has joined #lisp
02:09
salinasc has quit [Ping timeout: 268 seconds]
02:09
techquila has quit [Ping timeout: 245 seconds]
02:10
<
Josh_2 >
I think I did it
02:11
<
Josh_2 >
no I didn't haha vms14
02:12
<
vms14 >
well I should do something like a typecase
02:15
<
Josh_2 >
but doesn't pass arbitrary :keywords and jam them into the tag args
02:19
<
vms14 >
I'll think on the syntax I want
02:19
<
vms14 >
I guess it will something like (a "text" :href "somelink")
02:20
<
vms14 >
so just look if it's a keyword
02:21
<
vms14 >
if keyword, then eat the next "value" and put ~a=\"~a\" keyword value
02:31
jprajzne has quit [Quit: jprajzne]
02:36
jprajzne has joined #lisp
02:40
<
vms14 >
I have something very rudimentary
02:41
<
vms14 >
the last function
02:42
<
vms14 >
oh it's buggy
02:45
Necktwi has joined #lisp
02:45
<
vms14 >
now seems to work
02:46
<
vms14 >
just added a when (car args) to the whole labeled function
02:47
<
vms14 >
(defun make-text-buffer () (make-array 0 :adjustable t :fill-pointer t :element-type 'character))
02:52
doublex has quit [Ping timeout: 240 seconds]
02:57
milanj has quit [Quit: This computer has gone to sleep]
02:57
<
vms14 >
i don't like this implementation
02:58
doublex has joined #lisp
03:02
schjetne has joined #lisp
03:03
Josh_2 has quit [Ping timeout: 240 seconds]
03:04
doublex has quit [Quit: Quit]
03:05
<
vms14 >
but meh, it works
03:05
doublex has joined #lisp
03:06
schjetne has quit [Ping timeout: 265 seconds]
03:08
<
vms14 >
I need to change the autoclose tag macros
03:08
<
vms14 >
and I'd like to redo this generator macro
03:21
jprajzne has quit [Quit: jprajzne]
03:21
jprajzne has joined #lisp
03:29
_whitelogger has joined #lisp
03:30
jprajzne has quit [Quit: jprajzne]
03:30
jprajzne has joined #lisp
03:36
jprajzne has quit [Quit: jprajzne]
03:37
ebzzry has joined #lisp
03:42
<
vms14 >
I like the syntax a lot, not the implementation, but I could improve it some day
03:45
Lord_of_Life_ has joined #lisp
03:46
Lord_of_Life has quit [Ping timeout: 268 seconds]
03:46
Lord_of_Life_ is now known as Lord_of_Life
03:51
jprajzne has joined #lisp
04:02
schjetne has joined #lisp
04:02
froggey has quit [Ping timeout: 276 seconds]
04:04
froggey has joined #lisp
04:04
toorevitimirp has quit [Ping timeout: 240 seconds]
04:04
toorevitimirp has joined #lisp
04:06
schjetne has quit [Ping timeout: 250 seconds]
04:08
dale has joined #lisp
04:12
clothespin has joined #lisp
04:21
jprajzne has quit [Quit: jprajzne]
04:25
jprajzne has joined #lisp
04:31
ebzzry has quit [Read error: Connection reset by peer]
04:31
jprajzne has quit [Quit: jprajzne]
04:31
jprajzne has joined #lisp
04:34
ebzzry has joined #lisp
04:35
vms14 has quit [Remote host closed the connection]
04:35
jprajzne has quit [Client Quit]
04:36
jprajzne has joined #lisp
04:47
<
beach >
Good morning everyone!
04:55
Bike has quit [Quit: Lost terminal]
04:56
<
MichaelRaskin >
Good morning
04:56
<
beach >
Hello MichaelRaskin.
05:01
jeosol has joined #lisp
05:02
schjetne has joined #lisp
05:06
schjetne has quit [Ping timeout: 240 seconds]
05:08
shifty has joined #lisp
05:10
shka__ has quit [Ping timeout: 276 seconds]
05:14
shka__ has joined #lisp
05:19
anewuser has quit [Quit: anewuser]
05:20
<
beach >
I was thinking, now that we have a portable reader (Eclector) would it be possible (and worthwhile) to also have a portable printer?
05:20
X-Scale` has joined #lisp
05:20
X-Scale has quit [Ping timeout: 246 seconds]
05:20
mulk has joined #lisp
05:21
X-Scale` is now known as X-Scale
05:21
jprajzne has quit [Quit: jprajzne]
05:24
<
MichaelRaskin >
I guess most of the print-object methods defined use the standard printer for the objects' components. So consistency (or coverage) might be rather hard to achieve
05:25
<
MichaelRaskin >
Although I don't know if there are any inconsistencies in the standard printer across implementations
05:25
jprajzne has joined #lisp
05:26
<
beach >
Why does the fact that the "standard printer" is used make it hard to achieve consistency?
05:26
vlatkoB has joined #lisp
05:29
<
MichaelRaskin >
OK, what should be achieved compared to the standart print-object generic function?
05:30
<
beach >
Nothing. Just the possibility of a common library rather than a separate one for each Common Lisp implementation.
05:31
<
beach >
I am always trying to cut down on the combined maintenance burden for free Common Lisp implementations.
05:34
<
beach >
These things come up when I need some module for SICL that does not seem very implementation specific to me, but I also don't see an existing library.
05:36
<
beach >
So, why does the fact that the "standard printer" is used make it hard to achieve consistency?
05:37
ebzzry has quit [Remote host closed the connection]
05:37
<
MichaelRaskin >
No, with such a motivation it doesn't create any problems
05:38
<
MichaelRaskin >
I thought that the goals include implementation-independent output consistency when used as a user-level library
05:38
<
MichaelRaskin >
My bad, sorry
05:39
<
beach >
OK. No, on the contrary, such a module should make it possible for each implementation to customize the output.
05:39
<
beach >
My fear is the opposite, i.e. that there would be no common code then.
05:41
gravicappa has joined #lisp
05:42
<
MichaelRaskin >
I would also fear that efficient printing of floating-point numbers would end up target-platform-dependent
05:43
<
beach >
I was thinking of incorporating the latest research on that topic into such a library.
05:44
<
beach >
In fact, ck_ has been working on an implementation of that research.
05:45
sauvin has joined #lisp
05:51
<
MichaelRaskin >
Ah, there is integer-decode-float
05:51
jprajzne has quit [Quit: jprajzne]
05:52
jackhill has quit [Quit: leaving]
05:53
<
MichaelRaskin >
I guess float-radix is always two outside a few museums
05:53
doublex has quit [Remote host closed the connection]
05:53
doublex has joined #lisp
05:56
jackhill has joined #lisp
06:02
schjetne has joined #lisp
06:02
Necktwi has quit [Quit: leaving]
06:04
orivej has quit [Ping timeout: 240 seconds]
06:07
schjetne has quit [Ping timeout: 268 seconds]
06:12
PuercoPope has joined #lisp
06:13
dddddd has quit [Read error: Connection reset by peer]
06:14
ahungry` has quit [Remote host closed the connection]
06:16
q9929t has joined #lisp
06:17
vsync has quit [Ping timeout: 276 seconds]
06:20
vsync has joined #lisp
06:21
jprajzne has joined #lisp
06:21
q9929t has quit [Quit: q9929t]
06:22
<
stylewarning >
Hello lisp friends
06:22
<
beach >
Hey stylewarning.
06:25
jprajzne has quit [Client Quit]
06:25
jprajzne has joined #lisp
06:30
longshi has joined #lisp
06:31
toorevitimirp has quit [Read error: Connection reset by peer]
06:32
<
no-defun-allowed >
Hello stylewarning
06:32
<
stylewarning >
What’s going on in the Lisp universe
06:33
<
stylewarning >
Trick question, the Lisp universe is our universe.
06:35
<
beach >
stylewarning: I was able to program the new version of Clouseau to inspect SICL bootstrapping objects in a readable way.
06:36
jprajzne has quit [Quit: jprajzne]
06:36
<
Shinmera >
I'm slowly making progress on my UI toolkit.
06:37
<
stylewarning >
beach: what happened to music notation or whatever it was precisely that was of interest to you
06:37
makomo has joined #lisp
06:38
<
beach >
stylewarning: There has been progress with standardization. Version 2 of Gsharp (called Clovetree) is going to use this standard and a free music font.
06:38
dale has quit [Quit: My computer has gone to sleep]
06:39
<
beach >
stylewarning: jackdaniel is working on the GUI for Clovetree, and I have vague plans for the model.
06:39
ggole has joined #lisp
06:40
<
beach >
stylewarning: But I am working 100% on SICL right now.
06:40
jprajzne has joined #lisp
06:41
<
Shinmera >
In minor news, the mmap library now no longer requires osicat.
06:41
<
stylewarning >
Shinmera: great!
06:50
_whitelogger has joined #lisp
06:54
raghavgururajan has quit [Read error: Connection reset by peer]
06:59
vlatkoB has joined #lisp
07:00
shka_ has joined #lisp
07:02
karlosz has quit [Quit: karlosz]
07:02
schjetne has joined #lisp
07:02
Necktwi has joined #lisp
07:05
Necktwi has quit [Client Quit]
07:05
Necktwi has joined #lisp
07:06
schjetne has quit [Ping timeout: 240 seconds]
07:07
vlatkoB_ has joined #lisp
07:10
vlatkoB has quit [Ping timeout: 240 seconds]
07:16
jprajzne has quit [Quit: jprajzne]
07:17
jprajzne has joined #lisp
07:17
longshi has quit [Ping timeout: 276 seconds]
07:24
krid has quit [Ping timeout: 265 seconds]
07:25
jprajzne has quit [Quit: jprajzne]
07:29
lnostdal has joined #lisp
07:33
cartwright has quit [Remote host closed the connection]
07:34
ravenousmoose has joined #lisp
07:36
toorevitimirp has joined #lisp
07:36
cartwright has joined #lisp
07:37
milanj has joined #lisp
07:41
jprajzne has joined #lisp
07:43
jonatack has quit [Ping timeout: 250 seconds]
07:45
vaporatorius has quit [Read error: Connection reset by peer]
07:46
vaporatorius has joined #lisp
07:47
toorevitimirp has quit [Ping timeout: 265 seconds]
07:51
vaporatorius has quit [Read error: Connection reset by peer]
07:53
toorevitimirp has joined #lisp
07:53
shka_ has quit [Quit: Konversation terminated!]
07:57
xkapastel has joined #lisp
07:58
vaporatorius has joined #lisp
08:01
toorevitimirp has quit [Ping timeout: 265 seconds]
08:06
Cymew has quit [Ping timeout: 240 seconds]
08:16
jprajzne has quit [Quit: jprajzne]
08:16
jprajzne has joined #lisp
08:16
manualcrank has quit [Quit: WeeChat 1.9.1]
08:25
jprajzne has quit [Quit: jprajzne]
08:26
jprajzne has joined #lisp
08:33
jonatack has joined #lisp
08:37
jonatack has quit [Ping timeout: 264 seconds]
08:38
jonatack has joined #lisp
08:38
ravenousmoose has quit [Read error: Connection reset by peer]
08:39
ravenousmoose has joined #lisp
08:48
jonatack has quit [Ping timeout: 240 seconds]
08:49
jonatack has joined #lisp
08:51
JohnMS has joined #lisp
08:54
decent-username has joined #lisp
09:06
jprajzne has quit [Quit: jprajzne]
09:06
jprajzne has joined #lisp
09:10
ljavorsk_ has joined #lisp
09:10
jprajzne has quit [Client Quit]
09:12
khisanth_ has quit [Ping timeout: 250 seconds]
09:13
lxbarbosa has joined #lisp
09:14
khisanth_ has joined #lisp
09:17
lxbarbosa has quit [Remote host closed the connection]
09:22
prite has joined #lisp
09:30
orivej has joined #lisp
09:33
DGASAU has quit [Ping timeout: 245 seconds]
09:33
jonatack has quit [Ping timeout: 240 seconds]
09:40
EvW has joined #lisp
09:45
milanj has quit [Quit: Leaving]
09:46
jprajzne has joined #lisp
09:47
JohnMS has quit [Quit: Konversation terminated!]
09:57
jonatack has joined #lisp
09:58
<
selwyn >
a lisp game jam is underway
10:35
hiroaki has joined #lisp
10:41
asdf_asdf_asdf has joined #lisp
10:42
EvW has quit [Ping timeout: 250 seconds]
10:43
<
asdf_asdf_asdf >
Hi. Is fashion to iterate pair of array?
10:43
<
no-defun-allowed >
(loop for value1 across array1 for value2 across array2 ...)
10:44
akoana has joined #lisp
10:46
random-nick has joined #lisp
10:48
Inline has quit [Ping timeout: 264 seconds]
10:48
prite has quit [Ping timeout: 246 seconds]
10:50
<
asdf_asdf_asdf >
I want (loop for (a b) in (list (list 1 2) (list 3 4) (list 5 6))).
10:52
<
no-defun-allowed >
That's not an array.
10:54
<
no-defun-allowed >
Unless you know something I don't, and you have a sequence that is simultaneously a list and an array, those aren't reconcilable.
11:00
Necktwi has quit [Ping timeout: 265 seconds]
11:09
shifty has quit [Ping timeout: 250 seconds]
11:09
shifty has joined #lisp
11:09
<
asdf_asdf_asdf >
no-defun-allowed, thanks. So how iterate for #2A array?
11:19
<
asdf_asdf_asdf >
(loop for x across #2A((1 2) (3 4)) do (princ x))
11:19
<
asdf_asdf_asdf >
Not working.
11:26
jprajzne has quit [Quit: jprajzne]
11:26
jprajzne has joined #lisp
11:28
EvW has joined #lisp
11:30
jprajzne has quit [Client Quit]
11:31
jprajzne has joined #lisp
11:31
Bike has joined #lisp
11:32
asdf_asdf_asdf has quit [Remote host closed the connection]
11:32
random-nick has quit [Ping timeout: 268 seconds]
11:35
scymtym has quit [Ping timeout: 240 seconds]
11:36
nika has joined #lisp
11:41
jprajzne has quit [Quit: jprajzne]
11:42
asdf_asdf_asdf has joined #lisp
11:46
jprajzne has joined #lisp
11:47
Necktwi has joined #lisp
11:49
Necktwi has quit [Client Quit]
11:49
Necktwi has joined #lisp
11:49
duuqnd has joined #lisp
11:56
jprajzne has quit [Quit: jprajzne]
12:00
FreeBirdLjj has joined #lisp
12:01
jprajzne has joined #lisp
12:03
dddddd has joined #lisp
12:05
FreeBirdLjj has quit [Ping timeout: 268 seconds]
12:20
anewuser has joined #lisp
12:25
scymtym has joined #lisp
12:25
gabiruh has joined #lisp
12:30
asdf_asdf_asdf has quit [Remote host closed the connection]
12:31
jprajzne has quit [Quit: jprajzne]
12:32
pjb has joined #lisp
12:36
jprajzne has joined #lisp
12:39
Inline has joined #lisp
12:41
retropikzel has joined #lisp
12:47
pjb` has joined #lisp
12:47
pjb` has quit [Read error: Connection reset by peer]
12:48
anewuser has quit [Read error: Connection reset by peer]
12:48
pjb` has joined #lisp
12:49
pjb` has quit [Remote host closed the connection]
12:49
pjb has quit [Ping timeout: 246 seconds]
12:54
anewuser has joined #lisp
12:55
asdf_asdf_asdf has joined #lisp
12:58
random-nick has joined #lisp
13:04
karswell has quit [Read error: Connection reset by peer]
13:10
heisig has joined #lisp
13:11
pjb has joined #lisp
13:12
ljavorsk_ has quit [Ping timeout: 276 seconds]
13:14
gabiruh has quit [Ping timeout: 240 seconds]
13:16
jprajzne has quit [Quit: jprajzne]
13:20
jprajzne has joined #lisp
13:20
zaquest has quit [Remote host closed the connection]
13:23
zaquest has joined #lisp
13:28
Demosthenex has quit [Ping timeout: 250 seconds]
13:28
Demosthenex has joined #lisp
13:29
ljavorsk_ has joined #lisp
13:33
pjb has quit [Ping timeout: 246 seconds]
13:35
pjb has joined #lisp
13:36
Dotty has joined #lisp
13:39
ljavorsk_ has quit [Ping timeout: 240 seconds]
13:39
jonatack has quit [Ping timeout: 240 seconds]
13:52
varjag has joined #lisp
13:53
lucasb has joined #lisp
14:00
fanta1 has joined #lisp
14:11
jprajzne has quit [Quit: jprajzne]
14:11
jprajzne has joined #lisp
14:11
notzmv has joined #lisp
14:12
notzmv is now known as Guest32466
14:12
Guest32466 is now known as zmv
14:13
ebzzry has joined #lisp
14:14
zmv is now known as notzmv
14:15
jprajzne has quit [Client Quit]
14:15
FreeBirdLjj has joined #lisp
14:15
jprajzne has joined #lisp
14:16
hhdave has joined #lisp
14:20
FreeBirdLjj has quit [Ping timeout: 268 seconds]
14:27
doublex has quit [Ping timeout: 264 seconds]
14:31
doublex has joined #lisp
14:34
C-16 has quit [Ping timeout: 265 seconds]
14:34
BooAA has joined #lisp
14:35
C-16 has joined #lisp
14:37
Dotty has quit [Remote host closed the connection]
14:43
anewuser has quit [Ping timeout: 265 seconds]
14:46
_jrjsmrtn has joined #lisp
14:46
__jrjsmrtn__ has quit [Ping timeout: 240 seconds]
14:50
orivej has quit [Ping timeout: 246 seconds]
14:56
jprajzne has quit [Quit: jprajzne]
15:01
jprajzne has joined #lisp
15:07
krid has joined #lisp
15:11
BooAA has quit [Remote host closed the connection]
15:14
kaun_ has joined #lisp
15:16
EvW has quit [Ping timeout: 276 seconds]
15:23
C-16 has quit [Ping timeout: 240 seconds]
15:25
C-16 has joined #lisp
15:36
kaun_ has left #lisp [#lisp]
15:36
kaun_ has joined #lisp
15:43
Lord_of_Life_ has joined #lisp
15:46
orivej has joined #lisp
15:46
Lord_of_Life has quit [Ping timeout: 265 seconds]
15:46
Lord_of_Life_ is now known as Lord_of_Life
15:54
hiroaki has quit [Remote host closed the connection]
15:56
jprajzne has quit [Quit: jprajzne]
15:56
krid has quit [Read error: Connection reset by peer]
15:56
salinasc has joined #lisp
15:56
jprajzne has joined #lisp
15:57
admich has joined #lisp
15:59
hiroaki has joined #lisp
16:00
jprajzne has quit [Client Quit]
16:01
jprajzne has joined #lisp
16:03
Josh_2 has joined #lisp
16:04
duuqnd has quit [Ping timeout: 265 seconds]
16:06
jprajzne has quit [Quit: jprajzne]
16:06
jprajzne has joined #lisp
16:07
duuqnd has joined #lisp
16:11
hiroaki has quit [Ping timeout: 265 seconds]
16:20
heisig has quit [Quit: Leaving]
16:20
hiroaki has joined #lisp
16:21
jprajzne has quit [Quit: jprajzne]
16:21
jprajzne has joined #lisp
16:35
manualcrank has joined #lisp
16:44
kaun_ has left #lisp [#lisp]
16:53
EvW1 has joined #lisp
16:55
salinasc has quit [Ping timeout: 250 seconds]
16:56
zdm has joined #lisp
16:57
asdf_asdf_asdf has quit [Remote host closed the connection]
17:00
cosimone has joined #lisp
17:05
fanta1 has quit [Quit: fanta1]
17:06
salinasc has joined #lisp
17:09
FreeBirdLjj has joined #lisp
17:11
salinasc has quit [Ping timeout: 268 seconds]
17:13
FreeBirdLjj has quit [Ping timeout: 240 seconds]
17:21
clothespin has quit [Ping timeout: 268 seconds]
17:26
jprajzne has quit [Quit: jprajzne]
17:26
jprajzne has joined #lisp
17:27
scymtym has quit [Ping timeout: 245 seconds]
17:29
cosimone has quit [Quit: Terminated!]
17:30
jprajzne has quit [Client Quit]
17:31
jprajzne has joined #lisp
17:34
jonatack has joined #lisp
17:39
lambda-smith has joined #lisp
17:42
clothespin has joined #lisp
17:47
decent-username has quit [Ping timeout: 246 seconds]
17:48
buffergn0me has joined #lisp
17:48
EvW1 has quit [Ping timeout: 264 seconds]
17:49
fsmunoz has joined #lisp
17:49
zdm has quit [Remote host closed the connection]
17:50
analogue has joined #lisp
17:50
Ekho- is now known as Ekho
17:50
zdm has joined #lisp
17:56
salinasc has joined #lisp
17:58
<
flip214 >
minion: memo for asdf_asdf_asdf: Look at ARRAY-TOTAL-SIZE and ROW-MAJOR-AREF
17:58
<
minion >
Remembered. I'll tell asdf_asdf_asdf when he/she/it next speaks.
18:02
gabiruh has joined #lisp
18:06
jprajzne has quit [Quit: jprajzne]
18:06
vlatkoB_ has quit [Remote host closed the connection]
18:07
Necktwi has quit [Quit: leaving]
18:08
scymtym has joined #lisp
18:09
EvW has joined #lisp
18:10
marusich has joined #lisp
18:12
<
buffergn0me >
minion: they is a polite pronoun
18:12
<
minion >
i agree - they is a polite pronoun
18:16
jprajzne has joined #lisp
18:18
lambda-smith has quit [Quit: Konversation terminated!]
18:21
clothespin has quit [Ping timeout: 268 seconds]
18:28
gabiruh_ has joined #lisp
18:29
gabiruh has quit [Ping timeout: 265 seconds]
18:32
cosimone has joined #lisp
18:53
xkapastel has quit [Quit: Connection closed for inactivity]
18:56
jprajzne has quit [Quit: jprajzne]
19:00
aindilis has quit [Ping timeout: 264 seconds]
19:01
jprajzne has joined #lisp
19:04
xkapastel has joined #lisp
19:08
random-nick has quit [Ping timeout: 240 seconds]
19:09
aindilis has joined #lisp
19:10
fsmunoz has quit [Ping timeout: 250 seconds]
19:11
salinasc has quit [Ping timeout: 246 seconds]
19:11
notzmv has quit [Ping timeout: 240 seconds]
19:14
salinasc has joined #lisp
19:26
jprajzne has quit [Quit: jprajzne]
19:26
jprajzne has joined #lisp
19:30
salinasce has joined #lisp
19:31
salinasc has quit [Read error: Connection reset by peer]
19:31
prite has joined #lisp
19:45
igemnace has quit [Ping timeout: 250 seconds]
19:45
jprajzne has quit [Quit: jprajzne]
19:46
jprajzne has joined #lisp
19:49
buffergn0me has quit [Ping timeout: 264 seconds]
19:52
retropikzel has quit [Remote host closed the connection]
20:02
vaporatorius has quit [Read error: Connection reset by peer]
20:03
lemoinem has quit [Ping timeout: 265 seconds]
20:06
gravicappa has quit [Ping timeout: 246 seconds]
20:06
jprajzne has quit [Quit: jprajzne]
20:06
ggole has quit [Quit: Leaving]
20:08
asdf_asdf_asdf has joined #lisp
20:08
ugli has joined #lisp
20:10
Lycurgus has joined #lisp
20:11
jprajzne has joined #lisp
20:14
kajo has quit [Ping timeout: 245 seconds]
20:14
semz has quit [Ping timeout: 264 seconds]
20:15
lemoinem has joined #lisp
20:15
kajo has joined #lisp
20:16
shifty has quit [Ping timeout: 245 seconds]
20:17
shifty has joined #lisp
20:17
space_otter has joined #lisp
20:26
doublex has quit [Read error: Connection reset by peer]
20:26
doublex_ has joined #lisp
20:27
doublex_ has quit [Read error: Connection reset by peer]
20:27
doublex has joined #lisp
20:30
semz has joined #lisp
20:30
semz has quit [Changing host]
20:30
semz has joined #lisp
20:32
doublex has quit [Ping timeout: 240 seconds]
20:32
hhdave has quit [Quit: hhdave]
20:35
random-nick has joined #lisp
20:40
doublex has joined #lisp
20:41
jprajzne has quit [Quit: jprajzne]
20:42
bitmapper has joined #lisp
20:45
doublex has quit [Ping timeout: 276 seconds]
20:46
jprajzne has joined #lisp
20:51
ugli has quit [Remote host closed the connection]
20:54
analogue has quit [Quit: Leaving]
20:56
jprajzne has quit [Quit: jprajzne]
21:01
jprajzne has joined #lisp
21:02
shifty has quit [Ping timeout: 250 seconds]
21:04
vaporatorius has joined #lisp
21:04
vaporatorius has quit [Changing host]
21:04
vaporatorius has joined #lisp
21:07
Ven`` has joined #lisp
21:09
ravenousmoose has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
21:19
EvW has quit [Ping timeout: 245 seconds]
21:21
gabiruh_ has quit [Ping timeout: 245 seconds]
21:29
longshi has joined #lisp
21:37
gabiruh has joined #lisp
21:42
donotturnoff has joined #lisp
21:42
<
fiddlerwoaroof_ >
hi o/
21:43
xkapastel has quit [Quit: Connection closed for inactivity]
21:46
fanta1 has joined #lisp
21:50
ravenousmoose has joined #lisp
21:54
leb has joined #lisp
21:54
ravenousmoose has quit [Ping timeout: 276 seconds]
21:59
admich has quit [Quit: ERC (IRC client for Emacs 26.3)]
21:59
random-nick has quit [Ping timeout: 240 seconds]
21:59
reggie_ has joined #lisp
22:01
jprajzne has quit [Quit: jprajzne]
22:01
jprajzne has joined #lisp
22:04
iovec has joined #lisp
22:05
jprajzne has quit [Client Quit]
22:05
doublex has joined #lisp
22:06
jprajzne has joined #lisp
22:13
donotturnoff has quit [Ping timeout: 250 seconds]
22:16
doublex has quit [Quit: Quit]
22:21
vms14 has joined #lisp
22:26
fanta1 has quit [Quit: fanta1]
22:45
varjag has quit [Ping timeout: 240 seconds]
22:55
fiddlerwoaroof_ is now known as fiddlerwoaroof
22:55
Ven`` has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
22:56
fiddlerwoaroof is now known as fiddlerwoaroof_
22:57
fiddlerwoaroof_ is now known as fiddlerwoaroof
22:59
vms14 has quit [Quit: Bye]
22:59
vms14 has joined #lisp
23:04
cosimone has quit [Ping timeout: 245 seconds]
23:07
aindilis has quit [Ping timeout: 240 seconds]
23:09
nydel has quit [Quit: WeeChat 2.1]
23:11
jprajzne has quit [Quit: jprajzne]
23:11
hhdave has joined #lisp
23:11
jprajzne has joined #lisp
23:11
hhdave has quit [Client Quit]
23:13
nydel has joined #lisp
23:13
nydel has quit [Changing host]
23:13
nydel has joined #lisp
23:14
nydel has quit [Client Quit]
23:15
nydel has joined #lisp
23:15
nydel has joined #lisp
23:15
nydel has quit [Changing host]
23:16
nydel has quit [Client Quit]
23:20
jprajzne has quit [Quit: jprajzne]
23:21
jprajzne has joined #lisp
23:26
jprajzne has quit [Quit: jprajzne]
23:26
jprajzne has joined #lisp
23:30
varjag has joined #lisp
23:32
Lycurgus has quit [Quit: Exeunt]
23:35
jprajzne has quit [Quit: jprajzne]
23:35
varjag has quit [Ping timeout: 276 seconds]
23:36
jprajzne has joined #lisp
23:41
jprajzne has quit [Quit: jprajzne]
23:41
X-Scale` has joined #lisp
23:42
X-Scale has quit [Ping timeout: 240 seconds]
23:42
X-Scale` is now known as X-Scale
23:42
prite has quit [Ping timeout: 246 seconds]
23:44
EvW has joined #lisp
23:45
bitmapper has quit [Remote host closed the connection]
23:46
jprajzne has joined #lisp
23:48
bitmapper has joined #lisp
23:50
bitmapper has quit [Remote host closed the connection]
23:50
bitmapper has joined #lisp
23:51
jprajzne has quit [Quit: jprajzne]
23:55
aindilis has joined #lisp