00:00:00 jasom: It doesn't like long lines. 00:00:13 didi: short lines (2 items per line) 00:00:32 but after each change to it, it churns for about a minute 00:02:13 verynice actually decided to renice emacs eventually 00:05:05 gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has joined #lisp 00:07:55 -!- ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has quit [Ping timeout: 245 seconds] 00:07:55 -!- cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has quit [Read error: Connection reset by peer] 00:08:09 cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has joined #lisp 00:08:41 p_l [~pl@tsugumi.brage.info] has joined #lisp 00:08:54 jasom: 10k elements plist? Why not using a hash table? 00:12:07 -!- Corvidiu1 [~cosman246@174-21-221-132.tukw.qwest.net] has quit [Ping timeout: 260 seconds] 00:13:05 -!- Bike [~Glossina@wl-nat101.it.wsu.edu] has quit [Ping timeout: 246 seconds] 00:13:49 -!- LiamH [~healy@132.250.138.103] has quit [Quit: Leaving.] 00:15:10 Denommus: I'm passing it to (alexandria:plist-hash-table) 00:15:21 Denommus: unless you know a better way to define a hash-table in a lisp file 00:15:53 jasom: ah, okay 00:15:59 -!- Denommus [~user@unaffiliated/denommus] has quit [Quit: going home] 00:16:11 reader macros? 00:16:14 *p_l* ducks for cover 00:17:55 Corvidium [~cosman246@174-21-221-132.tukw.qwest.net] has joined #lisp 00:19:35 -!- stepnem [~stepnem@internet2.cznet.cz] has quit [Ping timeout: 245 seconds] 00:20:08 Bike [~Glossina@gannon-wless-gw.resnet.wsu.edu] has joined #lisp 00:23:51 whoops, ran ouf of heap compiling that, bumping dynamic-space-size 00:25:07 -!- _schulte_ [~eschulte@c-174-56-50-60.hsd1.nm.comcast.net] has quit [Quit: leaving] 00:25:10 I maybe should change it to manually building the hash 00:25:49 -!- axion [~axion@btnund-ai01-74-214-214-174.utma.com] has quit [Ping timeout: 272 seconds] 00:26:10 -!- echo-area [~user@114.254.104.35] has quit [Remote host closed the connection] 00:26:37 though I'm not sure what it can be doing that is taking 6GB 00:28:27 tons of unnecessary pointers? 00:28:50 + possible alignment 00:29:03 It's only 8k elements, I hit over 8GB of usage 00:29:10 that's 1024 bytes per element 00:29:28 does the GC not run during compilation or something? 00:29:55 on sbcl? 00:29:59 yeah 00:30:15 maybe that's related to the compiler lock 00:32:01 compiling large functions can be a bad idea 00:32:22 -!- gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has quit [Quit: gendl] 00:32:44 oh, that's right, i have a hundred-something-line long function somewhere that freezes sbcl when i try to compile it 00:32:50 not something nice to have as a test 00:36:30 It's now 4k setf's 00:36:41 finished in about 10s with a few hundred MB of ram 00:37:42 jasom: kinda why I was thinking of reader macro - make one that iteratively builds a hashtable 00:38:30 p_l: It's machine generated (obviously) so I just generate the setf 00:40:57 TDog [~chatzilla@144.90.1.18] has joined #lisp 00:41:30 can't you just have a list in a variable and iterate over it? 00:42:28 dmiles_afk [~dmiles@c-67-189-17-39.hsd1.or.comcast.net] has joined #lisp 00:43:08 stassats: depends on wanted memory profile during reading/compilation, I'd say 00:44:03 it's simple, and I have nothing against it, but depending on what I wanted to load into that hashtable it might be way too heavy on memory 00:44:52 actually, (defvar *hashtable* #.(generate-hashtable #P"hashtable-source")) might be even better option :) 00:45:39 with generate-hashtable a function that iterates over contents of the file (could be as simple as looped read, so you could load forms) 00:47:12 p_l: I've done that before, but getting the path to the source file becomes a bit of a pain, so i prefer to pre-generate the source now 00:47:27 hashtables are serializable on SBCL 00:47:33 I have a macro "define-cached-function name args &body" that caches these function calls in a db. I want to be able track when each call to this macro happens so I can collect all the "name" parameters into a list so that later I can generate all the tables needed if missing at load time. How would I even go about this? 00:47:50 stassats: lists are serializable on all lisps 00:47:52 (let ((*print-readably* t)) (print (make-hash-table ))) => #.(SB-IMPL::%STUFF-HASH-TABLE (MAKE-HASH-TABLE :TEST 'EQL :SIZE '16 :REHASH-SIZE '1.5 :REHASH-THRESHOLD '1.0 :WEAKNESS 'NIL) 'NIL) 00:48:00 stassats: I wanted to avoid implementation-specific behaviour 00:48:14 good for you 00:48:28 nightshade427: there's always macroexpansion-time side effects 00:50:26 How would I exploit macro expansion time side effects. Googled like crazy and couldn't find anything. So figured I would ask here. Got any links you can share? 00:52:04 -!- slyrus [~chatzilla@173-228-44-92.dsl.static.sonic.net] has quit [Ping timeout: 264 seconds] 00:53:24 macros are ordinary functions, you can do anything inside them 00:53:48 nightshade427: just (push name *cached-functions*) before returning the expansion, that's all 00:54:30 I do bit it says *cached-functions* is unbound 00:54:36 That was what untried first 00:54:43 Bit = but 00:55:03 ...well, define *cached-functions* first 00:55:12 victor_lowther [~victor.lo@223.197.71.5] has joined #lisp 00:56:31 I did with (defvar *cached-functions*), I know I'm missing something easy. 00:57:00 it has to be defined during compilation 00:57:58 I wrapped in eval-when but didn't seem to help. How can I make it available during expansion? 00:59:06 DataLinkDroid [~DataLinkD@1.144.103.185] has joined #lisp 01:00:44 (defvar *cached-functions*) also does not have any value 01:01:06 as in, it's unbound 01:03:34 Ahh man, yep used (defparameter *cache-functions* nil), worked like a charm. I must bee sleep or something. Thanks for pointing that out. 01:03:36 -!- xenophon [~user@64.124.65.162] has quit [Remote host closed the connection] 01:04:00 Bee = need, and to not use iphone with autocorrect in irc :( 01:04:04 (defvar *cache-functions* nil) would be a better idea 01:04:19 if you want to recompile your file without losing data 01:05:06 xenophon [~user@64.124.65.162] has joined #lisp 01:06:03 -!- harish [~harish@175.156.105.95] has quit [Ping timeout: 246 seconds] 01:06:10 sellout- [~Adium@75-166-112-222.hlrn.qwest.net] has joined #lisp 01:06:25 -!- segv- [~mb@95-91-243-202-dynip.superkabel.de] has quit [Remote host closed the connection] 01:09:03 lyanchih [~lyanchih@202.39.219.19] has joined #lisp 01:09:03 -!- cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has quit [Read error: Connection reset by peer] 01:09:28 -!- normanrichards [~textual@cpe-24-27-51-104.austin.res.rr.com] has quit [] 01:09:30 cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has joined #lisp 01:09:46 -!- stokachu [~stokachu@cypherbook.com] has quit [Changing host] 01:09:46 stokachu [~stokachu@ubuntu/member/stokachu] has joined #lisp 01:11:44 -!- klltkr [~klltkr@unaffiliated/klltkr] has quit [Quit: My MacBook has gone to sleep. ZZZzzz] 01:15:04 normanrichards [~textual@cpe-24-27-51-104.austin.res.rr.com] has joined #lisp 01:15:05 -!- normanrichards [~textual@cpe-24-27-51-104.austin.res.rr.com] has quit [Client Quit] 01:21:52 -!- kcj [~casey@unaffiliated/kcj] has quit [Read error: Connection reset by peer] 01:22:16 -!- xenophon [~user@64.124.65.162] has quit [Remote host closed the connection] 01:22:56 xenophon [~user@64.124.65.162] has joined #lisp 01:25:18 another alternative is to use reader-interception, then program your own reader syntax, COLA style. 01:25:48 -!- rk[wrkwrkwrk] is now known as ryankarason 01:26:57 kcj [~casey@unaffiliated/kcj] has joined #lisp 01:27:25 Sgeo [~quassel@ool-ad034ea6.dyn.optonline.net] has joined #lisp 01:27:43 Is it possible when in an :around method to tell if the next method is going to be :before :after :around or primary? 01:28:38 not without mop messiness or method combinations, i think. why do you want to do that? 01:29:39 I want to run some code in an initialize-instance after it's been created, but before the less-specific :after methods are called 01:30:20 If it's really messy, I'll rework so that I don't have to do that 01:30:37 well, considering it would be created in a primary method... 01:31:07 wait, can't you just use an :after method? those go in to out, don't they? 01:31:17 least-to-most specific 01:32:21 specifically I'm porting some python code, and in python you must explicitly call the initializer for your parent, so there are all sorts of random orderings of initialization. I was hoping to not have to completely reorder, but if it's what I gotta do, it's what I gotta do 01:32:58 ah, you might be better off defining your own method combination for that 01:34:33 Since it's just this one class heirarchy that is so bizarre, I think I'll not use initialize-instance methods at all and do everything manually in (make-foo) functions 01:34:46 -!- seangrove [~user@2600:1010:b020:592a:fd0e:11c9:53d5:4a19] has quit [Read error: No route to host] 01:34:53 that works too 01:35:19 -!- Elvaron [~Elvaron@HSI-KBW-134-3-240-90.hsi14.kabel-badenwuerttemberg.de] has quit [] 01:35:33 you can't really change the method combination of initialize-instance 01:35:58 oh. right. 01:36:21 kpreid [~kpreid@50-196-148-101-static.hfc.comcastbusiness.net] has joined #lisp 01:38:02 jack_rabbit_ [~jack_rabb@c-98-253-60-75.hsd1.il.comcast.net] has joined #lisp 01:40:36 duggiefresh [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has joined #lisp 01:40:42 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 01:41:27 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:41:44 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:42:27 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:42:36 -!- duggiefresh [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 01:42:46 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:43:02 -!- DataLinkDroid [~DataLinkD@1.144.103.185] has quit [Quit: Disconnecting -- bye] 01:43:29 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:43:48 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:44:34 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:44:51 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:44:54 sirdancealo2 [~sirdancea@194.228.11.188] has joined #lisp 01:45:00 -!- kwmiebach [~kwmiebach@xdsl-213-196-195-199.netcologne.de] has quit [Ping timeout: 245 seconds] 01:45:36 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:45:53 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:46:36 normanrichards [~textual@70.114.215.220] has joined #lisp 01:46:39 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:47:03 k0001 [~k0001@host184.190-136-197.telecom.net.ar] has joined #lisp 01:47:14 duggiefr_ [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has joined #lisp 01:47:23 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:47:48 -!- CrazyEddy [~besmell@wrongplanet/CrazyEddy] has quit [Ping timeout: 240 seconds] 01:47:57 ghostsai [~user@dsl-67-204-2-180.acanac.net] has joined #lisp 01:48:09 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:48:25 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:49:00 -!- ghostsai [~user@dsl-67-204-2-180.acanac.net] has left #lisp 01:49:09 banjara [~Adium@50-196-135-161-static.hfc.comcastbusiness.net] has joined #lisp 01:49:16 -!- banjara [~Adium@50-196-135-161-static.hfc.comcastbusiness.net] has quit [Changing host] 01:49:16 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:53:02 ghostsai [~user@dsl-67-204-2-180.acanac.net] has joined #lisp 01:53:50 -!- ghostsai [~user@dsl-67-204-2-180.acanac.net] has left #lisp 01:54:15 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 01:55:00 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:55:17 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:56:01 harish [harish@nat/redhat/x-koqztdyqijfubrzu] has joined #lisp 01:56:02 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:56:19 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:57:04 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:57:21 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:57:44 seangrove [~user@c-69-181-197-122.hsd1.ca.comcast.net] has joined #lisp 01:58:07 banjara [~Adium@unaffiliated/banjara] has joined #lisp 01:58:24 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 01:58:44 ghostsai [~user@dsl-67-204-2-180.acanac.net] has joined #lisp 01:59:10 banjara [~Adium@50-196-135-161-static.hfc.comcastbusiness.net] has joined #lisp 01:59:16 -!- banjara [~Adium@50-196-135-161-static.hfc.comcastbusiness.net] has quit [Changing host] 01:59:16 banjara [~Adium@unaffiliated/banjara] has joined #lisp 02:00:57 -!- ghostsai [~user@dsl-67-204-2-180.acanac.net] has quit [Remote host closed the connection] 02:01:17 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 02:01:56 CrazyEddy [~defiled@wrongplanet/CrazyEddy] has joined #lisp 02:02:05 -!- jk121960 [~root@108-89-22-112.lightspeed.cicril.sbcglobal.net] has quit [Quit: WeeChat 0.4.1] 02:04:54 strobegen [~Adium@188.168.72.236] has joined #lisp 02:05:41 -!- normanrichards [~textual@70.114.215.220] has quit [] 02:05:57 normanrichards [~textual@70.114.215.220] has joined #lisp 02:06:57 banjara1 [~Adium@50-196-135-161-static.hfc.comcastbusiness.net] has joined #lisp 02:06:57 gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has joined #lisp 02:07:51 -!- _5kg [~zifeitong@60.191.2.238] has quit [Ping timeout: 260 seconds] 02:09:46 [1]august [~august@70-57-250-65.albq.qwest.net] has joined #lisp 02:09:46 -!- cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has quit [Read error: Connection reset by peer] 02:10:05 -!- joneshf-laptop [~joneshf@128.120.113.195] has quit [Ping timeout: 240 seconds] 02:10:25 -!- banjara [~Adium@unaffiliated/banjara] has quit [Ping timeout: 245 seconds] 02:10:49 cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has joined #lisp 02:11:08 -!- ejohnson [~Thunderbi@c-67-181-201-173.hsd1.ca.comcast.net] has quit [Quit: ejohnson] 02:11:14 -!- duggiefr_ [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 02:12:23 ASau` [~user@p54AFFE1B.dip0.t-ipconnect.de] has joined #lisp 02:12:35 hello and good morning 02:12:38 good moaning 02:13:28 -!- banjara1 [~Adium@50-196-135-161-static.hfc.comcastbusiness.net] has quit [Ping timeout: 240 seconds] 02:15:08 -!- ASau [~user@p5083D277.dip0.t-ipconnect.de] has quit [Ping timeout: 240 seconds] 02:19:32 vircures [~vircures@c-98-230-174-67.hsd1.ga.comcast.net] has joined #lisp 02:19:49 *[1]august* instructs a pet piranha to munch on [1]august's shoulder blades 02:21:56 -!- danielszmulewicz [~danielszm@5.22.135.157] has quit [Quit: danielszmulewicz] 02:32:06 -!- victor_lowther [~victor.lo@223.197.71.5] has quit [Ping timeout: 240 seconds] 02:32:30 -!- gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has quit [Quit: gendl] 02:44:40 -!- TDog [~chatzilla@144.90.1.18] has quit [Ping timeout: 260 seconds] 02:45:06 -!- mathrick__ [~mathrick@85.218.134.11] has quit [Ping timeout: 246 seconds] 02:45:41 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Quit: Computer has gone to sleep.] 02:50:08 nialo- [~nialo@ool-18bc9149.dyn.optonline.net] has joined #lisp 02:53:20 -!- platypine [platypine@unaffiliated/doritos] has quit [Ping timeout: 245 seconds] 02:55:59 prxq_ [~mommer@x2f65451.dyn.telefonica.de] has joined #lisp 02:57:26 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #lisp 02:58:02 mathrick__ [~mathrick@85.218.134.11] has joined #lisp 02:59:18 -!- prxq [~mommer@x2f6655d.dyn.telefonica.de] has quit [Ping timeout: 245 seconds] 03:00:38 breakds [~breakds@c-24-0-147-122.hsd1.nj.comcast.net] has joined #lisp 03:00:58 seg [~seg@fsf/member/seg] has joined #lisp 03:01:55 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Ping timeout: 260 seconds] 03:03:08 -!- seg [~seg@fsf/member/seg] has quit [Client Quit] 03:04:27 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 03:12:45 echo-area [~user@182.92.247.2] has joined #lisp 03:18:21 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #lisp 03:20:27 -!- stassats [~stassats@wikipedia/stassats] has quit [Ping timeout: 246 seconds] 03:20:33 victor_lowther [~victor.lo@223.197.71.5] has joined #lisp 03:23:52 -!- nialo- [~nialo@ool-18bc9149.dyn.optonline.net] has quit [Ping timeout: 260 seconds] 03:25:36 _5kg [~zifeitong@60.191.2.238] has joined #lisp 03:26:39 -!- ASau` is now known as ASau 03:33:00 -!- vircures [~vircures@c-98-230-174-67.hsd1.ga.comcast.net] has quit [Quit: vircures] 03:39:14 -!- bgs100 [~nitrogen@unaffiliated/bgs100] has quit [Quit: bgs100] 03:39:19 -!- k0001 [~k0001@host184.190-136-197.telecom.net.ar] has quit [Ping timeout: 260 seconds] 03:43:46 TDog [~chatzilla@67-1-224-223.tcso.qwest.net] has joined #lisp 03:47:39 -!- mathrick__ [~mathrick@85.218.134.11] has quit [Read error: Connection timed out] 03:50:06 mathrick__ [~mathrick@85.218.134.11] has joined #lisp 03:50:12 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Ping timeout: 246 seconds] 03:51:35 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 03:52:51 -!- Jubb [~Jubb@pool-71-178-197-128.washdc.fios.verizon.net] has quit [Ping timeout: 252 seconds] 03:55:10 -!- [1]august [~august@70-57-250-65.albq.qwest.net] has quit [Quit: Want to be different? Try HydraIRC -> http://www.hydrairc.com <-] 04:01:15 -!- victor_lowther [~victor.lo@223.197.71.5] has quit [Ping timeout: 245 seconds] 04:01:43 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 260 seconds] 04:06:42 Jubb [~Jubb@pool-71-178-197-128.washdc.fios.verizon.net] has joined #lisp 04:08:08 -!- Corvidium [~cosman246@174-21-221-132.tukw.qwest.net] has quit [Ping timeout: 240 seconds] 04:10:56 -!- mathrick__ [~mathrick@85.218.134.11] has quit [Ping timeout: 272 seconds] 04:14:30 Trenif [~Lefeni@c-fc47e555.143-16-64736c10.cust.bredbandsbolaget.se] has joined #lisp 04:14:45 MoALTz_ [~no@host86-142-120-66.range86-142.btcentralplus.com] has joined #lisp 04:15:20 dmiles [~dmiles@c-67-189-17-39.hsd1.or.comcast.net] has joined #lisp 04:15:58 sword` [~sword@c-24-21-33-225.hsd1.wa.comcast.net] has joined #lisp 04:16:32 ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has joined #lisp 04:16:33 qiemem_ [uid14911@gateway/web/irccloud.com/x-peegefplwilqythh] has joined #lisp 04:19:26 aoh_ [~aki@adsl-99-115.netplaza.fi] has joined #lisp 04:19:32 ahungry_ [~null@99-40-10-216.lightspeed.livnmi.sbcglobal.net] has joined #lisp 04:21:26 scoofy [~scoofy@catv-89-135-80-2.catv.broadband.hu] has joined #lisp 04:21:49 -!- didi [~user@unaffiliated/didi/x-1022147] has quit [Ping timeout: 240 seconds] 04:22:23 gensym_ [~timo@85.158.178.76] has joined #lisp 04:22:40 galdor_ [~galdor@78.193.58.122] has joined #lisp 04:22:42 ttm [~The_third@irc.tocards.net] has joined #lisp 04:23:00 mathrick__ [~mathrick@85.218.134.11] has joined #lisp 04:23:28 -!- normanrichards [~textual@70.114.215.220] has quit [*.net *.split] 04:23:28 -!- dmiles_afk [~dmiles@c-67-189-17-39.hsd1.or.comcast.net] has quit [*.net *.split] 04:23:28 -!- slarti [~anonymous@104-252-AGAVEBB-NM.abq.nm.agavebb.net] has quit [*.net *.split] 04:23:28 -!- Lefeni [~Lefeni@c-fc47e555.143-16-64736c10.cust.bredbandsbolaget.se] has quit [*.net *.split] 04:23:29 -!- jsnell [~jsnell@ash.snellman.net] has quit [*.net *.split] 04:23:29 -!- segmondx [~segmond@99.102.149.52] has quit [*.net *.split] 04:23:29 -!- galdor [~galdor@78.193.58.122] has quit [*.net *.split] 04:23:29 -!- qiemem [uid14911@gateway/web/irccloud.com/x-smivdmlowvcvdfjt] has quit [*.net *.split] 04:23:29 -!- matko [~matko@ip82-139-127-72.lijbrandt.net] has quit [*.net *.split] 04:23:29 -!- sword [~user@c-24-21-33-225.hsd1.wa.comcast.net] has quit [*.net *.split] 04:23:29 -!- abeaumont [~abeaumont@77.231.225.80] has quit [*.net *.split] 04:23:29 -!- bhyde [~bhyde@198.199.88.224] has quit [*.net *.split] 04:23:29 -!- MoALTz [~no@host86-142-120-66.range86-142.btcentralplus.com] has quit [*.net *.split] 04:23:29 -!- jack_rabbit [~jack_rabb@c-98-253-60-75.hsd1.il.comcast.net] has quit [*.net *.split] 04:23:29 -!- aoh [~aki@adsl-99-115.netplaza.fi] has quit [*.net *.split] 04:23:29 -!- gensym [~timo@85.158.178.76] has quit [*.net *.split] 04:23:29 -!- ^self [~fn@headache.hungry.com] has quit [*.net *.split] 04:23:29 -!- Zhivago [~lys@unaffiliated/zhivago] has quit [*.net *.split] 04:23:29 -!- rabite [~rabite@4chan.fm] has quit [*.net *.split] 04:23:30 -!- The_third_man [~The_third@irc.tocards.net] has quit [*.net *.split] 04:23:30 -!- ahungry [~null@99-40-10-216.lightspeed.livnmi.sbcglobal.net] has quit [*.net *.split] 04:23:30 -!- aajmakin [aajmakin@kosh.org.aalto.fi] has quit [*.net *.split] 04:23:30 -!- dim [~dim@prometheus.naquadah.org] has quit [*.net *.split] 04:23:34 -!- gensym_ is now known as gensym 04:23:41 slarti [~anonymous@104-252-AGAVEBB-NM.abq.nm.agavebb.net] has joined #lisp 04:23:45 dim` [~dim@prometheus.naquadah.org] has joined #lisp 04:23:51 k0001 [~k0001@200.117.222.81] has joined #lisp 04:23:53 -!- dim` is now known as dim 04:23:59 victor_lowther [~victor.lo@223.197.71.5] has joined #lisp 04:24:23 aajmakin [aajmakin@kosh.org.aalto.fi] has joined #lisp 04:24:45 jsnell [~jsnell@ash.snellman.net] has joined #lisp 04:26:18 -!- lyanchih [~lyanchih@202.39.219.19] has quit [Quit: lyanchih] 04:26:38 -!- varjag [uid4973@gateway/web/irccloud.com/x-ugfgdbsyvngaranx] has quit [Ping timeout: 264 seconds] 04:27:49 varjag [uid4973@gateway/web/irccloud.com/x-ccbyfopnsutbdomd] has joined #lisp 04:28:09 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 04:28:59 madrik [~user@122.168.221.190] has joined #lisp 04:30:10 jack_rabbit [~jack_rabb@c-98-253-60-75.hsd1.il.comcast.net] has joined #lisp 04:30:26 bhyde [~bhyde@198.199.88.224] has joined #lisp 04:31:06 segmondx [~segmond@99.102.149.52] has joined #lisp 04:32:49 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Ping timeout: 272 seconds] 04:32:49 -!- kliph [~user@unaffiliated/kliph] has quit [Ping timeout: 272 seconds] 04:32:52 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 264 seconds] 04:32:55 mrSpec [~Spec@unaffiliated/mrspec] has joined #lisp 04:36:41 -!- hyperboreean [~none@unaffiliated/hyperboreean] has quit [Ping timeout: 245 seconds] 04:38:31 -!- bananagram [~bot@c-76-30-158-226.hsd1.tx.comcast.net] has quit [Ping timeout: 272 seconds] 04:39:02 hyperboreean [~none@unaffiliated/hyperboreean] has joined #lisp 04:41:14 -!- mrSpec [~Spec@unaffiliated/mrspec] has quit [Remote host closed the connection] 04:41:39 mrSpec [~Spec@net-93-159-145-154.connected.pl] has joined #lisp 04:41:39 -!- mrSpec [~Spec@net-93-159-145-154.connected.pl] has quit [Changing host] 04:41:39 mrSpec [~Spec@unaffiliated/mrspec] has joined #lisp 04:43:02 -!- mrSpec [~Spec@unaffiliated/mrspec] has quit [Remote host closed the connection] 04:44:19 ltbarcly [~textual@252.sub-70-211-66.myvzw.com] has joined #lisp 04:45:17 -!- ltbarcly [~textual@252.sub-70-211-66.myvzw.com] has quit [Read error: Connection reset by peer] 04:46:35 Corvidium [~cosman246@h-68-165-77-148.sttn.wa.dynamic.megapath.net] has joined #lisp 04:51:15 -!- victor_lowther [~victor.lo@223.197.71.5] has quit [Ping timeout: 245 seconds] 04:52:07 -!- sword` is now known as sword 04:52:08 -!- madrik [~user@122.168.221.190] has quit [Read error: Connection reset by peer] 04:52:21 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 04:53:36 Zhivago [~lys@1.234.65.131] has joined #lisp 04:56:41 foreignFunction [~niksaak@ip-4761.sunline.net.ua] has joined #lisp 04:56:42 -!- cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has quit [Read error: Connection reset by peer] 04:56:49 cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has joined #lisp 04:57:33 alezost [~user@128-70-197-79.broadband.corbina.ru] has joined #lisp 04:58:19 -!- Zhivago [~lys@1.234.65.131] has quit [Changing host] 04:58:19 Zhivago [~lys@unaffiliated/zhivago] has joined #lisp 05:00:31 -!- Zhivago [~lys@unaffiliated/zhivago] has quit [Read error: Operation timed out] 05:01:59 Zhivago [~lys@unaffiliated/zhivago] has joined #lisp 05:04:38 -!- ludocode [~quassel@76-10-165-110.dsl.teksavvy.com] has quit [Remote host closed the connection] 05:05:28 ludocode [~quassel@76-10-165-110.dsl.teksavvy.com] has joined #lisp 05:07:24 lyanchih [~lyanchih@118-163-141-228.HINET-IP.hinet.net] has joined #lisp 05:08:13 Vivitron [~Vivitron@c-50-172-44-193.hsd1.il.comcast.net] has joined #lisp 05:14:03 ramkrsna [~ramkrsna@122.169.86.213] has joined #lisp 05:14:10 -!- TDog [~chatzilla@67-1-224-223.tcso.qwest.net] has quit [Ping timeout: 245 seconds] 05:14:15 -!- ramkrsna [~ramkrsna@122.169.86.213] has quit [Changing host] 05:14:16 ramkrsna [~ramkrsna@unaffiliated/ramkrsna] has joined #lisp 05:17:31 -!- slarti [~anonymous@104-252-AGAVEBB-NM.abq.nm.agavebb.net] has quit [Ping timeout: 240 seconds] 05:17:47 -!- sword [~sword@c-24-21-33-225.hsd1.wa.comcast.net] has left #lisp 05:20:21 -!- jaimef [jaimef@dns.mauthesis.com] has quit [Excess Flood] 05:23:18 guyal [~anonymous@108-235-117-64.lightspeed.sntcca.sbcglobal.net] has joined #lisp 05:25:40 madrik [~user@122.168.205.96] has joined #lisp 05:25:40 -!- cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has quit [Read error: Connection reset by peer] 05:26:08 victor_lowther [~victor.lo@223.197.71.5] has joined #lisp 05:26:31 jaimef [jaimef@dns.mauthesis.com] has joined #lisp 05:26:37 cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has joined #lisp 05:28:55 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 05:29:43 -!- echo-area [~user@182.92.247.2] has quit [Remote host closed the connection] 05:33:27 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 246 seconds] 05:37:41 -!- breakds [~breakds@c-24-0-147-122.hsd1.nj.comcast.net] has quit [Remote host closed the connection] 05:39:52 -!- madrik [~user@122.168.205.96] has left #lisp 05:43:23 motionman [~motionman@unaffiliated/motionman] has joined #lisp 05:47:31 -!- nisstyre [~yours@oftn/member/Nisstyre] has quit [Quit: Leaving] 05:48:10 nisstyre [~yours@oftn/member/Nisstyre] has joined #lisp 05:48:44 -!- k0001 [~k0001@200.117.222.81] has quit [Ping timeout: 246 seconds] 05:49:40 -!- mathrick__ [~mathrick@85.218.134.11] has quit [Read error: Connection timed out] 05:50:33 mathrick__ [~mathrick@85.218.134.11] has joined #lisp 05:50:36 k0001 [~k0001@200.117.222.81] has joined #lisp 05:51:31 -!- oleo [~oleo@xdsl-78-35-149-161.netcologne.de] has quit [Remote host closed the connection] 05:53:41 fmeyer [~fmeyer@179.208.155.231] has joined #lisp 06:02:38 -!- mathrick__ [~mathrick@85.218.134.11] has quit [Ping timeout: 265 seconds] 06:02:44 shridhar [Shridhar@nat/redhat/x-thaayoxbldppwqyx] has joined #lisp 06:03:30 -!- clmsy [~clmsy@212.57.9.204] has quit [Remote host closed the connection] 06:03:38 kushal [kdas@fedora/kushal] has joined #lisp 06:04:06 clmsy [~clmsy@212.57.9.204] has joined #lisp 06:04:08 -!- k0001 [~k0001@200.117.222.81] has quit [Ping timeout: 246 seconds] 06:04:12 -!- victor_lowther [~victor.lo@223.197.71.5] has quit [Ping timeout: 240 seconds] 06:07:03 hitecnologys [~hitecnolo@94.137.38.103] has joined #lisp 06:07:12 -!- fridim_ [~fridim@bas2-montreal07-2925317643.dsl.bell.ca] has quit [Ping timeout: 260 seconds] 06:07:23 ggole [~ggole@220-253-128-170.dyn.iinet.net.au] has joined #lisp 06:08:12 -!- clmsy [~clmsy@212.57.9.204] has quit [Ping timeout: 240 seconds] 06:08:44 angavrilov [~angavrilo@217.71.227.190] has joined #lisp 06:09:54 -!- nisstyre [~yours@oftn/member/Nisstyre] has quit [Quit: Leaving] 06:16:55 mishoo [~mishoo@93.113.190.121] has joined #lisp 06:19:59 -!- kcj [~casey@unaffiliated/kcj] has quit [Quit: kcj] 06:25:29 -!- scoofy [~scoofy@catv-89-135-80-2.catv.broadband.hu] has quit [Ping timeout: 246 seconds] 06:28:17 victor_lowther [~victor.lo@223.197.71.5] has joined #lisp 06:28:40 -!- guyal [~anonymous@108-235-117-64.lightspeed.sntcca.sbcglobal.net] has quit [Quit: The Sleeper has Asleepen] 06:29:44 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 06:30:57 danielszmulewicz [~danielszm@94.159.136.220] has joined #lisp 06:30:59 Harag [~Thunderbi@41.23.95.223] has joined #lisp 06:31:41 -!- yacks [~py@103.6.159.103] has quit [Ping timeout: 268 seconds] 06:31:44 -!- danielszmulewicz [~danielszm@94.159.136.220] has quit [Client Quit] 06:32:56 clmsy [~clmsy@212.57.9.204] has joined #lisp 06:33:47 nisstyre [~yours@oftn/member/Nisstyre] has joined #lisp 06:34:43 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 260 seconds] 06:36:57 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Ping timeout: 272 seconds] 06:37:52 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 06:39:31 malbertife [~malbertif@host252-19-dynamic.116-80-r.retail.telecomitalia.it] has joined #lisp 06:40:04 -!- Harag [~Thunderbi@41.23.95.223] has quit [Ping timeout: 264 seconds] 06:41:13 sdemarre [~serge@91.180.77.67] has joined #lisp 06:47:06 -!- ryankarason is now known as rk[zzz] 06:50:42 H4ns` [hans@netzhansa.com] has joined #lisp 06:53:28 crypto [~z0d@q.notresp.com] has joined #lisp 06:53:51 -!- crypto is now known as Guest97637 06:55:13 -!- H4ns [hans@netzhansa.com] has quit [Ping timeout: 272 seconds] 06:55:13 -!- z0d [~z0d@unaffiliated/z0d] has quit [Ping timeout: 272 seconds] 06:55:46 kcj [~casey@unaffiliated/kcj] has joined #lisp 06:56:44 -!- victor_lowther [~victor.lo@223.197.71.5] has quit [Ping timeout: 260 seconds] 06:57:40 danielszmulewicz [~danielszm@94.159.136.220] has joined #lisp 06:59:09 -!- Kabaka [~Kabaka@botters/kabaka] has quit [Ping timeout: 240 seconds] 06:59:40 -!- jaimef [jaimef@dns.mauthesis.com] has quit [Excess Flood] 07:01:19 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Ping timeout: 260 seconds] 07:01:37 -!- fmeyer [~fmeyer@179.208.155.231] has quit [Quit: Lost terminal] 07:02:03 jaimef [jaimef@dns.mauthesis.com] has joined #lisp 07:02:05 -!- danielszmulewicz [~danielszm@94.159.136.220] has quit [Client Quit] 07:03:32 danielszmulewicz [~danielszm@94.159.136.220] has joined #lisp 07:06:05 -!- angavrilov [~angavrilo@217.71.227.190] has quit [Ping timeout: 272 seconds] 07:12:34 echo-area [~user@182.92.247.2] has joined #lisp 07:13:14 -!- sdemarre [~serge@91.180.77.67] has quit [Ping timeout: 240 seconds] 07:14:01 -!- danielszmulewicz [~danielszm@94.159.136.220] has quit [Quit: danielszmulewicz] 07:14:53 -!- H4ns` is now known as H4ns 07:17:39 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Quit: Computer has gone to sleep.] 07:19:20 Beetny [~Beetny@ppp118-208-54-111.lns20.bne1.internode.on.net] has joined #lisp 07:20:45 -!- Mon_Ouie [~Mon_Ouie@subtle/user/MonOuie] has quit [Ping timeout: 252 seconds] 07:20:55 -!- hugod [~user@bas1-montreal08-1279563839.dsl.bell.ca] has quit [Ping timeout: 272 seconds] 07:21:38 victor_lowther [~victor.lo@223.197.71.5] has joined #lisp 07:23:40 danielszmulewicz [~danielszm@94.159.136.220] has joined #lisp 07:25:05 gravicappa [~gravicapp@ppp91-77-164-149.pppoe.mtu-net.ru] has joined #lisp 07:26:00 -!- Trenif [~Lefeni@c-fc47e555.143-16-64736c10.cust.bredbandsbolaget.se] has quit [Ping timeout: 272 seconds] 07:28:27 hugod [~user@70.24.181.215] has joined #lisp 07:28:40 -!- danielszmulewicz [~danielszm@94.159.136.220] has quit [Ping timeout: 265 seconds] 07:30:36 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 07:31:28 -!- cyphase [~cyphase@unaffiliated/cyphase] has quit [Quit: cyphase.com] 07:32:59 cyphase [~cyphase@unaffiliated/cyphase] has joined #lisp 07:33:26 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 07:35:16 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 264 seconds] 07:36:56 scoofy [~scoofy@catv-89-135-80-2.catv.broadband.hu] has joined #lisp 07:37:04 -!- Fare [~fare@cpe-72-229-109-116.nyc.res.rr.com] has quit [Ping timeout: 264 seconds] 07:39:36 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #lisp 07:40:35 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Ping timeout: 240 seconds] 07:42:28 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 07:42:57 -!- malbertife [~malbertif@host252-19-dynamic.116-80-r.retail.telecomitalia.it] has quit [Ping timeout: 246 seconds] 07:43:25 wchun [~wchun@81-233-226-189-no38.tbcn.telia.com] has joined #lisp 07:43:45 xificurC [xificurC@nat/ibm/x-juqtznbrxjqbwxyz] has joined #lisp 07:49:05 longlene [~clx@202.100.205.246] has joined #lisp 07:50:57 -!- clmsy [~clmsy@212.57.9.204] has quit [Remote host closed the connection] 07:51:32 clmsy [~clmsy@212.57.9.204] has joined #lisp 07:52:52 -!- Codynyx [~cody@c-75-72-193-178.hsd1.mn.comcast.net] has quit [Read error: Connection reset by peer] 07:53:20 danielszmulewicz [~danielszm@94.159.136.220] has joined #lisp 07:53:30 Codynyx [~cody@c-75-72-193-178.hsd1.mn.comcast.net] has joined #lisp 07:54:53 -!- kushal [kdas@fedora/kushal] has quit [Quit: Leaving] 07:55:33 -!- clmsy [~clmsy@212.57.9.204] has quit [Ping timeout: 246 seconds] 07:58:20 -!- CrazyEddy [~defiled@wrongplanet/CrazyEddy] has quit [Ping timeout: 245 seconds] 07:59:45 -!- ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has quit [Ping timeout: 246 seconds] 08:02:36 banjara [~Adium@unaffiliated/banjara] has joined #lisp 08:05:09 jtza8 [~jtza8@105-236-147-235.access.mtnbusiness.co.za] has joined #lisp 08:05:37 -!- xificurC [xificurC@nat/ibm/x-juqtznbrxjqbwxyz] has quit [Ping timeout: 272 seconds] 08:06:56 mvilleneuve [~mvilleneu@LLagny-156-36-4-214.w80-14.abo.wanadoo.fr] has joined #lisp 08:07:15 varjagg [~eugene@122.62-97-226.bkkb.no] has joined #lisp 08:08:16 -!- victor_lowther [~victor.lo@223.197.71.5] has quit [Ping timeout: 241 seconds] 08:08:19 -!- hitecnologys [~hitecnolo@94.137.38.103] has quit [Quit: hitecnologys] 08:08:28 -!- danielszmulewicz [~danielszm@94.159.136.220] has quit [Quit: danielszmulewicz] 08:10:52 peterhil [~peterhil@dsl-hkibrasgw3-58c156-108.dhcp.inet.fi] has joined #lisp 08:10:54 danielszmulewicz [~danielszm@94.159.136.220] has joined #lisp 08:14:04 CrazyEddy [~Thondraki@wrongplanet/CrazyEddy] has joined #lisp 08:14:49 clmsy [~clmsy@212.57.9.204] has joined #lisp 08:23:19 -!- danielszmulewicz [~danielszm@94.159.136.220] has quit [Quit: danielszmulewicz] 08:24:18 danielszmulewicz [~danielszm@94.159.136.220] has joined #lisp 08:24:40 -!- danielszmulewicz [~danielszm@94.159.136.220] has quit [Client Quit] 08:25:36 nilsi_ [~nilsi@180.108.184.194] has joined #lisp 08:25:41 -!- ramkrsna [~ramkrsna@unaffiliated/ramkrsna] has quit [Remote host closed the connection] 08:25:42 xificurC [xificurC@nat/ibm/x-qwivgcfrvrsptsbr] has joined #lisp 08:31:11 -!- robot-beethoven [~user@c-24-118-142-0.hsd1.mn.comcast.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 08:31:23 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 08:31:23 -!- nilsi_ [~nilsi@180.108.184.194] has quit [Remote host closed the connection] 08:32:24 mathrick [~mathrick@85.218.134.11] has joined #lisp 08:36:07 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 260 seconds] 08:41:43 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Ping timeout: 272 seconds] 08:43:10 -!- xificurC [xificurC@nat/ibm/x-qwivgcfrvrsptsbr] has quit [Read error: Connection reset by peer] 08:43:46 matko [~matko@ip82-139-127-72.lijbrandt.net] has joined #lisp 08:45:35 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 08:48:54 danielszmulewicz [~danielszm@5.22.135.157] has joined #lisp 08:51:08 platypine [platypine@unaffiliated/doritos] has joined #lisp 08:53:17 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Ping timeout: 240 seconds] 08:54:25 ck`` [~ck@dslb-094-219-255-002.pools.arcor-ip.net] has joined #lisp 08:55:32 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 08:55:40 -!- platypine [platypine@unaffiliated/doritos] has quit [Ping timeout: 264 seconds] 08:59:27 -!- mc40 [~mcheema@146.255.107.116] has quit [Quit: mc40] 09:02:58 -!- nug700 [~nug700@209-181-102-38.phnx.qwest.net] has quit [Quit: bye] 09:04:34 victor_lowther [~victor.lo@58.64.222.241] has joined #lisp 09:06:43 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Quit: Leaving.] 09:08:47 Harag [~Thunderbi@105-237-88-54.access.mtnbusiness.co.za] has joined #lisp 09:10:54 pavelpenev [~quassel@melontech.com] has joined #lisp 09:11:23 -!- scoofy [~scoofy@catv-89-135-80-2.catv.broadband.hu] has quit [Ping timeout: 246 seconds] 09:11:26 -!- longlene [~clx@202.100.205.246] has left #lisp 09:11:55 Code_Man` [~Code_Man@185-153.5-85.cust.bluewin.ch] has joined #lisp 09:13:36 -!- prxq_ is now known as prxq 09:14:40 ramkrsna [ramkrsna@unaffiliated/ramkrsna] has joined #lisp 09:14:51 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 09:16:44 -!- mathrick [~mathrick@85.218.134.11] has quit [Read error: Connection timed out] 09:17:24 mathrick [~mathrick@85.218.134.11] has joined #lisp 09:17:49 -!- Harag [~Thunderbi@105-237-88-54.access.mtnbusiness.co.za] has quit [Ping timeout: 272 seconds] 09:17:52 -!- echo-area [~user@182.92.247.2] has quit [Remote host closed the connection] 09:17:56 -!- _5kg [~zifeitong@60.191.2.238] has quit [Read error: Connection reset by peer] 09:22:50 Harag [~Thunderbi@105-237-88-54.access.mtnbusiness.co.za] has joined #lisp 09:23:02 kwmiebach [~kwmiebach@xdsl-213-196-195-199.netcologne.de] has joined #lisp 09:26:42 ZabaQ [~john.conn@86.63.2.14] has joined #lisp 09:27:40 -!- Harag [~Thunderbi@105-237-88-54.access.mtnbusiness.co.za] has quit [Client Quit] 09:29:20 -!- cdidd [~cdidd@128-68-22-82.broadband.corbina.ru] has quit [Ping timeout: 260 seconds] 09:32:11 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 09:36:29 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Read error: Operation timed out] 09:37:41 -!- aoh_ is now known as aoh 09:37:50 -!- aoh [~aki@adsl-99-115.netplaza.fi] has quit [Changing host] 09:37:50 aoh [~aki@unaffiliated/aoh] has joined #lisp 09:40:24 kushal [kdas@fedora/kushal] has joined #lisp 09:44:59 -!- mathrick [~mathrick@85.218.134.11] has quit [Ping timeout: 246 seconds] 09:46:14 MrWoohoo [~MrWoohoo@pool-74-100-140-127.lsanca.fios.verizon.net] has joined #lisp 09:46:59 -!- karupanerura is now known as zz_karupanerura 09:47:07 zacharias [~aw@unaffiliated/zacharias] has joined #lisp 09:49:39 -!- harish [harish@nat/redhat/x-koqztdyqijfubrzu] has quit [Ping timeout: 246 seconds] 09:52:01 -!- gravicappa [~gravicapp@ppp91-77-164-149.pppoe.mtu-net.ru] has quit [Ping timeout: 272 seconds] 09:52:15 -!- clmsy [~clmsy@212.57.9.204] has quit [Remote host closed the connection] 09:52:49 clmsy [~clmsy@212.57.9.204] has joined #lisp 09:56:59 -!- clmsy [~clmsy@212.57.9.204] has quit [Ping timeout: 240 seconds] 09:57:38 mathrick [~mathrick@85.218.134.11] has joined #lisp 09:58:56 wz1000 [~zubin@182.68.5.212] has joined #lisp 09:59:20 Joreji [~thomas@vpn-ho1.unidsl.de] has joined #lisp 09:59:48 -!- nisstyre [~yours@oftn/member/Nisstyre] has quit [Quit: Leaving] 10:00:04 Karl_dscc [~localhost@p578FC635.dip0.t-ipconnect.de] has joined #lisp 10:00:51 Joreji_ [~thomas@vpn-ho1.unidsl.de] has joined #lisp 10:02:09 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Ping timeout: 272 seconds] 10:04:18 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 10:08:12 -!- MoALTz_ [~no@host86-142-120-66.range86-142.btcentralplus.com] has quit [Quit: brb] 10:08:18 -!- mathrick [~mathrick@85.218.134.11] has quit [Read error: Operation timed out] 10:08:32 MoALTz [~no@host86-142-120-66.range86-142.btcentralplus.com] has joined #lisp 10:11:31 zickzackv [~faot@port-92-198-30-130.static.qsc.de] has joined #lisp 10:15:29 Kabaka [~Kabaka@botters/kabaka] has joined #lisp 10:15:31 -!- Guest97637 is now known as z0d 10:15:37 -!- z0d [~z0d@q.notresp.com] has quit [Changing host] 10:15:37 z0d [~z0d@unaffiliated/z0d] has joined #lisp 10:15:47 banjara [~Adium@unaffiliated/banjara] has joined #lisp 10:18:40 madrik [~user@122.168.214.116] has joined #lisp 10:19:01 scoofy [~scoofy@catv-89-135-80-2.catv.broadband.hu] has joined #lisp 10:19:08 Harag [~Thunderbi@105-237-88-54.access.mtnbusiness.co.za] has joined #lisp 10:22:21 mathrick [~mathrick@85.218.134.11] has joined #lisp 10:22:26 cdidd [~cdidd@128-68-213-139.broadband.corbina.ru] has joined #lisp 10:22:57 clmsy [~clmsy@212.57.9.204] has joined #lisp 10:23:14 _5kg [~zifeitong@60.191.2.238] has joined #lisp 10:24:42 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Quit: Computer has gone to sleep.] 10:24:53 -!- banjara [~Adium@unaffiliated/banjara] has quit [Ping timeout: 246 seconds] 10:25:00 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 10:25:32 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Read error: Connection reset by peer] 10:25:37 -!- macrobat [~beep@h-199-47.a328.priv.bahnhof.se] has quit [Quit: WeeChat 0.4.2] 10:25:54 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 10:28:30 internal-time-units-per-second is architecture (and implementation) dependent I guess? 10:28:47 jk121960 [~root@108-89-22-112.lightspeed.cicril.sbcglobal.net] has joined #lisp 10:30:01 -!- mathrick [~mathrick@85.218.134.11] has quit [Ping timeout: 272 seconds] 10:30:25 -!- nightshade427 [nightshade@2600:3c02::f03c:91ff:fedb:a448] has quit [Ping timeout: 260 seconds] 10:31:13 nightshade427 [nightshade@2600:3c02::f03c:91ff:fedb:a448] has joined #lisp 10:31:22 kenanb [~user@unaffiliated/kenanb] has joined #lisp 10:31:28 hi 10:32:52 LoicLisp [~loic@209.15.122.78.rev.sfr.net] has joined #lisp 10:37:12 z0d: yes. 10:38:00 antonv [5d7d2a42@gateway/web/freenode/ip.93.125.42.66] has joined #lisp 10:38:01 mathrick [~mathrick@85.218.134.11] has joined #lisp 10:38:10 thanks 10:39:01 zoek1 [~zoek1@187.135.4.201] has joined #lisp 10:40:25 -!- zickzackv [~faot@port-92-198-30-130.static.qsc.de] has quit [Remote host closed the connection] 10:43:37 -!- wz1000 [~zubin@182.68.5.212] has quit [Quit: Konversation terminated!] 10:47:01 -!- cdidd [~cdidd@128-68-213-139.broadband.corbina.ru] has quit [Read error: Operation timed out] 10:47:28 -!- Karl_dscc [~localhost@p578FC635.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 10:50:08 -!- Vutral [ss@mirbsd/special/Vutral] has quit [Ping timeout: 245 seconds] 10:50:11 -!- lyanchih [~lyanchih@118-163-141-228.HINET-IP.hinet.net] has quit [Read error: Operation timed out] 10:50:50 -!- jaimef [jaimef@dns.mauthesis.com] has quit [Remote host closed the connection] 10:50:56 zickzackv [~faot@port-92-198-30-130.static.qsc.de] has joined #lisp 10:52:30 -!- CrazyEddy [~Thondraki@wrongplanet/CrazyEddy] has quit [Ping timeout: 245 seconds] 10:58:24 -!- foreignFunction [~niksaak@ip-4761.sunline.net.ua] has quit [Remote host closed the connection] 10:59:41 foreignFunction [~niksaak@ip-4761.sunline.net.ua] has joined #lisp 11:01:52 -!- Harag [~Thunderbi@105-237-88-54.access.mtnbusiness.co.za] has quit [Read error: No route to host] 11:02:03 cdidd [~cdidd@128-68-205-222.broadband.corbina.ru] has joined #lisp 11:02:56 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 11:03:07 Vutral [~ss@mirbsd/special/Vutral] has joined #lisp 11:04:16 -!- danielszmulewicz [~danielszm@5.22.135.157] has quit [Quit: danielszmulewicz] 11:05:05 CrazyEddy [~acclinal@wrongplanet/CrazyEddy] has joined #lisp 11:05:15 danielszmulewicz [~danielszm@5.22.135.157] has joined #lisp 11:13:04 przl [~przlrkt@62.217.45.197] has joined #lisp 11:13:05 stepnem [~stepnem@internet2.cznet.cz] has joined #lisp 11:13:18 stassats [~stassats@wikipedia/stassats] has joined #lisp 11:15:00 motiondude [~motionman@unaffiliated/motionman] has joined #lisp 11:16:04 -!- motionman [~motionman@unaffiliated/motionman] has quit [Ping timeout: 264 seconds] 11:16:18 banjara [~Adium@unaffiliated/banjara] has joined #lisp 11:20:48 -!- banjara [~Adium@unaffiliated/banjara] has quit [Ping timeout: 260 seconds] 11:26:16 -!- kcj [~casey@unaffiliated/kcj] has quit [Ping timeout: 264 seconds] 11:28:00 Okasu [~1@unaffiliated/okasu] has joined #lisp 11:46:07 jaimef [jaimef@dns.mauthesis.com] has joined #lisp 11:47:58 -!- balle [~balle@pulsar-vm2.inf.ethz.ch] has quit [Quit: leaving] 11:48:18 balle [~balle@pulsar-vm2.inf.ethz.ch] has joined #lisp 11:48:36 Karl_dscc [~localhost@wlan255147.rz.uni-leipzig.de] has joined #lisp 11:49:04 -!- kwmiebach [~kwmiebach@xdsl-213-196-195-199.netcologne.de] has quit [Ping timeout: 264 seconds] 11:49:19 kwmiebach [~kwmiebach@xdsl-87-78-6-88.netcologne.de] has joined #lisp 11:52:42 -!- motiondude [~motionman@unaffiliated/motionman] has quit [Ping timeout: 240 seconds] 11:59:20 -!- Tarential [~Tarential@li421-205.members.linode.com] has quit [Excess Flood] 11:59:41 Tarential [~Tarential@li421-205.members.linode.com] has joined #lisp 12:02:10 kliph [~user@unaffiliated/kliph] has joined #lisp 12:02:30 milanj [~milanj@cable-178-148-2-202.dynamic.sbb.rs] has joined #lisp 12:03:29 Shinmera [~linus@public-docking-pat-hg-mapped-0032.ethz.ch] has joined #lisp 12:04:54 mrSpec [~Spec@unaffiliated/mrspec] has joined #lisp 12:05:55 gravicappa [~gravicapp@ppp91-77-190-240.pppoe.mtu-net.ru] has joined #lisp 12:06:05 -!- Karl_dscc [~localhost@wlan255147.rz.uni-leipzig.de] has quit [Remote host closed the connection] 12:08:51 -!- Beetny [~Beetny@ppp118-208-54-111.lns20.bne1.internode.on.net] has quit [Ping timeout: 260 seconds] 12:09:25 knob [~knob@76.76.202.245] has joined #lisp 12:09:58 -!- zacharias [~aw@unaffiliated/zacharias] has quit [Quit: Bye!] 12:10:00 Karl_dscc [~localhost@wlan255147.rz.uni-leipzig.de] has joined #lisp 12:10:24 -!- ZabaQ [~john.conn@86.63.2.14] has left #lisp 12:11:32 -!- mvilleneuve [~mvilleneu@LLagny-156-36-4-214.w80-14.abo.wanadoo.fr] has quit [Quit: This computer has gone to sleep] 12:13:04 -!- mathrick [~mathrick@85.218.134.11] has quit [Ping timeout: 264 seconds] 12:14:31 -!- ck`` [~ck@dslb-094-219-255-002.pools.arcor-ip.net] has quit [Ping timeout: 272 seconds] 12:15:55 motiondude [~motionman@unaffiliated/motionman] has joined #lisp 12:16:03 mathrick [~mathrick@85.218.134.11] has joined #lisp 12:16:54 hitecnologys [~hitecnolo@94.137.38.103] has joined #lisp 12:16:57 banjara [~Adium@unaffiliated/banjara] has joined #lisp 12:17:29 gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has joined #lisp 12:18:37 -!- clmsy [~clmsy@212.57.9.204] has quit [Remote host closed the connection] 12:19:14 clmsy [~clmsy@212.57.9.204] has joined #lisp 12:21:32 -!- banjara [~Adium@unaffiliated/banjara] has quit [Ping timeout: 262 seconds] 12:23:48 -!- clmsy [~clmsy@212.57.9.204] has quit [Ping timeout: 258 seconds] 12:25:42 eudoxia [~eudoxia@r186-52-3-193.dialup.adsl.anteldata.net.uy] has joined #lisp 12:27:26 nilsi_ [~nilsi@180.108.184.194] has joined #lisp 12:29:50 Mon_Ouie [~Mon_Ouie@subtle/user/MonOuie] has joined #lisp 12:31:05 clmsy [~clmsy@212.57.9.204] has joined #lisp 12:31:42 -!- Joreji_ [~thomas@vpn-ho1.unidsl.de] has quit [Ping timeout: 246 seconds] 12:32:44 -!- Joreji [~thomas@vpn-ho1.unidsl.de] has quit [Ping timeout: 260 seconds] 12:36:41 -!- victor_lowther [~victor.lo@58.64.222.241] has quit [Ping timeout: 272 seconds] 12:37:44 victor_lowther [~victor.lo@58.64.222.241] has joined #lisp 12:37:53 Pullphinger [~Pullphing@12.40.23.68] has joined #lisp 12:39:13 Bike_ [~Glossina@gannon-wless-gw.resnet.wsu.edu] has joined #lisp 12:39:36 -!- antgreen [~green@216.254.165.197] has quit [Ping timeout: 245 seconds] 12:40:25 -!- Bike [~Glossina@gannon-wless-gw.resnet.wsu.edu] has quit [Ping timeout: 265 seconds] 12:43:01 didi [~user@unaffiliated/didi/x-1022147] has joined #lisp 12:44:29 yacks [~py@103.6.159.103] has joined #lisp 12:44:55 -!- kliph [~user@unaffiliated/kliph] has quit [Ping timeout: 272 seconds] 12:45:08 -!- gluegadget [~amir@unaffiliated/gluegadget] has quit [Quit: leaving] 12:45:13 breakds [~breakds@c-24-0-147-122.hsd1.nj.comcast.net] has joined #lisp 12:45:21 -!- gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has quit [Quit: gendl] 12:45:44 -!- yacks [~py@103.6.159.103] has quit [Max SendQ exceeded] 12:46:05 -!- Sgeo [~quassel@ool-ad034ea6.dyn.optonline.net] has quit [Read error: Connection reset by peer] 12:46:12 k0001 [~k0001@200.117.223.18] has joined #lisp 12:46:22 yacks [~py@103.6.159.103] has joined #lisp 12:48:27 Athas [~athas@sigkill.dk] has joined #lisp 12:48:42 -!- motiondude [~motionman@unaffiliated/motionman] has quit [Quit: tschüß] 12:49:19 peterhil` [~peterhil@gw4.tieturi.com] has joined #lisp 12:51:31 -!- Karl_dscc [~localhost@wlan255147.rz.uni-leipzig.de] has quit [Remote host closed the connection] 12:53:47 zacharias [~aw@unaffiliated/zacharias] has joined #lisp 12:55:07 antgreen [~green@216.254.165.197] has joined #lisp 12:55:45 -!- yacks [~py@103.6.159.103] has quit [Quit: Leaving] 12:59:26 didi` [~user@unaffiliated/didi/x-1022147] has joined #lisp 13:00:18 platypine [platypine@c-76-24-98-69.hsd1.ct.comcast.net] has joined #lisp 13:00:19 -!- platypine [platypine@c-76-24-98-69.hsd1.ct.comcast.net] has quit [Changing host] 13:00:19 platypine [platypine@unaffiliated/doritos] has joined #lisp 13:00:50 -!- antgreen [~green@216.254.165.197] has quit [Ping timeout: 245 seconds] 13:01:32 Cymew [~user@fw01d.snowmen.se] has joined #lisp 13:02:51 mvilleneuve [~mvilleneu@108.26.90.92.rev.sfr.net] has joined #lisp 13:03:20 -!- didi [~user@unaffiliated/didi/x-1022147] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 13:04:38 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Quit: Computer has gone to sleep.] 13:04:54 -!- didi` [~user@unaffiliated/didi/x-1022147] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 13:05:04 -!- platypine [platypine@unaffiliated/doritos] has quit [Ping timeout: 265 seconds] 13:05:28 didi [~user@unaffiliated/didi/x-1022147] has joined #lisp 13:09:58 harish [~harish@175.156.122.5] has joined #lisp 13:11:20 platypine [platypine@unaffiliated/doritos] has joined #lisp 13:11:43 segv- [~mb@95-91-243-185-dynip.superkabel.de] has joined #lisp 13:12:51 -!- zacharias [~aw@unaffiliated/zacharias] has quit [Quit: Bye!] 13:14:15 -!- victor_lowther [~victor.lo@58.64.222.241] has quit [Ping timeout: 265 seconds] 13:14:15 -!- kushal [kdas@fedora/kushal] has quit [Ping timeout: 265 seconds] 13:14:19 antgreen [~green@216.254.165.197] has joined #lisp 13:17:20 banjara [~Adium@unaffiliated/banjara] has joined #lisp 13:17:33 -!- scoofy [~scoofy@catv-89-135-80-2.catv.broadband.hu] has quit [Ping timeout: 246 seconds] 13:18:27 -!- platypine [platypine@unaffiliated/doritos] has quit [Ping timeout: 260 seconds] 13:20:41 guyal [~anonymous@108-235-117-64.lightspeed.sntcca.sbcglobal.net] has joined #lisp 13:21:25 -!- banjara [~Adium@unaffiliated/banjara] has quit [Ping timeout: 240 seconds] 13:23:00 -!- foreignFunction [~niksaak@ip-4761.sunline.net.ua] has quit [Remote host closed the connection] 13:23:08 segmondy [~segmond@adsl-108-73-163-74.dsl.sfldmi.sbcglobal.net] has joined #lisp 13:23:58 -!- segmondx [~segmond@99.102.149.52] has quit [Read error: Connection reset by peer] 13:24:45 foreignFunction [~niksaak@ip-4761.sunline.net.ua] has joined #lisp 13:27:37 -!- varjagg [~eugene@122.62-97-226.bkkb.no] has quit [Quit: Leaving] 13:32:16 I'm just curious, who created this channel? 13:33:28 xotedend [~quassel@50-77-75-69-static.hfc.comcastbusiness.net] has joined #lisp 13:33:53 minion: who created this channel? 13:33:53 king kong 13:34:10 hiato [~hiato@196-215-175-234.dynamic.isadsl.co.za] has joined #lisp 13:34:16 Cool. 13:34:35 minion: where is king kong? 13:34:35 behind you! 13:34:45 -!- Vutral [~ss@mirbsd/special/Vutral] has quit [Ping timeout: 252 seconds] 13:37:44 zacharias [~aw@unaffiliated/zacharias] has joined #lisp 13:39:08 syrinx [~quassel@ip68-1-175-223.ri.ri.cox.net] has joined #lisp 13:39:19 -!- syrinx [~quassel@ip68-1-175-223.ri.ri.cox.net] has quit [Changing host] 13:39:19 syrinx [~quassel@unaffiliated/syrinx-/x-4255893] has joined #lisp 13:46:50 Vutral [ss@mirbsd/special/Vutral] has joined #lisp 13:47:32 duggiefresh [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has joined #lisp 13:47:46 echo-area [~user@123.112.232.137] has joined #lisp 13:48:39 -!- breakds [~breakds@c-24-0-147-122.hsd1.nj.comcast.net] has quit [Remote host closed the connection] 13:49:12 -!- mvilleneuve [~mvilleneu@108.26.90.92.rev.sfr.net] has quit [Quit: This computer has gone to sleep] 13:50:00 -!- duggiefresh [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 13:50:32 duggiefresh [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has joined #lisp 13:51:28 -!- Vutral [ss@mirbsd/special/Vutral] has quit [Excess Flood] 13:53:52 -!- sellout- [~Adium@75-166-112-222.hlrn.qwest.net] has quit [Ping timeout: 264 seconds] 13:54:39 -!- duggiefresh [~duggiefre@c-66-30-11-90.hsd1.ma.comcast.net] has quit [Ping timeout: 246 seconds] 13:56:14 vircures [~vircures@50-192-42-94-static.hfc.comcastbusiness.net] has joined #lisp 13:57:22 -!- didi [~user@unaffiliated/didi/x-1022147] has left #lisp 13:57:49 yacks [~py@103.6.159.103] has joined #lisp 13:58:25 founder: freenode-staff 13:59:43 -!- Shinmera [~linus@public-docking-pat-hg-mapped-0032.ethz.ch] has quit [Quit: BBL] 14:03:24 Vutral [~ss@mirbsd/special/Vutral] has joined #lisp 14:03:54 fortitude [~mts@rrcs-24-97-165-124.nys.biz.rr.com] has joined #lisp 14:07:22 sellout- [~Adium@97-118-101-232.hlrn.qwest.net] has joined #lisp 14:10:50 Hm, OK. 14:14:29 -!- jtza8 [~jtza8@105-236-147-235.access.mtnbusiness.co.za] has quit [Ping timeout: 246 seconds] 14:17:23 lispnewbie [57e57842@gateway/web/freenode/ip.87.229.120.66] has joined #lisp 14:17:35 -!- eudoxia [~eudoxia@r186-52-3-193.dialup.adsl.anteldata.net.uy] has quit [Quit: Leaving] 14:17:41 hi 14:17:46 eudoxia [~eudoxia@r186-52-3-193.dialup.adsl.anteldata.net.uy] has joined #lisp 14:17:52 banjara [~Adium@unaffiliated/banjara] has joined #lisp 14:19:21 I have a class with a slot whose content should be one of the predefined symbols. how should i check it? 14:20:29 check when? 14:20:51 specifying :type does not guarantee you any type checking 14:21:01 when an instance is made 14:21:09 lispnewbie: use check-type 14:21:12 if you want to be sure, you can check in a :before initialize-instance method 14:21:17 it's not type checking, rather check if it's 'foo 'bar or 'baz 14:21:29 lispnewbie: that's still type checking 14:21:51 yes, type checking and more :) 14:21:55 -!- clmsy [~clmsy@212.57.9.204] has quit [Remote host closed the connection] 14:22:08 so a :before method. thanks guys! 14:22:23 -!- banjara [~Adium@unaffiliated/banjara] has quit [Ping timeout: 260 seconds] 14:22:29 clmsy [~clmsy@212.57.9.204] has joined #lisp 14:22:37 (defmethod initialize-instance :before ((instance class) &key slot) (check-type slot (member foo bar baz))) 14:23:20 that still leaves (setf slot-value) 14:23:53 if the user uses setf, all bets are off 14:24:26 that slot shouldn't be set except for instance initialization 14:25:08 -!- zoek1 [~zoek1@187.135.4.201] has quit [Read error: Operation timed out] 14:25:47 -!- przl [~przlrkt@62.217.45.197] has quit [Ping timeout: 265 seconds] 14:26:40 -!- clmsy [~clmsy@212.57.9.204] has quit [Ping timeout: 245 seconds] 14:27:12 lispnewbie: why do you need such check then? 14:27:56 to warn the user if he or she initialized the object with an invalid value 14:28:10 warn as in (error...) 14:28:20 If I were you, I'd just declare it with :type. 14:29:30 hitecnologys: that wouldn't do a thing 14:29:57 it may, if the stars are correctly aligned 14:30:20 stassats: no, that would tell those who use library which values they can use. 14:30:33 mvilleneuve [~mvilleneu@LLagny-156-36-4-214.w80-14.abo.wanadoo.fr] has joined #lisp 14:30:42 hitecnologys: it would not actually enforce it, though. 14:30:47 it may tell, but nobody will listen 14:31:20 if there's a chance to get wrong values in, the will get in, no amount of red tape will help 14:31:20 hitecnologys: and if what you're getting at is ":type is documentation" then i'll tell you that a :before method is documentation as well, and has the advantage that it actually does something :) 14:32:06 Anyway, one can remove :before method or use setf. 14:32:30 or maybe I should just throw an (error ..) when I use the object and the slot value is bad 14:32:41 jtza8 [~jtza8@105-236-147-235.access.mtnbusiness.co.za] has joined #lisp 14:33:19 lispnewbie: it may not work if there is a delay between initialization and usage 14:33:31 like if you store it into a database and use only in two weeks 14:33:49 didi [~user@unaffiliated/didi/x-1022147] has joined #lisp 14:34:02 stassats: storing can be counted as usage. 14:34:15 hitecnologys: setf can throw an error too 14:34:22 it's just a tad more involved 14:35:00 Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has joined #lisp 14:35:01 in fact, using mop, you can make it enforce the :type declaration 14:35:29 just don't tell me that "it can be removed" or "standard-instance-access can be used" 14:36:09 Nah, I'm just curious how this problem can be solved. 14:38:12 Does (declare (type foo)) guarantee anything? 14:38:26 clmsy [~clmsy@212.57.9.204] has joined #lisp 14:38:34 no 14:38:50 lduros [~user@fsf/member/lduros] has joined #lisp 14:39:16 It just gives compiler a clue what this value may be? 14:40:22 it says "you can assume that FOO is always of this type" 14:40:52 it can give you worse safety than without declaring anything 14:40:56 oleo [~oleo@xdsl-78-35-147-183.netcologne.de] has joined #lisp 14:41:15 -!- mathrick [~mathrick@85.218.134.11] has quit [Ping timeout: 265 seconds] 14:41:32 przl [~przlrkt@62.217.45.197] has joined #lisp 14:41:38 If you want safety, see check-type 14:41:43 -!- LoicLisp [~loic@209.15.122.78.rev.sfr.net] has quit [Read error: Operation timed out] 14:42:01 duggiefresh [~duggiefre@64.119.141.126] has joined #lisp 14:42:10 OK, thanks. 14:42:20 -!- syrinx [~quassel@unaffiliated/syrinx-/x-4255893] has quit [Remote host closed the connection] 14:42:26 ...which I see was what prompted this line of questioning in the first place 14:43:30 bulibuta [~bulibuta@irofti.net] has joined #lisp 14:44:42 mathrick [~mathrick@85.218.134.11] has joined #lisp 14:48:01 -!- sellout- [~Adium@97-118-101-232.hlrn.qwest.net] has quit [Quit: Leaving.] 14:50:18 -!- mathrick [~mathrick@85.218.134.11] has quit [Ping timeout: 246 seconds] 14:53:29 -!- Mon_Ouie [~Mon_Ouie@subtle/user/MonOuie] has quit [Ping timeout: 272 seconds] 14:54:17 -!- nilsi_ [~nilsi@180.108.184.194] has quit [Read error: Connection reset by peer] 14:57:38 -!- theos [~theos@unaffiliated/theos] has quit [Ping timeout: 245 seconds] 14:59:11 -!- przl [~przlrkt@62.217.45.197] has quit [Ping timeout: 260 seconds] 15:00:04 nilsi_ [~nilsi@180.108.184.194] has joined #lisp 15:01:02 -!- eudoxia [~eudoxia@r186-52-3-193.dialup.adsl.anteldata.net.uy] has quit [Ping timeout: 246 seconds] 15:01:30 nilsi__ [~nilsi@180.108.184.194] has joined #lisp 15:02:21 -!- pavelpenev [~quassel@melontech.com] has quit [Remote host closed the connection] 15:03:44 scoofy [~scoofy@catv-89-135-80-2.catv.broadband.hu] has joined #lisp 15:04:48 -!- nilsi_ [~nilsi@180.108.184.194] has quit [Ping timeout: 260 seconds] 15:05:16 -!- zickzackv [~faot@port-92-198-30-130.static.qsc.de] has quit [Ping timeout: 264 seconds] 15:07:03 przl [~przlrkt@62.217.45.197] has joined #lisp 15:11:43 kushal [kdas@fedora/kushal] has joined #lisp 15:11:56 -!- vircures [~vircures@50-192-42-94-static.hfc.comcastbusiness.net] has quit [Remote host closed the connection] 15:12:27 vircures [~vircures@50-192-42-94-static.hfc.comcastbusiness.net] has joined #lisp 15:12:43 mathrick [~mathrick@85.218.134.11] has joined #lisp 15:12:44 laters 15:13:14 -!- lispnewbie [57e57842@gateway/web/freenode/ip.87.229.120.66] has quit [Quit: Page closed] 15:13:41 kliph [~user@unaffiliated/kliph] has joined #lisp 15:18:29 banjara [~Adium@unaffiliated/banjara] has joined #lisp 15:19:03 hi 15:20:25 slyrus [~chatzilla@107.200.11.207] has joined #lisp 15:20:40 This SBCL does not support core compression 15:20:51 it's 1.1.13 freshly compiled on a CentOS system 15:21:04 is there some compilation option to pass down somewhere or something? 15:21:21 sb-core-compression 15:21:29 -!- nilsi__ [~nilsi@180.108.184.194] has quit [Read error: Connection reset by peer] 15:21:59 ok now I need to learn how to pass that option then ;-) 15:22:03 nilsi_ [~nilsi@180.108.184.194] has joined #lisp 15:22:32 --with-sb-core-compression 15:23:17 -!- banjara [~Adium@unaffiliated/banjara] has quit [Ping timeout: 265 seconds] 15:23:40 ok, other interesting options I might be interested in, as a n00b compiling for the first time or about? 15:23:57 oh, and can I haz the --with-sb-core-compression on MacOSX too? 15:24:11 dim: AFAIR, --fancy. 15:24:20 dim: it enables everything. 15:24:25 oh 15:24:26 not everything 15:24:35 Almost evrything. 15:24:40 I'm trying with --with-sb-core-compression already, will see then 15:24:49 only ":sb-core-compression :sb-xref-for-internals :sb-after-xc-core Plus threading on platforms which support it." 15:24:58 my goal is here just to provide for a self-contained executable 15:25:04 that's not close to "almost" 15:25:09 and sbcl 1.0.38 is not supported by cl-buildapp 15:25:30 well I have no threading without specific make.sh options? 15:25:31 Oh, what it doesn't enable then? 15:25:47 dim: then --fancy is not a good idea for executables then 15:25:51 -!- jtza8 [~jtza8@105-236-147-235.access.mtnbusiness.co.za] has quit [Ping timeout: 260 seconds] 15:25:54 on account of sb-xref-for-internals 15:26:09 sh make.sh --with-sb-core-compression ; will I have threading enabled on my syste? 15:26:22 no 15:26:28 and yes, if it's by default 15:26:59 hitecnologys: see base-target-features.lisp-expr 15:27:17 well I sure hope it is because I make extensive use of it, thanks to lparallel (which is awesome by the way), how do I figure it out (thread support)? 15:27:35 --with-sb-thread, naturally 15:27:45 ah ok 15:27:57 thanks 15:28:05 -!- Bike_ is now known as Bike 15:28:28 -!- przl [~przlrkt@62.217.45.197] has quit [Ping timeout: 240 seconds] 15:29:09 --without-sb-doc --without-sb-source-locations --without-sb-eval may also be a good idea for shipping executables 15:29:09 -!- clmsy [~clmsy@212.57.9.204] has quit [Remote host closed the connection] 15:29:11 stassats: OK 15:29:45 but if you don't want to type --with... all the time like a savage, create a customize-target-features.lisp file 15:29:45 clmsy [~clmsy@212.57.9.204] has joined #lisp 15:29:46 -!- Khisanth [~Khisanth@50.14.244.111] has quit [Ping timeout: 245 seconds] 15:30:00 INSTALL no longer describes it 15:30:20 missing zlib-devel now, of course 15:31:12 I think I want source locations to be able to debug the thing in case I need to do so, because my app is listening on a swank port so that I can take control with Emacs when it runs 15:31:24 it's one of those apps that can run for a couple of months 15:31:59 https://github.com/sbcl/sbcl/blob/89a02d3ba803a1d85d745e22b4ac05ef8cb12370/INSTALL#L169 15:32:05 describes the old and sane way 15:32:15 it's already been running a couple of months (this summer or abouts), but from an #! script and they now want to be able to ship it more easily to other systems, etc 15:32:23 thanks 15:32:39 sb-source-locations is only for sbcl internals 15:33:15 actually, i don't know 15:33:33 sellout- [~Adium@c-67-176-62-45.hsd1.co.comcast.net] has joined #lisp 15:33:55 stassats: can you give me the link to the most up-to-date repository with sbcl code? I've probably lost it somehow. 15:34:08 you can find on sbcl.org 15:34:09 sbcl.org I would hope 15:34:24 -!- clmsy [~clmsy@212.57.9.204] has quit [Ping timeout: 265 seconds] 15:34:50 Ah, OK, I'll search harder. 15:35:17 ok, disabling disabling sb-source-locations may disable locations everywhere, for a conclusive check it needs to be rebuilt with it 15:35:51 Oops, it was on downloads page and I didn't even notice it. 15:37:47 -!- Cymew [~user@fw01d.snowmen.se] has quit [Ping timeout: 246 seconds] 15:40:41 is there a more suitable target than quicklisp-slime-helper as an asd system dependency when one depends on swank at runtime? 15:40:59 swank 15:43:37 Khisanth [~Khisanth@50.14.244.111] has joined #lisp 15:43:42 Cannot save core with multiple threads running --- oh I guess I didn't move lparallel kernel creation to the real startup, a defparameter might need to be cleaned 15:48:33 fisxoj [~fisxoj@2620:101:f000:9c00:224:7eff:feda:1209] has joined #lisp 15:50:06 eudoxia [~eudoxia@r186-52-3-193.dialup.adsl.anteldata.net.uy] has joined #lisp 15:52:28 fridim_ [~fridim@bas2-montreal07-2925317577.dsl.bell.ca] has joined #lisp 15:53:15 -!- peterhil` [~peterhil@gw4.tieturi.com] has quit [Quit: Must not waste too much time here...] 15:53:34 -!- eudoxia [~eudoxia@r186-52-3-193.dialup.adsl.anteldata.net.uy] has quit [Client Quit] 15:53:39 gluegadget [gluegadget@gateway/shell/ircrelay.com/x-bcynmbdcckxexkje] has joined #lisp 15:53:44 -!- guyal [~anonymous@108-235-117-64.lightspeed.sntcca.sbcglobal.net] has quit [Quit: The Sleeper has Asleepen] 15:53:46 eudoxia [~eudoxia@r186-52-3-193.dialup.adsl.anteldata.net.uy] has joined #lisp 15:56:44 _schulte_ [~eschulte@c-174-56-50-60.hsd1.nm.comcast.net] has joined #lisp 15:59:22 Joreji [~thomas@vpn-ho1.unidsl.de] has joined #lisp 15:59:40 clmsy [~clmsy@212.57.9.204] has joined #lisp 16:00:01 Joreji_ [~thomas@vpn-ho1.unidsl.de] has joined #lisp 16:01:57 -!- rk[zzz] is now known as ryankarason 16:06:19 jtza8 [~jtza8@105-236-147-235.access.mtnbusiness.co.za] has joined #lisp 16:06:23 -!- jtza8 [~jtza8@105-236-147-235.access.mtnbusiness.co.za] has quit [Remote host closed the connection] 16:11:51 ck`` [~ck@dslb-094-219-255-002.pools.arcor-ip.net] has joined #lisp 16:12:34 Karl_dscc [~localhost@p578FC635.dip0.t-ipconnect.de] has joined #lisp 16:14:56 guyal [~anonymous@108-235-117-64.lightspeed.sntcca.sbcglobal.net] has joined #lisp 16:16:01 -!- hiato [~hiato@196-215-175-234.dynamic.isadsl.co.za] has quit [Quit: Nothing so gives the illusion of intelligence as personal association with large sums.] 16:17:59 -!- bulibuta [~bulibuta@irofti.net] has quit [Quit: Leaving.] 16:19:00 -!- strobegen [~Adium@188.168.72.236] has quit [Quit: Leaving.] 16:20:43 -!- joast [~rick@cpe-24-160-56-92.socal.res.rr.com] has quit [Quit: Leaving.] 16:21:08 -!- fridim_ [~fridim@bas2-montreal07-2925317577.dsl.bell.ca] has quit [Read error: Operation timed out] 16:21:32 theos [~theos@unaffiliated/theos] has joined #lisp 16:23:21 -!- cmbntr_ [~cmbntr@slice.loopback.ch] has quit [Ping timeout: 245 seconds] 16:24:32 cmbntr [~cmbntr@slice.loopback.ch] has joined #lisp 16:25:19 przl [~przlrkt@62.217.45.197] has joined #lisp 16:25:24 joast [~rick@cpe-24-160-56-92.socal.res.rr.com] has joined #lisp 16:30:12 -!- Okasu [~1@unaffiliated/okasu] has quit [Quit: Lost terminal] 16:30:29 -!- przl [~przlrkt@62.217.45.197] has quit [Ping timeout: 248 seconds] 16:33:56 gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has joined #lisp 16:34:15 -!- qiemem_ [uid14911@gateway/web/irccloud.com/x-peegefplwilqythh] has quit [] 16:34:26 qiemem_ [uid14911@gateway/web/irccloud.com/x-xrsnsrgeaunzauoq] has joined #lisp 16:34:34 -!- qiemem_ [uid14911@gateway/web/irccloud.com/x-xrsnsrgeaunzauoq] has quit [Client Quit] 16:34:54 qiemem [uid14911@gateway/web/irccloud.com/x-ptsdhuntfwaynqov] has joined #lisp 16:38:26 LiamH [~healy@pdp8.nrl.navy.mil] has joined #lisp 16:41:18 ubolonton [~user@117.5.47.139] has joined #lisp 16:41:29 -!- ubolonton [~user@117.5.47.139] has quit [Remote host closed the connection] 16:41:49 -!- mvilleneuve [~mvilleneu@LLagny-156-36-4-214.w80-14.abo.wanadoo.fr] has quit [Quit: This computer has gone to sleep] 16:41:57 ubolonton [~user@117.5.47.139] has joined #lisp 16:41:58 -!- ubolonton [~user@117.5.47.139] has quit [Client Quit] 16:42:27 ubolonton [~user@117.5.47.139] has joined #lisp 16:42:29 -!- loke` [~user@2400:d803:7342:f91a:9823:334b:d53d:2634] has quit [Remote host closed the connection] 16:43:44 attila_lendvai [~attila_le@92.47.248.110] has joined #lisp 16:43:44 -!- attila_lendvai [~attila_le@92.47.248.110] has quit [Changing host] 16:43:44 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #lisp 16:43:45 -!- jewel [~jewel@105-236-138-104.access.mtnbusiness.co.za] has quit [Quit: Leaving] 16:45:36 -!- Vutral [~ss@mirbsd/special/Vutral] has quit [Ping timeout: 252 seconds] 16:45:43 masondesu [~textual@216.59.46.254] has joined #lisp 16:45:51 -!- k0001 [~k0001@200.117.223.18] has quit [Ping timeout: 272 seconds] 16:47:12 k0001 [~k0001@host43.190-137-83.telecom.net.ar] has joined #lisp 16:49:40 -!- slyrus [~chatzilla@107.200.11.207] has quit [Ping timeout: 264 seconds] 16:51:17 -!- nilsi_ [~nilsi@180.108.184.194] has quit [Remote host closed the connection] 16:53:04 -!- jaimef [jaimef@dns.mauthesis.com] has quit [Read error: Connection reset by peer] 16:55:20 -!- shridhar [Shridhar@nat/redhat/x-thaayoxbldppwqyx] has quit [Quit: shridhar] 16:55:41 Vutral [ss@mirbsd/special/Vutral] has joined #lisp 16:56:34 -!- xotedend [~quassel@50-77-75-69-static.hfc.comcastbusiness.net] has quit [Ping timeout: 265 seconds] 16:57:41 jaimef [jaimef@dns.mauthesis.com] has joined #lisp 17:00:58 -!- gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has quit [Quit: gendl] 17:02:26 -!- Karl_dscc [~localhost@p578FC635.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 17:05:08 Guest57771 [~andrew@net-130-25-175-157.cust.dsl.vodafone.it] has joined #lisp 17:10:15 -!- Guest57771 [~andrew@net-130-25-175-157.cust.dsl.vodafone.it] has quit [] 17:11:01 -!- fisxoj [~fisxoj@2620:101:f000:9c00:224:7eff:feda:1209] has quit [Ping timeout: 245 seconds] 17:12:01 normanrichards [~textual@cpe-24-27-51-104.austin.res.rr.com] has joined #lisp 17:15:05 zickzackv [~faot@port-92-198-30-130.static.qsc.de] has joined #lisp 17:15:10 hi 17:21:47 Nuupi [~IceChat9@a91-154-110-47.elisa-laajakaista.fi] has joined #lisp 17:23:41 -!- ck`` [~ck@dslb-094-219-255-002.pools.arcor-ip.net] has quit [Quit: Leaving] 17:26:32 banjara [~Adium@unaffiliated/banjara] has joined #lisp 17:29:26 mc40 [~mc@146.255.107.116] has joined #lisp 17:30:41 TDog [~chatzilla@174-30-146-228.tcso.qwest.net] has joined #lisp 17:30:48 -!- gravicappa [~gravicapp@ppp91-77-190-240.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 17:31:40 -!- Joreji [~thomas@vpn-ho1.unidsl.de] has quit [Ping timeout: 245 seconds] 17:32:19 -!- Joreji_ [~thomas@vpn-ho1.unidsl.de] has quit [Ping timeout: 260 seconds] 17:33:40 -!- scoofy [~scoofy@catv-89-135-80-2.catv.broadband.hu] has quit [Ping timeout: 260 seconds] 17:34:08 -!- kushal [kdas@fedora/kushal] has quit [Ping timeout: 256 seconds] 17:35:49 -!- mrSpec [~Spec@unaffiliated/mrspec] has quit [Remote host closed the connection] 17:44:28 Mon_Ouie [~Mon_Ouie@subtle/user/MonOuie] has joined #lisp 17:44:37 slyrus [~chatzilla@107.200.11.207] has joined #lisp 17:45:52 -!- sellout- [~Adium@c-67-176-62-45.hsd1.co.comcast.net] has quit [Read error: Connection reset by peer] 17:45:58 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 17:49:13 CatMtKing [~CatMtKing@ucrwpa1-fs-33-14.bulk.ucr.edu] has joined #lisp 17:55:40 -!- zickzackv [~faot@port-92-198-30-130.static.qsc.de] has quit [Ping timeout: 264 seconds] 17:55:59 -!- eudoxia [~eudoxia@r186-52-3-193.dialup.adsl.anteldata.net.uy] has quit [Remote host closed the connection] 17:57:15 LoicLisp [~loic@209.15.122.78.rev.sfr.net] has joined #lisp 17:58:31 -!- guyal [~anonymous@108-235-117-64.lightspeed.sntcca.sbcglobal.net] has quit [Quit: The Sleeper has Asleepen] 17:58:55 -!- ramkrsna [ramkrsna@unaffiliated/ramkrsna] has quit [Remote host closed the connection] 17:59:23 sellout- [~Adium@66.185.108.211] has joined #lisp 18:01:25 banjara [~Adium@unaffiliated/banjara] has joined #lisp 18:03:32 -!- zacharias [~aw@unaffiliated/zacharias] has quit [Quit: Bye!] 18:05:54 Okasu [~1@unaffiliated/okasu] has joined #lisp 18:07:17 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 272 seconds] 18:08:43 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 18:08:56 rapeseedoil [~rapeseedo@200.79.253.35] has joined #lisp 18:08:58 banjara [~Adium@unaffiliated/banjara] has joined #lisp 18:11:00 -!- kenanb [~user@unaffiliated/kenanb] has quit [Ping timeout: 265 seconds] 18:12:05 -!- rapeseedoil [~rapeseedo@200.79.253.35] has quit [K-Lined] 18:13:51 -!- ubolonton [~user@117.5.47.139] has quit [Ping timeout: 260 seconds] 18:14:02 joe9 [~user@ip70-179-153-227.fv.ks.cox.net] has joined #lisp 18:14:15 -!- mc40 [~mc@146.255.107.116] has quit [Quit: mc40] 18:14:24 kcj [~casey@unaffiliated/kcj] has joined #lisp 18:15:26 -!- kirin` [telex@gateway/shell/anapnea.net/x-xipxrupyoiffdsgx] has quit [Ping timeout: 245 seconds] 18:16:32 kirin` [telex@gateway/shell/anapnea.net/x-jkiukwpfdsngefvo] has joined #lisp 18:20:38 -!- jaimef [jaimef@dns.mauthesis.com] has quit [Remote host closed the connection] 18:21:18 _tca [~user@h151.25.91.207.static.ip.windstream.net] has joined #lisp 18:22:25 -!- d4gg4d_ [uid7020@gateway/web/irccloud.com/x-eexcwzusayxkfflk] has quit [Remote host closed the connection] 18:24:13 -!- Corvidium [~cosman246@h-68-165-77-148.sttn.wa.dynamic.megapath.net] has quit [Ping timeout: 240 seconds] 18:25:06 -!- rvirding [uid5943@gateway/web/irccloud.com/x-dqjwojfuvaelfeer] has quit [Remote host closed the connection] 18:25:06 -!- wilfredh [sid159@gateway/web/irccloud.com/x-tncsxkahxiudpgry] has quit [Remote host closed the connection] 18:25:37 -!- qiemem [uid14911@gateway/web/irccloud.com/x-ptsdhuntfwaynqov] has quit [Remote host closed the connection] 18:25:50 -!- hitecnologys [~hitecnolo@94.137.38.103] has quit [Quit: hitecnologys] 18:27:37 archonix [~none@78.90.30.16] has joined #lisp 18:28:21 -!- mathrick [~mathrick@85.218.134.11] has quit [Ping timeout: 246 seconds] 18:28:23 wilfredh [sid159@gateway/web/irccloud.com/x-rdjnueafbyifyngt] has joined #lisp 18:28:29 -!- dotemacs [uid801@gateway/web/irccloud.com/x-fwguxnhqjygrrfpb] has quit [Remote host closed the connection] 18:28:29 -!- fmu____ [uid89@gateway/web/irccloud.com/x-ddpyjkmmlsdnmhdi] has quit [Remote host closed the connection] 18:28:30 -!- varjag [uid4973@gateway/web/irccloud.com/x-ccbyfopnsutbdomd] has quit [Remote host closed the connection] 18:28:30 -!- ggherdov [sid11402@gateway/web/irccloud.com/x-qtfitzjynnimxcaa] has quit [Remote host closed the connection] 18:29:39 i just launched a new common lisp web app: http://www.bikefriday.com/bicycles/search 18:30:15 it's a configurator for custom folding bicycles made in oregon 18:30:39 the lisp part is a website, an expert system, and a rendering engine for cartoon renditions of the bikes 18:31:06 because there are so many possible bike designs that we couldn't possibly photograph them all or colorize them for all the color options 18:31:20 -!- madrik [~user@122.168.214.116] has left #lisp 18:31:43 fmu____ [uid89@gateway/web/irccloud.com/x-rcwrucwvwfbsktbo] has joined #lisp 18:33:29 subtlepa1h [~walker@subtlepath.com] has joined #lisp 18:33:29 -!- subtlepa1h is now known as eamon 18:33:48 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 18:34:13 subtlepath: cool! +1! 18:34:42 -!- eamon [~walker@subtlepath.com] has quit [Client Quit] 18:35:01 ejohnson [~Thunderbi@c-67-181-201-173.hsd1.ca.comcast.net] has joined #lisp 18:35:11 j_king: thanks :) 18:35:44 dotemacs [uid801@gateway/web/irccloud.com/x-bambuaweqqrzkabb] has joined #lisp 18:39:01 zacharias [~aw@unaffiliated/zacharias] has joined #lisp 18:39:13 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 272 seconds] 18:42:22 mathrick [~mathrick@85.218.134.11] has joined #lisp 18:42:51 subtlepath: Expert system? Can you elaborate on that a bit? 18:43:30 I mean i know what it is, just interested how did you used it there? 18:43:56 a buzzword to sell it to the management 18:46:15 k0001_ [~k0001@host98.190-229-215.telecom.net.ar] has joined #lisp 18:47:48 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 18:48:04 banjara [~Adium@unaffiliated/banjara] has joined #lisp 18:48:06 -!- foreignFunction [~niksaak@ip-4761.sunline.net.ua] has quit [Quit: Leaving.] 18:49:43 hi 18:49:47 -!- k0001 [~k0001@host43.190-137-83.telecom.net.ar] has quit [Ping timeout: 260 seconds] 18:52:10 -!- dmiles [~dmiles@c-67-189-17-39.hsd1.or.comcast.net] has quit [Read error: Connection reset by peer] 18:52:14 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 18:52:26 banjara [~Adium@unaffiliated/banjara] has joined #lisp 18:53:06 dmiles_afk [~dmiles@c-67-189-17-39.hsd1.or.comcast.net] has joined #lisp 18:55:04 testtest [02da1032@gateway/web/freenode/ip.2.218.16.50] has joined #lisp 18:56:20 varjag [uid4973@gateway/web/irccloud.com/x-hsrbiwbxlyujktjx] has joined #lisp 18:56:42 rvirding [uid5943@gateway/web/irccloud.com/x-hyukknjhklgisygk] has joined #lisp 18:56:52 -!- namtsui [~user@c-76-21-124-173.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 18:57:11 namtsui [~user@c-76-21-124-173.hsd1.ca.comcast.net] has joined #lisp 18:58:37 gniourf [~gniourf@pdm-l03.insa-lyon.fr] has joined #lisp 18:58:42 -!- gniourf [~gniourf@pdm-l03.insa-lyon.fr] has left #lisp 19:00:00 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 19:00:08 d4gg4d_ [uid7020@gateway/web/irccloud.com/x-ujdfttrgunqlipts] has joined #lisp 19:00:13 banjara [~Adium@unaffiliated/banjara] has joined #lisp 19:00:31 -!- danielszmulewicz [~danielszm@5.22.135.157] has quit [Quit: danielszmulewicz] 19:03:14 Is there a way to trace flet/labels functions in SBCL? (ref. https://bugs.launchpad.net/sbcl/+bug/375314) 19:03:39 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 19:03:51 banjara [~Adium@unaffiliated/banjara] has joined #lisp 19:05:23 Okasu: it is able to determine which parts are compatible with other parts 19:05:52 Okasu: every part is labelled with attributes and there is a rule system that specifies relationships between attributes, specific parts, and frame types 19:06:11 -!- Bike [~Glossina@gannon-wless-gw.resnet.wsu.edu] has quit [Ping timeout: 272 seconds] 19:07:46 Bike [~Glossina@wl-nat109.it.wsu.edu] has joined #lisp 19:07:49 -!- rvirding [uid5943@gateway/web/irccloud.com/x-hyukknjhklgisygk] has quit [Read error: Connection reset by peer] 19:08:02 Okasu: so if you're a total bike nerd you can pick a frame type, your favorite components, and the expert system will generate--if possible--a set of working, buildable bikes with those parts 19:08:48 so by 'expert system' i mean a declarative logic system 19:09:32 -!- TDog [~chatzilla@174-30-146-228.tcso.qwest.net] has quit [Ping timeout: 246 seconds] 19:09:33 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Quit: Leaving.] 19:10:09 it can also be used for other things, such as if a manufacturer discontinues a part it can go through our 'starting point' designs and that use those parts and suggest how to update them to be working designs again 19:11:15 jaimef [jaimef@dns.mauthesis.com] has joined #lisp 19:11:32 -!- testtest [02da1032@gateway/web/freenode/ip.2.218.16.50] has quit [Quit: Page closed] 19:12:30 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 19:12:45 banjara [~Adium@unaffiliated/banjara] has joined #lisp 19:13:16 ggherdov [sid11402@gateway/web/irccloud.com/x-mmgxvmiizqjbbewq] has joined #lisp 19:13:26 rvirding [uid5943@gateway/web/irccloud.com/x-eiicoxbsekhrwfwq] has joined #lisp 19:14:39 qiemem [uid14911@gateway/web/irccloud.com/x-ubwdhlzkhvavafzv] has joined #lisp 19:14:56 -!- CatMtKing [~CatMtKing@ucrwpa1-fs-33-14.bulk.ucr.edu] has quit [Quit: This computer has gone to sleep] 19:15:07 xotedend [~quassel@50-77-75-69-static.hfc.comcastbusiness.net] has joined #lisp 19:15:21 platypine [platypine@c-76-24-98-69.hsd1.ct.comcast.net] has joined #lisp 19:15:22 -!- platypine [platypine@c-76-24-98-69.hsd1.ct.comcast.net] has quit [Changing host] 19:15:22 platypine [platypine@unaffiliated/doritos] has joined #lisp 19:15:37 -!- didi [~user@unaffiliated/didi/x-1022147] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 19:18:18 So, Fares not here but  is XCVB still a thing? I hope so. 19:18:50 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 19:19:07 banjara [~Adium@unaffiliated/banjara] has joined #lisp 19:20:01 -!- platypine [platypine@unaffiliated/doritos] has quit [Ping timeout: 272 seconds] 19:20:07 subtlepath: Great, but how did you coerced customer(?) to allow you to use lisp? You know it's not that easy to replace lisp programmer as java programmer(or whatever) on one suddnly got hit by bus. 19:20:28 s/on/if/ 19:20:39 there are only bicycles in oregon 19:20:48 Ha-ha. 19:21:13 i bet if you posted a CL job opening you'd have hits pretty quickly :P 19:23:32 stassats: lol 19:25:41 -!- normanrichards [~textual@cpe-24-27-51-104.austin.res.rr.com] has quit [] 19:26:46 nug700 [~nug700@209-181-102-38.phnx.qwest.net] has joined #lisp 19:28:17 fisxoj [~fisxoj@dyn-129-97-41-230.dynamic.uwaterloo.ca] has joined #lisp 19:29:09 -!- jaimef [jaimef@dns.mauthesis.com] has quit [Remote host closed the connection] 19:29:57 optikalmouse [~omouse@69-165-245-60.cable.teksavvy.com] has joined #lisp 19:30:24 danielszmulewicz [~danielszm@5.22.135.157] has joined #lisp 19:30:48 jaimef [jaimef@dns.mauthesis.com] has joined #lisp 19:31:47 sellout-: lisp programs, like any mathematical beings, live in eternity. 19:33:02 pjb: programs are merely theorems with demonstrations 19:33:30 Exactly. 19:34:04 Posterdati: you just made millions of industry programmers scream, 'my god the maths the maths!' ;p 19:34:39 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 19:35:53 rpg [~rpg@198-74-7-110.fttp.usinternet.com] has joined #lisp 19:39:17 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 248 seconds] 19:42:29 normanrichards [~textual@mobile-166-147-067-235.mycingular.net] has joined #lisp 19:42:52 optikalmouse: I've lost hope, those millions also scream 'my god, the abstrations, the OO, the whatever.' 19:43:56 -!- ggole [~ggole@220-253-128-170.dyn.iinet.net.au] has quit [] 19:45:28 -!- slyrus [~chatzilla@107.200.11.207] has quit [Ping timeout: 264 seconds] 19:45:34 pjb: actually, the best program are the ones that come out from pure mathematical speculations 19:45:49 *stassats* screams "my god, the nonsense" 19:46:22 the sheriff????? 19:47:16 -!- Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has quit [Ping timeout: 240 seconds] 19:47:40 slyrus [~chatzilla@107.200.11.207] has joined #lisp 19:49:50 Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has joined #lisp 19:49:50 -!- yrk [~user@pdpc/supporter/student/yrk] has quit [Read error: Connection reset by peer] 19:50:03 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 19:50:17 banjara [~Adium@unaffiliated/banjara] has joined #lisp 19:50:33 edgar-rfx [~GOD@HSI-KBW-109-193-013-113.hsi7.kabel-badenwuerttemberg.de] has joined #lisp 19:51:56 cory786 [~cory@PAT98.wifi.utoledo.edu] has joined #lisp 19:52:45 _w|t_ [~ok@209.148.84.13] has joined #lisp 19:52:54 -!- specbot [~specbot@common-lisp.net] has quit [Disconnected by services] 19:52:58 specbot [~specbot@common-lisp.net] has joined #lisp 19:53:44 Eekoos [~other@188.162.65.51] has joined #lisp 19:54:51 hello, are there keybinding for slime to set current package for slime repl to current buffer's package? 19:55:40 -!- stassats [~stassats@wikipedia/stassats] has quit [Ping timeout: 264 seconds] 19:56:40 mikaelj_ [~tic@c83-248-1-14.bredband.comhem.se] has joined #lisp 19:56:59 ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has joined #lisp 19:57:12 capisce_ [srodal@rs5.risingnet.net] has joined #lisp 19:57:36 blargh in sbcl all compile-time errors in defmethod end up as macro expansion errors for the defmethod thus being at the beginning of the defmethod 19:58:13 Eekoos: C-c ~ 19:58:31 Eekoos: i did not know this before you asked, and i used C-h m to find out 19:58:47 Eekoos: so, thanks for asking :) 19:59:22 H4ns: thanks for finding. :) 19:59:29 -!- ltbarcly [~textual@pool-71-116-67-9.snfcca.dsl-w.verizon.net] has quit [Client Quit] 19:59:57 sjl_ [~sjl@li136-50.members.linode.com] has joined #lisp 20:00:16 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 20:00:28 shikatano [~lou@108-81-218-106.lightspeed.bcvloh.sbcglobal.net] has joined #lisp 20:00:28 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:00:32 Okasu: trade secret, sorry ;) 20:00:49 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 20:01:11 subtlepath: Heh, np. :) 20:01:33 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:01:57 the business owners are smart enough to understand that the difference between lisp and java can be the difference between delivered and expensive vaporware 20:02:09 their entire business is built on heavily specialized knowledge and hard-to-replace people 20:03:00 i just had to explain to them that lisp lets me build custom software in the same way that they build custom bicycles 20:03:09 -!- xotedend [~quassel@50-77-75-69-static.hfc.comcastbusiness.net] has quit [Ping timeout: 244 seconds] 20:03:40 also they had the beginnings of a configurator implemented in PHP that had taken ages for them to get developed 20:04:05 i rewrote it overnight in lisp and then made my proposal 20:04:16 pjb` [~t@AMontsouris-651-1-5-46.w90-46.abo.wanadoo.fr] has joined #lisp 20:04:27 subtlepath: Wow, quite a success story. :) 20:04:42 -!- Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has quit [Ping timeout: 244 seconds] 20:05:05 xotedend [~quassel@50-77-75-69-static.hfc.comcastbusiness.net] has joined #lisp 20:05:45 -!- Bike [~Glossina@wl-nat109.it.wsu.edu] has quit [Ping timeout: 244 seconds] 20:06:35 -!- kliph [~user@unaffiliated/kliph] has quit [Ping timeout: 246 seconds] 20:06:42 prior to this project the only way to buy one of their bikes was to call them or visit in person 20:06:48 so there was a lot of motivation for it to happen 20:07:34 i love the company, they have awesome loyal customers and they make great bikes 20:08:09 -!- Eekoos [~other@188.162.65.51] has quit [Quit: leaving] 20:08:15 part of my payment is getting one of these: http://www.youtube.com/watch?v=4XTtHSYSHnA 20:08:26 following it through production has been a lot of fun 20:08:52 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 20:08:54 they cut tubing, weld, braze, paint, and assemble the bikes all in one building with around 30 employees 20:09:07 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:09:17 tali713_ [~tali713@2001:0:53aa:64c:cf5:686d:b3ee:137e] has joined #lisp 20:09:20 l_ [~l_@84.233.246.170] has joined #lisp 20:09:26 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 20:09:31 -!- edgar-rft [~GOD@HSI-KBW-109-193-013-113.hsi7.kabel-badenwuerttemberg.de] has quit [Remote host closed the connection] 20:09:31 -!- w|t [~ok@unaffiliated/wt/x-8228070] has quit [Ping timeout: 240 seconds] 20:09:32 foeniks [~fevon@p5499DFE1.dip0.t-ipconnect.de] has joined #lisp 20:09:34 yrk` [~user@50.133.134.220] has joined #lisp 20:09:34 -!- shikatano is now known as 17WAAAQDC 20:09:35 -!- mikaelj [~tic@c83-248-1-14.bredband.comhem.se] has quit [Ping timeout: 240 seconds] 20:09:35 -!- capisce [~srodal@rs5.risingnet.net] has quit [Ping timeout: 240 seconds] 20:09:35 -!- sjl [~sjl@li136-50.members.linode.com] has quit [Ping timeout: 240 seconds] 20:09:35 -!- expez [~expez@expez.com] has quit [Ping timeout: 240 seconds] 20:09:35 -!- stuckie [~stuckie@88.208.208.174] has quit [Ping timeout: 240 seconds] 20:09:36 -!- pjb [~t@AMontsouris-651-1-5-46.w90-46.abo.wanadoo.fr] has quit [Remote host closed the connection] 20:09:36 -!- yrk` [~user@50.133.134.220] has quit [Remote host closed the connection] 20:09:36 -!- tali713 [~tali713@c-76-17-236-129.hsd1.mn.comcast.net] has quit [Ping timeout: 240 seconds] 20:09:36 -!- brown` [user@nat/google/x-aaulgzdvlgsmqbjk] has quit [Remote host closed the connection] 20:09:36 brown`` [user@nat/google/session] has joined #lisp 20:09:36 -!- cantstanya [~what@2001:5c0:1400:a::43d] has quit [Ping timeout: 240 seconds] 20:09:37 -!- brown`` [user@nat/google/session] has quit [Changing host] 20:09:37 brown`` [user@nat/google/x-kdzbwrfroudifnxf] has joined #lisp 20:09:37 -!- tali713_ is now known as tali713 20:10:07 -!- l_ [~l_@84.233.246.170] has left #lisp 20:10:12 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:10:27 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 20:10:36 klltkr [~klltkr@unaffiliated/klltkr] has joined #lisp 20:10:40 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:11:17 -!- 17WAAAQDC is now known as shikatano 20:11:55 -!- joe9 [~user@ip70-179-153-227.fv.ks.cox.net] has quit [Read error: Connection reset by peer] 20:12:19 -!- mathrick [~mathrick@85.218.134.11] has quit [Ping timeout: 272 seconds] 20:14:16 -!- askatasuna [~askatasun@host53.190-231-92.telecom.net.ar] has quit [Ping timeout: 260 seconds] 20:15:04 mathrick [~mathrick@85.218.134.11] has joined #lisp 20:15:05 Davidbrcz [~david@88.115.137.88.rev.sfr.net] has joined #lisp 20:15:17 stuckie [~stuckie@88.208.208.174] has joined #lisp 20:15:33 -!- cory786 [~cory@PAT98.wifi.utoledo.edu] has quit [Ping timeout: 248 seconds] 20:16:25 Bike [~Glossina@wl-nat109.it.wsu.edu] has joined #lisp 20:17:51 -!- ryankarason [~rak@108-245-58-182.lightspeed.clmboh.sbcglobal.net] has quit [Quit: UNTIL NEXT TIME...] 20:20:17 askatasuna [~askatasun@host53.190-231-92.telecom.net.ar] has joined #lisp 20:20:37 -!- kcj [~casey@unaffiliated/kcj] has quit [Ping timeout: 240 seconds] 20:21:12 -!- LoicLisp [~loic@209.15.122.78.rev.sfr.net] has quit [Remote host closed the connection] 20:22:49 Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has joined #lisp 20:22:52 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 20:23:05 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:23:25 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 20:23:44 -!- Patzy [~something@lns-bzn-51f-81-56-151-137.adsl.proxad.net] has quit [Ping timeout: 246 seconds] 20:24:09 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:24:34 Patzy [~something@lns-bzn-51f-81-56-151-137.adsl.proxad.net] has joined #lisp 20:25:02 stassats [~stassats@wikipedia/stassats] has joined #lisp 20:28:11 marzipankaiser [~androirc@tmo-108-165.customers.d1-online.com] has joined #lisp 20:29:06 -!- marzipankaiser [~androirc@tmo-108-165.customers.d1-online.com] has quit [Client Quit] 20:29:45 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 20:30:00 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:30:34 marzipankaiser [~androirc@tmo-108-165.customers.d1-online.com] has joined #lisp 20:32:11 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 20:32:24 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:32:45 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 20:33:30 banjara [~Adium@unaffiliated/banjara] has joined #lisp 20:33:52 -!- marzipankaiser [~androirc@tmo-108-165.customers.d1-online.com] has quit [Client Quit] 20:34:12 Corvidium [~cosman246@D-108-179-184-6.dhcp4.washington.edu] has joined #lisp 20:35:23 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 20:39:50 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 240 seconds] 20:41:39 ltbarcly [~textual@216.113.168.135] has joined #lisp 20:41:56 l_ [~klmno@84.233.246.170] has joined #lisp 20:43:46 -!- edgar-rfx is now known as edgar-rft 20:45:50 -!- pjb` is now known as pjb 20:47:37 -!- ejohnson [~Thunderbi@c-67-181-201-173.hsd1.ca.comcast.net] has quit [Ping timeout: 240 seconds] 20:48:18 -!- knob [~knob@76.76.202.245] has quit [Quit: Leaving] 20:48:32 sdemarre [~serge@91.180.77.67] has joined #lisp 20:50:11 -!- l_ [~klmno@84.233.246.170] has left #lisp 20:55:01 jtza8 [~jtza8@105-236-147-235.access.mtnbusiness.co.za] has joined #lisp 20:59:06 -!- ltbarcly [~textual@216.113.168.135] has quit [Quit: Computer has gone to sleep.] 21:01:30 ozzloy [~ozzloy@unaffiliated/ozzloy] has joined #lisp 21:04:17 -!- normanrichards [~textual@mobile-166-147-067-235.mycingular.net] has quit [Read error: Connection reset by peer] 21:05:40 -!- Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has quit [Ping timeout: 244 seconds] 21:10:23 flame_ [~flame_@unaffiliated/flame/x-0205742] has joined #lisp 21:11:46 *jaimef* ponders if elc can build binaries/images as easily as sbcl 21:12:14 elc I don't know. ecl, easier. 21:12:15 hrs [~textual@64.206.121.41] has joined #lisp 21:12:25 ecl can generate .o 21:12:33 hmm 21:12:35 ltbarcly [~textual@216.113.168.135] has joined #lisp 21:12:44 -!- hrs [~textual@64.206.121.41] has quit [Client Quit] 21:13:58 rpg_ [~rpg@198-74-7-110.fttp.usinternet.com] has joined #lisp 21:14:31 yrk [~user@c-50-133-134-220.hsd1.ma.comcast.net] has joined #lisp 21:14:44 -!- yrk [~user@c-50-133-134-220.hsd1.ma.comcast.net] has quit [Changing host] 21:14:45 yrk [~user@pdpc/supporter/student/yrk] has joined #lisp 21:15:50 -!- rpg [~rpg@198-74-7-110.fttp.usinternet.com] has quit [Ping timeout: 240 seconds] 21:16:50 -!- hugod [~user@70.24.181.215] has quit [Remote host closed the connection] 21:19:05 -!- rpg_ [~rpg@198-74-7-110.fttp.usinternet.com] has quit [Ping timeout: 272 seconds] 21:20:33 -!- Nuupi [~IceChat9@a91-154-110-47.elisa-laajakaista.fi] has quit [Quit: IceChat - Its what Cool People use] 21:20:55 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 21:21:09 banjara [~Adium@unaffiliated/banjara] has joined #lisp 21:21:37 Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has joined #lisp 21:22:47 hugod [~user@70.24.181.215] has joined #lisp 21:23:33 -!- flame_ [~flame_@unaffiliated/flame/x-0205742] has quit [Quit: Computer has gone to sleep.] 21:24:38 |JRG| [~user@dynamic-adsl-94-34-151-82.clienti.tiscali.it] has joined #lisp 21:25:00 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 21:25:15 banjara [~Adium@unaffiliated/banjara] has joined #lisp 21:26:07 -!- clop [~jared@moat3.centtech.com] has quit [Ping timeout: 260 seconds] 21:26:48 CatMtKing [~CatMtKing@ucrwpa1-fs-33-14.bulk.ucr.edu] has joined #lisp 21:27:27 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 21:27:39 banjara [~Adium@unaffiliated/banjara] has joined #lisp 21:27:45 -!- Code_Man` [~Code_Man@185-153.5-85.cust.bluewin.ch] has quit [Remote host closed the connection] 21:27:47 -!- sdemarre [~serge@91.180.77.67] has quit [Ping timeout: 246 seconds] 21:28:23 normanrichards [~textual@cpe-24-27-51-104.austin.res.rr.com] has joined #lisp 21:28:57 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 21:29:13 banjara [~Adium@50-196-135-161-static.hfc.comcastbusiness.net] has joined #lisp 21:29:19 -!- banjara [~Adium@50-196-135-161-static.hfc.comcastbusiness.net] has quit [Changing host] 21:29:19 banjara [~Adium@unaffiliated/banjara] has joined #lisp 21:32:33 -!- archonix [~none@78.90.30.16] has quit [Quit: Leaving] 21:34:58 -!- shikatano [~lou@108-81-218-106.lightspeed.bcvloh.sbcglobal.net] has quit [Ping timeout: 265 seconds] 21:36:14 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 21:36:28 -!- ltbarcly [~textual@216.113.168.135] has quit [Quit: Computer has gone to sleep.] 21:38:46 clop [~jared@moat3.centtech.com] has joined #lisp 21:38:52 -!- masondesu [~textual@216.59.46.254] has quit [Ping timeout: 264 seconds] 21:40:19 -!- jtza8 [~jtza8@105-236-147-235.access.mtnbusiness.co.za] has quit [Remote host closed the connection] 21:40:26 joe9 [~user@ip70-179-153-227.fv.ks.cox.net] has joined #lisp 21:40:44 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Ping timeout: 246 seconds] 21:41:14 masondesu [~textual@216.59.46.254] has joined #lisp 21:42:30 -!- k0001_ [~k0001@host98.190-229-215.telecom.net.ar] has quit [Ping timeout: 245 seconds] 21:44:08 ltbarcly [~textual@216.113.168.135] has joined #lisp 21:46:57 -!- kirin` [telex@gateway/shell/anapnea.net/x-jkiukwpfdsngefvo] has quit [Ping timeout: 272 seconds] 21:48:14 will__ [4cda7ae2@gateway/web/freenode/ip.76.218.122.226] has joined #lisp 21:49:29 -!- stassats [~stassats@wikipedia/stassats] has quit [Ping timeout: 272 seconds] 21:49:33 anyone care to recommend a way to force SBCL to emit logical right shift instructions on x86? 21:50:26 -!- alezost [~user@128-70-197-79.broadband.corbina.ru] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:50:45 didi [~user@unaffiliated/didi/x-1022147] has joined #lisp 21:50:57 kirin` [telex@gateway/shell/anapnea.net/x-vqglgeyfhdlaycld] has joined #lisp 21:51:20 bananagram [~bot@c-76-30-158-226.hsd1.tx.comcast.net] has joined #lisp 21:53:37 platypine [platypine@unaffiliated/doritos] has joined #lisp 21:54:12 Sagane [~Sagane@177.100-226-89.dsl.completel.net] has joined #lisp 21:59:54 mathrick_ [~mathrick@85.218.134.11] has joined #lisp 22:01:54 expez [~expez@expez.com] has joined #lisp 22:02:14 -!- mathrick [~mathrick@85.218.134.11] has quit [Ping timeout: 268 seconds] 22:03:23 -!- ASau [~user@p54AFFE1B.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 22:04:21 -!- foeniks [~fevon@p5499DFE1.dip0.t-ipconnect.de] has quit [Quit: This computer has gone to sleep] 22:05:24 ASau [~user@p54AFFE1B.dip0.t-ipconnect.de] has joined #lisp 22:05:28 -!- vircures [~vircures@50-192-42-94-static.hfc.comcastbusiness.net] has quit [Quit: vircures] 22:05:34 -!- Okasu [~1@unaffiliated/okasu] has quit [Quit: leaving] 22:05:51 cantstanya [~what@2001:5c0:1400:a::43d] has joined #lisp 22:06:44 -!- fisxoj [~fisxoj@dyn-129-97-41-230.dynamic.uwaterloo.ca] has quit [Ping timeout: 260 seconds] 22:07:10 -!- Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has quit [Ping timeout: 268 seconds] 22:07:46 Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has joined #lisp 22:08:38 victor_lowther [~victor.lo@58.64.222.241] has joined #lisp 22:12:14 -!- Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has quit [Ping timeout: 246 seconds] 22:13:00 -!- cmatei [~cmatei@78.96.108.146] has quit [Remote host closed the connection] 22:14:00 cmatei [~cmatei@78.96.108.146] has joined #lisp 22:14:11 Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has joined #lisp 22:16:34 bgs100 [~nitrogen@unaffiliated/bgs100] has joined #lisp 22:19:26 -!- victor_lowther [~victor.lo@58.64.222.241] has quit [Ping timeout: 265 seconds] 22:20:11 -!- tomaw [tom@freenode/staff/tomaw] has quit [Quit: Quitting] 22:20:23 -!- duggiefresh [~duggiefre@64.119.141.126] has quit [Remote host closed the connection] 22:20:44 -!- lduros [~user@fsf/member/lduros] has quit [Remote host closed the connection] 22:20:49 duggiefresh [~duggiefre@64.119.141.126] has joined #lisp 22:22:30 Elvaron [~Elvaron@HSI-KBW-134-3-240-90.hsi14.kabel-badenwuerttemberg.de] has joined #lisp 22:22:38 enn [~eli@codeanddata.com] has joined #lisp 22:25:09 -!- duggiefresh [~duggiefre@64.119.141.126] has quit [Ping timeout: 248 seconds] 22:26:02 l_ [~l_@84.233.246.170] has joined #lisp 22:26:04 gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has joined #lisp 22:26:05 -!- mishoo [~mishoo@93.113.190.121] has quit [Read error: Operation timed out] 22:27:14 -!- cmatei [~cmatei@78.96.108.146] has quit [Remote host closed the connection] 22:27:19 hey, how do i put the following into proper clisp loop syntax? (for x in some_list do (setf steps (+ steps 1)) when (equal goal x) return x finally return nil) 22:27:42 -!- l_ [~l_@84.233.246.170] has left #lisp 22:27:47 i can put it into prose if that makes it easier to see what i'm trying to do 22:28:15 l_ [~l_@84.233.246.170] has joined #lisp 22:29:15 (loop for x in some_list do (setf steps (+ steps 1)) when (equal goal x) return x finally return nil) 22:29:21 clhs loop 22:29:21 http://www.lispworks.com/reference/HyperSpec/Body/m_loop.htm 22:29:53 says nil is an unknown keyword in loop macro 22:29:58 but it'd work also in sbcl, abcl, ccl, cmucl, ecl, gcl, allegro cl, lispworks cl, mocl, etc. 22:30:20 Ah yes, return x is a CLtL2 form. Use (return x) and (return nil). 22:30:41 so it's not specific to clisp the implementation, but to CL the Common Lisp language. 22:30:59 -!- Neptu [~Neptu@252.67.24.31.static.mrfriday.com] has quit [Ping timeout: 260 seconds] 22:31:23 either way :D 22:32:05 tomaw [tom@freenode/staff/tomaw] has joined #lisp 22:32:28 Neptu [~Neptu@252.67.24.31.static.mrfriday.com] has joined #lisp 22:33:01 * (defvar steps 0) STEPS * (loop for x in '(a b c) do (setf steps (+ steps 1)) when (equal 'b x) do (return x) finally (return nil)) 22:33:20 cut out the "STEPS *" part, that is SBCL talking back to me. 22:34:01 in particular, the "do" is needed after the when. 22:34:28 (loop with steps = 0 for x ...) --- with allows you to introduce variable inits 22:34:46 *dim* shoudl train himself to use ; rather than -- here 22:34:52 and, good night, too 22:35:05 variable inits surely better than global vars :) 22:37:37 <_tca> global special vars at that 22:37:52 -!- l_ [~l_@84.233.246.170] has left #lisp 22:39:01 dim: where does -- come from? 22:39:39 cmatei [~cmatei@78.96.108.146] has joined #lisp 22:39:55 -!- masondesu [~textual@216.59.46.254] has quit [Quit: Computer has gone to sleep.] 22:40:35 dim: ada?? 22:40:36 any idea why i'm getting an extra line of NIL as output when i do (format ...) ? 22:41:04 Elvaron: because (format t ...) returns nil 22:41:08 Elvaron: NIL is the return of format., unless the stream you pass to format is NIL, in which case it returns a string. 22:41:39 mkay, just looks slightly not-as-good :D 22:41:56 Elvaron: and Clisp is an implementation, not the language (it's called common lisp). Also, as a rule, CL is compiled, not interpreted. 22:42:22 -!- prxq [~mommer@x2f65451.dyn.telefonica.de] has quit [Quit: Leaving] 22:42:35 -!- zacharias [~aw@unaffiliated/zacharias] has quit [Quit: Bye!] 22:44:10 kcj [~casey@unaffiliated/kcj] has joined #lisp 22:46:56 is there an idiom in common lisp for completely suppressing the value of a computation? I sometimes do (progn (too-big-to-print) 'ok) ...but is there any way to get no output at all? 22:47:21 will__: (values) 22:49:23 -!- fortitude [~mts@rrcs-24-97-165-124.nys.biz.rr.com] has quit [Quit: leaving] 22:49:25 k0001 [~k0001@host12.186-125-109.telecom.net.ar] has joined #lisp 22:49:41 -!- Corvidium [~cosman246@D-108-179-184-6.dhcp4.washington.edu] has quit [Ping timeout: 248 seconds] 22:50:45 -!- cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has quit [Read error: Connection reset by peer] 22:50:52 cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has joined #lisp 22:52:08 thanks :) 22:52:20 -!- gendl [~gendl@c-98-250-10-50.hsd1.mi.comcast.net] has quit [Quit: gendl] 22:53:35 -!- sellout- [~Adium@66.185.108.211] has quit [Quit: Leaving.] 23:00:33 -!- Sagane [~Sagane@177.100-226-89.dsl.completel.net] has quit [Read error: Connection reset by peer] 23:01:16 -!- ltbarcly [~textual@216.113.168.135] has quit [Quit: Computer has gone to sleep.] 23:04:11 -!- Davidbrcz [~david@88.115.137.88.rev.sfr.net] has quit [Ping timeout: 245 seconds] 23:04:15 How can I force redisplaying of a mcclim frame? I'm trying out stuff in the repl, and display doesn't get updated automatically. 23:06:48 Shinmera_ [~linus@188.155.176.171] has joined #lisp 23:07:20 (gsharp::redisplay-frame-panes (first gsharp::*gsharp-instances*) :force-p t) doesn't work, and neither do (mapcar (function climi::port-force-output) climi::*all-ports*) :-( 23:08:04 foeniks [~fevon@p5499DFE1.dip0.t-ipconnect.de] has joined #lisp 23:08:07 -!- Shinmera [~linus@xdsl-188-155-176-171.adslplus.ch] has quit [Ping timeout: 244 seconds] 23:08:17 gsharp::redisplay-frame-panes is clim:redisplay-frame-panes 23:08:35 -!- oleo [~oleo@xdsl-78-35-147-183.netcologne.de] has quit [Ping timeout: 246 seconds] 23:09:26 pjb: I don't use clim, but google tells me repaint-sheet 23:10:19 stassats [~stassats@wikipedia/stassats] has joined #lisp 23:13:19 guaqua` [gua@hilla.kapsi.fi] has joined #lisp 23:13:43 -!- guaqua [gua@hilla.kapsi.fi] has quit [Remote host closed the connection] 23:15:49 -!- milanj [~milanj@cable-178-148-2-202.dynamic.sbb.rs] has quit [Quit: Leaving] 23:17:37 -!- Pullphinger [~Pullphing@12.40.23.68] has quit [] 23:17:37 -!- cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has quit [Read error: Connection reset by peer] 23:18:40 cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has joined #lisp 23:19:02 -!- Shinmera_ [~linus@188.155.176.171] has quit [Quit: ZZzz] 23:19:59 Nope, doesn't seem to work better. 23:20:54 Using (let ((sheet (clim:frame-top-level-sheet ))) (clim:repaint-sheet sheet (clim:sheet-region sheet))) 23:22:24 oleo [~oleo@xdsl-78-35-168-216.netcologne.de] has joined #lisp 23:22:38 -!- danielszmulewicz [~danielszm@5.22.135.157] has quit [Quit: danielszmulewicz] 23:25:18 question time: doing Depth-First-Search on a graph (so cycles allowed) i need to remember what nodes i've already visited. being a recursive function just appending to an additional argument doesnt help much (since it wouldn't carry backwards). alternatives? global variable is one, but i'm sure there's better 23:25:44 -!- LiamH [~healy@pdp8.nrl.navy.mil] has quit [Quit: Leaving.] 23:26:15 return the nodes-visited as a second return value 23:28:02 Code_Man` [~Code_Man@185-153.5-85.cust.bluewin.ch] has joined #lisp 23:28:17 gendl [~dcooper8@c-98-250-10-50.hsd1.mi.comcast.net] has joined #lisp 23:28:23 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 23:28:24 feel free to tell me how to incorporate that into (loop for x in unexplored_adjacent do (if (equal x goal) (return goal) (if (equal (recursive-call x goal) goal) (return goal) nil)...) :D 23:28:36 banjara [~Adium@unaffiliated/banjara] has joined #lisp 23:29:22 Feel free to search in clhs what operators deal with multiple values, and feel free to have fun combining them like lego brick to build the wanted feature. 23:30:00 what i'm trying to say is i dont see how i can carry the return argument of that recursive call to the next loop cycle 23:30:25 Elvaron: otherwise, it's often just easier to use a mutable data structure where you keep a visited flag in the nodes of the graph. Of course, it has the drawback of not allowing multiple searches in parallel. 23:30:30 add another loop variable "visited-nodes". 23:30:31 unless i do like for y = (recursive-call) 23:30:34 assign this variable. 23:30:36 not hard 23:31:04 please don't write "feel free" as if this was obviously impossible, it's pretty grating 23:31:07 You can also use a mutable argument. 23:31:37 (defstruct visited-nodes nodes) (walk-graph (make-visited-nodes)) 23:31:54 well: (walk-graph graph (make-visited-nodes)) 23:32:03 shikatano [~lou@130.101.20.201] has joined #lisp 23:32:24 -!- cmm [~cmm@bzq-79-181-36-194.red.bezeqint.net] has quit [Ping timeout: 244 seconds] 23:32:42 But returning an immutable structure may be better than modifying an argument, if you want to be able to backtrack easily. 23:32:57 right 23:33:50 -!- banjara [~Adium@unaffiliated/banjara] has quit [Quit: Leaving.] 23:34:05 banjara [~Adium@unaffiliated/banjara] has joined #lisp 23:35:20 -!- banjara [~Adium@unaffiliated/banjara] has quit [Client Quit] 23:35:34 banjara [~Adium@unaffiliated/banjara] has joined #lisp 23:35:54 <_tca> instead of the function taking a node, have it take a list of nodes, you append the child nodes to the back of the list when recuring 23:36:27 <_tca> and have an extra parameter for the memo of the visited nodes obviously 23:37:09 i can neither change the type nor amount of arguments 23:37:29 Then a global it will be. 23:37:43 <_tca> Elvaron: why not? 23:37:44 -!- CatMtKing [~CatMtKing@ucrwpa1-fs-33-14.bulk.ucr.edu] has quit [Remote host closed the connection] 23:37:51 <_tca> you wouldn't need to change the user-facing interface 23:37:52 But in this day and age of open source, not being able to change the type or amount of arguments sounds ludicruous. 23:37:54 the magic that is homework assignments? 23:37:58 hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has joined #lisp 23:38:01 <_tca> it can either be an optinal parameter or an auxilary function inside 23:38:02 Bike's got it. 23:38:22 You could also wrap a closure. 23:38:31 i'll never understand the restrictions people talk about in this channel when asking for homework help 23:38:45 (make-visitor additional arguments) --> (lambda (fixed types and arguments) ) 23:38:58 heh 23:39:04 this is a homework free zone 23:39:49 -!- klltkr [~klltkr@unaffiliated/klltkr] has quit [Quit: My MacBook has gone to sleep. ZZZzzz] 23:42:17 -!- hiyosi [~skip_it@247.94.30.125.dy.iij4u.or.jp] has quit [Read error: Operation timed out] 23:43:15 Better off having the function take a collection of nodes and emit its results by calling something. 23:43:40 That way you can delegate the responsibility for the organizational structure of the results. 23:45:17 ejohnson [~Thunderbi@c-67-181-201-173.hsd1.ca.comcast.net] has joined #lisp 23:46:18 -!- foeniks [~fevon@p5499DFE1.dip0.t-ipconnect.de] has quit [Quit: Leaving] 23:46:27 ltbarcly [~textual@216.113.168.135] has joined #lisp 23:47:47 -!- shikatano [~lou@130.101.20.201] has quit [Ping timeout: 246 seconds] 23:53:23 -!- ltbarcly [~textual@216.113.168.135] has quit [Quit: Computer has gone to sleep.] 23:56:06 zacharias [~aw@unaffiliated/zacharias] has joined #lisp 23:56:31 DataLinkDroid [~DataLinkD@1.147.56.37] has joined #lisp 23:57:03 -!- kwmiebach [~kwmiebach@xdsl-87-78-6-88.netcologne.de] has quit [Ping timeout: 240 seconds] 23:57:59 kwmiebach [~kwmiebach@xdsl-87-78-0-67.netcologne.de] has joined #lisp