18:08:10 ccl-logbot [~ccl-logbo@setf.clozure.com] has joined #scheme 18:08:10 18:08:10 -!- names: ccl-logbot xwl rrm3 lisppaste minion specbot prince_ jewel bokr Hal9k crypto_ dlouhy_ sjamaan aoh_ abusead m``_ klutometis rotty gabot Pepe_ roderic Obfuscate Reisen bunzz saccade_ Leonidas Khisanth ve eldragon tessier ecraven twobitsprite mhoye bremner duncanm metaperl clog ski tltstc rgrau zbigniew joast mornfall bgs100 mario-goulart Adrinael daowee shardz gnomon eli araujo nowhereman eno pookleblinky xwl_ sladegen pjb cpr420 Mohamdu nicktick dzhus 18:08:10 -!- names: bweaver pchrist leppie stis copec jonrafkind alvatar virl bartleby Pohsul alexsura1i bzzbzz_ emma IJP rrm3_ mathk sepult neilv ASau hat0 hadronzoo minglis kar8nga lvillani hhomar saccade rdd Checkie griptig luz felipe rtra masm Thomas_H elf Axioplase_ nasloc__ XTL tizoc franki^ ineiros samth fda314925 DerGuteMoritz tao- adzuci kencausey ri4a chandler sloyd rapacity elly yosafbridge jimrees_ futilius rmrfchik weinholt rudybot jao mbishop incubot 18:08:10 -!- names: Riviera ToxicFrog cipher kniu foof zeroish dfkjjkfd stepnem somnium saint_cypher mjonsson C-Keen sad0ur erg nego offby1 borism alaricsp askhader timj_ dfeuer aehrisch zarchne 18:08:10 -kornbluth.freenode.net:#scheme- [freenode-info] why register and identify? your IRC nick is how people know you. http://freenode.net/faq.shtml#nicksetup 18:09:39 DUM de dum 18:09:48 indeed 18:10:22 -!- rrm3 [~rrm3@rrm3.org] has quit [Ping timeout: 258 seconds] 18:11:50 -!- saint_cypher [~saint_cyp@c-76-126-70-224.hsd1.ca.comcast.net] has quit [Ping timeout: 265 seconds] 18:12:22 -!- crypto_ is now known as z0d 18:12:26 -!- z0d [~z0d@artifact.hu] has quit [Changing host] 18:12:27 z0d [~z0d@unaffiliated/z0d] has joined #scheme 18:12:56 -!- neilv [~user@dsl092-071-029.bos1.dsl.speakeasy.net] has quit [Quit: Leaving] 18:13:18 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 18:15:06 -!- nicktick [debian-tor@gateway/tor-sasl/nicktick] has quit [Remote host closed the connection] 18:16:32 qebab [finnrobi@apollo.orakel.ntnu.no] has joined #scheme 18:17:15 -!- sepult [~user@xdsl-78-34-245-142.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 18:19:41 -!- ASau [~user@83.69.227.32] has quit [Ping timeout: 240 seconds] 18:20:21 -!- hadronzoo [~hadronzoo@adsl-75-20-234-48.dsl.rcsntx.sbcglobal.net] has quit [Quit: hadronzoo] 18:22:26 sepult [~user@xdsl-78-34-245-142.netcologne.de] has joined #scheme 18:23:43 -!- Pohsul [Pohsul@62.32.131.253] has quit [] 18:28:26 -!- alexsura1i [~alex@pool-71-188-133-67.aubnin.fios.verizon.net] has quit [Quit: Lost terminal] 18:29:19 alexsuraci [~alex@pool-71-188-133-67.aubnin.fios.verizon.net] has joined #scheme 18:34:29 umm 18:34:34 mmu 18:34:37 Hi 18:34:40 hello 18:35:31 I am writing recursive function and I need an iterative proccess. My "account" parameter is a list and it's initial value is (). What's the proper way to append? 18:35:45 append function doesn't work in this case 18:35:53 > (append (append (list) 1) 2) 18:35:54 append: expected argument of type ; given 1 18:36:05 you want 18:36:23 (append (list) (list 1)) to achieve (list 1) 18:36:42 oh, i see 18:36:53 thanks 18:36:59 np 18:37:03 Um 18:37:03 lists in haskell are easier IMO 18:37:09 If you are only adding one element to the list 18:37:10 Consider 18:37:17 (cons elem a-list) 18:37:45 ^that will end element to the beggining 18:37:54 right? 18:38:03 Right 18:40:19 tao-, it is generally more efficient to append to the head of a list rather than the tail of it, if you're dealing with lists of any signficant length, unless you use something like a simple CONC structure. 18:40:50 .oO( hmm appending to the head ) 18:40:59 heh 18:41:04 well, that's true in general 18:41:07 Prepending, then. 18:41:16 also, can someone please review my code? 18:41:17 http://paste.lisp.org/+2EDR 18:41:20 What's the runtime of reverse? 18:41:31 schmir [~schmir@p54A90EBD.dip0.t-ipconnect.de] has joined #scheme 18:42:07 sorry? 18:43:12 askhader, generally O(n), but it's generally implemented as a primitive and heavily optimized. 18:43:12 MrFahrenheit [~RageOfTho@users-55-66.vinet.ba] has joined #scheme 18:43:30 oh nice 18:43:51 I like optimized things :3 18:43:56 mannnn I'm at a shortage of useful scheme programs to write =/ 18:44:01 and primitives 18:44:34 askhader: write a library for distributed p2p systems 18:44:42 ASau [~user@83.69.227.32] has joined #scheme 18:44:45 and write a simple chat on top of it 18:45:19 Uh it's called rtorrent 18:45:21 And I use irssi for my chats =P 18:45:23 And I said useful 18:45:29 So, can someone tell me any things about codestyle/other stuff? 18:45:41 askhader: irssi does not support distributed communication AFAIK 18:45:59 *askhader* looks at tao-'s code 18:46:18 Looks pretty to m 18:46:18 e 18:46:32 i guess emacs does it's job :) 18:46:36 -!- kar8nga [~kar8nga@93-82-74-230.adsl.highway.telekom.at] has quit [Remote host closed the connection] 18:46:39 chiiph [~quassel@gentoo/developer/chiiph] has joined #scheme 18:46:43 *askhader* uses vim 18:47:31 What is the signifigance of the names 'car' and 'cdr' ? 18:47:43 does anybody knows if kawa works correctly with swt-3.5? 18:48:49 askhader, "contents of address register", "contents of decrement register". 18:48:59 Thanks 18:50:13 has anyone watched The Office (US)? Is it funny? 18:52:00 -!- sepult [~user@xdsl-78-34-245-142.netcologne.de] has quit [Read error: Connection reset by peer] 18:52:15 tao-: Yes... Unrelated. But yes 18:53:10 ok, thanks 18:54:55 askhader: uk version is better than us version? 18:55:08 sepult [~user@xdsl-78-34-245-142.netcologne.de] has joined #scheme 18:55:10 I didn't watch much of the Uk version but they cancelled it, so I'd assume so 18:55:41 -!- hhomar [~hhomar@92.27.39.56] has quit [Quit: WeeChat 0.3.2] 18:59:40 Pohsul [Pohsul@83.231.92.91] has joined #scheme 19:01:52 hadronzoo [~hadronzoo@ppp-70-251-129-145.dsl.rcsntx.swbell.net] has joined #scheme 19:05:47 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 19:06:06 -!- hadronzoo [~hadronzoo@ppp-70-251-129-145.dsl.rcsntx.swbell.net] has quit [Client Quit] 19:10:18 -!- minglis [~minglis@203.171.96.17.static.rev.aanet.com.au] has quit [Ping timeout: 265 seconds] 19:10:23 turbofail [~user@adsl-69-238-246-201.dsl.pltn13.pacbell.net] has joined #scheme 19:11:15 minglis [~minglis@203.171.96.17.static.rev.aanet.com.au] has joined #scheme 19:12:02 hadronzoo [~hadronzoo@ppp-70-251-129-145.dsl.rcsntx.swbell.net] has joined #scheme 19:13:04 -!- schmir [~schmir@p54A90EBD.dip0.t-ipconnect.de] has quit [Ping timeout: 240 seconds] 19:16:06 -!- dfeuer [~dfeuer@wikimedia/Dfeuer] has quit [Ping timeout: 265 seconds] 19:27:56 -!- mathk [~mathk@lns-bzn-37-82-253-47-153.adsl.proxad.net] has quit [Read error: Connection reset by peer] 19:28:06 mathk [~mathk@lns-bzn-32-82-254-11-55.adsl.proxad.net] has joined #scheme 19:29:23 dfeuer [~dfeuer@wikimedia/Dfeuer] has joined #scheme 19:29:30 hotblack23 [~jh@p4FC5B48A.dip.t-dialin.net] has joined #scheme 19:29:49 -!- hotblack23 [~jh@p4FC5B48A.dip.t-dialin.net] has quit [Remote host closed the connection] 19:30:34 -!- bokr [~eduska@85.26.234.139] has quit [Quit: Leaving.] 19:34:33 -!- Pohsul [Pohsul@83.231.92.91] has quit [] 19:34:41 kephas [~pierre@AStrasbourg-551-1-62-31.w83-194.abo.wanadoo.fr] has joined #scheme 19:35:09 -!- nowhereman [~pierre@AStrasbourg-551-1-96-214.w81-49.abo.wanadoo.fr] has quit [Ping timeout: 252 seconds] 19:36:35 -!- saccade [~saccade@BRAIN-AND-COG-THIRTY-EIGHT.MIT.EDU] has quit [Ping timeout: 260 seconds] 19:37:31 saint_cypher [~saint_cyp@dsl081-240-057.sfo1.dsl.speakeasy.net] has joined #scheme 19:37:57 -!- alvatar [~alvatar@193.119.20.95.dynamic.jazztel.es] has quit [Quit: leaving] 19:38:02 -!- sepult [~user@xdsl-78-34-245-142.netcologne.de] has quit [Read error: Connection reset by peer] 19:40:01 sepult [~user@xdsl-78-34-245-142.netcologne.de] has joined #scheme 19:41:18 saccade [~saccade@dhcp-18-111-84-184.dyn.mit.edu] has joined #scheme 19:41:55 -!- sepult [~user@xdsl-78-34-245-142.netcologne.de] has quit [Read error: Connection reset by peer] 19:44:48 sepult [~user@xdsl-78-34-245-142.netcologne.de] has joined #scheme 19:48:36 -!- masm [~masm@bl19-134-183.dsl.telepac.pt] has quit [Quit: Leaving.] 19:51:17 -!- dfeuer [~dfeuer@wikimedia/Dfeuer] has quit [Ping timeout: 240 seconds] 19:55:36 asarch [~asarch@189.188.144.192] has joined #scheme 20:04:57 fradgers- [~fradgers-@5adb10a1.bb.sky.com] has joined #scheme 20:15:33 -!- MrFahrenheit [~RageOfTho@users-55-66.vinet.ba] has quit [Ping timeout: 265 seconds] 20:21:36 -!- asarch [~asarch@189.188.144.192] has quit [Quit: Leaving] 20:28:14 -!- jewel [~jewel@196-210-134-12.dynamic.isadsl.co.za] has quit [Ping timeout: 258 seconds] 20:28:15 dz0004455 [~dz0004455@c-98-198-92-3.hsd1.tx.comcast.net] has joined #scheme 20:29:39 asarch [~asarch@189.188.144.192] has joined #scheme 20:30:52 -!- xwl [~user@123.115.121.112] has quit [Ping timeout: 276 seconds] 20:32:01 somnium` [~user@adsl-65-186-229.dab.bellsouth.net] has joined #scheme 20:34:42 Pohsul [Pohsul@62.32.150.91] has joined #scheme 20:34:55 -!- somnium [~user@adsl-65-188-109.dab.bellsouth.net] has quit [Ping timeout: 260 seconds] 20:35:46 -!- lvillani [~lvillani@fedora/lvillani] has quit [Quit: Leaving] 20:39:03 -!- luz [~davids@189.60.69.82] has quit [Quit: Client exiting] 20:45:07 Intensity [DbFDVlxpsN@unaffiliated/intensity] has joined #scheme 20:48:22 -!- turbofail [~user@adsl-69-238-246-201.dsl.pltn13.pacbell.net] has left #scheme 21:00:43 jmcphers [~jmcphers@218.185.108.156] has joined #scheme 21:03:55 toast` [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has joined #scheme 21:06:01 alvatar [~alvatar@194.233.218.87.dynamic.jazztel.es] has joined #scheme 21:14:58 -!- asarch [~asarch@189.188.144.192] has quit [Quit: Leaving] 21:17:08 -!- sepult [~user@xdsl-78-34-245-142.netcologne.de] has quit [Ping timeout: 260 seconds] 21:23:34 schmir [~schmir@p54A901D4.dip0.t-ipconnect.de] has joined #scheme 21:24:41 asarch [~asarch@189.188.144.192] has joined #scheme 21:25:29 -!- bweaver [~user@75-148-111-133-Chattanooga.hfc.comcastbusiness.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:32:56 -!- dz0004455 [~dz0004455@c-98-198-92-3.hsd1.tx.comcast.net] has quit [Remote host closed the connection] 21:37:32 -!- saccade [~saccade@dhcp-18-111-84-184.dyn.mit.edu] has quit [Quit: This computer has gone to sleep] 21:44:19 MrFahrenheit [~RageOfTho@users-55-39.vinet.ba] has joined #scheme 21:54:05 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Read error: Operation timed out] 22:01:12 adu [~ajr@pool-71-191-173-125.washdc.fios.verizon.net] has joined #scheme 22:09:39 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has quit [Read error: Connection reset by peer] 22:14:22 -!- Pohsul [Pohsul@62.32.150.91] has quit [Read error: Connection reset by peer] 22:15:36 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Ping timeout: 245 seconds] 22:20:10 -!- schmir [~schmir@p54A901D4.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 22:21:38 dz0004455 [~dz0004455@c-98-198-92-3.hsd1.tx.comcast.net] has joined #scheme 22:21:44 -!- saint_cypher [~saint_cyp@dsl081-240-057.sfo1.dsl.speakeasy.net] has quit [Ping timeout: 240 seconds] 22:23:20 -!- griptig [~none@s83-179-14-105.cust.tele2.se] has left #scheme 22:23:49 griptig [~none@s83-179-14-105.cust.tele2.se] has joined #scheme 22:24:18 -!- dzhus [~sphinx@95-26-149-182.broadband.corbina.ru] has quit [Read error: Operation timed out] 22:32:51 Pohsul [Pohsul@83.231.16.46] has joined #scheme 22:34:12 saccade [~saccade@209-6-54-113.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has joined #scheme 22:40:34 saint_cypher [~saint_cyp@dsl081-240-057.sfo1.dsl.speakeasy.net] has joined #scheme 22:41:53 -!- dz0004455 [~dz0004455@c-98-198-92-3.hsd1.tx.comcast.net] has quit [Remote host closed the connection] 22:46:12 ysph [~user@24-181-93-165.dhcp.leds.al.charter.com] has joined #scheme 22:55:41 -!- emma [~em@unaffiliated/emma] has quit [Ping timeout: 240 seconds] 22:56:43 -!- samth is now known as samth_away 23:00:37 -!- alvatar [~alvatar@194.233.218.87.dynamic.jazztel.es] has quit [Quit: leaving] 23:05:17 -!- minglis [~minglis@203.171.96.17.static.rev.aanet.com.au] has quit [Ping timeout: 240 seconds] 23:06:56 emma [~em@unaffiliated/emma] has joined #scheme 23:09:59 -!- borism [~boris@237.80.191.90.dyn.estpak.ee] has quit [Ping timeout: 252 seconds] 23:11:36 borism [~boris@237.80.191.90.dyn.estpak.ee] has joined #scheme 23:13:00 -!- emma [~em@unaffiliated/emma] has quit [Ping timeout: 260 seconds] 23:16:06 -!- toast` [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has quit [Quit: toast`] 23:18:13 toast` [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has joined #scheme 23:18:50 minglis [~minglis@203.171.96.17.static.rev.aanet.com.au] has joined #scheme 23:25:29 -!- ysph [~user@24-181-93-165.dhcp.leds.al.charter.com] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 23:31:48 -!- stepnem [~stepnem@88.103.132.186] has quit [Ping timeout: 260 seconds] 23:33:44 dfeuer [~dfeuer@wikimedia/Dfeuer] has joined #scheme 23:37:04 emma [~em@unaffiliated/emma] has joined #scheme 23:37:41 -!- Checkie [1203@unaffiliated/checkie] has quit [Ping timeout: 240 seconds] 23:42:22 -!- emma [~em@unaffiliated/emma] has quit [Ping timeout: 264 seconds] 23:44:04 stepnem [~stepnem@88.103.132.186] has joined #scheme 23:45:10 Checkie [1196@unaffiliated/checkie] has joined #scheme 23:55:57 -!- bartleby [~steve@75-30-149-94.lightspeed.arlhil.sbcglobal.net] has left #scheme 00:08:42 -!- fradgers- [~fradgers-@5adb10a1.bb.sky.com] has left #scheme 00:09:03 mbohun [~mbohun@202.124.72.146] has joined #scheme 00:11:52 -!- minglis [~minglis@203.171.96.17.static.rev.aanet.com.au] has quit [Ping timeout: 276 seconds] 00:12:36 -!- toast` [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has quit [Quit: toast`] 00:15:36 nicktick [debian-tor@gateway/tor-sasl/nicktick] has joined #scheme 00:35:17 emma [~em@unaffiliated/emma] has joined #scheme 00:41:18 -!- emma [~em@unaffiliated/emma] has quit [Ping timeout: 260 seconds] 00:43:12 cky [~cky@cpe-065-190-148-048.nc.res.rr.com] has joined #scheme 00:47:23 -!- hadronzoo [~hadronzoo@ppp-70-251-129-145.dsl.rcsntx.swbell.net] has quit [Quit: hadronzoo] 00:48:24 morning 00:50:35 evening 00:55:05 -!- Pohsul [Pohsul@83.231.16.46] has quit [Ping timeout: 260 seconds] 01:00:14 -!- Axioplase_ is now known as Axioplase 01:07:03 -!- mbohun [~mbohun@202.124.72.146] has quit [Quit: Leaving] 01:11:33 emma [~em@unaffiliated/emma] has joined #scheme 01:12:41 -!- saint_cypher [~saint_cyp@dsl081-240-057.sfo1.dsl.speakeasy.net] has quit [Ping timeout: 245 seconds] 01:13:10 http://tauday.com/ 01:13:45 Matrox [~Matrox@unaffiliated/matrox] has joined #scheme 01:19:56 *foof* was sold on Euler's formula, despite reservations about the circle area formula 01:20:24 He lost me at "circle". :-) 01:25:19 -!- emma [~em@unaffiliated/emma] has quit [Ping timeout: 276 seconds] 01:28:15 -!- MrFahrenheit [~RageOfTho@users-55-39.vinet.ba] has quit [Ping timeout: 252 seconds] 01:30:20 -!- xwl_ [~user@esprx01x.nokia.com] has quit [Remote host closed the connection] 01:38:06 jcowan [~John@cpe-98-14-172-204.nyc.res.rr.com] has joined #scheme 01:40:28 *jcowan* unvanishes 01:47:42 xwl_ [~user@esprx01x.nokia.com] has joined #scheme 01:48:56 -!- Matrox [~Matrox@unaffiliated/matrox] has quit [Quit: Leaving] 02:01:29 toast` [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has joined #scheme 02:02:42 toast-prime [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has joined #scheme 02:02:42 -!- toast` [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has quit [Read error: Connection reset by peer] 02:02:43 -!- toast-prime is now known as toast` 02:04:56 -!- toast` [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has quit [Client Quit] 02:19:34 why is www.opendylan.org and www.gwydiondylan.org down? 02:21:09 conspiracy? 02:21:37 eldragon: http://downforeveryoneorjustme.com/www.gwydiondylan.org 02:21:46 i don't know 02:23:22 skld [~skld@unaffiliated/skld] has joined #scheme 02:23:40 -!- skld [~skld@unaffiliated/skld] has left #scheme 02:23:41 -!- Thomas_H [~Thomas_H@66.183.224.178] has quit [Ping timeout: 240 seconds] 02:25:55 it was probably taken down by angry linux users, bemoaning the fact that the IDE is windows only. 02:26:09 it may be because they are both poiting to the same ip... it's a tragedy of the identity... 02:27:07 Probably just neglect. 02:27:17 emma [~em@unaffiliated/emma] has joined #scheme 02:30:31 neglect? in germany? impossible! oh, well, at least they are better than english in soccing. 02:30:56 incubot: how do you feel about football? 02:31:01 I feel that way about bridge -- except, of course, I play with my wife. (But it's a game for four.) 02:31:58 yoopie for all three colours of the rainbow. 02:34:34 -!- rudybot [~luser@2001:470:1:41:a800:ff:fe3e:cde7] has quit [Remote host closed the connection] 02:45:44 mbohun [~mbohun@202.124.72.146] has joined #scheme 02:52:34 timj__ [~timj@e176198058.adsl.alicedsl.de] has joined #scheme 02:56:43 -!- timj_ [~timj@e176197058.adsl.alicedsl.de] has quit [Ping timeout: 265 seconds] 02:57:39 ysph [~user@adsl-221-198-35.mgm.bellsouth.net] has joined #scheme 02:58:32 toast` [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has joined #scheme 03:20:08 dz0004455 [~dz0004455@c-98-198-92-3.hsd1.tx.comcast.net] has joined #scheme 03:29:55 -!- xwl_ [~user@esprx01x.nokia.com] has quit [Remote host closed the connection] 03:30:28 xwl_ [~user@esprx01x.nokia.com] has joined #scheme 03:43:02 hohoho [~hohoho@p4ae269.tokynt01.ap.so-net.ne.jp] has joined #scheme 03:45:57 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 03:46:31 Quadrescence [~Quad@unaffiliated/quadrescence] has joined #scheme 03:49:17 -!- asarch [~asarch@189.188.144.192] has quit [Quit: Leaving] 03:50:41 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 03:52:16 jonrafkind [~jon@c-67-172-254-235.hsd1.ut.comcast.net] has joined #scheme 03:55:06 -!- nego [~nego@c-76-16-30-244.hsd1.il.comcast.net] has quit [Quit: Lost terminal] 03:57:33 -!- dz0004455 [~dz0004455@c-98-198-92-3.hsd1.tx.comcast.net] has quit [Remote host closed the connection] 04:01:34 -!- adu [~ajr@pool-71-191-173-125.washdc.fios.verizon.net] has quit [Quit: adu] 04:01:34 Thomas_H [~Thomas_H@66.183.224.178] has joined #scheme 04:02:25 RyanRN [~Adium@pool-173-48-250-140.bstnma.fios.verizon.net] has joined #scheme 04:05:24 saint_cypher [~saint_cyp@c-76-126-70-224.hsd1.ca.comcast.net] has joined #scheme 04:05:42 neilv [~user@dsl092-071-029.bos1.dsl.speakeasy.net] has joined #scheme 04:05:55 adu [~ajr@pool-71-191-173-125.washdc.fios.verizon.net] has joined #scheme 04:17:26 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Quit: leaving] 04:18:14 MichaelRaskin [~MichaelRa@pantagruel.mccme.ru] has joined #scheme 04:18:18 -!- jcowan [~John@cpe-98-14-172-204.nyc.res.rr.com] has left #scheme 04:19:52 -!- bgs100 is now known as bgs000 04:27:25 minglis [~minglis@ppp178-149.static.internode.on.net] has joined #scheme 04:28:58 -!- minglis [~minglis@ppp178-149.static.internode.on.net] has quit [Client Quit] 04:38:44 -!- pookleblinky [~pookle@cpe-67-252-154-25.buffalo.res.rr.com] has quit [Remote host closed the connection] 04:40:04 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Ping timeout: 240 seconds] 04:41:28 -!- ysph [~user@adsl-221-198-35.mgm.bellsouth.net] has quit [Ping timeout: 276 seconds] 04:44:11 -!- virl [~virl__@chello062178085149.1.12.vie.surfer.at] has quit [Remote host closed the connection] 04:47:04 weird. whether the jit is enabled seems to be having little or no effect 04:50:43 -!- cpr420 [~cpr@unaffiliated/cpr420] has quit [Quit: Bye!] 04:52:00 Michael_Mohamed [~Mohamdu@CPE00222d53fe20-CM00222d53fe1d.cpe.net.cable.rogers.com] has joined #scheme 04:52:04 ok, i know the problem 04:53:43 -!- Mohamdu [~Mohamdu@CPE00222d53fe20-CM00222d53fe1d.cpe.net.cable.rogers.com] has quit [Ping timeout: 265 seconds] 04:58:55 cpr420 [~cpr@unaffiliated/cpr420] has joined #scheme 05:06:21 araujo [~araujo@gentoo/developer/araujo] has joined #scheme 05:06:44 R3cur51v3 [~Recursive@173-29-151-107.client.mchsi.com] has joined #scheme 05:16:07 -!- nicktick [debian-tor@gateway/tor-sasl/nicktick] has quit [Remote host closed the connection] 05:19:26 dz0004455 [~dz0004455@c-98-198-92-3.hsd1.tx.comcast.net] has joined #scheme 05:25:03 -!- toast` [~toast`@c-71-227-233-160.hsd1.wa.comcast.net] has quit [Quit: toast`] 05:33:04 -!- jonrafkind [~jon@c-67-172-254-235.hsd1.ut.comcast.net] has quit [Ping timeout: 260 seconds] 05:33:05 anyone knows rudimentary perl? 05:33:28 *foof* 05:34:00 What's the equivalent of `cat $some_file'? 05:34:42 -!- somnium` [~user@adsl-65-186-229.dab.bellsouth.net] has quit [Read error: Connection reset by peer] 05:34:47 system("cat $somefile") will work 05:35:11 Nothing more "proper"? 05:35:28 print `cat $somefile` would be a slower more round-about way to do it 05:35:42 The template code I used works fine -- but it grabs the file into a variable, then prints that. 05:35:57 So I'm looking for something that doesn't make me twitch... 05:37:10 if system() makes you twitch, you could loop and print chunks of the input at a time 05:37:11 elderK [~kae@pdpc/supporter/active/elderk] has joined #scheme 05:37:17 or use http://search.cpan.org/~addi/IO-SendFile-0.01/SendFile.pm 05:37:36 hmmm... that only works on linux :/ 05:39:22 OK, that sendfile thingconvinced me that I should stick to what it does now... 05:39:27 but no, there's nothing builtin for copying input from one file/stream to an output stream 05:39:28 s/ngco/ng co/ 05:40:26 perl6 has a slurp function, but that's what you're doing now 05:41:02 Yeah, and if avoiding it is such a pain, then I won't... 05:41:32 -!- m``_ [~m@usealice.org] has quit [Remote host closed the connection] 05:41:46 m`` [~m@usealice.org] has joined #scheme 05:43:16 -!- elderK [~kae@pdpc/supporter/active/elderk] has quit [Quit: Leaving] 05:43:47 kar8nga [~kar8nga@91-115-218-143.adsl.highway.telekom.at] has joined #scheme 05:44:40 -!- R3cur51v3 [~Recursive@173-29-151-107.client.mchsi.com] has quit [Ping timeout: 276 seconds] 05:54:37 nicktick [debian-tor@gateway/tor-sasl/nicktick] has joined #scheme 05:54:44 does racket have anything builtin for this? 05:55:24 hm. anyone know the performance overhead to calling into a c extension from plt? i have what should be optimal scheme code, but the jit'd pure scheme implementation beats it 05:55:49 s/optimal scheme/optimal c/ 05:57:15 -!- ASau [~user@83.69.227.32] has quit [Quit: off] 06:00:47 Then it's not optimal :) 06:02:52 bombshelter13b [~bombshelt@76-10-149-209.dsl.teksavvy.com] has joined #scheme 06:04:01 elderK [~kae@pdpc/supporter/active/elderk] has joined #scheme 06:13:10 foof: Yes -- `copy-port'. 06:13:20 it takes a file as an argument? 06:13:37 No, but there's `call-with-input-file' too... 06:14:07 neilv: This depends on how many rounds you're doing to the C code and back. Obviously, a tight loop that calls out to C won't do too well. 06:14:11 foof pasted "perl cat utility" at http://paste.lisp.org/display/111970 06:14:46 -!- nicktick [debian-tor@gateway/tor-sasl/nicktick] has quit [Ping timeout: 245 seconds] 06:15:03 the actual port copying part there is the one line in the middle with while sysread ... 06:15:31 foof: That's definitely way too heave for what I need... 06:15:50 one line is too heavy? 06:16:13 The file that is displayed is about 2k, so reading it is just the same anyway. 06:16:22 nicktick [debian-tor@gateway/tor-sasl/nicktick] has joined #scheme 06:18:55 oh, if you really want to slurp a file into memory the canonical idiom is: 06:19:15 {local $/=undef; open(IN, $filename); print ; close(IN);} 06:19:46 now that we're using scgi and i got rid of various other expensive things in the app, our hot spot for page generation was this one function. i just sped it up by a factor of 50 for our typical data size, without using c 06:19:49 but if you don't care about performance anyway system or backquotes are more concise 06:20:03 maybe now we can get rid of the rest of our c code 06:20:14 *foof* is not defending perl, just pointing out its idioms 06:21:47 hm. our page generation must be literally hundreds of times faster now 06:27:56 foof: Well, I care about it in the same sense that you'd avoid accumulating a list by `append'ing items to its end even if you know that it's only a short list which is built twice... 06:28:16 But if it's idiomatic to just do that `print ', then that's fine... 06:28:32 JoelMcCracken [~joelmccra@pool-72-95-150-30.pitbpa.east.verizon.net] has joined #scheme 06:32:58 actually, that's usually when you're doing $str = 06:33:31 -!- lisppaste [~lisppaste@common-lisp.net] has quit [Ping timeout: 258 seconds] 06:33:55 if you just want to cat to STDOUT, I suspect system("cat $filename") would be most common 06:34:32 and if performance or filesize matters at all the one-line while loop 06:35:18 perl tends to use such syntax and operators instead of utility functions like copy-port 06:36:01 but there are lots of styles, and lots of _really_ bad perl code out there :/ 06:38:52 afterK [~kae@125-236-160-87.jetstream.xtra.co.nz] has joined #scheme 06:39:22 -!- afterK is now known as elderK_ 06:41:11 -!- minion [~minion@common-lisp.net] has quit [Ping timeout: 258 seconds] 06:42:04 -!- elderK [~kae@pdpc/supporter/active/elderk] has quit [Ping timeout: 260 seconds] 06:42:12 -!- elderK_ is now known as elderK 06:42:19 -!- elderK [~kae@125-236-160-87.jetstream.xtra.co.nz] has quit [Changing host] 06:42:19 elderK [~kae@pdpc/supporter/active/elderk] has joined #scheme 06:43:51 pookleblinky [~pookle@cpe-67-252-154-25.buffalo.res.rr.com] has joined #scheme 06:44:10 -!- aoh_ is now known as aoh 06:50:13 R3cur51v3 [~Recursive@173-29-151-107.client.mchsi.com] has joined #scheme 06:54:13 sladegen: speaking of which: that match has been touted as revenge for WWII, apparently. 06:56:23 -!- elderK [~kae@pdpc/supporter/active/elderk] has quit [Ping timeout: 260 seconds] 06:57:23 ASau [~user@77.246.231.201] has joined #scheme 06:59:15 -!- R3cur51v3 [~Recursive@173-29-151-107.client.mchsi.com] has quit [Ping timeout: 240 seconds] 07:00:03 if it were revenge wouldn't it be the other way around? 07:04:44 elderK [~kae@pdpc/supporter/active/elderk] has joined #scheme 07:07:31 foof: the fundamental laws of nature, common sens and even intelligent design do not apply to soccer. 07:10:08 -!- elderK [~kae@pdpc/supporter/active/elderk] has quit [Ping timeout: 260 seconds] 07:10:35 One of the few sports were players seldom make a _team_ and where you are incited to fall alone cry like a wimpy whenever someone gets too close to you, as well as to behave extremely arrogantly whenever you happen to put the ball into the goal. 07:10:50 And you get paid millions for that. 07:11:25 At least, when I watch pro wrestling, I know it's a show 07:11:49 *Axioplase* likes real *team* sports, like volley ball. 07:13:27 soccer is fun to watch, but the falls are really annoying 07:14:44 Are there penalties in other sports, for refusing to play by the rules? 07:15:00 Like suspensions, or fines ? 07:15:37 Getting paid for not being honest, what kind of model is that? 07:18:35 other sports are more precise, and will use computer equipment and instant replays to verify fouls, so taking a dive does nothing but make you look like a fool 07:18:56 -!- dz0004455 [~dz0004455@c-98-198-92-3.hsd1.tx.comcast.net] has quit [Ping timeout: 245 seconds] 07:25:22 -!- kar8nga [~kar8nga@91-115-218-143.adsl.highway.telekom.at] has quit [Remote host closed the connection] 07:29:03 -!- pookleblinky [~pookle@cpe-67-252-154-25.buffalo.res.rr.com] has quit [Ping timeout: 260 seconds] 07:29:41 pookleblinky [~pookle@cpe-67-252-154-25.buffalo.res.rr.com] has joined #scheme 07:41:28 jgracin [~jgracin@dh111-186.xnet.hr] has joined #scheme 07:49:13 schmir [~schmir@mail.brainbot.com] has joined #scheme 07:56:06 hi 08:07:44 -!- joast [~rick@76.178.178.72] has quit [Ping timeout: 240 seconds] 08:22:04 -!- neilv [~user@dsl092-071-029.bos1.dsl.speakeasy.net] has quit [Quit: Leaving] 08:24:02 joast [~rick@76.178.178.72] has joined #scheme 08:25:26 fradgers- [~fradgers-@5adb10a1.bb.sky.com] has joined #scheme 08:26:33 masm [~masm@2.80.128.210] has joined #scheme 08:53:24 tao-: oh, hai; you left your keys by the toaster 08:54:04 foof: that's relative to the bereaved, apparently. 08:55:16 i find it interesting that #racket is not a strict subset of #scheme 08:55:56 maybe racket has diverged into a solus ipse already 08:57:19 -!- mbohun [~mbohun@202.124.72.146] has quit [Quit: Leaving] 08:57:34 *foof* sees no #racket 08:58:06 oh.... /who just doesn't work if you don't join 08:58:16 interesting 09:06:28 -!- JoelMcCracken [~joelmccra@pool-72-95-150-30.pitbpa.east.verizon.net] has quit [Quit: This computer has gone to sleep] 09:06:28 lvillani [~lvillani@fedora/lvillani] has joined #scheme 09:14:46 -!- Thomas_H [~Thomas_H@66.183.224.178] has quit [Read error: Connection reset by peer] 09:15:11 /list does work, but is of little help 09:15:24 -!- Axioplase [~Axioplase@fortigate.kb.ecei.tohoku.ac.jp] has quit [Quit: Reconnecting] 09:15:29 Axioplase [~Axioplase@fortigate.kb.ecei.tohoku.ac.jp] has joined #scheme 09:15:57 don't forget to add "#racket" after "/list" 09:18:00 -!- schmir [~schmir@mail.brainbot.com] has quit [Remote host closed the connection] 09:23:50 -!- nicktick [debian-tor@gateway/tor-sasl/nicktick] has quit [Changing host] 09:23:50 nicktick [debian-tor@unaffiliated/nicktick] has joined #scheme 09:23:50 -!- nicktick [debian-tor@unaffiliated/nicktick] has quit [Changing host] 09:23:50 nicktick [debian-tor@gateway/tor-sasl/nicktick] has joined #scheme 09:24:55 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 09:26:27 Pohsul [Pohsul@83.231.85.208] has joined #scheme 09:28:07 stis [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 09:28:38 alvatar [~alvatar@194.233.218.87.dynamic.jazztel.es] has joined #scheme 09:35:52 -!- nicktick [debian-tor@gateway/tor-sasl/nicktick] has quit [Remote host closed the connection] 09:36:49 schmir [~schmir@mail.brainbot.com] has joined #scheme 09:40:49 mbohun [~mbohun@ppp115-156.static.internode.on.net] has joined #scheme 09:45:22 HG` [~HG@xdsl-92-252-52-220.dip.osnanet.de] has joined #scheme 10:02:37 kar8nga [~kar8nga@91-115-211-212.adsl.highway.telekom.at] has joined #scheme 10:09:55 -!- kar8nga [~kar8nga@91-115-211-212.adsl.highway.telekom.at] has quit [Remote host closed the connection] 10:10:02 -!- jmcphers [~jmcphers@218.185.108.156] has quit [Remote host closed the connection] 10:26:09 -!- Axioplase is now known as Axioplase_ 10:27:04 antoszka [~antoszka@unaffiliated/antoszka] has joined #scheme 10:36:36 sepult [~user@xdsl-87-79-140-143.netcologne.de] has joined #scheme 10:51:28 -!- m`` [~m@usealice.org] has quit [Ping timeout: 260 seconds] 10:57:47 mns [~mns@c-76-119-251-7.hsd1.ma.comcast.net] has joined #scheme 10:58:44 does anyone know of a scheme based html generator ? I seem to recall such a thing, and can even visualise the web page for it, I just can't remember the name of it !! 11:03:55 perhaps SXML 11:06:37 -!- sepult [~user@xdsl-87-79-140-143.netcologne.de] has quit [Read error: Connection reset by peer] 11:09:20 sepult [~user@xdsl-87-79-140-143.netcologne.de] has joined #scheme 11:09:25 no it was not that. 11:09:52 it was not just html that it did. damn I wish I had it bookmarked. 11:10:24 mns: what features beyond what SXML gives you did it provide? 11:11:40 mns: HOP perhaps? 11:12:39 rotty: I don't remember now, all I know is it was not SXML. 11:12:56 DerGuteMoritz: HOP ? 11:12:57 mns: http://hop.inria.fr/ 11:13:10 don't know if it's any good :-) 11:15:53 or maybe http://chicken.wiki.br/eggref/4/awful :-) 11:17:33 DerGuteMoritz: It wasn't hop, but it was from inria. I followed the Bigloo link and came to Skribe. That is what it was. It was skribe. but the link is broken :( at least now I remember what it was :) 11:18:49 maybe archive.org can help you 11:19:01 perhaps they have abandoned it in favor of HOP 11:20:45 hrr4 [~hrr4@88-202-52-9.ip.skylogicnet.com] has joined #scheme 11:22:56 nope found it. 11:23:13 its there, just that the link from the bigloo site is broken. google though found it :) 11:23:27 thanks for the help folks 11:25:40 yw! 11:28:09 klutometis: good thing there is EU, then, or we'd have another world war on our hands... 11:30:24 sladegen: or, perhaps: good thing there are surrogate testosterone-sinks like soccer. it's probably a soft form of castration and may prevent outright killing. 11:30:32 s/soccer/football/ 11:30:48 sepult` [~user@xdsl-87-79-140-143.netcologne.de] has joined #scheme 11:31:43 apache keeps serving my .scm files as `application/vnd.lotus-screencam', by the way; what's an appropriate mime: text/plain; text/x-scheme? 11:32:10 well, there was soccer and olimpics in the two world wars interregnum, did not help much... 11:32:21 heh; good point 11:32:29 -!- sepult [~user@xdsl-87-79-140-143.netcologne.de] has quit [Ping timeout: 240 seconds] 11:34:04 xwl [~user@123.115.118.91] has joined #scheme 11:39:19 MononcQc [~Ferd@modemcable062.225-20-96.mc.videotron.ca] has joined #scheme 11:41:14 luz [~davids@189.60.69.82] has joined #scheme 12:03:08 jonrafkind [~jon@c-67-172-254-235.hsd1.ut.comcast.net] has joined #scheme 12:06:26 MrFahrenheit [~RageOfTho@users-55-241.vinet.ba] has joined #scheme 12:09:29 -!- schmir [~schmir@mail.brainbot.com] has quit [Remote host closed the connection] 12:11:23 schmir [~schmir@mail.brainbot.com] has joined #scheme 12:15:59 asarch [~asarch@189.188.145.217] has joined #scheme 12:23:11 neo-the_one [~one@121.246.205.153] has joined #scheme 12:25:49 -!- eli [~eli@winooski.ccs.neu.edu] has quit [Ping timeout: 264 seconds] 12:26:01 -!- hrr4 [~hrr4@88-202-52-9.ip.skylogicnet.com] has quit [Quit: Lost terminal] 12:27:01 -!- adzuci [~ada2358@login.ccs.neu.edu] has quit [Ping timeout: 276 seconds] 12:28:30 adzuci [~ada2358@login.ccs.neu.edu] has joined #scheme 12:49:49 -!- hohoho [~hohoho@p4ae269.tokynt01.ap.so-net.ne.jp] has quit [Ping timeout: 264 seconds] 12:51:12 nicktick [~na@unaffiliated/nicktick] has joined #scheme 12:52:45 -!- nicktick [~na@unaffiliated/nicktick] has quit [Client Quit] 12:53:22 somnium [~user@adsl-65-186-229.dab.bellsouth.net] has joined #scheme 12:56:16 -!- dfkjjkfd [~paulh@109-13-ftth.onsnetstudenten.nl] has quit [Quit: Lost terminal] 12:57:49 nicktick [debian-tor@gateway/tor-sasl/nicktick] has joined #scheme 12:57:57 yes hello 13:03:21 -!- adu [~ajr@pool-71-191-173-125.washdc.fios.verizon.net] has quit [Quit: adu] 13:03:23 Poh [Pohsul@83.231.82.21] has joined #scheme 13:03:25 -!- tao- [tao@anapnea.net] has quit [Killed (idoru (Spam is off topic on freenode.))] 13:04:35 RageOfThou [~RageOfTho@users-55-241.vinet.ba] has joined #scheme 13:06:01 -!- Pohsul [Pohsul@83.231.85.208] has quit [Ping timeout: 264 seconds] 13:06:34 -!- sepult` [~user@xdsl-87-79-140-143.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 13:06:53 -!- abusead [~abusead@CPE001cf068222b-CM0014e825df0e.cpe.net.cable.rogers.com] has quit [Quit: Lost terminal] 13:07:08 -!- MrFahrenheit [~RageOfTho@users-55-241.vinet.ba] has quit [Ping timeout: 260 seconds] 13:07:30 abusead [~abusead@CPE001cf068222b-CM0014e825df0e.cpe.net.cable.rogers.com] has joined #scheme 13:07:58 -!- Poh is now known as Pohsul 13:08:50 yes hello 13:08:55 MrFahrenheit [~RageOfTho@users-55-241.vinet.ba] has joined #scheme 13:11:39 sepult [~user@xdsl-87-79-140-143.netcologne.de] has joined #scheme 13:11:51 -!- RageOfThou [~RageOfTho@users-55-241.vinet.ba] has quit [Ping timeout: 245 seconds] 13:19:45 -!- samth_away is now known as samth 13:23:05 fod [~fod@92.251.255.6.threembb.ie] has joined #scheme 13:24:15 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Ping timeout: 240 seconds] 13:25:58 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 13:28:56 m`` [~m@usealice.org] has joined #scheme 13:33:32 -!- sepult [~user@xdsl-87-79-140-143.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 13:39:01 Dawgmatix [~dman@c-76-124-9-27.hsd1.nj.comcast.net] has joined #scheme 13:41:00 -!- neo-the_one [~one@121.246.205.153] has quit [Ping timeout: 260 seconds] 13:43:34 sepult [~user@xdsl-87-79-140-143.netcologne.de] has joined #scheme 13:44:03 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Ping timeout: 240 seconds] 13:44:04 -!- asarch [~asarch@189.188.145.217] has quit [Read error: Connection reset by peer] 13:44:48 yes hello 13:45:01 -!- Pohsul [Pohsul@83.231.82.21] has quit [Read error: Connection reset by peer] 13:45:21 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 13:45:23 asarch [~asarch@189.188.145.217] has joined #scheme 13:45:33 Pohsul [Pohsul@83.231.91.95] has joined #scheme 13:46:31 -!- sepult [~user@xdsl-87-79-140-143.netcologne.de] has quit [Read error: Connection reset by peer] 13:47:34 dzhus [~sphinx@95-26-147-250.broadband.corbina.ru] has joined #scheme 13:48:29 no, tschuess 13:58:31 neo-the_one [~one@121.246.205.153] has joined #scheme 14:03:49 -!- alvatar [~alvatar@194.233.218.87.dynamic.jazztel.es] has quit [Quit: leaving] 14:11:31 -!- Pohsul [Pohsul@83.231.91.95] has quit [Ping timeout: 276 seconds] 14:12:48 JoelMcCracken [~joelmccra@pool-72-95-150-30.pitbpa.east.verizon.net] has joined #scheme 14:13:31 -!- bombshelter13b [~bombshelt@76-10-149-209.dsl.teksavvy.com] has quit [Quit: bombshelter13b] 14:17:33 -!- nicktick [debian-tor@gateway/tor-sasl/nicktick] has quit [Remote host closed the connection] 14:18:40 sepult [~user@xdsl-87-79-140-143.netcologne.de] has joined #scheme 14:24:01 -!- neo-the_one [~one@121.246.205.153] has quit [Quit: Leaving] 14:25:55 -!- sepult [~user@xdsl-87-79-140-143.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 14:25:57 -!- leppie [~lolcow@196-210-200-215.dynamic.isadsl.co.za] has quit [Ping timeout: 252 seconds] 14:27:49 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Disconnected by services] 14:27:59 sladegen [~nemo@unaffiliated/sladegen] has joined #scheme 14:31:42 -!- jgracin [~jgracin@dh111-186.xnet.hr] has quit [Quit: Ex-Chat]