00:01
dino_tutter has joined #commonlisp
00:21
eddof13 has joined #commonlisp
00:22
gamaliel has joined #commonlisp
00:23
bubblegum has quit [Read error: Connection reset by peer]
00:24
bubblegum has joined #commonlisp
00:25
eddof13 has quit [Quit: eddof13]
00:26
shka has quit [Ping timeout: 260 seconds]
00:27
Kyuvi has quit [Quit: Client closed]
00:28
bubblegum has quit [Ping timeout: 240 seconds]
00:29
bubblegum has joined #commonlisp
00:32
leungbk has joined #commonlisp
00:34
donleo has quit [Ping timeout: 256 seconds]
00:46
bubblegum has quit [Read error: Connection reset by peer]
00:46
bubblegum has joined #commonlisp
00:47
josrr has quit [Remote host closed the connection]
00:48
yitzi has joined #commonlisp
00:49
pranavats has left #commonlisp [Disconnected: Hibernating too long]
00:50
hayley_ is now known as hayley
00:50
hayley has quit [Changing host]
00:50
hayley has joined #commonlisp
00:50
bubblegum has quit [Ping timeout: 246 seconds]
00:51
pranavats has joined #commonlisp
00:51
bubblegum has joined #commonlisp
00:55
bubblegum has quit [Read error: Connection reset by peer]
00:56
bubblegum has joined #commonlisp
00:58
nyx_land has joined #commonlisp
01:00
bubblegum has quit [Ping timeout: 252 seconds]
01:00
bubblegum has joined #commonlisp
01:00
gilgal has joined #commonlisp
01:04
bubblegum has quit [Read error: Connection reset by peer]
01:04
bubblegum has joined #commonlisp
01:06
cladur has quit [Remote host closed the connection]
01:06
gilgal has quit [Remote host closed the connection]
01:06
akoana has quit [Quit: leaving]
01:08
bubblegum has quit [Read error: Connection reset by peer]
01:09
bubblegum has joined #commonlisp
01:10
rtypo has quit [Ping timeout: 256 seconds]
01:11
Lord_of_Life has joined #commonlisp
01:14
bubblegum has quit [Read error: Connection reset by peer]
01:15
bubblegum has joined #commonlisp
01:16
random-nick has quit [Ping timeout: 264 seconds]
01:17
gamaliel has quit [Quit: Client closed]
01:18
gamaliel has joined #commonlisp
01:19
bubblegum has quit [Ping timeout: 252 seconds]
01:19
bubblegum has joined #commonlisp
01:24
bubblegum has quit [Read error: Connection reset by peer]
01:24
bubblegum has joined #commonlisp
01:28
bubblegum has quit [Ping timeout: 252 seconds]
01:29
bubblegum has joined #commonlisp
01:31
rgherdt_ has quit [Quit: Leaving]
01:41
olnw has joined #commonlisp
01:47
leungbk has quit [Ping timeout: 245 seconds]
01:55
<
BrokenCog >
why are strings so hard to use in lisp. i want to remove whitespace and puncuation. I try: (split-sequence:split-sequence ","
*str*) and get *str*
01:55
<
BrokenCog >
[with it's commas]
01:56
<
hayley >
Because split-sequence splits on an element (character), not a subsequence (string). Try (split-sequence:split-sequence #\, *str*)
01:57
<
BrokenCog >
okay. thanks. so, to remove all the whitespace/punc etc do I need to use a loop? map?
01:59
<
hayley >
You can use split-sequence-if a la (split-sequence:split-sequence-if #'punctiation-p *str*)
01:59
<
hayley >
(with a suitable definition of punctuation-p)
02:01
olnw has left #commonlisp [#commonlisp]
02:01
<
BrokenCog >
and there's no existing "search all string for" function ...
02:01
<
BrokenCog >
or, rather "find in"
02:02
<
hayley >
,(search "needle" "hay hay hay needle hay hay hay")
02:02
<
ixelp >
(search "needle" "hay hay hay needle hay hay hay") => 12
02:04
<
BrokenCog >
(search "needle" "hay hay hay needle hay hay needle needle") => needle
02:04
<
BrokenCog >
sorry ... => 12
02:04
<
BrokenCog >
wouldn't be helpful in replacing all the puncuation whitespace.
02:07
meritamen has joined #commonlisp
02:08
ym has joined #commonlisp
02:14
<
gilberth >
BrokenCog: You said "i want to remove whitespace and punctuation". That leaves alphanumeric characters. So just say that: ,(remove-if-not #'alphanumericp "Is this what you want? Namely, removing all but letters and digits?")
02:14
<
ixelp >
(remove-if-not #'alphanumericp "Is this what you want? Namely, removing all but letters and digits?") => "IsthiswhatyouwantNamelyremovingallbutlettersanddigits"
02:15
<
BrokenCog >
oh, thanks. I'll try!
02:20
yitzi has quit [Remote host closed the connection]
02:40
khrbtxyz has quit [Ping timeout: 256 seconds]
02:40
khrbtxyz has joined #commonlisp
02:44
<
BrokenCog >
This is taking successive elements from each list, appending them into a list. I see that in the first element of the result list, but the second two elements are not clear. How do those second two lists get created? (maplist #'append '(1 2 3 4) '(1 2) '(1 2 3)) => ((1 2 3 4 1 2 1 2 3) (2 3 4 2 2 3))
02:45
<
BrokenCog >
/second two/second/
02:47
<
ixelp >
7. Objects | Common Lisp (New) Language Reference
02:47
<
kevingal >
(I think the person who runs it is in here? :)
02:48
<
beach >
BrokenCog: If you set
*PRINT-CIRCLE* to true, you will see more clearly.
02:49
gamaliel has quit [Quit: Client closed]
02:51
<
beach >
BrokenCog: So they there is lots of sharing in the result.
02:51
<
BrokenCog >
hmmm. I'm looking at: ((1 2 3 4 1 2 1 . #1=(2 3)) (2 3 4 2 . #1#)) ... what is #1?
02:51
<
BrokenCog >
the shared liste elements?
02:51
<
beach >
Oh! It's a reader label.
02:52
<
beach >
So #1= labels an object and #1# refers to it.
02:54
<
beach >
BrokenCog: So you get just two lists in the result, because the second list argument has just two elements.
02:55
<
beach >
BrokenCog: The second list is the result of appending the CDR of each input list, so it appends (2 3 4) (2) and (2 3)
02:56
<
beach >
BrokenCog: But the (2 3) is the shared with the tail of the first list in the result because APPEND does not copy its last argument.
02:59
<
BrokenCog >
so, maplist is mapping the cdr of each list?
02:59
<
beach >
MAPLIST is mapping whatever function you give it to successive CDRs of each list, yes.
02:59
<
beach >
::clhs maplist
02:59
<
ixelp >
CLHS: Function MAPC, MAPCAR, MAPCAN, MAPL...
03:01
<
beach >
So first to (1 2 3 4), (1 2), and (1 2 3) and then to (2 3 4), (2), and (2 3)
03:01
<
BrokenCog >
and so on ...
03:02
<
beach >
Not in this case. It stops when at least one input list is empty.
03:02
<
BrokenCog >
Okay, I get it. thanks.
03:05
meritamen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
03:11
meritamen has joined #commonlisp
03:13
jon_atack has joined #commonlisp
03:13
jonatack has quit [Read error: Connection reset by peer]
03:25
<
beach >
Happy solstice everyone!
03:25
<
hayley >
Here's your dang sun back.
03:26
<
beach >
Thank you so much. It has been missed.
03:26
<
hayley >
Please don't return it.
03:26
<
beach >
Well, you should probably move to the northern hemisphere for your studies anyway. :)
03:27
<
hayley >
I got my offer from the Australian National University yesterday, so that will have to wait.
03:27
<
beach >
Congratulations, then!
03:29
<
moon-child >
what if we could split it? 50/50
03:30
<
beach >
Oh, you mean like one hemisphere gets it half the year and the other one the other half of the year? That's an idea.
03:30
<
hayley >
Perhaps I should move further south to Antartica.
03:35
<
beach >
Dunedin seemed like an interesting place. I was there for the Australian [sic] Linux conference one year.
03:35
meritamen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
03:36
leungbk has joined #commonlisp
03:37
<
beach >
2006 apparently.
03:40
meritamen has joined #commonlisp
03:46
leungbk has quit [Ping timeout: 245 seconds]
03:47
leungbk has joined #commonlisp
03:53
zaemington has quit [Remote host closed the connection]
03:53
zaemington has joined #commonlisp
04:09
<
beach >
Hmm, Paris is closer to the north pole than Dunedin is to the south pole.
04:17
kevingal has quit [Ping timeout: 245 seconds]
04:17
kevingal_ has quit [Ping timeout: 245 seconds]
04:21
cladur has joined #commonlisp
04:45
tibfulv has quit [Remote host closed the connection]
04:46
tibfulv has joined #commonlisp
04:49
cladur has quit [Read error: Connection reset by peer]
04:49
cladur_ has joined #commonlisp
04:51
cladur_ has quit [Client Quit]
04:58
cladur has joined #commonlisp
05:01
waleee has quit [Ping timeout: 268 seconds]
05:26
decweb has quit [Ping timeout: 276 seconds]
05:34
markb1 has quit [Ping timeout: 245 seconds]
05:35
meritamen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
05:36
AetherWind has joined #commonlisp
05:45
markb1 has joined #commonlisp
05:49
igemnace has joined #commonlisp
05:55
pfdietz has quit [Quit: Client closed]
06:01
chomwitt has joined #commonlisp
06:03
son0p has quit [Ping timeout: 256 seconds]
06:51
pve has joined #commonlisp
06:54
opus has joined #commonlisp
07:15
meritamen has joined #commonlisp
07:34
prokhor has quit [Ping timeout: 245 seconds]
07:35
prokhor has joined #commonlisp
07:39
simendsjo has joined #commonlisp
07:46
simendsj` has joined #commonlisp
07:49
simendsjo has quit [Remote host closed the connection]
07:49
simendsj` has quit [Remote host closed the connection]
07:55
donleo has joined #commonlisp
08:02
rainthree has joined #commonlisp
08:07
Guest33 has joined #commonlisp
08:08
Guest33 is now known as Aesth
08:11
son0p has joined #commonlisp
08:21
triffid has quit [Remote host closed the connection]
08:22
jon_atack has quit [Read error: Connection reset by peer]
08:22
jonatack has joined #commonlisp
08:22
triffid has joined #commonlisp
08:28
treflip has joined #commonlisp
08:33
prokhor_ has joined #commonlisp
08:34
prokhor has quit [Ping timeout: 256 seconds]
08:37
Pixel_Outlaw has quit [Quit: Leaving]
08:46
rgherdt has joined #commonlisp
08:59
rainthree3 has joined #commonlisp
09:03
shka has joined #commonlisp
09:06
_cymew_ has joined #commonlisp
09:15
rainthree3 has quit [Quit: Leaving]
09:36
traidare has joined #commonlisp
09:37
bendersteed has joined #commonlisp
09:38
varjag has joined #commonlisp
09:40
<
beach >
I would approve.
09:41
<
beach >
The DEFMETHOD thing is devastating, especially since my dyslexia is getting worse, so I don't necessarily see a typo there.
09:42
ronald_ has quit [Ping timeout: 268 seconds]
09:43
ronald has joined #commonlisp
09:43
rtypo has joined #commonlisp
09:44
danse-nr3 has joined #commonlisp
09:44
meritamen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
09:44
<
beach >
And, yes, anaphoric macros encourage the programmer to break the rules stated on page 13 of the LUV slides.
09:44
ronald has quit [Read error: Connection reset by peer]
09:45
danse-nr3 has quit [Read error: Connection reset by peer]
09:48
danse-nr3 has joined #commonlisp
09:48
ronald has joined #commonlisp
09:49
jmdaemon has quit [Ping timeout: 256 seconds]
09:54
<
beach >
rainthree: Though, I think it can be hard to shadow SETQ, plus, you would have to shadow SETF as well, and perhaps some other operators.
09:55
<
beach >
I am not sure how the shadowed version of SETQ could figure out that it is safe to use the CL version.
09:56
<
beach >
Other operators like INCF, DECF, etc.
09:56
<
beach >
Well, maybe not.
09:57
Aesth has quit [Ping timeout: 250 seconds]
09:58
heisig has joined #commonlisp
09:59
meritamen has joined #commonlisp
10:04
treflip has quit [Remote host closed the connection]
10:07
rtypo has quit [Quit: WeeChat 4.1.2]
10:15
attila_lendvai has joined #commonlisp
10:18
Guest33 has joined #commonlisp
10:33
_cymew_ has quit [Ping timeout: 268 seconds]
10:34
yitzi has joined #commonlisp
10:42
cladur has quit [Remote host closed the connection]
10:42
cladur has joined #commonlisp
10:45
Guest33 has quit [Quit: Client closed]
10:48
shka has quit [Read error: Connection reset by peer]
10:52
shka has joined #commonlisp
10:57
szkl has joined #commonlisp
10:58
random-nick has joined #commonlisp
10:59
ym has quit [Remote host closed the connection]
11:00
dajole has quit [Quit: Connection closed for inactivity]
11:08
AetherWind has quit [Quit: leaving]
11:11
srji has joined #commonlisp
11:11
srji has quit [Client Quit]
11:14
srji has joined #commonlisp
11:16
<
rainthree >
seems to work in sbcl, allegro personal and lispworks personal
11:23
AetherWind has joined #commonlisp
11:31
kevingal has joined #commonlisp
11:31
kevingal_ has joined #commonlisp
11:31
_cymew_ has joined #commonlisp
11:32
dino_tutter has quit [Ping timeout: 245 seconds]
11:34
<
Josh_2 >
Good morning :sunglasses:
11:35
madnificent has joined #commonlisp
11:36
zetef has joined #commonlisp
11:43
pfdietz has joined #commonlisp
11:43
decweb has joined #commonlisp
12:00
mooseball has joined #commonlisp
12:03
danse-nr3 has quit [Read error: Connection reset by peer]
12:06
cladur has quit [Remote host closed the connection]
12:12
cladur has joined #commonlisp
12:13
tyson2 has joined #commonlisp
12:17
shka has quit [Read error: Connection reset by peer]
12:19
leungbk has quit [Remote host closed the connection]
12:20
shka has joined #commonlisp
12:25
traidare has quit [Ping timeout: 276 seconds]
12:25
markb1 has quit [Ping timeout: 245 seconds]
12:26
cladur_ has joined #commonlisp
12:28
danse-nr3 has joined #commonlisp
12:28
dino_tutter has joined #commonlisp
12:29
cladur has quit [Ping timeout: 256 seconds]
12:32
igemnace has quit [Read error: Connection reset by peer]
12:38
cladur_ has quit [Remote host closed the connection]
12:48
zetef has quit [Remote host closed the connection]
12:50
igemnace has joined #commonlisp
12:51
cage has joined #commonlisp
12:56
cladur has joined #commonlisp
12:57
markb1 has joined #commonlisp
12:58
meritamen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
13:01
cladur has quit [Ping timeout: 268 seconds]
13:08
traidare has joined #commonlisp
13:09
meritamen has joined #commonlisp
13:09
meritamen has quit [Client Quit]
13:09
Equill has joined #commonlisp
13:10
srji has quit [Quit: leaving]
13:19
rainthree has quit [Read error: Connection reset by peer]
13:19
rainthree has joined #commonlisp
13:19
cladur has joined #commonlisp
13:23
cage has quit [Remote host closed the connection]
13:28
mooseball has quit [Read error: Connection reset by peer]
13:30
rainthree3 has joined #commonlisp
13:30
rainthree has quit [Ping timeout: 256 seconds]
13:32
varjag has quit [Quit: ERC (IRC client for Emacs 27.1)]
13:33
rainthree has joined #commonlisp
13:34
rainthree3 has quit [Read error: Connection reset by peer]
13:36
simendsjo has joined #commonlisp
13:42
<
beach >
rainthree: Clever!
13:51
cladur has quit [Remote host closed the connection]
13:53
zaemington has quit [Remote host closed the connection]
13:53
zaemington has joined #commonlisp
13:56
josrr has joined #commonlisp
13:57
mooseball has joined #commonlisp
14:02
<
mfiano >
I like the lexical predicate.
14:05
cladur has joined #commonlisp
14:06
<
bike >
specialp will give incorrect results for something that's locally but not globally special
14:06
<
bike >
pretty uncommon in practice, of course
14:09
cladur has quit [Remote host closed the connection]
14:09
cladur has joined #commonlisp
14:10
<
mfiano >
Good point. You'll need CLtL2 extension support, or dirtier portability code.
14:10
heisig has quit [Quit: Leaving]
14:11
<
beach >
dnhester26: It seems some of my edits were lost, like when you turned _and.md into _and_macro.md
14:13
notzmv has quit [Ping timeout: 260 seconds]
14:17
zetef has joined #commonlisp
14:20
alfplayer has joined #commonlisp
14:22
danse-nr3 has quit [Ping timeout: 260 seconds]
14:24
alfplayer has quit [Client Quit]
14:24
alfplayer__ has joined #commonlisp
14:25
yitzi has quit [Remote host closed the connection]
14:28
cladur has quit [Remote host closed the connection]
14:28
azimut has quit [Ping timeout: 240 seconds]
14:31
cladur has joined #commonlisp
14:31
kevingal_ has quit [Ping timeout: 268 seconds]
14:31
kevingal has quit [Ping timeout: 268 seconds]
14:32
chomwitt has quit [Ping timeout: 260 seconds]
14:32
dino_tutter has quit [Ping timeout: 256 seconds]
14:35
cladur has quit [Ping timeout: 264 seconds]
14:37
simendsjo has quit [Ping timeout: 255 seconds]
14:45
josrr has quit [Remote host closed the connection]
14:47
danza has joined #commonlisp
14:49
traidare has quit [Ping timeout: 252 seconds]
14:53
cladur has joined #commonlisp
14:53
cage has joined #commonlisp
14:55
khrbtxyz has quit [Ping timeout: 246 seconds]
14:55
kevingal has joined #commonlisp
14:55
kevingal_ has joined #commonlisp
14:55
traidare has joined #commonlisp
14:55
khrbtxyz has joined #commonlisp
14:57
tyson2 has quit [Remote host closed the connection]
15:03
cladur has quit [Remote host closed the connection]
15:07
cladur has joined #commonlisp
15:13
meritamen has joined #commonlisp
15:32
szkl has quit [Quit: Connection closed for inactivity]
15:33
tyson2 has joined #commonlisp
15:35
yitzi has joined #commonlisp
15:36
cladur has quit [Read error: Connection reset by peer]
15:36
cladur_ has joined #commonlisp
15:38
azimut has joined #commonlisp
15:41
bendersteed has quit [Quit: bendersteed]
15:41
meritamen has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
15:48
kevingal_ has quit [Ping timeout: 255 seconds]
15:49
kevingal has quit [Ping timeout: 255 seconds]
15:51
mooseball has quit [Quit: Leaving]
15:58
cladur has joined #commonlisp
15:58
mgl has joined #commonlisp
15:59
eddof13 has joined #commonlisp
15:59
cladur_ has quit [Ping timeout: 260 seconds]
15:59
eddof13 has quit [Client Quit]
16:00
azimut has quit [Ping timeout: 240 seconds]
16:01
azimut has joined #commonlisp
16:02
josrr has joined #commonlisp
16:05
eddof13 has joined #commonlisp
16:05
traidare has quit [Ping timeout: 255 seconds]
16:08
eddof13 has quit [Client Quit]
16:12
notzmv has joined #commonlisp
16:15
eddof13 has joined #commonlisp
16:15
cladur has quit [Remote host closed the connection]
16:19
eddof13 has quit [Ping timeout: 252 seconds]
16:27
danza has quit [Ping timeout: 245 seconds]
16:27
AetherWind has quit [Quit: leaving]
16:32
dino_tutter has joined #commonlisp
16:32
Lycurgus has quit [Quit: leaving]
16:32
cladur has joined #commonlisp
16:35
cladur has quit [Remote host closed the connection]
16:36
cladur has joined #commonlisp
16:38
Pixel_Outlaw has joined #commonlisp
16:40
danza has joined #commonlisp
16:41
epony has quit [Remote host closed the connection]
16:50
cladur_ has joined #commonlisp
16:50
cladur_ has quit [Remote host closed the connection]
16:50
cladur_ has joined #commonlisp
16:51
traidare has joined #commonlisp
16:53
cladur has quit [Ping timeout: 255 seconds]
17:01
waleee has joined #commonlisp
17:23
tyson2 has quit [Remote host closed the connection]
17:24
zetef has quit [Remote host closed the connection]
17:26
cladur_ has quit [Remote host closed the connection]
17:27
cladur has joined #commonlisp
17:34
cladur has quit [Remote host closed the connection]
17:41
tyson2 has joined #commonlisp
17:45
monospod has joined #commonlisp
17:48
cladur has joined #commonlisp
17:52
cladur has quit [Ping timeout: 256 seconds]
18:20
mgl has quit [Ping timeout: 252 seconds]
18:23
kevingal has joined #commonlisp
18:23
kevingal_ has joined #commonlisp
18:24
cladur has joined #commonlisp
18:30
cladur has quit [Ping timeout: 245 seconds]
18:33
triffid has quit [Ping timeout: 240 seconds]
18:40
chiselfuse has quit [Ping timeout: 240 seconds]
18:41
cladur has joined #commonlisp
18:41
chiselfuse has joined #commonlisp
18:41
triffid has joined #commonlisp
18:42
igemnace has quit [Remote host closed the connection]
18:45
<
lispmacs[work] >
can I use babel just to check if a character is an ASCII character or not?
18:45
<
Josh_2 >
Can't you just char-code it and check if its sub 255?
18:45
<
lispmacs[work] >
I suppose so... I was under the impression that, strictly speaking, that was not portable
18:47
kevingal_ has quit [Remote host closed the connection]
18:47
kevingal has quit [Remote host closed the connection]
18:47
tyson2 has quit [Remote host closed the connection]
18:49
<
lispmacs[work] >
all systems will be using ascii / unicode on the back end?
18:49
Lord_Nightmare has joined #commonlisp
18:50
<
bike >
this is a safe assumption if you are using a lisp implementation updated within the present millenium.
18:51
<
lispmacs[work] >
oh, okay. Well, I'll just check then if the char-code is [0-128)
18:51
<
lispmacs[work] >
I don't want the extended characters or whatever those are called
18:51
<
lispmacs[work] >
above 127
18:56
danza has quit [Quit: Leaving]
18:57
cladur has quit [Remote host closed the connection]
19:01
yitzi has quit [Remote host closed the connection]
19:02
<
fourier >
Anyone created appimage from binaries produced by sbcl ?
19:08
tibfulv has quit [Remote host closed the connection]
19:10
tibfulv has joined #commonlisp
19:10
thuna` has quit [Remote host closed the connection]
19:13
cladur has joined #commonlisp
19:15
cage has quit [Quit: rcirc on GNU Emacs 29.1]
19:17
tibfulv has quit [Remote host closed the connection]
19:18
<
fourier >
any ready-to-use yml file available ?
19:18
tibfulv has joined #commonlisp
19:18
cladur has quit [Ping timeout: 256 seconds]
19:18
tibfulv has quit [Remote host closed the connection]
19:20
tibfulv has joined #commonlisp
19:24
dajole has joined #commonlisp
19:27
bjorkintosh has quit [Ping timeout: 245 seconds]
19:29
green_ has joined #commonlisp
19:32
monospod has quit [Quit: Konversation terminated!]
19:35
cladur has joined #commonlisp
19:35
triffid has quit [Remote host closed the connection]
19:35
triffid has joined #commonlisp
19:43
grawlinson has quit [Ping timeout: 276 seconds]
19:47
bubblegum has quit [Ping timeout: 245 seconds]
19:48
cladur has quit [Remote host closed the connection]
19:48
Josh_2 has quit [Quit: Gotta go fast!]
19:49
bubblegum has joined #commonlisp
19:50
bubblegum has quit [Read error: Connection reset by peer]
19:51
grawlinson has joined #commonlisp
19:52
eddof13 has joined #commonlisp
19:52
bubblegum has joined #commonlisp
19:52
cladur has joined #commonlisp
19:53
bubblegum has quit [Read error: Connection reset by peer]
19:53
eddof13 has quit [Client Quit]
19:54
bubblegum has joined #commonlisp
19:54
eddof13 has joined #commonlisp
19:54
bubblegum has quit [Read error: Connection reset by peer]
19:55
bubblegum has joined #commonlisp
19:55
bubblegum has quit [Read error: Connection reset by peer]
19:55
bubblegum has joined #commonlisp
19:57
bubblegum has quit [Read error: Connection reset by peer]
19:57
eddof13 has quit [Client Quit]
19:58
eddof13 has joined #commonlisp
19:58
bubblegum has joined #commonlisp
19:59
triffid has quit [Ping timeout: 240 seconds]
20:00
szkl has joined #commonlisp
20:00
chiselfu1e has joined #commonlisp
20:01
chiselfuse has quit [Ping timeout: 240 seconds]
20:05
rainthree has quit [Ping timeout: 256 seconds]
20:07
triffid has joined #commonlisp
20:12
cladur has quit [Remote host closed the connection]
20:14
bjorkintosh has joined #commonlisp
20:14
bjorkintosh has joined #commonlisp
20:14
bjorkintosh has quit [Changing host]
20:15
cladur has joined #commonlisp
20:21
tasty has quit [Quit: bye bye!]
20:22
bubblegum has quit [Read error: Connection reset by peer]
20:22
tasty has joined #commonlisp
20:22
tasty has quit [Changing host]
20:22
tasty has joined #commonlisp
20:23
random-nick has quit [Ping timeout: 268 seconds]
20:25
Kyuvi has joined #commonlisp
20:26
tyson2 has joined #commonlisp
20:27
mgl has joined #commonlisp
20:31
robin_ has joined #commonlisp
20:32
bubblegum has joined #commonlisp
20:32
robin has quit [Ping timeout: 245 seconds]
20:35
random-nick has joined #commonlisp
20:36
robin__ has joined #commonlisp
20:38
robin_ has quit [Ping timeout: 252 seconds]
20:45
robin_ has joined #commonlisp
20:46
cladur has quit [Remote host closed the connection]
20:46
_cymew_ has quit [Ping timeout: 268 seconds]
20:48
robin__ has quit [Ping timeout: 268 seconds]
20:51
chomwitt has joined #commonlisp
20:52
bubblegum has quit [Read error: Connection reset by peer]
21:01
zaemington has quit [Remote host closed the connection]
21:02
zaemington has joined #commonlisp
21:04
cladur has joined #commonlisp
21:06
bubblegum has joined #commonlisp
21:11
cladur has quit [Ping timeout: 255 seconds]
21:18
mgl has quit [Ping timeout: 252 seconds]
21:22
bubblegum has quit [Read error: Connection reset by peer]
21:22
bubblegum has joined #commonlisp
21:22
bubblegum has quit [Read error: Connection reset by peer]
21:23
bubblegum has joined #commonlisp
21:27
cladur has joined #commonlisp
21:27
eddof13 has quit [Quit: My MacBook Air has gone to sleep. ZZZzzz…]
21:30
cladur has quit [Remote host closed the connection]
21:30
cladur has joined #commonlisp
21:31
cladur has quit [Remote host closed the connection]
21:34
chomwitt has quit [Ping timeout: 256 seconds]
21:39
mariari has quit [Ping timeout: 245 seconds]
21:47
cladur has joined #commonlisp
21:52
bubblegum has quit [Read error: Connection reset by peer]
21:52
mariari has joined #commonlisp
21:53
bubblegum has joined #commonlisp
22:04
cladur has quit [Remote host closed the connection]
22:04
cladur has joined #commonlisp
22:04
cladur has quit [Remote host closed the connection]
22:18
chiselfu1e has quit [Ping timeout: 240 seconds]
22:19
chiselfuse has joined #commonlisp
22:20
cladur has joined #commonlisp
22:22
robin has joined #commonlisp
22:24
bubblegum has quit [Read error: Connection reset by peer]
22:24
robin_ has quit [Ping timeout: 245 seconds]
22:25
bubblegum has joined #commonlisp
22:26
cladur has quit [Remote host closed the connection]
22:26
cladur has joined #commonlisp
22:30
epony has joined #commonlisp
22:31
cladur has quit [Ping timeout: 252 seconds]
22:37
Jach has quit [Ping timeout: 245 seconds]
22:37
Jach has joined #commonlisp
22:45
cladur has joined #commonlisp
22:49
cladur has quit [Remote host closed the connection]
22:49
cladur has joined #commonlisp
22:54
bubblegum has quit [Read error: Connection reset by peer]
22:56
shka has quit [Ping timeout: 260 seconds]
22:56
pve has quit [Quit: leaving]
22:56
eddof13 has joined #commonlisp
22:58
josrr has quit [Remote host closed the connection]
22:59
bubblegum has joined #commonlisp
23:00
eddof13 has quit [Ping timeout: 240 seconds]
23:01
zaemington has quit [Remote host closed the connection]
23:02
zaemington has joined #commonlisp
23:04
triffid has quit [Remote host closed the connection]
23:04
triffid has joined #commonlisp
23:11
bubblegum has quit [Read error: Connection reset by peer]
23:12
bubblegum has joined #commonlisp
23:13
bubblegum has quit [Read error: Connection reset by peer]
23:13
rgherdt_ has joined #commonlisp
23:14
bubblegum has joined #commonlisp
23:17
rgherdt has quit [Ping timeout: 245 seconds]
23:18
bubblegum has quit [Ping timeout: 252 seconds]
23:19
bubblegum has joined #commonlisp
23:19
bubblegum has quit [Read error: Connection reset by peer]
23:20
bubblegum has joined #commonlisp
23:21
bubblegum has quit [Read error: Connection reset by peer]
23:22
chiselfu1e has joined #commonlisp
23:22
bubblegum has joined #commonlisp
23:22
triffid has quit [Ping timeout: 240 seconds]
23:22
chiselfuse has quit [Ping timeout: 240 seconds]
23:22
bubblegum has quit [Read error: Connection reset by peer]
23:22
bubblegum has joined #commonlisp
23:23
bubblegum has quit [Read error: Connection reset by peer]
23:23
bubblegum has joined #commonlisp
23:24
bubblegum has quit [Read error: Connection reset by peer]
23:26
bubblegum has joined #commonlisp
23:26
bubblegum has quit [Read error: Connection reset by peer]
23:26
bubblegum has joined #commonlisp
23:29
triffid has joined #commonlisp
23:33
traidare has quit [Ping timeout: 252 seconds]
23:40
bubblegum has quit [Read error: Connection reset by peer]
23:40
bubblegum has joined #commonlisp
23:45
bubblegum has quit [Ping timeout: 252 seconds]
23:45
chiselfu1e has quit [Remote host closed the connection]
23:45
chiselfuse has joined #commonlisp
23:45
rgherdt__ has joined #commonlisp
23:45
bubblegum has joined #commonlisp
23:45
rgherdt_ has quit [Read error: No route to host]
23:47
bubblegum has quit [Read error: Connection reset by peer]
23:47
bubblegum has joined #commonlisp
23:48
dino_tutter has quit [Ping timeout: 255 seconds]
23:52
bubblegum has quit [Ping timeout: 260 seconds]
23:53
bubblegum has joined #commonlisp
23:57
cladur has quit [Remote host closed the connection]