00:04:06 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 00:04:19 -!- sad0ur [~sad0ur@psi.cz] has quit [Read error: Operation timed out] 00:07:58 Euthydemus [~euthydemu@unaffiliated/euthydemus] has joined #scheme 00:15:17 cafesofie [~cafesofie@ool-18b97779.dyn.optonline.net] has joined #scheme 00:20:24 -!- rimmjob [~king@99.45.101.176] has quit [Ping timeout: 244 seconds] 00:21:57 -!- noam [~noam@46.120.51.147] has quit [Ping timeout: 244 seconds] 00:22:27 -!- MrFahrenheit [~RageOfTho@users-60-165.vinet.ba] has quit [Ping timeout: 258 seconds] 00:23:27 replore_ [~replore@203.152.213.161.static.zoot.jp] has joined #scheme 00:31:07 rimmjob [~king@99.45.101.176] has joined #scheme 00:33:12 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 00:40:36 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 00:42:29 qu1j0t3: In the specific case of summing a list, reduce is better. :-P 00:42:36 rimmjob: ^^--- 00:42:42 rudybot: (reduce + 0 '(1 2 3 4 5)) 00:42:43 cky: your sandbox is ready 00:42:43 cky: error: reference to an identifier before its definition: reduce in module: 'program 00:42:49 rudybot: (require srfi/1) 00:42:49 cky: Done. 00:42:51 rudybot: (reduce + 0 '(1 2 3 4 5)) 00:42:51 cky: ; Value: 15 00:43:24 cky: seems synonymous to (fold, is it not? 00:43:42 *qu1j0t3* understands the terms fold and reduce to often be used for the same thing. 00:44:00 qu1j0t3: In the specific context of SRFI 1, fold and reduce have one difference: 00:44:25 qu1j0t3: In reduce, the initial value is the first element of the list. 00:44:39 qu1j0t3: The specified initial value (0, in my example above) is used only if the list is empty. 00:45:25 i.e., (reduce + 0 '(1 2 3 4 5)) is equivalent to (fold + 1 '(2 3 4 5)). 00:48:58 qu1j0t3: Essentially: (define (reduce func init lst) (if (null? lst) init (fold func (car lst) (cdr lst)))) 00:49:31 qu1j0t3: Sometimes, using reduce instead of fold is required for correctness. 00:50:39 ok thanks cky 00:51:14 -!- PreciousMetals [~Heart@unaffiliated/colours] has quit [*.net *.split] 00:51:14 -!- mjonsson [~mjonsson@38.109.95.133] has quit [*.net *.split] 00:51:14 -!- MasseR [~masse@dyn68-323.yok.fi] has quit [*.net *.split] 00:51:14 -!- ToxicFrog [~ToxicFrog@24-246-40-169.cable.teksavvy.com] has quit [*.net *.split] 00:51:14 -!- fbs [fbs@fsf/member/fbs] has quit [*.net *.split] 00:51:14 -!- lonstein [lonstein@ohno.mrbill.net] has quit [*.net *.split] 00:51:14 -!- DerGuteMoritz [~syn@85.88.17.198] has quit [*.net *.split] 00:51:14 -!- peterhil` [~peterhil@GYMMMDLI.gprs.sl-laajakaista.fi] has quit [*.net *.split] 00:51:15 -!- sepisultrum [nah46utd6s@hcl-club.lu] has quit [*.net *.split] 00:51:15 -!- z0d [~z0d@unaffiliated/z0d] has quit [*.net *.split] 00:51:15 -!- kandinski [~kandinski@hiperactivo.com] has quit [*.net *.split] 00:51:24 -!- erg [~erg@li32-38.members.linode.com] has quit [*.net *.split] 00:51:24 -!- felipe [~felipe@unaffiliated/felipe] has quit [*.net *.split] 00:51:24 -!- aspect [~aspect@abstracted-spleen.org] has quit [*.net *.split] 00:51:24 -!- karswell [~mjc@93-97-29-243.zone5.bethere.co.uk] has quit [*.net *.split] 00:51:24 -!- drdo [~drdo@85.207.54.77.rev.vodafone.pt] has quit [*.net *.split] 00:51:24 -!- timpersand [~chatzilla@adsl-99-187-239-15.dsl.pltn13.sbcglobal.net] has quit [*.net *.split] 00:51:24 -!- homie [~levgue@xdsl-78-35-132-118.netcologne.de] has quit [*.net *.split] 00:51:24 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [*.net *.split] 00:51:24 -!- roderic [~roderic@129.10.116.129] has quit [*.net *.split] 00:51:24 -!- snorble [~snorble@s83-191-238-172.cust.tele2.se] has quit [*.net *.split] 00:51:24 -!- samth_away [~samth@punge.ccs.neu.edu] has quit [*.net *.split] 00:51:24 -!- lusory [~bart@bb115-66-195-54.singnet.com.sg] has quit [*.net *.split] 00:51:24 -!- micro [~micro@www.bway.net] has quit [*.net *.split] 00:51:24 -!- markskilbeck [~mark@unaffiliated/markskilbeck] has quit [*.net *.split] 00:51:24 -!- tizoc [~user@unaffiliated/tizoc] has quit [*.net *.split] 00:51:24 -!- xian [xian@we-are-the-b.org] has quit [*.net *.split] 00:51:24 -!- poucet [~chris@li23-146.members.linode.com] has quit [*.net *.split] 00:51:59 qu1j0t3: For example, you can write a generalised fold function using fold/reduce (http://refactormycode.com/codes/836), but if you use fold, the resulting function won't call the last function in tail position. Only the reduce version is correct. 00:52:16 -!- dnolen [~davidnole@pool-68-161-64-240.ny325.east.verizon.net] has quit [Quit: dnolen] 00:54:46 qu1j0t3: You can also implement min/max using reduce (but not fold). 00:55:13 karswell [~mjc@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 00:55:14 PreciousMetals [~Heart@unaffiliated/colours] has joined #scheme 00:55:14 drdo [~drdo@85.207.54.77.rev.vodafone.pt] has joined #scheme 00:55:14 mjonsson [~mjonsson@38.109.95.133] has joined #scheme 00:55:14 timpersand [~chatzilla@adsl-99-187-239-15.dsl.pltn13.sbcglobal.net] has joined #scheme 00:55:14 homie [~levgue@xdsl-78-35-132-118.netcologne.de] has joined #scheme 00:55:14 peterhil` [~peterhil@GYMMMDLI.gprs.sl-laajakaista.fi] has joined #scheme 00:55:14 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 00:55:14 MasseR [~masse@dyn68-323.yok.fi] has joined #scheme 00:55:14 snorble [~snorble@s83-191-238-172.cust.tele2.se] has joined #scheme 00:55:14 ToxicFrog [~ToxicFrog@24-246-40-169.cable.teksavvy.com] has joined #scheme 00:55:14 samth_away [~samth@punge.ccs.neu.edu] has joined #scheme 00:55:14 roderic [~roderic@129.10.116.129] has joined #scheme 00:55:14 fbs [fbs@fsf/member/fbs] has joined #scheme 00:55:14 lusory [~bart@bb115-66-195-54.singnet.com.sg] has joined #scheme 00:55:14 DerGuteMoritz [~syn@85.88.17.198] has joined #scheme 00:55:14 lonstein [lonstein@ohno.mrbill.net] has joined #scheme 00:55:14 markskilbeck [~mark@unaffiliated/markskilbeck] has joined #scheme 00:55:14 micro [~micro@www.bway.net] has joined #scheme 00:55:14 felipe [~felipe@unaffiliated/felipe] has joined #scheme 00:55:14 aspect [~aspect@abstracted-spleen.org] has joined #scheme 00:55:14 erg [~erg@li32-38.members.linode.com] has joined #scheme 00:55:14 kandinski [~kandinski@hiperactivo.com] has joined #scheme 00:55:14 z0d [~z0d@unaffiliated/z0d] has joined #scheme 00:55:14 sepisultrum [nah46utd6s@hcl-club.lu] has joined #scheme 00:55:14 poucet [~chris@li23-146.members.linode.com] has joined #scheme 00:55:14 xian [xian@we-are-the-b.org] has joined #scheme 00:55:14 tizoc [~user@unaffiliated/tizoc] has joined #scheme 00:55:29 -!- karswell [~mjc@93-97-29-243.zone5.bethere.co.uk] has quit [Remote host closed the connection] 00:55:37 rudybot: (define (extremum cmp? lst) (reduce (lambda (x y) (if (cmp? x y) x y)) #f lst)) 00:55:37 cky: Done. 00:55:50 rudybot: (define (max . items) (extremum > items)) 00:55:51 cky: Done. 00:55:52 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 00:55:59 rudybot: (define (min . items) (extremum < items)) 00:55:59 cky: Done. 00:56:13 rudybot: (min 1 3 2 10 -42) 00:56:13 cky: ; Value: -42 00:56:18 rudybot: (max 1 3 2 10 -42) 00:56:18 cky: ; Value: 10 00:56:23 qu1j0t3: ^^--- 00:58:22 nice. 01:02:41 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 01:14:19 wolfpython [~wolf@180.109.58.232] has joined #scheme 01:19:46 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Ping timeout: 258 seconds] 01:26:01 -!- rixed [~rixed@extranet.securactive.org] has quit [Ping timeout: 244 seconds] 01:26:57 rixed [~rixed@extranet.securactive.org] has joined #scheme 01:28:26 -!- cafesofie [~cafesofie@ool-18b97779.dyn.optonline.net] has quit [Remote host closed the connection] 01:35:29 -!- timpersand [~chatzilla@adsl-99-187-239-15.dsl.pltn13.sbcglobal.net] has quit [Ping timeout: 258 seconds] 01:52:54 dnolen [~davidnole@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 01:54:40 vjacob [~vjacob@78-105-184-157.zone3.bethere.co.uk] has joined #scheme 02:04:13 -!- fbs [fbs@fsf/member/fbs] has quit [Ping timeout: 256 seconds] 02:04:48 -!- vjacob [~vjacob@78-105-184-157.zone3.bethere.co.uk] has left #scheme 02:05:10 fbs [fbs@gateway/shell/blinkenshell.org/x-xdzoymnrjagpxiqd] has joined #scheme 02:05:13 -!- fbs [fbs@gateway/shell/blinkenshell.org/x-xdzoymnrjagpxiqd] has quit [Changing host] 02:05:13 fbs [fbs@fsf/member/fbs] has joined #scheme 02:47:08 -!- rimmjob [~king@99.45.101.176] has quit [Ping timeout: 244 seconds] 02:53:23 GreatGoof [~GreatGoof@122.179.103.187] has joined #scheme 02:58:47 -!- gffa [~gffa@unaffiliated/gffa] has quit [Quit: sleep] 03:02:07 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 244 seconds] 03:03:22 -!- GreatGoof [~GreatGoof@122.179.103.187] has quit [Quit: Colloquy for iPad - http://colloquy.mobi] 03:03:57 eno [~eno@nslu2-linux/eno] has joined #scheme 03:07:37 -!- mjonsson [~mjonsson@38.109.95.133] has quit [Remote host closed the connection] 03:08:50 -!- wolfpython [~wolf@180.109.58.232] has quit [Ping timeout: 244 seconds] 03:13:50 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 03:22:46 -!- frhodes [~user@75-173-67-252.albq.qwest.net] has quit [Remote host closed the connection] 03:23:35 -!- drdo [~drdo@85.207.54.77.rev.vodafone.pt] has quit [Read error: Connection reset by peer] 03:23:57 drdo [~drdo@85.207.54.77.rev.vodafone.pt] has joined #scheme 03:28:10 -!- X-Scale [email@sgi-ultra64.broker.freenet6.net] has quit [Read error: Connection reset by peer] 03:28:43 X-Scale [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 03:31:20 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 03:39:06 -!- dnolen [~davidnole@cpe-98-14-92-234.nyc.res.rr.com] has quit [Quit: dnolen] 03:42:51 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 03:57:41 hba [~hba@189.229.191.31] has joined #scheme 04:04:33 -!- metasyntax|work [~taylor@fw-its-kt209a-2.dyn.ipfw.edu] has quit [Ping timeout: 245 seconds] 04:04:46 timpersand [~chatzilla@adsl-99-187-239-15.dsl.pltn13.sbcglobal.net] has joined #scheme 04:07:09 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 04:08:35 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 04:19:56 -!- timpersand [~chatzilla@adsl-99-187-239-15.dsl.pltn13.sbcglobal.net] has quit [Ping timeout: 258 seconds] 04:20:40 mithos28 [~eric@99-113-32-54.lightspeed.sntcca.sbcglobal.net] has joined #scheme 04:27:56 -!- homie [~levgue@xdsl-78-35-132-118.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 04:28:33 -!- wbooze [~levgue@xdsl-78-35-132-118.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 04:48:03 -!- realitygrill [~realitygr@adsl-76-232-155-167.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 04:48:16 realitygrill [~realitygr@adsl-76-232-155-167.dsl.sfldmi.sbcglobal.net] has joined #scheme 04:50:23 -!- kennyd [~kennyd@93-138-72-254.adsl.net.t-com.hr] has quit [Ping timeout: 248 seconds] 04:55:49 kennyd [~kennyd@93-138-72-254.adsl.net.t-com.hr] has joined #scheme 04:56:16 -!- realitygrill [~realitygr@adsl-76-232-155-167.dsl.sfldmi.sbcglobal.net] has quit [Quit: realitygrill] 04:57:03 -!- githogori [~githogori@c-24-7-1-43.hsd1.ca.comcast.net] has quit [Ping timeout: 245 seconds] 05:01:40 realitygrill [~realitygr@adsl-76-232-155-167.dsl.sfldmi.sbcglobal.net] has joined #scheme 05:08:08 githogori [~githogori@c-24-7-1-43.hsd1.ca.comcast.net] has joined #scheme 05:08:48 frhodes [~user@75-173-67-252.albq.qwest.net] has joined #scheme 05:08:56 -!- frhodes [~user@75-173-67-252.albq.qwest.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 05:09:29 frhodes [~user@75-173-67-252.albq.qwest.net] has joined #scheme 05:19:55 -!- realitygrill [~realitygr@adsl-76-232-155-167.dsl.sfldmi.sbcglobal.net] has quit [Ping timeout: 252 seconds] 05:21:29 noam [~noam@46.120.51.147] has joined #scheme 05:44:07 borkman` [~user@S0106001111de1fc8.cg.shawcable.net] has joined #scheme 05:44:36 -!- turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has quit [Ping timeout: 255 seconds] 05:46:18 -!- zvrba [96456@diamant.ifi.uio.no] has left #scheme 06:07:00 soveran [~soveran@186.19.214.247] has joined #scheme 06:08:11 metasyntax|work [~taylor@fw-its-kt209a-2.dyn.ipfw.edu] has joined #scheme 06:11:07 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 06:18:59 gienah [~mwright@ppp121-44-44-207.lns20.syd6.internode.on.net] has joined #scheme 06:28:09 -!- interglacial [~interglac@95.149.10.228] has quit [Ping timeout: 258 seconds] 06:36:28 -!- hba [~hba@189.229.191.31] has quit [Quit: leaving] 06:40:24 gravicappa [~gravicapp@ppp91-77-184-203.pppoe.mtu-net.ru] has joined #scheme 06:53:04 interglacial [~interglac@95.149.10.228] has joined #scheme 07:01:39 -!- Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has quit [Ping timeout: 265 seconds] 07:17:25 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 240 seconds] 07:33:49 wingo [~wingo@90.164.198.39] has joined #scheme 07:43:25 hkBst [~quassel@gentoo/developer/hkbst] has joined #scheme 07:47:09 -!- mithos28 [~eric@99-113-32-54.lightspeed.sntcca.sbcglobal.net] has quit [Quit: mithos28] 07:47:49 -!- whitequark [~whitequar@dagaz.whitequark.org] has quit [Ping timeout: 240 seconds] 07:48:39 whitequark [~whitequar@dagaz.whitequark.org] has joined #scheme 08:23:01 -!- arcfide [1000@c-69-136-7-94.hsd1.in.comcast.net] has left #scheme 08:37:03 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Ping timeout: 245 seconds] 08:38:20 grettke [~grettke@cpe-65-30-30-255.wi.res.rr.com] has joined #scheme 08:39:58 -!- grettke [~grettke@cpe-65-30-30-255.wi.res.rr.com] has quit [Client Quit] 08:43:12 grettke [~grettke@cpe-65-30-30-255.wi.res.rr.com] has joined #scheme 08:50:18 dnolen [~davidnole@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 08:50:27 -!- dnolen [~davidnole@cpe-98-14-92-234.nyc.res.rr.com] has quit [Client Quit] 09:04:27 wisey [~Steven@host86-150-85-175.range86-150.btcentralplus.com] has joined #scheme 09:06:01 ccorn [~ccorn@84-53-64-50.adsl.unet.nl] has joined #scheme 09:08:21 masm [~masm@bl19-130-147.dsl.telepac.pt] has joined #scheme 09:08:42 X-Scale` [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 09:08:46 -!- X-Scale [email@sgi-ultra64.broker.freenet6.net] has quit [Read error: Connection reset by peer] 09:35:29 X-Scale [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 09:35:46 -!- X-Scale` [email@sgi-ultra64.broker.freenet6.net] has quit [Read error: Connection reset by peer] 09:35:54 -!- X-Scale is now known as Guest47356 09:43:30 -!- Guest47356 [email@sgi-ultra64.broker.freenet6.net] has quit [Read error: Connection reset by peer] 09:43:32 X-Scale` [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 09:48:50 -!- gravicappa [~gravicapp@ppp91-77-184-203.pppoe.mtu-net.ru] has quit [Ping timeout: 258 seconds] 10:00:40 bokr [~eduska@109.110.39.160] has joined #scheme 10:06:49 -!- grettke [~grettke@cpe-65-30-30-255.wi.res.rr.com] has quit [] 10:08:45 grettke [~grettke@cpe-65-30-30-255.wi.res.rr.com] has joined #scheme 10:08:49 -!- grettke [~grettke@cpe-65-30-30-255.wi.res.rr.com] has quit [Client Quit] 10:14:39 kvda [~textual@124-171-47-189.dyn.iinet.net.au] has joined #scheme 10:15:41 tupi [~david@139.82.89.24] has joined #scheme 10:24:49 -!- kvda [~textual@124-171-47-189.dyn.iinet.net.au] has quit [Quit: Textual IRC Client: http://www.textualapp.com/] 10:25:05 kvda [~textual@124-171-47-189.dyn.iinet.net.au] has joined #scheme 10:26:01 -!- kvda [~textual@124-171-47-189.dyn.iinet.net.au] has quit [Client Quit] 10:26:30 kvda [~textual@124-171-47-189.dyn.iinet.net.au] has joined #scheme 10:26:55 -!- kvda [~textual@124-171-47-189.dyn.iinet.net.au] has quit [Client Quit] 10:27:17 kvda [~textual@124-171-47-189.dyn.iinet.net.au] has joined #scheme 10:32:27 Kajtek [~nope@nat4-230.ghnet.pl] has joined #scheme 10:39:48 laurus [~laurus@wl004.ecc.u-tokyo.ac.jp] has joined #scheme 10:39:56 Has anyone here used scmutils before? 10:52:05 gravicappa [~gravicapp@80.90.116.82] has joined #scheme 10:56:29 -!- gravicappa [~gravicapp@80.90.116.82] has quit [Ping timeout: 258 seconds] 10:57:30 gravicappa [~gravicapp@80.90.116.82] has joined #scheme 11:05:35 -!- laurus [~laurus@wl004.ecc.u-tokyo.ac.jp] has left #scheme 11:15:57 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 252 seconds] 11:16:23 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 11:18:58 -!- replore_ [~replore@203.152.213.161.static.zoot.jp] has quit [Remote host closed the connection] 11:27:28 -!- noam [~noam@46.120.51.147] has quit [Ping timeout: 256 seconds] 11:38:40 soveran [~soveran@186.19.214.247] has joined #scheme 11:49:54 ijp [~user@host109-157-168-1.range109-157.btcentralplus.com] has joined #scheme 12:09:24 Guest47356 [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 12:09:26 -!- X-Scale` [email@sgi-ultra64.broker.freenet6.net] has quit [Read error: Connection reset by peer] 12:09:52 -!- bokr [~eduska@109.110.39.160] has quit [Quit: Leaving.] 12:27:05 -!- kvda [~textual@124-171-47-189.dyn.iinet.net.au] has quit [Ping timeout: 260 seconds] 12:29:57 -!- pygospa [~TheRealPy@kiel-d9bfd7ca.pool.mediaWays.net] has quit [Disconnected by services] 12:30:09 pygospa [~TheRealPy@kiel-5f768f50.pool.mediaWays.net] has joined #scheme 12:33:44 -!- Euthy [~euthy@unaffiliated/euthydemus] has quit [Quit: leaving] 12:33:57 Euthy [~euthy@unaffiliated/euthydemus] has joined #scheme 12:40:17 dwim [~dwim@87.Red-79-146-127.dynamicIP.rima-tde.net] has joined #scheme 12:42:26 kvda [~kvda@124-168-148-220.dyn.iinet.net.au] has joined #scheme 12:43:43 replore_ [~replore@ntkngw304073.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 12:48:03 stis [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 12:50:28 -!- Kajtek [~nope@nat4-230.ghnet.pl] has quit [Quit: Leaving.] 13:04:43 rudybot: (< #f 3) 13:04:44 poucet: your sandbox is ready 13:04:44 poucet: error: <: expects type as 1st argument, given: #f; other arguments were: 3 13:05:38 rudybot: (reduce (lambda (x y) (display x) (display y)) #f '(1 2)) 13:05:38 poucet: error: reference to an identifier before its definition: reduce in module: 'program 13:06:28 borkman`` [~user@S0106001111de1fc8.cg.shawcable.net] has joined #scheme 13:06:31 cky: what does your reduce look like? 13:08:44 -!- borkman` [~user@S0106001111de1fc8.cg.shawcable.net] has quit [Ping timeout: 258 seconds] 13:11:10 smtlaissezfaire_ [~smtlaisse@76.15.192.54] has joined #scheme 13:11:39 -!- smtlaissezfaire_ [~smtlaisse@76.15.192.54] has quit [Client Quit] 13:25:12 -!- metasyntax|work [~taylor@fw-its-kt209a-2.dyn.ipfw.edu] has quit [Quit: WeeChat [quit]] 13:29:08 -!- acarrico [~acarrico@pppoe-68-142-40-116.gmavt.net] has quit [Ping timeout: 245 seconds] 13:32:14 noam [~noam@46.120.51.147] has joined #scheme 13:32:26 acarrico [~acarrico@pppoe-68-142-40-116.gmavt.net] has joined #scheme 13:32:36 -!- Guest47356 is now known as X-Scale 13:38:31 -!- borkman`` [~user@S0106001111de1fc8.cg.shawcable.net] has quit [Ping timeout: 260 seconds] 13:40:03 -!- Euthydemus [~euthydemu@unaffiliated/euthydemus] has quit [Ping timeout: 252 seconds] 13:41:20 Euthydemus [~euthydemu@unaffiliated/euthydemus] has joined #scheme 13:50:34 metasyntax|work [~taylor@fw-its-kt209a-2.dyn.ipfw.edu] has joined #scheme 13:53:11 -!- gienah [~mwright@ppp121-44-44-207.lns20.syd6.internode.on.net] has quit [Quit: leaving] 14:01:04 <_p4bl0> poucet: I think you want foldl, but your y will be #f the first time and then # because (display) returns #. What were you trying to do/show? 14:11:24 gffa [~gffa@unaffiliated/gffa] has joined #scheme 14:21:52 rudybot: (deglaze (lambda (wine) (chicken-stock))) 14:21:53 *offby1: your sandbox is ready 14:21:53 *offby1: error: reference to an identifier before its definition: deglaze in module: 'program 14:25:02 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 14:26:52 dwim_ [~dwim@87.Red-79-146-127.dynamicIP.rima-tde.net] has joined #scheme 14:27:03 -!- dwim [~dwim@87.Red-79-146-127.dynamicIP.rima-tde.net] has quit [Disconnected by services] 14:27:09 -!- dwim_ is now known as dwim 14:33:48 realitygrill [~realitygr@adsl-76-226-114-186.dsl.sfldmi.sbcglobal.net] has joined #scheme 14:38:36 smtlaissezfaire [~smtlaisse@76.15.192.54] has joined #scheme 14:40:48 -!- hkBst [~quassel@gentoo/developer/hkbst] has quit [Remote host closed the connection] 14:45:36 -!- kvda [~kvda@124-168-148-220.dyn.iinet.net.au] has quit [Quit: Computer has gone to sleep.] 14:47:59 -!- smtlaissezfaire [~smtlaisse@76.15.192.54] has quit [Quit: smtlaissezfaire] 14:50:34 -!- realitygrill [~realitygr@adsl-76-226-114-186.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 14:50:55 realitygrill [~realitygr@adsl-76-226-114-186.dsl.sfldmi.sbcglobal.net] has joined #scheme 14:52:53 -!- realitygrill [~realitygr@adsl-76-226-114-186.dsl.sfldmi.sbcglobal.net] has quit [Client Quit] 14:56:49 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 15:01:08 -!- samth_away is now known as samth 15:03:12 realitygrill [~realitygr@thewall.novi.lib.mi.us] has joined #scheme 15:04:44 poucet: I already pasted a definition of reduce earlier. Here it is again: 15:04:54 00:48:58 < cky> qu1j0t3: Essentially: (define (reduce func init lst) (if (null? lst) init (fold func (car lst) (cdr lst)))) 15:05:15 *qu1j0t3* blinks, rubs eyes 15:05:32 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has left #scheme 15:05:37 qu1j0t3: :-) 15:06:03 poucet: If you want to test it with rudybot, just say (require srfi/1) first. 15:06:47 -!- acarrico [~acarrico@pppoe-68-142-40-116.gmavt.net] has quit [Ping timeout: 252 seconds] 15:09:42 I would probably avoid srfi/1 and do this instead: (define (reduce func init lst) (for/fold ([result init]) ([item lst]) (func result item))) 15:09:50 just because I like all the "for/*" forms 15:10:08 homie [~levgue@xdsl-78-35-137-180.netcologne.de] has joined #scheme 15:10:10 offby1: It's not quite like that, though. 15:10:29 oh 15:10:37 MrFahrenheit [~RageOfTho@users-60-165.vinet.ba] has joined #scheme 15:10:44 (define (reduce func init lst) (if (null? lst) init (for/fold ((result (car lst)) ((item (cdr lst))) (func result item))) 15:10:49 is closer to reality. 15:10:58 guess I need test cases 15:11:01 rudybot: init 15:11:01 cky: your sandbox is ready 15:11:06 rudybot: (define (reduce func init lst) (if (null? lst) init (for/fold ((result (car lst)) ((item (cdr lst))) (func result item)))) 15:11:06 cky: Additionally, the syntax for `letrec' expects you to bind a name to the form. This would be something like (letrec ((element? (lambda (x lst) ...))) ...) . 15:11:10 rudybot: eval (define (reduce func init lst) (if (null? lst) init (for/fold ((result (car lst)) ((item (cdr lst))) (func result item)))) 15:11:10 cky: error: eval:1:0: read: expected a `)' to close `(' 15:11:13 rudybot: eval (define (reduce func init lst) (if (null? lst) init (for/fold ((result (car lst)) ((item (cdr lst))) (func result item))))) 15:11:13 cky: error: eval:1:52: for/fold: bad syntax in: (for/fold ((result (car lst)) ((item (cdr lst))) (func result item))) 15:11:24 rudybot: eval (define (reduce func init lst) (if (null? lst) init (for/fold ((result (car lst))) ((item (cdr lst))) (func result item)))) 15:11:24 cky: Done. 15:11:28 Much better ;-) 15:11:39 rudybot: (reduce + '(1 2 3 4 5)) 15:11:39 cky: error: procedure reduce: expects 3 arguments, given 2: # '(1 2 3 4 5) 15:11:50 rudybot: (reduce + 0 '(1 2 3 4 5)) 15:11:51 cky: ; Value: 15 15:12:10 I get those same results 15:12:18 rudybot: (reduce (lambda (x y) (if (< x y) x y)) #f '(1 2 3 4 5))) 15:12:18 cky: break it up or reduce repeated data 15:12:21 rudybot: (reduce (lambda (x y) (if (< x y) x y)) #f '(1 2 3 4 5)) 15:12:21 cky: ; Value: 1 15:12:24 rudybot: (reduce (lambda (x y) (if (> x y) x y)) #f '(1 2 3 4 5)) 15:12:24 cky: ; Value: 5 15:13:24 Oh now I see the difference. 15:13:29 Uh huh. :-) 15:13:32 my version tries to invoke the function on #f 15:13:39 so: reduce is kinda ugly :) 15:13:43 ;-) 15:16:22 wbooze [~levgue@xdsl-78-35-137-180.netcologne.de] has joined #scheme 15:20:36 kk` [~kk@77.107.164.131] has joined #scheme 15:20:36 -!- kk` [~kk@77.107.164.131] has quit [Changing host] 15:20:36 kk` [~kk@unaffiliated/kk/x-5380134] has joined #scheme 15:23:57 arcfide [1000@c-69-136-7-94.hsd1.in.comcast.net] has joined #scheme 15:27:33 fschwidom [~fschwidom@46.115.17.11] has joined #scheme 15:33:43 -!- pchrist [~spirit@gentoo/developer/pchrist] has quit [Ping timeout: 252 seconds] 15:34:17 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 15:35:43 pchrist [~spirit@gentoo/developer/pchrist] has joined #scheme 15:57:01 acarrico [~acarrico@pppoe-68-142-40-116.gmavt.net] has joined #scheme 16:01:45 -!- acarrico [~acarrico@pppoe-68-142-40-116.gmavt.net] has quit [Ping timeout: 260 seconds] 16:08:49 -!- ccorn [~ccorn@84-53-64-50.adsl.unet.nl] has quit [Quit: ccorn] 16:15:49 -!- realitygrill [~realitygr@thewall.novi.lib.mi.us] has quit [Quit: realitygrill] 16:16:15 Kajtek [~nope@nat4-230.ghnet.pl] has joined #scheme 16:16:44 acarrico [~acarrico@pppoe-68-142-40-116.gmavt.net] has joined #scheme 16:19:57 realitygrill [~realitygr@thewall.novi.lib.mi.us] has joined #scheme 16:24:36 -!- arcfide [1000@c-69-136-7-94.hsd1.in.comcast.net] has quit [Read error: Connection reset by peer] 16:26:18 dwim_ [~dwim@87.Red-79-146-127.dynamicIP.rima-tde.net] has joined #scheme 16:29:35 -!- dwim [~dwim@87.Red-79-146-127.dynamicIP.rima-tde.net] has quit [Ping timeout: 248 seconds] 16:29:45 sstrickl [~sstrickl@dublin.ccs.neu.edu] has joined #scheme 16:37:37 -!- lbc [~quassel@1908ds1-aboes.0.fullrate.dk] has quit [Read error: Connection reset by peer] 16:40:37 lbc [~quassel@1908ds1-aboes.0.fullrate.dk] has joined #scheme 16:42:49 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 16:49:20 pjb_ [~pjb@81.202.16.46.dyn.user.ono.com] has joined #scheme 16:49:34 arcfide [1000@dhcp-cs-244-96.cs.indiana.edu] has joined #scheme 16:53:44 -!- gravicappa [~gravicapp@80.90.116.82] has quit [Remote host closed the connection] 16:58:16 superjudge [~superjudg@c83-250-198-227.bredband.comhem.se] has joined #scheme 16:58:18 -!- noam [~noam@46.120.51.147] has quit [Ping timeout: 245 seconds] 16:59:09 -!- superjudge [~superjudg@c83-250-198-227.bredband.comhem.se] has left #scheme 17:00:48 -!- pjb_ [~pjb@81.202.16.46.dyn.user.ono.com] has quit [Quit: from my iPad] 17:02:13 noam [~noam@46.120.51.147] has joined #scheme 17:05:57 smtlaissezfaire [~smtlaisse@76.15.192.54] has joined #scheme 17:06:05 pjb_ [~pjb@81.202.16.46.dyn.user.ono.com] has joined #scheme 17:07:29 -!- pjb_ is now known as pjb- 17:15:41 -!- samth [~samth@punge.ccs.neu.edu] has quit [Remote host closed the connection] 17:16:33 -!- jrapdx [~jra@c-98-246-157-58.hsd1.or.comcast.net] has quit [Quit: Leaving] 17:16:50 what's the odds? samth quitting as I am thinking of asking him something :) 17:18:39 -!- pjb- [~pjb@81.202.16.46.dyn.user.ono.com] has quit [Quit: from my iPad] 17:18:54 samth [~samth@punge.ccs.neu.edu] has joined #scheme 17:22:40 leppie: your PM crashed his client 17:23:39 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Ping timeout: 258 seconds] 17:23:57 nego [~nego@c-76-16-30-244.hsd1.il.comcast.net] has joined #scheme 17:28:47 -!- nego [~nego@c-76-16-30-244.hsd1.il.comcast.net] has quit [Ping timeout: 248 seconds] 17:29:29 nego [~nego@c-76-16-30-244.hsd1.il.comcast.net] has joined #scheme 17:34:38 -!- nego [~nego@c-76-16-30-244.hsd1.il.comcast.net] has quit [Ping timeout: 276 seconds] 17:35:04 nego [~nego@c-76-16-30-244.hsd1.il.comcast.net] has joined #scheme 17:37:34 -!- githogori [~githogori@c-24-7-1-43.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 17:39:21 turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has joined #scheme 17:39:25 -!- nego [~nego@c-76-16-30-244.hsd1.il.comcast.net] has quit [Ping timeout: 240 seconds] 17:40:37 nego [~nego@c-76-16-30-244.hsd1.il.comcast.net] has joined #scheme 17:44:51 -!- lbc [~quassel@1908ds1-aboes.0.fullrate.dk] has quit [Remote host closed the connection] 17:46:56 gravicappa [~gravicapp@ppp91-77-188-249.pppoe.mtu-net.ru] has joined #scheme 17:48:45 -!- realitygrill [~realitygr@thewall.novi.lib.mi.us] has quit [Quit: realitygrill] 17:50:57 githogori [~githogori@c-24-7-1-43.hsd1.ca.comcast.net] has joined #scheme 18:08:57 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 18:14:08 -!- nego [~nego@c-76-16-30-244.hsd1.il.comcast.net] has quit [Ping timeout: 245 seconds] 18:17:35 -!- gravicappa [~gravicapp@ppp91-77-188-249.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 18:20:46 -!- Arafangion [~Arafangio@220-244-108-23.static.tpgi.com.au] has quit [Ping timeout: 258 seconds] 18:37:03 proqesi [~user@unaffiliated/proqesi] has joined #scheme 18:39:11 Harrold [~quassel@134.117.254.248] has joined #scheme 18:43:30 mejja [~user@c-0eb9e555.023-82-73746f38.cust.bredbandsbolaget.se] has joined #scheme 18:49:50 -!- githogori [~githogori@c-24-7-1-43.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 18:50:38 realitygrill [~realitygr@thewall.novi.lib.mi.us] has joined #scheme 18:51:27 -!- Nisstyre [~yours@infocalypse-net.info] has quit [Ping timeout: 248 seconds] 18:56:20 Nisstyre [~yours@infocalypse-net.info] has joined #scheme 18:58:25 -!- Nisstyre [~yours@infocalypse-net.info] has quit [Max SendQ exceeded] 18:59:05 -!- Harrold [~quassel@134.117.254.248] has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.] 18:59:13 Nisstyre [~yours@infocalypse-net.info] has joined #scheme 19:02:16 githogori [~githogori@c-24-7-1-43.hsd1.ca.comcast.net] has joined #scheme 19:03:43 *mejja* sips schneider weisse 19:03:49 -!- Kajtek [~nope@nat4-230.ghnet.pl] has quit [Quit: Leaving.] 19:03:58 Kajtek [~nope@nat4-230.ghnet.pl] has joined #scheme 19:08:32 -!- Kajtek [~nope@nat4-230.ghnet.pl] has quit [Client Quit] 19:08:37 Kajtek [~nope@nat4-230.ghnet.pl] has joined #scheme 19:13:07 -!- mejja [~user@c-0eb9e555.023-82-73746f38.cust.bredbandsbolaget.se] has quit [Quit: ChatZilla 0.9.87 [Firefox 7.0.1/20110928134238]] 19:13:36 -!- interglacial [~interglac@95.149.10.228] has quit [Quit: Leaving] 19:21:49 sad0ur [~sad0ur@ip-94-113-108-238.net.upcbroadband.cz] has joined #scheme 19:22:13 -!- smtlaissezfaire [~smtlaisse@76.15.192.54] has quit [Quit: smtlaissezfaire] 19:25:10 -!- realitygrill [~realitygr@thewall.novi.lib.mi.us] has quit [Quit: realitygrill] 19:25:38 smtlaissezfaire_ [~smtlaisse@76.15.192.54] has joined #scheme 19:26:17 vjacob [~vjacob@78-105-184-157.zone3.bethere.co.uk] has joined #scheme 19:27:40 jrapdx [~jra@74-95-41-205-Oregon.hfc.comcastbusiness.net] has joined #scheme 19:32:13 realitygrill [~realitygr@thewall.novi.lib.mi.us] has joined #scheme 19:36:31 wbooze` [~levgue@xdsl-78-35-174-142.netcologne.de] has joined #scheme 19:36:47 homie` [~levgue@xdsl-78-35-174-142.netcologne.de] has joined #scheme 19:39:20 -!- homie [~levgue@xdsl-78-35-137-180.netcologne.de] has quit [Ping timeout: 256 seconds] 19:39:25 -!- wbooze [~levgue@xdsl-78-35-137-180.netcologne.de] has quit [Ping timeout: 276 seconds] 19:41:57 -!- markskilbeck [~mark@unaffiliated/markskilbeck] has quit [Remote host closed the connection] 19:42:15 markskilbeck [~mark@unaffiliated/markskilbeck] has joined #scheme 19:50:20 choas [~lars@p578F692C.dip.t-dialin.net] has joined #scheme 19:50:21 -!- markskilbeck [~mark@unaffiliated/markskilbeck] has quit [Ping timeout: 255 seconds] 19:50:57 markskilbeck [~mark@unaffiliated/markskilbeck] has joined #scheme 19:52:07 -!- sad0ur [~sad0ur@ip-94-113-108-238.net.upcbroadband.cz] has quit [Read error: Operation timed out] 19:58:21 -!- markskilbeck [~mark@unaffiliated/markskilbeck] has quit [Ping timeout: 252 seconds] 19:58:45 -!- otakutomo [~otakutomo@KD027083117212.ppp-bb.dion.ne.jp] has quit [Read error: Connection reset by peer] 19:59:00 otakutomo [~otakutomo@KD027083117212.ppp-bb.dion.ne.jp] has joined #scheme 19:59:16 markskilbeck [~mark@unaffiliated/markskilbeck] has joined #scheme 19:59:36 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 20:02:26 *wingo* sips moritz 20:03:31 wait what 20:05:53 sad0ur [~sad0ur@ip-94-113-108-238.net.upcbroadband.cz] has joined #scheme 20:06:06 *mario-goulart* covers his eyes 20:07:07 DerAndereMoritz. 20:07:27 *fds* has no idea if that means what he thinks it does. :-( 20:08:39 fds: it's correct! 20:08:48 Yay! 20:09:00 moritz.cat 20:09:46 wingo: http://partmaps.org/era/unix/award.html#cat :-) 20:10:29 -!- sad0ur [~sad0ur@ip-94-113-108-238.net.upcbroadband.cz] has quit [Ping timeout: 260 seconds] 20:11:24 -!- realitygrill [~realitygr@thewall.novi.lib.mi.us] has quit [Quit: realitygrill] 20:23:06 -!- rixed [~rixed@extranet.securactive.org] has quit [*.net *.split] 20:23:07 -!- arbscht [~arbscht@fsf/member/arbscht] has quit [*.net *.split] 20:23:07 -!- eli [~eli@winooski.ccs.neu.edu] has quit [*.net *.split] 20:23:07 -!- jimrees_ [~jimrees@ita4fw1.itasoftware.com] has quit [*.net *.split] 20:24:39 rixed [~rixed@extranet.securactive.org] has joined #scheme 20:24:39 arbscht [~arbscht@fsf/member/arbscht] has joined #scheme 20:24:39 eli [~eli@winooski.ccs.neu.edu] has joined #scheme 20:24:39 jimrees_ [~jimrees@ita4fw1.itasoftware.com] has joined #scheme 20:25:10 realitygrill [~realitygr@adsl-76-226-114-186.dsl.sfldmi.sbcglobal.net] has joined #scheme 20:26:45 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has left #scheme 20:35:05 can some Scheme syntax extension be made, which will allow for erb-like "tag" usage? 20:39:54 i.e. something like "a <%= (+ 1 2) %> c" which will expand to (string-append "a" (anything->string (+ 1 2)) "c") 20:40:19 -!- fschwidom [~fschwidom@46.115.17.11] has quit [Ping timeout: 252 seconds] 20:42:40 there is eguile for guile 20:42:50 ah, you are thinking the other way around 20:42:55 dunno :) 20:43:06 nothing standard, i think you need reader extensions for that 20:47:09 Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has joined #scheme 20:47:13 whitequark: Racket has `format', which does string interpolation. 20:49:17 not for embedded expressions in strings 20:49:25 (& rightly so) 20:52:09 sad0ur [~sad0ur@psi.cz] has joined #scheme 20:53:54 whitequark: I would recommend string interpolation (i.e. what stamourv said) or alternatively something like http://api.call-cc.org/doc/data-structures/conc 21:19:00 -!- proqesi [~user@unaffiliated/proqesi] has quit [Ping timeout: 255 seconds] 21:19:07 -!- realitygrill [~realitygr@adsl-76-226-114-186.dsl.sfldmi.sbcglobal.net] has quit [Quit: realitygrill] 21:20:33 -!- kennyd [~kennyd@93-138-72-254.adsl.net.t-com.hr] has quit [Ping timeout: 260 seconds] 21:20:56 -!- homie` [~levgue@xdsl-78-35-174-142.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:21:04 -!- wbooze` [~levgue@xdsl-78-35-174-142.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:21:08 -!- sstrickl [~sstrickl@dublin.ccs.neu.edu] has quit [Quit: sstrickl] 21:28:25 thanks for the suggestions 21:31:50 JoelMcCracken [~user@pool-72-95-162-220.pitbpa.east.verizon.net] has joined #scheme 21:33:58 -!- noam [~noam@46.120.51.147] has quit [Ping timeout: 258 seconds] 21:37:45 -!- Hal9k [~Hal@unaffiliated/kusanagi] has quit [Ping timeout: 260 seconds] 21:44:59 p~~. 21:48:30 noam [~noam@46.120.51.147] has joined #scheme 22:00:14 -!- arcfide [1000@dhcp-cs-244-96.cs.indiana.edu] has left #scheme 22:01:23 -!- choas [~lars@p578F692C.dip.t-dialin.net] has quit [Ping timeout: 258 seconds] 22:06:27 pandeiro [~pandeiro@177.32.222.225] has joined #scheme 22:09:11 -!- Kajtek [~nope@nat4-230.ghnet.pl] has quit [Quit: Leaving.] 22:24:37 proqesi [~user@unaffiliated/proqesi] has joined #scheme 22:25:59 arcfide [1000@c-69-136-7-94.hsd1.in.comcast.net] has joined #scheme 22:26:25 dwim__ [~dwim@87.Red-79-146-127.dynamicIP.rima-tde.net] has joined #scheme 22:29:25 -!- dwim_ [~dwim@87.Red-79-146-127.dynamicIP.rima-tde.net] has quit [Ping timeout: 240 seconds] 22:32:22 Arafangion [~Arafangio@220-244-108-23.static.tpgi.com.au] has joined #scheme 22:39:01 -!- tupi [~david@139.82.89.24] has quit [Quit: Leaving] 22:42:42 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 22:44:45 realitygrill [~realitygr@adsl-76-226-114-186.dsl.sfldmi.sbcglobal.net] has joined #scheme 22:47:42 -!- replore_ [~replore@ntkngw304073.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Remote host closed the connection] 22:51:19 kvda [~kvda@124-168-148-220.dyn.iinet.net.au] has joined #scheme 22:53:49 micro: p~~? 22:54:24 whitequark: ~. is a ssh sequence for "terminate this connection". 22:54:35 whitequark: ~~ is an ssh sequence for "output a literal ~". 22:54:46 So usually you use ~~. to terminate the second-outermost ssh connection. 22:55:01 However, those ~ sequences only work when typed immediately after a newline. 22:55:20 So if something else got typed first, then the tildes will get sent as is. 22:56:46 -!- wisey [~Steven@host86-150-85-175.range86-150.btcentralplus.com] has quit [Quit: Leaving] 22:56:52 pumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 22:57:20 -!- pumpkin is now known as copumpkin_ 22:59:58 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 245 seconds] 23:01:00 -!- realitygrill [~realitygr@adsl-76-226-114-186.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 23:02:00 -!- copumpkin_ is now known as copumpkin 23:04:24 realitygrill [~realitygr@adsl-76-226-105-29.dsl.sfldmi.sbcglobal.net] has joined #scheme 23:09:07 kennyd [~kennyd@93-139-126-222.adsl.net.t-com.hr] has joined #scheme 23:13:05 -!- kennyd [~kennyd@93-139-126-222.adsl.net.t-com.hr] has quit [Read error: Connection reset by peer] 23:15:52 and ssh borrowed this escaping convention from cu 23:18:58 Nice. 23:20:19 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 23:24:00 kennyd [~kennyd@93-139-126-222.adsl.net.t-com.hr] has joined #scheme 23:30:07 -!- MrFahrenheit [~RageOfTho@users-60-165.vinet.ba] has quit [Ping timeout: 258 seconds] 23:41:48 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 23:46:55 -!- frhodes [~user@75-173-67-252.albq.qwest.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 23:51:49 -!- kk` [~kk@unaffiliated/kk/x-5380134] has quit [Ping timeout: 240 seconds] 23:56:11 -!- samth is now known as samth_away