00:03:02 imphasin2 [~Alex@97-81-115-30.dhcp.gwnt.ga.charter.com] has joined #scheme 00:03:47 -!- imphasing [~Alex@97-81-115-30.dhcp.gwnt.ga.charter.com] has quit [Disconnected by services] 00:03:49 -!- imphasin1 [~Alex@97-81-115-30.dhcp.gwnt.ga.charter.com] has quit [Ping timeout: 240 seconds] 00:03:51 -!- imphasin2 is now known as imphasing 00:07:23 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 00:07:28 -!- moll [~user@150.181.35.213.dyn.estpak.ee] has quit [Ping timeout: 245 seconds] 00:10:38 PiRSquared17 [~PiRSquare@ip68-9-170-24.ri.ri.cox.net] has joined #scheme 00:11:00 -!- PiRSquared17 [~PiRSquare@ip68-9-170-24.ri.ri.cox.net] has quit [Client Quit] 00:12:50 PiRSquared17 [~PiRSquare@ip68-9-170-24.ri.ri.cox.net] has joined #scheme 00:16:10 -!- gffa [~gffa@unaffiliated/gffa] has quit [Quit: sleep] 00:21:13 -!- snizzo [~quassel@host69-12-dynamic.50-79-r.retail.telecomitalia.it] has quit [Remote host closed the connection] 00:23:46 -!- PiRSquared17 [~PiRSquare@ip68-9-170-24.ri.ri.cox.net] has quit [Changing host] 00:23:46 PiRSquared17 [~PiRSquare@wikipedia/PiRSquared17] has joined #scheme 00:24:43 -!- PiRSquared17 [~PiRSquare@wikipedia/PiRSquared17] has quit [Quit: Read error: Ping timeout: 240 seconds] 00:30:13 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 00:46:14 -!- drwho [~drwho@208.7.157.62] has quit [Ping timeout: 258 seconds] 00:50:22 replore [~replore@203.152.213.161.static.zoot.jp] has joined #scheme 00:54:27 moll [~user@150.181.35.213.dyn.estpak.ee] has joined #scheme 01:00:10 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 01:10:18 PiRSquared17 [~PiRSquare@wikipedia/PiRSquared17] has joined #scheme 01:14:16 dnolen [~davidnole@p72-0-226-114-static.acedsl.com] has joined #scheme 01:23:04 -!- PiRSquared17 [~PiRSquare@wikipedia/PiRSquared17] has left #scheme 01:24:29 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 256 seconds] 01:27:06 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 01:31:11 y4m4 [fharshav@nat/redhat/x-gyplmtidzesfhqnv] has joined #scheme 01:31:56 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Ping timeout: 258 seconds] 01:33:17 -!- masm [~masm@bl19-167-20.dsl.telepac.pt] has quit [Quit: Leaving.] 01:34:13 confab_ [~win7@c-24-10-60-185.hsd1.ca.comcast.net] has joined #scheme 01:36:37 -!- confab [~win7@c-24-10-60-185.hsd1.ca.comcast.net] has quit [Ping timeout: 240 seconds] 01:42:07 rudybot, ((lambda z z) 1 2 3 4 5) 01:42:08 ttvd: ; Value: (1 2 3 4 5) 01:42:13 can anyone please explain this to me? 01:43:10 The list of all the arguments to the function call (1 2 3 4 5) is bound to z, then the value boud to z, ie. that list (1 2 3 4 5) is returned. 01:43:34 why is 1 2 3 4 5 treated as a list? 01:43:38 If you know CL or emacs lisp, it's equivalent to (lambda (&rest z) z) 1 2 3 4 5) 01:43:58 Because z collects all the arguments. 01:44:07 rudybot: (apply (lambda x x) '(1 2 3 4 5)) 01:44:08 aspect: your sandbox is ready 01:44:08 aspect: ; Value: (1 2 3 4 5) 01:44:10 oh in this special form? 01:44:24 rudybot: ((lambda (a . z) z) 1 2 3 4 5) 01:44:25 pjb: your r5rs sandbox is ready 01:44:25 pjb: ; Value: {2 3 4 5} 01:44:31 so it's kidn of like .z z 01:45:26 thanks 01:46:02 rudybot: '((lambda z z) . (1 2 3 4 5)) 01:46:02 aspect: ; Value: ((lambda z z) 1 2 3 4 5) 01:51:11 -!- githogori [~githogori@216.207.36.222] has quit [Remote host closed the connection] 01:51:39 -!- dsmith_ [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has quit [Remote host closed the connection] 01:52:02 chromaticwt [~user@71-32-106-128.albq.qwest.net] has joined #scheme 02:02:15 ttvd: the point is that it's kind of a pattern matching. No real pattern matching is done, it's just syntax, but it behaves like if there was some pattern matching 02:02:16 (lambda (a b c) ...) <- (1 2 3) ==> a=1 b=2 c=3 02:02:46 (lambda (a b . c) ...) <- (1 2 3 4) ==> a=1 b=2 c=(3 4) [remember, (1 2 3 4) = (1 . (2 . (3 . (4 . ())))) ] 02:02:57 (lambda c ...) <- (1 2 3) ==> c=(1 2 3) 02:03:17 And in CL, IIRC, lambda can do list destructuring. :-P 02:03:25 s/lambda/the lambda list/ 02:03:27 and (f 1 2 3 4 5) == (apply f (list 1 2 3 4 5)) 02:03:35 cky: only for macros. 02:03:39 Ah, I see. 02:03:59 But you can always easily call destructuring-bind explicitly. 02:05:20 *nods* 02:19:30 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 02:29:10 -!- chromaticwt [~user@71-32-106-128.albq.qwest.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 02:30:23 jrslepak [~jrslepak@12.21.1.3] has joined #scheme 02:30:54 -!- wtetzner [~wtetzner@c-24-218-217-69.hsd1.ma.comcast.net] has quit [Ping timeout: 240 seconds] 02:31:09 Polyseven [~Polyseven@cpe-24-24-175-60.socal.res.rr.com] has joined #scheme 02:36:29 -!- X-Scale [email@sgi-ultra64.broker.freenet6.net] has quit [Remote host closed the connection] 02:37:20 -!- Polyseven [~Polyseven@cpe-24-24-175-60.socal.res.rr.com] has left #scheme 02:45:30 copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has joined #scheme 02:45:33 -!- copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has quit [Changing host] 02:45:33 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 02:46:22 wtetzner [~wtetzner@c-24-218-217-69.hsd1.ma.comcast.net] has joined #scheme 02:48:36 -!- MrFahrenheit [~RageOfTho@users-146-56.vinet.ba] has quit [Ping timeout: 258 seconds] 02:50:48 -!- djanatyn [~djanatyn@mail.digitalkingdom.org] has quit [Ping timeout: 245 seconds] 02:52:36 djanatyn [~djanatyn@mail.digitalkingdom.org] has joined #scheme 02:56:30 -!- mjonsson [~mjonsson@38.109.95.133] has quit [Remote host closed the connection] 03:00:07 -!- dnolen [~davidnole@p72-0-226-114-static.acedsl.com] has quit [Quit: dnolen] 03:06:10 -!- gabot [~eli@winooski.ccs.neu.edu] has quit [Ping timeout: 260 seconds] 03:06:50 -!- eli [~eli@winooski.ccs.neu.edu] has quit [Ping timeout: 255 seconds] 03:21:38 -!- jrapdx [~jra@74-95-41-205-Oregon.hfc.comcastbusiness.net] has quit [Quit: Leaving] 03:24:42 -!- imphasing [~Alex@97-81-115-30.dhcp.gwnt.ga.charter.com] has quit [Read error: Connection reset by peer] 03:24:57 imphasing [~Alex@97-81-115-30.dhcp.gwnt.ga.charter.com] has joined #scheme 03:25:42 -!- wtetzner [~wtetzner@c-24-218-217-69.hsd1.ma.comcast.net] has quit [Ping timeout: 240 seconds] 03:25:47 -!- buhman [~zack@unaffiliated/buhman] has quit [Ping timeout: 258 seconds] 03:26:13 turbofai` [~user@c-107-3-149-149.hsd1.ca.comcast.net] has joined #scheme 03:28:40 -!- inimino [~inimino@boshi.inimino.org] has quit [Ping timeout: 260 seconds] 03:29:01 -!- pranq [pranq@unaffiliated/contempt] has quit [Ping timeout: 240 seconds] 03:30:07 inimino [~inimino@69.164.198.129] has joined #scheme 03:30:13 -!- turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has quit [Ping timeout: 240 seconds] 03:30:15 pranq [pranq@unaffiliated/contempt] has joined #scheme 03:30:25 drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has joined #scheme 03:32:00 -!- drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has quit [Client Quit] 03:32:20 drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has joined #scheme 03:34:16 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 03:38:01 wtetzner [~wtetzner@c-24-218-217-69.hsd1.ma.comcast.net] has joined #scheme 03:38:06 -!- mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has quit [Ping timeout: 240 seconds] 03:38:54 buhman [~zack@unaffiliated/buhman] has joined #scheme 03:39:53 -!- turbofai` [~user@c-107-3-149-149.hsd1.ca.comcast.net] has quit [Ping timeout: 276 seconds] 03:50:12 PiRSquared17 [~PiRSquare@wikipedia/PiRSquared17] has joined #scheme 03:52:53 -!- jimmyrcom [~fold@adsl-75-53-33-186.dsl.rcsntx.sbcglobal.net] has quit [Ping timeout: 245 seconds] 03:56:56 dnolen [~davidnole@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 03:57:40 gabot [~eli@winooski.ccs.neu.edu] has joined #scheme 03:59:30 DerGuteMoritz, game of life just doesn't interest me. 04:00:03 rudybot: (display "/say h") 04:00:04 PiRSquared17: your sandbox is ready 04:00:04 PiRSquared17: ; stdout: "/say h" 04:00:15 -!- dnolen [~davidnole@cpe-98-14-92-234.nyc.res.rr.com] has quit [Remote host closed the connection] 04:00:21 rudybot: (display '()) 04:00:22 PiRSquared17: ; stdout: "()" 04:00:32 rudybot: (display '(1 2 3 4)) 04:00:32 PiRSquared17: ; stdout: "(1 2 3 4)" 04:01:50 -!- otakutomo [~otakutomo@KD027083117212.ppp-bb.dion.ne.jp] has quit [Read error: Operation timed out] 04:02:37 -!- peterhil [~peterhil@GYYMMMCMLVII.gprs.sl-laajakaista.fi] has quit [Ping timeout: 240 seconds] 04:03:28 rudybot: (newline) 04:03:28 aspect: ; stdout: "\n" 04:04:06 eli [~eli@129.10.115.117] has joined #scheme 04:04:41 rudybot: (display (caar '('(0) '(1)))) 04:04:41 PiRSquared17: ; stdout: "quote" 04:04:55 rudybot: (display (caar '((0) (1)))) 04:04:55 PiRSquared17: ; stdout: "0" 04:08:39 -!- drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has quit [Quit: leaving] 04:08:54 drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has joined #scheme 04:09:29 -!- ente [~daemon@unaffiliated/n0nsense] has quit [Ping timeout: 258 seconds] 04:11:06 chromaticwt [~user@71-32-106-128.albq.qwest.net] has joined #scheme 04:14:19 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 04:20:48 jcowan [~John@cpe-98-14-172-212.nyc.res.rr.com] has joined #scheme 04:21:22 ente [~daemon@barfooze.de] has joined #scheme 04:21:23 -!- ente [~daemon@barfooze.de] has quit [Changing host] 04:21:23 ente [~daemon@unaffiliated/n0nsense] has joined #scheme 04:26:22 hoi 04:26:55 -!- firefly_ [~firefly@zhaozhou.dcollins.info] has quit [Quit: leaving] 04:41:58 I've just heard that Gambit will have R7RS-small support. 04:50:40 otakutomo [~otakutomo@KD027083117212.ppp-bb.dion.ne.jp] has joined #scheme 04:58:18 -!- PiRSquared17 [~PiRSquare@wikipedia/PiRSquared17] has quit [Quit: bye] 05:14:24 It's not even on the ML! 05:14:35 That's good news anyway. 05:17:26 leo2007 [~leo@58.32.251.66] has joined #scheme 05:20:38 -!- cmatei [~cmatei@95.76.22.68] has quit [Ping timeout: 276 seconds] 05:20:47 -!- Arafangion [~Arafangio@220-244-108-23.static.tpgi.com.au] has quit [Ping timeout: 248 seconds] 05:22:17 bytbox [~s@129.2.129.226] has joined #scheme 05:26:36 samth [~samth@12.21.1.3] has joined #scheme 05:26:51 gravicappa [~gravicapp@ppp91-77-176-154.pppoe.mtu-net.ru] has joined #scheme 05:35:03 githogori [~githogori@c-24-7-1-43.hsd1.ca.comcast.net] has joined #scheme 05:41:44 -!- wbooze` [~levgue@xdsl-84-44-153-252.netcologne.de] has quit [Remote host closed the connection] 05:41:44 -!- homie` [~levgue@xdsl-84-44-153-252.netcologne.de] has quit [Remote host closed the connection] 05:42:41 rudybot: (display "\x01ACTION testing 1 2 3\x01") 05:42:43 cky: your sandbox is ready 05:42:43 cky: ; stdout: "\u0001ACTION testing 1 2 3\u0001" 05:43:27 -!- drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has quit [Ping timeout: 256 seconds] 05:48:04 toekutr [~user@adsl-69-107-103-19.dsl.pltn13.pacbell.net] has joined #scheme 05:59:33 -!- annihilator [~rff@ip72-207-248-18.br.br.cox.net] has quit [Ping timeout: 245 seconds] 06:00:11 -!- s_chng [~stchang@login.ccs.neu.edu] has quit [Ping timeout: 258 seconds] 06:01:02 -!- adzuci [~ada2358@login.ccs.neu.edu] has quit [Ping timeout: 258 seconds] 06:01:31 -!- copumpkin is now known as OracleOfHalting 06:23:56 jrapdx [~jra@c-76-105-198-230.hsd1.or.comcast.net] has joined #scheme 06:26:31 -!- toekutr [~user@adsl-69-107-103-19.dsl.pltn13.pacbell.net] has quit [Remote host closed the connection] 06:37:57 -!- jrapdx [~jra@c-76-105-198-230.hsd1.or.comcast.net] has quit [Quit: Leaving] 06:53:00 -!- jcowan [~John@cpe-98-14-172-212.nyc.res.rr.com] has quit [Read error: Connection reset by peer] 07:09:43 -!- OracleOfHalting is now known as copumpkin 07:16:33 -!- bytbox [~s@129.2.129.226] has quit [Ping timeout: 258 seconds] 07:22:36 -!- samth [~samth@12.21.1.3] has quit [Ping timeout: 258 seconds] 07:25:04 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 248 seconds] 07:37:37 confab [~win7@c-24-10-60-185.hsd1.ca.comcast.net] has joined #scheme 07:40:45 -!- confab_ [~win7@c-24-10-60-185.hsd1.ca.comcast.net] has quit [Ping timeout: 256 seconds] 07:46:41 jrapdx [~jra@c-76-105-198-230.hsd1.or.comcast.net] has joined #scheme 07:56:18 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 07:56:53 djcb [djcb@nat/nokia/x-jhgglukyudobcvnh] has joined #scheme 08:06:30 -!- leo2007 [~leo@58.32.251.66] has quit [Ping timeout: 240 seconds] 08:10:54 -!- otakutomo [~otakutomo@KD027083117212.ppp-bb.dion.ne.jp] has quit [Ping timeout: 240 seconds] 08:12:28 myrkraverk: then do something that's interesting to you ;-) 08:28:25 otakutomo [~otakutomo@KD027083117212.ppp-bb.dion.ne.jp] has joined #scheme 08:46:54 -!- gravicappa [~gravicapp@ppp91-77-176-154.pppoe.mtu-net.ru] has quit [Read error: Connection reset by peer] 08:49:58 gravicappa [~gravicapp@ppp91-77-189-87.pppoe.mtu-net.ru] has joined #scheme 08:50:55 ahinki [~chatzilla@212.99.10.150] has joined #scheme 09:00:06 vu3rdd [~vu3rdd@nat/cisco/x-trkkebaczhqdfvsn] has joined #scheme 09:00:06 -!- vu3rdd [~vu3rdd@nat/cisco/x-trkkebaczhqdfvsn] has quit [Changing host] 09:00:06 vu3rdd [~vu3rdd@fsf/member/vu3rdd] has joined #scheme 09:24:50 -!- jrapdx [~jra@c-76-105-198-230.hsd1.or.comcast.net] has quit [Quit: Leaving] 09:26:53 -!- djcb [djcb@nat/nokia/x-jhgglukyudobcvnh] has quit [Remote host closed the connection] 09:27:29 djcb [~djcb@192.100.124.220] has joined #scheme 09:33:47 wingo [~wingo@90.164.198.39] has joined #scheme 09:43:10 rstandy [~rastandy@93-63-185-248.ip29.fastwebnet.it] has joined #scheme 10:01:16 -!- leppie [~lolcow@196-209-224-114.dynamic.isadsl.co.za] has quit [Read error: Connection reset by peer] 10:01:57 leppie [~lolcow@196.209.224.114] has joined #scheme 10:02:54 -!- Khisanth [~Khisanth@50.14.244.111] has quit [Read error: Connection reset by peer] 10:09:24 -!- replore [~replore@203.152.213.161.static.zoot.jp] has quit [Remote host closed the connection] 10:13:57 -!- djcb [~djcb@192.100.124.220] has left #scheme 10:18:32 masm [~masm@2.80.167.20] has joined #scheme 10:22:14 Khisanth [~Khisanth@50.14.244.111] has joined #scheme 10:30:31 -!- rstandy [~rastandy@93-63-185-248.ip29.fastwebnet.it] has quit [Ping timeout: 258 seconds] 10:45:36 pandeiro [~pandeiro@177.32.220.108] has joined #scheme 10:45:57 -!- Hal9k [~Hal@unaffiliated/kusanagi] has quit [Ping timeout: 260 seconds] 10:58:27 what do people here think about racket? i've heard it had nice GUI bindings and some static sugar... 11:00:44 yes! 11:01:02 dca`: depends on what you care about, really 11:01:28 Arafangion [~Arafangio@220-244-108-23.static.tpgi.com.au] has joined #scheme 11:02:46 -!- metasyntax|work [~taylor@fw-its-kt209a-2.dyn.ipfw.edu] has quit [Ping timeout: 255 seconds] 11:03:46 metasyntax|work [~taylor@fw-its-kt209a-2.dyn.ipfw.edu] has joined #scheme 11:15:54 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has quit [Read error: Connection reset by peer] 11:20:06 -!- sjamaan [~sjamaan@netbsd/developer/sjamaan] has quit [Ping timeout: 240 seconds] 11:25:47 snizzo [~quassel@iglu.cc.uniud.it] has joined #scheme 11:37:23 tupi [~david@139.82.89.24] has joined #scheme 11:40:12 MrFahrenheit [~RageOfTho@users-149-25.vinet.ba] has joined #scheme 11:41:45 rstandy [~rastandy@93-63-185-248.ip29.fastwebnet.it] has joined #scheme 12:03:44 sjamaan [~sjamaan@frohike.xs4all.nl] has joined #scheme 12:03:44 -!- sjamaan [~sjamaan@frohike.xs4all.nl] has quit [Changing host] 12:03:44 sjamaan [~sjamaan@netbsd/developer/sjamaan] has joined #scheme 12:11:20 Brendan_T [~Brendan_T@46.105.251.111] has joined #scheme 12:28:24 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 12:31:18 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 12:35:25 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 12:56:58 -!- jrslepak [~jrslepak@12.21.1.3] has quit [Quit: This computer has gone to sleep] 13:12:22 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 13:13:18 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 13:14:57 jimmyrcom [~fold@75.53.33.186] has joined #scheme 13:16:51 -!- snizzo [~quassel@iglu.cc.uniud.it] has quit [Read error: Connection reset by peer] 13:19:20 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 13:21:45 kuribas [~user@94-227-93-7.access.telenet.be] has joined #scheme 13:21:58 jrslepak [~jrslepak@12.21.1.3] has joined #scheme 13:22:15 -!- ahinki [~chatzilla@212.99.10.150] has quit [Ping timeout: 258 seconds] 13:22:54 soveran [~soveran@190.247.218.179] has joined #scheme 13:25:21 ahinki [~chatzilla@212.99.10.150] has joined #scheme 13:33:59 -!- vu3rdd [~vu3rdd@fsf/member/vu3rdd] has quit [Remote host closed the connection] 13:36:37 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 13:37:37 snizzo [~quassel@iglu.cc.uniud.it] has joined #scheme 13:39:49 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 13:52:45 -!- soveran [~soveran@190.247.218.179] has quit [Remote host closed the connection] 13:58:10 shoerain [~mortimer@wc249-118.resnet.stonybrook.edu] has joined #scheme 13:58:12 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 260 seconds] 14:01:11 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 14:01:11 coderdad [~coderdad@wsip-70-164-198-85.ok.ok.cox.net] has joined #scheme 14:02:03 -!- Brendan_T [~Brendan_T@46.105.251.111] has quit [Ping timeout: 245 seconds] 14:08:18 Hello schemers! When I set! a function f to a new lambda, and if I use f within this new lambda, am I supposed to get the previous or new value for f ? 14:08:28 ex: (let ((f (lambda (x) #f))) (let ((chgf (lambda () (set! f (lambda (a) (display a) (f a)))))) (chgf) (f 1))) 14:08:34 is this supposed to recurse? 14:08:49 rudybot: eval (let ((f (lambda (x) #f))) (let ((chgf (lambda () (set! f (lambda (a) (display a) (f a)))))) (chgf) (f 1))) 14:08:50 leppie: your sandbox is ready 14:09:01 leppie: error: with-limit: out of time 14:09:13 leppie: Ok, thank you :-) 14:09:15 rixed: infinite loop probably 14:09:25 -!- snizzo [~quassel@iglu.cc.uniud.it] has quit [Remote host closed the connection] 14:09:47 it prints a lot of '1' s 14:10:02 leppie: yes it's recursing. I'm going to use CPS style then. 14:10:03 samth [~samth@12.21.1.3] has joined #scheme 14:13:07 bytbox [~s@129.2.129.226] has joined #scheme 14:30:26 X-Scale [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 14:30:34 -!- X-Scale is now known as Guest11127 14:32:45 -!- Guest11127 is now known as X-Scale 14:47:27 -!- fizzie [fis@iris.zem.fi] has quit [Ping timeout: 276 seconds] 14:49:42 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 14:51:31 fizzie [fis@iris.zem.fi] has joined #scheme 14:54:10 -!- kuribas [~user@94-227-93-7.access.telenet.be] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 15:06:37 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 15:08:37 realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has joined #scheme 15:08:58 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 15:19:57 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 276 seconds] 15:24:33 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 15:28:50 wbooze [~levgue@xdsl-78-35-138-7.netcologne.de] has joined #scheme 15:28:50 wipt [cc4d29d0@gateway/web/freenode/ip.204.77.41.208] has joined #scheme 15:30:00 homie [~levgue@xdsl-78-35-138-7.netcologne.de] has joined #scheme 15:30:17 -!- ahinki [~chatzilla@212.99.10.150] has quit [Ping timeout: 258 seconds] 15:37:06 -!- githogori [~githogori@c-24-7-1-43.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 15:43:57 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 15:55:26 ahinki [~chatzilla@212.99.10.150] has joined #scheme 15:56:31 bombshelter13b [~bombshelt@76.10.149.209] has joined #scheme 15:58:12 -!- lbc [~quassel@1908ds1-aboes.0.fullrate.dk] has quit [Remote host closed the connection] 16:01:30 soveran [~soveran@190.247.218.179] has joined #scheme 16:02:07 -!- ahinki [~chatzilla@212.99.10.150] has quit [Quit: ChatZilla 0.9.87 [Firefox 8.0/20111102223350]] 16:04:23 -!- pygospa [~Pygosceli@kiel-4dbedd3d.pool.mediaWays.net] has quit [Disconnected by services] 16:04:33 -!- soveran [~soveran@190.247.218.179] has quit [Remote host closed the connection] 16:04:35 pygospa [~Pygosceli@kiel-4dbece75.pool.mediaWays.net] has joined #scheme 16:04:45 -!- wipt [cc4d29d0@gateway/web/freenode/ip.204.77.41.208] has quit [Quit: Page closed] 16:07:20 BW^- [~Miranda@92.83.166.72] has joined #scheme 16:08:37 gffa [~gffa@unaffiliated/gffa] has joined #scheme 16:08:43 -!- BW^- [~Miranda@92.83.166.72] has quit [Client Quit] 16:09:15 -!- Arafangion [~Arafangio@220-244-108-23.static.tpgi.com.au] has quit [Read error: Connection reset by peer] 16:11:18 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 16:13:38 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 16:14:11 kk` [~kk@unaffiliated/kk/x-5380134] has joined #scheme 16:17:35 soveran [~soveran@190.247.218.179] has joined #scheme 16:23:36 amgarching [~matveev@theo1.theochem.tu-muenchen.de] has joined #scheme 16:24:16 hi, is there alterantive syntax to (apply f args)? 16:24:52 amgarching: running into argument limit? 16:24:57 I dont quite get why (f . args) si not doing what I mean. 16:25:07 args must be a list in this case 16:25:14 it is 16:25:21 what *is* it doing? 16:26:06 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 16:27:06 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 16:27:30 (define (f . args) (display args)) -> Wrong number of arguments to # 16:28:17 (define x '(1 2 3)) (f . x) for completeness 16:28:39 that isn't how you apply functions, amgarching 16:29:44 so is there an alternative to (apply f args)? Or is it the only way? 16:30:24 (f 1 2 3) or (apply f '(1 2 3)) 16:34:07 (cons 'f x) is (f 1 2 3) so why (f . x) is not the same as (apply f x)? 16:35:17 it's not defined in the standard 16:35:55 I wonder if any implementation does it this way, I had the same idea a few times 16:36:15 isnt (f . x) a list with f in car position and a list x in cdr? 16:37:41 amgarching: its meaning is not defined for evaluation 16:37:46 same as with unquoted vector 16:37:46 s 16:37:56 it definitely is a pair with f in car position and a list in cdr 16:38:13 yeah, it's defined as the external representation of a pair 16:38:22 but it's not defined how that evaluates 16:38:47 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 16:39:57 no, (f . x) is a pair with symbols in the car and the cdr 16:40:30 -!- rstandy [~rastandy@93-63-185-248.ip29.fastwebnet.it] has quit [Ping timeout: 240 seconds] 16:43:03 that too :-) 16:48:54 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 16:59:58 no, it is *not* something with the a list in the cdr 17:00:37 yeah, I mean "that too" in the sense of "that's wrong with your assumption, too" :-) 17:01:23 but in the context of evaluation x may be bound to a list, which is what he obviously meant 17:02:54 -!- coderdad [~coderdad@wsip-70-164-198-85.ok.ok.cox.net] has quit [Ping timeout: 240 seconds] 17:05:34 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 17:06:04 it's very important to keep "bound to" and "is" separate :) 17:07:11 yep, it sure helps to be precise :-) 17:07:54 -!- soveran [~soveran@190.247.218.179] has quit [Remote host closed the connection] 17:15:09 Look at this bold-ass statement: "Please do not use the ASCII grave accent (0x60) as a left quotation mark together with the ASCII apostrophe (0x27) as the corresponding right quotation mark (as in `quote')." 17:15:18 That flies in the face of TeXists everywhere. 17:15:49 "Please do not use the phrase 'bold-ass'. It makes no sense." 17:17:15 what if you have an ass that keeps stealing your carrots? that'd be a bold ass! 17:17:39 wingo: `-ass', I think, is a generic intensifying suffix. 17:17:43 wingo, that's a bold ass-statement (cf http://xkcd.com/37/ ) 17:17:49 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 17:18:25 samth: hehe, hadn't seen that one :-) 17:19:41 Oh, man; got XKCD'd. Is that like the new Godwin's law? 17:22:30 The `com-' intensifying prefix in Latin is a good analogue to the `-ass' suffix, I think. 17:24:23 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 17:25:05 Belaf [~campedel@2.32.206.219] has joined #scheme 17:30:38 -!- samth [~samth@12.21.1.3] has quit [Ping timeout: 256 seconds] 17:33:43 -!- XTL [~XTL@dsl-olubrasgw2-fe6af800-251.dhcp.inet.fi] has quit [Ping timeout: 245 seconds] 17:39:56 klutometis: Computer Modern Roman encourages this... I guess so do many terminal fonts of the 80s, or RMS wouldn't have established it as GNU practice either... 17:41:47 woonie [~woonie@nusnet-185-173.dynip.nus.edu.sg] has joined #scheme 17:42:40 question: is there a primitive to get racket to return a number in rational form? 17:43:11 (+ x 0.0) 17:43:33 githogori [~githogori@216.207.36.222] has joined #scheme 17:44:35 incubot: (exact->inexact 2) 17:44:36 2.0 17:44:47 Or is `inexact' distinct from `rational'? 17:46:02 i think the 0.0 works fine 17:46:05 thanks 17:46:13 i can never remember the details about the numerical tower 17:46:30 -!- Belaf [~campedel@2.32.206.219] has quit [Ping timeout: 256 seconds] 17:46:35 qu1j0t3: That's interesting; I always thought of it as a cultured Unix thing. 17:47:02 woonie: Not `primitive', though; exact->inexact is closer to `primitive'. 17:47:18 okay 17:47:49 A rational can also be a fractional number, which is exact 17:47:53 woonie: In fact, this whole page is good reading: . 17:47:54 http://tinyurl.com/4urkch 17:47:57 1/2 => exact 17:48:00 0.5 => inexact 17:48:08 sjamaan: That's what tripped me up, too; cf. `rationalize'. 17:48:10 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 260 seconds] 17:48:34 I took `rational form' as a synonym for `decimal form'; but maybe that was presumptuous. 17:49:48 klutometis: well, both RMS and Knuth adopted it as the dominant convention, as you mention. 17:49:58 klutometis: i'm assuming due to terminal fonts and maybe printer fonts. 17:50:05 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 17:50:17 klutometis: which have changed somewhat since: I'm looking at you, ` 17:51:50 qu1j0t3: Isn't the so-called backtick actually an accent grave, though? If so, bizarre that accent aigu doesn't seem to exist. 17:52:04 And also, if so, it's an ad-hoc reappropriation. 17:52:25 A well established one, nevertheless. 17:54:24 denisw [~denisw@dslb-188-103-196-255.pools.arcor-ip.net] has joined #scheme 17:55:52 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 18:05:04 klutometis: no, it's not the accent 18:05:13 klutometis: also ^ isn't the accent either, nor is ' 18:05:47 klutometis: it's been used to indicate the accent in systems like TeX \` \' yes but the glyph isn't it 18:05:51 in ASCII 18:08:30 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 18:13:17 qu1j0t3: Everyone (including Wikipedia) seems to refer to ASCII 0x60 as the `grave accent', though; what's the history behind it? 18:14:08 -!- woonie [~woonie@nusnet-185-173.dynip.nus.edu.sg] has quit [Ping timeout: 248 seconds] 18:16:10 klutometis: it is "accent grave" as used in French for a few centuries? 18:17:22 Actually, ' glyph is not similar to accent, but ` and ^ are nearly identical to è and ê 18:19:19 soveran [~soveran@190.247.218.179] has joined #scheme 18:21:29 -!- soveran [~soveran@190.247.218.179] has quit [Remote host closed the connection] 18:23:56 stchang [~stchang@syrah.ccs.neu.edu] has joined #scheme 18:24:19 -!- githogori [~githogori@216.207.36.222] has quit [Remote host closed the connection] 18:24:31 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 18:32:00 -!- pygospa [~Pygosceli@kiel-4dbece75.pool.mediaWays.net] has quit [Disconnected by services] 18:32:10 pygospa [~Pygosceli@kiel-5f7696a8.pool.mediaWays.net] has joined #scheme 18:33:46 peterhil [~peterhil@GGYGMLII.gprs.sl-laajakaista.fi] has joined #scheme 18:36:00 turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has joined #scheme 18:38:44 pchrist [~spirit@gentoo/developer/pchrist] has joined #scheme 18:42:28 jrapdx [~jra@74-95-41-205-Oregon.hfc.comcastbusiness.net] has joined #scheme 18:59:37 -!- realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 18:59:42 realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has joined #scheme 19:08:53 sepuku [~sepuku@83.212.47.63] has joined #scheme 19:10:11 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Read error: Connection timed out] 19:13:37 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 19:14:06 -!- bombshelter13b [~bombshelt@76.10.149.209] has quit [Quit: If only your veins were filled with oil, the world would rush to your rescue!] 19:19:45 -!- realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 19:20:02 realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has joined #scheme 19:21:27 ijp [~user@host86-177-156-110.range86-177.btcentralplus.com] has joined #scheme 19:25:18 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 19:27:20 -!- pandeiro [~pandeiro@177.32.220.108] has quit [Ping timeout: 260 seconds] 19:29:38 -!- imphasing [~Alex@97-81-115-30.dhcp.gwnt.ga.charter.com] has quit [Ping timeout: 252 seconds] 19:31:46 imphasing [~Alex@97-81-115-30.dhcp.gwnt.ga.charter.com] has joined #scheme 19:36:04 wbooze` [~levgue@xdsl-78-35-180-60.netcologne.de] has joined #scheme 19:36:24 homie` [~levgue@xdsl-78-35-180-60.netcologne.de] has joined #scheme 19:38:13 -!- homie [~levgue@xdsl-78-35-138-7.netcologne.de] has quit [Ping timeout: 240 seconds] 19:38:42 -!- wbooze [~levgue@xdsl-78-35-138-7.netcologne.de] has quit [Ping timeout: 256 seconds] 19:39:31 dnolen [~davidnole@98.14.92.234] has joined #scheme 19:40:03 soveran [~soveran@190.247.218.179] has joined #scheme 19:40:44 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 19:43:16 -!- soveran [~soveran@190.247.218.179] has quit [Remote host closed the connection] 19:47:47 -!- antoszka [~antoszka@unaffiliated/antoszka] has quit [Read error: Operation timed out] 19:52:57 -!- imphasing [~Alex@97-81-115-30.dhcp.gwnt.ga.charter.com] has quit [Ping timeout: 276 seconds] 20:02:27 -!- jrslepak [~jrslepak@12.21.1.3] has quit [Quit: This computer has gone to sleep] 20:03:50 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Read error: Connection timed out] 20:07:34 antoszka [~antoszka@unaffiliated/antoszka] has joined #scheme 20:07:45 imphasing [~Alex@97-81-115-30.dhcp.gwnt.ga.charter.com] has joined #scheme 20:08:18 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 20:09:47 -!- Guest49052 [~karl@pool-108-17-80-180.pitbpa.fios.verizon.net] has quit [Remote host closed the connection] 20:14:13 kniu [~kniu@pool-108-17-80-180.pitbpa.fios.verizon.net] has joined #scheme 20:15:47 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 258 seconds] 20:17:30 -!- denisw [~denisw@dslb-188-103-196-255.pools.arcor-ip.net] has quit [Remote host closed the connection] 20:18:18 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 20:18:33 -!- gravicappa [~gravicapp@ppp91-77-189-87.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 20:29:02 -!- sepuku [~sepuku@83.212.47.63] has quit [Quit: leaving] 20:29:52 samth [~samth@12.21.1.3] has joined #scheme 20:33:29 Hal9k [~Hal@unaffiliated/kusanagi] has joined #scheme 20:41:28 -!- Em [~em@unaffiliated/emma] has quit [Ping timeout: 255 seconds] 20:42:00 -!- wingo [~wingo@90.164.198.39] has quit [Ping timeout: 260 seconds] 20:44:06 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 20:48:14 wisey [~Steven@host109-153-33-1.range109-153.btcentralplus.com] has joined #scheme 20:48:42 githogori [~githogori@123.sub-75-247-208.myvzw.com] has joined #scheme 20:51:14 surrounder [~surrounde@d130031.upc-d.chello.nl] has joined #scheme 20:51:27 mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has joined #scheme 20:52:43 soveran [~soveran@190.247.218.179] has joined #scheme 20:52:56 -!- realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 20:53:08 realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has joined #scheme 20:57:02 -!- homie` [~levgue@xdsl-78-35-180-60.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 20:57:18 -!- wbooze` [~levgue@xdsl-78-35-180-60.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 20:58:32 coderdad [~coderdad@wsip-70-164-198-85.ok.ok.cox.net] has joined #scheme 21:02:04 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 21:03:17 -!- soveran [~soveran@190.247.218.179] has quit [Remote host closed the connection] 21:16:10 -!- wtetzner [~wtetzner@c-24-218-217-69.hsd1.ma.comcast.net] has quit [Read error: Connection reset by peer] 21:16:21 -!- peterhil [~peterhil@GGYGMLII.gprs.sl-laajakaista.fi] has quit [Ping timeout: 244 seconds] 21:17:05 wtetzner [~wtetzner@c-24-218-217-69.hsd1.ma.comcast.net] has joined #scheme 21:19:51 -!- realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 21:20:08 realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has joined #scheme 21:23:30 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 252 seconds] 21:24:14 Em [~em@unaffiliated/emma] has joined #scheme 21:26:08 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 21:28:43 wingo [~wingo@90.164.198.39] has joined #scheme 21:29:08 -!- githogori [~githogori@123.sub-75-247-208.myvzw.com] has quit [Ping timeout: 245 seconds] 21:33:12 drdo [~drdo@85.207.54.77.rev.vodafone.pt] has joined #scheme 21:35:55 -!- realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 21:36:13 realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has joined #scheme 21:40:25 wipt [cc4d29d0@gateway/web/freenode/ip.204.77.41.208] has joined #scheme 21:41:22 This is driving me nuts http://pastebin.com/XHDbYLXn 21:42:06 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 240 seconds] 21:42:52 in total-branch in your cond 21:43:41 shouldn't it be (cond ((number? (branch-structure branch)) .... 21:43:43 -!- realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 21:44:07 realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has joined #scheme 21:44:25 ping wipt 21:44:58 rapacity: I'm not sure. The problem I'm running into is that branch-structure keeps getting "10" 21:46:34 (left-branch mobile) returns ((10 ((30 1) (15 2))) (20 3))... 21:48:39 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 276 seconds] 21:49:53 er, no, I meant (10 ((30 1) (15 2))) is returned from left-branch mobile 21:50:00 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 21:50:35 and that's the issue, when I pass that to branch-structure, cdr explodes 21:51:44 evening 21:51:46 it's probably an easy fix. It's not occuring to me, though. 21:51:56 afternoon wingo 21:57:58 -!- ski [~slj@c83-254-21-112.bredband.comhem.se] has quit [Ping timeout: 255 seconds] 21:59:00 ski [~slj@c83-254-21-112.bredband.comhem.se] has joined #scheme 21:59:29 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 21:59:42 rff [~rff@ip72-207-248-18.br.br.cox.net] has joined #scheme 22:05:48 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Ping timeout: 258 seconds] 22:05:58 -!- wipt [cc4d29d0@gateway/web/freenode/ip.204.77.41.208] has quit [Quit: Page closed] 22:06:40 -!- ijp [~user@host86-177-156-110.range86-177.btcentralplus.com] has quit [Quit: The garbage collector got me] 22:06:47 ijp [~user@host86-177-156-110.range86-177.btcentralplus.com] has joined #scheme 22:09:20 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Ping timeout: 248 seconds] 22:11:15 -!- dnolen [~davidnole@98.14.92.234] has quit [Remote host closed the connection] 22:11:32 snizzo [~quassel@95.232.237.241] has joined #scheme 22:11:50 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 260 seconds] 22:12:57 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 22:16:53 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 22:17:54 -!- chromaticwt [~user@71-32-106-128.albq.qwest.net] has quit [Ping timeout: 276 seconds] 22:17:57 chromati` [~user@71-32-106-128.albq.qwest.net] has joined #scheme 22:22:05 wsimpson [~bill@76.73.221.195] has joined #scheme 22:22:38 -!- tupi [~david@139.82.89.24] has quit [Ping timeout: 260 seconds] 22:25:49 tupi [~david@139.82.89.24] has joined #scheme 22:26:29 -!- chromati` [~user@71-32-106-128.albq.qwest.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 22:26:58 chromaticwt [~user@71-32-106-128.albq.qwest.net] has joined #scheme 22:39:49 -!- bytbox [~s@129.2.129.226] has quit [Ping timeout: 240 seconds] 22:45:20 -!- Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has quit [Read error: Connection timed out] 22:46:49 bytbox [~s@129.2.129.226] has joined #scheme 22:47:00 bytbox_ [~s@129.2.129.226] has joined #scheme 22:47:15 Belaf [~campedel@net-2-32-206-219.cust.dsl.teletu.it] has joined #scheme 22:47:49 -!- X-Scale [email@sgi-ultra64.broker.freenet6.net] has quit [Ping timeout: 240 seconds] 22:49:58 -!- markskilbeck [~Mark@unaffiliated/markskilbeck] has quit [Quit: WeeChat 0.3.0] 22:51:20 -!- bytbox_ [~s@129.2.129.226] has quit [Client Quit] 22:51:20 -!- bytbox [~s@129.2.129.226] has quit [Client Quit] 22:51:40 bytbox [~s@129.2.129.226] has joined #scheme 22:52:59 -!- realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 22:53:17 realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has joined #scheme 23:00:13 -!- bytbox [~s@129.2.129.226] has quit [Ping timeout: 240 seconds] 23:02:56 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 23:03:56 -!- chromaticwt [~user@71-32-106-128.albq.qwest.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 23:04:40 -!- coderdad [~coderdad@wsip-70-164-198-85.ok.ok.cox.net] has quit [Quit: Computer has gone to sleep.] 23:05:03 ijp` [~user@host86-174-97-170.range86-174.btcentralplus.com] has joined #scheme 23:06:30 -!- ijp [~user@host86-177-156-110.range86-177.btcentralplus.com] has quit [Ping timeout: 240 seconds] 23:09:40 -!- ijp` is now known as ijp 23:14:15 X-Scale [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 23:16:19 -!- wisey [~Steven@host109-153-33-1.range109-153.btcentralplus.com] has quit [Quit: Leaving] 23:22:54 -!- wingo [~wingo@90.164.198.39] has quit [Ping timeout: 276 seconds] 23:24:13 Brendan_T [~Brendan_T@46.105.251.111] has joined #scheme 23:27:05 -!- samth [~samth@12.21.1.3] has quit [Ping timeout: 260 seconds] 23:33:17 -!- realitygrill [~realitygr@adsl-76-226-139-160.dsl.sfldmi.sbcglobal.net] has quit [Quit: realitygrill] 23:33:40 bytbox [~s@129.2.129.226] has joined #scheme 23:33:58 -!- bytbox [~s@129.2.129.226] has quit [Client Quit] 23:34:25 -!- masm [~masm@2.80.167.20] has quit [Quit: Leaving.] 23:34:35 bytbox [~s@129.2.129.226] has joined #scheme 23:35:49 -!- snizzo [~quassel@95.232.237.241] has quit [Remote host closed the connection] 23:47:53 -!- tupi [~david@139.82.89.24] has quit [Quit: Leaving] 23:48:28 PiRSquared17 [~PiRSquare@wikipedia/PiRSquared17] has joined #scheme