00:23:54 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Ping timeout: 244 seconds] 00:49:07 echo-area [~user@182.92.247.2] has joined #sbcl 03:09:27 gko [~gko@220.228.255.204] has joined #sbcl 03:25:36 -!- borkman [~user@S0106001111de1fc8.cg.shawcable.net] has quit [Read error: Connection reset by peer] 03:29:22 nikodemus [~nikodemus@178-55-57-180.bb.dnainternet.fi] has joined #sbcl 03:29:22 -!- ChanServ has set mode +o nikodemus 03:33:50 borkman [~user@S0106001111de1fc8.cg.shawcable.net] has joined #sbcl 03:54:27 angavrilov [~angavrilo@217.71.227.190] has joined #sbcl 05:21:23 nikodemus: the other thing I want is better slime support for (named-readtables:in-readtable ...) 05:21:53 that and a reader-macro-aware slime-pprint-eval-last-sexp would make my life happier 05:21:54 me too :) 05:22:17 of course, there aren't too many folks that are going to want my SMILES reader macro, but still... 05:25:40 breakfast, then i'm off to *gasp* non-sbcl work 05:26:30 oh noes! 05:26:32 :) 05:36:35 while i'm off... https://gist.github.com/2626117 # thoughts would be much appreciated 05:43:29 -!- nikodemus [~nikodemus@178-55-57-180.bb.dnainternet.fi] has quit [Ping timeout: 245 seconds] 05:51:17 edgar-rft [~user@HSI-KBW-078-043-123-191.hsi4.kabel-badenwuerttemberg.de] has joined #sbcl 05:59:57 sdemarre [~serge@91.176.39.207] has joined #sbcl 06:19:20 -!- sdemarre [~serge@91.176.39.207] has quit [Ping timeout: 260 seconds] 06:36:49 -!- Phoodus [~foo@ip72-223-116-248.ph.ph.cox.net] has quit [Ping timeout: 245 seconds] 06:43:00 stassats [~stassats@wikipedia/stassats] has joined #sbcl 06:47:13 -!- Quadrescence [~quad@unaffiliated/quadrescence] has quit [Read error: Connection reset by peer] 07:09:19 -!- TimKack` is now known as TimKack 07:16:32 *|3b|* wonders if NIL counts as a symbol for those evaluation rules 07:20:45 -!- homie [~levgue@xdsl-87-79-192-69.netcologne.de] has quit [Read error: Connection reset by peer] 07:21:23 homie [~levgue@xdsl-87-79-192-69.netcologne.de] has joined #sbcl 07:26:15 Quadrescence [~quad@unaffiliated/quadrescence] has joined #sbcl 07:31:30 homie` [~levgue@xdsl-78-35-172-157.netcologne.de] has joined #sbcl 07:34:37 -!- homie [~levgue@xdsl-87-79-192-69.netcologne.de] has quit [Ping timeout: 245 seconds] 08:26:08 ok... I think leuler had something interesting with using BTS for card marking, in the end. 08:26:23 we can't rely on individual bits, except for unthreaded builds. 08:26:52 However, we *can* rely on bytes: if they're 0, then no bit (even w/o LOCK) have been set to it. 08:26:56 *set to 1. 08:28:44 the interesting bit is that we can do something like mov rxx, address / shr rxx, (shift-3) / bts [card vector + 2^31/3], rxxd 08:29:47 iow, we abuse BTS of a 32-bit register to zero out the upper 32 bits (not that useful), and *then* divide by 8 (yes useful). 08:30:41 Phoodus [~foo@wsip-68-107-217-139.ph.ph.cox.net] has joined #sbcl 08:38:34 -!- homie` [~levgue@xdsl-78-35-172-157.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 08:46:14 homie [~levgue@xdsl-78-35-172-157.netcologne.de] has joined #sbcl 08:53:40 but BTS m, r is slooow. 10 uops, ~6 cycle latency. shl/and/mov is 1 cycle each. 09:13:22 -!- christop` [~user@oteiza.siccegge.de] has quit [Ping timeout: 245 seconds] 09:15:47 tcr [~tcr@178-83-229-138.dynamic.hispeed.ch] has joined #sbcl 09:25:27 hello tcr! 09:26:00 -!- echo-area [~user@182.92.247.2] has quit [Ping timeout: 260 seconds] 10:06:20 ah, but BTS can't be used on byte EAs, only word and upward. 10:06:58 oh, wait, that's ok. 10:31:22 wow. BTS write barriers: 400 seconds (: 10:40:33 what's the baseline ? 10:42:35 268 sec for vanilla, 288 sec for long-hand software barriers 11:06:38 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #sbcl 11:10:23 -!- brown``` [user@nat/google/x-rbupnllyztslcubc] has quit [Remote host closed the connection] 11:10:28 brown``` [user@nat/google/x-ktirbqjrmbkwcenl] has joined #sbcl 11:13:54 -!- gko [~gko@220.228.255.204] has quit [Ping timeout: 265 seconds] 11:18:16 i defined the following deftransform http://paste.lisp.org/display/129344 , did i miss some logical rule? 11:18:27 it works fine, just want to make sure before committing it 11:18:46 stassats: can't do that on floating point values. 11:18:52 logical/mathematical 11:19:00 pkhuong: yep, it's for integers 11:19:03 ah, ok 11:20:06 stassats: do we have it for / ? 11:20:26 appears so 11:20:38 looking at disassembly 11:21:06 k. Sounds good to me; just make sure they also fire for default arguments. 11:21:53 i need it in a macro (an inline function actually), so that i can provide a default partition and not have penalties 11:22:12 and / transform also handles -1 11:22:42 but i don't think (truncate x -1) would ever be useful 11:31:05 there also can be added the same for f- counterparts, changing it (values (float x) 0) 11:32:13 i don't know whether that's useful 11:42:34 more complete: http://paste.lisp.org/display/129344#1 11:42:57 stassats: mise well. 11:44:06 stassats: cool, there's a source transform to default the argument, so there's no need to worry about doing both at the same time 11:47:16 can't think of adding anything else, doing a rebuild 11:48:02 huh, what, git pull ask for password 11:51:00 stassats: ssh-agent borked? 11:51:42 -!- antifuchs [foobar@care.boinkor.net] has quit [Ping timeout: 272 seconds] 11:52:32 more like problems with sf 11:52:54 now i get: ssh: connect to host sbcl.git.sourceforge.net port 22: Connection refused fatal: The remote end hung up unexpectedly 11:54:37 antifuchs [foobar@care.boinkor.net] has joined #sbcl 12:00:55 can sbcl type system express "even integers"? 12:02:36 nope, short of enumerating them all. 12:03:31 ok, no tests failed, sf still unresponsive 12:03:55 or maybe it is responsive, need to check by committing 12:06:51 I like the idea of enumerating all the even integers 12:07:02 what's better, (negate (float 1)) or (float (negate 1))? 12:07:37 uh? what's wrong with -1.0? 12:07:51 well, it's actually X, not 1 12:08:03 (negate (float x)) might be marginally faster in the abstract (explicit sign bit in float representation); (float (negate x)) is probably actually faster 12:08:05 stassats: X being an integer? The former. 12:08:24 Kryztof: otoh, (- most-negative-fixnum) => bignum. 12:08:33 pkhuong: yes, in light of that transform 12:08:47 pkhuong: ah yes 12:09:00 I keep on meaning to work on a modular negate 12:09:36 ok, i'll some empiricism at it 12:09:41 i'll throw, that is 12:09:56 stassats: if X can be negative, negate the float. 12:10:14 listen to pkhuong for he is wise 12:10:40 pkhuong: that's what i originally did 12:11:47 what's the funky almost-negate operator that warren introduced to avoid (- most-negative) => most-negative in 2s complement? 12:12:16 i see no difference beyond measuring error 12:12:43 then negate the float; you'll see a difference in code size. 12:14:38 -!- Kryztof [~user@81.174.155.115] has quit [Ping timeout: 245 seconds] 12:14:46 stassats: actually, declare X of type ([un]signed-byte 64) to see a huge difference. 12:14:46 how do i measure code size? disassemble is too noisy 12:15:33 (negate (float ...)) is xorpd/cvtsi2sd/xorpd. 12:16:13 (float (negate ...)) is call to generic-negate and %double-float 12:16:17 with ub64 there's a difference, but not very huge 12:16:35 and with sb64? 12:16:48 yeah, ub64 will be dominated by the call to %double-float. 12:17:13 with sb, it's closer to 2x 12:18:48 alright, pushed 12:19:02 remote: sendmail: RCPT TO: (451 Temporary local problem - please try later) 12:19:14 otherwise, it seems ok 12:20:00 will it resend it later? because that's unfortunate for those who like to read sbcl-commits 12:20:12 not sure. 12:20:21 notify -devel manually? 12:27:46 stassats: might as well handle FP divisors. 12:27:50 meh. 12:31:29 pkhuong: not sure when anyone would need that 12:31:40 yeah. 12:57:54 stassats: that commit message is a bit scary: it doesn't specify that the dividend is integer 13:04:33 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Disconnected by services] 13:04:33 attila_lendvai1 [~attila_le@178-164-240-129.pool.digikabel.hu] has joined #sbcl 13:11:45 well, can't do anything about it now, though NEWS entry can be correcte 13:11:45 d 13:17:38 pkhuong: and btw, (truncate float 1) is already optimized 13:18:14 but not inline 13:31:59 psilord [~psilord@23-25-144-217-static.hfc.comcastbusiness.net] has joined #sbcl 13:46:20 gko [~gko@114-34-168-13.HINET-IP.hinet.net] has joined #sbcl 13:54:12 echo-area [~user@182.92.247.2] has joined #sbcl 13:56:02 tsuru [~charlie@adsl-74-179-198-242.bna.bellsouth.net] has joined #sbcl 14:08:44 -!- blackwolf [~blackwolf@ool-4575fc51.dyn.optonline.net] has quit [Ping timeout: 246 seconds] 14:10:28 rpg [~rpg@216.243.156.16.real-time.com] has joined #sbcl 14:22:24 -!- TimKack [~user@c-2ec2a1f0-74736162.cust.telenor.se] has quit [Remote host closed the connection] 14:23:05 TimKack [~user@c-2ec2a1f0-74736162.cust.telenor.se] has joined #sbcl 14:28:09 -!- TimKack [~user@c-2ec2a1f0-74736162.cust.telenor.se] has quit [Remote host closed the connection] 14:28:30 TimKack [~user@c-2ec2a1f0-74736162.cust.telenor.se] has joined #sbcl 14:28:43 nyef [~nyef@c-174-63-105-188.hsd1.ma.comcast.net] has joined #sbcl 14:34:04 -!- TimKack [~user@c-2ec2a1f0-74736162.cust.telenor.se] has quit [Remote host closed the connection] 14:44:08 TimKack [~user@c-2ec2a1f0-74736162.cust.telenor.se] has joined #sbcl 14:45:12 (call-foo #'foo x) where both call-foo and foo are inlined, foo doesn't seem to be inlined doesn't to be inline 14:46:25 -!- echo-area [~user@182.92.247.2] has quit [Read error: Connection reset by peer] 14:48:57 stassats: wfm. 14:49:28 -!- TimKack [~user@c-2ec2a1f0-74736162.cust.telenor.se] has quit [Ping timeout: 265 seconds] 14:49:31 well, it works for me in another case (an actual code), but i tried to test and it behaves strangely 14:52:08 So, I'm running 1.0.50.1-9d2548c on x86, and our test server has just died for the third time or so crashing to ldb from a gc invariant in scavenge(). Trying to scavenge less than a page, and it blows past the end by something like 64 megs. This time I managed to get a backtrace from ldb, and it turns out to be running a backtrace when the GC triggered. 14:52:36 Is this likely to be any more stable if I upgrade to a more recent SBCL? 14:52:57 I can't tihnk of any recent commit that played around that section of code. 14:53:34 http://paste.lisp.org/display/129348 what am i missing? 14:58:48 oh my 14:59:01 that was stupid 14:59:17 heh. 15:11:49 TimKack [~user@c-2ec2320a-74736162.cust.telenor.se] has joined #sbcl 15:14:33 LiamH [~none@pdp8.nrl.navy.mil] has joined #sbcl 15:23:33 -!- slyrus_ [~chatzilla@99-28-161-110.lightspeed.miamfl.sbcglobal.net] has quit [Ping timeout: 248 seconds] 15:33:41 slyrus_ [~chatzilla@99-28-161-110.lightspeed.miamfl.sbcglobal.net] has joined #sbcl 15:37:00 -!- rpg [~rpg@216.243.156.16.real-time.com] has quit [Ping timeout: 260 seconds] 15:41:47 antgreen [user@nat/redhat/x-mnhuzrgzdnkkljsl] has joined #sbcl 15:42:14 -!- Posterdati [~tapioca@host49-216-dynamic.16-87-r.retail.telecomitalia.it] has quit [Ping timeout: 272 seconds] 15:43:02 rpg [~rpg@216.243.156.16.real-time.com] has joined #sbcl 15:54:19 Posterdati [~tapioca@host75-208-dynamic.11-87-r.retail.telecomitalia.it] has joined #sbcl 16:07:52 leuler [~user@p54903386.dip.t-dialin.net] has joined #sbcl 16:15:10 -!- antifuchs [foobar@care.boinkor.net] has quit [Ping timeout: 272 seconds] 16:16:08 -!- attila_lendvai1 [~attila_le@178-164-240-129.pool.digikabel.hu] has quit [Quit: Leaving.] 16:16:48 antifuchs [foobar@care.boinkor.net] has joined #sbcl 16:21:34 saschakb [~saschakb@p4FEA10DE.dip0.t-ipconnect.de] has joined #sbcl 16:54:35 -!- slyrus_ [~chatzilla@99-28-161-110.lightspeed.miamfl.sbcglobal.net] has quit [Ping timeout: 252 seconds] 16:57:04 -!- angavrilov [~angavrilo@217.71.227.190] has quit [Remote host closed the connection] 16:57:38 angavrilov [~angavrilo@217.71.227.190] has joined #sbcl 17:03:33 -!- tcr [~tcr@178-83-229-138.dynamic.hispeed.ch] has quit [Quit: Leaving.] 17:16:01 -!- leuler [~user@p54903386.dip.t-dialin.net] has quit [Quit: ERC Version 5.1.2 $Revision: 1.796.2.6 $ (IRC client for Emacs)] 17:25:45 attila_lendvai [~attila_le@178-164-240-129.pool.digikabel.hu] has joined #sbcl 17:25:46 -!- attila_lendvai [~attila_le@178-164-240-129.pool.digikabel.hu] has quit [Changing host] 17:25:46 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #sbcl 17:44:33 TimKack` [~user@c-2ec21d6b-74736162.cust.telenor.se] has joined #sbcl 17:47:33 -!- TimKack [~user@c-2ec2320a-74736162.cust.telenor.se] has quit [Ping timeout: 248 seconds] 18:01:21 -!- antgreen [user@nat/redhat/x-mnhuzrgzdnkkljsl] has quit [Ping timeout: 265 seconds] 18:03:09 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Ping timeout: 252 seconds] 18:15:36 -!- homie [~levgue@xdsl-78-35-172-157.netcologne.de] has quit [Read error: Connection reset by peer] 18:16:13 homie [~levgue@xdsl-78-35-172-157.netcologne.de] has joined #sbcl 18:19:14 attila_lendvai [~attila_le@178-164-240-129.pool.digikabel.hu] has joined #sbcl 18:19:15 -!- attila_lendvai [~attila_le@178-164-240-129.pool.digikabel.hu] has quit [Changing host] 18:19:15 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #sbcl 18:19:47 milanj [~milanj_@93-86-216-175.dynamic.isp.telekom.rs] has joined #sbcl 18:24:26 kanru` [~user@199.195.142.182] has joined #sbcl 18:36:41 slyrus_ [~chatzilla@173-228-44-92.dsl.static.sonic.net] has joined #sbcl 18:40:29 blackwolf [~blackwolf@ool-4575fc51.dyn.optonline.net] has joined #sbcl 18:47:30 -!- homie [~levgue@xdsl-78-35-172-157.netcologne.de] has quit [Read error: Connection reset by peer] 18:48:11 homie [~levgue@xdsl-78-35-172-157.netcologne.de] has joined #sbcl 18:59:11 -!- Quadrescence is now known as booklet 19:12:58 Kryztof [~user@81.174.155.115] has joined #sbcl 19:12:58 -!- ChanServ has set mode +o Kryztof 19:15:24 -!- homie [~levgue@xdsl-78-35-172-157.netcologne.de] has quit [Read error: Connection reset by peer] 19:16:02 homie [~levgue@xdsl-78-35-172-157.netcologne.de] has joined #sbcl 19:19:13 -!- psilord [~psilord@23-25-144-217-static.hfc.comcastbusiness.net] has quit [Quit: Leaving.] 19:19:20 psilord [~psilord@23-25-144-217-static.hfc.comcastbusiness.net] has joined #sbcl 19:24:40 attila_lendvai1 [~attila_le@188-143-61-34.pool.digikabel.hu] has joined #sbcl 19:24:41 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Disconnected by services] 19:26:08 ; note: type assertion too complex to check: ; (VALUES (UNSIGNED-BYTE 32) &REST T). 19:26:21 when declaring return value of a function as (UNSIGNED-BYTE 32) 19:26:53 try declaring it as (values (unsigned-byte 32) &optional) 19:26:53 what does it not like? should i declare it (values (unsigned-byte 32) &rest nil) ? 19:27:02 means "exactly one return value, which is unsigned-byte 32" 19:27:16 rather than "at least one return value, the first of which is (unsigned-byte 32)" 19:27:42 stassats: values type without any lambda keyword are treated as followed by &rest t. 19:28:00 I'm not sure how to interpret &rest nil, frankly. 19:28:49 means "after I return the first value, I'll throw an error" :-) 19:29:11 i interpreted as "rest has no values" 19:29:32 stassats: it means all the remaining return values are of type NIL. 19:29:40 which... is empty. 19:30:18 there's also sb-int:sfunction. 19:30:41 well, sbcl likes it 19:31:34 it converts &rest nil to &optional 19:32:02 clever 19:32:16 guess that's a reasonable interpretation. 19:32:16 sbcl: stassats' best common lisp 19:32:28 pkhuong: no idea if it's deliberate, though :-) 19:32:39 Kryztof: emergent cleverness is the best kind 19:33:02 Kryztof: my initials are SB, so it's the best CL for me indeed 19:33:45 -!- homie [~levgue@xdsl-78-35-172-157.netcologne.de] has quit [Read error: Connection reset by peer] 19:34:21 where is the meaning of &optional for VALUES inscribed? 19:34:24 homie [~levgue@xdsl-78-35-172-157.netcologne.de] has joined #sbcl 19:34:28 *Kryztof* feels a little bit sad that his plan to give CAR and CDR initials to his children was vetoed 19:34:41 I've been backronyming friends' initials into project names lately. 19:35:04 it's a bit funny that &optional means "stop". 19:36:20 can't find it anywhere 19:36:39 Kryztof: you shouldn't have disclosed your reasons 19:36:48 http://clhs.lisp.se/Body/t_values.htm vaguely mentions it, but doesn't really say anything. 19:36:51 foom: it means that it's a lambda list, and not just a list of types. 19:37:14 it's discussed on the FUNCTION type specifier page 19:37:34 yeah, just found it 19:37:47 a little bit, anyway 19:37:57 stassats: it's OK, I got "Alice" and "Bob" instead 19:39:21 nice 19:39:26 ... Shouldn't the initials have been CAR and CADR? 19:39:38 Poor Mallory, though 19:39:46 christop` [~user@oteiza.siccegge.de] has joined #sbcl 19:40:24 for a second i thought we might be talking about ben bitdiddle and alyssa p hacker 19:40:59 pkhuong: well, there's the problem: is the third Charles, Eve or Mallory 19:41:58 the first two are appropriate to either gender. Of course the problem is then that the poor child might have the burden of expectation to be underhand and sneaky 19:43:03 clearly mallory should be the middle child. 19:43:28 sigh, undergrads are afoot 19:43:55 break their legs 19:44:34 They invited me here! I can't do that 19:58:48 -!- angavrilov [~angavrilo@217.71.227.190] has quit [Ping timeout: 244 seconds] 20:02:01 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 20:02:09 -!- homie [~levgue@xdsl-78-35-172-157.netcologne.de] has quit [Read error: Operation timed out] 20:09:08 -!- slyrus_ [~chatzilla@173-228-44-92.dsl.static.sonic.net] has quit [Ping timeout: 244 seconds] 20:09:30 stassats` [~stassats@wikipedia/stassats] has joined #sbcl 20:09:51 -!- specbot [~specbot@pppoe.178-66-10-200.dynamic.avangarddsl.ru] has quit [Disconnected by services] 20:09:54 specbot [~specbot@pppoe.178-66-37-60.dynamic.avangarddsl.ru] has joined #sbcl 20:13:19 -!- stassats [~stassats@wikipedia/stassats] has quit [Ping timeout: 276 seconds] 20:15:41 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 20:16:22 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 20:19:45 TimKack`` [~user@c-2ec2859f-74736162.cust.telenor.se] has joined #sbcl 20:21:32 -!- TimKack` [~user@c-2ec21d6b-74736162.cust.telenor.se] has quit [Ping timeout: 244 seconds] 20:26:00 -!- milanj [~milanj_@93-86-216-175.dynamic.isp.telekom.rs] has quit [Ping timeout: 256 seconds] 20:28:57 sdemarre [~serge@91.176.39.207] has joined #sbcl 20:36:58 milanj [~milanj_@93-86-216-175.dynamic.isp.telekom.rs] has joined #sbcl 20:42:24 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 20:43:03 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 20:49:16 francisl [~flavoie@199.84.164.114] has joined #sbcl 20:52:42 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 20:53:20 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 20:53:32 break their arms instead? 21:03:58 -!- TimKack`` [~user@c-2ec2859f-74736162.cust.telenor.se] has quit [Ping timeout: 256 seconds] 21:06:27 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 21:07:05 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 21:18:30 TimKack [~user@c-2ec292c7-74736162.cust.telenor.se] has joined #sbcl 21:19:10 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 21:19:47 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 21:25:59 -!- kanru` [~user@199.195.142.182] has quit [Remote host closed the connection] 21:26:46 -!- nyef [~nyef@c-174-63-105-188.hsd1.ma.comcast.net] has quit [Ping timeout: 276 seconds] 21:26:48 -!- booklet is now known as Quadrescence 21:32:19 udzinari [~user@ip-89-102-12-6.net.upcbroadband.cz] has joined #sbcl 21:33:16 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 21:33:54 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 21:36:17 -!- milanj [~milanj_@93-86-216-175.dynamic.isp.telekom.rs] has quit [Quit: Leaving] 21:44:10 nyef [~nyef@c-174-63-105-188.hsd1.ma.comcast.net] has joined #sbcl 21:45:33 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 21:46:13 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 21:48:18 -!- sdemarre [~serge@91.176.39.207] has quit [Ping timeout: 272 seconds] 21:50:31 udzinari` [~user@ip-89-102-12-6.net.upcbroadband.cz] has joined #sbcl 21:53:08 -!- udzinari [~user@ip-89-102-12-6.net.upcbroadband.cz] has quit [Ping timeout: 240 seconds] 21:56:11 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 21:56:47 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 21:57:32 -!- LiamH [~none@pdp8.nrl.navy.mil] has quit [Quit: Leaving.] 22:02:00 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:02:39 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:04:05 -!- nyef [~nyef@c-174-63-105-188.hsd1.ma.comcast.net] has quit [Quit: G'night all.] 22:05:39 no, break their Alphas or PPCs! nobody uses them anymore anyway (: 22:07:12 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:07:51 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:10:15 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:10:53 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:11:49 -!- francisl [~flavoie@199.84.164.114] has quit [Ping timeout: 245 seconds] 22:16:21 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:16:59 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:20:58 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:21:00 -!- psilord [~psilord@23-25-144-217-static.hfc.comcastbusiness.net] has quit [Quit: Leaving.] 22:21:36 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:21:54 -!- udzinari` [~user@ip-89-102-12-6.net.upcbroadband.cz] has quit [Ping timeout: 252 seconds] 22:23:20 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:24:44 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:25:27 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Write error: Connection reset by peer] 22:26:05 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:26:45 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:27:21 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:28:01 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Write error: Broken pipe] 22:28:32 slyrus_ [~chatzilla@173-228-44-92.dsl.static.sonic.net] has joined #sbcl 22:28:40 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:29:37 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:30:16 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:31:37 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:32:21 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:33:46 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Write error: Broken pipe] 22:34:24 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:34:58 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:35:37 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:37:00 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:37:38 homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:37:38 -!- homie` [~levgue@xdsl-78-35-148-224.netcologne.de] has quit [Read error: Connection reset by peer] 22:40:13 homie [~levgue@xdsl-78-35-148-224.netcologne.de] has joined #sbcl 22:59:11 tsuru` [~charlie@adsl-74-179-196-101.bna.bellsouth.net] has joined #sbcl 23:01:40 -!- tsuru [~charlie@adsl-74-179-198-242.bna.bellsouth.net] has quit [Ping timeout: 276 seconds] 23:42:39 -!- TimKack [~user@c-2ec292c7-74736162.cust.telenor.se] has quit [Ping timeout: 245 seconds] 23:45:29 -!- attila_lendvai1 [~attila_le@188-143-61-34.pool.digikabel.hu] has quit [Quit: Leaving.] 23:58:16 -!- huangjs [~huangjs@190.8.100.83] has quit [Read error: Connection reset by peer]