2016-02-26T00:00:54Z leot joined #scheme 2016-02-26T00:05:40Z magine-pc joined #scheme 2016-02-26T00:08:33Z rx80 quit (Read error: Connection reset by peer) 2016-02-26T00:12:12Z rx80 joined #scheme 2016-02-26T00:15:42Z Riastradh quit (Ping timeout: 250 seconds) 2016-02-26T00:19:24Z oleo_ joined #scheme 2016-02-26T00:21:37Z davexunit joined #scheme 2016-02-26T00:21:46Z oleo quit (Ping timeout: 250 seconds) 2016-02-26T00:23:31Z stepnem quit (Ping timeout: 248 seconds) 2016-02-26T00:33:40Z sethalves quit (Remote host closed the connection) 2016-02-26T00:33:44Z adu: n_blownapart: hi 2016-02-26T00:34:13Z n_blownapart: adu hi whats up? 2016-02-26T00:34:26Z adu: n_blownapart: what exactly do you mean by "diagram" 2016-02-26T00:35:15Z n_blownapart: well, I heard about box / pointer diagrams, or any notation to help me follow the steps of procedures once they reach a certain size. 2016-02-26T00:35:39Z adu: n_blownapart: the kind used in dynamical systems? ok 2016-02-26T00:36:05Z n_blownapart: I don't exactly know how this program works. as for dynamical systems, that I don't know. 2016-02-26T00:37:06Z adu: well, I can think of two options, we could spend lots of time creating https://cloud.sagemath.com/ accounts so we can share notebooks with _actual_ diagrams 2016-02-26T00:37:16Z adu: or, we can use the SICP approach 2016-02-26T00:37:38Z n_blownapart: I started watching the sicp lectures from 1986. I hope they cover all of these exercises in detail, but I doubt they will. whatever you suggest adu - much appreciated 2016-02-26T00:37:51Z adu: SICP is text based 2016-02-26T00:39:12Z magine-pc quit (Remote host closed the connection) 2016-02-26T00:39:20Z magine-pc joined #scheme 2016-02-26T00:39:29Z n_blownapart: I was able to follow the prior code, then for the program to work with very small / very large numbers, the code changed to using the previous-guess argument. it was then I could not follow any longer 2016-02-26T00:40:06Z n_blownapart: prior *excercise from sicp. 2016-02-26T00:40:52Z n_blownapart: also , this is a solution from someone on a blog who went through the exercises. 2016-02-26T00:41:13Z n_blownapart: adu ^ 2016-02-26T00:42:05Z adu: ok 2016-02-26T00:42:24Z n_blownapart: In the code, I don't see why they start out with (define (square x) 2016-02-26T00:44:29Z rx80 quit (Read error: Connection reset by peer) 2016-02-26T00:45:08Z n_blownapart: so the arguments sqrt-iter takes are: (sqrt-iter 1.0 0 .001)) 2016-02-26T00:45:22Z adu: n_blownapart: the general idea of SICP traces is to do something like this: 2016-02-26T00:45:23Z adu: http://pastie.org/10737882 2016-02-26T00:45:36Z adu: you just work through each step, to convince your self how it works 2016-02-26T00:46:04Z rx80 joined #scheme 2016-02-26T00:46:09Z _sjs joined #scheme 2016-02-26T00:46:27Z n_blownapart: ok, I have been using trace to follow in that way adu 2016-02-26T00:46:33Z adu: n_blownapart: I think I see your issue though, 2016-02-26T00:46:46Z adu: n_blownapart: (good-enough?) is testing precision, not accuracy 2016-02-26T00:47:01Z n_blownapart: meaning? 2016-02-26T00:47:16Z n_blownapart: I just don't quite get the math going on.. 2016-02-26T00:47:19Z adu: it could be getting closer to zero, or some wild number, and you want to know why the precision test, also tests acurrecy to the square root function? 2016-02-26T00:47:42Z adu: (good-enough?) tests that the guesses are getting closer and closer together 2016-02-26T00:48:13Z n_blownapart: thanks, I do get good-enough? pretty well 2016-02-26T00:48:28Z adu: n_blownapart: do you get (improve)? 2016-02-26T00:49:21Z turtleman joined #scheme 2016-02-26T00:49:36Z adu: n_blownapart: are you familiar with the identity?: sqrt(x) == x/sqrt(x) 2016-02-26T00:50:36Z n_blownapart: yeah, the math I get 2016-02-26T00:50:43Z lritter quit (Ping timeout: 248 seconds) 2016-02-26T00:50:49Z neoncontrails quit (Remote host closed the connection) 2016-02-26T00:51:46Z n_blownapart: I can see how improve works. 2016-02-26T00:54:29Z karswell quit (Read error: Connection reset by peer) 2016-02-26T00:54:44Z karswell joined #scheme 2016-02-26T00:55:14Z turtleman: i am having a problem with #lang r7rs in racket unfortunately :( 2016-02-26T00:55:19Z turtleman: srfi 1 does not play nice 2016-02-26T00:55:24Z turtleman: because of mutable vs immutable lists 2016-02-26T00:56:40Z turtleman: apparently even quoting doesnt work 2016-02-26T00:56:47Z turtleman: it expands to mcons 2016-02-26T00:56:53Z zhcy joined #scheme 2016-02-26T00:58:25Z n_blownapart: adu oh so in the pastie you sent: the previous guess was 0 , but then after the first recursion 1.0 moves back to the previous guess argument for the next recursion adu 2016-02-26T00:58:56Z n_blownapart: correct ? adu 2016-02-26T00:58:58Z adu: yes 2016-02-26T00:59:14Z adu: you just follow the parameters 2016-02-26T00:59:48Z n_blownapart: the parameters in text sort of throw me off. do you sympathize adu ? 2016-02-26T01:00:11Z adu: n_blownapart: what? 2016-02-26T01:00:23Z adu: how do you want them, in colors? 2016-02-26T01:00:31Z n_blownapart: but I can use trace to watch the guess move to the previous-guess parameters, correct? 2016-02-26T01:00:32Z adu: in sounds? 2016-02-26T01:00:36Z adu: in smells? 2016-02-26T01:01:00Z adu: n_blownapart: if you have a debugger that can do that, yes 2016-02-26T01:01:25Z n_blownapart: I have a good sniffer actually. sommelier ... 2016-02-26T01:01:52Z n_blownapart: adu yeah I've been playing with racket/trace. but the pastie was helpful thank you 2016-02-26T01:02:10Z adu: n_blownapart: I just plugged in numbers... 2016-02-26T01:02:31Z adu: n_blownapart: but I got the idea from SICP, they do things like that a lot 2016-02-26T01:02:39Z n_blownapart: I get overwhelmed thinking that this exercise is so early in the book. but the math is easy. 2016-02-26T01:02:46Z n_blownapart: adu yeah , thanks kindly 2016-02-26T01:03:36Z adu: n_blownapart: but do you understand (improve) now? 2016-02-26T01:03:50Z adu: n_blownapart: it's based on the identity sqrt(x) = x/sqrt(x) 2016-02-26T01:04:42Z adu: oh, you already answered that, my bad 2016-02-26T01:05:29Z Fare quit (Ping timeout: 240 seconds) 2016-02-26T01:05:58Z n_blownapart: yes I understand the identity. that fact that this code handles the very small numbers and very large is still foggy. ( as opposed to the earlier solution which did not work for small/large numbers. 2016-02-26T01:06:14Z adu: Fare! 2016-02-26T01:06:32Z n_blownapart: Fare? 2016-02-26T01:06:40Z n_blownapart: do you mean fair? 2016-02-26T01:07:31Z adu: no, a user 2016-02-26T01:09:03Z n_blownapart: oh -- here is the earlier code fr/ sicp. notice 23 returns a wrong output. 24 returns an infinite loop 2016-02-26T01:09:07Z n_blownapart: https://www.refheap.com/115210 2016-02-26T01:10:25Z n_blownapart: let me ask you, when you first look at this , where do you see the problem ? 2016-02-26T01:12:03Z micmus quit (Ping timeout: 248 seconds) 2016-02-26T01:14:36Z turtleman quit (Quit: Leaving) 2016-02-26T01:16:10Z n_blownapart: adu ^ i.e. the improved code adds the parameter previous-guess. so is it that the additional parameter makes the function improve work better? 2016-02-26T01:23:05Z n_blownapart: adu thanks a lot . gotta go. pax 2016-02-26T01:23:11Z adu: ok 2016-02-26T01:23:16Z adu: I don't see how 2016-02-26T01:23:22Z adu: it should work both ways 2016-02-26T01:23:52Z n_blownapart: it has to do with how float points numbers are interpreted in scheme or some such adu 2016-02-26T01:24:32Z n_blownapart: with the large number, it just stops improving the guess at a particular iteration. 2016-02-26T01:24:42Z n_blownapart: and hangs 2016-02-26T01:28:24Z adu: n_blownapart: when I use the old code, I get (sqrt 24) => 4.898996732283415 2016-02-26T01:28:28Z adu: what's the issue? 2016-02-26T01:28:52Z adu: oh 2016-02-26T01:29:10Z n_blownapart: try .001 2016-02-26T01:29:19Z n_blownapart: or 9999999999 2016-02-26T01:29:38Z adu: n_blownapart: so the old code is testing 10^x against 0.001, and the new code is testing 0.000000001 against 0.001 2016-02-26T01:29:58Z adu: I think that's what your saying, right? 2016-02-26T01:30:10Z n_blownapart: yeah its a little over my head 2016-02-26T01:30:19Z adu: n_blownapart: you should learn about floating point 2016-02-26T01:30:36Z adu: n_blownapart: write your own atof() and ftoa() functions 2016-02-26T01:31:18Z adu: n_blownapart: in C 2016-02-26T01:31:21Z n_blownapart: I sort of get the issue, but I am alarmed at this complexity this early on in sicp. atof() ftoa() ? what are the acronyms? 2016-02-26T01:31:58Z n_blownapart: in C ? no I'm self taught. I dont know any of this stuff. 2016-02-26T01:32:15Z adu: atof is not a function, sorry, it's my personal name for the conversion between a string representation of a floating point number, like "7.21", and it's floating point representation 2016-02-26T01:32:30Z adu: and ftoa would be reverse, sorry for using stupid names 2016-02-26T01:33:05Z adu: n_blownapart: you could do it in scheme, that would probably be just as educational 2016-02-26T01:33:19Z n_blownapart: no problem. I instinctively see why they are teaching it like that. gotta go sadly. thanks a lot adu 2016-02-26T01:33:21Z adu: n_blownapart: https://en.wikipedia.org/wiki/Single-precision_floating-point_format 2016-02-26T01:33:32Z adu: n_blownapart: you have to learn floating-point! 2016-02-26T01:33:32Z n_blownapart: thanks 2016-02-26T01:33:41Z n_blownapart: ok will do 2016-02-26T01:34:15Z n_blownapart quit (Remote host closed the connection) 2016-02-26T01:34:22Z magine-pc quit (Remote host closed the connection) 2016-02-26T01:36:04Z magine-pc joined #scheme 2016-02-26T01:44:00Z _sjs quit (Ping timeout: 276 seconds) 2016-02-26T01:45:04Z magine-pc quit (Ping timeout: 240 seconds) 2016-02-26T01:45:39Z _sjs joined #scheme 2016-02-26T01:49:15Z rx80 quit (Remote host closed the connection) 2016-02-26T01:50:53Z rx80 joined #scheme 2016-02-26T01:53:43Z neoncontrails joined #scheme 2016-02-26T01:54:23Z neoncontrails quit (Remote host closed the connection) 2016-02-26T01:56:07Z neoncontrails joined #scheme 2016-02-26T01:59:17Z lambda-11235 joined #scheme 2016-02-26T01:59:40Z saureb joined #scheme 2016-02-26T02:05:36Z aap_ joined #scheme 2016-02-26T02:05:36Z aap quit (Read error: Connection reset by peer) 2016-02-26T02:09:05Z zhcy1 joined #scheme 2016-02-26T02:10:46Z zhcy quit (Ping timeout: 255 seconds) 2016-02-26T02:12:58Z magine-pc joined #scheme 2016-02-26T02:13:28Z magine-pc quit (Remote host closed the connection) 2016-02-26T02:13:43Z magine-pc joined #scheme 2016-02-26T02:18:20Z turtleman joined #scheme 2016-02-26T02:35:31Z jcowan: turtleman: Yes, Racket is incompatible with Scheme because of its use of immutable conses throughout. 2016-02-26T02:35:42Z turtleman: :( 2016-02-26T02:35:51Z turtleman: so #lang r7rs isnt as useful as i like 2016-02-26T02:36:17Z jcowan: I'm going to recommend that they change it to use Racket conses and simply say they don't support set-car! and set-cdr! 2016-02-26T02:36:44Z turtleman: yeah that would fix everything actually i think 2016-02-26T02:39:34Z _sjs quit (Ping timeout: 255 seconds) 2016-02-26T02:41:39Z davexunit quit (Quit: Later) 2016-02-26T02:43:33Z jcowan: okay, done at https://github.com/lexi-lambda/racket-r7rs/issues/3?_pjax=%23js-repo-pjax-container 2016-02-26T02:44:27Z jcowan: note also that using mpairs means problems for procedures with rest arguments 2016-02-26T02:45:19Z jcowan: in #lang r7rs, does (define (foo . bar) ...) cause bar to be bound to a mutable or an immutable list? If mutable, there has to be a lot of magic to allow R7RS and Racket functions to call each other at all; if not, you cannot dissect bar with car and cdr. 2016-02-26T02:45:55Z jcowan: (unless, I suppose, R7RS functions accept both pairs and mpairs) 2016-02-26T02:46:30Z _sjs joined #scheme 2016-02-26T02:46:34Z Fare joined #scheme 2016-02-26T02:55:25Z _sjs quit (Ping timeout: 244 seconds) 2016-02-26T02:56:30Z _sjs joined #scheme 2016-02-26T02:56:57Z turtleman: hmm i will test that 2016-02-26T02:57:27Z gnomon quit (Ping timeout: 244 seconds) 2016-02-26T03:02:24Z turtleman: indeed they are mutable 2016-02-26T03:09:09Z zbigniew quit (Ping timeout: 276 seconds) 2016-02-26T03:09:59Z gnomon joined #scheme 2016-02-26T03:14:36Z zbigniew joined #scheme 2016-02-26T03:16:17Z turtleman quit (Quit: Leaving) 2016-02-26T03:26:28Z grettke quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-02-26T03:28:27Z ArneBab_ joined #scheme 2016-02-26T03:32:35Z ArneBab quit (Ping timeout: 244 seconds) 2016-02-26T03:37:02Z saureb quit (Quit: Leaving) 2016-02-26T03:40:06Z adu quit (Quit: adu) 2016-02-26T03:48:23Z bb010g joined #scheme 2016-02-26T04:11:07Z spew joined #scheme 2016-02-26T04:11:15Z Fare quit (Quit: Leaving) 2016-02-26T04:18:45Z spew quit (Read error: Connection reset by peer) 2016-02-26T04:30:04Z sz0 quit (Quit: Connection closed for inactivity) 2016-02-26T04:33:06Z zhcy1 quit (Ping timeout: 250 seconds) 2016-02-26T04:56:31Z AlexDenisov joined #scheme 2016-02-26T05:04:43Z zhcy joined #scheme 2016-02-26T05:08:08Z githogori quit (Remote host closed the connection) 2016-02-26T05:23:27Z annodomini joined #scheme 2016-02-26T05:23:28Z bungoman joined #scheme 2016-02-26T05:27:16Z bungoman quit (Client Quit) 2016-02-26T05:38:32Z neoncontrails quit (Ping timeout: 250 seconds) 2016-02-26T05:41:55Z lucasem quit (Quit: Connection closed for inactivity) 2016-02-26T05:45:16Z nckx is now known as nckx|offline 2016-02-26T06:14:09Z gravicappa joined #scheme 2016-02-26T06:16:38Z annodomini quit (Quit: annodomini) 2016-02-26T06:23:08Z zhcy1 joined #scheme 2016-02-26T06:24:34Z mbuf joined #scheme 2016-02-26T06:25:27Z zhcy quit (Ping timeout: 276 seconds) 2016-02-26T06:27:47Z pierpa quit (Ping timeout: 248 seconds) 2016-02-26T06:38:49Z AlexDenisov quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-02-26T06:49:50Z magine-pc quit (Quit: Leaving...) 2016-02-26T06:50:14Z magine-pc joined #scheme 2016-02-26T07:16:54Z daviid quit (Ping timeout: 250 seconds) 2016-02-26T07:24:10Z zhcy joined #scheme 2016-02-26T07:24:46Z nee` joined #scheme 2016-02-26T07:25:33Z zhcy1 quit (Ping timeout: 240 seconds) 2016-02-26T07:26:07Z mbuf quit (Ping timeout: 244 seconds) 2016-02-26T07:35:05Z alezost joined #scheme 2016-02-26T07:36:22Z stepnem joined #scheme 2016-02-26T07:38:42Z mbuf joined #scheme 2016-02-26T07:44:41Z AlexDenisov joined #scheme 2016-02-26T07:49:31Z AlexDenisov quit (Client Quit) 2016-02-26T08:06:24Z AlexDenisov joined #scheme 2016-02-26T08:27:08Z micmus joined #scheme 2016-02-26T08:36:38Z sz0 joined #scheme 2016-02-26T08:38:00Z AlexDenisov quit (Read error: Connection reset by peer) 2016-02-26T08:38:31Z AlexDenisov joined #scheme 2016-02-26T08:43:21Z zhcy1 joined #scheme 2016-02-26T08:45:04Z zhcy quit (Ping timeout: 240 seconds) 2016-02-26T08:53:21Z Niac joined #scheme 2016-02-26T08:54:36Z lambda-11235 quit (Quit: Bye) 2016-02-26T08:58:33Z leot quit (Remote host closed the connection) 2016-02-26T09:24:08Z jrapdx joined #scheme 2016-02-26T09:32:03Z Niac quit (Quit: leaving) 2016-02-26T09:35:02Z narendraj9 quit (Ping timeout: 240 seconds) 2016-02-26T09:36:18Z narendraj9 joined #scheme 2016-02-26T09:36:59Z aap_ quit (Ping timeout: 240 seconds) 2016-02-26T09:37:14Z aap joined #scheme 2016-02-26T09:54:00Z saureb joined #scheme 2016-02-26T10:03:11Z ASau quit (Ping timeout: 244 seconds) 2016-02-26T10:06:52Z jrapdx quit (Quit: ChatZilla 0.9.92 [Firefox 47.0a1/20160225030209]) 2016-02-26T10:09:40Z zhcy1 quit (Quit: zhcy1) 2016-02-26T10:27:34Z mastokley quit (Ping timeout: 255 seconds) 2016-02-26T10:45:34Z stepnem quit (Ping timeout: 240 seconds) 2016-02-26T10:47:48Z micmus quit (Remote host closed the connection) 2016-02-26T10:51:41Z stepnem joined #scheme 2016-02-26T10:53:28Z micmus joined #scheme 2016-02-26T11:07:42Z adu joined #scheme 2016-02-26T11:09:39Z adu quit (Client Quit) 2016-02-26T11:10:33Z AlexDenisov quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-02-26T11:21:09Z AlexDenisov joined #scheme 2016-02-26T11:26:24Z mbuf quit (Ping timeout: 276 seconds) 2016-02-26T11:26:46Z Fare joined #scheme 2016-02-26T11:30:12Z lritter joined #scheme 2016-02-26T11:34:34Z mbuf joined #scheme 2016-02-26T11:34:42Z AlexDenisov quit (Read error: Connection reset by peer) 2016-02-26T11:35:18Z AlexDenisov joined #scheme 2016-02-26T11:39:07Z gravicappa quit (Ping timeout: 255 seconds) 2016-02-26T11:45:08Z davidh quit (Ping timeout: 250 seconds) 2016-02-26T11:47:49Z davidh joined #scheme 2016-02-26T11:53:51Z alezost quit (Quit: I live in GuixSD and Emacs ) 2016-02-26T11:56:53Z mbuf quit (Ping timeout: 244 seconds) 2016-02-26T12:00:51Z ggole joined #scheme 2016-02-26T12:06:55Z jcowan quit (Quit: Leaving) 2016-02-26T12:31:29Z mmos joined #scheme 2016-02-26T12:34:15Z AlexDenisov quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-02-26T12:34:48Z adu joined #scheme 2016-02-26T12:41:05Z adu quit (Quit: adu) 2016-02-26T12:53:14Z AlexDenisov joined #scheme 2016-02-26T12:55:54Z leot joined #scheme 2016-02-26T12:59:18Z AlexDenisov quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-02-26T13:12:37Z gravicappa joined #scheme 2016-02-26T13:12:45Z grettke joined #scheme 2016-02-26T13:37:46Z turtleman joined #scheme 2016-02-26T13:40:13Z AlexDenisov joined #scheme 2016-02-26T13:50:10Z davexunit joined #scheme 2016-02-26T13:54:23Z karswell quit (Remote host closed the connection) 2016-02-26T13:59:23Z badkins joined #scheme 2016-02-26T14:01:30Z Heranort joined #scheme 2016-02-26T14:19:47Z micmus quit (Ping timeout: 248 seconds) 2016-02-26T14:19:52Z leot quit (Remote host closed the connection) 2016-02-26T14:30:29Z mmos quit (Ping timeout: 240 seconds) 2016-02-26T14:31:52Z magine-pc quit (Remote host closed the connection) 2016-02-26T14:31:57Z annodomini joined #scheme 2016-02-26T14:31:58Z annodomini quit (Changing host) 2016-02-26T14:31:58Z annodomini joined #scheme 2016-02-26T14:32:23Z magine-pc joined #scheme 2016-02-26T14:34:43Z daviid joined #scheme 2016-02-26T14:36:29Z magine-pc quit (Ping timeout: 240 seconds) 2016-02-26T14:46:48Z mmc quit (Quit: Leaving.) 2016-02-26T14:54:46Z annodomini_ joined #scheme 2016-02-26T14:54:46Z annodomini_ quit (Changing host) 2016-02-26T14:54:46Z annodomini_ joined #scheme 2016-02-26T14:55:03Z jusss joined #scheme 2016-02-26T14:56:14Z annodomini quit (Ping timeout: 250 seconds) 2016-02-26T14:56:15Z annodomini_ is now known as annodomini 2016-02-26T15:00:33Z Heranort quit (Quit: Ah, my macbook is gonna sleep!) 2016-02-26T15:11:15Z karswell joined #scheme 2016-02-26T15:17:21Z annodomini quit (Quit: annodomini) 2016-02-26T15:25:01Z jusss quit (Quit: ERC (IRC client for Emacs 24.5.1)) 2016-02-26T15:43:49Z magine-pc joined #scheme 2016-02-26T15:43:56Z magine-pc quit (Remote host closed the connection) 2016-02-26T15:44:12Z magine-pc joined #scheme 2016-02-26T15:50:50Z gravicappa quit (Ping timeout: 250 seconds) 2016-02-26T15:54:06Z Riastradh joined #scheme 2016-02-26T16:05:35Z nee` quit (Remote host closed the connection) 2016-02-26T16:09:13Z drot joined #scheme 2016-02-26T16:14:51Z pierpa joined #scheme 2016-02-26T16:18:49Z mokuso joined #scheme 2016-02-26T16:18:50Z Riastradh quit (Ping timeout: 244 seconds) 2016-02-26T16:21:30Z mokuso_ joined #scheme 2016-02-26T16:22:17Z mokuso is now known as Guest5941 2016-02-26T16:22:32Z mokuso_ is now known as milia 2016-02-26T16:22:40Z milia quit (Changing host) 2016-02-26T16:22:40Z milia joined #scheme 2016-02-26T16:23:34Z Guest5941 quit (Ping timeout: 240 seconds) 2016-02-26T16:31:15Z badkins quit (Ping timeout: 276 seconds) 2016-02-26T16:39:36Z zadock joined #scheme 2016-02-26T16:39:40Z lambda-11235 joined #scheme 2016-02-26T16:42:27Z leppie: optimistic? http://stackoverflow.com/q/35657108/15541 2016-02-26T16:42:34Z dbohdan quit (Ping timeout: 244 seconds) 2016-02-26T16:42:41Z dbohdan joined #scheme 2016-02-26T16:44:19Z leppie: Ok, that code is halfway (even if just psuedo) 2016-02-26T17:04:09Z sethalves joined #scheme 2016-02-26T17:06:40Z micmus joined #scheme 2016-02-26T17:08:43Z badkins joined #scheme 2016-02-26T17:08:48Z bb010g quit (Quit: Connection closed for inactivity) 2016-02-26T17:11:02Z grublet2 joined #scheme 2016-02-26T17:12:15Z niklasl2 joined #scheme 2016-02-26T17:12:20Z mmos joined #scheme 2016-02-26T17:12:20Z foof`` joined #scheme 2016-02-26T17:12:36Z Saeren_ joined #scheme 2016-02-26T17:12:57Z Riastradh joined #scheme 2016-02-26T17:13:48Z klutomet1s joined #scheme 2016-02-26T17:14:10Z sethalves1 joined #scheme 2016-02-26T17:14:37Z mario-go` joined #scheme 2016-02-26T17:14:46Z lloda` joined #scheme 2016-02-26T17:14:59Z lolcow joined #scheme 2016-02-26T17:15:08Z cjh`_ joined #scheme 2016-02-26T17:15:18Z tm512` joined #scheme 2016-02-26T17:15:27Z ski_ joined #scheme 2016-02-26T17:15:29Z ec\_ joined #scheme 2016-02-26T17:15:49Z chu_ joined #scheme 2016-02-26T17:15:52Z eagleflo_ joined #scheme 2016-02-26T17:15:53Z ft_ joined #scheme 2016-02-26T17:15:55Z finnrobi joined #scheme 2016-02-26T17:15:55Z renopt_ joined #scheme 2016-02-26T17:16:21Z em_ joined #scheme 2016-02-26T17:16:43Z lolcow: actually the oke had it working ;p kudos for Racket making it that easy 2016-02-26T17:17:02Z badkins_ joined #scheme 2016-02-26T17:18:42Z AlexDenisov quit (Ping timeout: 276 seconds) 2016-02-26T17:19:45Z stux16777216Away joined #scheme 2016-02-26T17:20:12Z dan64- joined #scheme 2016-02-26T17:20:15Z seg_ joined #scheme 2016-02-26T17:20:34Z sethalves quit (*.net *.split) 2016-02-26T17:20:34Z grublet quit (*.net *.split) 2016-02-26T17:20:34Z seg quit (*.net *.split) 2016-02-26T17:20:35Z klutometis quit (*.net *.split) 2016-02-26T17:20:35Z ft quit (*.net *.split) 2016-02-26T17:20:35Z chu quit (*.net *.split) 2016-02-26T17:20:35Z ec\ quit (*.net *.split) 2016-02-26T17:20:35Z leppie quit (*.net *.split) 2016-02-26T17:20:35Z Saeren quit (*.net *.split) 2016-02-26T17:20:35Z mario-goulart quit (*.net *.split) 2016-02-26T17:20:35Z stux|work quit (*.net *.split) 2016-02-26T17:20:35Z foof` quit (*.net *.split) 2016-02-26T17:20:36Z NaNDude quit (*.net *.split) 2016-02-26T17:20:36Z niklasl quit (*.net *.split) 2016-02-26T17:20:36Z evhan quit (*.net *.split) 2016-02-26T17:20:36Z cjh` quit (*.net *.split) 2016-02-26T17:20:36Z em quit (*.net *.split) 2016-02-26T17:20:36Z eagleflo quit (*.net *.split) 2016-02-26T17:20:36Z snits quit (*.net *.split) 2016-02-26T17:20:36Z lloda quit (*.net *.split) 2016-02-26T17:20:36Z finnrobi_ quit (*.net *.split) 2016-02-26T17:20:36Z snow_bckspc quit (*.net *.split) 2016-02-26T17:20:36Z C-Keen quit (*.net *.split) 2016-02-26T17:20:37Z renopt quit (*.net *.split) 2016-02-26T17:20:37Z dan64 quit (*.net *.split) 2016-02-26T17:20:37Z tm512 quit (*.net *.split) 2016-02-26T17:20:37Z ski quit (*.net *.split) 2016-02-26T17:20:37Z chazu quit (*.net *.split) 2016-02-26T17:20:37Z haroldwu quit (*.net *.split) 2016-02-26T17:20:37Z shardz quit (*.net *.split) 2016-02-26T17:20:37Z cmatei quit (*.net *.split) 2016-02-26T17:20:42Z badkins quit (Ping timeout: 276 seconds) 2016-02-26T17:20:53Z lolcow is now known as leppie 2016-02-26T17:21:10Z evhan joined #scheme 2016-02-26T17:21:27Z seg_ is now known as seg 2016-02-26T17:21:29Z chazu joined #scheme 2016-02-26T17:22:03Z snits joined #scheme 2016-02-26T17:22:47Z ft_ is now known as ft 2016-02-26T17:24:12Z haroldwu joined #scheme 2016-02-26T17:26:00Z C-Keen joined #scheme 2016-02-26T17:26:00Z C-Keen quit (Changing host) 2016-02-26T17:26:00Z C-Keen joined #scheme 2016-02-26T17:26:36Z DGASAU quit (Ping timeout: 250 seconds) 2016-02-26T17:26:46Z cmatei joined #scheme 2016-02-26T17:28:16Z shardz joined #scheme 2016-02-26T17:28:47Z snow_bckspc joined #scheme 2016-02-26T17:32:40Z DGASAU joined #scheme 2016-02-26T17:38:38Z gravicappa joined #scheme 2016-02-26T17:39:29Z NaNDude joined #scheme 2016-02-26T17:48:57Z mastokley joined #scheme 2016-02-26T17:49:25Z fantazo joined #scheme 2016-02-26T17:54:52Z pjb joined #scheme 2016-02-26T18:00:50Z Fare quit (Ping timeout: 250 seconds) 2016-02-26T18:06:07Z stepnem quit (Ping timeout: 255 seconds) 2016-02-26T18:11:29Z jkraemer quit (Ping timeout: 240 seconds) 2016-02-26T18:17:59Z daviid quit (Ping timeout: 240 seconds) 2016-02-26T18:23:57Z quasus joined #scheme 2016-02-26T18:24:36Z jkraemer joined #scheme 2016-02-26T18:33:26Z grublet2 quit (Quit: Leaving) 2016-02-26T18:35:38Z githogori joined #scheme 2016-02-26T18:38:48Z AlexDenisov joined #scheme 2016-02-26T18:40:33Z badkins_ is now known as badkins 2016-02-26T18:45:59Z mmos quit (Ping timeout: 240 seconds) 2016-02-26T18:55:38Z mumptai joined #scheme 2016-02-26T19:07:54Z DGASAU quit (Read error: Connection reset by peer) 2016-02-26T19:09:56Z DGASAU joined #scheme 2016-02-26T19:10:24Z magine-pc quit (Quit: Leaving...) 2016-02-26T19:15:01Z amgarchIn9 joined #scheme 2016-02-26T19:24:25Z pjb` joined #scheme 2016-02-26T19:24:33Z milia quit (Quit: later) 2016-02-26T19:26:12Z pjb quit (Ping timeout: 250 seconds) 2016-02-26T19:39:56Z zadock quit (Quit: Leaving) 2016-02-26T19:43:21Z ggole quit 2016-02-26T19:50:59Z acarrico quit (Ping timeout: 240 seconds) 2016-02-26T19:57:36Z mmos joined #scheme 2016-02-26T19:58:16Z grublet joined #scheme 2016-02-26T20:09:08Z niklasl2 is now known as niklasl 2016-02-26T20:10:28Z mario-go` is now known as mario-goulart 2016-02-26T20:13:26Z gravicappa quit (Ping timeout: 250 seconds) 2016-02-26T20:17:10Z taysar joined #scheme 2016-02-26T20:18:03Z renopt_ is now known as renopt 2016-02-26T20:18:38Z renopt quit (Changing host) 2016-02-26T20:18:38Z renopt joined #scheme 2016-02-26T20:46:57Z karswell quit (Read error: Connection reset by peer) 2016-02-26T20:47:11Z karswell joined #scheme 2016-02-26T20:47:43Z amgarchIn9 quit (Quit: Konversation terminated!) 2016-02-26T20:48:28Z amgarchIn9 joined #scheme 2016-02-26T21:05:29Z n_blownapart joined #scheme 2016-02-26T21:05:30Z badkins quit (Read error: Connection reset by peer) 2016-02-26T21:19:06Z badkins joined #scheme 2016-02-26T21:32:28Z tm512` is now known as tm512 2016-02-26T21:39:57Z drot quit (Quit: WeeChat 1.4) 2016-02-26T21:44:45Z chu_ is now known as chu 2016-02-26T21:54:43Z drot joined #scheme 2016-02-26T21:56:51Z epw quit (Quit: Lost terminal) 2016-02-26T22:00:56Z mumptai quit (Remote host closed the connection) 2016-02-26T22:03:17Z badkins quit (Read error: Connection reset by peer) 2016-02-26T22:03:43Z drot quit (Quit: WeeChat 1.4) 2016-02-26T22:05:03Z mokuso joined #scheme 2016-02-26T22:05:03Z mokuso quit (Changing host) 2016-02-26T22:05:03Z mokuso joined #scheme 2016-02-26T22:08:40Z davexunit quit (Quit: Later) 2016-02-26T22:08:49Z ASau joined #scheme 2016-02-26T22:11:04Z saureb quit (Quit: Leaving) 2016-02-26T22:39:57Z BossKonaSegwaY left #scheme 2016-02-26T22:57:56Z AlexDenisov quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-02-26T23:15:40Z micmus quit (Ping timeout: 252 seconds) 2016-02-26T23:24:43Z taysar quit (Remote host closed the connection) 2016-02-26T23:25:07Z mmos quit (Ping timeout: 268 seconds) 2016-02-26T23:33:09Z taysar joined #scheme 2016-02-26T23:37:42Z oleo_ is now known as oleo 2016-02-26T23:40:09Z daviid joined #scheme 2016-02-26T23:54:33Z quasus quit (Ping timeout: 240 seconds)