00:02:36 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Read error: Connection reset by peer] 00:03:48 araujo [~araujo@gentoo/developer/araujo] has joined #scheme 00:04:12 -!- pumpkin is now known as copumpkin 00:09:16 -!- kingless [~kingless@108-65-61-54.lightspeed.rlghnc.sbcglobal.net] has quit [Quit: Colloquy for iPad - http://colloquy.mobi] 00:13:52 -!- djcb [~djcb@a88-114-88-233.elisa-laajakaista.fi] has quit [Remote host closed the connection] 00:19:43 ah, so CL then. 00:28:11 -!- pygospa [~TheRealPy@kiel-5f769d4f.pool.mediaWays.net] has quit [Disconnected by services] 00:28:18 bremner: Does it resemble CL more than Scheme? After some superficial hacking, I'd say so. 00:28:24 pygospa [~TheRealPy@kiel-4dbec9b5.pool.mediaWays.net] has joined #scheme 00:28:48 Yes, IIRC, it's a lisp-2. 00:29:02 It's not 00:29:07 Really? 00:29:10 lisp-1 00:29:19 Then it resembles more scheme than CL. 00:29:38 lisp-1 vs lisp-2 is a very superficial difference 00:30:07 Well, it uses [] like scheme too. 00:30:17 no 00:30:20 separating functions and variables is superficial? 00:30:22 [] in clojure means vectors 00:30:25 not lists 00:30:41 Yes but it requires vectors at the same place you would write [] in scheme. 00:30:44 some scheme implementations use [] as a synonym for () 00:31:11 pjb: But scheme doesn't require anything, they are interchangeable 00:31:21 Bah! Anyways, I'm totally uninterested by clojure. 00:31:43 I don't care much about it either 00:33:05 drdo: lisp-1 in the sense that e.g. (def foo (fn ...)) suffices to define functions as well as variables? 00:33:19 klutometis: some things resemble Scheme, some things resemble CL. 00:33:45 klutometis: lisp-1 in the sense that there's only one namespace 00:34:04 dnolen_: Indeed; it's funny to me, for instance, that fun resembles case-lambda. 00:34:08 s/fun/fn/ 00:34:15 klutometis: defn is not primitive in Clojure. 00:35:21 Also, clojure still has macros like in CL, big mistake 00:35:32 And no, hygenic macros are not nice either 00:36:46 "The Clojure conditional system is based around nil and false, with nil and false representing the values of logical falsity in conditional tests - anything else is logical truth." 00:36:58 Nice; why the fuck would they create a ternary boolean? 00:37:08 klutometis: java 00:37:09 drdo: they are more hygenic then CL macros, less tedious than syntax-rules IMHO. 00:37:14 drdo: Ah, of course. 00:37:31 dnolen_: Or you can just have operatives like in kernel and be better than any of that 00:38:23 drdo: sure, but is Kernel a standards compliant Scheme ? 00:38:32 What? 00:38:48 drdo: so not familiar w/ kernel, what is that? 00:38:51 sorry I mean. 00:38:59 http://web.cs.wpi.edu/~jshutt/kernel.html 00:39:08 it's a reasearch toy language with fexprs 00:39:18 smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 00:39:27 and "better" is not universally agreed-to here :) 00:39:31 -!- samth is now known as samth_away 00:39:34 drdo: yeah so it's not Scheme. 00:39:47 dnolen_: Clojure is not scheme? 00:40:01 samth_away: What are the arguments against? 00:40:04 drdo: no I thought we were comparing Clojure and Scheme :) 00:40:11 against fexprs? 00:40:21 dnolen_: Yes, i'm saying that i think it's a mistake for cloure not to have fexprs 00:40:25 *clojure 00:40:27 -!- fbass [~zac@75-173-86-142.albq.qwest.net] has quit [Read error: Connection reset by peer] 00:40:30 Or any new lisp for that matter 00:40:32 that they're a terrible language feature that destroys any ability to reason about your program 00:40:41 samth_away: lol? 00:40:51 um, very serious 00:41:04 Please explain how they do that 00:41:09 (in a way that macros don't) 00:41:26 see mitch wand's paper "the theory of fexprs is trivial" 00:41:41 drdo: yeah I looked at kernel, yucky syntax. 00:41:44 in general, in a system w/ fexprs (f (+ 1 1)) != (f 2) 00:42:11 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Ping timeout: 240 seconds] 00:42:14 or rather (lambda (f) (f (+ 1 1))) != (lambda (f) (f 2)) 00:43:21 every scheme compiler i know optimizes the first to the second 00:43:29 but if you have fexprs, you can't 00:43:34 of course you can 00:43:40 It's called partial evaluation 00:44:04 no, that's not the case, i gave you the whole program 00:44:20 ? 00:44:38 you can't do that optimization unless you know the call sites of that lambda 00:44:43 which you don't, in general 00:45:16 if you want to say that fexprs can be compiled effectively given (a) the whole program and (b) a mythically-powerful partial evaluator 00:45:22 then i might believe 00:45:50 but that still doesn't mean *I* as a programmer don't want to be able to reason about my programs without performing whole-program partial-evaluation 00:46:06 That doesn't require you to do that 00:46:20 it certainly does 00:46:28 Of course you can't know for sure that (f (+ 1 1)) = (f 2) 00:46:33 But you can't with macros either 00:46:48 People can write bad code whatever you do 00:46:51 but you can (a) if you know that f is not a macro, as in the case i gave 00:46:57 or (b) after expansion 00:47:01 drdo: eh? macros must expand. 00:47:10 neither of which is available for fexprs 00:47:12 but you (a) if you know that f is not a fexpr 00:47:24 but you only know that if you know all call sites of that lambda 00:47:32 which you don't if you don't have the whole program 00:47:42 that lambda isn't realistic code 00:47:58 what? 00:48:14 Coming up with contrived examples isn't very productive when discussing optimizations 00:48:22 that is *not* a contrived example 00:48:32 drdo: come on now :) the basic structure of that lambda will occur in many programs. 00:48:41 are you seriously claiming that you don't take functions as arguments in any of your programs? 00:49:44 *samth_away* is now actually away 00:50:25 -!- littlebobby [~bob@unaffiliated/littlebobby] has quit [Quit: Ex-Chat] 00:50:29 dherman [~dherman@32.174.255.89] has joined #scheme 00:51:46 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 00:52:40 I had misread your code 00:52:51 That example means nothing 00:52:57 You can't even do that with macros 00:57:57 klutometis: in anycase, I do a lot of Clojure, I ported miniKanren from The Reasoned Schemer to Clojure which I thought would be considerably more difficult given lack of TCO etc. But it turned out to quite pleasant. In general I find that Clojure does what it can to support Scheme's recursive emphasis, and on some fronts like FP it takes the paradigm a bit further. 00:59:04 drdo, the point is, you can after macro expansion, and you can't pass a macro to a lambda, so `f' is guaranteed to not be a macro. 00:59:25 DT``: Exactly, macros aren't first class, that's a problem 00:59:28 if `+' has the usual binding, you can partially evaluate it. 00:59:39 with fexprs, you can't be sure. 01:00:11 dnolen_: Interesting; it looks interesting, to be sure. I don't know if it will replace Scheme anytime soon as my favorite hacking language; but maybe the clojure advocates will make persuasive arguments at the meetup tonight. 01:01:04 DT``: You can write bad code with anything, i don't think the policy of removing nice clean features for complicated less powerful ones to "protect" programmers is a good idea 01:01:27 drdo, it's not protecting the programmer, it's optimization. 01:01:41 It's not an optimization 01:01:58 If you use fexprs like you use macros you have the same expansion at compile time 01:02:54 but I can't be sure that (lambda (f) (f (+ 1 1))) will never be called with a fexpr in some other module. 01:03:26 klutometis: the real killer aspect of the language for me is the emphasis on building the language on top of protocols, a la Art of the Metaobject Protocol. That the fundamental data structures are not hardwired into the language is pretty cool. 01:03:29 Why do you need to be sure of that? 01:03:43 drdo, because the fexpr will get '(+ 1 1), not 2. 01:04:01 a function, instead, will get a 2. 01:04:36 I know, that doesn't answer my question though 01:04:42 so, the compiler can't optimize (+ 1 1) => 2. 01:05:02 If people pass a fexpr like that, they know that it cannot be optimized in that way 01:05:25 no, even if they don't, the compiler can't optimize it anyway. 01:06:01 The compiler can't optimize what? 01:06:17 do constant folding. 01:06:44 -!- pnkfelix [~Adium@184.234.27.169] has quit [Quit: Leaving.] 01:06:54 You can optimize if you use fexprs like you use macros, if you use the power that comes with the fact that they are first class you can't optimize all the time 01:06:54 *you* don't pass a fexpr, what about other modules? 01:07:05 what about other modules? 01:07:16 DT``: Other modules know that if they pass an fexpr that it might not get optimized 01:07:42 but you have to know that other modules do or don't pass a fexpr. 01:07:50 so, again, you need the whole program. 01:08:23 dnolen_: I'll have to take a closer look at protocols; I gathered from a cursory reading of the docs that Protocols are not Interfaces (tm). 01:08:29 Penten [~user@114.255.149.182] has joined #scheme 01:08:38 If you actually care about that, you can have declarations like in CL 01:08:46 (not counting fexprs that may call that function at runtime) 01:09:58 imho, they cause more problems than they solve. 01:13:01 klutometis: yes. but Protocols are relatively new, so there will need to be some shifting around to replace Interfaces with Protocols. Even so, being able to plug in your own list-like thing w/o hassle is incredibly useful. 01:15:27 eholk [~eholk@2620:101:8003:200:e2f8:47ff:fe3e:26e0] has joined #scheme 01:21:12 -!- dherman [~dherman@32.174.255.89] has quit [Remote host closed the connection] 01:25:20 klutometis: https://github.com/clojure/core.logic/blob/master/src/main/clojure/clojure/core/logic/minikanren.clj, I think this won't completely offend Scheme sensibilities. I was also surprised that it can solve the classic Zebra/Einstein puzzle 3X faster than SWI-Prolog. William Byrd, Dan Friedman, & Oleg Kiselyov are clever fellows. 01:25:20 http://tinyurl.com/4yovkyx 01:26:01 -!- MrFahrenheit [~RageOfTho@users-146-61.vinet.ba] has quit [Ping timeout: 258 seconds] 01:30:10 jcowan [~John@p-74-209-24-147.dsl1.rtr.chat.fpma.frpt.net] has joined #scheme 01:33:52 -!- smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has quit [Quit: smtlaissezfaire] 01:42:15 pnkfelix [~Adium@c-76-121-97-74.hsd1.wa.comcast.net] has joined #scheme 01:48:42 smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 01:50:43 -!- smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has quit [Client Quit] 01:55:11 DrDuck [~duck@adsl-98-81-129-72.hsv.bellsouth.net] has joined #scheme 02:03:03 -!- pnkfelix [~Adium@c-76-121-97-74.hsd1.wa.comcast.net] has quit [Quit: Leaving.] 02:10:32 -!- eholk [~eholk@2620:101:8003:200:e2f8:47ff:fe3e:26e0] has quit [Quit: eholk] 02:11:45 smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 02:12:37 -!- smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has quit [Client Quit] 02:26:38 -!- dnolen_ [~davidnole@pool-68-161-137-73.ny325.east.verizon.net] has quit [Quit: dnolen_] 02:36:30 dralston [~dralston@S0106687f74a12729.va.shawcable.net] has joined #scheme 02:42:14 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 02:48:57 eholk [~eholk@63-235-13-3.dia.static.qwest.net] has joined #scheme 02:58:54 -!- tcleval [~funnyguy@187.114.108.195] has quit [Quit: leaving] 03:00:48 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 03:01:15 Owwww... mah sensibilities 03:01:22 Whoppen? 03:01:31 I have been offended completely. 03:01:58 Hmm, by what or whom? 03:02:06 Clojure advocates be sappin' mah channel 03:02:39 I saw the word `fexpr' in the log. Do I want to read more closely? 03:02:43 No. 03:02:48 OK. 03:03:04 I like what little I've seen of Clojure. 03:03:21 almost went to a local Clojure meetup this evening, but as usual I was too pooped 03:03:32 Mutter mutter precious bodily fluids mutter 03:03:48 offby1: The local Clojure meetup here is hosted by one of the big commercial Clojure consultancies. :-P 03:03:53 I liked Clojure in the beginning, but I've lost touch with it. 03:03:56 there is such a thing? 03:04:02 Big commercial... ??? 03:04:20 I do not avoid Clojure, Daemmerung; but I do deny it my Scheme-/me fidgets uncomfortably. 03:04:24 heh 03:04:26 Okay, time for me to come clean. I am actually hosted by one of the big commercial Scheme consultancies. 03:04:32 that was supposed to be "scheme-fu" 03:04:45 offby1: http://clojure.com/ <-- big Clojure consultancy 03:04:48 *offby1* is hosted by the generosity of Mrs Offby1 03:04:49 The biggest, even 03:05:03 -!- Oddity [~Oddity@unaffiliated/oddity] has quit [Read error: Connection reset by peer] 03:05:07 huh 03:05:12 Ewww. Italic letter in the middle of a roman word. Ewwwwwwwwww. 03:05:22 -!- eholk [~eholk@63-235-13-3.dia.static.qwest.net] has quit [Quit: eholk] 03:05:36 offby1 makes pimpin' look easy 03:05:56 she needs me for her tech fix 03:06:35 She is generous with her Chimay. 03:06:55 Is that the beer, or the cheese, or both? 03:07:05 Oddity [~Oddity@unaffiliated/oddity] has joined #scheme 03:07:08 Never heard of the cheese. 03:07:16 OWWW MAH EYES 03:07:23 *Daemmerung* should have trusted jcowan 03:07:38 dherman [~dherman@c-67-180-182-145.hsd1.ca.comcast.net] has joined #scheme 03:07:56 Isn't the cheese named so because it is soaked in the beer? 03:08:28 They have a cheese whose rind is soaked in beer. 03:08:55 mmm 03:09:05 my guess is it's so named because the same monks make it. 03:09:18 But they have three other cheeses which are not, and both cheese and beer are named after the municipality in which the monastery is situated. 03:09:37 bokr [~ed@109.110.36.196] has joined #scheme 03:10:30 Scourmont Abbey, if I recall correctly. 03:10:34 You do. 03:10:44 Daemmerung: What hurts now? 03:11:15 I wanted to see what constitutes a Big Clojure Consultancy. 03:12:45 Evidently a big Clojure consultancy would steal sheep. Well, I'm not sure whether it's not as bad as or worse than letterspacing lowercase, but it's not far off in either case. 03:12:45 -!- dherman [~dherman@c-67-180-182-145.hsd1.ca.comcast.net] has left #scheme 03:13:36 So, is it better to steal cheese, or to steal Manchego? 03:13:48 The tobacco industry isn't doing so well, so I'm glad to see former cigarette rollers being put to work in graphic design. 03:13:50 (or more to the point, Abbaye de Belloc.) 03:14:09 Not fond of manchego, jcowan? 03:14:23 Mmmm... Manchego 03:14:37 I am, in fact, fond of it. I mention it because it was the first sheep's-milk cheese I thought of. 03:14:45 I confess to looking up Abbaye de Belloc. 03:14:48 Ah. 03:14:58 And what's more, I misspoke: 03:15:02 s/steal cheese/steal sheep 03:15:19 *Daemmerung* leaves to find cheese (lacking sheep nearby) 03:16:08 'Fraid I don't know, but I wouldn't be surprised at either craven action from one who would letterspace lowercase or italicize the middle of a roman word. 03:16:58 Sheep stealing is probably not particularly the act of a craven. 03:17:48 Anyway, *poof*. 03:19:15 Satisfied my cravin' for now. 03:25:33 What is this letterspacing of which you speak? I see no sign of it on Chrome, nor yet in the HTML or CSS. 03:28:44 Something in the stylesheet, perhaps. The tackiness is

Clojure

, no more. Note also inappropriate use of headers tags. 03:34:14 This is the web-dev equivalent of "programmer art." I think I will take note of the glass walls in my own house, and chill. 03:35:52 offby1: I'm at a clojure meetup as we speak, hosted by some startup (Factual, Inc.?); most of the conversation revolves around complexity of mutation and syntax. 03:36:39 Syntax, naturally. 03:36:55 I imagine that at a similar Scheme meetup, there would lord a general STFU about such things; and people would get down to business. 03:37:27 *shrug* 03:37:33 people gonna talk about what interests 'em 03:37:51 -!- dralston [~dralston@S0106687f74a12729.va.shawcable.net] has quit [Quit: leaving] 03:38:21 Impressive organization. Are the E coast meetups also all tonight, too? Giant pincer envelopment of the N American continent. 03:38:59 I should think that at a Clojure meetup there would be a three-sided Goldilocks battle: 03:39:04 too many parens, too few parens, and just right. 03:40:21 jcowan: Glad I caught you, by the way; do you mind submitting to POLA w.r.t. naming R7RS? 03:41:12 Tell me more. Though I hardly see why the Port of Los Angeles should have anything to say in the matter. 03:41:21 eholk [~eholk@63-235-13-3.dia.static.qwest.net] has joined #scheme 03:41:40 Sorry: "Principle of Least Astonishment"; R7RS seems to pessimize astonishment. 03:41:58 Anything else wouldn't have the same pedigree or legitimacy, would it? 03:42:42 (I actually thought you meant "Principle of Least Authority") 03:42:55 (I was holding out for People of Lower Alabama.) 03:43:27 Well, that's just it. By using the name "R7RS", we are strongly suggesting that we are producing something upward compatible with R6RS, as R6RS was with R5RS, R4RS, R3RS, and R2RS. 03:46:06 *jcowan* occasionally reflects, irrelevantly to this conversation, on how hideous it would be to live one's life by the principle of least authority. 03:46:31 jcowan: I like your proposed new names, and I support y'all breaking the RnRS tradition. However, if I recall correctly, every successive iteration of the spec did break certain previous programs. Big lexical breakages in early iterations; subtle dynamic-wind breakages later. 03:46:53 In small ways, yes. And you'll note that I don't go back beyond R2RS in my remark above. 03:47:08 #!true #!false nil 03:47:37 dynamic-wind vs call/cc 03:48:02 *Daemmerung* leaves to find Ashwin Ram's lament about nil 03:48:13 *jcowan* nods. 03:48:34 https://spreadsheets.google.com/pub?key=tS3XfMIS7TfMSwMTtd8cbaA&output=html shows how the various standards compare (ignore the last three columns) 03:48:35 http://tinyurl.com/67tvdvs 03:48:46 Well, that didn't take long. "A short ballad dedicated to the growth of programs." 03:48:47 The R6RS columns ignore all innovations. 03:51:22 That spreadsheet only looks backwards. That is, it ignores elements present in old Schemes absent in new. And it doesn't pay attention to semantic changes. 03:54:18 There was substantial flamage over those changes as each new Scheme revision appeared. If, say, R3 had taken a different name, so as not to offend fans of (eq? nil #!false), would that have diminished its legitimacy? 03:57:23 It looks backwards and forwards from R5RS, actually. 03:57:37 And it doesn't handle lexical issues, that's true. 03:57:42 Heaven, I almost forgot the great multiple-value flamage of R5. -- Am I not seeing some of your sheet? I will re-review. 03:59:45 Oh, I follow you now. R5 is your baseline. 04:00:52 Exactly. 04:04:41 -!- pandeiro [~pandeiro@187.105.251.85] has quit [Quit: Thanks, fellas] 04:06:41 Anyway, I posit that no Scheme was upward compatible with its predecessors. Every successive Revised broke valid programs in previous versions of Scheme. The latest iteration merely continues this tradition. 04:08:21 But much more so, relative to R6RS. It massively removes functionality. 04:08:34 It does some of the same things in very incompatible ways. 04:09:12 *Perfect* upward compatibility is nonexistent in PLs generally; even ES5 has breaking changes wrt ES3. 04:09:17 I trust your judgement here. I am only answering your defense of the proposed renaming, above. 04:09:37 Sure, I understand. It's useful to have a sympathetic advocatus diaboli. 04:10:30 -!- jao [~user@pdpc/supporter/professional/jao] has quit [Ping timeout: 252 seconds] 04:12:37 Changing the standard naming scheme gives a "Okay, let's rethink this" message, which I believe is on-point. 04:12:57 (It's a cool ballad, although no Scheme has gone to #t-or-#f-only -- yet.) 04:13:20 (But you sure can be compact if you are willing to engage in data punning.) 04:13:28 Poe: "the viol, the violet, and the vine" 04:13:33 Joyce: "vinolent" 04:14:18 I am grateful that the final step - forcing boolean? to conditional tests - was never taken. 04:14:32 smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 04:14:57 levi` [~user@c-174-52-219-147.hsd1.ut.comcast.net] has joined #scheme 04:14:58 *jcowan* shrugs. 04:15:22 I'm glad Java broke backward compatibility with C and C++ in this respect. 04:15:53 So not a Java fan. So I'll take your word for it. 04:16:02 -!- levi [~user@c-174-52-219-147.hsd1.ut.comcast.net] has quit [Read error: Connection reset by peer] 04:17:06 Classic C blunders like "if (a = b)" for "if (a == b)" can't happen in Java unless a and b are booleans. 04:17:31 jcowan: Doesn't the corpse of ERR5RS serve as a warning to RnRS-orthogonal naming? 04:17:32 -!- aidalgol [~user@114-134-7-23.rurallink.co.nz] has quit [Quit: plonk] 04:17:39 Or maybe ERR5RS was doomed for other reasons. 04:18:27 Only slightly orthogonal. 04:18:35 "Scheme 201x" is really orthogonal. 04:19:17 -!- bombshelter13b [~bombshelt@76-10-149-209.dsl.teksavvy.com] has quit [Quit: If only your veins were filled with oil, the world would rush to your rescue!] 04:20:40 C 04:20:53 jcowan: I forget, did you already reject the asymptotic-approach-to-some-irrational scheme? 04:20:58 C's problem is one of poorly chosen lexemes. 04:21:54 {7.3, 7.38, 7.389, ...} taking e^2; {6.2, 6.28, 6.283, ...} taking 2 * pi. 04:22:00 -!- DrDuck [~duck@adsl-98-81-129-72.hsv.bellsouth.net] has quit [Ping timeout: 276 seconds] 04:22:07 klutometis: What is this, TeX? Anyway, a small number would look like a version number, which is why I don't wnat Scheme 12. 04:22:19 Furthermore, R7RS would be the 8th edition. 04:22:47 *Daemmerung* laughts 04:22:58 *Daemmerung* laughs, too. Also, /me can't type in the dark 04:23:02 Daemmerung: Only partly so. Because "if (x)" means "if (x != 0)", people get in the habit of not testing against zero. 04:25:11 Dammit; 201# feels anachronistic before it's even been specified. Oh, well; all the big languages do it, I guess. 04:25:59 It's never been a problem for me in Scheme: separating empty list from conditional-failure suffices. That's the big pun. C is all about integers (even its characters are integers), so we live with that in its if statements. 04:26:36 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 04:26:44 Not a fan of C++, so I won't try to defend it. 04:26:56 *jcowan* wonders if "float r; if (r)" means "float r; if (r != 0.0)" in C. 04:27:46 jcowan: it seems to 04:27:58 Thanks. 04:28:37 *Daemmerung* doesn't have a C reference handy, and doesn't own one written after 1985, anyway 04:28:51 I wasn't looking at a reference, just gcc + objdump -d :) 04:29:26 what did it generate? test against a fp register, or did it move r into an int register? 04:29:46 4: f3 0f 11 45 fc movss %xmm0,-0x4(%rbp) 04:29:46 9: 0f 57 c0 xorps %xmm0,%xmm0 04:29:47 c: 0f 2e 45 fc ucomiss -0x4(%rbp),%xmm0 04:29:47 thinking about hidden load-store stalls.... 04:29:47 that 04:30:03 *jcowan* has never used floating-point in anger, except in languages that only have flonums, like Perl, Basic, and Lua. 04:30:14 (UCOMISS--Unordered Compare Scalar Single-Precision Floating-Point Values and Set EFLAGS) 04:30:23 Thuryago. 04:30:43 *jcowan* has made his bucket list of open-source software to write 04:33:00 nice to see the compiler emitting SSE as default behavior. FINALLY. 04:35:16 (BASIC on the Commodore 64 has (signed, 16-bit) integers ..) 04:36:51 Yeah, there are Basics like that. 04:37:15 What are my Scheme options on the C64? 04:37:52 This language has an annoyingly ungoogleable name. 04:38:17 Daemmerung : the closest i've heard about is (haven't tried those) 04:38:21 *Daemmerung* will name his next language "Stuff" 04:38:56 My first ISLisp implementation is going to be named Dinky, in honor of CHEAPY, the first Scheme compiler. 04:39:35 Not "Dearie"? 04:39:41 has lots of fun language names 04:39:57 Daemmerung: Hmm, maybe. 04:40:18 It's going to be embedded in CL, and will serve as a bootstrap for Blesity, the compiler-to-Java. 04:41:41 There was an interpreter named Micro-Lisp on the C64. 04:42:02 ski: that is a wonderful list. "Sauerkraut," oh my. 04:42:11 http://lemonodor.com/archives/2007/11/microlisp.html 04:42:25 Daemmerung : indeed :D 04:42:47 Ah yes, the Aardappel guy. 04:43:06 He's added a lot since I looked. 04:44:02 jcowan: don't forget the embedded italic. Dinky 04:44:11 *jcowan* bleahs. 04:44:41 Or, this being a Java stuffs: Djnky 04:45:11 No, no, Dinky isn't Java at all. 04:45:30 You load it into a running CL, do (in-package islisp), and you're in an ISLisp REPL. 04:45:33 Misreading your who-compiled-whom graph, then 04:45:51 ISLisp needs an interpreter at compile time, but not at run time. 04:46:11 It is about as non-dynamic as a Lisp can be and still be a Lisp. 04:46:26 Oh, so you can write Blesity in Blesity, so to speak. 04:46:36 ...in ISLisp 04:47:05 dnolen_ [~davidnole@184.152.69.75] has joined #scheme 04:47:05 *Daemmerung* loves him some Chinglish "stuffs" 04:47:36 I'll write Blesity in ISLisp and run it on Dinky/Dearie 04:47:43 and when it works, it can compile itself. 04:47:58 Groovy. 04:48:42 *jcowan* grupmths. 04:50:29 -!- smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has quit [Ping timeout: 252 seconds] 04:53:42 The hard part of making Blesity is going to be smooth interoperation with Java. 04:53:54 I really want Java methods to be ILOS methods, but it's hard. 04:58:36 will reflection from Java be a problem? 04:59:54 No need for it, because everything's static. 05:00:18 The compiler can use javap to discover what methods/fields/constructors a class has. 05:00:35 (or look directly inside, but that seems like a pain) 05:06:46 -!- jcowan [~John@p-74-209-24-147.dsl1.rtr.chat.fpma.frpt.net] has quit [Quit: Leaving] 05:07:56 -!- bgs100 [~ian@unaffiliated/bgs100] has quit [Quit: Leaving] 05:15:44 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Ping timeout: 240 seconds] 05:25:41 wingo [~wingo@90.164.198.39] has joined #scheme 05:25:49 gravicappa [~gravicapp@ppp91-77-170-223.pppoe.mtu-net.ru] has joined #scheme 05:27:35 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Quit: Leaving] 05:41:24 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Quit: Leaving.] 06:00:07 -!- mithridates [~mithridat@142.167.229.211] has quit [Quit: Lost terminal] 06:06:00 -!- eholk [~eholk@63-235-13-3.dia.static.qwest.net] has quit [Quit: eholk] 06:10:55 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 06:23:33 -!- bokr [~ed@109.110.36.196] has quit [Ping timeout: 264 seconds] 06:24:18 -!- blueadept [~blueadept@unaffiliated/blueadept] has quit [Quit: Leaving] 06:28:59 ASau [~user@95-26-236-45.broadband.corbina.ru] has joined #scheme 06:29:51 -!- wingo [~wingo@90.164.198.39] has quit [Ping timeout: 252 seconds] 06:36:10 bokr [~ed@109.110.53.214] has joined #scheme 06:36:57 -!- gravicappa [~gravicapp@ppp91-77-170-223.pppoe.mtu-net.ru] has quit [Ping timeout: 255 seconds] 06:41:16 -!- aidalgol [~user@114-134-7-23.rurallink.co.nz] has quit [Quit: Restarting Emacs...] 06:56:55 -!- bokr [~ed@109.110.53.214] has quit [Ping timeout: 258 seconds] 06:58:57 bokr [~ed@109.110.54.20] has joined #scheme 07:00:03 -!- mmc [~michal@82-148-210-75.fiber.unet.nl] has quit [Quit: Leaving.] 07:05:55 -!- qebab is now known as finnrobi 07:08:13 -!- dnolen_ [~davidnole@184.152.69.75] has quit [Quit: dnolen_] 07:12:15 -!- Daemmerung [~goetter@63.142.200.228] has quit [Ping timeout: 258 seconds] 07:20:16 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 07:21:06 -!- monqy [~chap@pool-71-102-215-70.snloca.dsl-w.verizon.net] has quit [Quit: hello] 07:23:12 realitygrill_ [~realitygr@c-24-5-7-139.hsd1.ca.comcast.net] has joined #scheme 07:34:55 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 07:37:46 gravicappa [~gravicapp@ppp91-77-214-234.pppoe.mtu-net.ru] has joined #scheme 07:37:52 skld__ [~skld@vpn.bangalore.geodesic.com] has joined #scheme 07:48:20 -!- gravicappa [~gravicapp@ppp91-77-214-234.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 07:50:46 masm [~masm@2.80.135.128] has joined #scheme 08:05:10 -!- DT`` [~Feeock@net-93-149-53-147.cust.dsl.teletu.it] has quit [Quit: DT``] 08:12:45 -!- kennyd [~kennyd@93-141-31-149.adsl.net.t-com.hr] has quit [Ping timeout: 276 seconds] 08:25:05 mmc [~michal@salm-office-nat.tomtomgroup.com] has joined #scheme 08:26:15 pdelgallego [~pdelgalle@1385159933.dhcp.dbnet.dk] has joined #scheme 08:26:32 -!- tzhuang [~tzhuang@72.53.83.36] has quit [Read error: Operation timed out] 08:28:11 -!- skld__ [~skld@vpn.bangalore.geodesic.com] has left #scheme 08:30:29 tzhuang [~tzhuang@72.53.83.36] has joined #scheme 08:31:35 -!- realitygrill_ [~realitygr@c-24-5-7-139.hsd1.ca.comcast.net] has quit [Quit: realitygrill_] 08:33:20 DT`` [~Feeock@net-93-149-53-147.cust.dsl.teletu.it] has joined #scheme 08:36:13 -!- drdo [~drdo@91.205.108.93.rev.vodafone.pt] has quit [Remote host closed the connection] 08:39:13 drdo [~drdo@91.205.108.93.rev.vodafone.pt] has joined #scheme 08:39:19 -!- aidalgol [~user@114-134-7-23.rurallink.co.nz] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 08:44:55 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 08:44:55 -!- aidalgol [~user@114-134-7-23.rurallink.co.nz] has quit [Remote host closed the connection] 08:47:25 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 08:48:42 araujo [~araujo@190.73.44.29] has joined #scheme 08:48:42 -!- araujo [~araujo@190.73.44.29] has quit [Changing host] 08:48:42 araujo [~araujo@gentoo/developer/araujo] has joined #scheme 08:54:49 Kajtek [~paniwladc@nat4-230.ghnet.pl] has joined #scheme 09:00:46 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Quit: Leaving.] 09:05:25 -!- pdelgallego [~pdelgalle@1385159933.dhcp.dbnet.dk] has quit [Read error: Connection reset by peer] 09:11:34 kennyd [~kennyd@93-138-207-254.adsl.net.t-com.hr] has joined #scheme 09:47:51 MrFahrenheit [~RageOfTho@users-146-61.vinet.ba] has joined #scheme 09:52:04 -!- tzhuang [~tzhuang@72.53.83.36] has quit [Ping timeout: 240 seconds] 09:52:30 alaricsp [~alaric@geniedb.hotdesktop.biz] has joined #scheme 10:05:27 tzhuang [~tzhuang@72.53.83.36] has joined #scheme 10:10:30 -!- aidalgol [~user@114-134-7-23.rurallink.co.nz] has quit [Quit: Restarting Emacs...] 10:12:58 -!- Penten [~user@114.255.149.182] has quit [Remote host closed the connection] 10:14:44 DrDuck [~duck@adsl-98-81-129-72.hsv.bellsouth.net] has joined #scheme 10:24:23 -!- DrDuck [~duck@adsl-98-81-129-72.hsv.bellsouth.net] has quit [Ping timeout: 240 seconds] 10:31:04 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 10:32:07 mads- [~mar@pdpc/supporter/active/mads-] has joined #scheme 10:42:15 tomppa [~tomppa@a91-155-210-159.elisa-laajakaista.fi] has joined #scheme 10:44:29 -!- Kajtek [~paniwladc@nat4-230.ghnet.pl] has quit [Quit: Leaving.] 10:54:20 -!- tomppa [~tomppa@a91-155-210-159.elisa-laajakaista.fi] has quit [Quit: Ex-Chat] 10:58:11 gravicappa [~gravicapp@80.90.116.82] has joined #scheme 11:03:07 kuribas [~user@94-227-88-20.access.telenet.be] has joined #scheme 11:11:54 slilo [~user@host-92-126-198-197.pppoe.omsknet.ru] has joined #scheme 11:12:19 hi. can somebody explain string port mechanism for me? 11:16:36 I mean, what is it for? :) 11:20:05 to be able to use the same functions that work on ports to use strings 11:20:29 karme [~user@stgt-5f70f08c.pool.mediaWays.net] has joined #scheme 11:20:46 I cant get why 11:21:43 I use it mostly for testing 11:21:48 hi! i am looking for a combinator similar to compose i would call cond-compose. difference to compose: if a function returns #f, return #f immediately - is there a "standard name" for that one? 11:23:13 C-Keen: you mean just use strings instead of files while debug? 11:23:55 slilo: yes or instead of the network 11:24:13 ok, thank you 11:24:28 slilo: network is a better example 11:24:38 but I think there should be another reasons for use it :) 11:24:40 slilo: it allows you to "replay" input data 11:25:01 slilo: just use them and see 11:26:48 ok :) 11:26:52 thanks again 11:27:57 it's fun! 11:28:05 I think Land of Lisp also has some notes on them 11:38:08 -!- aidalgol [~user@114-134-7-23.rurallink.co.nz] has quit [Quit: zZzZzZz] 11:42:02 copumpkin [~pumpkin@user-12hcrs5.cable.mindspring.com] has joined #scheme 11:42:02 -!- copumpkin [~pumpkin@user-12hcrs5.cable.mindspring.com] has quit [Changing host] 11:42:02 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 11:42:27 smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 11:43:21 -!- smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has quit [Client Quit] 11:56:44 littlebobby [~bob@unaffiliated/littlebobby] has joined #scheme 12:01:29 smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 12:20:31 ,paste 12:29:28 mmc1 [~michal@sams-office-nat.tomtomgroup.com] has joined #scheme 12:40:21 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 12:52:02 -!- masm [~masm@2.80.135.128] has quit [Quit: Leaving.] 13:00:38 -!- smtlaissezfaire [~smtlaisse@user-387hbid.cable.mindspring.com] has quit [Quit: smtlaissezfaire] 13:05:07 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 250 seconds] 13:12:40 tab1ta [~tab1ta@host53-168-dynamic.180-80-r.retail.telecomitalia.it] has joined #scheme 13:16:35 -!- gravicappa [~gravicapp@80.90.116.82] has quit [Remote host closed the connection] 13:24:12 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Remote host closed the connection] 13:24:41 copumpkin [~pumpkin@gw1.mcgraw-hill.com] has joined #scheme 13:24:41 -!- copumpkin [~pumpkin@gw1.mcgraw-hill.com] has quit [Changing host] 13:24:42 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 13:34:41 -!- karme [~user@stgt-5f70f08c.pool.mediaWays.net] has quit [Remote host closed the connection] 13:43:43 misterncw [~misterncw@82.71.241.25] has joined #scheme 13:45:42 dnolen_ [~davidnole@184.152.69.75] has joined #scheme 13:45:50 homie [~levgue@xdsl-84-44-211-157.netcologne.de] has joined #scheme 13:47:38 -!- Modius [~Modius@cpe-70-123-140-183.austin.res.rr.com] has quit [Quit: "Object-oriented design" is an oxymoron] 13:49:03 -!- mmc [~michal@salm-office-nat.tomtomgroup.com] has quit [Quit: Leaving.] 13:55:41 -!- dsmith [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has quit [Ping timeout: 240 seconds] 13:59:02 (quit 13:59:07 -!- tzhuang [~tzhuang@72.53.83.36] has quit [Quit: leaving] 14:01:34 -!- REPLeffect [~REPLeffec@69.54.115.254] has quit [Ping timeout: 252 seconds] 14:01:51 Dickmaster [~2cf7772db@197.120.21.107] has joined #scheme 14:01:56 Holla 14:02:08 Please point me out to a command line scheme compiler 14:02:53 -> Any Scheme compiler. 14:03:02 I'm thinking `Chicken' though. 14:03:39 Thanks 14:12:50 -!- leppie [~lolcow@196-210-194-43.dynamic.isadsl.co.za] has quit [] 14:14:08 -!- misterncw [~misterncw@82.71.241.25] has quit [Remote host closed the connection] 14:14:57 stis [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 14:18:08 leppie [~lolcow@196-210-194-43.dynamic.isadsl.co.za] has joined #scheme 14:19:27 misterncw [~misterncw@82.71.241.25] has joined #scheme 14:19:39 -!- dnolen_ [~davidnole@184.152.69.75] has quit [Quit: dnolen_] 14:30:01 dsmith [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has joined #scheme 14:31:57 bgs100 [~ian@unaffiliated/bgs100] has joined #scheme 14:36:03 -!- Dickmaster [~2cf7772db@197.120.21.107] has quit [Ping timeout: 252 seconds] 14:41:40 rpg [~rpg@c-98-229-120-236.hsd1.ma.comcast.net] has joined #scheme 14:50:04 bugQ [~bug@c-71-195-207-34.hsd1.ut.comcast.net] has joined #scheme 14:53:04 realitygrill_ [~realitygr@c-24-5-7-139.hsd1.ca.comcast.net] has joined #scheme 14:53:43 pnkfelix [~Adium@c-76-121-97-74.hsd1.wa.comcast.net] has joined #scheme 14:56:51 gravicappa [~gravicapp@80.90.116.82] has joined #scheme 15:00:40 -!- drdo [~drdo@91.205.108.93.rev.vodafone.pt] has quit [Read error: Connection reset by peer] 15:05:55 mmc [~michal@82-148-210-75.fiber.unet.nl] has joined #scheme 15:08:18 -!- bokr [~ed@109.110.54.20] has quit [Ping timeout: 252 seconds] 15:10:31 pandeiro [~pandeiro@187.105.251.85] has joined #scheme 15:22:09 -!- realitygrill_ [~realitygr@c-24-5-7-139.hsd1.ca.comcast.net] has quit [Quit: realitygrill_] 15:34:36 replore_ [~replore@ntkngw256114.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 15:36:15 tupi [~david@139.82.89.24] has joined #scheme 15:39:18 -!- kuribas [~user@94-227-88-20.access.telenet.be] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 15:44:28 ohwow_ [~oh@box.m3n.biz] has joined #scheme 15:49:17 -!- penryu [~tanuki@unaffiliated/penryu] has left #scheme 15:52:30 dnolen [u2594@gateway/web/irccloud.com/x-dzpnpskbtwftuzhv] has joined #scheme 15:52:39 monqy [~chap@pool-71-102-215-70.snloca.dsl-w.verizon.net] has joined #scheme 15:55:18 -!- mads- [~mar@pdpc/supporter/active/mads-] has quit [Quit: Leaving] 16:01:54 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 16:03:20 The last space shuttle flight is up... 16:03:33 kephas [~pierre@AStrasbourg-551-1-130-59.w90-26.abo.wanadoo.fr] has joined #scheme 16:05:44 -!- nowhereman [~pierre@AStrasbourg-551-1-100-188.w90-13.abo.wanadoo.fr] has quit [Ping timeout: 240 seconds] 16:06:05 About time. Now how much is the monthly on my Boeing X-plane? 16:08:41 https://www.nytimes.com/2011/07/07/science/07webb.html?_r=1 16:08:47 :( 16:09:41 jewel [~jewel@196-209-224-145.dynamic.isadsl.co.za] has joined #scheme 16:10:07 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 16:15:23 realitygrill_ [~realitygr@38.104.194.118] has joined #scheme 16:15:54 -!- realitygrill_ [~realitygr@38.104.194.118] has quit [Client Quit] 16:16:10 Daemmerung [~goetter@63.142.200.228] has joined #scheme 16:20:56 -!- pchrist [~spirit@gentoo/developer/pchrist] has quit [Quit: leaving] 16:21:30 pchrist [~spirit@gentoo/developer/pchrist] has joined #scheme 16:23:58 HG` [~HG@p5DC05257.dip.t-dialin.net] has joined #scheme 16:26:32 -!- Oddity [~Oddity@unaffiliated/oddity] has quit [Read error: Connection reset by peer] 16:28:39 -!- tauntaun [~Crumpet@li327-197.members.linode.com] has quit [Quit: leaving] 16:29:46 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Read error: Operation timed out] 16:31:01 -!- misterncw [~misterncw@82.71.241.25] has quit [Remote host closed the connection] 16:31:14 -!- HG` [~HG@p5DC05257.dip.t-dialin.net] has quit [Quit: Leaving.] 16:38:25 jonrafkind [~jon@ebc-1-104.hotspot.utah.edu] has joined #scheme 16:40:14 tauntaun [~Crumpet@li327-197.members.linode.com] has joined #scheme 16:44:47 ohwow_: well, sure, it would allow to see that no moon landing occured... 16:45:21 -!- nteon [~nteon@204.28.122.186] has quit [Ping timeout: 255 seconds] 16:45:25 better spend more money on another war, right? 16:45:54 Better keep the money for friends, than for scientists... 16:52:05 new2net [~new2net@unaffiliated/new2net] has joined #scheme 16:53:04 -!- evhan [~evhan@unaffiliated/evhan] has quit [Quit: Lost terminal] 16:54:47 -!- alaricsp [~alaric@geniedb.hotdesktop.biz] has quit [Quit: Leaving] 16:55:21 -!- jonrafkind [~jon@ebc-1-104.hotspot.utah.edu] has quit [Ping timeout: 276 seconds] 16:55:31 mithridates [~mithridat@142.167.229.211] has joined #scheme 16:59:05 evhan [~evhan@unaffiliated/evhan] has joined #scheme 16:59:08 nteon [~nteon@204.28.122.186] has joined #scheme 17:04:49 jonrafkind [~jon@155-99-196-217.uconnect.utah.edu] has joined #scheme 17:07:26 -!- tauntaun [~Crumpet@li327-197.members.linode.com] has quit [Quit: leaving] 17:24:54 -!- stepnem [~stepnem@176.119.broadband10.iol.cz] has quit [Read error: Connection reset by peer] 17:27:29 stepnem [~stepnem@176.119.broadband10.iol.cz] has joined #scheme 17:29:03 REPLeffect [~REPLeffec@69.54.115.254] has joined #scheme 17:36:17 tzhuang [~tzhuang@72.53.83.36] has joined #scheme 17:36:41 -!- dsmith [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has quit [Ping timeout: 240 seconds] 17:39:23 -!- cataska [~cataska@210.64.6.233] has quit [Ping timeout: 240 seconds] 17:41:53 blueadept [~blueadept@unaffiliated/blueadept] has joined #scheme 17:44:52 cataska [~cataska@210.64.6.233] has joined #scheme 17:45:59 -!- elliottcable is now known as ec|fkn_away_nick 17:46:38 Kajtek [~paniwladc@nat4-230.ghnet.pl] has joined #scheme 17:49:06 -!- gravicappa [~gravicapp@80.90.116.82] has quit [Ping timeout: 276 seconds] 17:53:33 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Ping timeout: 240 seconds] 17:55:56 homie` [~levgue@xdsl-78-35-148-153.netcologne.de] has joined #scheme 17:56:29 -!- homie` [~levgue@xdsl-78-35-148-153.netcologne.de] has quit [Remote host closed the connection] 17:57:42 -!- homie [~levgue@xdsl-84-44-211-157.netcologne.de] has quit [Ping timeout: 252 seconds] 17:59:09 -!- bugQ [~bug@c-71-195-207-34.hsd1.ut.comcast.net] has quit [Ping timeout: 240 seconds] 17:59:28 homie [~levgue@xdsl-78-35-148-153.netcologne.de] has joined #scheme 18:00:12 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 18:01:31 -!- bremner [~bremner@yantan.tethera.net] has quit [Quit: ZNC - http://znc.sourceforge.net] 18:02:33 bremner [~bremner@yantan.tethera.net] has joined #scheme 18:02:45 molbdnilo [~Ove@c80-216-198-94.bredband.comhem.se] has joined #scheme 18:05:09 bugQ [~bug@c-71-195-207-34.hsd1.ut.comcast.net] has joined #scheme 18:07:39 eholk [~eholk@2620:101:8003:200:e2f8:47ff:fe3e:26e0] has joined #scheme 18:13:20 tauntaun [~user@li327-197.members.linode.com] has joined #scheme 18:25:58 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Ping timeout: 240 seconds] 18:27:59 -!- MrFahrenheit [~RageOfTho@users-146-61.vinet.ba] has quit [Ping timeout: 258 seconds] 18:29:28 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 18:30:16 -!- bremner [~bremner@yantan.tethera.net] has quit [Quit: ZNC - http://znc.sourceforge.net] 18:30:53 masm [~masm@2.80.135.128] has joined #scheme 18:33:09 gravicappa [~gravicapp@ppp91-77-182-203.pppoe.mtu-net.ru] has joined #scheme 18:37:45 -!- gravicappa [~gravicapp@ppp91-77-182-203.pppoe.mtu-net.ru] has quit [Read error: Connection reset by peer] 18:39:24 -!- bugQ [~bug@c-71-195-207-34.hsd1.ut.comcast.net] has quit [Ping timeout: 240 seconds] 18:40:02 gravicappa [~gravicapp@ppp91-77-191-101.pppoe.mtu-net.ru] has joined #scheme 18:45:13 bugQ [~bug@c-71-195-207-34.hsd1.ut.comcast.net] has joined #scheme 18:51:10 -!- molbdnilo [~Ove@c80-216-198-94.bredband.comhem.se] has quit [Quit: tubby bye-bye!] 18:53:59 -!- gravicappa [~gravicapp@ppp91-77-191-101.pppoe.mtu-net.ru] has quit [Ping timeout: 240 seconds] 18:55:32 -!- samth_away is now known as samth 18:57:40 gravicappa [~gravicapp@ppp91-77-184-234.pppoe.mtu-net.ru] has joined #scheme 18:58:01 -!- pnkfelix [~Adium@c-76-121-97-74.hsd1.wa.comcast.net] has quit [Quit: Leaving.] 19:04:11 -!- gravicappa [~gravicapp@ppp91-77-184-234.pppoe.mtu-net.ru] has quit [Ping timeout: 240 seconds] 19:04:21 -!- kytibe [~kytibe@212.174.109.55] has quit [Read error: Connection reset by peer] 19:04:26 -!- REPLeffect [~REPLeffec@69.54.115.254] has quit [Ping timeout: 252 seconds] 19:04:52 REPLeffect [~REPLeffec@69.54.115.254] has joined #scheme 19:09:42 quiccker [~quiccker@212.174.109.55] has joined #scheme 19:10:22 -!- tauntaun [~user@li327-197.members.linode.com] has quit [Remote host closed the connection] 19:12:12 -!- jonrafkind [~jon@155-99-196-217.uconnect.utah.edu] has quit [Read error: Operation timed out] 19:17:09 phax [~phax@unaffiliated/phax] has joined #scheme 19:19:59 jonrafkind [~jon@155-99-196-217.uconnect.utah.edu] has joined #scheme 19:20:05 zitterbewegung [43ad6b5a@gateway/web/freenode/ip.67.173.107.90] has joined #scheme 19:20:32 -!- zitterbewegung [43ad6b5a@gateway/web/freenode/ip.67.173.107.90] has left #scheme 19:20:39 zitterbewegung [43ad6b5a@gateway/web/freenode/ip.67.173.107.90] has joined #scheme 19:20:42 -!- zitterbewegung is now known as r2q2 19:21:02 been so long since i have been in here 19:21:28 HG` [~HG@p5DC05257.dip.t-dialin.net] has joined #scheme 19:21:57 ping 19:22:50 pong 19:22:53 long time no see 19:22:56 Scheme abides. 19:24:41 yea 19:25:07 i wish my job was in scheme :_( 19:25:32 I use it for scripting 19:25:36 for work 19:26:04 maybe i should use it for scripting 19:26:09 -!- PreciousMetals [~Heart@unaffiliated/colours] has quit [Ping timeout: 276 seconds] 19:26:27 *r2q2* should get back to work now 19:26:35 what do you work? 19:27:15 Get a PhD and teach. Then your job will be in Scheme. Of course, you'll be hip-deep in half-wits, but that's pretty common everywhere. 19:32:23 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 19:32:30 http://compbio.cs.uic.edu/ 19:32:42 yea I'm working on phd 19:32:45 still doing undergrad 19:33:32 z0d we do social network research 19:36:27 superjudge [~superjudg@c83-250-198-227.bredband.comhem.se] has joined #scheme 19:44:07 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has quit [Ping timeout: 246 seconds] 19:48:08 smtlaissezfaire_ [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 19:49:36 preflex [~preflex@unaffiliated/mauke/bot/preflex] has joined #scheme 19:49:57 i mean 19:50:21 I'm an undergraduate that wants to work on his phd but I am currently employed at a research lab as a research programmer. 19:51:12 -!- Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has quit [Read error: Connection reset by peer] 19:52:11 Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has joined #scheme 19:55:15 -!- sloyd_ [sloyd@station457.vo3.net] has quit [Ping timeout: 260 seconds] 19:55:45 -!- ec|fkn_away_nick is now known as elliottcable 19:56:23 -!- eholk [~eholk@2620:101:8003:200:e2f8:47ff:fe3e:26e0] has quit [Quit: eholk] 19:59:11 -!- tab1ta [~tab1ta@host53-168-dynamic.180-80-r.retail.telecomitalia.it] has quit [Ping timeout: 240 seconds] 20:12:08 nowhere_man [~pierre@AStrasbourg-551-1-12-219.w86-213.abo.wanadoo.fr] has joined #scheme 20:12:34 tab1ta [~tab1ta@host209-40-dynamic.10-79-r.retail.telecomitalia.it] has joined #scheme 20:14:07 -!- kephas [~pierre@AStrasbourg-551-1-130-59.w90-26.abo.wanadoo.fr] has quit [Ping timeout: 252 seconds] 20:18:37 Oddity [~Oddity@unaffiliated/oddity] has joined #scheme 20:19:25 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has left #scheme 20:20:41 hey, I forgot about racketcon :) 20:25:36 ccorn [~ccorn@g132123.upc-g.chello.nl] has joined #scheme 20:26:52 -!- yell0 [~yello@unaffiliated/contempt] has quit [Quit: leaving] 20:27:36 yell0 [yello@unaffiliated/contempt] has joined #scheme 20:30:35 -!- jewel [~jewel@196-209-224-145.dynamic.isadsl.co.za] has quit [Ping timeout: 250 seconds] 20:32:22 -!- pandeiro [~pandeiro@187.105.251.85] has quit [Quit: Thanks, fellas] 20:34:47 -!- ccorn [~ccorn@g132123.upc-g.chello.nl] has quit [Quit: ccorn] 20:41:28 mads- [~mads@pdpc/supporter/active/mads-] has joined #scheme 20:41:33 sloyd [sloyd@station457.vo3.net] has joined #scheme 20:42:47 -!- superjudge [~superjudg@c83-250-198-227.bredband.comhem.se] has quit [Quit: superjudge] 20:50:43 -!- tab1ta [~tab1ta@host209-40-dynamic.10-79-r.retail.telecomitalia.it] has quit [Quit: Leaving] 20:54:16 pandeiro [~pandeiro@187.105.251.85] has joined #scheme 20:54:19 PreciousMetals [~Heart@unaffiliated/colours] has joined #scheme 20:55:06 -!- nteon [~nteon@204.28.122.186] has quit [Ping timeout: 255 seconds] 20:58:54 drdo [~drdo@91.205.108.93.rev.vodafone.pt] has joined #scheme 21:00:35 eholk [~eholk@nat/mozilla/x-svxmukuonkrwkzni] has joined #scheme 21:09:20 lisppaste [~lisppaste@tiger.common-lisp.net] has joined #scheme 21:09:45 minion [~minion@tiger.common-lisp.net] has joined #scheme 21:09:51 specbot [~specbot@tiger.common-lisp.net] has joined #scheme 21:10:01 -!- rpg [~rpg@c-98-229-120-236.hsd1.ma.comcast.net] has quit [Quit: rpg] 21:10:40 nteon [~nteon@204.28.122.186] has joined #scheme 21:12:04 -!- tupi [~david@139.82.89.24] has quit [Ping timeout: 240 seconds] 21:16:06 ccorn [~ccorn@g132123.upc-g.chello.nl] has joined #scheme 21:19:10 vash [~vash@143.132.99.115] has joined #scheme 21:21:11 Cran1988 [~manos@212-70-215-137.dyn.adsl.tee.gr] has joined #scheme 21:23:58 -!- pandeiro [~pandeiro@187.105.251.85] has quit [Quit: Thanks, fellas] 21:28:48 -!- replore_ [~replore@ntkngw256114.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Remote host closed the connection] 21:31:50 -!- drdo [~drdo@91.205.108.93.rev.vodafone.pt] has quit [Remote host closed the connection] 21:32:20 drdo [~drdo@91.205.108.93.rev.vodafone.pt] has joined #scheme 21:33:01 -!- Cran1988 [~manos@212-70-215-137.dyn.adsl.tee.gr] has quit [Quit: Leaving] 21:33:21 -!- phax [~phax@unaffiliated/phax] has quit [Quit: Leaving] 21:33:23 -!- aidalgol [~user@114-134-7-23.rurallink.co.nz] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:35:17 tupi [~david@189.60.162.202] has joined #scheme 21:41:25 -!- faze` [~chris@c-66-41-214-247.hsd1.mn.comcast.net] has left #scheme 21:42:12 -!- alfa_y_omega [~alfa_y_om@90.166.231.220] has quit [Read error: Connection reset by peer] 21:42:22 alaricsp [~alaric@relief.warhead.org.uk] has joined #scheme 21:52:29 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 250 seconds] 21:52:34 -!- pothos [~pothos@111-240-173-51.dynamic.hinet.net] has quit [Read error: Operation timed out] 21:52:50 pothos_ [~pothos@111-240-170-20.dynamic.hinet.net] has joined #scheme 21:53:10 -!- pothos_ is now known as pothos 21:53:43 pumpkin [~pumpkin@user-12hcrs5.cable.mindspring.com] has joined #scheme 21:53:43 -!- pumpkin [~pumpkin@user-12hcrs5.cable.mindspring.com] has quit [Changing host] 21:53:43 pumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 21:54:12 -!- smtlaissezfaire_ [~smtlaisse@user-387hbid.cable.mindspring.com] has quit [Quit: smtlaissezfaire_] 21:56:02 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 240 seconds] 21:56:30 Modius [~Modius@cpe-70-123-140-183.austin.res.rr.com] has joined #scheme 21:57:36 pragama [~user@li327-197.members.linode.com] has joined #scheme 21:58:10 -!- new2net [~new2net@unaffiliated/new2net] has quit [Quit: new2net] 22:01:56 -!- alaricsp [~alaric@relief.warhead.org.uk] has quit [Quit: Leaving] 22:02:40 smtlaissezfaire_ [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 22:03:56 bokr [~ed@109.110.39.207] has joined #scheme 22:04:36 MrFahrenheit [~RageOfTho@users-146-61.vinet.ba] has joined #scheme 22:09:37 -!- jonrafkind [~jon@155-99-196-217.uconnect.utah.edu] has quit [Ping timeout: 252 seconds] 22:10:31 -!- ffs [~garland@unaffiliated/ffs] has quit [Quit: When you see the robot, drink!] 22:12:42 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 22:21:35 -!- pygospa [~TheRealPy@kiel-4dbec9b5.pool.mediaWays.net] has quit [Disconnected by services] 22:21:44 pygospa [~TheRealPy@kiel-5f768a86.pool.mediaWays.net] has joined #scheme 22:30:15 -!- ccorn [~ccorn@g132123.upc-g.chello.nl] has quit [Quit: ccorn] 22:34:52 sonstwo [~garland@unaffiliated/ffs] has joined #scheme 22:35:37 tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has joined #scheme 22:35:50 -!- tricus [~tricus@h69-130-142-158.cncrtn.dsl.dynamic.tds.net] has left #scheme 22:38:00 mejja [~user@c-0eb9e555.023-82-73746f38.cust.bredbandsbolaget.se] has joined #scheme 22:38:12 (j #chicken 22:38:28 mejja: ) 22:38:38 *mejja* slaps sjamaan 22:38:41 Parens _must_ be balanced! 22:40:53 -!- pumpkin is now known as copumpkin 22:47:54 ) balance this 22:48:07 *sjamaan* twitches 22:48:54 (this is why you should always capture a continuation once in a while, just in case) 22:49:15 (call/cc ; just in case 22:57:17 -!- smtlaissezfaire_ [~smtlaisse@user-387hbid.cable.mindspring.com] has quit [Quit: smtlaissezfaire_] 22:59:44 ) 23:00:12 )))) ; your move 23:01:31 *elly* tosses jonrafkind a parse error 23:02:43 -!- bokr [~ed@109.110.39.207] has quit [Ping timeout: 240 seconds] 23:08:45 -!- mejja [~user@c-0eb9e555.023-82-73746f38.cust.bredbandsbolaget.se] has quit [Quit: ChatZilla 0.9.87 [Firefox 5.0/20110615151330]] 23:09:01 -!- HG` [~HG@p5DC05257.dip.t-dialin.net] has quit [Quit: Leaving.] 23:09:37 -!- bugQ [~bug@c-71-195-207-34.hsd1.ut.comcast.net] has quit [Ping timeout: 250 seconds] 23:11:32 aidalgol [~user@114-134-7-23.rurallink.co.nz] has joined #scheme 23:12:38 -!- Kajtek [~paniwladc@nat4-230.ghnet.pl] has quit [Quit: Leaving.] 23:12:45 -!- vk0 [~vk@ip-23-75.bnaa.dk] has quit [Ping timeout: 264 seconds] 23:14:14 -!- pygospa is now known as froehli 23:14:29 vk0 [~vk@ip-23-75.bnaa.dk] has joined #scheme 23:14:34 -!- froehli is now known as froehli_ 23:15:02 bokr [~ed@109.110.43.59] has joined #scheme 23:15:20 -!- froehli_ is now known as froehli__ 23:23:35 bugQ [~bug@c-71-195-207-34.hsd1.ut.comcast.net] has joined #scheme 23:27:15 dnolen_ [~davidnole@184.152.69.75] has joined #scheme 23:27:20 smtlaissezfaire_ [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 23:39:31 rpg [~rpg@209.117.47.253] has joined #scheme 23:40:08 -!- smtlaissezfaire_ [~smtlaisse@user-387hbid.cable.mindspring.com] has quit [Quit: smtlaissezfaire_] 23:44:02 dsmith [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has joined #scheme 23:52:41 smtlaissezfaire_ [~smtlaisse@user-387hbid.cable.mindspring.com] has joined #scheme 23:58:20 -!- pchrist [~spirit@gentoo/developer/pchrist] has quit [Quit: leaving] 23:58:53 pchrist [~spirit@gentoo/developer/pchrist] has joined #scheme