2015-03-13T00:00:23Z jeapostrophe joined #scheme 2015-03-13T00:14:36Z jumblerg joined #scheme 2015-03-13T00:14:53Z adu quit (Quit: adu) 2015-03-13T00:32:29Z kongtomorrow quit (Read error: Connection reset by peer) 2015-03-13T00:32:48Z kongtomorrow joined #scheme 2015-03-13T00:34:48Z kongtomorrow quit (Read error: Connection reset by peer) 2015-03-13T00:35:07Z kongtomorrow joined #scheme 2015-03-13T00:39:50Z kongtomorrow quit (Ping timeout: 272 seconds) 2015-03-13T00:42:10Z kongtomorrow joined #scheme 2015-03-13T00:49:15Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-03-13T00:49:17Z _leb joined #scheme 2015-03-13T01:04:24Z cdidd quit (Ping timeout: 245 seconds) 2015-03-13T01:08:48Z turtleman_ joined #scheme 2015-03-13T01:20:25Z vraid quit (Read error: Connection reset by peer) 2015-03-13T01:20:50Z vraid joined #scheme 2015-03-13T01:30:34Z sethalves quit (Remote host closed the connection) 2015-03-13T01:31:04Z kongtomorrow quit 2015-03-13T01:31:47Z pnkfelix quit (Quit: rcirc on GNU Emacs 24.3.92.1) 2015-03-13T01:38:31Z _leb quit (Read error: Connection reset by peer) 2015-03-13T01:42:52Z ilammy quit (Ping timeout: 246 seconds) 2015-03-13T02:01:41Z hiroakip quit (Ping timeout: 256 seconds) 2015-03-13T02:02:10Z hiroaki quit (Ping timeout: 272 seconds) 2015-03-13T02:05:36Z davexunit quit (Quit: Later) 2015-03-13T02:07:06Z adu joined #scheme 2015-03-13T02:10:09Z bb010g quit (Quit: Connection closed for inactivity) 2015-03-13T02:15:25Z turtleman_ quit (Ping timeout: 264 seconds) 2015-03-13T02:18:00Z turtleman_ joined #scheme 2015-03-13T02:22:16Z echo-area joined #scheme 2015-03-13T02:30:01Z defanor quit (Ping timeout: 256 seconds) 2015-03-13T02:30:08Z defanor joined #scheme 2015-03-13T02:31:25Z Riastradh joined #scheme 2015-03-13T02:38:38Z ijp quit (Quit: brb writing War and Peace and Zombies) 2015-03-13T02:39:57Z hiyosi quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-03-13T02:41:36Z cmatei quit (Ping timeout: 264 seconds) 2015-03-13T02:43:37Z jeapostrophe quit (Ping timeout: 264 seconds) 2015-03-13T02:49:09Z oleo is now known as Guest30660 2015-03-13T02:49:59Z oleo_ joined #scheme 2015-03-13T02:52:24Z Guest30660 quit (Ping timeout: 264 seconds) 2015-03-13T02:52:43Z xyh quit (Remote host closed the connection) 2015-03-13T02:55:37Z turtleman_ quit (Ping timeout: 255 seconds) 2015-03-13T03:01:17Z rszeno joined #scheme 2015-03-13T03:06:01Z pinkiesOut joined #scheme 2015-03-13T03:07:07Z pinkiesOut: Hello all. I'm trying to solve a problem wherein a I turn a list of lists into a particular format (of which I can't explain with words easily). The following paste gives an example list, what I currently have for a conversion procedure foo, as well as both the desired and actual output. I've identified why my method fails to recursively create what I need, but I can't figure out how to fix it: 2015-03-13T03:07:25Z pinkiesOut: http://paste.call-cc.org/paste?id=6843c0350f57166fee828a2668c787962560259b 2015-03-13T03:10:11Z ghost|ruuns joined #scheme 2015-03-13T03:13:07Z ruuns quit (Ping timeout: 252 seconds) 2015-03-13T03:15:31Z pjb: pinkiesOut: your data structure is not homogenous. 2015-03-13T03:15:47Z pjb: Therefore you cannot have a recursive function to process it. 2015-03-13T03:18:34Z pinkiesOut: pjb: That's becoming clearer by the minute. Still, it is a well structured problem... but what method for conversion might work for arbitrarily nested lists? 2015-03-13T03:19:18Z pjb: Well, you have handled it with (map (lambda (x) (foo x)) bar), because bar is a list of trees. 2015-03-13T03:20:16Z kongtomorrow joined #scheme 2015-03-13T03:27:06Z yasha9 quit (Ping timeout: 256 seconds) 2015-03-13T03:33:34Z pjb: pinkiesOut: when dealing with sexps, you need first to abstract away accessors, to hide car/cdr stuff. 2015-03-13T03:33:39Z pjb: http://paste.lisp.org/+34TO 2015-03-13T03:34:07Z pjb: having defined tree-leaf? tree-label and tree-children, you can implement your function easily. 2015-03-13T03:36:06Z pinkiesOut: Very interesting... I'm looking through things now... 2015-03-13T03:38:17Z pecg joined #scheme 2015-03-13T03:40:06Z yasha9 joined #scheme 2015-03-13T03:41:54Z Riastradh quit (Ping timeout: 265 seconds) 2015-03-13T03:43:13Z pinkiesOut: pjb: This is very helpful to see. Thanks for putting this code together 2015-03-13T03:43:29Z pjb: pinkiesOut: you may find more in sicp. 2015-03-13T03:44:20Z sdothum quit (Quit: ZNC - 1.6.0 - http://znc.in) 2015-03-13T03:47:33Z bb010g joined #scheme 2015-03-13T03:48:54Z taylanub quit (Disconnected by services) 2015-03-13T03:49:21Z taylanub joined #scheme 2015-03-13T03:50:40Z ArneBab_ joined #scheme 2015-03-13T03:51:18Z pjb: It may be interesting to evaluate: (map (lambda (tree) (display (list (tree-leaf? tree) (tree-label tree) (tree-children tree))) (newline)) bar) 2015-03-13T03:52:32Z ecthiender joined #scheme 2015-03-13T03:54:07Z ArneBab quit (Ping timeout: 255 seconds) 2015-03-13T03:56:17Z badkins quit 2015-03-13T04:16:20Z akkad quit (Quit: Emacs must have died) 2015-03-13T04:19:42Z leb joined #scheme 2015-03-13T04:24:02Z yasha9 quit (Quit: Ухожу я от вас (xchat 2.4.5 или старше)) 2015-03-13T04:24:18Z yasha9 joined #scheme 2015-03-13T04:25:20Z yasha9 quit (Client Quit) 2015-03-13T04:25:36Z yasha9 joined #scheme 2015-03-13T04:26:15Z pjb quit (Read error: Connection reset by peer) 2015-03-13T04:26:35Z pjb joined #scheme 2015-03-13T04:26:45Z pjb is now known as Guest80467 2015-03-13T04:31:01Z pinkiesOut quit (Ping timeout: 264 seconds) 2015-03-13T04:33:41Z rszeno quit (Quit: Leaving.) 2015-03-13T04:40:09Z amgarching joined #scheme 2015-03-13T04:42:52Z amgarchIn9 quit (Ping timeout: 240 seconds) 2015-03-13T04:43:46Z pecg quit (Ping timeout: 265 seconds) 2015-03-13T04:44:02Z akkad joined #scheme 2015-03-13T04:55:33Z excelsior joined #scheme 2015-03-13T04:55:55Z leb quit (Quit: Textual IRC Client: www.textualapp.com) 2015-03-13T05:00:48Z pecg joined #scheme 2015-03-13T05:02:04Z edgar-rft joined #scheme 2015-03-13T05:04:14Z theseb joined #scheme 2015-03-13T05:06:09Z adu quit (Quit: adu) 2015-03-13T05:08:46Z frkout_ quit (Remote host closed the connection) 2015-03-13T05:08:50Z kongtomorrow quit 2015-03-13T05:09:13Z frkout joined #scheme 2015-03-13T05:10:04Z theseb left #scheme 2015-03-13T05:10:14Z dmiles_akf joined #scheme 2015-03-13T05:10:52Z dmiles_afk quit (Ping timeout: 240 seconds) 2015-03-13T05:11:47Z Shadox quit (Quit: Leaving) 2015-03-13T05:12:41Z c74d joined #scheme 2015-03-13T05:15:10Z kongtomorrow joined #scheme 2015-03-13T05:22:19Z jlongste` quit (Ping timeout: 245 seconds) 2015-03-13T05:23:33Z amgarching quit (Ping timeout: 246 seconds) 2015-03-13T05:34:03Z dmiles_akf quit (Read error: Connection reset by peer) 2015-03-13T05:34:28Z dmiles_afk joined #scheme 2015-03-13T05:48:58Z mrowe is now known as mrowe_away 2015-03-13T05:49:43Z dmiles_afk quit (Read error: Connection reset by peer) 2015-03-13T05:50:08Z dmiles_afk joined #scheme 2015-03-13T06:13:46Z mtakkman joined #scheme 2015-03-13T06:19:02Z oleo_ quit (Quit: Leaving) 2015-03-13T06:24:44Z robot-beethoven joined #scheme 2015-03-13T06:26:46Z amgarching joined #scheme 2015-03-13T06:26:47Z mtakkman` joined #scheme 2015-03-13T06:29:13Z dmiles_afk quit (Read error: Connection reset by peer) 2015-03-13T06:29:27Z mtakkman quit (Ping timeout: 250 seconds) 2015-03-13T06:29:38Z dmiles_afk joined #scheme 2015-03-13T06:33:00Z amgarching quit (Ping timeout: 265 seconds) 2015-03-13T06:43:52Z dmiles_afk quit (Ping timeout: 240 seconds) 2015-03-13T06:52:55Z pecg quit (Quit: WeeChat 1.1.1) 2015-03-13T06:53:04Z hiroakip joined #scheme 2015-03-13T06:53:06Z hiroaki joined #scheme 2015-03-13T07:01:09Z dmiles_afk joined #scheme 2015-03-13T07:01:40Z vdamewood joined #scheme 2015-03-13T07:07:48Z [random] joined #scheme 2015-03-13T07:07:52Z [random] quit (Remote host closed the connection) 2015-03-13T07:09:22Z hiroakip quit (Ping timeout: 240 seconds) 2015-03-13T07:09:58Z hiroaki quit (Ping timeout: 272 seconds) 2015-03-13T07:15:23Z [random] joined #scheme 2015-03-13T07:20:06Z xyh joined #scheme 2015-03-13T07:22:37Z Isp-sec joined #scheme 2015-03-13T07:30:18Z mtakkman` quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-03-13T07:30:35Z wingo joined #scheme 2015-03-13T07:52:17Z civodul joined #scheme 2015-03-13T08:20:28Z cdidd joined #scheme 2015-03-13T08:21:29Z daviid` quit (Ping timeout: 252 seconds) 2015-03-13T09:00:12Z nee joined #scheme 2015-03-13T09:02:53Z stepnem joined #scheme 2015-03-13T09:22:57Z mtakkman joined #scheme 2015-03-13T09:25:23Z excelsior quit (Quit: leaving) 2015-03-13T09:26:59Z robot-beethoven quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-03-13T09:44:19Z [random] quit (Read error: Connection reset by peer) 2015-03-13T09:50:12Z Isp-sec quit (Ping timeout: 265 seconds) 2015-03-13T09:57:32Z Vutral quit (Ping timeout: 256 seconds) 2015-03-13T09:59:34Z frkout_ joined #scheme 2015-03-13T10:02:39Z frkout quit (Ping timeout: 250 seconds) 2015-03-13T10:06:02Z excelsior joined #scheme 2015-03-13T10:09:30Z vraid quit (Ping timeout: 244 seconds) 2015-03-13T10:09:39Z ovenpasta joined #scheme 2015-03-13T10:15:35Z Vutral joined #scheme 2015-03-13T10:29:18Z xyh quit (Remote host closed the connection) 2015-03-13T10:39:06Z kongtomorrow quit 2015-03-13T10:47:29Z zadock joined #scheme 2015-03-13T10:51:50Z vraid joined #scheme 2015-03-13T10:53:47Z echo-area quit (Remote host closed the connection) 2015-03-13T11:03:53Z mtakkman quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-03-13T11:04:35Z sdothum joined #scheme 2015-03-13T11:08:47Z frkout_ quit (Remote host closed the connection) 2015-03-13T11:54:24Z davexunit joined #scheme 2015-03-13T11:54:54Z jeapostrophe joined #scheme 2015-03-13T11:54:54Z jeapostrophe quit (Changing host) 2015-03-13T11:54:54Z jeapostrophe joined #scheme 2015-03-13T12:16:35Z alezost joined #scheme 2015-03-13T12:27:04Z hiyosi joined #scheme 2015-03-13T12:31:02Z FracV_ joined #scheme 2015-03-13T12:31:03Z FracV_ quit (Client Quit) 2015-03-13T12:31:15Z gravicappa joined #scheme 2015-03-13T12:36:56Z turtleman_ joined #scheme 2015-03-13T12:38:15Z zadock quit (Quit: Leaving) 2015-03-13T12:49:19Z bjz joined #scheme 2015-03-13T12:57:03Z mtakkman joined #scheme 2015-03-13T13:14:01Z przl joined #scheme 2015-03-13T13:14:08Z ovenpasta quit (Ping timeout: 272 seconds) 2015-03-13T13:14:13Z ghost|ruuns is now known as ruuns 2015-03-13T13:15:53Z jumblerg joined #scheme 2015-03-13T13:18:41Z mtakkman quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-03-13T13:23:18Z mtakkman joined #scheme 2015-03-13T13:26:56Z oleo joined #scheme 2015-03-13T13:28:51Z ecthiender quit (Quit: gotta go) 2015-03-13T13:28:52Z przl quit (Ping timeout: 240 seconds) 2015-03-13T13:31:53Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-03-13T13:32:49Z jumblerg joined #scheme 2015-03-13T13:40:21Z ovenpasta joined #scheme 2015-03-13T13:49:24Z ovenpasta quit (Ping timeout: 245 seconds) 2015-03-13T13:49:58Z badkins joined #scheme 2015-03-13T13:54:01Z przl joined #scheme 2015-03-13T14:00:10Z akp quit (Remote host closed the connection) 2015-03-13T14:02:34Z akp joined #scheme 2015-03-13T14:05:09Z turtleman_ quit (Quit: Leaving) 2015-03-13T14:05:24Z c74d quit (Ping timeout: 265 seconds) 2015-03-13T14:06:59Z necronian quit (Remote host closed the connection) 2015-03-13T14:08:52Z alezost quit (Ping timeout: 252 seconds) 2015-03-13T14:08:55Z necronian joined #scheme 2015-03-13T14:09:24Z c74d joined #scheme 2015-03-13T14:16:05Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-03-13T14:18:12Z uber_hulk joined #scheme 2015-03-13T14:18:53Z jlongste` joined #scheme 2015-03-13T14:19:03Z ruuns quit (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2015-03-13T14:19:35Z jumblerg joined #scheme 2015-03-13T14:19:49Z uris77 joined #scheme 2015-03-13T14:22:52Z przl quit (Ping timeout: 240 seconds) 2015-03-13T14:25:54Z przl joined #scheme 2015-03-13T14:32:20Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-03-13T14:32:22Z jyc quit (Ping timeout: 256 seconds) 2015-03-13T14:34:13Z jyc joined #scheme 2015-03-13T14:38:36Z przl quit (Ping timeout: 264 seconds) 2015-03-13T14:39:52Z jeapostrophe quit (Ping timeout: 255 seconds) 2015-03-13T14:44:12Z mario-goulart quit (Read error: Connection reset by peer) 2015-03-13T14:44:27Z mario-goulart joined #scheme 2015-03-13T14:44:39Z mario-goulart quit (Remote host closed the connection) 2015-03-13T14:45:05Z mario-goulart joined #scheme 2015-03-13T14:50:59Z jumblerg joined #scheme 2015-03-13T14:52:07Z turtleman_ joined #scheme 2015-03-13T14:52:30Z gravicappa quit (Ping timeout: 252 seconds) 2015-03-13T14:57:42Z alezost joined #scheme 2015-03-13T15:01:39Z przl joined #scheme 2015-03-13T15:02:13Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-03-13T15:05:36Z jumblerg joined #scheme 2015-03-13T15:08:28Z xyh joined #scheme 2015-03-13T15:10:18Z developernotes joined #scheme 2015-03-13T15:11:59Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-03-13T15:13:10Z necronian quit (Remote host closed the connection) 2015-03-13T15:19:04Z pecg joined #scheme 2015-03-13T15:21:44Z duggiefresh joined #scheme 2015-03-13T15:22:17Z theseb joined #scheme 2015-03-13T15:26:11Z przl quit (Quit: leaving) 2015-03-13T15:26:21Z przl joined #scheme 2015-03-13T15:29:33Z theseb left #scheme 2015-03-13T15:35:17Z przl quit (Quit: leaving) 2015-03-13T15:35:17Z vdamewood quit (Quit: ["Textual IRC Client: www.textualapp.com"]) 2015-03-13T15:36:16Z przl joined #scheme 2015-03-13T15:36:27Z jeapostrophe joined #scheme 2015-03-13T15:36:28Z jeapostrophe quit (Changing host) 2015-03-13T15:36:28Z jeapostrophe joined #scheme 2015-03-13T15:41:17Z jeapostrophe quit (Ping timeout: 246 seconds) 2015-03-13T15:44:04Z jeapostrophe joined #scheme 2015-03-13T15:44:05Z jeapostrophe quit (Changing host) 2015-03-13T15:44:05Z jeapostrophe joined #scheme 2015-03-13T15:49:24Z nee quit (Remote host closed the connection) 2015-03-13T15:49:41Z oleo is now known as Guest25699 2015-03-13T15:50:32Z oleo_ joined #scheme 2015-03-13T15:50:42Z turtleman_ quit (Ping timeout: 246 seconds) 2015-03-13T15:52:46Z Guest25699 quit (Ping timeout: 255 seconds) 2015-03-13T16:08:48Z sethalves joined #scheme 2015-03-13T16:21:36Z przl quit (Ping timeout: 252 seconds) 2015-03-13T16:23:15Z hiyosi quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-03-13T16:23:17Z uber_hulk quit (Quit: Connection closed for inactivity) 2015-03-13T16:30:18Z gravicappa joined #scheme 2015-03-13T16:34:47Z jeapostrophe quit (Ping timeout: 246 seconds) 2015-03-13T16:36:04Z turtleman_ joined #scheme 2015-03-13T16:38:32Z daviid` joined #scheme 2015-03-13T16:38:41Z Soft quit (Ping timeout: 252 seconds) 2015-03-13T16:43:44Z stamourv` joined #scheme 2015-03-13T16:44:21Z stamourv quit (Ping timeout: 250 seconds) 2015-03-13T16:45:16Z PinealGlandOptic quit (Ping timeout: 244 seconds) 2015-03-13T16:46:11Z przl joined #scheme 2015-03-13T16:46:22Z PinealGlandOptic joined #scheme 2015-03-13T16:46:24Z uber_hulk joined #scheme 2015-03-13T16:47:09Z mtakkman quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-03-13T16:51:18Z przl quit (Ping timeout: 252 seconds) 2015-03-13T16:55:25Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-03-13T16:56:11Z jeapostrophe joined #scheme 2015-03-13T16:56:12Z jeapostrophe quit (Changing host) 2015-03-13T16:56:12Z jeapostrophe joined #scheme 2015-03-13T17:02:48Z alezost_ joined #scheme 2015-03-13T17:03:09Z alezost quit (Ping timeout: 245 seconds) 2015-03-13T17:14:36Z Soft joined #scheme 2015-03-13T17:18:58Z alezost_ is now known as alezost 2015-03-13T17:22:53Z jumblerg joined #scheme 2015-03-13T17:34:00Z stamourv` is now known as stamourv 2015-03-13T17:34:07Z stamourv quit (Changing host) 2015-03-13T17:34:07Z stamourv joined #scheme 2015-03-13T17:37:39Z developernotes quit (Quit: Textual IRC Client: www.textualapp.com) 2015-03-13T17:39:45Z lolcow quit (Read error: Connection reset by peer) 2015-03-13T17:39:53Z jeapostrophe quit (Ping timeout: 246 seconds) 2015-03-13T17:41:07Z leppie joined #scheme 2015-03-13T17:43:23Z turtleman_ quit (Ping timeout: 265 seconds) 2015-03-13T17:44:17Z beginner joined #scheme 2015-03-13T17:46:58Z przl joined #scheme 2015-03-13T17:47:23Z jcloud joined #scheme 2015-03-13T17:49:34Z beginner quit (Quit: Leaving) 2015-03-13T17:49:44Z sbwhitecap joined #scheme 2015-03-13T17:50:03Z beginner joined #scheme 2015-03-13T17:50:03Z beginner quit (Changing host) 2015-03-13T17:50:03Z beginner joined #scheme 2015-03-13T17:50:33Z leppie quit 2015-03-13T17:52:10Z przl quit (Ping timeout: 252 seconds) 2015-03-13T17:53:21Z leppie joined #scheme 2015-03-13T17:54:57Z beginner quit (Client Quit) 2015-03-13T17:55:11Z beginner joined #scheme 2015-03-13T17:59:14Z beginner quit (Client Quit) 2015-03-13T17:59:26Z beginner joined #scheme 2015-03-13T17:59:26Z beginner quit (Changing host) 2015-03-13T17:59:26Z beginner joined #scheme 2015-03-13T18:04:25Z beginner quit (Quit: Leaving) 2015-03-13T18:04:56Z beginner joined #scheme 2015-03-13T18:04:57Z beginner quit (Read error: Connection reset by peer) 2015-03-13T18:05:12Z beginner joined #scheme 2015-03-13T18:07:43Z beginner quit (Client Quit) 2015-03-13T18:09:07Z Guest80467 is now known as pjb 2015-03-13T18:17:59Z przl joined #scheme 2015-03-13T18:21:22Z vraid quit (Ping timeout: 244 seconds) 2015-03-13T18:27:45Z kongtomorrow joined #scheme 2015-03-13T18:38:22Z yasha9 quit (Ping timeout: 255 seconds) 2015-03-13T18:41:58Z yasha9 joined #scheme 2015-03-13T18:44:54Z amgarching joined #scheme 2015-03-13T18:46:29Z xyh quit (Remote host closed the connection) 2015-03-13T18:53:18Z uber_hulk quit (Quit: Connection closed for inactivity) 2015-03-13T18:56:19Z necronian joined #scheme 2015-03-13T18:56:19Z necronian quit (Client Quit) 2015-03-13T19:04:25Z narendraj9 joined #scheme 2015-03-13T19:15:56Z hiroaki joined #scheme 2015-03-13T19:15:59Z hiroakip joined #scheme 2015-03-13T19:18:54Z pecg quit (Quit: WeeChat 1.1.1) 2015-03-13T19:24:39Z jeapostrophe joined #scheme 2015-03-13T19:24:39Z jeapostrophe quit (Changing host) 2015-03-13T19:24:39Z jeapostrophe joined #scheme 2015-03-13T19:30:53Z robot-beethoven joined #scheme 2015-03-13T19:34:01Z fantazo joined #scheme 2015-03-13T19:36:18Z necronian joined #scheme 2015-03-13T19:38:47Z necronian quit (Client Quit) 2015-03-13T19:42:39Z necronian joined #scheme 2015-03-13T19:42:57Z necronian quit (Client Quit) 2015-03-13T19:44:08Z necronian joined #scheme 2015-03-13T19:44:27Z necronian quit (Client Quit) 2015-03-13T19:50:16Z przl quit (Ping timeout: 256 seconds) 2015-03-13T19:51:24Z vraid joined #scheme 2015-03-13T19:52:26Z amgarching quit (Ping timeout: 252 seconds) 2015-03-13T19:55:16Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-03-13T19:56:49Z zadock joined #scheme 2015-03-13T19:58:31Z kongtomorrow quit 2015-03-13T19:59:18Z amgarching joined #scheme 2015-03-13T19:59:26Z przl joined #scheme 2015-03-13T20:07:35Z jeapostrophe quit (Ping timeout: 250 seconds) 2015-03-13T20:12:21Z jumblerg joined #scheme 2015-03-13T20:12:50Z jumblerg quit (Read error: Connection reset by peer) 2015-03-13T20:15:34Z narendraj9 quit (Ping timeout: 255 seconds) 2015-03-13T20:18:09Z przl quit (Ping timeout: 245 seconds) 2015-03-13T20:18:32Z gravicappa quit (Remote host closed the connection) 2015-03-13T20:22:19Z jeapostrophe joined #scheme 2015-03-13T20:27:19Z jeapostrophe quit (Ping timeout: 245 seconds) 2015-03-13T20:28:59Z wingo quit (Ping timeout: 245 seconds) 2015-03-13T20:29:23Z badkins quit 2015-03-13T20:33:04Z ilammy joined #scheme 2015-03-13T20:39:03Z narendraj9 joined #scheme 2015-03-13T20:44:10Z przl joined #scheme 2015-03-13T20:45:23Z hiyosi joined #scheme 2015-03-13T20:49:11Z przl quit (Ping timeout: 250 seconds) 2015-03-13T20:51:53Z robot-beethoven quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-03-13T20:53:29Z robot-beethoven joined #scheme 2015-03-13T20:59:19Z robot-beethoven quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-03-13T21:06:17Z fantazo quit (Quit: Verlassend) 2015-03-13T21:07:09Z zadock quit (Read error: Connection reset by peer) 2015-03-13T21:07:33Z jeapostrophe joined #scheme 2015-03-13T21:12:08Z alezost quit (Quit: I use GNU Guix ) 2015-03-13T21:14:01Z duggiefresh quit (Read error: Connection reset by peer) 2015-03-13T21:14:07Z duggiefresh joined #scheme 2015-03-13T21:19:11Z amgarching quit (Ping timeout: 252 seconds) 2015-03-13T21:21:10Z ASau quit (Ping timeout: 272 seconds) 2015-03-13T21:25:24Z narendraj9 quit (Quit: WeeChat 1.1.1) 2015-03-13T21:25:36Z jeapostrophe quit (Ping timeout: 272 seconds) 2015-03-13T21:25:49Z amgarching joined #scheme 2015-03-13T21:29:16Z excelsior quit (Quit: leaving) 2015-03-13T21:30:13Z kongtomorrow joined #scheme 2015-03-13T21:35:42Z robot-beethoven joined #scheme 2015-03-13T21:44:54Z przl joined #scheme 2015-03-13T21:45:18Z uris77 quit (Quit: leaving) 2015-03-13T21:45:37Z zadock joined #scheme 2015-03-13T21:49:48Z przl quit (Ping timeout: 246 seconds) 2015-03-13T22:03:42Z jeapostrophe joined #scheme 2015-03-13T22:03:42Z jeapostrophe quit (Changing host) 2015-03-13T22:03:42Z jeapostrophe joined #scheme 2015-03-13T22:07:44Z adu joined #scheme 2015-03-13T22:09:02Z kongtomorrow quit 2015-03-13T22:10:02Z kongtomorrow joined #scheme 2015-03-13T22:15:15Z bjz quit (Quit: Textual IRC Client: www.textualapp.com) 2015-03-13T22:18:21Z bjz joined #scheme 2015-03-13T22:19:19Z jeapostrophe quit (Ping timeout: 255 seconds) 2015-03-13T22:30:10Z ijp joined #scheme 2015-03-13T22:31:27Z jeapostrophe joined #scheme 2015-03-13T22:32:29Z ASau joined #scheme 2015-03-13T22:32:50Z psy_ quit (Ping timeout: 246 seconds) 2015-03-13T22:33:09Z psy_ joined #scheme 2015-03-13T22:39:37Z zadock quit (Quit: Leaving) 2015-03-13T22:42:10Z adu quit (Quit: adu) 2015-03-13T22:44:40Z Shadox joined #scheme 2015-03-13T22:45:25Z sethalves quit (Remote host closed the connection) 2015-03-13T22:46:12Z duggiefresh quit (Read error: Connection reset by peer) 2015-03-13T22:46:24Z duggiefresh joined #scheme 2015-03-13T23:05:05Z zadock joined #scheme 2015-03-13T23:10:09Z bb010g quit (Quit: Connection closed for inactivity) 2015-03-13T23:11:56Z przl joined #scheme 2015-03-13T23:16:45Z Riastradh joined #scheme 2015-03-13T23:22:01Z przl quit (Ping timeout: 264 seconds) 2015-03-13T23:24:57Z DrPete_ joined #scheme 2015-03-13T23:27:44Z zacts joined #scheme 2015-03-13T23:33:32Z kongtomorrow quit 2015-03-13T23:35:40Z kongtomorrow joined #scheme 2015-03-13T23:37:02Z zacts quit 2015-03-13T23:38:44Z sethalves joined #scheme 2015-03-13T23:47:44Z przl joined #scheme 2015-03-13T23:52:58Z jeapostrophe quit (Ping timeout: 252 seconds) 2015-03-13T23:53:31Z jlongste` quit (Ping timeout: 256 seconds) 2015-03-13T23:53:59Z przl quit (Ping timeout: 245 seconds) 2015-03-13T23:57:30Z beginner joined #scheme