2015-01-11T00:03:30Z przl joined #scheme 2015-01-11T00:08:43Z przl quit (Ping timeout: 265 seconds) 2015-01-11T00:10:59Z githogori quit (Read error: Connection reset by peer) 2015-01-11T00:13:02Z ijp` joined #scheme 2015-01-11T00:13:12Z ijp quit (Remote host closed the connection) 2015-01-11T00:22:15Z adu quit (Quit: adu) 2015-01-11T00:23:15Z ProbonoBonobo joined #scheme 2015-01-11T00:27:26Z haziz: @wingo: Thanks. Will try, though I am uncertain whether to look under guile or geiser? 2015-01-11T00:31:02Z ijp` quit (Quit: je suis spartacus) 2015-01-11T00:32:11Z Bahman quit (Quit: zzZZ) 2015-01-11T00:34:32Z BitPuffin joined #scheme 2015-01-11T00:36:02Z taylanub: haziz: Guile I believe 2015-01-11T00:36:29Z taylanub: haziz: (info "(guile) System Commands") 2015-01-11T00:47:19Z Vutral quit (Ping timeout: 256 seconds) 2015-01-11T00:51:39Z daviid quit (Ping timeout: 264 seconds) 2015-01-11T00:53:26Z theseb joined #scheme 2015-01-11T00:53:43Z theseb: help! I want to do a dsl with #f replaced by false and #t replace by true..how do that? 2015-01-11T00:54:15Z theseb: (define false #f) and (define true #t) takes care of input but doesn't adjust *output* 2015-01-11T00:54:22Z pjb: First, true is already true, so there's nothing to do about true. 2015-01-11T00:54:39Z pjb: then implement a new display function. 2015-01-11T00:55:19Z pjb: Notice that there are places where you want false to be false even though it's not evaluated: '(true false false true) 2015-01-11T00:55:47Z pjb: Therefore you would still need to do something about that. 2015-01-11T00:56:01Z theseb: pjb: yea...i need more than just a variable set to #f 2015-01-11T00:56:16Z pjb: If your implementation doesn't provide reader macros, then you will have to go full metalinguistical. 2015-01-11T00:56:44Z theseb: pjb: i'll look into that and the display func..thanks 2015-01-11T00:57:03Z theseb: pjb: basically you need a reader macro to replace true with #t and false with #f right? 2015-01-11T00:57:12Z theseb: pjb: and the new display func does the opposite? 2015-01-11T00:57:19Z pjb: yes. 2015-01-11T00:57:28Z vdamewood quit (Ping timeout: 244 seconds) 2015-01-11T00:57:46Z theseb: YEAH! 2015-01-11T00:57:50Z theseb: thanks..i think i get it 2015-01-11T00:59:40Z Vutral joined #scheme 2015-01-11T00:59:44Z taylanub: theseb: if you change the meanings of data, that's not an EDSL anymore, I think 2015-01-11T01:00:29Z Zigara joined #scheme 2015-01-11T01:00:50Z ProbonoBonobo quit (Remote host closed the connection) 2015-01-11T01:00:58Z pera quit (Quit: leaving) 2015-01-11T01:01:16Z ProbonoBonobo joined #scheme 2015-01-11T01:04:05Z pjb: Well, if you implement a macro with-true-false such as: (with-true-false (let ((f (lambda (a) (= 0 a)))) (if (display (f 1)) (display "0") (display "1")))) prints: false 1 then you have it embedded. Now, the point is that in the scope of with-true-false, = doesn't return #t/#f, but true/false, and if doesn't test for #f, but for false. 2015-01-11T01:04:38Z pjb: theseb: you can implement a macro that provide a scope where the standard operators are remplaced by your own operators. 2015-01-11T01:05:23Z ProbonoBonobo quit (Ping timeout: 252 seconds) 2015-01-11T01:09:45Z theseb: pjb: basically my macro has to traverse every element of every sexp looking for a #f 2015-01-11T01:10:11Z theseb: errr..looking for true /false to replace with #t/#f 2015-01-11T01:11:05Z pjb: That could be a way to do it, which would have the advantage to be able to handle external functions. You'd just wrap all application in the expression in the macro body, in a function that would convert the values in and out. 2015-01-11T01:12:56Z goglosh: there's reader macro in scheme? 2015-01-11T01:13:10Z pjb: Not in the standards that I know. 2015-01-11T01:13:20Z goglosh: I see 2015-01-11T01:13:20Z pjb: But I've been told that some implementations have them. 2015-01-11T01:13:50Z goglosh: it doesn't have pipes or OS interaction right? 2015-01-11T01:14:05Z pjb: Not in the r5rs standard. 2015-01-11T01:14:10Z pjb: But an implementation such as scsh has them. 2015-01-11T01:14:11Z theseb: pjb: macros transform sexps into other sexps...so it is odd that you could do something similar to output of evaluator since it is NOT an sexp in general 2015-01-11T01:14:41Z pjb: I don't understand. All lisp objects are sexps. 2015-01-11T01:15:10Z zachstone joined #scheme 2015-01-11T01:15:35Z theseb: pjb: errr sorry...yea...the output of eval is lisp but the side effects ...e.g. of commands to print text to screen are just strings 2015-01-11T01:16:01Z theseb: pjb: so the replacements would have to be done before strings were made 2015-01-11T01:16:07Z pjb: the thing is that you may have lists of operators for which you wouldn't wrap out the parameters. 2015-01-11T01:16:19Z pjb: (with-true-false (display 'false)) --> (display 'false) 2015-01-11T01:16:51Z pjb: (with-true-false (display (if 'false 1 0))) --> (display (if (wrap-out 'false) 1 0)) 2015-01-11T01:17:20Z pjb: (define (Wrap-out x) (cond ((eq? x 'false) #f) ((eq? x 'true) #t) (else x))) 2015-01-11T01:17:35Z pjb: and similarly for wrap-in. 2015-01-11T01:18:43Z pjb: (with-true-false (let ((x (if 'false 'false 'true))) (if x 1 0))) --> (let ((x (wrap-in (if (wrap-out 'false) (wrap-out 'false) (wrap-out 'true))))) (wrap-in (if (wrap-out x) 1 0))) 2015-01-11T01:18:48Z pjb: something like that. 2015-01-11T01:19:45Z theseb: thanks! 2015-01-11T01:20:05Z pjb: An example of the technique (but for CL) is the stepper in https://gitorious.org/com-informatimago/com-informatimago/source/common-lisp/lisp 2015-01-11T01:20:05Z rudybot: http://tinyurl.com/kwhjh4n 2015-01-11T01:23:13Z enitiz joined #scheme 2015-01-11T01:23:26Z adu joined #scheme 2015-01-11T01:23:26Z adu quit (Client Quit) 2015-01-11T01:31:03Z zachstone quit (Ping timeout: 252 seconds) 2015-01-11T01:41:22Z adu joined #scheme 2015-01-11T01:56:31Z adu quit (Quit: adu) 2015-01-11T02:00:20Z taylanub quit (Disconnected by services) 2015-01-11T02:00:55Z taylanub joined #scheme 2015-01-11T02:02:17Z goglosh quit (Remote host closed the connection) 2015-01-11T02:06:42Z uris77 joined #scheme 2015-01-11T02:07:33Z theseb quit (Quit: Leaving) 2015-01-11T02:12:37Z kongtomorrow quit 2015-01-11T02:18:55Z taylanub quit (Disconnected by services) 2015-01-11T02:19:27Z taylanub joined #scheme 2015-01-11T02:21:58Z haziz quit (Remote host closed the connection) 2015-01-11T02:22:59Z davexunit quit (Quit: Later) 2015-01-11T02:31:29Z tobik quit (Ping timeout: 245 seconds) 2015-01-11T02:32:30Z tobik joined #scheme 2015-01-11T02:33:00Z adu joined #scheme 2015-01-11T02:37:14Z brianmwaters joined #scheme 2015-01-11T02:38:39Z brianmwaters quit (Client Quit) 2015-01-11T02:45:47Z githogori joined #scheme 2015-01-11T02:45:49Z githogori quit (Read error: Connection reset by peer) 2015-01-11T02:47:09Z githogori joined #scheme 2015-01-11T02:56:17Z uris77 quit (Quit: leaving) 2015-01-11T03:05:08Z blackwolf joined #scheme 2015-01-11T03:14:28Z tadni quit (Remote host closed the connection) 2015-01-11T03:14:49Z tadni joined #scheme 2015-01-11T03:25:59Z mumptai quit (Ping timeout: 256 seconds) 2015-01-11T03:32:28Z ProbonoBonobo joined #scheme 2015-01-11T03:38:56Z mumptai joined #scheme 2015-01-11T03:40:45Z djruffkutz joined #scheme 2015-01-11T03:42:35Z djruffkutz quit (Excess Flood) 2015-01-11T03:43:24Z tadni quit (Remote host closed the connection) 2015-01-11T03:43:44Z tadni joined #scheme 2015-01-11T03:44:24Z tadni quit (Remote host closed the connection) 2015-01-11T03:44:46Z tadni joined #scheme 2015-01-11T03:47:53Z tadni quit (Remote host closed the connection) 2015-01-11T03:48:14Z tadni joined #scheme 2015-01-11T03:59:31Z enitiz quit (Ping timeout: 255 seconds) 2015-01-11T04:03:41Z enitiz joined #scheme 2015-01-11T04:04:40Z kongtomorrow joined #scheme 2015-01-11T04:13:29Z psy_ quit (Ping timeout: 252 seconds) 2015-01-11T04:13:55Z tadni quit (Remote host closed the connection) 2015-01-11T04:14:34Z tadni joined #scheme 2015-01-11T04:19:39Z tadni quit (Remote host closed the connection) 2015-01-11T04:20:00Z tadni joined #scheme 2015-01-11T04:20:13Z psy_ joined #scheme 2015-01-11T04:20:50Z tadni quit (Remote host closed the connection) 2015-01-11T04:21:08Z tadni joined #scheme 2015-01-11T04:27:30Z zachstone joined #scheme 2015-01-11T04:27:45Z tadni quit (Remote host closed the connection) 2015-01-11T04:28:08Z tadni joined #scheme 2015-01-11T04:28:59Z tadni quit (Remote host closed the connection) 2015-01-11T04:29:34Z tadni joined #scheme 2015-01-11T04:29:44Z tadni quit (Remote host closed the connection) 2015-01-11T04:30:01Z tadni joined #scheme 2015-01-11T04:31:52Z zachstone quit (Ping timeout: 240 seconds) 2015-01-11T04:33:55Z tadni quit (Remote host closed the connection) 2015-01-11T04:34:33Z tadni joined #scheme 2015-01-11T04:36:01Z alexei_ joined #scheme 2015-01-11T04:39:22Z alexei quit (Ping timeout: 240 seconds) 2015-01-11T04:39:54Z daviid joined #scheme 2015-01-11T04:40:41Z AkashicLegend is now known as Akashic_Afk 2015-01-11T04:41:21Z githogori quit (Ping timeout: 252 seconds) 2015-01-11T04:42:32Z githogori joined #scheme 2015-01-11T04:44:26Z tadni quit (Remote host closed the connection) 2015-01-11T04:44:48Z tadni joined #scheme 2015-01-11T04:45:36Z tadni quit (Remote host closed the connection) 2015-01-11T04:45:56Z tadni joined #scheme 2015-01-11T04:46:33Z excelsior joined #scheme 2015-01-11T04:49:55Z tadni quit (Remote host closed the connection) 2015-01-11T04:50:17Z tadni joined #scheme 2015-01-11T04:52:05Z tadni quit (Remote host closed the connection) 2015-01-11T04:54:25Z enitiz quit (Ping timeout: 255 seconds) 2015-01-11T04:56:50Z brianmwaters joined #scheme 2015-01-11T05:15:53Z tadni joined #scheme 2015-01-11T05:26:27Z brianmwaters quit (Ping timeout: 264 seconds) 2015-01-11T05:41:42Z tadni quit (Remote host closed the connection) 2015-01-11T05:42:02Z tadni joined #scheme 2015-01-11T05:44:42Z tadni quit (Remote host closed the connection) 2015-01-11T05:44:59Z tadni joined #scheme 2015-01-11T06:04:01Z turtleman_ quit (Ping timeout: 264 seconds) 2015-01-11T06:08:18Z fsckd quit (Ping timeout: 244 seconds) 2015-01-11T06:16:37Z oleo is now known as Guest81715 2015-01-11T06:18:13Z oleo__ joined #scheme 2015-01-11T06:19:27Z Guest81715 quit (Ping timeout: 245 seconds) 2015-01-11T06:28:37Z BitPuffin quit (Ping timeout: 265 seconds) 2015-01-11T06:58:06Z zadock joined #scheme 2015-01-11T06:59:31Z zadock quit (Max SendQ exceeded) 2015-01-11T07:00:05Z zadock joined #scheme 2015-01-11T07:05:09Z zadock quit (Quit: Leaving) 2015-01-11T07:07:33Z psy_ quit (Ping timeout: 256 seconds) 2015-01-11T07:10:22Z alexei_ quit (Ping timeout: 240 seconds) 2015-01-11T07:12:56Z psy_ joined #scheme 2015-01-11T07:14:22Z excelsior quit (Quit: leaving) 2015-01-11T07:20:52Z acarrico quit (Ping timeout: 240 seconds) 2015-01-11T07:23:37Z daviid quit (Ping timeout: 245 seconds) 2015-01-11T07:25:15Z oleo__ quit (Ping timeout: 252 seconds) 2015-01-11T07:36:20Z xyh joined #scheme 2015-01-11T08:00:07Z vanila joined #scheme 2015-01-11T08:03:08Z xyh: vanila: I am reviewing coq now :) <> is such a joyful book. 2015-01-11T08:03:24Z vanila: hey :) 2015-01-11T08:03:27Z vanila: I'm working on it too 2015-01-11T08:04:34Z xyh: for real! 2015-01-11T08:04:37Z vanila: also very good http://adam.chlipala.net/cpdt/ 2015-01-11T08:06:17Z excelsior joined #scheme 2015-01-11T08:18:52Z zadock joined #scheme 2015-01-11T08:28:53Z przl joined #scheme 2015-01-11T08:33:49Z rx_ quit (Read error: Connection reset by peer) 2015-01-11T09:19:41Z xyh quit (Remote host closed the connection) 2015-01-11T09:25:57Z jumblerg joined #scheme 2015-01-11T09:26:56Z jumblerg quit (Client Quit) 2015-01-11T09:32:56Z excelsior quit (Quit: Lost terminal) 2015-01-11T09:33:50Z karswell` quit (Read error: Connection reset by peer) 2015-01-11T09:34:07Z karswell` joined #scheme 2015-01-11T09:34:21Z masm joined #scheme 2015-01-11T09:38:22Z przl quit (Ping timeout: 240 seconds) 2015-01-11T09:43:57Z chemuduguntar quit (Ping timeout: 244 seconds) 2015-01-11T10:21:39Z fantazo joined #scheme 2015-01-11T10:23:28Z Bahman joined #scheme 2015-01-11T10:50:52Z _5kg quit (Ping timeout: 240 seconds) 2015-01-11T11:00:14Z civodul joined #scheme 2015-01-11T11:00:44Z Vutral quit (Ping timeout: 244 seconds) 2015-01-11T11:06:30Z Akashic_Afk quit (Quit: Akashic_Afk) 2015-01-11T11:22:17Z ijp joined #scheme 2015-01-11T11:31:06Z adu quit (Quit: adu) 2015-01-11T11:33:24Z ProbonoBonobo quit (Read error: Connection reset by peer) 2015-01-11T11:33:38Z ProbonoBonobo joined #scheme 2015-01-11T11:35:17Z Vutral joined #scheme 2015-01-11T11:35:26Z _5kg joined #scheme 2015-01-11T11:37:38Z oldskirt joined #scheme 2015-01-11T11:52:29Z alexei_ joined #scheme 2015-01-11T11:56:21Z vanila quit (Quit: Leaving) 2015-01-11T11:59:19Z tadni quit (Ping timeout: 244 seconds) 2015-01-11T12:12:43Z alexei_ quit (Ping timeout: 252 seconds) 2015-01-11T12:18:32Z alexi5 joined #scheme 2015-01-11T12:18:36Z alexi5: hello 2015-01-11T12:39:30Z alexei_ joined #scheme 2015-01-11T12:39:44Z henrytill joined #scheme 2015-01-11T12:53:29Z civodul quit (Quit: Charlie) 2015-01-11T13:01:17Z enitiz joined #scheme 2015-01-11T13:03:34Z joast quit (Read error: Connection reset by peer) 2015-01-11T13:04:41Z kazimir42 joined #scheme 2015-01-11T13:14:47Z alezost joined #scheme 2015-01-11T13:18:48Z wingo joined #scheme 2015-01-11T13:23:07Z fsckd joined #scheme 2015-01-11T13:29:32Z enitiz quit (Ping timeout: 244 seconds) 2015-01-11T13:38:14Z cojy quit (Read error: Connection reset by peer) 2015-01-11T13:38:58Z cojy joined #scheme 2015-01-11T13:40:01Z gluegadget quit (Ping timeout: 255 seconds) 2015-01-11T13:42:11Z BitPuffin joined #scheme 2015-01-11T13:45:40Z taylanub quit (Disconnected by services) 2015-01-11T13:46:09Z taylanub joined #scheme 2015-01-11T13:47:01Z robot-beethoven quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-01-11T13:47:52Z przl joined #scheme 2015-01-11T13:50:01Z gluegadget joined #scheme 2015-01-11T13:51:50Z gravicappa joined #scheme 2015-01-11T13:57:44Z alexei_ quit (Ping timeout: 245 seconds) 2015-01-11T14:11:33Z joobus joined #scheme 2015-01-11T14:12:18Z joobus: anyone here this morning? 2015-01-11T14:13:23Z alexei_ joined #scheme 2015-01-11T14:14:06Z LeoNerd: I'm here 2015-01-11T14:14:46Z joobus: so i am a total noob and I've got some questions. 2015-01-11T14:14:52Z joobus: can you help? 2015-01-11T14:15:18Z wasamasa: just ask your questions already 2015-01-11T14:15:46Z joobus: first, is there a best scheme? i pulled down the gambit repo, built, and installed it last night. 2015-01-11T14:16:08Z wasamasa: ... 2015-01-11T14:16:25Z wasamasa: that question makes as much sense as the one about the best programming language 2015-01-11T14:16:50Z joobus: yeah, i guess. which has the best community/documentation? 2015-01-11T14:16:58Z kongtomorrow quit 2015-01-11T14:17:08Z joobus: all the stuff i find on the web is from about 8 years ago at best. 2015-01-11T14:17:21Z wasamasa: you aren't looking well enough then 2015-01-11T14:17:22Z kongtomorrow joined #scheme 2015-01-11T14:17:29Z wasamasa: otherwise you'd have found out racket to have pretty good docs 2015-01-11T14:17:49Z kongtomorrow quit (Client Quit) 2015-01-11T14:17:52Z wasamasa: and a healthy community, too 2015-01-11T14:18:02Z joobus: but i am under the impression racket has kind of forked from standard scheme. 2015-01-11T14:18:16Z wasamasa: racket implements scheme and more 2015-01-11T14:18:21Z wasamasa: like most implementations out there 2015-01-11T14:18:27Z kongtomorrow joined #scheme 2015-01-11T14:18:49Z joobus: so how relevant is r5rs vs r6rs vs what racket has? 2015-01-11T14:18:53Z wasamasa: which is totally fine since scheme is a specification in the first place 2015-01-11T14:19:22Z wasamasa: it implements r6rs 2015-01-11T14:21:06Z joobus: ok. 2015-01-11T14:21:13Z wasamasa: to be honest the question about the implemented standard is not that important considering every sufficiently popular implementation can be extended to have whatever it's missing 2015-01-11T14:21:32Z wasamasa: chicken would be the probably second-most popular scheme implementation and is using r5rs 2015-01-11T14:22:07Z joobus: well, but that is true of any language. 2015-01-11T14:22:14Z wasamasa: nope, not necessarily 2015-01-11T14:22:27Z wasamasa: there are enough scheme implementations out there pretty much nobody is using or augmenting 2015-01-11T14:22:56Z joobus: and if a language keeps doing that it basically forks, and then if the crowd doesn't go with them, they wither and die. 2015-01-11T14:23:01Z joobus: i am dealing with this at work with another language. 2015-01-11T14:23:07Z kongtomorrow quit (Ping timeout: 264 seconds) 2015-01-11T14:23:23Z wasamasa gets the impression joobus is playing someone's advocate 2015-01-11T14:23:25Z joobus: i have found that out 2015-01-11T14:24:02Z joobus: no, i would like to be able to write in a functional language and compile down to machine code, which gambit does, kind of. 2015-01-11T14:24:20Z joobus: i have been playing with clojure for the past several months, but it is wedded to the JVM 2015-01-11T14:24:31Z joobus: which is a drawback imo. 2015-01-11T14:24:41Z joobus: but the scheme community isn't as strong 2015-01-11T14:25:45Z wasamasa: uh, doesn't gambit compile to C? 2015-01-11T14:25:53Z joobus: yeah 2015-01-11T14:27:51Z Bahman quit (Ping timeout: 256 seconds) 2015-01-11T14:28:19Z joobus: i will check out racket. thanks. 2015-01-11T14:29:29Z wasamasa: chicken would be my next suggestion given these conditions 2015-01-11T14:29:54Z wasamasa: the focus is different from racket insofar as it does compile to C 2015-01-11T14:30:42Z mlaine: what is wrong with gambit 2015-01-11T14:31:04Z joobus: i am just having trouble with what i was trying to do. 2015-01-11T14:31:07Z alexi5 quit (Ping timeout: 245 seconds) 2015-01-11T14:31:19Z joobus: I was trying to call a c function, very basic. 2015-01-11T14:31:30Z joobus: import and call exp2 2015-01-11T14:31:48Z joobus: i just can't get it to compile and execute 2015-01-11T14:31:57Z wasamasa: well, that's hardly a problem with the language :P 2015-01-11T14:32:06Z wingo: http://wingolog.org/archives/2013/01/07/an-opinionated-guide-to-scheme-implementations 2015-01-11T14:32:10Z rudybot: http://tinyurl.com/b3fjhzx 2015-01-11T14:32:11Z joobus: i am aware. but the documentation... 2015-01-11T14:35:07Z ijp` joined #scheme 2015-01-11T14:35:36Z ijp quit (Read error: Connection reset by peer) 2015-01-11T14:39:41Z vanila joined #scheme 2015-01-11T14:45:37Z joobus quit (Ping timeout: 252 seconds) 2015-01-11T14:45:45Z joobus joined #scheme 2015-01-11T14:46:52Z psy_ quit (Read error: Connection reset by peer) 2015-01-11T14:48:41Z psy_ joined #scheme 2015-01-11T14:52:43Z alexei_ quit (Ping timeout: 244 seconds) 2015-01-11T14:55:59Z karswell` is now known as karswell 2015-01-11T15:00:01Z davexunit joined #scheme 2015-01-11T15:01:52Z alexei_ joined #scheme 2015-01-11T15:03:54Z BitPuffin quit (Ping timeout: 264 seconds) 2015-01-11T15:05:28Z emlow quit (Ping timeout: 264 seconds) 2015-01-11T15:06:04Z MichaelRaskin quit (Ping timeout: 264 seconds) 2015-01-11T15:06:18Z emlow joined #scheme 2015-01-11T15:07:05Z turtleman_ joined #scheme 2015-01-11T15:08:21Z alexei_ quit (Ping timeout: 252 seconds) 2015-01-11T15:11:21Z acarrico joined #scheme 2015-01-11T15:15:03Z fantazo quit (Ping timeout: 264 seconds) 2015-01-11T15:17:22Z FracV quit (Ping timeout: 240 seconds) 2015-01-11T15:20:53Z FracV joined #scheme 2015-01-11T15:22:10Z ijp` is now known as ijp 2015-01-11T15:25:25Z tadni joined #scheme 2015-01-11T15:28:07Z b4283 joined #scheme 2015-01-11T15:29:57Z Vutral quit (Ping timeout: 265 seconds) 2015-01-11T15:33:08Z joobus quit (Quit: leaving) 2015-01-11T15:34:22Z Vutral joined #scheme 2015-01-11T15:34:23Z turtleman_ quit (Ping timeout: 252 seconds) 2015-01-11T15:38:45Z Vutral quit (Excess Flood) 2015-01-11T15:42:50Z Vutral joined #scheme 2015-01-11T15:52:03Z alexei_ joined #scheme 2015-01-11T15:52:57Z daviid joined #scheme 2015-01-11T15:53:08Z BitPuffin joined #scheme 2015-01-11T15:56:28Z ProbonoBonobo quit (Remote host closed the connection) 2015-01-11T15:57:00Z ProbonoBonobo joined #scheme 2015-01-11T16:01:19Z ProbonoBonobo quit (Ping timeout: 255 seconds) 2015-01-11T16:03:03Z AkashicLegend joined #scheme 2015-01-11T16:03:12Z excelsior joined #scheme 2015-01-11T16:05:45Z karswell quit (Read error: Connection reset by peer) 2015-01-11T16:06:23Z karswell joined #scheme 2015-01-11T16:12:37Z zadock quit (Quit: Leaving) 2015-01-11T16:37:21Z civodul joined #scheme 2015-01-11T16:39:01Z MichaelRaskin joined #scheme 2015-01-11T16:39:27Z tadni quit (Remote host closed the connection) 2015-01-11T16:39:44Z tadni joined #scheme 2015-01-11T16:39:57Z uris77 joined #scheme 2015-01-11T16:41:07Z Vutral quit (Ping timeout: 245 seconds) 2015-01-11T16:42:13Z gravicappa quit (Ping timeout: 252 seconds) 2015-01-11T16:43:25Z alexei_ quit (Ping timeout: 265 seconds) 2015-01-11T16:46:22Z tadni quit (Remote host closed the connection) 2015-01-11T16:46:46Z tadni joined #scheme 2015-01-11T16:53:33Z zadock joined #scheme 2015-01-11T16:58:36Z Vutral joined #scheme 2015-01-11T16:59:23Z ijp` joined #scheme 2015-01-11T17:02:46Z enitiz joined #scheme 2015-01-11T17:03:00Z Vutral quit (Excess Flood) 2015-01-11T17:03:29Z ijp quit (Ping timeout: 252 seconds) 2015-01-11T17:08:43Z ijp` is now known as ijp 2015-01-11T17:09:41Z peterhil quit (Quit: Must not waste too much time here...) 2015-01-11T17:10:50Z gravicappa joined #scheme 2015-01-11T17:10:59Z araujo quit (Read error: Connection reset by peer) 2015-01-11T17:11:26Z araujo joined #scheme 2015-01-11T17:12:52Z tadni quit (Ping timeout: 240 seconds) 2015-01-11T17:14:57Z uris77 quit (Quit: leaving) 2015-01-11T17:15:09Z vdamewood joined #scheme 2015-01-11T17:15:50Z _shit_: if you want, I can repost with ease by using a key-combo to access command history... 2015-01-11T17:17:12Z tadni joined #scheme 2015-01-11T17:24:53Z taylanub quit (Disconnected by services) 2015-01-11T17:25:25Z taylanub joined #scheme 2015-01-11T17:25:30Z Vutral joined #scheme 2015-01-11T17:27:27Z ProbonoBonobo joined #scheme 2015-01-11T17:29:02Z przl quit (Ping timeout: 245 seconds) 2015-01-11T17:30:43Z vanila quit (Quit: Leaving) 2015-01-11T17:32:03Z ProbonoBonobo quit (Ping timeout: 244 seconds) 2015-01-11T17:34:59Z wzsk joined #scheme 2015-01-11T17:49:08Z b4283 quit (Quit: Konversation terminated!) 2015-01-11T17:51:22Z hiyosi joined #scheme 2015-01-11T17:55:56Z vdamewood quit (Quit: ["Textual IRC Client: www.textualapp.com"]) 2015-01-11T17:57:05Z ijp` joined #scheme 2015-01-11T17:57:16Z wzsk quit (Remote host closed the connection) 2015-01-11T17:57:48Z wzsk joined #scheme 2015-01-11T18:01:28Z ijp quit (Ping timeout: 255 seconds) 2015-01-11T18:03:22Z ijp`` joined #scheme 2015-01-11T18:03:24Z ijp` quit (Remote host closed the connection) 2015-01-11T18:04:04Z turtleman_ joined #scheme 2015-01-11T18:04:06Z turtleman_ quit (Read error: Connection reset by peer) 2015-01-11T18:04:24Z turtleman_ joined #scheme 2015-01-11T18:07:27Z russmatney joined #scheme 2015-01-11T18:09:25Z ijp`` is now known as ijp 2015-01-11T18:13:06Z alexei_ joined #scheme 2015-01-11T18:16:21Z yrdz quit (Remote host closed the connection) 2015-01-11T18:22:50Z yrdz joined #scheme 2015-01-11T18:24:36Z zadock quit (Quit: Leaving) 2015-01-11T18:28:30Z ProbonoBonobo joined #scheme 2015-01-11T18:30:23Z cmatei quit (Ping timeout: 252 seconds) 2015-01-11T18:33:01Z ProbonoBonobo quit (Ping timeout: 244 seconds) 2015-01-11T18:34:58Z Bahman joined #scheme 2015-01-11T18:37:45Z zachstone joined #scheme 2015-01-11T18:47:23Z zachstone quit (Ping timeout: 256 seconds) 2015-01-11T18:54:42Z cmatei joined #scheme 2015-01-11T18:55:22Z alexei_ quit (Ping timeout: 265 seconds) 2015-01-11T18:56:58Z hiroakip joined #scheme 2015-01-11T18:57:18Z daviid quit (Ping timeout: 265 seconds) 2015-01-11T19:04:22Z oldskirt_ joined #scheme 2015-01-11T19:04:34Z oldskirt_ quit (Changing host) 2015-01-11T19:04:34Z oldskirt_ joined #scheme 2015-01-11T19:06:57Z oldskirt quit (Ping timeout: 245 seconds) 2015-01-11T19:13:32Z russmatney left #scheme 2015-01-11T19:25:31Z rtra quit (Ping timeout: 244 seconds) 2015-01-11T19:27:08Z ijp` joined #scheme 2015-01-11T19:27:20Z ijp quit (Remote host closed the connection) 2015-01-11T19:31:47Z wingo_ joined #scheme 2015-01-11T19:31:54Z wingo_ quit (Client Quit) 2015-01-11T19:33:09Z hiroakip quit (Ping timeout: 245 seconds) 2015-01-11T19:33:23Z Riastradh quit (Remote host closed the connection) 2015-01-11T19:33:41Z Riastradh joined #scheme 2015-01-11T19:38:24Z ijp` is now known as ijp 2015-01-11T19:45:52Z _5kg quit (Ping timeout: 240 seconds) 2015-01-11T19:46:18Z yrdz quit (Remote host closed the connection) 2015-01-11T19:47:55Z yrdz joined #scheme 2015-01-11T19:50:25Z alexei_ joined #scheme 2015-01-11T20:17:19Z ProbonoBonobo joined #scheme 2015-01-11T20:21:53Z ProbonoBonobo quit (Ping timeout: 265 seconds) 2015-01-11T20:23:48Z rtra joined #scheme 2015-01-11T20:27:40Z mettekou joined #scheme 2015-01-11T20:30:39Z _5kg joined #scheme 2015-01-11T20:33:18Z kongtomorrow joined #scheme 2015-01-11T20:36:52Z oldskirt_ quit (Ping timeout: 265 seconds) 2015-01-11T20:39:43Z ijp quit (Quit: brb proving riemann hypothesis) 2015-01-11T20:45:46Z gravicappa quit (Remote host closed the connection) 2015-01-11T21:00:07Z msgodf joined #scheme 2015-01-11T21:08:45Z hiyosi quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-11T21:09:54Z excelsior quit (Quit: leaving) 2015-01-11T21:12:27Z turtleman_ quit (Ping timeout: 256 seconds) 2015-01-11T21:13:19Z kazimir42 quit (Ping timeout: 250 seconds) 2015-01-11T21:13:56Z mettekou quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-11T21:16:44Z Pixel_Outlaw joined #scheme 2015-01-11T21:18:47Z ProbonoBonobo joined #scheme 2015-01-11T21:19:21Z Pixel_Outlaw: Can anyone help me understand when a promise as defined in scheme might be useful? I see it is a delayed computation which can be evaluated later. I don't think it is the same as delayed evaluation in the sense of a macro. 2015-01-11T21:20:10Z tadni quit (Remote host closed the connection) 2015-01-11T21:23:21Z tadni joined #scheme 2015-01-11T21:24:01Z tadni quit (Remote host closed the connection) 2015-01-11T21:24:34Z taylanub quit (Disconnected by services) 2015-01-11T21:24:35Z tadni joined #scheme 2015-01-11T21:25:06Z taylanub joined #scheme 2015-01-11T21:26:43Z kongtomorrow: Pixel_Outlaw: Structure and Interpretation of Computer Programs goes into delayed computation in that sense in section 3.5 – http://sarabander.github.io/sicp/html/3_002e5.xhtml#g_t3_002e5 . The intro to the chapter might also be useful, http://sarabander.github.io/sicp/html/Chapter-3.xhtml#Chapter-3 2015-01-11T21:30:49Z turtleman_ joined #scheme 2015-01-11T21:31:36Z hiroakip joined #scheme 2015-01-11T21:32:32Z kongtomorrow quit (Read error: Connection reset by peer) 2015-01-11T21:32:53Z kongtomorrow joined #scheme 2015-01-11T21:34:10Z wingo quit (Ping timeout: 244 seconds) 2015-01-11T21:35:43Z masm quit (Ping timeout: 264 seconds) 2015-01-11T21:39:28Z Pixel_Outlaw: Thanks I was just viewing SICP videos. 2015-01-11T21:40:06Z Pixel_Outlaw: I'll look at the intro you posted 2015-01-11T21:43:25Z zachstone joined #scheme 2015-01-11T21:45:24Z goglosh joined #scheme 2015-01-11T21:48:01Z zachstone quit (Ping timeout: 252 seconds) 2015-01-11T21:58:20Z mrowe_away is now known as mrowe 2015-01-11T22:08:58Z mrowe is now known as mrowe_away 2015-01-11T22:17:22Z kongtomorrow quit 2015-01-11T22:19:10Z mrowe_away is now known as mrowe 2015-01-11T22:19:27Z karswell quit (Read error: Connection reset by peer) 2015-01-11T22:19:49Z karswell joined #scheme 2015-01-11T22:20:55Z pllx joined #scheme 2015-01-11T22:21:13Z Zigara left #scheme 2015-01-11T22:24:58Z kongtomorrow joined #scheme 2015-01-11T22:30:17Z hiroakip quit (Ping timeout: 245 seconds) 2015-01-11T22:31:07Z vdamewood joined #scheme 2015-01-11T22:32:33Z kongtomorrow quit 2015-01-11T22:32:52Z turtleman_ quit (Ping timeout: 240 seconds) 2015-01-11T22:34:15Z kongtomorrow joined #scheme 2015-01-11T22:36:13Z ProbonoBonobo quit (Remote host closed the connection) 2015-01-11T22:36:46Z ProbonoBonobo joined #scheme 2015-01-11T22:40:49Z alezost quit (Quit: I use GNU Guix ) 2015-01-11T22:41:07Z ProbonoBonobo quit (Ping timeout: 245 seconds) 2015-01-11T22:51:36Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-01-11T22:56:37Z turtleman_ joined #scheme 2015-01-11T23:01:31Z Riastradh quit (Remote host closed the connection) 2015-01-11T23:01:47Z Riastradh joined #scheme 2015-01-11T23:03:28Z pllx quit (Quit: zz) 2015-01-11T23:08:59Z kongtomorrow quit 2015-01-11T23:10:40Z kongtomorrow joined #scheme 2015-01-11T23:11:34Z Bahman quit (Quit: zzZZ) 2015-01-11T23:17:54Z offby1: Pixel_Outlaw: are you by any chance related to Space_Cowboy? 2015-01-11T23:19:31Z AkashicLegend is now known as Akashic_Away 2015-01-11T23:23:02Z Pixel_Outlaw: offby1, Nope. :) 2015-01-11T23:23:30Z offby1: Cookie_Monster? 2015-01-11T23:33:31Z Pixel_Outlaw: No, even though C is for Cookie and that's good enough for me. 2015-01-11T23:33:33Z turtleman_ quit (Ping timeout: 256 seconds) 2015-01-11T23:34:11Z Pixel_Outlaw: I'm debating learning AutoLisp and seeking employment. It seems quite arcane and a Microsoft only skill though. 2015-01-11T23:34:29Z Pixel_Outlaw: But I need a job that isn't using pleb languages. 2015-01-11T23:36:07Z Pixel_Outlaw: I'm not thrilled about the current jobs all being web and database work. 2015-01-11T23:37:54Z MichaelRaskin: Pixel_Outlaw: and here am I in Moscow, looking for a person to do a thick database-wrapping web app in Common Lisp 2015-01-11T23:38:05Z MichaelRaskin: (I know you are in US) 2015-01-11T23:39:45Z offby1: autolisp is ms only? I thought autolisp was the CAD thing 2015-01-11T23:40:12Z theseb joined #scheme 2015-01-11T23:52:02Z Pixel_Outlaw: Well it is, but AutoCAD to my knowledge only is really supported in Microsoft. 2015-01-11T23:52:18Z Pixel_Outlaw: But I do love CAD. :) 2015-01-11T23:54:16Z rtra quit (Quit: "")