00:01:08 foof: that optimization is not as effective as actually having `case-lambda' 00:01:11 but it does sound clever 00:01:30 It's much more powerful, and keeps the language simpler. 00:02:14 it's more powerful in some ways, less so in others 00:02:37 for example: (case-lambda [(x) ...] [x ... reference to x ...]) 00:02:38 Less so in what ways? 00:03:10 less so in that the program i just gave doesn't get optimized 00:03:14 Why do you think it can't handle that? 00:03:25 because the cdr escapes 00:04:09 Oh, but case-lambda needs to build a list there too. 00:04:46 A smart case-lambda may not build a list in the single arg case - if I tweaked the optimization to handle partial analysis I could do the same. 00:05:22 Anyway, I have to run to work. 00:06:14 i'm skeptical that relying on an optimization here gives programmers the predictability they need 00:06:21 -!- OneBraveHog [~nana@pool-71-182-166-67.pitbpa.east.verizon.net] has quit [Ping timeout: 240 seconds] 00:06:41 OneBraveHog [~nana@pool-71-182-166-67.pitbpa.east.verizon.net] has joined #scheme 00:06:41 -!- clog [~nef@bespin.org] has quit [Ping timeout: 240 seconds] 00:06:41 also, the "analysis changes `procedure-arity'" idea seems pretty crazy 00:19:23 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 00:23:36 -!- JoelMcCracken [~user@70-90-236-161-Pennsylvania.hfc.comcastbusiness.net] has quit [Ping timeout: 240 seconds] 00:24:18 -!- ckrailo [~ckrailo@208.86.167.249] has quit [Quit: Computer has gone to sleep.] 00:29:56 -!- samth is now known as samth_away 00:43:04 tshauck [~tshauck@99-109-59-35.lightspeed.mssnks.sbcglobal.net] has joined #scheme 00:47:02 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 00:51:56 gienah [~mwright@ppp121-44-237-46.lns20.syd7.internode.on.net] has joined #scheme 00:52:59 ckrailo [~ckrailo@pool-173-57-102-171.dllstx.fios.verizon.net] has joined #scheme 00:57:19 -!- kanru_ is now known as kanru 01:05:41 -!- pyrony [~epic@office1.klout.com] has quit [Ping timeout: 240 seconds] 01:13:26 -!- tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has quit [Remote host closed the connection] 01:16:14 mippymoe89 [~mippymoe8@c-24-147-92-217.hsd1.vt.comcast.net] has joined #scheme 01:22:37 samth_ [~samth@c-24-128-51-63.hsd1.ma.comcast.net] has joined #scheme 01:23:41 pyrony [~epic@173.151.171.167] has joined #scheme 01:26:14 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 01:28:08 samth_away: It's trivial to guarantee the optimization in fixed patterns like let-optionals* and case-lambda. 01:30:19 -!- tshauck [~tshauck@99-109-59-35.lightspeed.mssnks.sbcglobal.net] has quit [Quit: tshauck] 01:32:37 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 258 seconds] 01:39:30 -!- mippymoe89 [~mippymoe8@c-24-147-92-217.hsd1.vt.comcast.net] has quit [Ping timeout: 250 seconds] 01:48:34 elly: Using Chibi for anything interesting? 01:51:46 foof: trying to implement things from The Reasoned Schemer in it :) 01:54:28 Is it reasonable or pathological that the argument `a' is preferred over the defined `a'? 01:54:32 incubot: (define (a a) (a)) (a (lambda () 'harro!)) 01:54:33 harro! 01:54:46 It's certainly intuitive; not sure what R5RS says, though. 01:55:40 elly: Hmmm... if you're not embedding in C or on a low-memory system, you're probably better off with a more featureful Scheme. Specifically for The Reasoned Schemer, one that can do delimited continuations. 01:55:51 Is the definition an argument? 01:56:00 klutometis, since it's just sugar for (define a (lambda (a) ...)), I guess that it makes sense. 01:56:06 klutometis: That define is a shorthand for (define a (lambda (a) (a))), where there is no ambiguity. 01:56:09 klutometis, consider (letrec ((a (lambda (a) (a)))) a). 01:56:37 Ah; indeed, indeed. 01:57:24 elly: Chicken at least has kanren and mini-kanren pre-packaged, and Chicken continuations are as fast as they get. 01:57:37 Hm, I would regard just about any code with (define (a a) ..) as pathological 01:58:09 tshauck [~tshauck@99-109-59-35.lightspeed.mssnks.sbcglobal.net] has joined #scheme 01:58:15 foof: yeah... I need to package racket :) 02:01:24 -!- tupi [~david@139.82.89.24] has quit [Quit: Leaving] 02:02:37 Although I appreciate the interest in Chibi, it is at the current stage just a niche implementation - a better TinyScheme, and better than Guile/Gauche if you value size over speed and stability. 02:04:28 jeapostrophe [~jay@206-71-214-11.adams.net] has joined #scheme 02:05:56 clog [~nef@bespin.org] has joined #scheme 02:07:10 jeapostrophe, your VALUES+ and CALL-WITH-VALUES+ has nonzero overhead for positional-only cases. 02:07:24 obviously 02:07:27 it's not built-in 02:08:06 Keyword application isn't built-in either, but it has zero overhead for the positional-only case. 02:08:32 values+ was an experiment that took about 30 minutes 02:08:42 if you are serious about wanting that... it's a good place to start 02:08:46 (Although 0.4 is pretty darned stable.) 02:09:05 you could make a simple syntax-parse case for the posn only case 02:09:13 because keywords can't appear as values 02:09:36 -!- pyrony [~epic@173.151.171.167] has quit [Ping timeout: 246 seconds] 02:16:11 bokr [~eduska@109.110.51.245] has joined #scheme 02:25:08 DrDuck [~duck@adsl-98-81-86-227.hsv.bellsouth.net] has joined #scheme 02:33:02 -!- elliottcable is now known as ec|detached 02:41:01 mippymoe89 [~mippymoe8@c-24-147-92-217.hsd1.vt.comcast.net] has joined #scheme 02:41:49 tupi [~david@189.60.161.65] has joined #scheme 02:54:45 rpg [~rpg@216.243.156.16.real-time.com] has joined #scheme 03:00:03 -!- MrFahrenheit [~RageOfTho@users-146-61.vinet.ba] has quit [Ping timeout: 255 seconds] 03:02:38 hba [~hba@189.130.166.233] has joined #scheme 03:02:51 pyrony [~epic@99-105-56-162.lightspeed.sntcca.sbcglobal.net] has joined #scheme 03:17:40 -!- tshauck [~tshauck@99-109-59-35.lightspeed.mssnks.sbcglobal.net] has quit [Quit: tshauck] 03:33:03 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has left #scheme 03:34:57 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Quit: Leaving] 03:35:36 -!- samth_ [~samth@c-24-128-51-63.hsd1.ma.comcast.net] has quit [Ping timeout: 255 seconds] 03:39:45 soveran [~soveran@186.19.214.247] has joined #scheme 03:39:53 aalix [~aalix@75.85.176.185] has joined #scheme 03:41:44 -!- DrDuck [~duck@adsl-98-81-86-227.hsv.bellsouth.net] has quit [Ping timeout: 252 seconds] 03:45:12 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 03:45:54 x/w 4 03:45:56 fail 03:48:14 -!- rpg [~rpg@216.243.156.16.real-time.com] has quit [Quit: rpg] 03:48:39 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 255 seconds] 03:50:17 eno [~eno@nslu2-linux/eno] has joined #scheme 03:56:05 p/q 9 03:56:09 did I win? Huh? 03:56:13 MORNINGTON CRESCENT!!! 03:57:46 -!- aidalgol [~user@114-134-7-23.rurallink.co.nz] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 04:02:21 Euthydemus` [~euthydemu@unaffiliated/euthydemus] has joined #scheme 04:05:01 -!- Euthydemus [~euthydemu@unaffiliated/euthydemus] has quit [Ping timeout: 260 seconds] 04:05:53 -!- jeapostrophe [~jay@206-71-214-11.adams.net] has quit [Quit: jeapostrophe] 04:08:28 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 04:10:08 *Jafet* deals offby1 a card for playing Mornington Crescent out of turn. 04:10:24 :-( 04:10:35 I thought any time was Mornington Crescent time. 04:21:41 Is that like a morning star? 04:22:03 don't think so. 04:22:11 more like a croissant. 04:32:48 gravicappa [~gravicapp@h178-129-93-100.dyn.bashtel.ru] has joined #scheme 04:33:04 vu3rdd [~vu3rdd@nat/cisco/x-zexpsbashdkfctoo] has joined #scheme 04:33:04 -!- vu3rdd [~vu3rdd@nat/cisco/x-zexpsbashdkfctoo] has quit [Changing host] 04:33:04 vu3rdd [~vu3rdd@fsf/member/vu3rdd] has joined #scheme 04:34:47 -!- bgs100 [~ian@unaffiliated/bgs100] has quit [Quit: cheshire cat scratch fever] 04:47:41 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 04:51:04 -!- evhan [~evhan@unaffiliated/evhan] has quit [Quit: leaving] 04:53:27 -!- mippymoe89 [~mippymoe8@c-24-147-92-217.hsd1.vt.comcast.net] has quit [Ping timeout: 255 seconds] 05:04:25 -!- dnolen [~davidnole@184.152.69.75] has quit [Quit: dnolen] 05:05:01 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 240 seconds] 05:05:16 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 05:07:34 -!- hba [~hba@189.130.166.233] has quit [Quit: leaving] 05:08:43 evhan [~evhan@unaffiliated/evhan] has joined #scheme 05:12:41 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Ping timeout: 240 seconds] 05:17:39 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 05:20:11 copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has joined #scheme 05:20:11 -!- copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has quit [Changing host] 05:20:11 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 05:20:38 -!- Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has quit [Ping timeout: 276 seconds] 05:26:23 -!- ckrailo [~ckrailo@pool-173-57-102-171.dllstx.fios.verizon.net] has quit [Quit: Leaving...] 05:38:02 -!- tupi [~david@189.60.161.65] has quit [Quit: Leaving] 06:08:41 -!- asumu [~at@2001:470:b:b7:21c:26ff:fe06:5b57] has quit [Ping timeout: 260 seconds] 06:09:03 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Quit: Leaving] 06:11:47 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 06:37:56 -!- gravicappa [~gravicapp@h178-129-93-100.dyn.bashtel.ru] has quit [Remote host closed the connection] 07:03:55 stis_i8 [~chatzilla@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 07:05:05 hkBst [~quassel@gentoo/developer/hkbst] has joined #scheme 07:06:30 slom [~sloma@port-87-234-239-162.static.qsc.de] has joined #scheme 07:08:55 saccade [~saccade@74-95-7-186-SFBA.hfc.comcastbusiness.net] has joined #scheme 07:20:14 -!- kennyd [~kennyd@93-138-203-49.adsl.net.t-com.hr] has quit [Ping timeout: 276 seconds] 07:21:22 kennyd [~kennyd@93-141-2-11.adsl.net.t-com.hr] has joined #scheme 07:21:57 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 255 seconds] 07:28:07 -!- stis_i8 [~chatzilla@1-1-1-39a.veo.vs.bostream.se] has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.17/20110420140830]] 07:35:18 stis [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 07:35:40 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 244 seconds] 07:35:58 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 07:45:49 -!- monqy [~chap@pool-71-102-217-117.snloca.dsl-w.verizon.net] has quit [Quit: hello] 07:51:41 -!- yell0 [yello@unaffiliated/contempt] has quit [Remote host closed the connection] 07:56:24 wingo [~wingo@90.164.198.39] has joined #scheme 07:57:43 yell0 [yello@unaffiliated/contempt] has joined #scheme 08:01:50 -!- wingo [~wingo@90.164.198.39] has quit [Ping timeout: 276 seconds] 08:14:21 wingo [~wingo@90.164.198.39] has joined #scheme 08:19:52 -!- duncanm [~duncan@a-chinaman.com] has quit [Remote host closed the connection] 08:19:57 duncanm [~duncan@a-chinaman.com] has joined #scheme 08:19:57 la la la 08:20:27 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 08:20:33 good morning duncanm! 08:50:11 hola wingo 08:54:19 heya 08:54:36 gravicappa [~gravicapp@h178-129-65-25.dyn.bashtel.ru] has joined #scheme 08:56:11 masm [~masm@bl15-71-105.dsl.telepac.pt] has joined #scheme 08:56:35 *foof* is bored waiting for very, very large batch jobs to finish 08:59:29 written in c or something? 08:59:46 C++ 09:01:26 here's some entertainment in the meantime: 09:01:29 https://mail.mozilla.org/pipermail/es-discuss/2011-June/015077.html 09:02:55 or https://mail.mozilla.org/pipermail/es-discuss/2011-June/015102.html 09:03:09 *foof* gets a strange sense of deja vu 09:04:01 -!- pyrony [~epic@99-105-56-162.lightspeed.sntcca.sbcglobal.net] has quit [Ping timeout: 240 seconds] 09:04:22 we live in a world of smoky mirrors 09:07:37 -!- Intensity [7laoh6XvKb@unaffiliated/intensity] has quit [Ping timeout: 246 seconds] 09:08:49 pyrony [~epic@99-105-56-162.lightspeed.sntcca.sbcglobal.net] has joined #scheme 09:16:46 Intensity [sIonLwBXuw@unaffiliated/intensity] has joined #scheme 09:20:35 and twisty passages, all alike 09:29:21 -!- antoszka [~antoszka@unaffiliated/antoszka] has quit [Ping timeout: 260 seconds] 09:34:50 drdo` [~drdo@91.205.108.93.rev.vodafone.pt] has joined #scheme 09:34:53 -!- drdo [~drdo@91.205.108.93.rev.vodafone.pt] has quit [Read error: Connection reset by peer] 09:42:20 antoszka [~antoszka@unaffiliated/antoszka] has joined #scheme 09:42:33 -!- drdo` is now known as drdo 09:43:50 -!- gravicappa [~gravicapp@h178-129-65-25.dyn.bashtel.ru] has quit [Remote host closed the connection] 09:46:58 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has left #scheme 09:47:52 -!- arbscht [~arbscht@60-234-133-173.bitstream.orcon.net.nz] has quit [Ping timeout: 250 seconds] 10:01:40 arbscht [~arbscht@60-234-133-173.bitstream.orcon.net.nz] has joined #scheme 10:07:57 -!- joast [~rick@76.178.178.72] has quit [Read error: Operation timed out] 10:11:39 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has quit [Ping timeout: 258 seconds] 10:13:18 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 10:30:24 -!- pjb [~t@81.202.16.46.dyn.user.ono.com] has quit [Remote host closed the connection] 10:39:28 -!- aidalgol [~user@114-134-7-23.rurallink.co.nz] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 10:42:34 ijp [~user@host109-153-23-149.range109-153.btcentralplus.com] has joined #scheme 11:06:51 -!- alaricsp [~alaric@relief.warhead.org.uk] has quit [Quit: Leaving] 11:23:08 -!- acarrico [~acarrico@pppoe-68-142-59-141.gmavt.net] has quit [Ping timeout: 276 seconds] 11:29:55 xwl [~user@123.108.223.27] has joined #scheme 11:31:20 jeapostrophe [~jay@206-71-214-11.adams.net] has joined #scheme 11:35:41 tupi [~david@189.60.161.65] has joined #scheme 11:50:00 acarrico [~acarrico@pppoe-68-142-59-141.gmavt.net] has joined #scheme 11:55:12 -!- aalix [~aalix@75.85.176.185] has quit [Quit: Computer has gone to sleep.] 12:02:41 alaricsp [~alaric@relief.warhead.org.uk] has joined #scheme 12:06:34 -!- ec|detached is now known as elliottcable 12:18:08 samth_ [~samth@c-24-128-51-63.hsd1.ma.comcast.net] has joined #scheme 12:22:34 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 250 seconds] 12:23:33 replore_ [~replore@ntkngw256114.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 12:27:55 -!- bokr [~eduska@109.110.51.245] has quit [Quit: Leaving.] 12:40:11 dnolen [~davidnole@184.152.69.75] has joined #scheme 12:46:46 Bahman [~bahman@2.144.254.199] has joined #scheme 12:47:04 Hi all! 12:50:55 -!- elliottcable is now known as ec|detached 12:53:00 yeah yeah 12:53:36 hello 12:55:41 wingo: wow, that Lego analogy was brilliant 12:56:03 maybe that's just because I, too, felt that disappointment at the super-specialized pieces. They felt like cheating. 12:57:21 "Java ... COBOL ... wearing a suit to work" :) 12:57:25 :) 13:18:18 copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has joined #scheme 13:18:18 -!- copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has quit [Changing host] 13:18:18 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 13:26:26 MrFahrenheit [~RageOfTho@62.101.146.61] has joined #scheme 13:26:55 -!- jeapostrophe [~jay@206-71-214-11.adams.net] has quit [Quit: jeapostrophe] 13:28:53 -!- vu3rdd [~vu3rdd@fsf/member/vu3rdd] has quit [Remote host closed the connection] 13:33:25 Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has joined #scheme 13:35:33 rpg [~rpg@216.243.156.16.real-time.com] has joined #scheme 13:36:28 -!- xwl [~user@123.108.223.27] has quit [Remote host closed the connection] 13:40:48 soveran [~soveran@200-42-23-2.dup.prima.net.ar] has joined #scheme 13:56:26 asumu [~at@2001:470:b:b7:21c:26ff:fe06:5b57] has joined #scheme 13:59:48 bgs100 [~ian@unaffiliated/bgs100] has joined #scheme 14:00:36 homie [~levent.gu@xdsl-78-35-161-245.netcologne.de] has joined #scheme 14:03:21 -!- samth_ [~samth@c-24-128-51-63.hsd1.ma.comcast.net] has quit [Ping timeout: 255 seconds] 14:06:50 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 260 seconds] 14:07:06 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 14:09:58 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 14:10:06 simon` [~user@118.134.12.210] has joined #scheme 14:11:49 -!- dnolen [~davidnole@184.152.69.75] has quit [Quit: dnolen] 14:13:26 -!- asumu [~at@2001:470:b:b7:21c:26ff:fe06:5b57] has quit [Ping timeout: 260 seconds] 14:17:09 -!- simon` [~user@118.134.12.210] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 14:17:55 simonwu [~user@118.134.12.210] has joined #scheme 14:19:43 aisa [~aisa@173-10-243-253-Albuquerque.hfc.comcastbusiness.net] has joined #scheme 14:20:36 tauntaun [~Crumpet@64.134.66.251] has joined #scheme 14:32:19 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 14:34:41 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 14:39:56 -!- simonwu [~user@118.134.12.210] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 14:44:38 -!- samth_away is now known as samth 14:47:57 -!- ijp [~user@host109-153-23-149.range109-153.btcentralplus.com] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 14:49:00 ijp [~user@host109-153-23-149.range109-153.btcentralplus.com] has joined #scheme 14:50:51 alaricsp: Two weeks to vote! 14:52:24 -!- aoh [~aki@85.23.168.123] has quit [Remote host closed the connection] 14:59:35 -!- hkBst [~quassel@gentoo/developer/hkbst] has quit [Remote host closed the connection] 15:04:01 *foof* really wants to get this over with so he can hack :( 15:05:04 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 250 seconds] 15:05:42 vote early, vote often. 15:07:04 bring the kids 15:21:32 -!- pyrony [~epic@99-105-56-162.lightspeed.sntcca.sbcglobal.net] has quit [Ping timeout: 250 seconds] 15:26:10 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 15:29:55 araujo [~araujo@gentoo/developer/araujo] has joined #scheme 15:31:52 kenjin2201 [~kenjin@218.235.8.175] has joined #scheme 15:34:31 JoelMcCracken [~user@pool-96-236-166-197.pitbpa.east.verizon.net] has joined #scheme 15:38:08 -!- JoelMcCracken [~user@pool-96-236-166-197.pitbpa.east.verizon.net] has quit [Remote host closed the connection] 15:50:59 asumu [~at@nomad.ccs.neu.edu] has joined #scheme 15:52:35 pyrony [~epic@184.232.96.18] has joined #scheme 15:52:38 monqy [~chap@pool-71-102-217-117.snloca.dsl-w.verizon.net] has joined #scheme 15:54:01 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 240 seconds] 15:54:18 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 15:56:31 pjb [~t@81.202.16.46.dyn.user.ono.com] has joined #scheme 15:56:45 -!- pjb [~t@81.202.16.46.dyn.user.ono.com] has quit [Remote host closed the connection] 15:57:11 pjb [~t@81.202.16.46.dyn.user.ono.com] has joined #scheme 15:57:27 ekrw [~user@178-191-234-167.adsl.highway.telekom.at] has joined #scheme 15:57:37 -!- pjb is now known as Guest41475 16:00:48 -!- soveran [~soveran@200-42-23-2.dup.prima.net.ar] has quit [Remote host closed the connection] 16:03:33 stis [~AndChat@host-90-235-119-183.mobileonline.telia.com] has joined #scheme 16:04:56 foof: I hear you. 16:06:09 ivartj_ [~ivartj@ti0031a380-0522.bb.online.no] has joined #scheme 16:07:30 -!- ivartj [~ivartj@ti0031a380-0522.bb.online.no] has quit [Ping timeout: 240 seconds] 16:14:10 -!- Guest41475 is now known as pjb` 16:14:46 -!- pjb` is now known as pjb 16:16:46 ckrailo [~ckrailo@208.86.167.249] has joined #scheme 16:19:21 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has left #scheme 16:22:17 pdlogan [~patrick@174-25-37-137.ptld.qwest.net] has joined #scheme 16:23:19 -!- saccade [~saccade@74-95-7-186-SFBA.hfc.comcastbusiness.net] has quit [Quit: This computer has gone to sleep] 16:24:17 -!- ivartj_ [~ivartj@ti0031a380-0522.bb.online.no] has quit [Ping timeout: 260 seconds] 16:25:27 -!- pyrony [~epic@184.232.96.18] has quit [Ping timeout: 260 seconds] 16:27:51 ivartj [~ivartj@ti0031a380-0522.bb.online.no] has joined #scheme 16:34:09 -!- gienah [~mwright@ppp121-44-237-46.lns20.syd7.internode.on.net] has quit [Quit: leaving] 16:35:34 -!- stis [~AndChat@host-90-235-119-183.mobileonline.telia.com] has quit [Quit: Bye] 16:36:21 ymasory [~ymasory@128.91.39.26] has joined #scheme 16:40:31 gravicappa [~gravicapp@h178-129-21-225.dyn.bashtel.ru] has joined #scheme 16:41:03 -!- homie [~levent.gu@xdsl-78-35-161-245.netcologne.de] has quit [Remote host closed the connection] 16:44:27 -!- replore_ [~replore@ntkngw256114.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Remote host closed the connection] 16:46:06 pyrony [~epic@office1.klout.com] has joined #scheme 16:46:14 -!- AtnNn [~welcome@modemcable020.240-177-173.mc.videotron.ca] has quit [Quit: foobar] 16:50:39 aalix [~aalix@75.85.176.185] has joined #scheme 16:57:41 -!- slom [~sloma@port-87-234-239-162.static.qsc.de] has quit [Remote host closed the connection] 17:02:26 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 276 seconds] 17:02:42 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 17:04:52 -!- githogori [~githogori@c-24-7-1-43.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 17:08:02 -!- tauntaun [~Crumpet@64.134.66.251] has quit [Quit: Ex-Chat] 17:10:58 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 252 seconds] 17:11:02 tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has joined #scheme 17:11:09 -!- tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has quit [Remote host closed the connection] 17:11:50 tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has joined #scheme 17:13:42 -!- tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has quit [Remote host closed the connection] 17:14:08 tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has joined #scheme 17:14:23 -!- tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has quit [Remote host closed the connection] 17:15:05 tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has joined #scheme 17:18:31 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 17:22:34 Eataix [~eataix@CPE-121-223-198-253.lns3.civ.bigpond.net.au] has joined #scheme 17:22:46 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 17:26:07 homie [~levent.gu@78.35.161.245] has joined #scheme 17:30:52 -!- Eataix [~eataix@CPE-121-223-198-253.lns3.civ.bigpond.net.au] has quit [Ping timeout: 252 seconds] 17:32:10 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 260 seconds] 17:33:45 -!- ymasory [~ymasory@128.91.39.26] has quit [Quit: Leaving] 17:40:44 -!- acarrico [~acarrico@pppoe-68-142-59-141.gmavt.net] has quit [Ping timeout: 240 seconds] 18:00:31 -!- gravicappa [~gravicapp@h178-129-21-225.dyn.bashtel.ru] has quit [Remote host closed the connection] 18:06:48 soveran [~soveran@200-42-23-2.dup.prima.net.ar] has joined #scheme 18:13:55 aoh [~aki@85.23.168.115] has joined #scheme 18:13:59 ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has joined #scheme 18:15:53 githogori [~githogori@216.207.36.222] has joined #scheme 18:28:37 kuribas [~user@94-227-91-170.access.telenet.be] has joined #scheme 18:33:01 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 18:37:24 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 250 seconds] 18:38:03 -!- Bahman [~bahman@2.144.254.199] has quit [Quit: Farewell] 18:39:18 -!- copumpkin is now known as pumpkin 18:40:14 -!- pumpkin is now known as c0pumpkin 18:48:48 acarrico [~acarrico@pppoe-68-142-34-181.gmavt.net] has joined #scheme 18:50:18 -!- soveran [~soveran@200-42-23-2.dup.prima.net.ar] has quit [Remote host closed the connection] 18:51:24 gravicappa [~gravicapp@h178-129-21-225.dyn.bashtel.ru] has joined #scheme 18:52:03 -!- ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has quit [Quit: Leaving] 18:54:27 stis [~stis@host-90-235-119-183.mobileonline.telia.com] has joined #scheme 18:58:44 -!- turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has quit [Ping timeout: 258 seconds] 19:17:18 ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has joined #scheme 19:18:22 soveran [~soveran@200-42-23-2.dup.prima.net.ar] has joined #scheme 19:24:24 -!- kenjin2201 [~kenjin@218.235.8.175] has quit [Remote host closed the connection] 19:24:55 -!- aalix [~aalix@75.85.176.185] has quit [Quit: Textual IRC Client: http://www.textualapp.com/] 19:25:33 -!- cbrannon [~cbrannon@gentoo/developer/cbrannon] has quit [Ping timeout: 255 seconds] 19:26:47 -!- wingo [~wingo@90.164.198.39] has quit [Remote host closed the connection] 19:29:58 -!- c0pumpkin is now known as copumpkin 19:36:46 -!- elly [~elly@atheme/member/elly] has quit [Ping timeout: 250 seconds] 19:41:53 wingo [~wingo@90.164.198.39] has joined #scheme 19:45:04 -!- ekrw [~user@178-191-234-167.adsl.highway.telekom.at] has quit [Remote host closed the connection] 19:47:21 -!- gravicappa [~gravicapp@h178-129-21-225.dyn.bashtel.ru] has quit [Remote host closed the connection] 19:48:41 -!- Nisstyre [~nisstyre@109.74.204.224] has quit [Ping timeout: 240 seconds] 19:50:13 -!- rdd [~rdd@c83-250-52-16.bredband.comhem.se] has quit [Remote host closed the connection] 19:53:32 -!- Hal9k [~Lernaean@unaffiliated/kusanagi] has quit [] 19:54:03 Hal9k [~Lernaean@unaffiliated/kusanagi] has joined #scheme 19:55:16 -!- yell0 [yello@unaffiliated/contempt] has quit [Ping timeout: 240 seconds] 19:59:30 -!- Hal9k [~Lernaean@unaffiliated/kusanagi] has quit [] 20:00:52 yell0 [yello@unaffiliated/contempt] has joined #scheme 20:06:02 bipt [~bpt@cpe-173-095-173-064.nc.res.rr.com] has joined #scheme 20:07:26 Hal9k [~Lernaean@unaffiliated/kusanagi] has joined #scheme 20:07:28 -!- ec|detached is now known as elliottcable 20:16:08 -!- homie [~levent.gu@78.35.161.245] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 20:20:44 -!- bzzbzz [~franco@modemcable240.34-83-70.mc.videotron.ca] has quit [Quit: leaving] 20:23:04 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 258 seconds] 20:24:28 copumpkin [~pumpkin@17.45.135.69] has joined #scheme 20:24:36 -!- copumpkin [~pumpkin@17.45.135.69] has quit [Changing host] 20:24:36 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 20:26:40 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 20:34:52 bzzbzz [~franco@modemcable240.34-83-70.mc.videotron.ca] has joined #scheme 20:52:29 elly [~elly@atheme/member/elly] has joined #scheme 20:58:45 -!- soveran [~soveran@200-42-23-2.dup.prima.net.ar] has quit [Remote host closed the connection] 21:07:33 -!- elliottcable is now known as ec|detached 21:07:38 -!- ec|detached is now known as elliottcable 21:11:03 -!- pdlogan [~patrick@174-25-37-137.ptld.qwest.net] has quit [Quit: Leaving.] 21:20:15 -!- pygospa [~TheRealPy@kiel-5f77b05c.pool.mediaWays.net] has quit [Ping timeout: 260 seconds] 21:22:21 pygospa [~TheRealPy@kiel-4dbed992.pool.mediaWays.net] has joined #scheme 21:24:30 choas [~lars@p5792CD78.dip.t-dialin.net] has joined #scheme 21:27:04 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 21:31:16 -!- stis [~stis@host-90-235-119-183.mobileonline.telia.com] has quit [Remote host closed the connection] 21:34:27 -!- wingo [~wingo@90.164.198.39] has quit [Ping timeout: 240 seconds] 21:37:28 mejja [~user@c-0eb9e555.023-82-73746f38.cust.bredbandsbolaget.se] has joined #scheme 21:39:48 whats new? 21:40:25 pothos_ [~pothos@111-240-169-200.dynamic.hinet.net] has joined #scheme 21:41:48 -!- pothos [~pothos@111-240-174-224.dynamic.hinet.net] has quit [Read error: Operation timed out] 21:41:57 -!- pothos_ is now known as pothos 21:44:40 -!- aisa [~aisa@173-10-243-253-Albuquerque.hfc.comcastbusiness.net] has quit [Quit: aisa] 21:45:44 -!- mejja [~user@c-0eb9e555.023-82-73746f38.cust.bredbandsbolaget.se] has quit [Quit: ChatZilla 0.9.87 [Firefox 4.0.1/20110413222027]] 21:51:56 -!- choas [~lars@p5792CD78.dip.t-dialin.net] has quit [Quit: leaving] 21:56:56 theratking862 [~theratkin@pool-173-48-130-251.bstnma.fios.verizon.net] has joined #scheme 21:57:45 hey guys, do you have a good resource for finding/reading good scheme or lisp code? 21:58:35 theratking862: http://github.com/languages/Racket and http://github.com/languages/scheme 21:58:50 thanks 22:01:30 -!- asumu [~at@nomad.ccs.neu.edu] has quit [Ping timeout: 250 seconds] 22:03:43 -!- ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has quit [Quit: Leaving] 22:03:52 ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has joined #scheme 22:04:26 -!- ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 22:12:39 aisa [~aisa@209.234.140.58] has joined #scheme 22:12:54 -!- aisa [~aisa@209.234.140.58] has quit [Client Quit] 22:15:24 theratking862: cl code are referenced on http://cliki.net ; scheme code at http://schemers.org/ 22:18:49 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Ping timeout: 240 seconds] 22:19:28 jeffiPhone [~jeffiphon@52.sub-174-252-125.myvzw.com] has joined #scheme 22:24:11 -!- jeffiPhone [~jeffiphon@52.sub-174-252-125.myvzw.com] has left #scheme 22:28:48 -!- zenspider [~user@envy.zenspider.com] has left #scheme 22:35:57 fantazo [~fantazo@91-115-170-235.adsl.highway.telekom.at] has joined #scheme 22:44:37 turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has joined #scheme 22:48:23 -!- fantazo [~fantazo@91-115-170-235.adsl.highway.telekom.at] has quit [Ping timeout: 240 seconds] 22:53:45 tauntaun [~Crumpet@64.134.66.251] has joined #scheme 22:57:30 -!- theratking862 [~theratkin@pool-173-48-130-251.bstnma.fios.verizon.net] has quit [Ping timeout: 255 seconds] 23:03:21 fantazo [~fantazo@91-115-170-235.adsl.highway.telekom.at] has joined #scheme 23:21:29 -!- elliottcable is now known as ec|detached 23:21:38 -!- samth [~samth@punge.ccs.neu.edu] has quit [Read error: Connection reset by peer] 23:23:37 samth [~samth@punge.ccs.neu.edu] has joined #scheme 23:24:17 dnolen [~davidnole@71.249.144.64] has joined #scheme 23:24:59 -!- kuribas [~user@94-227-91-170.access.telenet.be] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 23:28:31 asumu [~at@2001:470:b:b7:21c:26ff:fe06:5b57] has joined #scheme 23:43:46 pnkfelix [~Adium@c-68-82-87-23.hsd1.pa.comcast.net] has joined #scheme 23:44:53 -!- pnkfelix [~Adium@c-68-82-87-23.hsd1.pa.comcast.net] has quit [Client Quit] 23:45:11 pnkfelix [~Adium@c-68-82-87-23.hsd1.pa.comcast.net] has joined #scheme 23:45:41 Nisstyre [~nisstyre@109.74.204.224] has joined #scheme 23:46:43 -!- masm [~masm@bl15-71-105.dsl.telepac.pt] has quit [Quit: Leaving.] 23:50:32 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 23:51:13 -!- ec|detached is now known as elliottcable 23:53:20 -!- samth is now known as samth_away 23:57:01 -!- OneBraveHog [~nana@pool-71-182-166-67.pitbpa.east.verizon.net] has quit []