00:01:08 Paraselene_ [~Not@79-67-148-135.dynamic.dsl.as9105.com] has joined #scheme 00:04:49 -!- Paraselene [~Not@79-67-148-135.dynamic.dsl.as9105.com] has quit [Ping timeout: 264 seconds] 00:06:29 http://www.resimupload.com/ds234592683_capture.html if i can understand the question i may write its procedure. dunno if its the place to ask here but whats the result of an inner product? (integer /a complex number?) 00:08:39 a scalar 00:09:26 a number? 00:09:36 incubot: give us a hug? 00:09:40 if you run ./tmpfile several times, does it give funnny numbers in the "seconds elapsed" line? 00:10:12 yes, number... dimensionless value. 00:10:49 but in algebra vectors are also "numbers" only we give them spacial interpretations. 00:11:45 incubot: i'd rather not think about that! 00:11:48 I don't think the implementation language is that important for that 00:12:17 "The vector components can be real or complex numbers. " how come a vector can have a complex number as parameter 00:12:31 i'vent seen such thing :/ 00:14:51 Frq: a vector is a very general concept. Maybe you've seen "vector space axioms"? 00:15:18 sure i had seen but don't remember anything 00:16:36 Frq: anyway, given the standard definition of inner product, what is the problem with complex numbers? 00:17:14 -!- slyphon [~slyphon@unaffiliated/slyphon] has quit [Ping timeout: 276 seconds] 00:17:22 you can mulitply and add them right? That's all you need. 00:17:45 here seems i'll create som eprocedures that will understand if a number is complex or real number calculate innet product. but to multiply i cant use *. i may use *c or *. (and i shall ask you : does *c multiply complex number and real number) . How can i understand the type of a symbol? 00:17:52 well, i haven't done much complex analysis... and i do agree using complex numbers (which themselves can be thought of as vectors) as components of "normal" vectors is unintuitive. i much prefer the geometric algebra's way of thinking about dimensional values. 00:18:40 Frq: sorry, I can't help with actual scheme questions, I'm just a tourist here. 00:19:03 still, definition of inner product is easy to look up... it's a dimension reducing operation in general. 00:19:19 ok, thanks for maths part too 00:19:47 as opposed to outer product which "opens" up dimensions... 00:21:04 Omancho [~Omancho@ip70-187-168-252.oc.oc.cox.net] has joined #scheme 00:21:25 for example inner product of two vectors reduces to scalar and their outer product creates a directed plane... 00:21:45 *sladegen* etcings. 00:22:55 -!- Omancho [~Omancho@ip70-187-168-252.oc.oc.cox.net] has quit [Client Quit] 00:22:59 i shall google more about vectors 00:24:04 but the question gives you all the info you need... 00:25:50 -!- stepnem [~stepnem@88.103.132.186] has quit [Quit: ZNC - http://znc.sourceforge.net] 00:26:27 FWIW standard compliant scheme implementation should handle complex numbers out of the box. 00:26:36 r5rs real-part 00:26:36 http://www.schemers.org/Documents/Standards/R5RS/HTML/r5rs-Z-H-9.html#%_idx_338 00:26:38 -rudybot:#scheme- http://tinyurl.com/358mkfn 00:27:42 mbohun [~mbohun@202.124.72.203] has joined #scheme 00:31:12 stepnem [~stepnem@88.103.132.186] has joined #scheme 00:34:48 rudybot: doc real-part 00:34:48 *offby1: your scheme sandbox is ready 00:34:49 *offby1: http://docs.plt-scheme.org/reference/numbers.html#(def._((quote._~23~25kernel)._real-part)) 00:36:50 -!- russkey [~russkey@ool-18bb0ebd.dyn.optonline.net] has quit [Ping timeout: 240 seconds] 00:36:52 copumpkin [~copumpkin@c-75-69-96-50.hsd1.nh.comcast.net] has joined #scheme 00:38:47 thanks for link 00:38:49 s 00:39:46 Omancho [~Omancho@ip70-187-168-252.oc.oc.cox.net] has joined #scheme 00:53:01 that's some bot, that rudybot 00:54:06 -!- elly is now known as Elly 00:55:32 -!- Elly is now known as elly 00:55:59 timj [~timj@e176215213.adsl.alicedsl.de] has joined #scheme 01:00:16 -!- futilius [~otheruser@cow9.org] has quit [Read error: Operation timed out] 01:00:35 futilius [~otheruser@2001:470:d:128:216:3eff:fe86:c70e] has joined #scheme 01:02:09 -!- nurv [nurv@83.231.91.35] has quit [] 01:06:54 i need the keywords for finding if a number is Real? complex? and checking two parameters type if they are same (last one may be "eq?" right?) 01:07:45 seems i've asked and answered all right ? :) 01:11:05 could be, dunno 01:11:11 rudybot: eval (real? 3) 01:11:11 *offby1: ; Value: #t 01:11:14 rudybot: eval (real? 3i) 01:11:14 *offby1: error: reference to an identifier before its definition: 3i in module: 'program 01:11:19 -!- Nshag [user@lns-bzn-43-82-249-168-90.adsl.proxad.net] has quit [Quit: Quitte] 01:11:21 rudybot: eval (real? (sqrt -1)) 01:11:21 *offby1: ; Value: #f 01:11:26 rudybot: eval (complex? (sqrt -1)) 01:11:26 *offby1: ; Value: #t 01:11:29 rudybot: eval (complex? 99) 01:11:30 *offby1: ; Value: #t 01:11:32 rudybot: eval (complex? 1/0) 01:11:33 *offby1: error: eval:1:10: read-number: division by zero: 1/0 01:11:44 *offby1* can't offhand think of a number that isn't complex? 01:12:03 eq? won't tell you if the two numbers are the same "type" 01:12:14 they'll tell you if they're exactly the same. 01:12:19 It's a bad idea to use eq? on numbers anyway. 01:12:24 The results are implementation-dependent. 01:12:32 rudybot: eval (eq? 2 2) 01:12:32 *offby1: ; Value: #t 01:12:39 rudybot: eval (eq? 12345678 12345678) 01:12:39 *offby1: ; Value: #t 01:12:47 rudybot: eval (eq? 1234567812345678 1234567812345678) 01:12:48 *offby1: ; Value: #t 01:12:49 hmm 01:12:57 inclubot: (eq? 1234567812345678 1234567812345678) 01:13:00 incubot: (eq? 1234567812345678 1234567812345678) 01:13:00 #f 01:13:03 see? 01:16:22 -!- snarkyboojum [~snarkyboo@110-174-43-105.static.tpgi.com.au] has quit [Quit: snarkyboojum] 01:17:19 hmm i didnt understand eq? part 01:17:33 but i didnt use "eq?" i used real? and complex? 01:18:03 rudybot: eval (eq? 12345678 18) 01:18:04 Frq: your sandbox is ready 01:18:04 Frq: ; Value: #f 01:18:17 rudybot: eval (eqv? 12345678 18) 01:18:17 Frq: ; Value: #f 01:18:44 Frq: "real?" and "complex?" check the type of a single value, but "eq?" compares two values. 01:19:07 not the types right? 01:19:08 I assume you know that every real value is also complex. 01:19:23 well, eq? will never return #t if the two values are different typed. 01:19:24 types. 01:19:36 but it might not return #t even if they're the same type, as you just saw. 01:19:37 i wanted to check if both are real or both are complex (type are same) but later on i gave up .. its worse 01:19:49 sound easy enough ... 01:20:11 rudybot: eval (define (both-same-type x y) (or (and (real? x) (real? y)) (and (complex? x) (complex? y)))) 01:20:17 rudybot: eval (both-same-type 2 3) 01:20:18 *offby1: ; Value: #t 01:20:24 rudybot: eval (both-same-type 2 (sqrt -3)) 01:20:24 *offby1: ; Value: #t 01:20:28 nice :) 01:20:30 see, they're both complex 01:20:44 as I've written it, I don't think it'll ever return #f, unless you give it something that isn't a number at all. 01:20:51 rudybot: eval (both-same-type "fred smith, esq" (sqrt -3)) 01:20:51 *offby1: ; Value: #f 01:21:53 I have this vague sense that, by even wanting to write that function, you're doing something wrong :) 01:22:06 I don't believe I've ever written a function like that before; never found the need to 01:22:14 saccade_ [~saccade@209-6-54-113.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has joined #scheme 01:23:50 ok i'm fixing a problem . since a real is also a complex i missed that part 01:24:07 yep 01:24:13 read your SICP about the "tower of types" 01:24:21 *offby1* sees if he can remember off the toppa his head 01:24:34 complex <- real <- rational <- integer 01:24:38 -!- fda314925 [~fda314925@211.239.124.232] has quit [Remote host closed the connection] 01:24:41 something like that 01:25:02 fda314925 [~fda314925@211.239.124.232] has joined #scheme 01:26:46 russkey [~russkey@ool-18bb0ebd.dyn.optonline.net] has joined #scheme 01:26:50 -!- saccade_ [~saccade@209-6-54-113.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has quit [Client Quit] 01:27:37 snarkyboojum [~snarkyboo@120.156.93.56] has joined #scheme 01:28:55 adu [~ajr@pool-173-66-9-50.washdc.fios.verizon.net] has joined #scheme 01:29:29 hi again 01:29:43 rudybot: who dares interrupt our slumbers? 01:29:43 *offby1: dares to hope 01:30:04 do you know if i can multiply 3d vector with 10d one? 01:30:41 nope 01:30:45 that is, I don't know. 01:30:49 it's been ages since I took math 01:31:26 (: 01:32:30 I know you can multiply a one-dimensional vector by a single scalar, which you might think of as a zero-dimensional vector. 01:32:34 So perhaps it's possible. 01:32:39 I assume Wikipedia would tell you 01:39:34 -!- rm_ [~rm@97.76.48.98] has quit [Quit: leaving] 01:39:54 morphir [~morphir@84-52-234.12.3p.ntebredband.no] has joined #scheme 01:41:18 in SICP (the videos) sussman uses nested defines, which is not valid code today.. do I use letrec instead? 01:41:41 It isn't? 01:42:44 no 01:42:49 http://codepad.org/FiNft4KV i'm trying on this code 01:42:54 Oh. Well, that's news to me, so I'm at a loss to help. 01:43:25 i think only defines not at the "top" of the function are invalid... 01:44:15 morphir: what Scheme are you using that prohibits nested "defines"? I bet it's one of the PLT "student" languages, which aren't quite Scheme 01:44:29 -!- kencausey [~ken@67.15.6.88] has quit [Ping timeout: 265 seconds] 01:45:12 sladegen: What would you call (lambda () (let () (define ...) ...)), then? 01:45:35 a monster? 01:45:47 offby1: r5rs 01:46:31 so, I'm using letrec 01:46:46 morphir: far's I know, r5rs allows nested definitions. 01:47:03 Nothing wrong with letrec, but if you paste your code, and the error you're getting, perhaps we can see why it's not working. 01:47:10 lisppaste: url? 01:47:10 To use the lisppaste bot, visit http://paste.lisp.org/new/scheme and enter your paste. 01:50:01 nevermind, I was wrong in assuming this 01:50:58 Ah. First check your assumptions, then ask a question to verify them. 01:51:03 -!- Mohamdu [~Mohamdu@CPE0013f7bc6820-CM0013f7bc681c.cpe.net.cable.rogers.com] has quit [Ping timeout: 260 seconds] 01:51:49 I got the same error as sladegen said.. 01:52:49 Frq: if you are not prohibited from using scheme's * stop worrying about the type of vector elements... write conjugate and be done with it. 01:54:21 it seems good i think, since the problem is aiming that part (want me to seperate them) 01:56:25 -!- snarkyboojum [~snarkyboo@120.156.93.56] has quit [Quit: snarkyboojum] 01:56:52 scheme's numerical operators should handle numbers fine whether they are both real or both complex or of different type... anyway. sleepio. 02:00:49 and if you are worried that conjugate can mess something it, it won't since it's an identity on non-complex values. 02:03:08 morphir pasted "define" at http://paste.lisp.org/display/98700 02:04:48 snarkyboojum [~snarkyboo@110-174-43-105.static.tpgi.com.au] has joined #scheme 02:04:55 http://codepad.org/iFQM9b8n 02:04:57 error : procedure application: expected procedure, given: #f; arguments were: 6+11i 02:06:14 Mohamdu [~Mohamdu@CPE0013f7bc6820-CM0013f7bc681c.cpe.net.cable.rogers.com] has joined #scheme 02:06:37 reprore [~reprore@ntkngw227224.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 02:06:43 have i defined my list wrong at bottom? 02:06:52 chandler: I just pasted what got me confused 02:09:23 morphir: ah, that problem isn't because the define is nested; rather, it's because it comes after a non-definition 02:09:34 just interchange the internal definition with the call to * and it'll work 02:10:03 saccade_ [~saccade@209-6-54-113.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has joined #scheme 02:10:35 Frq: I don't suppose you've defined "*c" to be #f? 02:12:23 i didnt understand 02:12:50 Frq: ah, I see: you have too many parens in your cond 02:13:23 get rid of the left-paren on line 5, as well as its matching right paren 02:13:32 that still might not work, but it'll be closer to correct 02:14:25 left or right paren on line 5? 02:14:37 Frq, don't you have a paren matching editor? 02:14:42 like vi or emacs or something? 02:14:51 i have PLT scheme 02:15:05 elderK: you're still here! 02:15:06 i mean seems right paren shall be deleted 02:15:12 Dr.Scheme you mean? 02:15:16 yes 02:15:25 I use Dr.scheme too.. love it 02:15:28 adu: sure am 02:15:34 downing a gallon of coffee now though :P 02:15:39 tried to take a nap before class, 02:15:42 so much for that :P 02:15:53 elderK: lol 02:15:58 a bit sluggish.. 02:16:24 length: expects argument of type ; given 2 02:16:37 after i deleted right parantesis on line 5 02:16:51 well, I said it still might not work :) 02:17:00 it seems you've written too much code in one go 02:17:06 aye 02:17:11 he needs to check his code simply. 02:17:12 instead you should build up your program piece by little piece, testing at the repl as you go 02:17:13 :) 02:17:21 the parenthesis and the list of what he's actually doing. 02:17:42 we all run into these things from time to time :) 02:17:43 i have no problem with paranthesis 02:17:52 i should check what i am doing... what am i doing? 02:18:00 *adu* <3 () 02:18:12 :P I doubt i'm the only one who messed up sometimes entering stuff into some repl. 02:18:29 especially if you aren't using emacs or running something that lets you easily copy/paste code from some buffer. 02:18:32 *elderK* shrugs 02:18:45 elderK: it depends on the repl tho 02:18:56 I really like Dr.Scheme 02:19:13 I tend to use guile/chicken from the command line 02:19:20 opposed to chicken which features nothing 02:19:29 hey, chicken has tons of features! 02:19:32 or csi that is 02:19:36 -!- bgs100 is now known as bgs000 02:19:52 depends what you are searching for, I guess. 02:20:03 adu: what's up dude? 02:20:30 my blood pressure 02:20:36 :P whyfore? 02:20:40 wine 02:20:47 wait, no its down 02:20:49 :P 02:21:00 :) 02:21:55 heh 02:21:56 :P 02:22:13 spam ftw! 02:22:22 I'm glad my lecture is like, only an hour long. 02:22:29 ~_~ I hope I don't like, get the nodding head thing. 02:22:31 lecture? 02:22:32 since, I like th emath. 02:22:34 I'm just a zombie. 02:22:34 Aye. 02:22:38 Maths. 02:22:38 ;) 02:22:39 *adu* <3 math 02:22:44 :D same 02:22:52 My sleeping patterns are slightly bjorked. 02:22:55 I want to be a mathematician when I grow up, but I'm failing my math class 02:23:18 ^_^ I want to be a mad scientist when I Grow up! 02:23:20 :D 02:23:29 just, the modern 21st century happy-go-lucky kind 02:23:30 :D 02:23:30 and I'll probably get kicked out of my school in a couple weeks, so I have to make new plans quick 02:23:34 without the horror aspect. 02:23:47 elderK: can I be your sidekick? 02:23:57 sure 02:23:59 *elderK* cackles 02:24:02 at the count of 3 02:24:07 It's ALIVEEEEEE! 02:24:07 :P 02:24:13 you know the kind that you send to do ass-kicking, not the kind you feed your concoctions to 02:24:32 hahaha, but of course. 02:24:33 MeshGear [~8101d12a@gateway/web/freenode/x-qrwqhrtbuorowtom] has joined #scheme 02:24:37 We can have like, 02:24:42 a lambda-bat-light 02:24:43 :D 02:24:49 yeah! 02:24:49 the LAMBASIGNAL! 02:25:01 -!- morphir [~morphir@84-52-234.12.3p.ntebredband.no] has quit [Quit: leaving] 02:25:08 hahhaa 02:25:15 "Same lambda channel, saaame lambda volume!" 02:25:25 and we can have a videophone, and it'll say "call/cc waiting" 02:25:43 I wish I could take a continuation to when I was more awake :) 02:25:47 *offby1* slaps adu upside the haid 02:25:51 thankfully, I saved one when I made my coffee 02:26:15 I wish I could save continuations from right after I get Chai 02:26:24 aye 02:26:52 Well, I've got to go clean up. 02:26:54 :) so, ttyl people. 02:26:57 ttyl 02:26:58 Hey there. So I'm using plt-scheme and trying to figure out the scheme/gui library thing. It seems that I can give interface items (text-fields and the like) labels when I define them, but is there any way to control where said label appears? 02:26:59 i want "a"(parameter) to be a real number but not a complex number. how can i tell it to compiler ? 02:27:11 Frq, you don't. 02:27:19 -!- elderK [~zk@pdpc/supporter/active/elderk] has left #scheme 02:27:21 when i write (not(complex?)) its impossible 02:27:36 Frq: "compiler" are you sure you're in the right room? 02:27:45 (not (complex? a)) should work 02:27:53 omg 02:27:57 the spaces are not optional 02:28:02 hey copumpkin 02:28:07 ohai! 02:28:10 when i enter a real number it already a complex number 02:28:14 so it dont 02:28:21 real numbers are a subset of complex numbers 02:28:25 so that is somewhat unsurprising 02:28:58 elly: many of the spaces are indeed optional. 02:29:11 those ones aren't 02:29:13 *offby1* suspects frq needs an attitude adjustment 02:29:15 Frq: maybe try (= (imag-part a) 0) 02:29:24 eww 02:29:32 actually, I guess they are :P 02:29:33 adu: gr8 idea 02:29:53 or (not (= ... 02:29:55 Or would I need to not give them default labels and manually put messages above them inside their own sub-panes..? 02:30:54 MeshGear: I'd be a little surprised if you couldn't control their locations, but I haven't fiddled with gui stuff in ages ... 02:31:51 offby: I was trying to see if the individual interface items had their own alignment arguments but it doesn't look like it. 02:33:15 error: reference to undefined identifier: *c 02:33:21 I wonder if you can subclass the whatever and get more control that way 02:33:28 Frq: I was wondering about that *c 02:33:37 isn't "*c" is multiplection for complex numbers 02:37:37 I'd have thought * would suffice 02:37:45 rudybot: eval (* (sqrt -1) 23) 02:37:46 *offby1: ; Value: 0+23i 02:42:30 rudybot: offby1 02:42:30 elly: im also still searching for a % equivilant 02:42:34 I see. 02:42:38 i fixed it with "*" but still errors : length: expects argument of type ; given 2 02:46:48 -!- untouchable [untouchabl@dhcp-129-64-166-29.dorm.brandeis.edu] has left #scheme 02:47:32 http://codepad.org/sRZ40W1p last version 02:47:55 i need to fix the problem with lists lenghts.. i need to hold it as a parameter 02:49:40 rudybot: elly 02:49:40 *offby1: elly, but, is math proof necessary ? 02:49:55 elly: I'll have my lawyer talk to your lawyer. 02:49:56 the eternal question of the age. 02:50:05 offby1: 02:50:06 rudybot: eval (let ((x '(1 2 3 4))) (cadr x)) 02:50:07 minion: chant 02:50:07 MORE CONTROL 02:50:08 Daemmerung: your scheme sandbox is ready 02:50:08 Daemmerung: ; Value: 2 02:50:10 ...well then. 02:50:34 rudybot: memo for minion: loop, damn you 02:50:34 minion: memo for minion: loop, damn you 02:50:34 Buzz off. 02:50:35 rudybot: eval (eq? cadr cdr)) 02:50:35 Daemmerung: error: eval:1:14: read: unexpected `)' 02:50:57 rudybot: eval (eq? cadr cdr) 02:50:57 Daemmerung: ; Value: #f 02:51:38 Daemmerung: now you're just confusing the poor youth 02:51:57 *Daemmerung* eschews obfuscation 02:52:33 -!- peddie [~peddie@adsl-76-254-69-115.dsl.pltn13.sbcglobal.net] has quit [Remote host closed the connection] 02:52:33 timj_ [~timj@e176207086.adsl.alicedsl.de] has joined #scheme 02:52:36 peddie [~peddie@adsl-76-254-69-115.dsl.pltn13.sbcglobal.net] has joined #scheme 02:54:23 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 02:54:58 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Client Quit] 02:56:21 -!- timj [~timj@e176215213.adsl.alicedsl.de] has quit [Ping timeout: 245 seconds] 02:57:53 untouchable [~untouchab@dhcp-129-64-166-29.dorm.brandeis.edu] has joined #scheme 02:57:53 http://codepad.org/fD908aKN error: car: expects argument of type ; given 2 02:58:30 rudybot: eval (car 2) 02:58:30 *offby1: error: car: expects argument of type ; given 2 03:00:16 -!- russkey [~russkey@ool-18bb0ebd.dyn.optonline.net] has quit [Remote host closed the connection] 03:00:24 didnt understand :/ 03:00:44 oh, btw daylight has appeared ... nice.. on emore day without sleep 03:01:09 03:01:09 ERC> sic semper Scheme 03:01:49 really :/ 03:01:54 rudybot: eval (let ((x '(1 2 3 4))) (list? (cadr x))) 03:01:55 Daemmerung: ; Value: #f 03:03:03 I will be explicit: you don't want to use `cadr' for the next step of your recursion. 03:03:39 I'll be even more explicit: you probably want "cdr" 03:03:44 although really you could just use "map" 03:03:49 OOOH WHAT A GIVEAWAY 03:03:56 if my mzscheme would ever start up I'd give EVEN MORE HINTS 03:04:13 man, this scribble-rendering is tiresome 03:04:21 s/start up/build/, in my case 03:04:32 Frq: have you ever considered writing unit tests? 03:04:38 like for "answer-iter"? 03:04:47 That way when I write my own, better, version, I can be sure I got it right 03:04:55 omg not cadr i meant cdr ... who put that "a" there :P 03:05:09 its recursing right? 03:05:28 i'm writing all 03:05:35 reference to undefined identifier: conjugate 03:05:39 whats this :S 03:06:20 it means you never defined "conjugate". 03:06:33 rudybot:eval(+ 2 3+i) 03:06:33 Frq: Indeed, there is no eval in R4RS. So I could have just said "standard EVAL" rather than "R5." I don't know what R6 has to say on it. (And I should.) 03:06:41 you need to know what functions are predefined in the implementation you're using. 03:06:55 I'll bet a small amount of money that you don't even _know_ what implementation you're using. 03:07:02 (Hint: it's mzscheme v372, which is very old) 03:07:22 Frq: that's the bot's fault. Try again with a space after the word "eval" 03:07:25 whoa, check out the transatlantic telepathy there 03:07:33 rudybot:eval (+ 2 3+i) 03:07:33 *offby1: ; Value: 5+1i 03:07:44 There is no crying in baseball. 03:07:48 i can forswear i've seen conjugate keyword somewhere :S 03:07:57 Mighty offby1 has struck out 03:08:05 Frq: I've seen it too. 03:08:14 Doesn't mean some random scheme on some random web site has it defined, though. 03:08:16 so whats problem there :S 03:08:26 have I not made the problem clear? 03:08:41 its in the (rnrs eval (6)) library 03:08:44 so do u think a function exist to conjugate 03:08:46 you're using an identifier, "conjugate", for which there's no definition, neither in your program, nor in the built-in scheme 03:09:02 then i shall write it 03:09:05 adu: I'm sure it's in many libraries. Clearly, though, it's not in the scheme that frq is using. 03:09:10 Frq: that'll work. 03:09:19 write a unit test or two, while you're at it 03:13:57 do you think this works? 03:13:59 (define conjugate (lambda (v) (- v (* 2 (imag-part v))))) 03:14:41 dunno 03:14:47 why not write some unit tests and see for yourself? 03:14:56 meanwhile: http://gist.github.com/387704 at least gives an answer without blowing up 03:15:26 ... Sort of piggybacking off my last question, can you set a text-field's *max* size? 03:16:10 beats me! 03:16:17 MeshGear: if eli shows up, he may be able to help 03:16:22 Frq: (define (my-answer-iter x y) (apply + (map * x y))) 03:16:25 simpler than yours 03:16:47 off: Alright, thanks :/ 03:18:17 MeshGear: don't be afraid to poke around in the source if the docs aren't thorough. 03:18:34 I'm pretty new at scheme. I'm not sure that'd do me much good. 03:18:43 actually some of those sources might be in C++ :-\ 03:19:09 I was working through How To Design Programs but that was... a lot stuff about general coding that I sort of already knew from past C++ experience, and not as much Scheme-specific stuff. 03:19:13 python makes me grind my teeth, but I do like that the docs for most "things" are available at the repl 03:19:33 MeshGear: maybe try the intro stuff that comes with PLT scheme. It's pretty good, if I recall correctly. 03:19:38 these dont get the conjugates 03:20:06 There's docs for the gui exist. They just seem to indicate that you can't do anything about label position or max field width which is making me think I should find a different library. 03:21:15 -!- thom_logn [~thom@pool-74-100-140-188.lsanca.fios.verizon.net] has quit [Quit: Leaving] 03:22:16 grep through collects for lots and lots of examples 03:22:32 src/collects that is 03:22:33 srbloom [~sean@c-24-1-31-229.hsd1.il.comcast.net] has joined #scheme 03:22:43 http://codepad.org/k1oKq9ve error : +: expects type as 1st argument, given: #; other arguments were: 6+5i 03:22:44 Oh, thanks. I forgot about that. 03:23:27 offby1: your solution is not conjugating, mine is same i guess just a few more checks in multiply to conjugate 03:23:33 as a bonus, you'll be reading (what one sincerely hopes is) good code. always helpful. 03:23:40 i need to write conjugate right 03:24:01 (define conjugate (lambda (v) (- v (* 2 (imag-part v))))) does this seem to work? 03:24:30 i've minutes to send the code before deadline 03:26:32 Frq: you may not have realized this yet, but: I don't even know what "conjugate" means :) 03:26:36 sounds vaguely mathematical 03:26:59 conjugate of a+bi = a-bi 03:27:10 or a-bi is a+bi 03:28:47 rudybot: eval (define (conjugate x) (+ (real-part x) (* i (- (imag-part x))))) 03:28:51 rudybot: eval (conjugate 3) 03:28:52 *offby1: error: reference to an identifier before its definition: i in module: 'program 03:28:57 oops 03:29:05 rudybot: eval (define i (sqrt -1)) 03:29:08 rudybot: eval (conjugate 3) 03:29:08 *offby1: ; Value: 3 03:29:12 rudybot: eval (conjugate (sqrt -3)) 03:29:13 *offby1: ; Value: 0-1.7320508075688772i 03:29:18 rudybot: eval (conjugate 1+i) 03:29:19 *offby1: ; Value: 1-1i 03:29:23 rudybot: eval (conjugate 2-10i) 03:29:23 *offby1: ; Value: 2+10i 03:29:34 Frq: you could think of my recent typing as doing unit tests. 03:30:18 -!- MononcQc [~ferd@modemcable062.225-20-96.mc.videotron.ca] has quit [Quit: leaving] 03:30:35 whats unit test? 03:30:46 .i'm debugging 03:30:51 u mean that? 03:31:08 er, no. 03:31:17 what kind of class are you taking, where they don't tell you about unit testing? :-| 03:31:48 didnt understand :S 03:32:27 you're taking a class? 03:33:51 what u mean by class 03:34:00 course 03:34:01 school 03:34:02 university 03:34:03 college 03:34:07 instruction 03:34:08 education 03:34:13 :) yes 03:34:14 Frq: what's your native language? 03:34:18 Turkish 03:34:27 rudybot: t8 en tu we can speak Turkish here 03:34:27 *offby1: invalid translation language pair 03:34:30 oops 03:34:31 i thought oop as class 03:34:33 rudybot: t8 en tr we can speak Turkish here 03:34:34 *offby1: Burada Türk konuabilirim 03:34:47 hahaha :D 03:34:52 gr8 03:34:52 rudybot: t8 en tr What kind of awful class are you taking, that doesn't even mention unit testing?! 03:34:52 *offby1: Ne kadar berbat bir snf tür, o bile birim test deinmiyor götürüyorsun?! 03:35:06 rudybot: t8 en tr Oh, by the way: rudybot is written in PLT scheme. 03:35:07 *offby1: Oh, bu arada: rudybot PLT emas ile yazlmtr. 03:35:07 rubbish 03:35:09 rudybot: source 03:35:09 *offby1: git clone git://github.com/offby1/rudybot.git 03:37:43 my conjugate is wrong 03:38:15 mine isn't L) 03:38:30 Frq: but at least you _know_ it's wrong. 03:38:30 which one? 03:38:40 (define (conjugate x) (+ (real-part x) (* i (- (imag-part x))))) 03:39:29 hmm seems right 03:39:55 i undeclared identifier 03:39:59 yeah 03:40:03 (define i (sqrt -1)) 03:40:10 or just inline it 03:40:27 => (define (conjugate x) (+ (real-part x) (* (sqrt -1) (- (imag-part x))))) 03:41:09 now that fixed but still same eerror :S 03:41:12 +: expects type as 1st argument, given: #; other arguments were: 16-5i 03:41:35 i wasnt expecting this question to be that bloody :/ 03:45:20 Frq: why not use just * instead of your "multiply"? 03:45:23 simpler and guaranteed to work 03:46:02 i have conjugate inside multiply 03:46:20 how come i can conjugate otherwise 03:46:31 I don't understand your question. 03:46:50 what u dont understand 03:46:50 When is a duck? 03:47:06 Frq: your question. 03:47:12 adu: why a duck? 03:47:17 Because neither leg is both the same! 03:47:30 rudybot: Why does the porridge bird lay its egg in the air? 03:47:31 *offby1: foof, please share the wisdom with us lay people 03:47:35 you mean the whole question ? 03:47:43 offby1: African or European? 03:47:56 *offby1* explodes and flies into the canyon 03:48:00 lol 03:48:19 http://www.resimupload.com/ds234592683_capture.html 03:48:29 this is what i'm trying to do if u ask this 03:54:15 that page doesn't work for me -- I just see a big white square 03:54:35 jcowan [~jcowan@cpe-98-14-172-204.nyc.res.rr.com] has joined #scheme 03:58:50 http://pic1.resimupload.com/r8/resim_234592683.JPG 03:58:53 this one? 03:59:17 btw last 50 mins i have :( 03:59:44 the host name isn't resolving 03:59:59 i have found my error 03:59:59 404. 04:00:01 yay 04:00:04 but couldnt fix it 04:00:11 just in time; my favorite TV show is coming on! 04:00:34 in recursing part i defined multiply using "car" 04:00:48 but after returning values it gets null there 04:00:55 i need to iterate it 04:01:47 http://codepad.org/av1Z2jpT 04:01:56 problem with iterating 04:02:22 zip, multiply by conjugate, sum! 04:06:57 -!- adu [~ajr@pool-173-66-9-50.washdc.fios.verizon.net] has quit [Quit: adu] 04:08:50 when this is fixed all is done 04:08:52 (define (answer x y lenght sum)(if (= 0 lenght) 04:08:54 sum 04:08:55 (answer (cdr x)(cdr y)(- lenght 1) (+ sum (multiply x y))))) 04:09:13 i just need to have this work.. with iteration 04:12:06 hm 04:12:17 you've misspelled length, fwiw 04:12:25 not that it really matters 04:15:07 all elements of list need to be all i need to do is to multiply a1,b1 ; a2,b2 ... an,bn 04:16:57 peddie_ [~peddie@adsl-99-34-76-56.dsl.pltn13.sbcglobal.net] has joined #scheme 04:19:29 -!- copumpkin [~copumpkin@c-75-69-96-50.hsd1.nh.comcast.net] has quit [Quit: copumpkin] 04:19:43 copumpkin [~copumpkin@c-75-69-96-50.hsd1.nh.comcast.net] has joined #scheme 04:20:38 -!- reprore [~reprore@ntkngw227224.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Remote host closed the connection] 04:20:44 -!- peddie [~peddie@adsl-76-254-69-115.dsl.pltn13.sbcglobal.net] has quit [Ping timeout: 240 seconds] 04:23:36 -!- virl [~virl__@chello062178085149.1.12.vie.surfer.at] has quit [Remote host closed the connection] 04:24:56 reprore [~reprore@ntkngw227224.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 04:30:08 last 30 mins could u please help me with this function 04:30:11 (define (answer x y lenght)(if (= 0 lenght) 04:30:13 0 04:30:15 (+ (multiply (list-ref x (- lenght 1))(list-ref y (- lenght 1)))(answer (list-ref x (- lenght 1)) (list-ref y (- lenght 1))(- lenght 1))))) 04:30:45 if i can add just the elements of 2 lists all will be done 04:31:06 it shall worth that i didnt sleep . 7.30 a.m here :( 04:32:52 Huh. Great. Found out how to set label position for text boses. Doesn't seem to work for checkboxes. Odd. 04:34:13 Frq: There is a function called "map". 04:34:28 i dunno how to use 04:34:39 can u help ? i have no more time :S 04:37:01 http://schemers.org/Documents/Standards/R5RS/ 04:37:07 Skip to the section about map. 04:38:32 Note that it's one paragraph of reading followed by a few good examples. 04:38:44 20 mins :/ 04:38:48 i'M looking 04:41:37 -!- kniu [~kniu@HOHOHO.RES.CMU.EDU] has quit [Remote host closed the connection] 04:43:41 just wanna swearrrrrrrr 04:43:52 i wanna cry 04:44:19 the part that i thought i had fixed wasted my 3 hours.. 04:44:40 addamgc [~addamgc@ip72-203-154-146.br.br.cox.net] has joined #scheme 04:44:41 my function is ok.. i fixed this line : ((and (and (real? a) (real? b)) (and (= (imag-part a) 0)(= (imag-part b) 0)))(* a b)) 04:44:45 ok, sure, but you understand how to use map now, right? ;) 04:44:57 no i didnt use map 04:45:30 (complex? ) was checking instead of this...(= (imag-part b) 0))) 04:45:32 pff 04:45:35 ok 04:45:39 now its ok 04:46:06 *Obfuscate* shrugs. 04:48:21 fabe [~fabe@p54A7E59B.dip.t-dialin.net] has joined #scheme 04:50:58 reference to undefined identifier: error 04:51:04 (error "The vectors are not in same dimention") 04:51:08 my procedure 04:51:14 whats wrong with it 04:55:02 -!- addamgc [~addamgc@ip72-203-154-146.br.br.cox.net] has quit [Remote host closed the connection] 04:55:20 addamgc [~addamgc@ip72-203-154-146.br.br.cox.net] has joined #scheme 04:58:10 -!- copumpkin [~copumpkin@c-75-69-96-50.hsd1.nh.comcast.net] has quit [Quit: copumpkin] 04:59:50 -!- addamgc [~addamgc@ip72-203-154-146.br.br.cox.net] has quit [Remote host closed the connection] 05:00:12 addamgc [~addamgc@ip72-203-154-146.br.br.cox.net] has joined #scheme 05:03:38 -!- addamgc [~addamgc@ip72-203-154-146.br.br.cox.net] has quit [Remote host closed the connection] 05:04:00 addamgc [~addamgc@ip72-203-154-146.br.br.cox.net] has joined #scheme 05:05:44 copumpkin [~copumpkin@c-75-69-96-50.hsd1.nh.comcast.net] has joined #scheme 05:07:43 -!- addamgc [~addamgc@ip72-203-154-146.br.br.cox.net] has left #scheme 05:12:00 thanks any1 for help 05:12:11 i shall sleep a lil 05:12:59 -!- Frq [~chatzilla@88.240.136.35] has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.3/20100401080539]] 05:14:41 -!- jcowan [~jcowan@cpe-98-14-172-204.nyc.res.rr.com] has quit [Quit: Leaving] 05:15:58 -!- jonrafkind [~jon@c-67-172-254-235.hsd1.ut.comcast.net] has quit [Ping timeout: 264 seconds] 05:19:44 -!- drwho [~drwho@c-71-225-11-42.hsd1.pa.comcast.net] has quit [Quit: A known mistake is better than an unknown truth.] 05:28:48 russkey [~russkey@ool-18bb0ebd.dyn.optonline.net] has joined #scheme 05:38:12 -!- MeshGear [~8101d12a@gateway/web/freenode/x-qrwqhrtbuorowtom] has quit [Quit: Page closed] 05:39:36 -!- incubot [~incubot@klutometis.wikitex.org] has quit [Remote host closed the connection] 05:44:13 -!- jewel [~jewel@196-210-187-11-tbnb-esr-2.dynamic.isadsl.co.za] has quit [Ping timeout: 265 seconds] 05:44:54 incubot [incubot@klutometis.wikitex.org] has joined #scheme 05:55:24 -!- erg [~erg@li13-154.members.linode.com] has quit [Ping timeout: 276 seconds] 05:55:41 erg [~erg@li13-154.members.linode.com] has joined #scheme 06:16:44 -!- xwl [~user@123.115.114.182] has quit [Ping timeout: 240 seconds] 06:19:33 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 06:19:44 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 06:37:05 adu [~ajr@pool-173-66-9-50.washdc.fios.verizon.net] has joined #scheme 06:37:25 Aperculum [~laurihak@unaffiliated/aperculum] has joined #scheme 06:38:41 chittoor [~chittoor@listertech.in] has joined #scheme 06:40:47 -!- ParthenoGenesis [email@89-180-137-55.net.novis.pt] has left #scheme 06:45:24 npe [~npe@195.207.5.2] has joined #scheme 06:48:57 -!- fabe [~fabe@p54A7E59B.dip.t-dialin.net] has quit [Remote host closed the connection] 06:55:52 -!- reprore [~reprore@ntkngw227224.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Remote host closed the connection] 07:04:02 livinded [~livinded@pool-173-55-27-237.lsanca.fios.verizon.net] has joined #scheme 07:05:40 melba [~blee@unaffiliated/lazz0] has joined #scheme 07:09:39 jgracin [~jgracin@dh111-186.xnet.hr] has joined #scheme 07:11:20 reprore [~reprore@ntkngw227224.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 07:14:09 -!- _rata_ [~rata@pc-233-130-161-190.cm.vtr.net] has quit [Quit: Leaving] 07:15:46 -!- ASau [~user@83.69.227.32] has quit [Excess Flood] 07:18:39 Michael_Mohamed [~Mohamdu@CPE0013f7bc6820-CM0013f7bc681c.cpe.net.cable.rogers.com] has joined #scheme 07:22:06 -!- Mohamdu [~Mohamdu@CPE0013f7bc6820-CM0013f7bc681c.cpe.net.cable.rogers.com] has quit [Ping timeout: 276 seconds] 07:29:34 -!- mbohun [~mbohun@202.124.72.203] has quit [Quit: Leaving] 07:29:45 mbohun [~mbohun@202.124.72.203] has joined #scheme 07:38:45 -!- leppie [~lolcow@196-215-20-80.dynamic.isadsl.co.za] has quit [Read error: Connection reset by peer] 07:39:48 ktzqbp [~ktzqbp@unaffiliated/ktzqbp] has joined #scheme 07:41:24 -!- Omancho [~Omancho@ip70-187-168-252.oc.oc.cox.net] has quit [Quit: The Lord of Murder Shall Perish.] 07:44:11 wippo [~lamesaghi@de3.tcompressor.com] has joined #scheme 07:44:52 leppie [~lolcow@196-215-20-80.dynamic.isadsl.co.za] has joined #scheme 07:52:02 -!- erg [~erg@li13-154.members.linode.com] has quit [Ping timeout: 240 seconds] 07:55:31 -!- tizoc [~user@unaffiliated/tizoc] has quit [Ping timeout: 246 seconds] 07:55:34 tizoc [~user@unaffiliated/tizoc] has joined #scheme 07:58:25 erg [~erg@li13-154.members.linode.com] has joined #scheme 08:04:09 pavelludiq [~quassel@87.246.58.237] has joined #scheme 08:08:07 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 08:10:13 -!- livinded [~livinded@pool-173-55-27-237.lsanca.fios.verizon.net] has quit [Quit: livinded] 08:20:27 -!- copumpkin [~copumpkin@c-75-69-96-50.hsd1.nh.comcast.net] has quit [Quit: copumpkin] 08:24:56 -!- ktzqbp [~ktzqbp@unaffiliated/ktzqbp] has quit [Remote host closed the connection] 08:33:43 fradgers- [~fradgers-@5ad7bb5e.bb.sky.com] has joined #scheme 08:33:54 beyert [~beyert@cpe-76-90-217-240.socal.res.rr.com] has joined #scheme 08:39:57 -!- beyert [~beyert@cpe-76-90-217-240.socal.res.rr.com] has left #scheme 08:41:59 bokr [~eduska@95.154.102.124] has joined #scheme 08:45:27 -!- adu [~ajr@pool-173-66-9-50.washdc.fios.verizon.net] has quit [Quit: adu] 08:48:12 schmir [~schmir@mail.brainbot.com] has joined #scheme 08:52:41 scheme r6rs documentation is nice but is there an online version of that similar to python's language and library references 09:03:55 MrFahrenheit [~RageOfTho@users-33-173.vinet.ba] has joined #scheme 09:06:25 -!- mbohun [~mbohun@202.124.72.203] has quit [Quit: Leaving] 09:08:20 -!- pavelludiq [~quassel@87.246.58.237] has quit [Remote host closed the connection] 09:08:33 masm [~masm@bl5-105-224.dsl.telepac.pt] has joined #scheme 09:17:53 -!- srbloom [~sean@c-24-1-31-229.hsd1.il.comcast.net] has quit [Quit: Leaving.] 09:19:01 Aperculum: I use PLT's online documentation interface, which also indexes R6RS: 09:20:33 oh, excellent 09:20:39 thanks a lot, rotty 09:20:41 :) 09:21:21 what is this chanel about? 09:21:44 wippo: about the Scheme programming language 09:22:04 Is the scheme a sort of assembler? 09:22:19 Aperculum, why "online" in particular? 09:22:30 wippo: it's a sort of lisp 09:22:44 ah, o'kay 09:22:48 wippo: http://en.wikipedia.org/wiki/Scheme_%28programming_language%29 09:22:53 danke 09:23:04 Jafet: it can be offline too but the format is convenient, have you seen python documentation? 09:24:20 I use it regularly. It's terrible 09:24:45 why so 09:24:48 Anyway, I don't know what you mean by an "online" format then. I have an offline copy of the HTML. 09:25:18 I guess the html-format with good index is what I want 09:25:41 Most of the python manual is not cross-referenced, and a lot of it is automatically generated from their overly brief __doc__ attributes 09:25:54 Blkt [~user@160.80.135.5] has joined #scheme 09:26:51 -!- wippo [~lamesaghi@de3.tcompressor.com] has left #scheme 09:28:24 http://www.r6rs.org/final/html/r6rs/r6rs-Z-H-21.html#node_index_start I'm not sure how you get a version of R6RS in a different format that doesn't have an index 09:35:57 ASau [~user@83.69.227.32] has joined #scheme 09:53:57 mbohun [~mbohun@ppp115-156.static.internode.on.net] has joined #scheme 09:56:49 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 09:57:04 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 10:10:03 -!- jmcphers [~jmcphers@218.185.108.156] has quit [Remote host closed the connection] 10:10:48 jmcphers [~jmcphers@218.185.108.156] has joined #scheme 10:14:45 mario-goulart [~user@67.205.85.241] has joined #scheme 10:16:34 pavelludiq [~quassel@87.246.58.237] has joined #scheme 10:21:54 -!- fradgers- [~fradgers-@5ad7bb5e.bb.sky.com] has quit [Remote host closed the connection] 10:24:02 -!- Blkt [~user@160.80.135.5] has quit [Ping timeout: 240 seconds] 10:31:04 alvatar [~alvatar@94.126.222.87.dynamic.jazztel.es] has joined #scheme 10:35:58 Modius [~Modius@cpe-70-123-130-159.austin.res.rr.com] has joined #scheme 10:38:19 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Disconnected by services] 10:38:29 sladegen [~nemo@unaffiliated/sladegen] has joined #scheme 10:39:39 -!- pavelludiq [~quassel@87.246.58.237] has quit [Remote host closed the connection] 10:41:01 ktzqbp [~ktzqbp@unaffiliated/ktzqbp] has joined #scheme 10:54:22 peterwang [~user@125.39.108.10] has joined #scheme 10:54:46 -!- peterwang [~user@125.39.108.10] has left #scheme 10:57:19 Modius_ [~Modius@cpe-70-123-130-159.austin.res.rr.com] has joined #scheme 11:06:32 -!- melba [~blee@unaffiliated/lazz0] has quit [Read error: Connection reset by peer] 11:07:21 -!- Adamant [~Adamant@unaffiliated/adamant] has quit [Quit: Adamant] 11:07:40 melba [~blee@unaffiliated/lazz0] has joined #scheme 11:37:11 MrSamuel [~MrSamuel@60-234-246-33.bitstream.orcon.net.nz] has joined #scheme 11:37:27 Hi, I was wondering if someone can help me write some comments to explain some code 11:38:10 -!- alvatar [~alvatar@94.126.222.87.dynamic.jazztel.es] has quit [Ping timeout: 264 seconds] 11:38:45 alvatar [~alvatar@94.126.222.87.dynamic.jazztel.es] has joined #scheme 11:47:04 Zarutian [~zarutian@194-144-84-110.du.xdsl.is] has joined #scheme 11:48:01 h'lo all. Does anyone know where I can get museme? 11:53:17 luz [~davids@139.82.89.70] has joined #scheme 11:55:38 Zarutian: http://mumble.net/~campbell/scheme/museme.tar.gz 11:56:09 already tried that one, and it 404 on me 11:56:36 sorry, didnt read the hostname;) 11:56:46 thought it was that bloodandcoffee link ;) 11:57:16 i may have had some other pieces on my HDD, but it died recently and i don't have spirit to fight with it and try comprehensive recovery... 11:57:17 and it works 11:57:29 (the link that is) 11:59:08 *Zarutian* lurks 12:00:52 eh, i guess that's it actually, haven't seen sources of schmuse (only docs / mit ai memos) 12:03:43 http://groups.csail.mit.edu/mac/ftpdir/schmuse/ 12:04:19 Nshag [user@lns-bzn-37-82-253-38-232.adsl.proxad.net] has joined #scheme 12:05:53 -!- mathk [~mathk@lns-bzn-37-82-253-30-134.adsl.proxad.net] has quit [Read error: Connection reset by peer] 12:06:04 mathk [~mathk@lns-bzn-21-82-64-92-155.adsl.proxad.net] has joined #scheme 12:19:19 -!- reprore [~reprore@ntkngw227224.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Remote host closed the connection] 12:23:11 reprore [~reprore@ntkngw227224.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 12:28:53 -!- alvatar [~alvatar@94.126.222.87.dynamic.jazztel.es] has quit [Quit: leaving] 12:28:58 alvatar [~alvatar@94.126.222.87.dynamic.jazztel.es] has joined #scheme 12:35:48 Mohamdu [~Mohamdu@CPE0013f7bc6820-CM0013f7bc681c.cpe.net.cable.rogers.com] has joined #scheme 12:39:57 -!- Michael_Mohamed [~Mohamdu@CPE0013f7bc6820-CM0013f7bc681c.cpe.net.cable.rogers.com] has quit [Ping timeout: 276 seconds] 12:58:11 -!- bokr [~eduska@95.154.102.124] has quit [Quit: Leaving.] 13:00:37 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 13:12:16 pavelludiq [~quassel@87.246.58.237] has joined #scheme 13:20:57 Blkt [~user@160.80.135.5] has joined #scheme 13:33:50 -!- samth_away is now known as samth 13:36:26 -!- sladegen [~nemo@unaffiliated/sladegen] has quit [Ping timeout: 240 seconds] 13:38:17 sladegen [~nemo@unaffiliated/sladegen] has joined #scheme 13:43:39 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 13:44:33 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 13:46:48 -!- Modius [~Modius@cpe-70-123-130-159.austin.res.rr.com] has quit [Read error: Connection reset by peer] 13:47:04 Modius [~Modius@cpe-70-123-130-159.austin.res.rr.com] has joined #scheme 14:03:56 -!- saccade_ [~saccade@209-6-54-113.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has quit [Quit: This computer has gone to sleep] 14:06:03 -!- chittoor [~chittoor@listertech.in] has quit [Read error: Connection reset by peer] 14:13:39 -!- pavelludiq [~quassel@87.246.58.237] has quit [Remote host closed the connection] 14:14:14 -!- alvatar [~alvatar@94.126.222.87.dynamic.jazztel.es] has quit [Quit: leaving] 14:17:10 xwl [~user@123.115.114.182] has joined #scheme 14:22:01 -!- Blkt [~user@160.80.135.5] has quit [Ping timeout: 240 seconds] 14:22:29 -!- jgracin [~jgracin@dh111-186.xnet.hr] has quit [Quit: Leaving] 14:44:37 Cowmoo [~Cowmoo@cambridge-vxty.basistech.com] has joined #scheme 14:47:31 -!- sstrickl [~sstrickl@c-98-216-238-231.hsd1.ma.comcast.net] has quit [Quit: sstrickl] 14:47:31 -!- russkey [~russkey@ool-18bb0ebd.dyn.optonline.net] has quit [Read error: Connection reset by peer] 14:53:41 russkey [~russkey@ool-18bb0ebd.dyn.optonline.net] has joined #scheme 15:02:50 -!- jimrees_ [~jimrees@ita4fw1.itasoftware.com] has quit [Quit: Ex-Chat] 15:03:12 bweaver [~user@75-148-111-133-Chattanooga.hfc.comcastbusiness.net] has joined #scheme 15:03:37 -!- MrFahrenheit [~RageOfTho@users-33-173.vinet.ba] has quit [Read error: Connection reset by peer] 15:03:59 MrFahrenheit [~RageOfTho@users-33-173.vinet.ba] has joined #scheme 15:06:09 alvatar [~alvatar@94.126.222.87.dynamic.jazztel.es] has joined #scheme 15:10:51 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Quit: jeapostrophe] 15:15:05 Frq [~chatzilla@88.244.45.210] has joined #scheme 15:23:31 virl [~virl__@chello062178085149.1.12.vie.surfer.at] has joined #scheme 15:31:58 -!- Cowmoo [~Cowmoo@cambridge-vxty.basistech.com] has quit [Remote host closed the connection] 15:35:37 acarrico [~acarrico@24.149.57.185] has joined #scheme 15:38:44 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 240 seconds] 15:39:03 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 15:41:30 jewel [~jewel@196-210-187-11-tbnb-esr-2.dynamic.isadsl.co.za] has joined #scheme 15:47:11 fabe [~fabe@p54A7E59B.dip.t-dialin.net] has joined #scheme 15:48:54 TR2N [email@89.180.231.59] has joined #scheme 15:49:49 sstrickl [~sstrickl@dublin.ccs.neu.edu] has joined #scheme 15:52:36 Great Cthulhu, the noise on plt-scheme this AM. 15:58:20 kniu [~kniu@HOHOHO.RES.CMU.EDU] has joined #scheme 16:05:10 -!- peddie_ [~peddie@adsl-99-34-76-56.dsl.pltn13.sbcglobal.net] has quit [Ping timeout: 264 seconds] 16:05:44 -!- npe [~npe@195.207.5.2] has quit [Ping timeout: 240 seconds] 16:06:27 peddie [~peddie@adsl-99-34-76-56.dsl.pltn13.sbcglobal.net] has joined #scheme 16:08:24 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 16:08:36 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 16:11:40 kencausey [~ken@67.15.6.88] has joined #scheme 16:12:59 You could disable join/part visibility 16:13:01 parolang [~user@8e4a01246100775874c4f448e9887093.oregonrd-wifi-1261.amplex.net] has joined #scheme 16:13:09 npe [~npe@195.207.5.2] has joined #scheme 16:13:10 -!- npe [~npe@195.207.5.2] has quit [Excess Flood] 16:14:06 REPLeffect [~REPLeffec@69.54.115.254] has joined #scheme 16:17:40 Jafet: What has that got to do with anything? 16:21:12 -!- ingenious [~norpor@2001:638:204:10:2e0:81ff:fe5c:f481] has quit [Read error: Connection reset by peer] 16:23:48 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 16:27:01 -!- xwl [~user@123.115.114.182] has quit [Ping timeout: 264 seconds] 16:28:53 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 16:29:25 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 16:31:23 chandler, a fool and his email reading time are soon 'part'ed? 16:36:58 -!- ASau [~user@83.69.227.32] has quit [Remote host closed the connection] 16:37:21 rtra [~rtra@unaffiliated/rtra] has joined #scheme 16:38:00 -!- ktzqbp [~ktzqbp@unaffiliated/ktzqbp] has quit [Quit: Leaving] 16:38:11 ASau [~user@83.69.227.32] has joined #scheme 16:40:03 -!- schmir [~schmir@mail.brainbot.com] has quit [Remote host closed the connection] 16:40:05 -!- jewel [~jewel@196-210-187-11-tbnb-esr-2.dynamic.isadsl.co.za] has quit [Ping timeout: 265 seconds] 16:44:16 Blkt [~user@dynamic-adsl-94-37-245-43.clienti.tiscali.it] has joined #scheme 16:46:33 pavelludiq [~quassel@87.246.58.237] has joined #scheme 16:49:49 -!- fda314925 [~fda314925@211.239.124.232] has quit [Remote host closed the connection] 16:57:54 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 16:58:04 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 17:03:12 -!- pavelludiq [~quassel@87.246.58.237] has quit [Ping timeout: 276 seconds] 17:11:37 Checkie [7016@unaffiliated/checkie] has joined #scheme 17:12:36 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Ping timeout: 245 seconds] 17:12:43 -!- kniu [~kniu@HOHOHO.RES.CMU.EDU] has quit [Quit: Leaving] 17:45:46 incubot: History shows again and again how email points out the folly of men 17:45:50 break? At three in the morning? What folly! This is the prime hacking time. 17:49:40 chittoor [~rajesh@115.117.232.154] has joined #scheme 17:51:24 schmir [~schmir@p54A905B0.dip0.t-ipconnect.de] has joined #scheme 17:52:56 ysph [~user@adsl-221-200-212.mgm.bellsouth.net] has joined #scheme 18:00:48 -!- schmir [~schmir@p54A905B0.dip0.t-ipconnect.de] has quit [Ping timeout: 265 seconds] 18:10:34 copumpkin [~copumpkin@c-75-69-96-50.hsd1.nh.comcast.net] has joined #scheme 18:11:02 langmartin [~user@exeuntcha2.tva.gov] has joined #scheme 18:14:16 ysph` [~user@adsl-221-198-35.mgm.bellsouth.net] has joined #scheme 18:15:39 -!- ysph [~user@adsl-221-200-212.mgm.bellsouth.net] has quit [Ping timeout: 248 seconds] 18:17:10 pavelludiq [~quassel@87.246.58.237] has joined #scheme 18:19:58 -!- ysph` [~user@adsl-221-198-35.mgm.bellsouth.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 18:20:35 -!- `net` [not@2001:5c0:1400:b::6ced] has quit [Read error: Operation timed out] 18:20:43 ysph [~user@adsl-221-198-35.mgm.bellsouth.net] has joined #scheme 18:21:36 Daemmerung: what are you talking about? 18:23:06 -!- MrSamuel [~MrSamuel@60-234-246-33.bitstream.orcon.net.nz] has left #scheme 18:29:03 -!- ysph [~user@adsl-221-198-35.mgm.bellsouth.net] has quit [Read error: Operation timed out] 18:34:18 `net` [not@2001:5c0:1400:b::6ea3] has joined #scheme 18:35:45 -!- TR2N is now known as _HAL_9000_ 18:36:06 -!- _HAL_9000_ is now known as TR2N 18:40:26 -!- MrFahrenheit [~RageOfTho@users-33-173.vinet.ba] has quit [Ping timeout: 265 seconds] 18:45:05 kniu [~kniu@HOHOHO.RES.CMU.EDU] has joined #scheme 18:49:14 davazp [~user@83.57.37.58] has joined #scheme 18:52:22 choas [~lars@p5B0DC928.dip.t-dialin.net] has joined #scheme 18:53:10 -!- kniu [~kniu@HOHOHO.RES.CMU.EDU] has quit [Remote host closed the connection] 18:54:35 rgrau_ [~user@185.Red-88-15-139.dynamicIP.rima-tde.net] has joined #scheme 18:57:56 -!- alvatar [~alvatar@94.126.222.87.dynamic.jazztel.es] has quit [Read error: Connection reset by peer] 18:59:31 alvatar [~alvatar@222.119.20.95.dynamic.jazztel.es] has joined #scheme 19:02:21 -!- melba [~blee@unaffiliated/lazz0] has quit [Read error: Connection reset by peer] 19:03:36 melba [~blee@unaffiliated/lazz0] has joined #scheme 19:04:55 -!- alvatar [~alvatar@222.119.20.95.dynamic.jazztel.es] has quit [Quit: leaving] 19:05:06 -!- untouchable [~untouchab@dhcp-129-64-166-29.dorm.brandeis.edu] has quit [Ping timeout: 245 seconds] 19:07:10 Fare [~Fare@ita4fw1.itasoftware.com] has joined #scheme 19:19:01 -!- reprore [~reprore@ntkngw227224.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Remote host closed the connection] 19:23:15 -!- acarrico [~acarrico@24.149.57.185] has left #scheme 19:24:10 -!- bweaver [~user@75-148-111-133-Chattanooga.hfc.comcastbusiness.net] has left #scheme 19:31:14 -!- luz [~davids@139.82.89.70] has quit [Quit: Client exiting] 19:31:19 asarch [~asarch@189.188.141.9] has joined #scheme 19:36:25 -!- bgs000 is now known as bgs100 19:39:43 -!- myu2 [~myu2@w179122.dynamic.ppp.asahi-net.or.jp] has quit [Remote host closed the connection] 19:43:29 -!- asarch [~asarch@189.188.141.9] has quit [Quit: Leaving] 19:46:54 -!- Frq [~chatzilla@88.244.45.210] has quit [Quit: ChatZilla 0.9.86 [Firefox 3.6.3/20100401080539]] 19:47:45 -!- Daemmerung [~goetter@1133sae.mazama.net] has quit [Quit: Smoove out.] 19:54:25 JoelMcCracken [~joelmccra@pool-96-235-6-22.pitbpa.east.verizon.net] has joined #scheme 19:54:34 -!- specbot [~specbot@common-lisp.net] has quit [Read error: Operation timed out] 19:59:53 alvatar [~alvatar@222.119.20.95.dynamic.jazztel.es] has joined #scheme 20:03:22 merimus_ [~merimus@c-67-171-83-6.hsd1.pa.comcast.net] has joined #scheme 20:08:33 Adamant_ [~Adamant@c-68-54-179-181.hsd1.ga.comcast.net] has joined #scheme 20:08:33 -!- Adamant_ [~Adamant@c-68-54-179-181.hsd1.ga.comcast.net] has quit [Changing host] 20:08:33 Adamant_ [~Adamant@unaffiliated/adamant] has joined #scheme 20:09:51 -!- merimus_ [~merimus@c-67-171-83-6.hsd1.pa.comcast.net] has quit [Quit: Ex-Chat] 20:11:43 fradgers- [~fradgers-@5ad7bb5e.bb.sky.com] has joined #scheme 20:11:58 -!- copumpkin [~copumpkin@c-75-69-96-50.hsd1.nh.comcast.net] has quit [Quit: copumpkin] 20:13:44 -!- fradgers- [~fradgers-@5ad7bb5e.bb.sky.com] has quit [Remote host closed the connection] 20:21:54 fradgers- [~fradgers-@5ad7bb5e.bb.sky.com] has joined #scheme 20:29:44 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 240 seconds] 20:29:58 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 20:32:43 -!- langmartin [~user@exeuntcha2.tva.gov] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 20:35:52 -!- rtra [~rtra@unaffiliated/rtra] has quit [Remote host closed the connection] 20:36:49 -!- alvatar [~alvatar@222.119.20.95.dynamic.jazztel.es] has quit [Quit: leaving] 20:37:28 copumpkin [~copumpkin@c-75-69-96-50.hsd1.nh.comcast.net] has joined #scheme 20:45:18 -!- chittoor [~rajesh@115.117.232.154] has quit [Quit: This client just died] 20:51:38 MrFahrenheit [~RageOfTho@users-55-204.vinet.ba] has joined #scheme 20:53:24 -!- bgs100 is now known as bgs000 20:59:13 -!- bgs000 is now known as bgs100 21:11:46 schmir [~schmir@p54A93648.dip0.t-ipconnect.de] has joined #scheme 21:24:21 turbofail [~user@adsl-69-238-246-201.dsl.pltn13.pacbell.net] has joined #scheme 21:27:37 Daemmerung [~goetter@1133sae.mazama.net] has joined #scheme 21:29:38 -!- timj_ [~timj@e176207086.adsl.alicedsl.de] has quit [Ping timeout: 240 seconds] 21:38:47 -!- schmir [~schmir@p54A93648.dip0.t-ipconnect.de] has quit [Ping timeout: 265 seconds] 21:42:28 timj_ [~timj@e176194086.adsl.alicedsl.de] has joined #scheme 21:49:34 -!- JoelMcCracken [~joelmccra@pool-96-235-6-22.pitbpa.east.verizon.net] has quit [Ping timeout: 264 seconds] 21:51:26 MononcQc [~ferd@modemcable062.225-20-96.mc.videotron.ca] has joined #scheme 21:54:43 JoelMcCracken [~joelmccra@pool-72-95-204-229.pitbpa.east.verizon.net] has joined #scheme 21:59:05 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 265 seconds] 21:59:21 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 22:00:52 -!- MrFahrenheit [~RageOfTho@users-55-204.vinet.ba] has quit [Read error: Connection reset by peer] 22:01:22 MrFahrenheit [~RageOfTho@users-55-204.vinet.ba] has joined #scheme 22:03:10 schmir [~schmir@p54A93A26.dip0.t-ipconnect.de] has joined #scheme 22:04:38 saccade_ [~saccade@dhcp-18-111-38-158.dyn.mit.edu] has joined #scheme 22:07:43 -!- saccade_ [~saccade@dhcp-18-111-38-158.dyn.mit.edu] has quit [Client Quit] 22:11:09 drwho [~drwho@c-71-225-11-42.hsd1.pa.comcast.net] has joined #scheme 22:19:56 haiworld [~ravi@isp.becroft.co.nz] has joined #scheme 22:21:09 -!- Daemmerung [~goetter@1133sae.mazama.net] has quit [Quit: Smoove out.] 22:25:56 -!- drwho [~drwho@c-71-225-11-42.hsd1.pa.comcast.net] has quit [Ping timeout: 245 seconds] 22:26:20 -!- Blkt [~user@dynamic-adsl-94-37-245-43.clienti.tiscali.it] has quit [Read error: Connection reset by peer] 22:30:34 myu2 [~myu2@w179122.dynamic.ppp.asahi-net.or.jp] has joined #scheme 22:30:37 rgrau__ [~user@193.153.240.63] has joined #scheme 22:32:10 -!- rgrau_ [~user@185.Red-88-15-139.dynamicIP.rima-tde.net] has quit [Ping timeout: 260 seconds] 22:34:46 Michael_Mohamed [~Mohamdu@CPE0013f7bc6820-CM0013f7bc681c.cpe.net.cable.rogers.com] has joined #scheme 22:37:50 -!- Mohamdu [~Mohamdu@CPE0013f7bc6820-CM0013f7bc681c.cpe.net.cable.rogers.com] has quit [Ping timeout: 246 seconds] 22:39:46 -!- fradgers- [~fradgers-@5ad7bb5e.bb.sky.com] has quit [Remote host closed the connection] 22:41:33 -!- fabe [~fabe@p54A7E59B.dip.t-dialin.net] has quit [Remote host closed the connection] 22:44:53 ktzqbp [~ktzqbp@unaffiliated/ktzqbp] has joined #scheme 22:53:41 _rata_ [~929bd90b@gateway/web/freenode/x-casxxznqiwpekhmt] has joined #scheme 22:53:49 -!- _rata_ [~929bd90b@gateway/web/freenode/x-casxxznqiwpekhmt] has left #scheme 23:03:36 -!- choas [~lars@p5B0DC928.dip.t-dialin.net] has quit [Quit: leaving] 23:06:14 Poeir [~Poeir@c-98-228-60-162.hsd1.il.comcast.net] has joined #scheme 23:15:09 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 23:15:24 -!- ktzqbp [~ktzqbp@unaffiliated/ktzqbp] has quit [Remote host closed the connection] 23:20:52 -!- rgrau__ [~user@193.153.240.63] has quit [Remote host closed the connection] 23:30:59 -!- Zarutian [~zarutian@194-144-84-110.du.xdsl.is] has quit [Quit: Zarutian] 23:32:51 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 23:33:51 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 23:33:55 slyphon [~slyphon@ool-457515b9.dyn.optonline.net] has joined #scheme 23:33:56 -!- slyphon [~slyphon@ool-457515b9.dyn.optonline.net] has quit [Changing host] 23:33:56 slyphon [~slyphon@unaffiliated/slyphon] has joined #scheme 23:34:04 -!- melba [~blee@unaffiliated/lazz0] has quit [Quit: http://pics.kuvaton.com/kuvei/dj_jeezy.jpg] 23:37:32 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Quit: jeapostrophe] 23:38:28 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 23:38:41 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 23:39:32 RageOfThou [~RageOfTho@users-55-204.vinet.ba] has joined #scheme 23:42:56 -!- MrFahrenheit [~RageOfTho@users-55-204.vinet.ba] has quit [Ping timeout: 246 seconds] 23:48:06 saccade_ [~saccade@209-6-54-113.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has joined #scheme 23:51:38 -!- slyphon [~slyphon@unaffiliated/slyphon] has quit [Ping timeout: 276 seconds] 23:54:08 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Ping timeout: 246 seconds]