00:02:44 -!- sstrickl [~sstrickl@dublin.ccs.neu.edu] has quit [Quit: sstrickl] 00:16:32 -!- samth is now known as samth_away 00:18:39 Kirill [~user@76-10-154-226.dsl.teksavvy.com] has joined #scheme 00:18:55 hi all, does anyone know where I can ask questions about gambit-c, or is this the right place? 00:20:03 -!- kmc [~keegan@18.111.9.184] has quit [Quit: Leaving] 00:24:48 -!- Kirill [~user@76-10-154-226.dsl.teksavvy.com] has left #scheme 00:24:57 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 00:38:24 -!- tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 00:43:24 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 00:44:12 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 00:49:29 -!- choas [~lars@p5795C334.dip.t-dialin.net] has quit [Ping timeout: 255 seconds] 00:49:37 mikecsh [~mikecsh@n219073040035.netvigator.com] has joined #scheme 00:53:34 -!- mikecsh [~mikecsh@n219073040035.netvigator.com] has quit [Client Quit] 00:56:49 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 245 seconds] 00:58:11 this is probably good 00:58:16 for some value of "good" :) 00:58:18 *offby1* watches the tumbleweeds skitter down Main St 01:02:20 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 01:02:34 *qu1j0t3* watches the clouds scud by 01:08:17 -!- jeapostrophe [~jay@146.86.241.81] has quit [Ping timeout: 252 seconds] 01:08:49 jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has joined #scheme 01:10:43 dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 01:24:06 albert [~albert@adsl-71-156-44-252.dsl.irvnca.sbcglobal.net] has joined #scheme 01:24:32 -!- albert is now known as Guest98202 01:28:24 -!- Guest98202 [~albert@adsl-71-156-44-252.dsl.irvnca.sbcglobal.net] has quit [Ping timeout: 240 seconds] 01:51:33 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 02:03:48 -!- GoKhlaYeh [~GoKhlaYeh@33.31.80.79.rev.sfr.net] has quit [Ping timeout: 244 seconds] 02:34:57 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 02:37:10 -!- chemuduguntar [~ravi@118-93-83-237.dsl.dyn.ihug.co.nz] has quit [Ping timeout: 276 seconds] 02:38:05 soveran [~soveran@186.19.214.247] has joined #scheme 02:49:14 schemenewb [63e70dd8@gateway/web/freenode/ip.99.231.13.216] has joined #scheme 02:49:40 Hi, is there a short form to print a character x times? (Python: 3 * " ") 02:51:09 confab [~confab@c-71-193-9-153.hsd1.ca.comcast.net] has joined #scheme 02:51:33 schemenewb: Nothing built-in that I know, but it's easy to make one. 02:51:54 cky: ok,thank you 02:53:11 Is there a easy way to access the size of the call stack (i.e. current depth of recursion)? 02:53:49 No. 02:54:02 But you can implement your own counter, if you're doing your own recursion. 02:54:20 cky: thank you again 02:54:24 :-) 02:54:59 rudybot: eval (make-string 3 #\space) 02:55:01 ijp: your sandbox is ready 02:55:01 ijp: ; Value: " " 02:55:13 ijp: That's for a single char. 02:55:16 it's not directly equivalent 02:55:17 ijp: Not for strings. 02:55:31 well, he asked for characters 02:55:46 rudybot: (string-concatenate (make-list 5 "foo")) 02:55:46 cky: error: reference to an identifier before its definition: string-concatenate in module: 'program 02:55:51 rudybot: (require srfi/13) 02:55:51 cky: Done. 02:55:53 rudybot: (string-concatenate (make-list 5 "foo")) 02:55:53 cky: ; Value: "foofoofoofoofoo" 02:56:09 I wonder if there's a better way to do that. 02:57:11 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 252 seconds] 02:59:34 rudybot: (string-concatenate (make-list 10 "\t")) 02:59:35 schemenewb: your sandbox is ready 02:59:35 schemenewb: error: reference to an identifier before its definition: string-concatenate in module: 'program 03:01:14 schemenewb: you'll need to (require srfi/13) for string-concatenate 03:01:34 ijp: what does srfi standfor? 03:01:43 but, for single characters, make-string is sufficient (make-string 10 #\tab) 03:01:54 Scheme Requests For Implementation 03:02:03 http://srfi.schemers.org/ 03:02:18 ijp: haha, ok. then i'll stick with make-string.thank you 03:07:44 -!- copumpkin [~copumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 03:09:25 ijp: I'm too spoilt by Guile, where SRFI 13 is included by default. :-P 03:09:31 -!- masm [~masm@bl19-154-1.dsl.telepac.pt] has quit [Quit: Leaving.] 03:09:53 ijp: Speaking of 13: http://stackoverflow.com/users/13 ;-) 03:15:05 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 03:15:51 -!- dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has quit [Ping timeout: 252 seconds] 03:16:05 -!- turbofail [~user@99-121-57-65.lightspeed.sntcca.sbcglobal.net] has quit [Ping timeout: 252 seconds] 03:16:54 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 03:21:08 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 03:23:05 -!- schemenewb [63e70dd8@gateway/web/freenode/ip.99.231.13.216] has quit [Ping timeout: 258 seconds] 03:26:57 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Read error: Operation timed out] 03:28:58 -!- jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has quit [Quit: This computer has gone to sleep] 03:29:52 -!- kk` [~kk@unaffiliated/kk/x-5380134] has quit [Remote host closed the connection] 03:31:40 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 03:58:45 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 04:03:04 -!- MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has quit [Ping timeout: 245 seconds] 04:23:21 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 04:25:34 albert [~albert@96-40-130-142.dhcp.mtpk.ca.charter.com] has joined #scheme 04:26:30 -!- albert is now known as Guest18297 04:28:38 -!- Guest18297 [~albert@96-40-130-142.dhcp.mtpk.ca.charter.com] has quit [Remote host closed the connection] 04:40:47 -!- rasactive [~onewland@c-24-4-206-59.hsd1.ca.comcast.net] has quit [Quit: Leaving] 04:48:53 albert-sicp [~albert-si@96-40-130-142.dhcp.mtpk.ca.charter.com] has joined #scheme 04:48:54 -!- albert-sicp [~albert-si@96-40-130-142.dhcp.mtpk.ca.charter.com] has quit [Remote host closed the connection] 04:49:06 albert-sicp [~albert-si@96-40-130-142.dhcp.mtpk.ca.charter.com] has joined #scheme 04:50:14 My sicp mentor could'nt meet up tonight, bummed out as I begin problem 2.40. 04:52:42 adu [~ajr@pool-173-66-11-4.washdc.fios.verizon.net] has joined #scheme 04:53:37 copumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 04:55:32 -!- CampinSam [~CampinSam@24-176-98-217.dhcp.jcsn.tn.charter.com] has quit [Quit: leaving] 05:03:46 gimme a link to it 05:03:55 if it's one of the few I've done, I might be able to help 05:04:37 hey 05:04:45 I just wrote my first scheme lib! 05:06:23 \o/ 05:06:26 PATENT IT 05:07:10 http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-15.html#%_thm_2.40 05:07:25 albert-sicp: I've done that one but I cheated :) 05:07:45 -!- stchang [~stchang@syrah.ccs.neu.edu] has quit [Read error: Operation timed out] 05:08:24 offby1: :-O 05:09:05 http://wizardbook.wordpress.com/2010/12/03/exercise-2-40/ 05:11:02 I see what to do because the answer is in the text, but when I put the book away, its hard to code from scratch. 05:11:47 I now understand that the purpose of flat map is to make a list out of a list of lists. 05:12:02 stchang [~stchang@syrah.ccs.neu.edu] has joined #scheme 05:12:28 (When the proc and sequence that is passed to it generates a list of lists.) 05:13:37 Ooh, an upper-triangular matrix generator! 05:13:43 (Assuming row-major order.) 05:15:03 cky: what is the matrix generator? 05:16:01 sicp rocks 05:16:08 sicp is hard, let's go to sleep 05:16:28 sleep! it's nearly sunup! 05:16:40 cky: everyone knows column-major is cool 05:16:46 http://ix.io/26g is vaguely close 05:16:52 need more sleep :( I feel asleep on the couch last night 05:16:55 with sufficient hacking, twiddling, and prodding, it'll do 05:17:14 I need more sleep too, but my body clock is way out of whack due to illness 05:17:29 albert-sicp: 1. Look at exercise 2.40 again. 2. Read up on upper-triangular and lower-triangular matrices. 05:17:36 adu: :-O 05:26:32 :) 05:39:02 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 05:43:12 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 05:52:09 realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has joined #scheme 05:55:59 gravicappa [~gravicapp@ppp91-77-191-2.pppoe.mtu-net.ru] has joined #scheme 05:56:50 cky: I can see how the idea presented in 2.40 and associated text can be used to generate a upper/lower triangular matrix now. 05:57:09 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 260 seconds] 05:58:15 pjb- [~t@81.202.16.46.dyn.user.ono.com] has joined #scheme 06:00:52 albert-sicp: :-D 06:02:04 Hey, what would you say are the top 3 concepts to grasp in SICP up to problem 2.40? 06:02:39 -!- pjb- [~t@81.202.16.46.dyn.user.ono.com] has quit [Ping timeout: 245 seconds] 06:02:48 *offby1* stares blankly 06:03:14 *jonrafkind* sorts some coins 06:13:43 -!- bytbox [~s@96.26.105.154] has quit [Quit: Lost terminal] 06:19:29 hba [~hba@189.130.157.210] has joined #scheme 06:30:18 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #scheme 06:41:23 -!- albert-sicp [~albert-si@96-40-130-142.dhcp.mtpk.ca.charter.com] has quit [Remote host closed the connection] 06:43:37 bytbox [~s@96.26.105.154] has joined #scheme 07:01:44 -!- jao [~user@pdpc/supporter/professional/jao] has quit [Ping timeout: 240 seconds] 07:10:28 albert-sicp [~albert-si@71.156.44.252] has joined #scheme 07:11:24 -!- gravicappa [~gravicapp@ppp91-77-191-2.pppoe.mtu-net.ru] has quit [Ping timeout: 240 seconds] 07:15:45 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 07:19:03 gravicappa [~gravicapp@ppp91-77-177-105.pppoe.mtu-net.ru] has joined #scheme 07:19:20 -!- gravicappa [~gravicapp@ppp91-77-177-105.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 07:21:32 -!- realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has quit [Quit: realitygrill] 07:22:05 gravicappa [~gravicapp@ppp91-77-177-105.pppoe.mtu-net.ru] has joined #scheme 07:38:07 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 276 seconds] 07:41:53 -!- albert-sicp [~albert-si@71.156.44.252] has quit [Remote host closed the connection] 07:42:59 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 08:19:43 -!- adu [~ajr@pool-173-66-11-4.washdc.fios.verizon.net] has quit [Quit: adu] 08:27:06 -!- drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has quit [Quit: bbl] 08:34:58 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 08:35:38 -!- bfgun [~b_fin_g@r186-48-211-71.dialup.adsl.anteldata.net.uy] has quit [Ping timeout: 240 seconds] 08:48:41 bfgun [~b_fin_g@r186-48-202-107.dialup.adsl.anteldata.net.uy] has joined #scheme 08:51:01 -!- hba [~hba@189.130.157.210] has quit [Quit: leaving] 09:04:50 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Read error: Operation timed out] 09:06:28 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 09:09:33 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 09:09:39 hkuieagle [~hkuieagle@unaffiliated/hkuieagle] has joined #scheme 09:09:50 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 09:10:10 -!- LeoNerd [~leo@cel.leonerd.org.uk] has quit [Remote host closed the connection] 09:14:51 -!- hkuieagle [~hkuieagle@unaffiliated/hkuieagle] has left #scheme 09:23:14 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Quit: Leaving.] 09:28:53 kmc [~keegan@c-98-216-51-47.hsd1.ma.comcast.net] has joined #scheme 09:35:58 karswell_ [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 09:36:04 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 240 seconds] 10:00:33 GoKhlaYeh [~GoKhlaYeh@33.31.80.79.rev.sfr.net] has joined #scheme 10:04:37 -!- karswell_ [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Read error: Operation timed out] 10:05:30 karswell_ [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 10:19:41 rostayob [~rostayob@host86-138-102-205.range86-138.btcentralplus.com] has joined #scheme 10:24:44 -!- tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 10:35:12 leo2007 [~leo@124.72.163.37] has joined #scheme 10:37:41 -!- nowhere_man [~pierre@AStrasbourg-551-1-73-37.w81-51.abo.wanadoo.fr] has quit [Ping timeout: 248 seconds] 10:41:25 -!- bytbox [~s@96.26.105.154] has quit [Quit: Lost terminal] 10:50:24 choas [~lars@p5795C14D.dip.t-dialin.net] has joined #scheme 11:10:46 kvda [~kvda@124-169-134-221.dyn.iinet.net.au] has joined #scheme 11:14:11 pchrist_ [~spirit@gentoo/developer/pchrist] has joined #scheme 11:16:49 -!- pchrist [~spirit@gentoo/developer/pchrist] has quit [Ping timeout: 260 seconds] 11:17:34 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 11:23:41 add^_ [~add^_^@m212-152-3-121.cust.tele2.se] has joined #scheme 11:30:08 nowhere_man [~pierre@AStrasbourg-551-1-6-171.w92-141.abo.wanadoo.fr] has joined #scheme 11:30:31 -!- PfhorSlayer [~PfhatWork@sceapdsd43-15.989studios.com] has quit [] 11:35:38 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 240 seconds] 11:48:57 bokr [~edka@109.110.57.96] has joined #scheme 11:57:58 homie`` [~levgue@xdsl-87-79-248-14.netcologne.de] has joined #scheme 11:59:24 -!- homie` [~levgue@xdsl-78-35-170-230.netcologne.de] has quit [Ping timeout: 240 seconds] 12:13:44 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has quit [Read error: Connection reset by peer] 12:14:49 -!- bokr [~edka@109.110.57.96] has quit [Quit: Leaving.] 12:15:33 masm [~masm@2.80.154.1] has joined #scheme 12:23:14 bubo [~bubo@91-114-178-53.adsl.highway.telekom.at] has joined #scheme 12:41:34 Blkt [~user@82.84.176.4] has joined #scheme 12:43:21 good afternoon everyone 12:45:39 -!- rostayob [~rostayob@host86-138-102-205.range86-138.btcentralplus.com] has quit [Quit: WeeChat 0.3.5] 12:49:47 rostayob [~rostayob@host86-138-102-205.range86-138.btcentralplus.com] has joined #scheme 12:56:17 wingo [~wingo@90.164.198.39] has joined #scheme 12:56:50 kk` [~kk@unaffiliated/kk/x-5380134] has joined #scheme 13:13:58 -!- bubo [~bubo@91-114-178-53.adsl.highway.telekom.at] has left #scheme 13:28:49 -!- drdo [~drdo@ling0.drdo.eu] has quit [Quit: (save-lisp-and-die)] 13:32:26 -!- karswell_ [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [] 13:36:17 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 255 seconds] 13:38:16 snizzo [~quassel@host61-237-dynamic.50-79-r.retail.telecomitalia.it] has joined #scheme 13:40:23 -!- kvda [~kvda@124-169-134-221.dyn.iinet.net.au] has quit [Quit: x___x] 13:40:28 6.001 is dead, long live to 6.S184! http://web.mit.edu/alexmv/6.S184/ 13:40:46 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 13:43:29 soveran [~soveran@186.19.214.247] has joined #scheme 13:44:07 'an empty string doesn't actually have any locations' <-- not sure I agree with that 13:44:18 wingo: thoughts? 13:45:19 leppie: thinking about it a little bit, i agree actually 13:45:27 an empty string on the other hand does have one location 13:45:29 for the length 13:45:50 -!- choas [~lars@p5795C14D.dip.t-dialin.net] has quit [Ping timeout: 252 seconds] 13:46:04 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 13:49:43 and the type (depending on the implementation detail) 13:50:05 wingo: who says strings have to store the length somewhere? 13:51:09 foof: dunno :) 13:51:17 i would assume there would be some algorithmic guarantee here 13:51:31 anyway, it's a total bikeshed, don't take it seriously :) 13:53:01 karswell_ [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 13:53:44 -!- ijp [~user@host31-53-120-37.range31-53.btcentralplus.com] has quit [Ping timeout: 240 seconds] 13:55:46 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 276 seconds] 13:56:15 MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has joined #scheme 13:59:03 djcb [~user@a88-114-95-13.elisa-laajakaista.fi] has joined #scheme 14:04:05 LeoNerd [~leo@cel.leonerd.org.uk] has joined #scheme 14:06:30 LeoNerd: hi, wrt your last question, in srfi 1 there is and-map and or-map IIRC (they may have different names) 14:06:48 Ah OK 14:07:06 Sounds roughly like List::Utils::all() / List::Utils::any() 14:07:12 exactly 14:07:27 R6RS also have different names for them! 14:07:51 http://www.r6rs.org/final/html/r6rs-lib/r6rs-lib-Z-H-4.html#node_chap_3 14:08:11 Oh I'm sticking with R5 for now. it seems sufficient to get some useful things done 14:08:26 Mostly 'cause I don't like the look of R6's (a b c ... d e) macros 14:13:27 ijp [~user@host109-158-226-141.range109-158.btcentralplus.com] has joined #scheme 14:13:37 snizzo_ [~quassel@host228-12-dynamic.50-79-r.retail.telecomitalia.it] has joined #scheme 14:15:13 -!- snizzo [~quassel@host61-237-dynamic.50-79-r.retail.telecomitalia.it] has quit [Ping timeout: 252 seconds] 14:32:47 I wrote a DSL for pattern matching: http://pastie.org/3225024 14:32:55 I wonder how wrong am I doing it 14:35:38 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 240 seconds] 14:45:23 dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 14:51:06 Chat1842 [~Chat1842@app6.chatmosphere.org] has joined #scheme 14:51:08 -!- Chat1842 [~Chat1842@app6.chatmosphere.org] has quit [Client Quit] 14:51:09 karswell__ [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 14:53:16 -!- karswell_ [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 240 seconds] 14:54:44 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 14:58:54 -!- copumpkin [~copumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 14:59:59 -!- ski [~slj@c80-216-142-165.bredband.comhem.se] has quit [Ping timeout: 255 seconds] 15:02:17 woonie [~woonie@175.156.227.84] has joined #scheme 15:04:09 jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has joined #scheme 15:13:33 ski [~slj@c80-216-142-165.bredband.comhem.se] has joined #scheme 15:13:40 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 15:17:37 pierreghz [~pierreghz@cust-160-62-111-94.dyn.as47377.net] has joined #scheme 15:23:01 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 15:26:18 -!- pygospa [~Pygosceli@kiel-4dbeda32.pool.mediaWays.net] has quit [Disconnected by services] 15:26:30 pygospa [~Pygosceli@kiel-5f77bf92.pool.mediaWays.net] has joined #scheme 15:38:53 icrazyhack [horieyui@222.47.125.36] has joined #scheme 15:41:51 bytbox [~s@96.26.105.154] has joined #scheme 15:43:25 copumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 15:43:58 -!- mmc [~michal@sams-office-nat.tomtomgroup.com] has quit [Ping timeout: 260 seconds] 15:47:53 -!- eMBee [~eMBee@foresight/developer/pike/programmer] has quit [Remote host closed the connection] 15:48:07 eMBee [~eMBee@foresight/developer/pike/programmer] has joined #scheme 15:49:39 mmc [~michal@sams-office-nat.tomtomgroup.com] has joined #scheme 15:50:03 -!- icrazyhack [horieyui@222.47.125.36] has quit [Quit: http://www.cnblogs.com/crazyhack] 15:54:01 -!- cow-orker [~foobar@pogostick.net] has quit [Remote host closed the connection] 16:03:41 pjb- [~t@81.202.16.46.dyn.user.ono.com] has joined #scheme 16:05:24 langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has joined #scheme 16:08:29 realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has joined #scheme 16:11:05 -!- ski [~slj@c80-216-142-165.bredband.comhem.se] has quit [Ping timeout: 255 seconds] 16:13:14 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 16:19:45 -!- langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has quit [Read error: Operation timed out] 16:37:03 -!- LeoNerd [~leo@cel.leonerd.org.uk] has quit [Remote host closed the connection] 16:39:13 langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has joined #scheme 16:44:10 stis [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 16:44:43 -!- wingo [~wingo@90.164.198.39] has quit [Ping timeout: 244 seconds] 16:57:46 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 17:04:15 -!- mmc [~michal@sams-office-nat.tomtomgroup.com] has quit [Ping timeout: 252 seconds] 17:07:35 choas [~lars@p5795C14D.dip.t-dialin.net] has joined #scheme 17:29:21 NihilistDandy [~NihilistD@stu-147-155-171-184.champlain.edu] has joined #scheme 17:30:58 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 17:33:30 woonie2 [~woonie@175.156.227.84] has joined #scheme 17:35:21 -!- homie`` [~levgue@xdsl-87-79-248-14.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 17:36:27 -!- woonie [~woonie@175.156.227.84] has quit [Ping timeout: 252 seconds] 17:39:45 what the heck are "interface" and "traits"? 17:41:22 -!- langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has quit [Remote host closed the connection] 17:41:31 I have definitions, but not in the context of scheme. 17:42:57 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 17:44:43 wbooze [~wbooze@xdsl-87-79-248-14.netcologne.de] has joined #scheme 17:48:16 -!- woonie2 [~woonie@175.156.227.84] has quit [Quit: Nettalk6 - www.ntalk.de] 17:48:27 pdponze [~pierre@144.85.122.52] has joined #scheme 17:48:35 woonie [~woonie@175.156.227.84] has joined #scheme 17:54:45 I have vague ideas, but not in the context of plain ol' RnRS scheme. 17:55:17 The only language I can think of offhand that uses the word "trait" is Perl 6, and as far as I know nobody actually uses that 17:56:34 lol 18:00:07 a shame, really; it's a fascinating language. 18:00:37 djcb` [~user@a88-114-95-13.elisa-laajakaista.fi] has joined #scheme 18:01:29 diversity is a great thing. 18:02:11 -!- djcb [~user@a88-114-95-13.elisa-laajakaista.fi] has quit [Ping timeout: 252 seconds] 18:02:22 perl6 has a similar branding problem to lisp family languages. aka "hysterical baggage" (people have ignorantly hysterical objections ;) 18:06:29 -!- rostayob [~rostayob@host86-138-102-205.range86-138.btcentralplus.com] has quit [Quit: WeeChat 0.3.5] 18:07:00 rostayob [~rostayob@host86-138-102-205.range86-138.btcentralplus.com] has joined #scheme 18:08:17 my only objection is: it's not ready yet 18:08:33 offby1: christmas is a long way off :/ 18:08:58 the right answer, of course, is for me to contribute to it 18:09:15 -!- leo2007 [~leo@124.72.163.37] has quit [Ping timeout: 240 seconds] 18:09:38 -!- snizzo_ [~quassel@host228-12-dynamic.50-79-r.retail.telecomitalia.it] has quit [Remote host closed the connection] 18:14:16 jewel [~jewel@196-215-117-46.dynamic.isadsl.co.za] has joined #scheme 18:15:24 -!- tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 18:17:12 -!- choas [~lars@p5795C14D.dip.t-dialin.net] has quit [Ping timeout: 244 seconds] 18:20:58 -!- realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 18:21:22 realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has joined #scheme 18:24:40 -!- copumpkin [~copumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 18:24:58 -!- realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 18:25:05 realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has joined #scheme 18:31:40 offby1: in CL, there are character traits. Those are properties of characters used in the lisp reader. 18:31:45 copumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 18:33:03 ThePawnBreak [~quassel@94.177.108.25] has joined #scheme 18:42:04 -!- realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 18:42:20 realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has joined #scheme 18:43:02 -!- pchrist_ [~spirit@gentoo/developer/pchrist] has quit [Ping timeout: 244 seconds] 18:45:27 pchrist [~spirit@gentoo/developer/pchrist] has joined #scheme 18:48:38 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 18:53:57 -!- realitygrill [~realitygr@adsl-76-232-148-219.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 18:54:23 realitygrill [~realitygr@76.232.148.219] has joined #scheme 18:59:41 -!- rostayob [~rostayob@host86-138-102-205.range86-138.btcentralplus.com] has quit [Quit: WeeChat 0.3.5] 19:02:10 -!- realitygrill [~realitygr@76.232.148.219] has quit [Read error: Connection reset by peer] 19:02:27 realitygrill [~realitygr@76.232.148.219] has joined #scheme 19:07:02 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 255 seconds] 19:18:14 -!- tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Remote host closed the connection] 19:20:13 -!- fgudin [~fgudin@odin.sdf-eu.org] has quit [Ping timeout: 252 seconds] 19:23:04 -!- MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has quit [Ping timeout: 245 seconds] 19:24:21 homie [~levgue@xdsl-87-79-248-14.netcologne.de] has joined #scheme 19:28:15 -!- realitygrill [~realitygr@76.232.148.219] has quit [Read error: Connection reset by peer] 19:28:34 realitygrill [~realitygr@76.232.148.219] has joined #scheme 19:35:24 -!- pjb- [~t@81.202.16.46.dyn.user.ono.com] has quit [Ping timeout: 240 seconds] 19:36:30 -!- Blkt [~user@82.84.176.4] has quit [Remote host closed the connection] 19:41:34 choas [~lars@p5795C14D.dip.t-dialin.net] has joined #scheme 19:50:42 CampinSam [~CampinSam@24-176-98-217.dhcp.jcsn.tn.charter.com] has joined #scheme 19:58:34 metasyntax [~taylor@c-98-214-251-184.hsd1.in.comcast.net] has joined #scheme 20:09:38 -!- NihilistDandy [~NihilistD@stu-147-155-171-184.champlain.edu] has quit [Ping timeout: 272 seconds] 20:11:17 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 20:13:04 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has quit [Ping timeout: 240 seconds] 20:13:20 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 20:13:49 -!- realitygrill [~realitygr@76.232.148.219] has quit [Read error: Connection reset by peer] 20:14:05 realitygrill [~realitygr@76.232.148.219] has joined #scheme 20:15:14 -!- realitygrill [~realitygr@76.232.148.219] has quit [Read error: Connection reset by peer] 20:15:34 realitygrill [~realitygr@76.232.148.219] has joined #scheme 20:17:42 -!- woonie [~woonie@175.156.227.84] has quit [Quit: Nettalk6 - www.ntalk.de] 20:22:01 ski__ [~md9slj@remote1.student.chalmers.se] has joined #scheme 20:34:44 -!- bfgun [~b_fin_g@r186-48-202-107.dialup.adsl.anteldata.net.uy] has quit [Ping timeout: 245 seconds] 20:35:46 jeapostrophe [~jay@12.145.100.98] has joined #scheme 20:41:38 -!- wbooze [~wbooze@xdsl-87-79-248-14.netcologne.de] has quit [Ping timeout: 252 seconds] 20:41:57 -!- homie [~levgue@xdsl-87-79-248-14.netcologne.de] has quit [Ping timeout: 248 seconds] 20:43:13 -!- jeapostrophe [~jay@12.145.100.98] has quit [Ping timeout: 260 seconds] 20:47:11 -!- dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has quit [Ping timeout: 252 seconds] 20:49:21 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 20:49:45 homie [~levgue@xdsl-87-79-248-14.netcologne.de] has joined #scheme 20:50:53 -!- mario-goulart [~user@67.205.85.241] has quit [Read error: Connection reset by peer] 20:51:03 jeapostrophe [~jay@72-254-78-62.client.stsn.net] has joined #scheme 20:51:12 mario-goulart [~user@67.205.85.241] has joined #scheme 20:51:33 -!- homie [~levgue@xdsl-87-79-248-14.netcologne.de] has quit [Read error: Connection reset by peer] 20:59:44 -!- jewel [~jewel@196-215-117-46.dynamic.isadsl.co.za] has quit [Ping timeout: 252 seconds] 21:00:45 -!- gravicappa [~gravicapp@ppp91-77-177-105.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 21:01:45 homie [~levgue@xdsl-87-79-248-14.netcologne.de] has joined #scheme 21:01:54 -!- copumpkin [~copumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 21:03:03 -!- ThePawnBreak [~quassel@94.177.108.25] has quit [Ping timeout: 244 seconds] 21:04:28 copumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 21:04:48 -!- realitygrill [~realitygr@76.232.148.219] has quit [Read error: Connection reset by peer] 21:05:03 realitygrill [~realitygr@76.232.148.219] has joined #scheme 21:05:48 cow-orker [~foobar@pogostick.net] has joined #scheme 21:07:22 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 21:13:38 -!- shardz_ [~samuel@ilo.staticfree.info] has quit [Ping timeout: 240 seconds] 21:17:38 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 240 seconds] 21:25:08 bfgun [~b_fin_g@r186-52-141-136.dialup.adsl.anteldata.net.uy] has joined #scheme 21:28:15 -!- _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has quit [Ping timeout: 252 seconds] 21:51:13 -!- add^_ [~add^_^@m212-152-3-121.cust.tele2.se] has quit [Quit: add^_] 22:13:30 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 22:17:05 -!- pdponze [~pierre@144.85.122.52] has left #scheme 22:23:49 -!- pierreghz [~pierreghz@cust-160-62-111-94.dyn.as47377.net] has quit [Ping timeout: 248 seconds] 22:25:51 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 22:27:15 pierreghz [~pierreghz@cust-160-62-111-94.dyn.as47377.net] has joined #scheme 22:27:39 -!- pierreghz [~pierreghz@cust-160-62-111-94.dyn.as47377.net] has quit [Read error: Connection reset by peer] 22:29:53 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 22:50:06 taylanub [tub@p4FD92EC7.dip.t-dialin.net] has joined #scheme 22:51:10 what's stream-lambda ? this page [ http://community.schemewiki.org/?composable-continuations-tutorial ] uses it without further explanation 22:51:25 and googling doesn't bring me anywhere 23:02:30 It's a form in srfi 41 which guile doesn't yet have 23:02:36 *ijp* prods cky :) 23:07:39 "The solution of SRFI-41 is to create a new primitive, `stream-lambda', that returns a function that hides `lazy'." 23:07:58 (also see SRFI 45) 23:10:34 hi. how can i get a (with-syntax ((blah (etc))) to expand blah out with the blah ... 23:10:44 with the ellipses 23:13:43 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has left #scheme 23:13:53 oh i think i see 23:14:30 (with-syntax (((blah ...) (etc))) etc2) 23:17:54 *ski__* stares blankly 23:18:53 -!- taylanub [tub@p4FD92EC7.dip.t-dialin.net] has quit [Quit: WeeChat 0.3.7-dev] 23:27:52 -!- jeapostrophe [~jay@72-254-78-62.client.stsn.net] has quit [Ping timeout: 272 seconds] 23:30:31 zmv [~zmv@187.105.243.179] has joined #scheme 23:45:02 pumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 23:46:37 -!- copumpkin [~copumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 276 seconds] 23:46:37 -!- pumpkin is now known as copumpkin