2015-01-12T00:01:46Z offby1 used to work in the CAD business, lo these many years ago 2015-01-12T00:13:37Z kongtomorrow quit (Ping timeout: 255 seconds) 2015-01-12T00:14:16Z Pixel_Outlaw: offby1, it offers a mathematical creativity that also appeals to me in programming 2015-01-12T00:14:25Z Pixel_Outlaw: Kind of the intersection of math and art 2015-01-12T00:17:52Z theseb quit (Quit: Leaving) 2015-01-12T00:18:18Z turtleman_ joined #scheme 2015-01-12T00:19:49Z vdamewood quit (Quit: Computer has gone to sleep.) 2015-01-12T00:22:14Z offby1: Pixel_Outlaw: then: http://blog.ninapaley.com/2014/12/02/more-single-line-art/ 2015-01-12T00:23:31Z Pixel_Outlaw: wow! 2015-01-12T00:24:43Z kongtomorrow joined #scheme 2015-01-12T00:33:10Z rtra joined #scheme 2015-01-12T00:35:42Z Rodya_ joined #scheme 2015-01-12T00:42:14Z mumptai quit (Ping timeout: 244 seconds) 2015-01-12T00:45:42Z Akashic_Away is now known as AkashicLegend 2015-01-12T00:45:58Z AkashicLegend quit (Remote host closed the connection) 2015-01-12T00:46:39Z AkashicLegend joined #scheme 2015-01-12T00:46:53Z AkashicLegend is now known as AkshicLegend 2015-01-12T01:43:01Z hiyosi joined #scheme 2015-01-12T01:53:22Z adu joined #scheme 2015-01-12T01:54:07Z adu quit (Client Quit) 2015-01-12T01:54:33Z jumblerg joined #scheme 2015-01-12T01:56:35Z robot-beethoven joined #scheme 2015-01-12T01:57:48Z Rodya_ quit (Read error: Connection reset by peer) 2015-01-12T01:59:48Z henrytill_ joined #scheme 2015-01-12T02:04:13Z vanila joined #scheme 2015-01-12T02:05:51Z henrytill quit (Quit: ZNC - http://znc.in) 2015-01-12T02:07:57Z henrytill_ quit (Quit: ZNC - http://znc.in) 2015-01-12T02:08:19Z henrytill joined #scheme 2015-01-12T02:09:48Z henrytill quit (Client Quit) 2015-01-12T02:10:19Z henrytill joined #scheme 2015-01-12T02:13:52Z SN0W joined #scheme 2015-01-12T02:18:08Z adu joined #scheme 2015-01-12T02:22:56Z excelsior joined #scheme 2015-01-12T02:30:14Z tobik quit (Ping timeout: 245 seconds) 2015-01-12T02:31:01Z alexei_ quit (Ping timeout: 264 seconds) 2015-01-12T02:31:16Z tobik joined #scheme 2015-01-12T02:32:52Z Fare joined #scheme 2015-01-12T02:39:50Z echo-area joined #scheme 2015-01-12T02:44:44Z chu quit (Ping timeout: 264 seconds) 2015-01-12T02:46:20Z chu joined #scheme 2015-01-12T02:49:21Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-12T02:51:32Z araujo quit (Quit: Leaving) 2015-01-12T02:57:37Z rx joined #scheme 2015-01-12T03:08:20Z davexunit quit (Quit: Later) 2015-01-12T03:15:43Z PinealGlandOptic joined #scheme 2015-01-12T03:19:23Z vanila: why do most modern languages reject TCO? 2015-01-12T03:20:13Z rx quit (Ping timeout: 256 seconds) 2015-01-12T03:21:04Z AkshicLegend is now known as AkashicLegend 2015-01-12T03:21:31Z Pixel_Outlaw: Probably some nonsense about recursion not belonging in corporate software. 2015-01-12T03:22:08Z vanila: haha 2015-01-12T03:22:18Z vanila: yea i guess its so annoying 2015-01-12T03:22:25Z vanila: im reading these go and dart guys "justifications" and its all BS 2015-01-12T03:23:16Z Pixel_Outlaw: Recursion is difficult for people to initially grasp. So I supposed that when you have new hires that google every line of code they write it becomes problematic for them to read the master programmers code. (if such programmers even exist in 9-5 jobs) 2015-01-12T03:24:44Z mikeyhc: the most common reason I hear is that it makes debugging harder, when a stack trace is produced on crash any optimized data is no longer available 2015-01-12T03:24:56Z vanila: yeah and thats BS isn't it? 2015-01-12T03:25:08Z mikeyhc: depends on the implementation, but most the time yes 2015-01-12T03:25:08Z turbofail: i mean that clearly applies to a normal loop too 2015-01-12T03:25:19Z kongtomorrow quit 2015-01-12T03:25:34Z mikeyhc: I never said it was correct, just said it was the one I hear all the time 2015-01-12T03:26:05Z jumblerg joined #scheme 2015-01-12T03:26:49Z offby1: Pixel_Outlaw: http://funcall.blogspot.com/2011/03/tail-recursion-and-debugging.html 2015-01-12T03:27:05Z vanila: yeah i read it a lot too 2015-01-12T03:28:08Z turbofail: it's probably the argument that makes the least sense is all i'm saying 2015-01-12T03:28:31Z vanila: none of it makes sense to me, it all seems to be post-decision rationalization 2015-01-12T03:28:38Z mikeyhc: yup, its mostly FUD 2015-01-12T03:28:51Z turbofail: some arguments that make a vague amount of sense are that it's basically the same as a goto, which is not something that should be encouraged 2015-01-12T03:29:02Z vanila: its nothing to do with goto D: 2015-01-12T03:29:10Z turbofail: no, it's exactly a goto 2015-01-12T03:29:25Z vanila: its a procedure call, not a goto 2015-01-12T03:29:31Z Pixel_Outlaw: Just remember that it will take the rest of the world another 10 to 15 years to catch up to a language that is like 50 years old. 2015-01-12T03:29:34Z turbofail: or that it may be hard for people to tell at first glance whether they've done the tail recursion properly 2015-01-12T03:29:45Z Pixel_Outlaw: They just discovered lambda functions, how darling. 2015-01-12T03:29:59Z vanila: yeah, it makes me really lose hope 2015-01-12T03:30:34Z Pixel_Outlaw: Maybe eventually we'll be able to store unlike things in the same container and check for them. aside from scripting languages 2015-01-12T03:30:50Z turbofail: vanila: you can take it up with olin shivers if you want, but using raw tail recursion basically offers the same control flow flexibility as goto 2015-01-12T03:31:17Z vanila: where does olin shivers say this? 2015-01-12T03:31:24Z turbofail: which is a good thing if you're a macro writer, but probably not the best thing for a person who's reading 2015-01-12T03:32:11Z turbofail: there's a video of him saying it in a talk about his hypothetical ideal loop macro 2015-01-12T03:32:37Z cojy: https://www.youtube.com/watch?v=PCzNwWmQdb0 2015-01-12T03:32:52Z turbofail: anyway even if he hadn't said it it would still be true 2015-01-12T03:33:14Z Pixel_Outlaw: Ideal LOOP macro? There is Land of Lisp which lays out the CL LOOP macro as a Periodic Table of Elements in frightening glory. 2015-01-12T03:33:27Z turbofail: it's not at all the same as the CL loop macro 2015-01-12T03:33:39Z turbofail: first of all it doesn't actually exist 2015-01-12T03:33:56Z echo-area quit (Remote host closed the connection) 2015-01-12T03:33:56Z turbofail: second of all if it did it would have scoping rules that make some amount of sense 2015-01-12T03:35:26Z turbofail: well at least no implementation of it exists. it may be possible to create one based on his paper, i haven't looked into it that closely 2015-01-12T03:35:53Z vanila: I think it would extremely hard :/ 2015-01-12T03:36:03Z vanila: he says he implemented it with er-macros too, which si a horrible thing to deal with 2015-01-12T03:36:13Z vanila: someone should get the code off him 2015-01-12T03:37:27Z echo-are` joined #scheme 2015-01-12T03:40:22Z turbofail: i happen to be a fan of racket's for-* iteration constructs, they're good enough for most purposes 2015-01-12T03:40:43Z cojy: turbofail: that's not an argument against proper tail calls though 2015-01-12T03:40:55Z cojy: it's only that some people dislike recursionf or loops 2015-01-12T03:41:08Z turbofail: i wasn't making an argument against having them, that discussion was like... minutes ago 2015-01-12T03:41:32Z turbofail: i was making an argument against olin shiver's loop 2015-01-12T03:42:03Z turbofail: unless you're talking about tail calls being gotos 2015-01-12T03:43:00Z turbofail: in which case, i don't agree with it, but it's still a better argument than the stack trace thing 2015-01-12T03:43:16Z cojy: how is it an argument? 2015-01-12T03:43:25Z turbofail: somebody might use it as an argument 2015-01-12T03:43:30Z cojy: procedure calls without proper implementation are still gotos 2015-01-12T03:43:36Z cojy: they just have a stack along with them 2015-01-12T03:45:03Z turbofail: it's only a reasonable argument in a language where you can't build higher-level iteration constructs on top of tail calls 2015-01-12T04:08:27Z kongtomorrow joined #scheme 2015-01-12T04:08:32Z cojy: i don't think it's a good argument in any context. possibly a topic for a code style guideline of a particular orginization 2015-01-12T04:09:01Z hiyosi quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-12T04:13:06Z kongtomorrow: vanila: I don't know the argument for excluding as an optimization, but if you want to make it reliable part of the language, in many languages it's hard to make it clear what is and is not in tail position 2015-01-12T04:13:40Z kongtomorrow: for example C++ needing to run destructors 2015-01-12T04:14:04Z daviid joined #scheme 2015-01-12T04:40:28Z c74d quit (Remote host closed the connection) 2015-01-12T04:43:14Z c74d joined #scheme 2015-01-12T04:46:10Z MichaelRaskin quit (Remote host closed the connection) 2015-01-12T04:50:21Z echo-are` is now known as echo-area 2015-01-12T05:03:27Z Pixel_Outlaw: In scheme if you call the function twice in the body does it tail optimize both parts? For example if you made a fractal that branched two times at the end. 2015-01-12T05:03:42Z vanila: it cant tail optimize both 2015-01-12T05:04:00Z vanila: since it has to keep the continuation for the second call around 2015-01-12T05:04:15Z Pixel_Outlaw: I was thinking that... 2015-01-12T05:04:39Z Pixel_Outlaw: So I suppose it is sort of unsafe to make a very big Lindemayer tree via recursion. 2015-01-12T05:04:46Z vanila: but thats ok, you need some control structures around to keep the fractral stuff going 2015-01-12T05:05:06Z vanila: if you don't do it with recursion, then what? Just manage a stack manually - it will take up roughly the same amount of space 2015-01-12T05:05:10Z vanila: so its okay to do this with recursion 2015-01-12T05:06:19Z Pixel_Outlaw: The approach I've used in the past is to keep a snapshot of the last iteration, then apply the function to the last generation. 2015-01-12T05:08:20Z Fare quit (Remote host closed the connection) 2015-01-12T05:08:27Z enitiz quit (Ping timeout: 256 seconds) 2015-01-12T05:14:38Z hiyosi joined #scheme 2015-01-12T05:34:39Z Pixel_Outlaw quit (Quit: Leaving) 2015-01-12T05:35:13Z BitPuffin quit (Ping timeout: 264 seconds) 2015-01-12T05:48:18Z mrowe is now known as mrowe_away 2015-01-12T05:50:39Z BitPuffin joined #scheme 2015-01-12T05:51:29Z excelsior quit (Quit: Lost terminal) 2015-01-12T05:58:18Z zachstone joined #scheme 2015-01-12T06:06:49Z turtleman_ quit (Ping timeout: 256 seconds) 2015-01-12T06:10:42Z daviid quit (Ping timeout: 245 seconds) 2015-01-12T06:12:15Z ecthiender joined #scheme 2015-01-12T06:29:27Z BitPuffin quit (Ping timeout: 245 seconds) 2015-01-12T06:33:27Z tadni quit (Ping timeout: 252 seconds) 2015-01-12T06:34:32Z eli joined #scheme 2015-01-12T06:34:33Z eli quit (Changing host) 2015-01-12T06:34:33Z eli joined #scheme 2015-01-12T06:46:03Z uber_hulk joined #scheme 2015-01-12T06:46:55Z fsckd quit (Ping timeout: 255 seconds) 2015-01-12T06:52:18Z AkashicLegend quit (Quit: AkashicLegend) 2015-01-12T07:09:52Z kazimir42 joined #scheme 2015-01-12T07:18:29Z goglosh quit (Quit: I should sleep or something) 2015-01-12T07:21:21Z cosmez joined #scheme 2015-01-12T07:23:37Z slucx joined #scheme 2015-01-12T07:24:39Z kibo quit (Ping timeout: 264 seconds) 2015-01-12T07:30:33Z kongtomorrow quit 2015-01-12T07:39:17Z kongtomorrow joined #scheme 2015-01-12T07:41:53Z adu quit (Quit: adu) 2015-01-12T07:42:00Z msgodf quit (Remote host closed the connection) 2015-01-12T07:52:31Z jewel joined #scheme 2015-01-12T07:59:13Z benregn joined #scheme 2015-01-12T08:02:12Z Intensity quit (Remote host closed the connection) 2015-01-12T08:03:05Z chemuduguntar joined #scheme 2015-01-12T08:05:21Z hiyosi quit (Quit: Textual IRC Client: www.textualapp.com) 2015-01-12T08:14:25Z masm joined #scheme 2015-01-12T08:17:43Z agumonkey quit (Ping timeout: 256 seconds) 2015-01-12T08:18:15Z agumonkey joined #scheme 2015-01-12T08:18:49Z msgodf joined #scheme 2015-01-12T08:20:12Z uber_hulk is now known as Guest70954 2015-01-12T08:23:41Z kazimir42 quit (Ping timeout: 250 seconds) 2015-01-12T08:31:39Z MichaelRaskin joined #scheme 2015-01-12T08:37:52Z benregn quit (Ping timeout: 240 seconds) 2015-01-12T08:43:31Z kongtomorrow quit 2015-01-12T08:55:20Z chemuduguntar quit (Ping timeout: 244 seconds) 2015-01-12T09:01:19Z civodul joined #scheme 2015-01-12T09:02:21Z wingo joined #scheme 2015-01-12T09:10:20Z mumptai joined #scheme 2015-01-12T09:16:27Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-12T09:22:13Z Bahman joined #scheme 2015-01-12T09:33:43Z robot-beethoven quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-01-12T09:34:07Z slucx quit (Remote host closed the connection) 2015-01-12T09:54:37Z zachstone quit (Ping timeout: 256 seconds) 2015-01-12T10:08:22Z mumptai quit (Ping timeout: 240 seconds) 2015-01-12T10:25:41Z bjz joined #scheme 2015-01-12T10:37:52Z echo-area quit (Remote host closed the connection) 2015-01-12T10:43:00Z karswell quit (Remote host closed the connection) 2015-01-12T10:58:11Z civodul quit (Remote host closed the connection) 2015-01-12T11:03:31Z civodul joined #scheme 2015-01-12T11:46:24Z SN0W quit 2015-01-12T11:51:41Z zachstone joined #scheme 2015-01-12T11:56:07Z zachstone quit (Ping timeout: 252 seconds) 2015-01-12T12:24:31Z vanila quit (Quit: Leaving) 2015-01-12T12:34:40Z BitPuffin joined #scheme 2015-01-12T12:35:08Z benregn joined #scheme 2015-01-12T12:39:43Z Guest70954 quit (Quit: Connection closed for inactivity) 2015-01-12T12:44:31Z daviid joined #scheme 2015-01-12T12:46:06Z Bahman quit (Quit: Ave atque vale) 2015-01-12T12:48:54Z pnkfelix joined #scheme 2015-01-12T12:50:47Z petercommand quit (Ping timeout: 265 seconds) 2015-01-12T12:51:19Z petercommand joined #scheme 2015-01-12T12:52:30Z Bahman joined #scheme 2015-01-12T12:53:42Z zachstone joined #scheme 2015-01-12T12:57:57Z ijp joined #scheme 2015-01-12T12:58:31Z zachstone quit (Ping timeout: 265 seconds) 2015-01-12T12:59:12Z joast joined #scheme 2015-01-12T13:08:53Z excelsior joined #scheme 2015-01-12T13:43:19Z davexunit joined #scheme 2015-01-12T13:45:33Z taylanub quit (Disconnected by services) 2015-01-12T13:46:08Z taylanub joined #scheme 2015-01-12T13:52:19Z benregn quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-12T13:52:54Z xyh joined #scheme 2015-01-12T13:52:54Z fsckd joined #scheme 2015-01-12T14:00:47Z alezost joined #scheme 2015-01-12T14:03:11Z ijp` joined #scheme 2015-01-12T14:03:38Z ijp quit (Remote host closed the connection) 2015-01-12T14:03:49Z emlow quit (Quit: WeeChat 0.3.8) 2015-01-12T14:07:22Z psy_ quit (Read error: No route to host) 2015-01-12T14:08:18Z psy_ joined #scheme 2015-01-12T14:08:55Z psy_ quit (Max SendQ exceeded) 2015-01-12T14:09:14Z psy_ joined #scheme 2015-01-12T14:09:27Z ijp`` joined #scheme 2015-01-12T14:10:30Z ecthiender quit (Quit: gotta go) 2015-01-12T14:12:51Z ijp`` is now known as ip 2015-01-12T14:12:56Z ip is now known as ijp 2015-01-12T14:13:51Z ijp` quit (Ping timeout: 264 seconds) 2015-01-12T14:16:08Z vanila joined #scheme 2015-01-12T14:30:05Z dbohdan joined #scheme 2015-01-12T14:33:47Z enitiz joined #scheme 2015-01-12T14:36:11Z frkout_ quit (Read error: Connection reset by peer) 2015-01-12T14:36:37Z frkout joined #scheme 2015-01-12T14:37:42Z gnomon quit (Quit: leaving) 2015-01-12T14:38:09Z gnomon joined #scheme 2015-01-12T14:38:10Z b4283 joined #scheme 2015-01-12T14:40:05Z gnomon quit (Client Quit) 2015-01-12T14:40:20Z gnomon joined #scheme 2015-01-12T14:43:00Z jeapostr1phe joined #scheme 2015-01-12T14:43:59Z gnomon quit (Client Quit) 2015-01-12T14:44:06Z adu joined #scheme 2015-01-12T14:44:20Z gnomon joined #scheme 2015-01-12T14:46:38Z zadock joined #scheme 2015-01-12T14:48:27Z adu quit (Ping timeout: 252 seconds) 2015-01-12T14:49:32Z haroldwu_ joined #scheme 2015-01-12T14:49:32Z haroldwu_ quit (Client Quit) 2015-01-12T14:54:16Z emlow joined #scheme 2015-01-12T14:54:35Z zachstone joined #scheme 2015-01-12T14:55:14Z narendraj9 joined #scheme 2015-01-12T14:59:29Z zachstone quit (Ping timeout: 256 seconds) 2015-01-12T15:01:25Z SirDayBat quit (Remote host closed the connection) 2015-01-12T15:05:52Z benregn joined #scheme 2015-01-12T15:08:43Z drinkcoffee quit (Ping timeout: 245 seconds) 2015-01-12T15:17:50Z uris77 joined #scheme 2015-01-12T15:20:59Z Riastradh quit (Ping timeout: 250 seconds) 2015-01-12T15:21:47Z adu joined #scheme 2015-01-12T15:22:05Z chu quit (Quit: leaving) 2015-01-12T15:22:29Z adu quit (Client Quit) 2015-01-12T15:22:30Z chu joined #scheme 2015-01-12T15:25:26Z emlow quit (Quit: WeeChat 0.3.8) 2015-01-12T15:29:35Z tadni joined #scheme 2015-01-12T15:39:22Z xyh quit (Ping timeout: 240 seconds) 2015-01-12T15:39:26Z jlongster joined #scheme 2015-01-12T15:48:12Z Bahman quit (Ping timeout: 245 seconds) 2015-01-12T15:49:32Z ffs quit (Remote host closed the connection) 2015-01-12T15:50:15Z Bahman joined #scheme 2015-01-12T15:50:19Z ffs joined #scheme 2015-01-12T15:52:55Z tadni quit (Remote host closed the connection) 2015-01-12T15:53:17Z tadni joined #scheme 2015-01-12T15:55:47Z zachstone joined #scheme 2015-01-12T15:56:45Z SirDayBat joined #scheme 2015-01-12T15:57:06Z jumblerg joined #scheme 2015-01-12T15:57:31Z kuribas joined #scheme 2015-01-12T15:59:16Z vanila: does anyone have the Essence 2.0 source code? (An LR parser generator for Scheme) 2015-01-12T15:59:49Z gnomon_ joined #scheme 2015-01-12T15:59:52Z gnomon_ quit (Client Quit) 2015-01-12T16:00:25Z zachstone quit (Ping timeout: 264 seconds) 2015-01-12T16:00:34Z benregn quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-12T16:02:04Z benregn joined #scheme 2015-01-12T16:02:25Z petercommand quit (Ping timeout: 244 seconds) 2015-01-12T16:03:29Z petercommand joined #scheme 2015-01-12T16:03:45Z petercommand quit (Changing host) 2015-01-12T16:03:45Z petercommand joined #scheme 2015-01-12T16:09:21Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-12T16:13:52Z Riastradh joined #scheme 2015-01-12T16:18:25Z vanila quit (Quit: Leaving) 2015-01-12T16:20:02Z oleo joined #scheme 2015-01-12T16:21:25Z jumblerg joined #scheme 2015-01-12T16:24:30Z theseb joined #scheme 2015-01-12T16:24:38Z joneshf-laptop quit (Ping timeout: 244 seconds) 2015-01-12T16:32:52Z narendraj9 quit (Read error: Connection reset by peer) 2015-01-12T16:34:02Z wzsk quit (Ping timeout: 245 seconds) 2015-01-12T16:34:39Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-12T16:40:43Z oleo quit (Quit: Verlassend) 2015-01-12T16:41:17Z wzsk joined #scheme 2015-01-12T16:43:14Z DrDuck quit (Ping timeout: 244 seconds) 2015-01-12T16:43:45Z Vutral quit (Ping timeout: 244 seconds) 2015-01-12T16:44:21Z oleo joined #scheme 2015-01-12T16:44:34Z oleo quit (Changing host) 2015-01-12T16:44:34Z oleo joined #scheme 2015-01-12T16:49:49Z zadock quit (Ping timeout: 250 seconds) 2015-01-12T16:50:20Z DrDuck joined #scheme 2015-01-12T16:50:43Z zadock joined #scheme 2015-01-12T16:53:14Z ijp` joined #scheme 2015-01-12T16:56:57Z msgodf quit (Ping timeout: 245 seconds) 2015-01-12T16:57:22Z ijp quit (Ping timeout: 245 seconds) 2015-01-12T17:02:52Z kuribas quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-01-12T17:03:07Z kuribas joined #scheme 2015-01-12T17:03:37Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-01-12T17:05:08Z Vutral joined #scheme 2015-01-12T17:08:01Z turtleman_ joined #scheme 2015-01-12T17:13:44Z sstrickl quit (Quit: sstrickl) 2015-01-12T17:14:41Z sheilong joined #scheme 2015-01-12T17:19:16Z developernotes joined #scheme 2015-01-12T17:21:14Z bb010g quit (Quit: Connection closed for inactivity) 2015-01-12T17:23:01Z ijp` is now known as ijp 2015-01-12T17:26:04Z vdamewood joined #scheme 2015-01-12T17:39:26Z Riastradh quit (Remote host closed the connection) 2015-01-12T17:39:36Z gravicappa joined #scheme 2015-01-12T17:39:54Z Riastradh joined #scheme 2015-01-12T17:41:53Z senoj joined #scheme 2015-01-12T17:43:53Z jumblerg joined #scheme 2015-01-12T17:44:17Z pnkfelix quit (Quit: rcirc on GNU Emacs 24.3.92.1) 2015-01-12T17:47:04Z karswell` joined #scheme 2015-01-12T17:57:39Z zachstone joined #scheme 2015-01-12T18:02:22Z zachstone quit (Ping timeout: 255 seconds) 2015-01-12T18:08:16Z alexei_ joined #scheme 2015-01-12T18:15:31Z theseb quit (Quit: Leaving) 2015-01-12T18:15:39Z sstrickl joined #scheme 2015-01-12T18:20:13Z developernotes quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-01-12T18:23:24Z uris77 quit (Quit: leaving) 2015-01-12T18:24:24Z PinealGlandOptic quit (Quit: leaving) 2015-01-12T18:25:10Z adu joined #scheme 2015-01-12T18:27:47Z alexei_ quit (Ping timeout: 245 seconds) 2015-01-12T18:28:54Z alexei_ joined #scheme 2015-01-12T18:34:55Z zadock quit (Quit: Leaving) 2015-01-12T18:38:43Z MichaelRaskin quit (Ping timeout: 252 seconds) 2015-01-12T18:38:53Z sstrickl quit (Quit: sstrickl) 2015-01-12T18:44:01Z rotty_ is now known as rotty 2015-01-12T18:59:07Z zachstone joined #scheme 2015-01-12T19:00:25Z daviid quit (Ping timeout: 264 seconds) 2015-01-12T19:03:21Z AkashicLegend joined #scheme 2015-01-12T19:03:43Z zachstone quit (Ping timeout: 256 seconds) 2015-01-12T19:06:44Z uris77 joined #scheme 2015-01-12T19:08:27Z alexei_ quit (Ping timeout: 264 seconds) 2015-01-12T19:08:49Z kuribas quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-01-12T19:09:16Z developernotes joined #scheme 2015-01-12T19:14:49Z pera joined #scheme 2015-01-12T19:16:00Z developernotes quit (Quit: Textual IRC Client: www.textualapp.com) 2015-01-12T19:17:44Z araujo joined #scheme 2015-01-12T19:17:44Z araujo quit (Changing host) 2015-01-12T19:17:44Z araujo joined #scheme 2015-01-12T19:18:39Z langmartin joined #scheme 2015-01-12T19:19:48Z langmart` joined #scheme 2015-01-12T19:19:56Z langmart` quit (Client Quit) 2015-01-12T19:20:42Z langmart` joined #scheme 2015-01-12T19:20:48Z langmart` quit (Client Quit) 2015-01-12T19:21:13Z langmartin left #scheme 2015-01-12T19:22:00Z b4283 quit (Quit: Konversation terminated!) 2015-01-12T19:23:06Z developernotes joined #scheme 2015-01-12T19:23:27Z enitiz quit (Ping timeout: 264 seconds) 2015-01-12T19:34:46Z fantazo joined #scheme 2015-01-12T19:42:26Z joneshf-laptop joined #scheme 2015-01-12T19:47:57Z alexei_ joined #scheme 2015-01-12T19:48:17Z jyc quit (Ping timeout: 272 seconds) 2015-01-12T19:50:28Z wzsk quit (Ping timeout: 244 seconds) 2015-01-12T19:52:22Z jyc joined #scheme 2015-01-12T19:53:15Z langmartin joined #scheme 2015-01-12T19:53:16Z vdamewood quit (Quit: ["Textual IRC Client: www.textualapp.com"]) 2015-01-12T19:55:01Z wingo quit (Ping timeout: 264 seconds) 2015-01-12T20:01:14Z aranhoide joined #scheme 2015-01-12T20:02:19Z tadni quit (Ping timeout: 252 seconds) 2015-01-12T20:03:38Z langmart` joined #scheme 2015-01-12T20:06:07Z langmartin quit (Ping timeout: 245 seconds) 2015-01-12T20:06:22Z civodul joined #scheme 2015-01-12T20:06:22Z zadock joined #scheme 2015-01-12T20:09:24Z wingo joined #scheme 2015-01-12T20:12:18Z pjb quit (Excess Flood) 2015-01-12T20:12:29Z ffs quit (Ping timeout: 244 seconds) 2015-01-12T20:12:58Z wzsk joined #scheme 2015-01-12T20:13:45Z bjz quit (Max SendQ exceeded) 2015-01-12T20:13:58Z a-noobie joined #scheme 2015-01-12T20:14:18Z a-noobie: hello 2015-01-12T20:14:27Z Vutral quit (Ping timeout: 264 seconds) 2015-01-12T20:14:33Z ffs joined #scheme 2015-01-12T20:14:40Z ffs quit (Changing host) 2015-01-12T20:14:40Z ffs joined #scheme 2015-01-12T20:16:04Z alezost quit (Quit: I use GNU Guix ) 2015-01-12T20:18:33Z bjz joined #scheme 2015-01-12T20:19:26Z c74d quit (Remote host closed the connection) 2015-01-12T20:20:39Z pera quit (Ping timeout: 245 seconds) 2015-01-12T20:22:30Z jeapostr1phe quit (Ping timeout: 244 seconds) 2015-01-12T20:22:50Z taylanub quit (Remote host closed the connection) 2015-01-12T20:23:11Z chameco quit (Ping timeout: 265 seconds) 2015-01-12T20:23:40Z dytrivedi quit (Read error: Network is unreachable) 2015-01-12T20:23:40Z cojy quit (Write error: Connection reset by peer) 2015-01-12T20:23:40Z wilfredh quit (Read error: Connection reset by peer) 2015-01-12T20:23:40Z superjudge quit (Read error: Connection reset by peer) 2015-01-12T20:23:42Z gluegadget quit (Write error: Connection reset by peer) 2015-01-12T20:24:09Z rtra quit (Ping timeout: 265 seconds) 2015-01-12T20:24:17Z c74d joined #scheme 2015-01-12T20:24:38Z carc quit (Ping timeout: 265 seconds) 2015-01-12T20:25:13Z tadni joined #scheme 2015-01-12T20:25:36Z hive-mind quit (Ping timeout: 265 seconds) 2015-01-12T20:25:36Z GGMethos quit (Ping timeout: 265 seconds) 2015-01-12T20:25:37Z hellome quit (Remote host closed the connection) 2015-01-12T20:25:54Z superjudge joined #scheme 2015-01-12T20:25:56Z gluegadget joined #scheme 2015-01-12T20:26:05Z vikraman quit (Ping timeout: 265 seconds) 2015-01-12T20:26:08Z taylanub joined #scheme 2015-01-12T20:26:21Z hive-mind joined #scheme 2015-01-12T20:26:48Z jeapostrophe joined #scheme 2015-01-12T20:26:48Z jeapostrophe quit (Changing host) 2015-01-12T20:26:48Z jeapostrophe joined #scheme 2015-01-12T20:27:25Z Vutral joined #scheme 2015-01-12T20:27:38Z dytrivedi joined #scheme 2015-01-12T20:27:39Z wilfredh joined #scheme 2015-01-12T20:28:19Z cojy joined #scheme 2015-01-12T20:29:58Z chameco joined #scheme 2015-01-12T20:29:58Z carc joined #scheme 2015-01-12T20:30:05Z vikraman joined #scheme 2015-01-12T20:30:26Z pjb joined #scheme 2015-01-12T20:31:06Z GGMethos joined #scheme 2015-01-12T20:31:16Z c74d quit (Remote host closed the connection) 2015-01-12T20:34:55Z ijp` joined #scheme 2015-01-12T20:34:55Z c74d joined #scheme 2015-01-12T20:35:17Z ijp quit (Remote host closed the connection) 2015-01-12T20:35:34Z ijp` is now known as ijp 2015-01-12T20:35:57Z developernotes quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-01-12T20:39:12Z developernotes joined #scheme 2015-01-12T20:40:17Z bjz quit (Ping timeout: 245 seconds) 2015-01-12T20:51:20Z pera joined #scheme 2015-01-12T20:52:37Z tadni quit (Ping timeout: 264 seconds) 2015-01-12T20:54:52Z hiroakip joined #scheme 2015-01-12T21:00:30Z zachstone joined #scheme 2015-01-12T21:01:22Z langmart` quit (Ping timeout: 265 seconds) 2015-01-12T21:03:15Z bjz joined #scheme 2015-01-12T21:04:52Z zachstone quit (Ping timeout: 245 seconds) 2015-01-12T21:05:11Z Vutral quit (Ping timeout: 244 seconds) 2015-01-12T21:05:44Z wingo quit (Ping timeout: 264 seconds) 2015-01-12T21:06:24Z tadni joined #scheme 2015-01-12T21:06:50Z mrowe_away is now known as mrowe 2015-01-12T21:07:25Z abbe_ joined #scheme 2015-01-12T21:08:39Z abbe quit (Disconnected by services) 2015-01-12T21:09:03Z rtra joined #scheme 2015-01-12T21:09:24Z abbe_ is now known as abbe 2015-01-12T21:13:04Z Averell- joined #scheme 2015-01-12T21:13:11Z Vutral joined #scheme 2015-01-12T21:14:06Z averell quit (*.net *.split) 2015-01-12T21:14:14Z rtra quit (Quit: "") 2015-01-12T21:16:41Z gravicappa quit (Remote host closed the connection) 2015-01-12T21:17:34Z bjz quit (Max SendQ exceeded) 2015-01-12T21:18:06Z Vutral quit (Excess Flood) 2015-01-12T21:19:29Z excelsior quit (Quit: Lost terminal) 2015-01-12T21:20:11Z rtra joined #scheme 2015-01-12T21:20:57Z Vutral joined #scheme 2015-01-12T21:25:12Z rtra quit (Quit: "") 2015-01-12T21:48:16Z theseb joined #scheme 2015-01-12T21:48:36Z fantazo: it seems that most scheme systems correspond to R4RS or R5RS. newer seems to be lesser implemented 2015-01-12T22:00:01Z davexunit quit (Quit: Later) 2015-01-12T22:00:28Z kongtomorrow joined #scheme 2015-01-12T22:01:13Z Shadox joined #scheme 2015-01-12T22:02:06Z technomancy: fantazo: R6RS was pretty controversial 2015-01-12T22:02:10Z technomancy: plus a lot more work to implement 2015-01-12T22:03:44Z fantazo: what was the controversity? 2015-01-12T22:04:20Z gnomon: Let's not go there today, shall we not? 2015-01-12T22:05:39Z aranhoide quit (Ping timeout: 265 seconds) 2015-01-12T22:06:25Z fantazo: ok, scheme essentially describes a list of different languages with partly shared feature sets. 2015-01-12T22:10:26Z fantazo quit (Quit: Verlassend) 2015-01-12T22:11:13Z technomancy: depends on whether you're a platonist or not 2015-01-12T22:11:36Z rtra joined #scheme 2015-01-12T22:12:52Z Rptx joined #scheme 2015-01-12T22:13:25Z Riastradh: I'm more of a sculpyist myself. 2015-01-12T22:14:34Z ijp: my programming philosophy is mostly based on kierkegaard 2015-01-12T22:16:27Z mikeyhc: mine is closer to ubermensch 2015-01-12T22:17:01Z Riastradh: *squish*splort* 2015-01-12T22:17:01Z ijp: I bet nietzche goes down well on #lisp 2015-01-12T22:17:01Z gnomon: I think Scheme essentially describes a vector of different languages with partly shared feature sets. 2015-01-12T22:17:53Z technomancy: a platonist would say Scheme is one language, and there are a bunch of implementations imperfectly reflecting its pure form. 2015-01-12T22:18:00Z technomancy: which is bonkers, but hey 2015-01-12T22:23:17Z turbofail: what about a play-dohist? 2015-01-12T22:29:05Z senoj quit (Ping timeout: 244 seconds) 2015-01-12T22:30:25Z ijp quit (Quit: This ijp has ended peacefully) 2015-01-12T22:33:53Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-01-12T22:34:59Z technomancy: huh, apparently Stroustrup claimed to be influenced by kierkegaard 2015-01-12T22:35:10Z technomancy: http://worrydream.com/quotes/#bjarne-stroustrup-interview-in-mit-tech-review 2015-01-12T22:35:11Z rudybot: http://tinyurl.com/jwanjq5 2015-01-12T22:37:26Z antoszka: Was Kierkegaard a misanthrope, too? 2015-01-12T22:39:11Z aranhoide joined #scheme 2015-01-12T22:46:54Z vdamewood joined #scheme 2015-01-12T22:54:00Z a-noobie quit (Quit: Page closed) 2015-01-12T22:55:50Z theseb quit (Quit: Leaving) 2015-01-12T22:59:52Z masm quit (Ping timeout: 245 seconds) 2015-01-12T23:02:24Z zachstone joined #scheme 2015-01-12T23:03:16Z developernotes quit (Quit: Textual IRC Client: www.textualapp.com) 2015-01-12T23:04:21Z robot-beethoven joined #scheme 2015-01-12T23:04:42Z theseb joined #scheme 2015-01-12T23:06:45Z zachstone quit (Ping timeout: 252 seconds) 2015-01-12T23:09:03Z adu quit (Ping timeout: 264 seconds) 2015-01-12T23:11:05Z mumptai joined #scheme 2015-01-12T23:12:43Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-01-12T23:16:18Z jumblerg joined #scheme 2015-01-12T23:18:19Z FracV quit (Changing host) 2015-01-12T23:18:19Z FracV joined #scheme 2015-01-12T23:20:00Z davexunit joined #scheme 2015-01-12T23:25:58Z AkashicLegend quit (Quit: AkashicLegend) 2015-01-12T23:27:15Z boycottg00gle joined #scheme 2015-01-12T23:30:49Z zwer_h joined #scheme 2015-01-12T23:32:17Z zwer_h is now known as zwer 2015-01-12T23:34:56Z adu joined #scheme 2015-01-12T23:39:18Z wzsk quit (Remote host closed the connection) 2015-01-12T23:39:25Z boycottg00gle quit (Ping timeout: 264 seconds) 2015-01-12T23:46:41Z Riastradh quit (Ping timeout: 250 seconds) 2015-01-12T23:54:24Z vdamewood quit (Quit: Computer has gone to sleep.) 2015-01-12T23:55:58Z enitiz joined #scheme