00:00:30 I don't know what `simulated singleton entries' means, but in any case, it doesn't really matter what ENV's value is initially: (1) you assign it a new value before control even passes to FOLDR, and (2) even if Scheme evaluates the last argument in the call to FOLDR first, ENV, unless the list is empty, FOLDR won't itself have any use for that argument, because the `procedure' is bogus anyway. 00:00:41 if at all you need to wrap that set! in some lambda. it's not haskell. 00:00:56 Eekdacat, so why do you feel the need to assign ENV at all? 00:01:57 also it's foldl not foldr 00:02:08 annodomini [n=lambda@c-75-69-96-104.hsd1.nh.comcast.net] has joined #scheme 00:02:20 because it needs to check symbols' values against ENV 00:02:37 Can you explain to me what FOLDL does? 00:03:02 a = 2, b = 4; a = b + 3, b = a + 2; should evaluate to a = 7 and b = 9 at the end; without updating env, it would be a = 7 and b = 4 00:03:05 it doesn't matter if it's a boy or a girl. you aren't even on the third base... 00:04:54 so, essentially, Eekdacat, you are trying to emulate let* in scheme? 00:07:17 -!- a-s [n=user@92.80.109.26] has quit [Remote closed the connection] 00:07:24 -!- kib2 [n=kib@bd137-1-82-228-159-28.fbx.proxad.net] has quit ["Quitte"] 00:12:44 well it's a bit more complicated than that 00:13:17 types are assigned to each symbol as well as a value 00:13:46 but all that works properly when doing a single expression 00:13:55 Eekdacat, can you explain what FOLDL does? 00:16:01 raikov [n=igr@203.181.243.11] has joined #scheme 00:16:37 builds up a return value by applying the function over and over with an initial value being passed in 00:17:10 Can you define FOLDL? 00:17:41 i know that it's what would be needed in this case over foldr 00:19:32 vorpal [n=rhunter@pdpc/supporter/student/vorpal] has joined #scheme 00:19:42 sctb [n=sctb@S01060016cbc2d41a.cg.shawcable.net] has joined #scheme 00:20:08 Adamant [n=Adamant@c-98-244-152-196.hsd1.ga.comcast.net] has joined #scheme 00:20:19 -!- bpt [n=bpt@cpe-071-070-209-067.nc.res.rr.com] has quit [Read error: 104 (Connection reset by peer)] 00:20:47 -!- fschwidom [n=fschwido@dslb-084-059-133-031.pools.arcor-ip.net] has quit [Remote closed the connection] 00:21:10 bpt [n=bpt@cpe-071-070-209-067.nc.res.rr.com] has joined #scheme 00:21:25 Riastradh: Did you try to break MAKE-SKIP-LIST-TYPE into pieces? Is this faster or slower? 00:22:58 Sorry, I should throw in some context. You say that you want MAKE-SKIP-LIST-TYPE (in your skip-list code) to be one big procedure in order to allow for specialization of ELEMENT->KEY and KEY (foldl (lambda (x y) (set! Env (eval-statement y x))) P Env) 00:23:33 Eekdacat, what do x and y denote here? 00:23:50 p being a list of expressions, env being environment 00:24:18 Great googley moogley, Eekdacat. 00:24:24 yagur [n=yyaaa@211.109.158.113] has joined #scheme 00:24:41 eval-statement returns an updated environment 00:25:08 Eekdacat, what do x and y denote here? 00:25:48 x denotes an element in P, an expression 00:26:16 y not denoting env in the way i want somehow 00:26:34 What does FOLDL do with the value that the procedure you passed it returns? 00:27:07 I'm feeling a sudden urge to use rudybot.... 00:27:26 arcfide, I have never tried to break MAKE-SKIP-LIST-TYPE into separate pieces; it would be a waste of time. 00:27:46 puts it through the procedure again with the next element in P 00:28:03 i could probably get it done with a map if i really wanted to 00:28:08 Eekdacat, and what is `it' here? What does it denote? 00:28:16 Eekdacat, no, MAP is inappropriate here; FOLDL is appropriate. 00:28:55 arcfide, you are welcome to attempt breaking MAKE-SKIP-LIST-TYPE into pieces, but it will either bloat the code (wasting your time to write it) or slow the code (wasting the machine's time to run it). 00:29:35 npe [n=npe@32.97.110.64] has joined #scheme 00:29:36 oh wait 00:29:37 i'm silly 00:29:47 Eekdacat, suddenly feeling less inclined to use SET! at all here? 00:29:52 gweiqi [n=greg@69.120.126.163] has joined #scheme 00:30:50 obviously 00:30:51 but 00:30:56 i also had foldl definition backwards 00:31:06 You had the arguments reversed? 00:31:54 yeah 00:31:57 but it's still broken 00:32:18 I do that all the time. The arguments to folding abstractions are a mess -- they vary from library to library, language to language, &c. 00:32:37 foldl f base l 00:33:31 -!- hotblack23 [n=jh@p5B057ED3.dip.t-dialin.net] has quit [Read error: 110 (Connection timed out)] 00:34:45 > (eval-statements '((a (NUM 1))(b (NUM 2))(c (NUM 3))) '((a <- 10 + a)(b <- 100 + b)(c <- c + 1000))) 00:34:45 ((a (NUM 11)) (b (NUM 102)) (c (NUM 1003))) 00:34:59 oh well that's a poor case 00:35:34 > (eval-statements '((a (NUM 1))(b (NUM 2))(c (NUM 3))) '((a <- b + c)(b <- a + a)(c <- b + b))) 00:35:34 ((a (NUM 5)) (b (NUM 10)) (c (NUM 20))) 00:36:30 arcfide, why do you ask about splitting MAKE-SKIP-LIST-TYPE into pieces? 00:37:43 -!- Lemonator [n=kniu@CMU-301252.WV.CC.CMU.EDU] has quit [Remote closed the connection] 00:38:17 kniu [n=kniu@LEMON.RES.CMU.EDU] has joined #scheme 00:41:26 -!- attila_lendvai [n=ati@catv-89-133-170-239.catv.broadband.hu] has quit [Read error: 110 (Connection timed out)] 00:47:18 -!- npe [n=npe@32.97.110.64] has quit [] 00:48:27 hmm is there an easy way to do cartesian products with lists 00:49:21 Yes, using FOLDR, MAP, and APPEND. 00:55:27 -!- wingo-tp [n=wingo@172.Red-88-17-204.staticIP.rima-tde.net] has quit [Read error: 113 (No route to host)] 00:56:06 heh; i remember once upon a time being hideously chastised by Riastradh for doing cartesian products with macros 00:56:11 alas, i was young 00:57:10 Alas? How might one avoid the misfortune of having been young, klutometis? 01:00:39 -!- hemulen [n=hemulen@cpe-069-134-114-252.nc.res.rr.com] has quit ["He rode off into the sunset. . ."] 01:01:33 Riastradh, I am analyzing the Skip List code because I want something fast to work with that isn't GPL. 01:01:51 MIT's RB Tree is GPL. 01:02:23 Is the skip list library the bottleneck in your program? 01:02:23 I was just trying to think about the code, and wondering what difference it would make. 01:02:40 It was in a previous program I used. 01:02:48 Specifically, deletion. 01:03:03 It would expand the inner loops, inhibiting the compiler, and that's all. 01:03:15 Riastradh: I'm not sure `alas' is apotropaic; the prenominate `alas' resigns to a desirable but pre-desirable state. 01:03:39 And would the red/black trees or weight-balanced trees not have been the bottleneck, arcfide? 01:04:00 No, but they would have been faster. 01:04:44 In this program case, the speed of the program was largely determined by how fast I could update and grab from my Priority Queue. 01:05:08 I may look at another structure designed more for PQ than general ordered data, though. 01:05:46 Try a heap. 01:06:09 I have seen those, but haven't had the time to test them. 01:06:18 Implement one. 01:06:34 I already have one laying around here, somewhere.... 01:07:11 -!- bombshelter13 [n=bombshel@209-161-229-68.dsl.look.ca] has quit [Remote closed the connection] 01:07:33 bombshelter13 [n=bombshel@209-161-229-68.dsl.look.ca] has joined #scheme 01:10:07 replor [n=replor@ntkngw375028.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 01:16:30 psygnisfive [n=psygnisf@c-71-57-164-119.hsd1.fl.comcast.net] has joined #scheme 01:16:42 -!- psygnisfive [n=psygnisf@c-71-57-164-119.hsd1.fl.comcast.net] has left #scheme 01:16:45 hadronzoo [n=hadronzo@pool-71-123-201-238.dllstx.fios.verizon.net] has joined #scheme 01:17:44 -!- felipe [n=felipe@my.nada.kth.se] has quit [Client Quit] 01:21:31 -!- BW^- [i=Miranda@79.138.188.52.bredband.tre.se] has quit [Read error: 110 (Connection timed out)] 01:29:31 saccade_ [n=saccade@65.78.24.47] has joined #scheme 01:33:35 -!- JohnnyL [i=JohnnyL@ool-182ddad4.dyn.optonline.net] has left #scheme 01:35:01 -!- Adamant [n=Adamant@unaffiliated/adamant] has quit [] 01:44:36 -!- tltstc` [n=nine@192.207.69.1] has quit [] 01:44:47 -!- sctb [n=sctb@S01060016cbc2d41a.cg.shawcable.net] has quit [Connection timed out] 01:53:47 proqesi [n=user@unaffiliated/proqesi] has joined #scheme 02:04:00 sctb [n=sctb@S01060016cbc2d41a.cg.shawcable.net] has joined #scheme 02:07:42 hmm what about 02:08:07 a procedure taking a number and a list, making a list where every element in the list repeats n number of times 02:16:34 so (fun 2 `(a b c)) would be (a a b b c c) 02:16:41 is there a way to do that in one function 02:16:46 procedure 02:17:13 jonrafkind [n=jon@c-98-202-86-149.hsd1.ut.comcast.net] has joined #scheme 02:17:35 I've had a look over at Plt-Scheme... pretty long list and I was just hoping to cut down on time if anybody can recommend a library for creating a *simple* web crawler 02:18:54 Eekdacat: yes there is 02:20:13 i'm guessing it's a mapped recursion 02:20:41 but how is the recursion kept within the scope of each element 02:21:41 try nested named lets 02:22:10 hmm 02:23:08 (define (num-times-list k L) (cond ((= k 0) ()) (else (append (cons (car L) ()) (num-times-list (- k 1) L)))) ) is it for one 02:23:59 calling append is going to prevent it from running in linear time 02:26:27 mejja [n=user@c-4db6e555.023-82-73746f38.cust.bredbandsbolaget.se] has joined #scheme 02:28:23 Eekdacat: you can do it with one named let as well 02:28:45 it helps to reverse the input list first. 02:29:26 anybody ? 02:30:33 CaptainMorgan: Well, you presumably want an HTTP client and some HTML/XML parsin routines. Search perhaps? 02:32:05 -!- melito [n=melito@70.99.250.82] has quit ["Leaving..."] 02:32:08 search library? hmm.. 02:32:09 k 02:32:54 I meant that you should search for an HTTP client and an HTML parser. 02:34:39 nice, thanks 02:36:40 -!- gaja [n=Gabriel@c-2791e355.017-40-6c6b7013.cust.bredbandsbolaget.se] has quit [Read error: 60 (Operation timed out)] 02:39:46 -!- geckosenator [n=sean@c-24-8-193-190.hsd1.co.comcast.net] has quit [Read error: 145 (Connection timed out)] 02:40:04 -!- kniu [n=kniu@LEMON.RES.CMU.EDU] has quit [Read error: 104 (Connection reset by peer)] 02:40:08 -!- Mr_Awesome [n=eric@isr5956.urh.uiuc.edu] has quit [Read error: 145 (Connection timed out)] 02:43:17 kniu [n=kniu@LEMON.RES.CMU.EDU] has joined #scheme 02:49:06 -!- kniu [n=kniu@LEMON.RES.CMU.EDU] has quit [Remote closed the connection] 02:53:55 kniu [n=kniu@LEMON.RES.CMU.EDU] has joined #scheme 02:56:09 Mr_Awesome [n=eric@c-98-212-143-245.hsd1.il.comcast.net] has joined #scheme 02:57:36 -!- underspecified [n=eric@softbank220043052011.bbtec.net] has quit [] 03:01:12 -!- johnnowak [n=johnnowa@207-38-171-48.c3-0.wsd-ubr1.qens-wsd.ny.cable.rcn.com] has quit [] 03:13:58 -!- vorpal [n=rhunter@pdpc/supporter/student/vorpal] has quit ["The incensed priests...continued to raise their voices, vituperating each other in bad Latin"] 03:20:56 felipe [n=felipe@my.nada.kth.se] has joined #scheme 03:27:03 -!- offby1 [n=user@q-static-138-125.avvanta.com] has quit [Remote closed the connection] 03:32:42 -!- proqesi [n=user@unaffiliated/proqesi] has quit [Read error: 113 (No route to host)] 03:34:56 -!- kniu [n=kniu@LEMON.RES.CMU.EDU] has quit [Remote closed the connection] 03:34:57 -!- mejja [n=user@c-4db6e555.023-82-73746f38.cust.bredbandsbolaget.se] has quit [Remote closed the connection] 03:35:00 kniu [n=kniu@LEMON.RES.CMU.EDU] has joined #scheme 03:36:53 -!- nowhere_man [i=pierre@pthierry.pck.nerim.net] has quit [Read error: 110 (Connection timed out)] 03:38:24 -!- sctb [n=sctb@S01060016cbc2d41a.cg.shawcable.net] has quit [Read error: 110 (Connection timed out)] 03:43:43 -!- tiglionabbit [n=tigliona@207.111.204.82] has quit [Read error: 60 (Operation timed out)] 03:46:37 -!- bombshelter13 [n=bombshel@209-161-229-68.dsl.look.ca] has quit [] 03:47:18 tiglionabbit [n=tigliona@75-101-24-112.static.dsltransport.net] has joined #scheme 03:47:44 offby1 [n=user@q-static-138-125.avvanta.com] has joined #scheme 03:48:09 -!- Eekdacat [i=Eekdacat@cpe-74-70-20-146.nycap.res.rr.com] has quit [] 03:51:51 -!- Mr_Awesome [n=eric@c-98-212-143-245.hsd1.il.comcast.net] has quit ["aunt jemima is the devil!"] 03:54:32 tiglionabbit_ [n=tigliona@75-101-24-112.static.dsltransport.net] has joined #scheme 03:54:41 -!- tiglionabbit [n=tigliona@75-101-24-112.static.dsltransport.net] has quit [Read error: 54 (Connection reset by peer)] 03:55:29 peter_12 [n=peter_12@S010600119506b129.gv.shawcable.net] has joined #scheme 03:57:31 -!- levi [n=user@levi.dsl.xmission.com] has quit [Read error: 60 (Operation timed out)] 04:03:07 -!- arcfide [n=arcfide@adsl-99-137-201-169.dsl.bltnin.sbcglobal.net] has quit ["Leaving"] 04:09:46 -!- indraastra [n=indraast@nat08.sjc1.metaweb.com] has left #scheme 04:25:35 AtnNn [n=welcome@modemcable230.56-56-74.mc.videotron.ca] has joined #scheme 04:32:24 -!- peter_12 [n=peter_12@S010600119506b129.gv.shawcable.net] has quit [] 04:39:10 -!- gweiqi [n=greg@69.120.126.163] has left #scheme 04:46:36 dakeyras_ [n=dakeyras@76-204-254-96.lightspeed.cicril.sbcglobal.net] has joined #scheme 04:47:25 -!- dakeyras_ [n=dakeyras@76-204-254-96.lightspeed.cicril.sbcglobal.net] has quit [Client Quit] 04:53:43 -!- tiglionabbit_ [n=tigliona@75-101-24-112.static.dsltransport.net] has quit [] 05:06:29 -!- hadronzoo [n=hadronzo@pool-71-123-201-238.dllstx.fios.verizon.net] has quit [] 05:09:04 benny` [n=benny@i577A0E03.versanet.de] has joined #scheme 05:09:54 -!- MichaelRaskin_ [n=raskin@gwh-1-177-mytn23k1.ln.rinet.ru] has quit ["Leaving."] 05:10:25 tjafk1 [n=timj@e176207238.adsl.alicedsl.de] has joined #scheme 05:18:29 -!- benny [n=benny@i577A0726.versanet.de] has quit [Read error: 110 (Connection timed out)] 05:18:39 la la la 05:19:11 BloomFilter [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has joined #scheme 05:19:13 lo de hodely 05:21:29 hey offby1 05:21:48 hi diddly hey, neighbor! 05:22:53 dudrenov [n=user@c-69-181-124-154.hsd1.ca.comcast.net] has joined #scheme 05:25:58 -!- replor [n=replor@ntkngw375028.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Read error: 113 (No route to host)] 05:26:24 DUM de dum 05:26:59 -!- tjafk2 [n=timj@e176214189.adsl.alicedsl.de] has quit [Read error: 110 (Connection timed out)] 05:27:32 offby1: my real life neighbor added me on facebook today, it's kinda weird 05:27:52 indeed 05:27:55 yes, facebook -is- weird 05:28:00 Mr_Awesome [n=eric@isr5956.urh.uiuc.edu] has joined #scheme 05:28:03 I've sent IMs to a guy who sits three feet from me 05:28:16 offby1: that's okay by me 05:29:20 Actually, I think it would be kind of neat if there were some kind of social networking tool specifically aimed for neighbourhood and municipal involvement. 05:29:48 Zzzzzz 05:29:50 You know, something that could easily be hosted on very low-end hardware, and leveraged some economic factor to encourage local participation, like area codes or something... 05:30:06 ...naaahhh. 05:30:07 -!- Daeken [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has quit [Read error: 110 (Connection timed out)] 05:30:18 on the other hand, I think it would be kind of neat if there were some kind of tool specifically aimed for neighbourhood lost pets 05:30:36 ? 05:30:54 offby1: like rent-a-cat? 05:31:01 naw, like find-a-cat 05:31:03 "Lost, one albino chinchilla, responds to 'Bub'; possibly feral"? 05:31:20 offby1: you mean, craigslist? 05:31:26 or like: hmm, I see a new grey longhaired cat hanging around; I wonder if someone's lost him 05:31:40 offby1: lot of false positives in athens, that's for sure 05:31:41 synx: that's probably the best thing that currently exists, ye 05:31:58 klutometis: oh, you're in Athens? I remember Athens. _Lots_ of unhappy feral cats :-| 05:31:59 best being debatable, but it's got a big pets section. 05:32:32 offby1: lived there for a year or so 05:32:37 That's a very good point, synx. 05:32:51 also lotsa cats in the little towns too. 05:32:55 Craigslist has more of a city-wide spread than a local municipal feel, though. 05:33:46 What they usually do, offby1, is have a central location for lost pets. A "shelter" if you will. You check at the shelter, report if you have a lost pet, or if you've lost one. Doesn't work too well. 05:34:03 -!- BloomFilter [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has quit [Read error: 60 (Operation timed out)] 05:34:19 only about 2% of people who lose or find a pet will think to look there. 05:35:07 That's their hard luck. Any method you used to get more of them using your social networking tool could be better used having them check the shelters. 05:35:24 Most cats that escape just disappear... they're pretty close to wild. 05:36:05 My cat is definitely not close to wild. 05:36:20 what about pigs and dogs: do they return to nature? 05:36:32 Eventually. They usually must be eaten first. 05:36:36 Mmmm, bacon. 05:36:45 Daeken [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has joined #scheme 05:37:09 thus the toy dog returns to wolf via a coyote's entrails 05:37:28 dogs do well if they can form a pack. 05:37:38 pigs, I wouldn't know. Doubt it though. 05:37:46 dog-packs of modern sub-wolves are hilarious, actually 05:38:01 almost naive and optimistic 05:38:28 hilarious until they start eating someone you know. 05:38:39 Nothing tears a family apart like a pack of wild dogs. 05:38:52 really? i'm thinking of l.a. packs, then, where they roam the streets looking for denny's 05:39:49 I'm totally lying actually, just for the purposes of quoting Jack Handey 05:40:03 jack handey is classic; good times, good times 05:40:17 eno__ [n=eno@adsl-70-137-160-58.dsl.snfc21.sbcglobal.net] has joined #scheme 05:40:19 synx, that statement teeters right on the edge of being either heart-wrenchingly poignant or absolutely hilarious. I think it's a sign that I'm a terrible person that I can't decide which. 05:40:20 i miss him and cave man lawyer 05:41:49 The flip side of leash laws is that all wild dogs are captured and euthanized, or shot on sight. 05:42:10 So I don't see many wild dogs like, anywhere. Couldn't say how they behave. 05:42:28 The few I've met seemed nice enough. 05:43:53 the few i've seen seem perpetually underway 05:44:15 They get a scent, and follow their nose forever. 05:44:59 -!- saccade_ [n=saccade@65.78.24.47] has quit ["This computer has gone to sleep"] 05:46:14 saccade_ [n=saccade@65.78.24.47] has joined #scheme 05:47:02 i don't know: i think dogs follow ideas first and olfacients second 05:50:08 I may have been talking about ideas. 05:50:36 *offby1* met a apparently-wild, yet thoroughly polite, wild dog in Mexico 05:51:09 watched us attentively, then as we walked back to town, kept about 20 yards ahead of us for the whole, rather long, walk 05:51:29 might have had a pup or two with her, too; it's as if she was escorting us into town, but stayed ahead of us 05:51:34 -!- eno [n=eno@nslu2-linux/eno] has quit [Read error: 110 (Connection timed out)] 05:53:30 I met a wild dog once while at a hospital. It was wandering across the grounds. Big black thing with triangle ears. Stopped to say hello to me all friendly like, then kept walking. Was at least 20 miles from that hospital to anywhere anyone would own a dog. 05:56:05 Was years ago though. Haven't really seen one since. 05:56:49 ramkrsna [n=ramkrsna@unaffiliated/ramkrsna] has joined #scheme 06:01:27 tiglionabbit [n=tigliona@adsl-70-143-79-168.dsl.pltn13.sbcglobal.net] has joined #scheme 06:12:43 -!- annodomini [n=lambda@wikipedia/lambda] has quit [] 06:16:34 underspecified [n=eric@clair16.naist.jp] has joined #scheme 06:16:47 -!- a1len [n=James@unaffiliated/a1len] has quit ["the young soldier fart his brother looked at each other, fart both knew that with love, fart truth, fart courage both would e] 06:17:34 -!- incubot [n=incubot@24.205.65.135] has quit [Read error: 104 (Connection reset by peer)] 06:19:22 a1len [n=James@unaffiliated/a1len] has joined #scheme 06:19:56 -!- tiglionabbit [n=tigliona@adsl-70-143-79-168.dsl.pltn13.sbcglobal.net] has quit [] 06:21:14 -!- underspecified [n=eric@clair16.naist.jp] has quit [Client Quit] 06:22:40 underspecified [n=eric@clair16.naist.jp] has joined #scheme 06:22:44 incubot [n=incubot@24.205.65.135] has joined #scheme 06:30:56 -!- Daeken [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has quit [Read error: 60 (Operation timed out)] 06:31:14 -!- AtnNn [n=welcome@modemcable230.56-56-74.mc.videotron.ca] has quit ["dream"] 06:36:08 duncanm: ping 06:36:57 Daeken [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has joined #scheme 06:44:31 -!- rotty [n=rotty@chello084114192192.1.15.vie.surfer.at] has quit [Read error: 54 (Connection reset by peer)] 07:07:35 -!- saccade_ [n=saccade@65.78.24.47] has quit [Read error: 104 (Connection reset by peer)] 07:07:48 saccade_ [n=saccade@65.78.24.47] has joined #scheme 07:10:44 tiglionabbit [n=tigliona@adsl-70-143-79-168.dsl.pltn13.sbcglobal.net] has joined #scheme 07:12:20 -!- tiglionabbit [n=tigliona@adsl-70-143-79-168.dsl.pltn13.sbcglobal.net] has quit [Client Quit] 07:22:56 geckosenator [n=sean@c-24-8-193-190.hsd1.co.comcast.net] has joined #scheme 07:23:29 -!- Daeken [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has quit [Read error: 60 (Operation timed out)] 07:25:05 Daeken [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has joined #scheme 07:25:13 tizoc_ [n=user@r190-135-24-24.dialup.adsl.anteldata.net.uy] has joined #scheme 07:33:43 elmex [n=elmex@e180065069.adsl.alicedsl.de] has joined #scheme 07:33:47 saccade__ [n=saccade@VPN-EIGHTY-NINE.MIT.EDU] has joined #scheme 07:34:01 BloomFilter [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has joined #scheme 07:34:06 eli: hey 07:35:41 -!- suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has quit [Read error: 104 (Connection reset by peer)] 07:36:03 suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has joined #scheme 07:41:23 -!- tizoc [n=user@r190-135-32-12.dialup.adsl.anteldata.net.uy] has quit [Read error: 110 (Connection timed out)] 07:41:55 -!- saccade_ [n=saccade@65.78.24.47] has quit [Read error: 110 (Connection timed out)] 07:43:22 duncanm: ping 07:43:29 eli: yes 07:45:10 la la la 07:47:18 -!- Daeken [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has quit [Read error: 110 (Connection timed out)] 07:47:24 -!- ramkrsna [n=ramkrsna@unaffiliated/ramkrsna] has quit [Read error: 104 (Connection reset by peer)] 07:47:25 eli? 07:54:19 -!- suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has quit [Read error: 104 (Connection reset by peer)] 07:54:40 suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has joined #scheme 07:58:11 fschwidom [n=fschwido@dslb-084-059-142-249.pools.arcor-ip.net] has joined #scheme 08:01:29 ecraven [n=nex@140.78.42.103] has joined #scheme 08:06:50 gaja [n=Gabriel@c-6084e555.017-40-6c6b7013.cust.bredbandsbolaget.se] has joined #scheme 08:07:46 -!- a1len [n=James@unaffiliated/a1len] has quit ["the young soldier fart his brother looked at each other, fart both knew that with love, fart truth, fart courage both would e] 08:07:48 ramkrsna [n=ramkrsna@unaffiliated/ramkrsna] has joined #scheme 08:12:12 -!- raikov [n=igr@203.181.243.11] has quit [Remote closed the connection] 08:17:28 -!- cracki [n=cracki@sglty.kawo2.RWTH-Aachen.DE] has quit ["The funniest things in my life are truth and absurdity."] 08:18:58 tiglionabbit [n=tigliona@adsl-70-143-79-168.dsl.pltn13.sbcglobal.net] has joined #scheme 08:26:49 ejs [n=eugen@nat.ironport.com] has joined #scheme 08:27:16 proqesi [n=user@unaffiliated/proqesi] has joined #scheme 08:28:19 -!- underspecified [n=eric@clair16.naist.jp] has quit [] 08:34:38 MelanomaSky [n=Melanoma@c-98-207-156-209.hsd1.ca.comcast.net] has joined #scheme 08:35:36 -!- suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has quit [Read error: 54 (Connection reset by peer)] 08:36:18 suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has joined #scheme 08:38:28 -!- fschwidom [n=fschwido@dslb-084-059-142-249.pools.arcor-ip.net] has quit [Read error: 104 (Connection reset by peer)] 08:39:03 fschwidom [n=fschwido@dslb-084-059-142-249.pools.arcor-ip.net] has joined #scheme 08:39:10 underspecified [n=eric@clair16.naist.jp] has joined #scheme 08:47:51 -!- saccade__ [n=saccade@VPN-EIGHTY-NINE.MIT.EDU] has quit [Read error: 110 (Connection timed out)] 08:47:52 cracki [n=cracki@sglty.kawo2.RWTH-Aachen.DE] has joined #scheme 08:59:27 athos [n=philipp@p54B86ADA.dip.t-dialin.net] has joined #scheme 09:01:34 orgy` [n=ratm_@pD9FFEAC4.dip.t-dialin.net] has joined #scheme 09:07:25 a1len [n=James@unaffiliated/a1len] has joined #scheme 09:15:23 hml [n=x@unaffiliated/hml] has joined #scheme 09:16:56 duncanm: ping 09:17:06 Nshag [i=user@Mix-Orleans-106-2-219.w193-248.abo.wanadoo.fr] has joined #scheme 09:32:08 -!- fschwidom [n=fschwido@dslb-084-059-142-249.pools.arcor-ip.net] has quit [Remote closed the connection] 09:32:43 fschwidom [n=fschwido@dslb-084-059-142-249.pools.arcor-ip.net] has joined #scheme 09:33:29 -!- geckosenator [n=sean@c-24-8-193-190.hsd1.co.comcast.net] has quit [Read error: 110 (Connection timed out)] 09:42:31 -!- Mr_SpOOn [n=Mr_SpOOn@89-97-102-218.ip17.fastwebnet.it] has quit ["Lost terminal"] 09:49:58 schmalbe [n=bernhard@p549A08C9.dip0.t-ipconnect.de] has joined #scheme 09:52:37 -!- suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has quit [Read error: 131 (Connection reset by peer)] 09:52:55 suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has joined #scheme 09:54:20 -!- tiglionabbit [n=tigliona@adsl-70-143-79-168.dsl.pltn13.sbcglobal.net] has quit [] 09:56:05 Mr_SpOOn [n=Mr_SpOOn@89-97-102-218.ip17.fastwebnet.it] has joined #scheme 10:04:54 orgy_ [n=ratm_@pD9FFB819.dip.t-dialin.net] has joined #scheme 10:10:29 attila_lendvai [n=ati@catv-89-133-170-239.catv.broadband.hu] has joined #scheme 10:10:32 Kerris0 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has joined #scheme 10:11:10 orgy__ [n=ratm_@pD9FFBBBB.dip.t-dialin.net] has joined #scheme 10:12:55 Kerris01 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has joined #scheme 10:14:55 -!- cracki [n=cracki@sglty.kawo2.RWTH-Aachen.DE] has quit ["The funniest things in my life are truth and absurdity."] 10:23:08 hkBst [n=hkBst@70pc222.sshunet.nl] has joined #scheme 10:23:32 -!- orgy` [n=ratm_@pD9FFEAC4.dip.t-dialin.net] has quit [Read error: 110 (Connection timed out)] 10:23:46 -!- hkBst [n=hkBst@gentoo/developer/hkbst] has quit [Remote closed the connection] 10:23:59 hkBst [n=hkBst@gentoo/developer/hkbst] has joined #scheme 10:29:24 -!- hml [n=x@unaffiliated/hml] has quit [Remote closed the connection] 10:31:00 -!- Kerris0 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has quit [Read error: 113 (No route to host)] 10:31:20 -!- orgy_ [n=ratm_@pD9FFB819.dip.t-dialin.net] has quit [Read error: 110 (Connection timed out)] 10:31:41 -!- tizoc_ is now known as tizoc 10:43:00 Kerris0 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has joined #scheme 10:43:21 cracki [n=cracki@44-082.eduroam.RWTH-Aachen.DE] has joined #scheme 10:45:59 -!- cracki [n=cracki@44-082.eduroam.RWTH-Aachen.DE] has quit [Client Quit] 10:57:58 rotty [n=rotty@chello084114192192.1.15.vie.surfer.at] has joined #scheme 11:00:17 -!- Kerris01 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has quit [Read error: 110 (Connection timed out)] 11:05:36 -!- ttmrichter [n=ttmricht@59.172.140.58] has quit [Connection timed out] 11:11:38 chaoslynx [n=cpehle@mnhm-590fa1fe.pool.einsundeins.de] has joined #scheme 11:12:59 Kerris01 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has joined #scheme 11:22:12 gigabytes [n=gigabyte@host239-236-dynamic.15-87-r.retail.telecomitalia.it] has joined #scheme 11:30:07 -!- Kerris0 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has quit [Read error: 113 (No route to host)] 11:32:44 Kerris0 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has joined #scheme 11:37:42 -!- Kerris01 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has quit [Read error: 113 (No route to host)] 11:39:02 -!- bpt [n=bpt@cpe-071-070-209-067.nc.res.rr.com] has quit [Read error: 60 (Operation timed out)] 11:44:38 -!- orgy__ [n=ratm_@pD9FFBBBB.dip.t-dialin.net] has quit [Client Quit] 11:52:25 hotblack23 [n=jh@p5B053FB9.dip.t-dialin.net] has joined #scheme 11:53:14 -!- a1len [n=James@unaffiliated/a1len] has quit ["Lost terminal"] 11:58:22 -!- proqesi [n=user@unaffiliated/proqesi] has quit [Read error: 110 (Connection timed out)] 12:00:11 Kerris01 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has joined #scheme 12:17:19 -!- Kerris0 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has quit [Read error: 110 (Connection timed out)] 12:30:14 Kerris0 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has joined #scheme 12:34:09 -!- gigabytes [n=gigabyte@host239-236-dynamic.15-87-r.retail.telecomitalia.it] has quit [] 12:46:17 -!- drdo [n=psykon@167.111.54.77.rev.vodafone.pt] has quit [Remote closed the connection] 12:47:02 cracki [n=cracki@44-082.eduroam.RWTH-Aachen.DE] has joined #scheme 12:47:18 -!- Kerris01 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has quit [Read error: 110 (Connection timed out)] 12:49:32 bpt [n=bpt@cpe-071-070-209-067.nc.res.rr.com] has joined #scheme 12:50:36 -!- chaoslynx [n=cpehle@mnhm-590fa1fe.pool.einsundeins.de] has quit ["Lost terminal"] 12:56:36 ttmrichter [n=ttmricht@119.96.165.100] has joined #scheme 12:57:33 synthase [n=synthase@68.63.20.12] has joined #scheme 12:58:33 hiyuh [n=hiyuh@KD125054017176.ppp-bb.dion.ne.jp] has joined #scheme 12:59:49 cemerick [n=la_mer@75.147.38.122] has joined #scheme 13:00:16 Kerris01 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has joined #scheme 13:00:25 -!- Kerris01 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has quit [Client Quit] 13:07:06 -!- synthasee [n=synthase@68.63.20.12] has quit [Read error: 110 (Connection timed out)] 13:16:11 -!- ejs [n=eugen@nat.ironport.com] has quit [Read error: 110 (Connection timed out)] 13:16:21 ejs [n=eugen@nat.ironport.com] has joined #scheme 13:17:42 gigabytes [n=gigabyte@host217-234-dynamic.14-87-r.retail.telecomitalia.it] has joined #scheme 13:17:52 -!- Kerris0 [n=Kerris@QMStudsDynamic-254-160.qmul.ac.uk] has quit [Read error: 110 (Connection timed out)] 13:23:20 -!- gigabytes [n=gigabyte@host217-234-dynamic.14-87-r.retail.telecomitalia.it] has quit [Read error: 54 (Connection reset by peer)] 13:25:27 athos_ [n=philipp@p54B87494.dip.t-dialin.net] has joined #scheme 13:28:57 -!- athos [n=philipp@p54B86ADA.dip.t-dialin.net] has quit [Read error: 60 (Operation timed out)] 13:32:29 luz [n=davids@201.29.173.91] has joined #scheme 13:32:30 -!- pchrist|univ [n=spirit@gateway.hpc.cs.teiath.gr] has quit ["leaving"] 13:33:01 pchrist|univ [n=spirit@gateway.hpc.cs.teiath.gr] has joined #scheme 13:34:37 -!- ejs [n=eugen@nat.ironport.com] has quit ["Ex-Chat"] 13:35:01 -!- athos_ [n=philipp@p54B87494.dip.t-dialin.net] has quit [Remote closed the connection] 13:36:58 -!- cracki [n=cracki@44-082.eduroam.RWTH-Aachen.DE] has quit ["The funniest things in my life are truth and absurdity."] 13:46:32 -!- incubot [n=incubot@24.205.65.135] has quit [Remote closed the connection] 13:50:39 langmartin [n=user@75.148.111.133] has joined #scheme 13:51:16 incubot [n=incubot@24.205.65.135] has joined #scheme 13:54:37 MichaelRaskin [n=MichaelR@3ad50e34.broker.freenet6.net] has joined #scheme 14:02:56 annodomini [n=lambda@c-75-69-96-104.hsd1.nh.comcast.net] has joined #scheme 14:06:18 -!- annodomini [n=lambda@wikipedia/lambda] has quit [Client Quit] 14:12:07 hemulen [n=hemulen@cpe-069-134-114-252.nc.res.rr.com] has joined #scheme 14:17:55 -!- suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has quit [Read error: 54 (Connection reset by peer)] 14:18:33 suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has joined #scheme 14:20:39 annodomini [n=lambda@64.30.3.122] has joined #scheme 14:30:47 long weekend yay! 14:35:08 speaking of which, that was the longest chain of (almost) unbroken join/leaves i've seen 14:35:11 bweaver [n=bweaver@67.161.236.94] has joined #scheme 14:35:27 sorry :( 14:36:26 heh; they weren't quite unbroken before we got there ;) 14:39:42 i wish i had more inspiration to improve my Scheme plugin for Visual Studio, but after so many years of IDE development, the passion is gone :( 14:41:49 that SchemeWay for Eclipse looked nice, but the guy never does any work on it... 14:43:10 aren't ides overrated? 14:43:17 -!- annodomini [n=lambda@wikipedia/lambda] has quit [] 14:44:15 they are, but it would be nice to get VS users. VS users are religuous in the way, they wont use a language that is not in VS. 14:44:37 big potential market 14:46:31 write an emacs plugin for VS, you get a great editor for free! 14:46:38 lol 14:46:50 or should i say, a great GUI toolkit + libraries 14:46:56 VS wants a pretty editor :p 14:47:06 BTW VS comes with Emacs bindings 14:47:53 and VS Express is free now too, probably the biggest reason I dont develop xacc.ide much anymore 14:50:42 GreyLensman [n=ray@c-76-108-235-51.hsd1.fl.comcast.net] has joined #scheme 14:50:56 -!- GreyLensman [n=ray@c-76-108-235-51.hsd1.fl.comcast.net] has left #scheme 14:51:28 -!- ecraven [n=nex@140.78.42.103] has quit ["bbl"] 14:53:03 attila_lendvai_ [n=ati@catv-89-133-170-239.catv.broadband.hu] has joined #scheme 14:53:46 -!- schmalbe [n=bernhard@p549A08C9.dip0.t-ipconnect.de] has quit [Remote closed the connection] 14:54:16 -!- attila_lendvai_ [n=ati@catv-89-133-170-239.catv.broadband.hu] has quit [Client Quit] 14:54:29 attila_lendvai_ [n=ati@catv-89-133-170-239.catv.broadband.hu] has joined #scheme 14:54:37 -!- attila_lendvai [n=ati@catv-89-133-170-239.catv.broadband.hu] has quit [Nick collision from services.] 14:54:51 -!- attila_lendvai_ is now known as attila_lendvai 15:09:50 amoe [n=amoe@cpc3-brig3-0-0-cust346.brig.cable.ntl.com] has joined #scheme 15:11:42 aaco [n=aaco@unaffiliated/aaco] has joined #scheme 15:18:35 lolcow [n=lolcow@dsl-243-58-118.telkomadsl.co.za] has joined #scheme 15:18:45 -!- suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has quit [Read error: 104 (Connection reset by peer)] 15:19:09 suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has joined #scheme 15:19:25 -!- leppie [n=lolcow@196-210-146-254-ndn-esr-3.dynamic.isadsl.co.za] has quit [Read error: 60 (Operation timed out)] 15:19:54 -!- suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has quit [Read error: 104 (Connection reset by peer)] 15:20:15 suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has joined #scheme 15:23:34 -!- lolcow is now known as leppie 15:23:59 jgracin [n=jgracin@82.193.208.195] has joined #scheme 15:33:14 -!- ramkrsna [n=ramkrsna@unaffiliated/ramkrsna] has quit ["Leaving"] 15:39:15 -!- underspecified [n=eric@clair16.naist.jp] has quit [] 15:40:17 -!- errordeveloper [n=errordev@78-86-1-110.zone2.bethere.co.uk] has quit [Read error: 104 (Connection reset by peer)] 15:40:33 errordeveloper [n=errordev@78-86-1-110.zone2.bethere.co.uk] has joined #scheme 15:53:39 -!- eno__ [n=eno@adsl-70-137-160-58.dsl.snfc21.sbcglobal.net] has quit ["leaving"] 15:54:33 -!- CaptainMorgan [n=CaptainM@c-75-68-42-94.hsd1.nh.comcast.net] has quit [Read error: 104 (Connection reset by peer)] 15:55:13 ecraven [n=nex@140.78.42.103] has joined #scheme 15:59:34 -!- jonrafkind [n=jon@c-98-202-86-149.hsd1.ut.comcast.net] has quit [Read error: 110 (Connection timed out)] 16:01:22 synthasee [n=synthase@68.63.20.12] has joined #scheme 16:03:58 jlongster [n=user@75.148.111.133] has joined #scheme 16:06:51 -!- ecraven [n=nex@140.78.42.103] has quit ["bbl"] 16:06:54 -!- MichaelRaskin [n=MichaelR@3ad50e34.broker.freenet6.net] has quit ["Leaving."] 16:09:24 jonrafkind [n=jon@wireless147.wireless.utah.edu] has joined #scheme 16:10:51 -!- synthase [n=synthase@68.63.20.12] has quit [Read error: 110 (Connection timed out)] 16:13:42 -!- fschwidom [n=fschwido@dslb-084-059-142-249.pools.arcor-ip.net] has quit [Remote closed the connection] 16:19:40 kib2_ [n=chatzill@bd137-1-82-228-159-28.fbx.proxad.net] has joined #scheme 16:26:48 synthase [n=synthase@68.63.20.12] has joined #scheme 16:34:48 http://letmegooglethatforyou.com 16:35:05 -!- jonrafkind [n=jon@wireless147.wireless.utah.edu] has quit [Read error: 110 (Connection timed out)] 16:36:45 -!- synthasee [n=synthase@68.63.20.12] has quit [Read error: 110 (Connection timed out)] 16:36:46 Daemmerung: it doesn't work. 16:36:55 or is that the point? 16:37:06 http://justfuckinggoogleit.com/ 16:37:21 Works on /my/ machine. 16:38:30 Daemmerung: alright. What is it that it is supposed to do? 16:38:34 -!- BloomFilter is now known as Daeken 16:38:55 hkBst: http://letmegooglethatforyou.com/?q=foo 16:39:12 should show it typing 'foo' and then clicking the search button 16:39:25 oh I see 16:44:23 underspecified [n=eric@softbank220043052011.bbtec.net] has joined #scheme 16:56:07 synx: apparently those cats weren't able to score the 4L domain: jfgi.com 16:56:19 sort of gives away the joke 16:56:26 umis [n=umis@prudent-gloryer.volia.net] has joined #scheme 16:56:39 aw, too bad that. 16:56:42 yeah 16:57:00 I think it's funnier if it's obvious though. 16:57:53 i guess you could tinyurl it and justfuckinggoogleit-roll cats 17:03:58 mejja [n=user@c-4db6e555.023-82-73746f38.cust.bredbandsbolaget.se] has joined #scheme 17:06:16 klutometis: awesome site!!!! -> http://tinyurl.com/justfgi 17:11:46 chandler: http://www.break.com/index/are-we-having-fun-yet1.html 17:14:41 -!- jgracin [n=jgracin@82.193.208.195] has quit [Read error: 110 (Connection timed out)] 17:39:24 rudybot: eval "hello" 17:39:25 mejja: ; Value: "hello" 17:39:38 -!- amoe [n=amoe@cpc3-brig3-0-0-cust346.brig.cable.ntl.com] has quit ["leaving"] 17:39:41 rudybot: eval (atan -2i) 17:39:41 mejja: ; Value: -1.5707963267948966-0.5493061443340549i 17:39:48 rudybot: eval (atan +2i) 17:39:48 mejja: ; Value: -1.5707963267948966+0.5493061443340549i 17:40:04 rudybot: ORLY? 17:40:08 -!- jlongster [n=user@75.148.111.133] has quit [Read error: 113 (No route to host)] 17:40:28 hemulen_ [n=hemulen@cpe-069-134-114-252.nc.res.rr.com] has joined #scheme 17:41:44 rudybot: eval (define orly "ya rly") 17:42:46 -!- pfo [n=pfo@chello084114049188.14.vie.surfer.at] has quit [Read error: 104 (Connection reset by peer)] 17:43:03 peter_12 [n=peter_12@S010600119506b129.gv.shawcable.net] has joined #scheme 17:43:34 incubot: eval "roasted chicken" 17:43:42 grilled melon, roasted muffins, and chocolate chip and broccoli pizza 17:43:51 rudybot: eval orly 17:43:52 synx: ; Value: "ya rly" 17:44:46 rudybot: eval no wai 17:44:46 synx: error: reference to undefined identifier: no 17:45:49 tjafk2 [n=timj@e176200108.adsl.alicedsl.de] has joined #scheme 17:46:13 pfo [n=pfo@chello084114049188.14.vie.surfer.at] has joined #scheme 17:46:23 -!- pfo [n=pfo@chello084114049188.14.vie.surfer.at] has quit [Read error: 104 (Connection reset by peer)] 17:46:25 BloomFilter [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has joined #scheme 17:47:19 jonrafkind [n=jon@wireless147.wireless.utah.edu] has joined #scheme 17:48:17 -!- dudrenov [n=user@c-69-181-124-154.hsd1.ca.comcast.net] has quit ["ERC Version 5.3 (IRC client for Emacs)"] 17:48:50 cracki [n=cracki@sglty.kawo2.RWTH-Aachen.DE] has joined #scheme 17:49:26 levi [n=user@levi.dsl.xmission.com] has joined #scheme 17:53:06 -!- hemulen [n=hemulen@cpe-069-134-114-252.nc.res.rr.com] has quit [Read error: 110 (Connection timed out)] 17:55:05 -!- mejja [n=user@c-4db6e555.023-82-73746f38.cust.bredbandsbolaget.se] has quit ["fuckfuckfuckfuckfuck"] 17:57:40 -!- Daeken [n=foo@c-24-99-122-104.hsd1.ga.comcast.net] has quit [Read error: 110 (Connection timed out)] 18:01:57 -!- tjafk1 [n=timj@e176207238.adsl.alicedsl.de] has quit [Read error: 110 (Connection timed out)] 18:02:52 REPLeffect [n=REPLeffe@69.54.115.254] has joined #scheme 18:10:58 -!- hemulen_ is now known as hemulen 18:11:04 geckosenator [n=sean@c-24-8-193-190.hsd1.co.comcast.net] has joined #scheme 18:14:31 jlongster [n=user@75.148.111.133] has joined #scheme 18:24:48 -!- rdd [n=user@c83-250-142-219.bredband.comhem.se] has quit [Read error: 104 (Connection reset by peer)] 18:33:20 -!- hemulen [n=hemulen@cpe-069-134-114-252.nc.res.rr.com] has quit ["He rode off into the sunset. . ."] 18:35:07 hemulen [n=hemulen@cpe-069-134-114-252.nc.res.rr.com] has joined #scheme 18:35:37 exexex [n=chatzill@85.97.5.187] has joined #scheme 18:35:58 -!- exexex [n=chatzill@85.97.5.187] has quit [Remote closed the connection] 18:38:14 npe [n=npe@c-75-68-40-26.hsd1.nh.comcast.net] has joined #scheme 18:39:58 -!- peter_12 [n=peter_12@S010600119506b129.gv.shawcable.net] has quit [] 18:42:33 -!- tarbo [n=me@unaffiliated/tarbo] has quit [Client Quit] 18:43:07 tarbo [n=me@unaffiliated/tarbo] has joined #scheme 18:43:47 -!- synthase [n=synthase@68.63.20.12] has quit [Connection timed out] 18:45:37 synthasee [n=synthase@68.63.20.12] has joined #scheme 18:52:28 LeCamarade [n=LeCamara@41.222.7.35] has joined #scheme 18:58:01 schmalbe [n=bernhard@p549A0B44.dip0.t-ipconnect.de] has joined #scheme 18:58:50 exexex [n=chatzill@85.97.5.187] has joined #scheme 18:59:35 eno [n=eno@nslu2-linux/eno] has joined #scheme 18:59:51 -!- LeCamarade [n=LeCamara@41.222.7.35] has quit ["Leaving"] 19:00:55 rdd [n=user@c83-250-142-219.bredband.comhem.se] has joined #scheme 19:04:02 kuribas [i=kristof@d54C2AD53.access.telenet.be] has joined #scheme 19:08:03 orgy` [n=ratm_@pD9FFBBBB.dip.t-dialin.net] has joined #scheme 19:09:09 melito [n=melito@70.99.250.82] has joined #scheme 19:14:19 -!- Khisanth [n=Khisanth@pool-68-237-103-31.ny325.east.verizon.net] has quit ["Leaving"] 19:14:26 tiglionabbit [n=tigliona@207.111.204.82] has joined #scheme 19:14:28 -!- tiglionabbit [n=tigliona@207.111.204.82] has quit [Remote closed the connection] 19:15:50 Khisanth [n=Khisanth@pool-68-237-103-31.ny325.east.verizon.net] has joined #scheme 19:21:30 -!- levi [n=user@levi.dsl.xmission.com] has quit [Read error: 104 (Connection reset by peer)] 19:24:44 tizoc_ [n=user@r190-135-64-118.dialup.adsl.anteldata.net.uy] has joined #scheme 19:26:21 -!- tizoc [n=user@r190-135-24-24.dialup.adsl.anteldata.net.uy] has quit [Nick collision from services.] 19:26:24 -!- tizoc_ is now known as tizoc 19:28:36 hml [n=x@unaffiliated/hml] has joined #scheme 19:31:01 -!- hemulen [n=hemulen@cpe-069-134-114-252.nc.res.rr.com] has quit ["He rode off into the sunset. . ."] 19:41:40 mejja [n=user@c-4db6e555.023-82-73746f38.cust.bredbandsbolaget.se] has joined #scheme 19:45:41 puchacz [n=puchacz@87-194-5-99.bethere.co.uk] has joined #scheme 19:54:53 choas [n=lars@p5B0DCADD.dip.t-dialin.net] has joined #scheme 19:56:02 mejja pasted "ATAN" at http://paste.lisp.org/display/70781 19:56:28 -!- mejja [n=user@c-4db6e555.023-82-73746f38.cust.bredbandsbolaget.se] has quit [Remote closed the connection] 19:58:43 ilSignorCarlo [n=Mr_SpOOn@89-97-102-218.ip17.fastwebnet.it] has joined #scheme 20:00:37 -!- hml [n=x@unaffiliated/hml] has quit [Remote closed the connection] 20:02:16 -!- choas [n=lars@p5B0DCADD.dip.t-dialin.net] has quit ["leaving"] 20:02:31 mejja annotated #70781 with "matlab" at http://paste.lisp.org/display/70781#1 20:03:42 mejja [n=user@c-4db6e555.023-82-73746f38.cust.bredbandsbolaget.se] has joined #scheme 20:10:30 -!- rdd [n=user@c83-250-142-219.bredband.comhem.se] has quit [Success] 20:11:39 -!- jlongster [n=user@75.148.111.133] has quit [Read error: 113 (No route to host)] 20:12:22 hemulen [n=hemulen@cpe-069-134-114-252.nc.res.rr.com] has joined #scheme 20:13:03 mejja, anything in particular you meant to illustrate with those pastes? 20:16:54 CaptainMorgan [n=CaptainM@c-24-61-150-59.hsd1.ma.comcast.net] has joined #scheme 20:17:47 rdd [n=user@c83-250-142-219.bredband.comhem.se] has joined #scheme 20:19:29 riastradh, life sucks... and then you die? 20:20:06 fschwidom [n=fschwido@dslb-084-059-142-249.pools.arcor-ip.net] has joined #scheme 20:23:28 -!- exexex [n=chatzill@85.97.5.187] has quit [Remote closed the connection] 20:30:08 That trigonometric functions have multiple values in the domain for the same range? 20:31:01 synx: http://mathworld.wolfram.com/topics/SpecialFunctions.html 20:31:21 -!- npe [n=npe@c-75-68-40-26.hsd1.nh.comcast.net] has quit [] 20:32:41 Isn't that special. 20:34:38 The inverse tangent http://mathworld.wolfram.com/InverseTangent.html is a multivalued function and hence requires a branch cut http://mathworld.wolfram.com/BranchCut.html in the complex plane. 20:34:44 *mejja* slaps Daemmerung 20:36:15 AtnNn [n=welcome@modemcable230.56-56-74.mc.videotron.ca] has joined #scheme 20:39:40 -!- kilimanjaro [n=kilimanj@70.116.95.163] has quit [Read error: 104 (Connection reset by peer)] 20:40:52 C'est spéciale. 20:41:15 jgracin [n=jgracin@82.193.208.195] has joined #scheme 20:41:45 N'est pas drol. 20:42:04 kilimanjaro [n=kilimanj@70.116.95.163] has joined #scheme 20:44:01 hml [n=x@unaffiliated/hml] has joined #scheme 20:46:05 mejja, so Matlab and Scheme (which follows Common Lisp) use different branch cuts. 20:57:54 -!- schmalbe [n=bernhard@p549A0B44.dip0.t-ipconnect.de] has quit [Remote closed the connection] 20:59:27 a1len [n=James@unaffiliated/a1len] has joined #scheme 21:00:30 Jarvellis [n=jarv@dsl-217-155-101-22.zen.co.uk] has joined #scheme 21:01:36 -!- jonrafkind [n=jon@wireless147.wireless.utah.edu] has quit [Read error: 145 (Connection timed out)] 21:03:41 MichaelRaskin_ [n=raskin@gwh-1-177-mytn23k1.ln.rinet.ru] has joined #scheme 21:04:06 lelf [n=lelf@217.118.90.204] has joined #scheme 21:08:06 jonrafkind [n=jon@wireless147.wireless.utah.edu] has joined #scheme 21:12:03 JohnnyL [i=JohnnyL@ool-182ddad4.dyn.optonline.net] has joined #scheme 21:13:41 -!- Nshag [i=user@Mix-Orleans-106-2-219.w193-248.abo.wanadoo.fr] has quit ["Quitte"] 21:18:45 ecraven [n=nex@140.78.42.103] has joined #scheme 21:18:58 hello :) 21:19:14 is there any scheme system except scheme48 and scsh that have a meta-module-system? i.e. a way to specify modules that is *not* part of the exposed scheme language? 21:19:45 (preferably something that runs on x86_32 and x86_64) 21:20:06 Why do you ask? 21:20:53 i'm looking for an implementation, i can't get scsh to run on arch linux 64bit (and it's been a long time since it's been updated), and i don't like r6rs, so scheme48 is mostly out too :( 21:22:44 There does not exist a perfect Scheme implementation. You will have to figure out which one best serves your purposes; you've been at this long enough that you should be able to figure this out yourself. 21:24:32 I don't know of any other Scheme that has such a "meta-module-system", thus my asking. 21:25:12 I'm not aware of one either. What do you want to accomplish with a meta-module-system? 21:26:15 I don't like to mix module meta information with code. I really like the way Scheme48 separates the module language from the "implementation" language. 21:27:01 What does that have to do with a meta-module-system? 21:27:36 That's what I meant by meta-module-system, it is probably quite a wrong word for this. 21:27:40 npe [n=npe@c-24-62-155-243.hsd1.nh.comcast.net] has joined #scheme 21:27:44 Maybe you mean `module system'. 21:28:00 I mean "module system separate from the implementation language" 21:28:31 Right. That's very different from a meta-module-system, which is a module system whose object-language is a module system. 21:28:31 Could you name a module system that doesn't meet your criteria? 21:28:40 Guile's, Daemmerung. 21:29:21 Daemmerung: If I write (require 'tables) in my code, imho this mixes implementation and module information 21:29:37 npe_ [n=npe@c-24-62-155-243.hsd1.nh.comcast.net] has joined #scheme 21:29:41 ecraven, both PLT's and the R6RS's module (`library') system satisfy your criteria. 21:29:49 Then try PLT or Chez. 21:29:52 (mostly) 21:29:58 Yes, but they don't fulfil the criterium of not being R6RS :) 21:30:08 lol 21:30:15 `Criterion', and you are perfectly welcome to avoid the R6RS in PLT Scheme. 21:30:17 -!- npe [n=npe@c-24-62-155-243.hsd1.nh.comcast.net] has quit [Connection reset by peer] 21:30:40 If the presence anywhere in a system of R6 support offends you, then you are shit out of luck. 21:30:42 (Chez's module system is inextricably part of its object-language.) 21:31:54 -!- JohnnyL [i=JohnnyL@ool-182ddad4.dyn.optonline.net] has quit [] 21:32:05 Riastradh: Thanks for criterion, I assumed the latin word was used in english 21:32:33 Daemmerung: Probably ;-/ Well, there's always one way out: DIY-Scheme 21:33:16 (The word is Greek, not Latin.) 21:33:31 and add to the 500 scheme's we have :) 21:33:39 drdo [n=psykon@167.111.54.77.rev.vodafone.pt] has joined #scheme 21:34:09 No, ecraven, that is almost certainly a way back into the mess, not out of it. 21:34:29 Yes, but there is a latin word criterium 21:34:38 JohnnyL [i=JohnnyL@ool-182ddad4.dyn.optonline.net] has joined #scheme 21:34:47 leppie: yay, 501! 21:35:32 Riastradh: Yes, I understand that, but as I've been unable to find an implementation that I really like (and that hasn't mostly died), maybe I could stop talking about it and start implementing 21:35:57 -!- npe_ is now known as npe 21:36:00 Start *improving*, not implementing anew. 21:36:46 No, Riastradh, the world really needs another R 4 1/2 RS Scheme. It cries out for it. -- Well, it's crying out for something.... 21:37:20 Especially a Scheme defined by what it /doesn't/ include. It could be Scheme Lite. 21:37:32 or SpiderScheme! 21:37:38 Daemmerung: I'd like a Dylan-like Scheme (and I don't know of any) 21:37:43 Use Dylan. 21:37:46 ...feature upon feature.... 21:37:59 Riastradh: I don't like the infix syntax ;) 21:38:39 Some day, ecraven, you will have to live with the defects of the tools you use until you are prepared to fix them. Ceaseless complaint about them will neither replace nor improve them. 21:39:04 ecraven: resurrect OakLisp. 21:39:06 It is easy to imagine a world with better tools, until you set about to make them. 21:39:13 Agreed. I'll stop complaining, a good night to all of you! 21:39:33 -!- ecraven [n=nex@140.78.42.103] has quit ["bbl"] 21:43:42 -!- a1len [n=James@unaffiliated/a1len] has quit ["Lost terminal"] 21:46:48 peter_12 [n=peter_12@S010600119506b129.gv.shawcable.net] has joined #scheme 21:47:09 -!- fschwidom [n=fschwido@dslb-084-059-142-249.pools.arcor-ip.net] has quit [Remote closed the connection] 21:48:50 incubot: no one likes grape jelly, and yet they stock the unit baskets with instances of the same 21:48:53 steaks and chops were piled up in baskets, ready to be delivered to the uptown hall in which the beefsteak was to be thrown. (Technically, a beefsteak is never ``given'' or ``held''; it is ``thrown'' or ``run.'') 21:49:13 Heh. I remember that one. 21:49:38 Daemmerung: how's your linux experiment? 21:50:43 klutometis: I left it on the other side of the mountains at about 90%. But I did solve my wm woes before leaving. 21:51:54 Daemmerung: you know what they say about that last 10%; were you missing something unentbehrlich? 21:52:46 Nah, it was a nit. 21:53:22 a1len [n=James@unaffiliated/a1len] has joined #scheme 21:53:28 Supposedly I'm using what I learned then in rebuilding my Seattle-side BSD box. Not really psyched this week, though. 21:57:37 choas [n=lars@p5B0DCADD.dip.t-dialin.net] has joined #scheme 22:03:42 -!- lelf [n=lelf@217.118.90.204] has quit ["used jmIrc"] 22:07:12 -!- cemerick [n=la_mer@75.147.38.122] has quit [] 22:16:58 -!- puchacz [n=puchacz@87-194-5-99.bethere.co.uk] has quit [Read error: 104 (Connection reset by peer)] 22:17:27 -!- underspecified [n=eric@softbank220043052011.bbtec.net] has quit [] 22:23:51 -!- langmartin [n=user@75.148.111.133] has quit [Read error: 113 (No route to host)] 22:28:49 -!- hkBst [n=hkBst@gentoo/developer/hkbst] has quit [Read error: 104 (Connection reset by peer)] 22:28:55 melito_ [n=melito@70.99.250.82] has joined #scheme 22:33:05 bakkdoor [n=bakkdoor@xdsl-92-252-23-136.dip.osnanet.de] has joined #scheme 22:37:26 -!- CaptainMorgan [n=CaptainM@c-24-61-150-59.hsd1.ma.comcast.net] has quit [Remote closed the connection] 22:38:58 -!- peter_12 [n=peter_12@S010600119506b129.gv.shawcable.net] has quit [] 22:42:37 -!- melito [n=melito@70.99.250.82] has quit [Read error: 113 (No route to host)] 22:43:26 -!- umis [n=umis@prudent-gloryer.volia.net] has quit [] 22:46:44 a-s [n=user@92.80.109.26] has joined #scheme 22:48:03 annodomini [n=lambda@130.189.179.215] has joined #scheme 22:49:51 chandler, bring back lisppaste3! 22:50:00 #vectorprogramming is empty without it! 22:51:21 It's not *my* fault that sa has apparently abandoned IRC. 22:53:32 dnm [n=dnm@c-68-49-46-251.hsd1.va.comcast.net] has joined #scheme 23:01:15 -!- specbot [n=specbot@common-lisp.net] has quit [Remote closed the connection] 23:01:15 -!- lisppaste [n=lisppast@common-lisp.net] has quit [Remote closed the connection] 23:01:15 -!- minion [n=minion@common-lisp.net] has quit [Remote closed the connection] 23:01:17 -!- ilSignorCarlo [n=Mr_SpOOn@89-97-102-218.ip17.fastwebnet.it] has quit ["Lost terminal"] 23:02:54 -!- choas [n=lars@p5B0DCADD.dip.t-dialin.net] has quit ["leaving"] 23:03:32 chandler, I know. I'll poke him and see if I can convince him to spend a couple of kilobytes per hour to maintain an idle connection. 23:03:39 His gentlemanly and erudite presence is missed. 23:04:30 -!- AtnNn [n=welcome@modemcable230.56-56-74.mc.videotron.ca] has quit [" "] 23:05:56 lisppaste [n=lisppast@common-lisp.net] has joined #scheme 23:06:19 -!- mejja [n=user@c-4db6e555.023-82-73746f38.cust.bredbandsbolaget.se] has quit [Remote closed the connection] 23:06:48 -!- bakkdoor [n=bakkdoor@xdsl-92-252-23-136.dip.osnanet.de] has left #scheme 23:07:13 minion [n=minion@common-lisp.net] has joined #scheme 23:07:19 specbot [n=specbot@common-lisp.net] has joined #scheme 23:08:24 -!- elmex [n=elmex@e180065069.adsl.alicedsl.de] has quit [Remote closed the connection] 23:16:34 -!- annodomini [n=lambda@wikipedia/lambda] has quit [] 23:18:17 -!- kib2_ [n=chatzill@bd137-1-82-228-159-28.fbx.proxad.net] has quit ["ChatZilla 0.9.84 [Firefox 3.0.4/2008102920]"] 23:18:51 -!- orgy` [n=ratm_@pD9FFBBBB.dip.t-dialin.net] has quit ["Gone."] 23:19:25 can I print the internal representation of a function (of a lambda-expr)? 23:20:45 bem [n=chandler@opendarwin/developer/chandler] has joined #scheme 23:23:22 -!- chandler [n=chandler@opendarwin/developer/chandler] has quit [Remote closed the connection] 23:24:38 -!- hiyuh [n=hiyuh@KD125054017176.ppp-bb.dion.ne.jp] has quit ["|_ e /\ \/ i |/| G"] 23:26:59 a-s, you can decompile it if you use plt 23:32:49 -!- hotblack23 [n=jh@p5B053FB9.dip.t-dialin.net] has quit [Read error: 110 (Connection timed out)] 23:35:53 rtra [n=rtra@unaffiliated/rtra] has joined #scheme 23:37:21 raikov [n=igr@203.181.243.11] has joined #scheme 23:38:14 -!- a1len [n=James@unaffiliated/a1len] has quit ["Lost terminal"] 23:40:06 jonrafkind: thanks 23:41:24 -!- attila_lendvai [n=ati@catv-89-133-170-239.catv.broadband.hu] has quit [Read error: 110 (Connection timed out)] 23:42:39 -!- kuribas [i=kristof@d54C2AD53.access.telenet.be] has quit ["ERC Version 5.2 (IRC client for Emacs)"] 23:56:06 -!- bpt [n=bpt@cpe-071-070-209-067.nc.res.rr.com] has quit [Read error: 110 (Connection timed out)] 23:58:31 -!- suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has quit [Read error: 104 (Connection reset by peer)] 23:58:54 suzume [n=user@pl044.nas933.takamatsu.nttpc.ne.jp] has joined #scheme