00:37:15 ccl-logbot [~ccl-logbo@setf.clozure.com] has joined #scheme 00:37:15 00:37:15 -!- names: ccl-logbot weie araujo walter aranhoide adiii joneshf-laptop jerryzhou bjz pierpa tali713 lusory ehaliewicz alexei zeroish jao MrFahrenheit ffio pygospa wbooze jrapdx fridim_ bananagram mmc1 Kabaka stamourv ripplebit ASau`` MichaelRaskin karswell leppie ericmathison sad0ur DerGuteMoritz Nisstyre taylanub yacks ijp StephenS roderic Okasu ecloud_ githogori BossKonaSegwaY preflex b4283 cosmez certainty Riastradh jaimef sethalves gabot carleastlund 00:37:15 -!- names: brianloveswords YoungFrog fgudin dsp_ kniu LeoNerd pjb ELLIOTTCABLE amoe tommylommykins LAMMJohnson offby1 clog inarru aoh ohama rgrau DeadZen ecraven copec rudybot ivan\ cky entitativity SeySayux astertronistic amgarching asumu zbigniew gnomon gf3 danking muep_ waxysubs cpach sharkbir2 Triclops256|away shardz klutometis snarkyboojum_ krig_ tizoc noam_ eMBee mario-goulart kryptiskt Natch antoszka fizzie arbscht ggherdov simon rotty Razz jkraemer_ 00:37:15 -!- names: pchrist joast cross InvalidCo tessier Khisanth numeral kbtr stamourv` ve dan64 brendyn cibs acieroid SHODAN dpk Saeren ft epsylon eli seantallen yosafbridge fadein ski Reisen mmc turbofail ozzloy samth_away inarru_ finnrobi em Blice wrl mrowe aeth jrslepak microcode hive-mind rapacity micro` m4burns nitefli aking ineiros evhan twem2 duncanm fds z0d blz37 C-Keen felipe 00:40:33 -!- ijp [~user@host81-155-30-200.range81-155.btcentralplus.com] has quit [Quit: The garbage collector got me] 00:54:26 -!- Okasu [~1@unaffiliated/okasu] has quit [Quit: leaving] 01:02:38 hi 01:02:51 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Quit: Changing server] 01:06:54 -!- pierpa [~user@host204-228-dynamic.51-79-r.retail.telecomitalia.it] has quit [Ping timeout: 246 seconds] 01:11:18 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 01:11:23 hi 01:11:43 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Client Quit] 01:13:16 bipt [~bpt@cpe-071-070-253-241.nc.res.rr.com] has joined #scheme 01:15:02 tcsc [~tcsc@c-76-127-240-20.hsd1.ct.comcast.net] has joined #scheme 01:15:04 jcowan [~jcowan@mail.digitalkingdom.org] has joined #scheme 01:22:53 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 01:28:49 -!- tcsc [~tcsc@c-76-127-240-20.hsd1.ct.comcast.net] has quit [Quit: bye!] 01:32:54 jonrafkind [~jon@racket/jonrafkind] has joined #scheme 01:33:45 hi 01:33:50 i have a question 01:35:00 is it the same question that you asked two hours and twenty minutes ago? 01:35:08 Because if so, I have the same answers. 01:35:10 yeah 01:35:25 well, that saved some time. 01:35:26 no such file or directory ,racket 01:37:20 -!- alexei [~amgarchin@p4FD63CB0.dip0.t-ipconnect.de] has quit [Ping timeout: 256 seconds] 01:40:17 so 01:40:25 do you know that 01:47:57 -!- ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has quit [Read error: No route to host] 01:51:54 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 01:55:02 -!- ffio [~fire@unaffiliated/security] has quit [Ping timeout: 268 seconds] 01:55:12 ffio_ [~fire@unaffiliated/security] has joined #scheme 01:58:57 jeremyheiler [~jeremyhei@cpe-72-230-245-1.rochester.res.rr.com] has joined #scheme 02:10:59 -!- jeremyheiler [~jeremyhei@cpe-72-230-245-1.rochester.res.rr.com] has quit [Quit: Computer has gone to sleep.] 02:43:23 -!- mmc1 [~michal@j212142.upc-j.chello.nl] has quit [Ping timeout: 240 seconds] 02:49:03 annodomini [~lambda@c-76-23-156-75.hsd1.ma.comcast.net] has joined #scheme 02:49:03 -!- annodomini [~lambda@c-76-23-156-75.hsd1.ma.comcast.net] has quit [Changing host] 02:49:03 annodomini [~lambda@wikipedia/lambda] has joined #scheme 02:56:44 b4284 [~b4284@42-72-110-200.dynamic-ip.hinet.net] has joined #scheme 02:57:31 -!- jcowan [~jcowan@mail.digitalkingdom.org] has quit [Ping timeout: 256 seconds] 02:59:54 jcowan [~jcowan@mail.digitalkingdom.org] has joined #scheme 03:15:35 stepnem [~stepnem@internet2.cznet.cz] has joined #scheme 03:19:23 I've been thinking about what functional-update functions for immutable pairs should look like. 03:19:41 My current idea is (set-car root pair newval) and (set-cdr root pair newval) 03:20:39 The idea is that it searches starting at root until it finds a path to pair, and then makes a new pair with the new car/cdr and the old cdr/car (as the case may be) and then copies all ancestors back to root and returns the new root. 03:21:38 So (list-set list index newval) becomes (set-car list (list-ref list index) newval). 03:21:46 Does that make sense? 03:24:12 Why the traversal? 03:24:25 Why not (set-car pair a) = (cons a (cdr pair))? 03:25:12 The names are not well-chosen, I grant. But I think the behaviors are good ones to have, because they recognize that pairs aren't usually used just as 2-tuples, but as components of lists, trees, and DAGs. 03:25:37 Application? 03:26:40 "Persistent" (I hate that word) lists/trees/dags on a system where immutable pairs are more efficient than mutable ones due to system optimizations. 03:27:06 Application? 03:27:16 -!- MrFahrenheit [~RageOfTho@77.221.25.95] has quit [Ping timeout: 246 seconds] 03:27:48 I'm only willing to answer that question once, because you can iterate it indefinitely until I am reduced to saying "In order to make the Universe a better place" or some similar remark. 03:27:54 I mean to ask for a real application with real working code that people use that you can point to, not just hypothesize about. 03:28:49 Any application that almost never, but not quite never, mutates pairs, running on an implementation where &c. 03:29:42 `Real application'? `Real working code'? `Not just hypothesize about'? 03:32:14 Such a demand would have prevented Scheme, or even R2RS Scheme, from being created at all. 03:33:14 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has quit [Ping timeout: 255 seconds] 03:33:43 preflex_ [~preflex@unaffiliated/mauke/bot/preflex] has joined #scheme 03:34:27 -!- preflex_ is now known as preflex 03:34:31 No, I don't think so. 03:35:02 Mmm, on reflection you are right about R2RS, but what applications existed for Scheme when the first interpreter was created? 03:35:32 -!- BossKonaSegwaY [~Michael@72.49.0.102] has quit [Read error: Connection reset by peer] 03:35:34 Scheme arose from clarifying ideas that were incoherently (and redundantly) expressed in prior applications. 03:35:58 BossKonaSegwaY [~Michael@72.49.0.102] has joined #scheme 03:36:06 What you are describing is a solution in search of a problem. You've characterized various qualities of the problem, but you haven't identified one. 03:37:26 In other languages people use this solution because it is readily available to them in a prepackaged way. It is not available in a prepackaged way in Scheme. 03:37:38 Therefore, people find a different way to do the same thing, or express it ad hoc. 03:38:56 Aha! What other languages are these, and what are the uses you are referring to? 03:43:43 Apparently it is a degenerate case of a zipper, as (it seems) often used in Haskell. I cannot point to specific Haskell applications using zippers, because I am not familiar at that level of detail with the Haskell ecosystem. 03:47:03 Why don't you find some applications in Haskell that express ideas you would like to see expressed in Scheme? 03:47:45 cdidd [~cdidd@176.14.36.221] has joined #scheme 03:53:26 -!- annodomini [~lambda@wikipedia/lambda] has quit [Quit: annodomini] 03:53:58 Gaining a deep understanding of how various Haskell applications are written, in order to figure how they do what they do, and how they might do it better, involves more effort than seems to me necessary. 03:54:41 Even if the average Haskell app is shorter than the average Java app, say, I'd still rather spend the time understanding what Java libraries provide than worrying about which parts of them happen not to be frequently used. 03:56:08 Granted that I may perpetuate some dords that way, I think the price of that is small. 04:10:05 tenq [~hatFolk@ip68-100-228-234.dc.dc.cox.net] has joined #scheme 04:18:56 -!- ripplebit [~ripplebit@host-80-43-193-214.as13285.net] has quit [Read error: Connection reset by peer] 04:28:16 gravicappa [~gravicapp@ppp91-77-171-244.pppoe.mtu-net.ru] has joined #scheme 04:31:23 -!- bananagram [~bot@c-76-30-158-226.hsd1.tx.comcast.net] has quit [Ping timeout: 240 seconds] 04:36:37 -!- b4284 [~b4284@42-72-110-200.dynamic-ip.hinet.net] has quit [Read error: Connection reset by peer] 04:37:47 amca [~amca@CPE-121-208-80-15.cqzr1.cha.bigpond.net.au] has joined #scheme 04:54:01 -!- aranhoide [~smuxi@228.Red-81-32-77.dynamicIP.rima-tde.net] has quit [Ping timeout: 276 seconds] 04:54:42 b4284 [~b4284@116.59.241.211] has joined #scheme 05:09:10 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Quit: Leaving] 05:11:27 waaron [~aaron@108-200-63-17.lightspeed.mssnks.sbcglobal.net] has joined #scheme 05:18:28 -!- waaron [~aaron@108-200-63-17.lightspeed.mssnks.sbcglobal.net] has left #scheme 05:20:51 -!- gravicappa [~gravicapp@ppp91-77-171-244.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 05:21:08 gravicappa [~gravicapp@ppp91-77-171-244.pppoe.mtu-net.ru] has joined #scheme 05:21:39 -!- jcowan [~jcowan@mail.digitalkingdom.org] has quit [Quit: Leaving] 05:25:29 waaron [~aaron@108-200-63-17.lightspeed.mssnks.sbcglobal.net] has joined #scheme 05:40:26 -!- ffio_ [~fire@unaffiliated/security] has quit [Quit: WeeChat 0.4.1] 05:43:34 -!- amca [~amca@CPE-121-208-80-15.cqzr1.cha.bigpond.net.au] has left #scheme 05:43:58 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 05:44:22 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Client Quit] 05:44:30 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has quit [Remote host closed the connection] 05:46:14 preflex [~preflex@unaffiliated/mauke/bot/preflex] has joined #scheme 06:18:58 -!- ecloud_ [~quassel@cm-84.208.147.184.getinternet.no] has quit [Ping timeout: 256 seconds] 06:36:50 -!- jonrafkind [~jon@racket/jonrafkind] has quit [Ping timeout: 255 seconds] 06:37:06 pnpuff [~coc@unaffiliated/pnpuff] has joined #scheme 06:47:47 AriaMK [~user@c-71-193-24-118.hsd1.ca.comcast.net] has joined #scheme 06:59:30 -!- waaron [~aaron@108-200-63-17.lightspeed.mssnks.sbcglobal.net] has quit [Quit: leaving] 07:02:24 -!- yacks [~py@180.151.36.168] has quit [Read error: Connection reset by peer] 07:11:47 -!- pnpuff [~coc@unaffiliated/pnpuff] has quit [Quit: "self defined idiot bird"] 07:16:56 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 07:20:09 -!- weie [~eie@softbank221078042071.bbtec.net] has quit [Read error: Connection reset by peer] 07:20:40 weie [~eie@softbank221078042071.bbtec.net] has joined #scheme 07:24:27 bokr [~ed@109.110.51.184] has joined #scheme 07:24:33 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Quit: Leaving] 07:25:07 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Ping timeout: 264 seconds] 07:42:04 jewel [~jewel@105-236-178-139.access.mtnbusiness.co.za] has joined #scheme 07:50:22 bjz_ [~brendanza@125.253.99.68] has joined #scheme 07:50:39 -!- bjz [~brendanza@125.253.99.68] has quit [Read error: Connection reset by peer] 07:59:33 -!- wbooze [~wbooze@xdsl-84-44-209-223.netcologne.de] has quit [Ping timeout: 246 seconds] 08:04:19 wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has joined #scheme 08:08:06 Okasu [~1@unaffiliated/okasu] has joined #scheme 08:09:11 -!- bokr [~ed@109.110.51.184] has quit [Quit: Leaving.] 08:45:47 -!- SeySayux [SeySayux@libsylph/developer/seysayux] has quit [Ping timeout: 252 seconds] 08:48:39 SeySayux [SeySayux@libsylph/developer/seysayux] has joined #scheme 08:54:34 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 09:08:46 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 09:09:00 pnpuff [~coc@unaffiliated/pnpuff] has joined #scheme 09:18:08 mmc1 [~michal@j212142.upc-j.chello.nl] has joined #scheme 09:18:32 -!- pnpuff [~coc@unaffiliated/pnpuff] has quit [Quit: leaving] 09:21:42 dioxirane [~coc@gateway/tor-sasl/dioxirane] has joined #scheme 09:25:07 -!- dioxirane [~coc@gateway/tor-sasl/dioxirane] has quit [Client Quit] 09:26:50 dioxirane [~thesoundo@gateway/tor-sasl/dioxirane] has joined #scheme 09:30:08 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Remote host closed the connection] 09:35:25 yacks [~py@180.151.36.168] has joined #scheme 09:42:35 add^_ [~user@m5-241-140-202.cust.tele2.se] has joined #scheme 09:42:50 Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has joined #scheme 09:43:47 -!- yacks [~py@180.151.36.168] has quit [Ping timeout: 256 seconds] 09:44:48 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Quit: Leaving] 09:49:09 -!- dioxirane [~thesoundo@gateway/tor-sasl/dioxirane] has quit [Ping timeout: 240 seconds] 09:50:23 dioxirane [~ff@gateway/tor-sasl/dioxirane] has joined #scheme 10:01:05 wbooze [~wbooze@xdsl-84-44-155-240.netcologne.de] has joined #scheme 10:01:43 -!- adiii [~adityavit@204.195.151.211] has quit [Ping timeout: 246 seconds] 10:03:28 -!- Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has quit [Ping timeout: 246 seconds] 10:14:45 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 10:14:59 alexei [~amgarchin@p4FD6193C.dip0.t-ipconnect.de] has joined #scheme 10:25:20 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Quit: Leaving] 10:30:37 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 10:34:49 -!- dioxirane [~ff@gateway/tor-sasl/dioxirane] has quit [Quit: leaving] 10:46:47 Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has joined #scheme 10:57:54 -!- Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 11:01:30 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Quit: Leaving] 11:01:30 -!- wbooze [~wbooze@xdsl-84-44-155-240.netcologne.de] has quit [Quit: none] 11:07:02 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 11:16:06 ventonegro [~alex@134-125.195-178.cust.bluewin.ch] has joined #scheme 11:22:39 -!- Kabaka [~Kabaka@botters/kabaka] has quit [Excess Flood] 11:24:31 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 11:25:44 Kabaka [~Kabaka@botters/kabaka] has joined #scheme 11:31:48 -!- ventonegro [~alex@134-125.195-178.cust.bluewin.ch] has quit [Quit: ventonegro] 11:42:42 pnpuff [~ff@unaffiliated/pnpuff] has joined #scheme 12:04:43 eni [~eni@gob75-5-82-230-88-217.fbx.proxad.net] has joined #scheme 12:11:17 -!- tenq [~hatFolk@ip68-100-228-234.dc.dc.cox.net] has quit [Quit: Leaving] 12:16:33 -!- eni [~eni@gob75-5-82-230-88-217.fbx.proxad.net] has quit [Ping timeout: 248 seconds] 12:31:08 Kackao [~Kackao@p5DC97367.dip0.t-ipconnect.de] has joined #scheme 12:32:05 MrFahrenheit [~RageOfTho@77.221.25.95] has joined #scheme 12:33:41 wbooze [~wbooze@xdsl-84-44-155-240.netcologne.de] has joined #scheme 12:46:35 yacks [~py@180.151.36.168] has joined #scheme 12:47:14 Ainee [~eivo@94.25.229.74] has joined #scheme 12:47:24 hello 12:48:01 i want to implement async io in terms of continuations, is it possible? 12:49:41 In the language, continuations are just functions, so I'm inclined to say it should be possible. :P 12:50:02 I have no idea how async IO is normally done; via "call-back" procedures ? 12:51:58 I suppose with continuations you could build something interesting where you write usual code that seems as if it would block, but all calls to blocking functions implicitly use call/cc to intervine the execution of other parts of the program, until the blocking call is finished and the linear code continues to be executed at the next pause of whatever is now running. 12:53:05 In functional languages, I usually think of doing async communication via channel primitives, i.e. the way concurrent ML does it. Racket has those kinds of things in it. They use threads, which behind the scenes may be implemented with continuations, but manually doing the continuation plumbing would probably be a nightmare. 12:53:50 (Off the top of my head I don't know if any of the Scheme standards have that kind of thing, I have not gotten greatly familiar with R6 or the R7 drafts.) 12:54:15 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Quit: Leaving] 12:58:03 ventonegro [~alex@134-125.195-178.cust.bluewin.ch] has joined #scheme 12:58:08 ok, thanks guys. 13:02:05 -!- Ainee [~eivo@94.25.229.74] has quit [Quit: leaving] 13:16:05 BW^- [~Miranda@5-15-169-31.residential.rdsnet.ro] has joined #scheme 13:18:16 guys, i'm having an incredible memory leak error in a stop and copy GC environment - 13:18:30 so, the ordinary GC:s are induced in the code locations where the object allocation happens. 13:18:48 somehow, these GC calls maintain alive references from earlier code, in such a way that a constant heap growth happens = memory leak. 13:19:21 however, if i manually induce a GC from the REPL, then that object reference situation is dissolved, and the heap resets to its intended size. (!!) 13:19:43 if you have any spontaneous idea about how GC-technically this can happen, feel free to share. 13:20:58 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 13:20:58 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Changing host] 13:20:58 jeapostrophe [~jay@racket/jeapostrophe] has joined #scheme 13:21:46 civodul [~user@gateway/tor-sasl/civodul] has joined #scheme 13:23:35 jonrafkind [~jon@racket/jonrafkind] has joined #scheme 13:24:27 hm 13:29:04 davexunit [~user@pool-71-162-75-84.bstnma.east.verizon.net] has joined #scheme 13:30:15 -!- ventonegro [~alex@134-125.195-178.cust.bluewin.ch] has quit [Quit: ventonegro] 13:50:28 -!- taylanub [tub@p4FD92229.dip0.t-ipconnect.de] has quit [Disconnected by services] 13:51:04 taylanub [tub@p4FD91AC0.dip0.t-ipconnect.de] has joined #scheme 13:52:59 jcowan [~jcowan@mail.digitalkingdom.org] has joined #scheme 13:53:17 annodomini [~lambda@c-76-23-156-75.hsd1.ma.comcast.net] has joined #scheme 13:53:17 -!- annodomini [~lambda@c-76-23-156-75.hsd1.ma.comcast.net] has quit [Changing host] 13:53:17 annodomini [~lambda@wikipedia/lambda] has joined #scheme 13:54:40 -!- b4284 [~b4284@116.59.241.211] has quit [Remote host closed the connection] 13:55:01 b4284 [~b4284@116.59.241.211] has joined #scheme 13:55:29 hoi 14:15:31 -!- jonrafkind [~jon@racket/jonrafkind] has quit [Ping timeout: 264 seconds] 14:19:25 -!- annodomini [~lambda@wikipedia/lambda] has quit [Quit: annodomini] 14:21:45 pierpa [~user@host204-228-dynamic.51-79-r.retail.telecomitalia.it] has joined #scheme 14:23:37 Nisstyre-laptop [~yours@oftn/member/Nisstyre] has joined #scheme 14:26:42 jcowan, the operation you described last night makes no sense whatsoever in Haskell because pairs do not have identity. So I don't believe that it actually does have applications in Haskell. But if you want to point to actual Haskell programs, I could be persuaded that there is a similar operation that does make sense. 14:28:05 BW^-, you need to be a lot more specific about your problem. From what you described, you could just be observing one semispace slowly filling up with no reason to GC, since the GC need not kick in until the semispace is actually full. 14:29:35 taylanub, assuming threads (which ~every Scheme system has), you can use . 14:30:17 -!- Nisstyre [~yours@oftn/member/Nisstyre] has quit [Quit: Leaving] 14:30:41 -!- Nisstyre-laptop is now known as Nisstyre 14:31:19 riastradh: thanks for your reflection. i think i nailed it bynow . 14:31:55 Riastradh: I was speaking more generally about functional pairs. Of course they don't have identity; they don't have to have identity in Scheme either, if any system provides them natively (as Racket does) 14:31:55 Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has joined #scheme 14:33:57 annodomini [~lambda@c-76-23-156-75.hsd1.ma.comcast.net] has joined #scheme 14:33:57 -!- annodomini [~lambda@c-76-23-156-75.hsd1.ma.comcast.net] has quit [Changing host] 14:33:57 annodomini [~lambda@wikipedia/lambda] has joined #scheme 14:36:09 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 240 seconds] 14:36:59 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 14:37:20 -!- pnpuff [~ff@unaffiliated/pnpuff] has left #scheme 14:37:46 pnpuff [~ff@unaffiliated/pnpuff] has joined #scheme 14:40:26 -!- wbooze [~wbooze@xdsl-84-44-155-240.netcologne.de] has quit [Quit: none] 14:41:22 -!- pnpuff [~ff@unaffiliated/pnpuff] has quit [Quit: leaving] 14:46:49 wbooze [~wbooze@xdsl-84-44-155-240.netcologne.de] has joined #scheme 15:06:06 ijp [~user@host81-155-30-200.range81-155.btcentralplus.com] has joined #scheme 15:09:04 ffio [~fire@unaffiliated/security] has joined #scheme 15:10:47 -!- Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 15:10:59 Dehehe, I like it how easy this was to implement: http://sprunge.us/GSST?scheme Usage: http://sprunge.us/ZHNi 15:12:43 (Well that's Guile-specific. I guess it might be unobvious how `call-with-prompt' and `abort-to-prompt' work; they're primitives for delimited continuations.) 15:14:03 We will have delimited continuations in R7RS, but we don't have a specific proposal yet 15:14:56 *ijp* bites lip 15:19:50 Why? Speak, speak! 15:34:49 davexuni` [~user@pool-71-162-78-249.bstnma.east.verizon.net] has joined #scheme 15:36:19 -!- davexunit [~user@pool-71-162-75-84.bstnma.east.verizon.net] has quit [Ping timeout: 246 seconds] 15:38:45 Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has joined #scheme 15:45:18 -!- annodomini [~lambda@wikipedia/lambda] has quit [Quit: annodomini] 15:46:20 -!- MrFahrenheit [~RageOfTho@77.221.25.95] has quit [Read error: Operation timed out] 15:49:27 oh the suspense 15:49:51 ijp: cough up! 15:50:55 annodomini [~lambda@c-76-23-156-75.hsd1.ma.comcast.net] has joined #scheme 15:50:56 -!- annodomini [~lambda@c-76-23-156-75.hsd1.ma.comcast.net] has quit [Changing host] 15:50:56 annodomini [~lambda@wikipedia/lambda] has joined #scheme 15:50:56 Well ey also owns shift-reset.com .. must be some kind of delimited-continuation fetishist. 15:51:36 rudybot: shoot taylanub 15:51:38 taylanub: ,diagnose taylanub 15:51:48 Insulting enough, I presume. 15:56:57 -!- jao [~jao@pdpc/supporter/professional/jao] has quit [Ping timeout: 246 seconds] 15:58:33 gabot: slap taylanub 15:58:33 *gabot* slaps taylanub 15:58:45 taylanub: gabot does not share rudybot's pacifism. 15:59:01 -!- annodomini [~lambda@wikipedia/lambda] has quit [Quit: annodomini] 15:59:26 asr_ [~asr@c-76-126-245-217.hsd1.ca.comcast.net] has joined #scheme 16:01:56 -!- Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 16:07:53 -!- gravicappa [~gravicapp@ppp91-77-171-244.pppoe.mtu-net.ru] has quit [Ping timeout: 240 seconds] 16:14:53 gravicappa [~gravicapp@ppp91-77-172-38.pppoe.mtu-net.ru] has joined #scheme 16:20:15 -!- davexuni` [~user@pool-71-162-78-249.bstnma.east.verizon.net] has quit [Read error: Connection reset by peer] 16:20:51 annodomini [~lambda@wikipedia/lambda] has joined #scheme 16:22:04 -!- annodomini [~lambda@wikipedia/lambda] has quit [Client Quit] 16:22:10 -!- leppie [~lolcow@105-236-183-130.access.mtnbusiness.co.za] has quit [] 16:23:43 leppie [~lolcow@105-236-183-130.access.mtnbusiness.co.za] has joined #scheme 16:27:45 -!- yacks [~py@180.151.36.168] has quit [Ping timeout: 246 seconds] 16:30:16 emctoo [b6959bd3@gateway/web/freenode/ip.182.149.155.211] has joined #scheme 16:32:10 -!- emctoo [b6959bd3@gateway/web/freenode/ip.182.149.155.211] has quit [Client Quit] 16:32:14 stamourv: gabot can't compete with fsbot in terms of firepower 16:32:46 How many blammos per minute? 16:35:02 According to my scientific measurements: lots 16:36:46 So what's your proposal for delimited continuations already, ijp? 16:37:03 nmeum [~nmeum@141.101.32.125] has joined #scheme 16:37:25 Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has joined #scheme 16:37:57 mine would be tagged shift-reset, in the fashion of racket/control's shift-at reset-at 16:38:25 but that wasn't why I was biting my lip 16:38:58 Oh, okay, why then? 16:39:08 because the whole situation is very silly 16:40:03 -!- BW^- [~Miranda@5-15-169-31.residential.rdsnet.ro] has quit [Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org] 16:40:26 -!- nmeum [~nmeum@141.101.32.125] has left #scheme 16:48:08 -!- dpk [~r00t@obquire.infologie.co] has quit [Ping timeout: 252 seconds] 16:48:56 or because he has an overbite 16:49:16 calisthenics and orthodontia: running lite without overbyte 16:49:20 (former title of DDJ) 16:49:32 (former title of former DDJ) 16:52:55 -!- Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 16:53:47 aranhoide [~smuxi@228.Red-81-32-77.dynamicIP.rima-tde.net] has joined #scheme 16:58:16 *offby1* nods gravely 17:00:05 jcowan: you, sir, might well enjoy https://plus.google.com/photos/110719264043637716066/albums/5890662981764780609?authkey=CJ7km-2Wg7_CUg 17:00:05 http://tinyurl.com/l7w6ukc 17:01:12 Thanks. Wow, never seen a PDP-12 in the flesh (so to speak) before. 17:02:39 I didn't even know they _existed_. 17:03:08 They've got a DEC-20, and a fellow there who (I believe) said he's gonna get TOPS-20 emacs working ... 17:03:32 I didn't know *that* existed. ITS emacs, yes, obviously. 17:03:48 Still, in a world containing RSTS/E Teco, anything is possible. 17:04:08 Teco on the bare metal, yes! 17:04:12 I used TOPS-20 emacs back in 1985 17:04:23 Not sure if I knew any other flavor before then, but I suspect I did 17:05:28 i was born in 1985, lol 17:06:00 A PDP-12 is basically a boxxus that can either be a PDP-8 or thug for J.H. Blair ^W^W^W^W^W LINC computer. 17:06:06 But not both at the same time, alas. 17:06:39 And when it gets an interrupt in LINC mode, it switches to 8 mode, so you need an interrupt handler if you are running LINC software that does interrupts. 17:06:43 -!- brianloveswords [~brianlove@li124-154.members.linode.com] has quit [Excess Flood] 17:07:07 brianloveswords [~brianlove@li124-154.members.linode.com] has joined #scheme 17:09:13 http://weblog.raganwald.com/2006/07/hiring-juggler_02.html <-- similar, happier outcome 17:10:36 tupi [~user@189.122.59.95] has joined #scheme 17:10:40 dpk [~r00t@obquire.infologie.co] has joined #scheme 17:11:06 Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has joined #scheme 17:11:39 es917 [~es@pool-71-106-162-5.lsanca.dsl-w.verizon.net] has joined #scheme 17:11:43 -!- Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has quit [Client Quit] 17:20:10 -!- es917 [~es@pool-71-106-162-5.lsanca.dsl-w.verizon.net] has quit [Quit: es917] 17:28:43 jeremyheiler [~jeremyhei@cpe-72-230-245-1.rochester.res.rr.com] has joined #scheme 17:38:59 -!- jcowan [~jcowan@mail.digitalkingdom.org] has quit [Quit: Leaving] 17:39:38 yacks [~py@180.151.36.168] has joined #scheme 17:44:58 MrFahrenheit [~RageOfTho@77.221.25.95] has joined #scheme 17:51:35 -!- b4284 [~b4284@116.59.241.211] has quit [Remote host closed the connection] 17:54:09 -!- alexei [~amgarchin@p4FD6193C.dip0.t-ipconnect.de] has quit [Ping timeout: 248 seconds] 17:55:16 -!- ffio [~fire@unaffiliated/security] has quit [Ping timeout: 246 seconds] 17:59:30 Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has joined #scheme 17:59:42 alexei [~amgarchin@p4FD6193C.dip0.t-ipconnect.de] has joined #scheme 18:00:15 NihilistDandy [~ND@c-24-128-161-213.hsd1.nh.comcast.net] has joined #scheme 18:02:21 davexunit [~user@c-71-232-35-199.hsd1.ma.comcast.net] has joined #scheme 18:03:57 Kruppe [~user@CPE602ad0938e9a-CM602ad0938e97.cpe.net.cable.rogers.com] has joined #scheme 18:04:20 -!- Kruppe is now known as Guest22771 18:12:58 -!- Guest22771 [~user@CPE602ad0938e9a-CM602ad0938e97.cpe.net.cable.rogers.com] has quit [Remote host closed the connection] 18:13:03 ffio [~fire@unaffiliated/security] has joined #scheme 18:13:05 adiii [~adityavit@204.195.151.211] has joined #scheme 18:22:16 xuser [xuser@unaffiliated/xuser] has joined #scheme 18:23:19 jcp` [~user@CPE602ad0938e9a-CM602ad0938e97.cpe.net.cable.rogers.com] has joined #scheme 18:29:16 -!- jcp` [~user@CPE602ad0938e9a-CM602ad0938e97.cpe.net.cable.rogers.com] has quit [Quit: rcirc on GNU Emacs 24.3.1] 18:30:05 -!- jeapostrophe [~jay@racket/jeapostrophe] has quit [Ping timeout: 255 seconds] 18:33:30 ASau``` [~user@p4FF96CC6.dip0.t-ipconnect.de] has joined #scheme 18:37:44 -!- ASau`` [~user@p4FF9635C.dip0.t-ipconnect.de] has quit [Ping timeout: 268 seconds] 18:48:57 tcsc [~tcsc@76.127.240.20] has joined #scheme 18:54:31 -!- Natch [~Natch@c-10cfe155.25-4-64736c10.cust.bredbandsbolaget.se] has quit [Read error: Connection reset by peer] 18:55:14 Natch [~Natch@c-10cfe155.25-4-64736c10.cust.bredbandsbolaget.se] has joined #scheme 19:00:44 -!- Cromulent [~Cromulent@cpc1-reig5-2-0-cust251.6-3.cable.virginmedia.com] has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/] 19:06:48 -!- xuser [xuser@unaffiliated/xuser] has left #scheme 19:07:58 -!- Nisstyre [~yours@oftn/member/Nisstyre] has quit [Quit: Leaving] 19:09:20 -!- jewel [~jewel@105-236-178-139.access.mtnbusiness.co.za] has quit [Ping timeout: 256 seconds] 19:11:51 -!- NihilistDandy [~ND@c-24-128-161-213.hsd1.nh.comcast.net] has quit [Quit: NihilistDandy] 19:11:56 -!- aranhoide [~smuxi@228.Red-81-32-77.dynamicIP.rima-tde.net] has quit [Ping timeout: 255 seconds] 19:20:09 NihilistDandy [~ND@c-24-128-161-213.hsd1.nh.comcast.net] has joined #scheme 19:22:58 martijn` [~martin@199.47.72.30] has joined #scheme 19:27:51 -!- Kabaka [~Kabaka@botters/kabaka] has quit [Excess Flood] 19:28:19 spon [~wat@h197.27.55.139.dynamic.ip.windstream.net] has joined #scheme 19:30:51 Kabaka [~Kabaka@botters/kabaka] has joined #scheme 19:38:56 -!- jrapdx [~jra@c-98-246-145-216.hsd1.or.comcast.net] has quit [Remote host closed the connection] 19:42:10 jrapdx [~jra@c-98-246-145-216.hsd1.or.comcast.net] has joined #scheme 19:44:15 -!- stepnem [~stepnem@internet2.cznet.cz] has quit [Quit: ZNC - http://znc.sourceforge.net] 19:45:27 javax [~javax@46.246.126.38] has joined #scheme 19:48:56 -!- jeremyheiler [~jeremyhei@cpe-72-230-245-1.rochester.res.rr.com] has quit [Read error: Connection reset by peer] 19:51:03 walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has joined #scheme 19:53:12 -!- walter [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has quit [Ping timeout: 246 seconds] 19:56:58 jeremyheiler [~jeremyhei@cpe-72-230-245-1.rochester.res.rr.com] has joined #scheme 19:59:01 Gr1zzly [Grizzly@ABayonne-651-1-342-84.w90-11.abo.wanadoo.fr] has joined #scheme 20:01:43 -!- davexunit [~user@c-71-232-35-199.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 20:10:23 -!- martijn` [~martin@199.47.72.30] has quit [Ping timeout: 240 seconds] 20:11:28 -!- wbooze [~wbooze@xdsl-84-44-155-240.netcologne.de] has quit [Ping timeout: 268 seconds] 20:14:20 wbooze [~wbooze@xdsl-78-35-129-178.netcologne.de] has joined #scheme 20:18:29 martijn` [~martin@199.47.72.30] has joined #scheme 20:21:44 -!- pygospa [~Pygosceli@kiel-4d06651c.pool.mediaWays.net] has quit [Disconnected by services] 20:21:54 TheRealPygo [~Pygosceli@kiel-4d067ec4.pool.mediaWays.net] has joined #scheme 20:26:41 -!- bipt [~bpt@cpe-071-070-253-241.nc.res.rr.com] has quit [Ping timeout: 248 seconds] 20:30:07 -!- javax [~javax@46.246.126.38] has left #scheme 20:32:05 -!- martijn` [~martin@199.47.72.30] has quit [Quit: WeeChat 0.4.0] 20:32:30 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 20:37:12 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Client Quit] 20:38:15 newtothis [~chatzilla@77.126.133.146] has joined #scheme 20:45:08 -!- em [~em@unaffiliated/emma] has quit [Ping timeout: 245 seconds] 20:45:22 em [~em@unaffiliated/emma] has joined #scheme 20:51:57 -!- blz37 [~minsa@c-24-130-180-195.hsd1.ca.comcast.net] has quit [Quit: WeeChat 0.4.1] 21:00:58 -!- gravicappa [~gravicapp@ppp91-77-172-38.pppoe.mtu-net.ru] has quit [Ping timeout: 256 seconds] 21:01:51 -!- ohama [ohama@cicolina.org] has quit [Ping timeout: 260 seconds] 21:02:40 -!- walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has quit [Read error: Connection reset by peer] 21:02:54 ohama [ohama@cicolina.org] has joined #scheme 21:03:33 walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has joined #scheme 21:04:06 -!- bjz_ [~brendanza@125.253.99.68] has quit [Quit: Leaving...] 21:05:52 ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has joined #scheme 21:10:52 jerryzhou [~jerryzhou@58.245.253.218] has joined #scheme 21:18:01 -!- spon [~wat@h197.27.55.139.dynamic.ip.windstream.net] has quit [Quit: Leaving] 21:19:52 jao [~jao@208.Red-193-153-230.dynamicIP.rima-tde.net] has joined #scheme 21:19:55 -!- jao [~jao@208.Red-193-153-230.dynamicIP.rima-tde.net] has quit [Changing host] 21:19:56 jao [~jao@pdpc/supporter/professional/jao] has joined #scheme 21:23:52 -!- fridim_ [~fridim@65.93.78.88] has quit [Read error: Connection reset by peer] 21:28:11 -!- tcsc [~tcsc@76.127.240.20] has quit [Quit: computer sleeping] 21:29:38 -!- jerryzhou [~jerryzhou@58.245.253.218] has quit [Quit: Leaving] 21:30:46 -!- walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has quit [Read error: Connection reset by peer] 21:32:08 walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has joined #scheme 21:34:00 -!- walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has quit [Read error: Connection reset by peer] 21:34:38 walter|r [~walter@c-24-218-217-69.hsd1.ma.comcast.net] has joined #scheme 21:37:14 fridim_ [~fridim@65.93.78.88] has joined #scheme 21:43:23 RageOfThou [~RageOfTho@77.221.25.95] has joined #scheme 21:44:27 -!- MrFahrenheit [~RageOfTho@77.221.25.95] has quit [Read error: Operation timed out] 21:50:18 -!- ijp [~user@host81-155-30-200.range81-155.btcentralplus.com] has quit [Quit: The garbage collector got me] 21:51:38 tcsc [~tcsc@c-76-127-240-20.hsd1.ct.comcast.net] has joined #scheme 21:51:56 -!- civodul [~user@gateway/tor-sasl/civodul] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 22:07:50 -!- wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has quit [Ping timeout: 256 seconds] 22:12:23 -!- eMBee [~eMBee@foresight/developer/pike/programmer] has quit [Ping timeout: 240 seconds] 22:19:05 -!- tcsc [~tcsc@c-76-127-240-20.hsd1.ct.comcast.net] has quit [Quit: bye!] 22:19:18 tcsc [~tcsc@c-76-127-240-20.hsd1.ct.comcast.net] has joined #scheme 22:26:23 -!- TheRealPygo is now known as pygospa 22:33:18 bipt [~bpt@cpe-071-070-253-241.nc.res.rr.com] has joined #scheme 22:34:04 -!- newtothis [~chatzilla@77.126.133.146] has quit [Quit: ChatZilla 0.9.90 [Firefox 21.0/20130511120803]] 22:34:18 -!- Okasu [~1@unaffiliated/okasu] has quit [Quit: leaving] 22:37:24 -!- astertronistic [~astertron@ip70-181-235-122.sd.sd.cox.net] has quit [Quit: Leaving] 22:38:30 bjz [~brendanza@125.253.99.68] has joined #scheme 22:43:40 dsevilla [~user@66.Red-79-151-177.dynamicIP.rima-tde.net] has joined #scheme 23:20:12 -!- Kackao [~Kackao@p5DC97367.dip0.t-ipconnect.de] has quit [Remote host closed the connection] 23:31:30 -!- jeremyheiler [~jeremyhei@cpe-72-230-245-1.rochester.res.rr.com] has quit [Quit: Computer has gone to sleep.] 23:34:54 -!- bjz [~brendanza@125.253.99.68] has quit [Quit: Bye!] 23:35:05 bjz [~brendanza@125.253.99.68] has joined #scheme 23:39:25 -!- dsevilla [~user@66.Red-79-151-177.dynamicIP.rima-tde.net] has quit [Remote host closed the connection] 23:46:48 edw [~edw@cpe-67-250-41-96.nyc.res.rr.com] has joined #scheme