2015-02-02T00:00:25Z visualshock quit (Quit: Leaving) 2015-02-02T00:02:53Z oleo quit (Read error: Connection reset by peer) 2015-02-02T00:05:01Z oleo joined #scheme 2015-02-02T00:11:08Z turtleman_ joined #scheme 2015-02-02T00:17:13Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-02-02T00:17:42Z jumblerg joined #scheme 2015-02-02T00:40:03Z turtleman_ quit (Ping timeout: 250 seconds) 2015-02-02T00:47:22Z pecg joined #scheme 2015-02-02T00:48:39Z pecg: Hello. What is the difference between ` and ' 2015-02-02T00:49:02Z vanila: ` is quasiquote which lets you unquote inside it 2015-02-02T00:49:14Z vanila: `(a b ,(+ 1 2)) ;=> (a b 3) 2015-02-02T00:49:23Z vanila: '(a b ,(+ 1 2)) ;=> (a b (unquote (+ 1 2))) 2015-02-02T00:50:47Z pecg: vanila: Great! 2015-02-02T00:51:32Z pecg: vanila: Thank you very much. 2015-02-02T00:54:43Z pecg: vanila: So ` still quotes whatever not unquoted in the form. 2015-02-02T00:55:27Z vanila: yeah 2015-02-02T00:55:32Z cjh`_ wonders about nested quoting 2015-02-02T00:55:40Z vanila: `(a b ',(+ 1 2)) ;=> (a b (quote 3)) 2015-02-02T00:56:17Z vanila: I don't know what happens if you use multiple ` 2015-02-02T00:56:41Z cjh`_: ty, I was wondering about multiple quasi and unquotes 2015-02-02T00:56:52Z vanila: im not sure there are multiple levels 2015-02-02T00:56:56Z vanila: would have to check R5RS 2015-02-02T00:56:58Z pecg: vanila: quasiquote form is quoted 2015-02-02T00:58:25Z pecg: `(`(p)) ;=> ((quasiquote (p))) 2015-02-02T00:59:39Z pecg: vanila: So the first quasiquote, quotes (quasi) the second one. 2015-02-02T00:59:50Z vanila: ah that makes sense 2015-02-02T01:00:01Z vanila: i guess ,,1 is an error? 2015-02-02T01:00:18Z cjh`_: (display `(a (+ ,(+ 2 3) (+ 4 5)) ,(+ 1))) ;=> (a (+ 5 (+ 4 5)) 1) 2015-02-02T01:00:24Z cjh`_: using csi that behaves nicely 2015-02-02T01:01:14Z pecg: cjh`_: csi is awesome. 2015-02-02T01:02:33Z cjh`_: I was wondering about the ,(+ 2 3) as it is within a subexpr of the ` 2015-02-02T01:02:48Z cjh`_: > (display ,(+ 1 2)) 2015-02-02T01:02:51Z cjh`_: > Error: unbound variable: unquote 2015-02-02T01:03:02Z cjh`_: cute, I was assuming it would just always force eval :P 2015-02-02T01:03:05Z AkashicLegend joined #scheme 2015-02-02T01:03:49Z pecg: cjh`_: No, apparently in order for (unquote) to work there has to be a preceding ` 2015-02-02T01:04:15Z cjh`_: that makes sense, I had just assumed implementation would cheat, and now I am wondering about where that would matter :P 2015-02-02T01:05:20Z pecg: cjh`_: the primitive (unquote) makes a lot of sense now, since it is design to revert ignore quote and not to force evaluation. 2015-02-02T01:05:40Z pecg: *designed 2015-02-02T01:23:16Z turtleman_ joined #scheme 2015-02-02T01:29:40Z b4283 joined #scheme 2015-02-02T01:30:23Z kuribas joined #scheme 2015-02-02T01:33:31Z vanila quit (Quit: Leaving) 2015-02-02T01:37:26Z joast quit (Read error: Connection reset by peer) 2015-02-02T01:45:14Z echo-area joined #scheme 2015-02-02T01:52:37Z AkashicLegend quit (Quit: AkashicLegend) 2015-02-02T01:55:33Z AkashicLegend joined #scheme 2015-02-02T01:59:03Z xyh joined #scheme 2015-02-02T02:06:15Z tobik quit (Ping timeout: 265 seconds) 2015-02-02T02:07:30Z tobik joined #scheme 2015-02-02T02:10:03Z b4284 joined #scheme 2015-02-02T02:10:39Z b4283 quit (Read error: Connection reset by peer) 2015-02-02T02:14:09Z echo-are` joined #scheme 2015-02-02T02:14:48Z echo-area quit (Read error: Connection reset by peer) 2015-02-02T02:14:51Z AkashicLegend quit (Quit: AkashicLegend) 2015-02-02T02:17:33Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-02-02T02:18:46Z kuribas quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-02-02T02:19:52Z echo-are` is now known as echo-area 2015-02-02T02:24:48Z AkashicLegend joined #scheme 2015-02-02T02:25:29Z jumblerg joined #scheme 2015-02-02T02:35:26Z excelsior joined #scheme 2015-02-02T02:39:57Z frkout_ joined #scheme 2015-02-02T02:42:04Z rudybot__ is now known as rudybot 2015-02-02T02:43:28Z frkout quit (Ping timeout: 265 seconds) 2015-02-02T02:44:51Z hiyosi quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-02-02T02:46:38Z pecg quit (Quit: WeeChat 1.1.1) 2015-02-02T02:52:45Z pecg joined #scheme 2015-02-02T02:53:24Z pecg: Hello, can somebody explain what this s-expressions mean: (x . y) 2015-02-02T02:53:48Z pecg: Actually, to be more specific, I want to know what is the point symbol used for 2015-02-02T02:56:11Z vraid: (x . y) is (cons x y) 2015-02-02T02:57:06Z vraid: so, it's used for cons cells 2015-02-02T02:58:50Z pecg: got it 2015-02-02T03:01:50Z rtra quit (Ping timeout: 265 seconds) 2015-02-02T03:02:28Z turtleman_ quit (Ping timeout: 245 seconds) 2015-02-02T03:05:24Z zhangyh26258 joined #scheme 2015-02-02T03:06:52Z rtra joined #scheme 2015-02-02T03:06:54Z theseb joined #scheme 2015-02-02T03:10:05Z vraid: pecg: and since nonempty lists are made of cons cells, '(x) is the same as '(x . ()), with '() being the empty list 2015-02-02T03:10:25Z vraid: '(x y) being '(x . (y . ())) 2015-02-02T03:13:05Z pecg: vraid: Thanks 2015-02-02T03:13:07Z pecg quit (Quit: WeeChat 1.1.1) 2015-02-02T03:27:05Z joast joined #scheme 2015-02-02T03:34:52Z zhangyh26258 quit (Quit: Leaving) 2015-02-02T03:36:51Z BitPuffin quit (Ping timeout: 246 seconds) 2015-02-02T03:37:08Z ecthiender joined #scheme 2015-02-02T03:37:26Z zhangyh26258 joined #scheme 2015-02-02T03:43:18Z dzhus quit (Ping timeout: 264 seconds) 2015-02-02T03:48:02Z davexunit quit (Quit: Later) 2015-02-02T03:56:06Z ehaliewicz quit (Ping timeout: 246 seconds) 2015-02-02T04:00:06Z mrowe is now known as mrowe_away 2015-02-02T04:03:38Z frkout joined #scheme 2015-02-02T04:03:44Z frkout_ quit (Read error: Connection reset by peer) 2015-02-02T04:28:27Z alexei joined #scheme 2015-02-02T04:31:23Z amgarching quit (Ping timeout: 240 seconds) 2015-02-02T04:41:30Z zwer_p joined #scheme 2015-02-02T04:44:09Z zwer quit (Ping timeout: 250 seconds) 2015-02-02T04:45:03Z evhan quit (Ping timeout: 264 seconds) 2015-02-02T04:46:43Z evhan joined #scheme 2015-02-02T04:50:53Z MichaelRaskin quit (Quit: MichaelRaskin) 2015-02-02T04:55:53Z adu joined #scheme 2015-02-02T05:00:56Z mrowe_away is now known as mrowe 2015-02-02T05:08:12Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-02-02T05:11:22Z enitiz quit (Ping timeout: 265 seconds) 2015-02-02T05:12:15Z theseb quit (Quit: Leaving) 2015-02-02T05:13:09Z ecthiender quit (Ping timeout: 245 seconds) 2015-02-02T05:16:07Z BitPuffin joined #scheme 2015-02-02T05:20:10Z AkashicLegend quit (Read error: Connection reset by peer) 2015-02-02T05:21:52Z BitPuffin quit (Ping timeout: 255 seconds) 2015-02-02T05:21:57Z AkashicLegend joined #scheme 2015-02-02T05:28:17Z vraid quit (Ping timeout: 265 seconds) 2015-02-02T05:39:49Z fsckd quit (Ping timeout: 245 seconds) 2015-02-02T05:41:28Z zhangyh26258 quit (Quit: Leaving) 2015-02-02T05:42:14Z AkashicLegend quit (Quit: AkashicLegend) 2015-02-02T05:53:16Z evhan quit (Quit: de irc non curat lector) 2015-02-02T05:59:49Z evhan joined #scheme 2015-02-02T05:59:51Z jumblerg joined #scheme 2015-02-02T06:07:49Z oleo quit (Quit: Verlassend) 2015-02-02T06:16:23Z jgrant quit (Remote host closed the connection) 2015-02-02T06:20:05Z mrowe is now known as mrowe_away 2015-02-02T06:21:10Z jgrant joined #scheme 2015-02-02T06:21:10Z jgrant quit (Excess Flood) 2015-02-02T06:28:58Z adu quit (Read error: Connection reset by peer) 2015-02-02T06:35:54Z adu joined #scheme 2015-02-02T06:43:44Z jgrant joined #scheme 2015-02-02T06:55:55Z ecthiender joined #scheme 2015-02-02T07:02:16Z jgrant- joined #scheme 2015-02-02T07:02:54Z jgrant quit (Remote host closed the connection) 2015-02-02T07:02:54Z jgrant- quit (Remote host closed the connection) 2015-02-02T07:04:01Z jgrant joined #scheme 2015-02-02T07:09:21Z certaint1 is now known as certainty 2015-02-02T07:12:33Z Sgeo_ joined #scheme 2015-02-02T07:13:05Z Sgeo_ quit (Read error: Connection reset by peer) 2015-02-02T07:15:05Z Sgeo quit (Ping timeout: 244 seconds) 2015-02-02T07:15:55Z Sgeo joined #scheme 2015-02-02T07:23:12Z frkout quit (Remote host closed the connection) 2015-02-02T07:23:38Z frkout joined #scheme 2015-02-02T07:25:52Z zadock quit (Quit: Leaving) 2015-02-02T07:38:58Z alexei quit (Ping timeout: 252 seconds) 2015-02-02T07:39:08Z Isp-sec joined #scheme 2015-02-02T08:13:58Z srenatus joined #scheme 2015-02-02T08:21:48Z zadock joined #scheme 2015-02-02T08:26:04Z mrowe_away is now known as mrowe 2015-02-02T08:31:39Z zwer_p quit (Ping timeout: 250 seconds) 2015-02-02T08:32:22Z msgodf joined #scheme 2015-02-02T08:32:31Z zadock quit (Ping timeout: 250 seconds) 2015-02-02T08:34:04Z zwer joined #scheme 2015-02-02T08:36:39Z agumonkey quit (Ping timeout: 264 seconds) 2015-02-02T08:38:24Z agumonkey joined #scheme 2015-02-02T08:44:31Z khisanth_ quit (Ping timeout: 256 seconds) 2015-02-02T08:44:36Z zwer quit (Read error: Connection reset by peer) 2015-02-02T08:45:12Z mrowe is now known as mrowe_away 2015-02-02T08:45:54Z zwer joined #scheme 2015-02-02T08:45:59Z khisanth_ joined #scheme 2015-02-02T08:46:58Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-02-02T08:55:26Z nee joined #scheme 2015-02-02T08:55:56Z khisanth_ quit (Ping timeout: 245 seconds) 2015-02-02T08:56:18Z onepdp joined #scheme 2015-02-02T08:58:49Z mrowe_away is now known as mrowe 2015-02-02T09:17:51Z twem2 joined #scheme 2015-02-02T09:20:33Z mrowe is now known as mrowe_away 2015-02-02T09:26:56Z redeemed joined #scheme 2015-02-02T09:46:50Z mumptai joined #scheme 2015-02-02T09:48:35Z ASau joined #scheme 2015-02-02T09:50:54Z robot-beethoven quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-02-02T10:03:01Z Isp-sec quit (Ping timeout: 245 seconds) 2015-02-02T10:08:56Z jgrant quit (Remote host closed the connection) 2015-02-02T10:09:19Z jgrant joined #scheme 2015-02-02T10:22:28Z vraid joined #scheme 2015-02-02T10:26:08Z mumptai quit (Remote host closed the connection) 2015-02-02T10:27:16Z adu quit (Quit: adu) 2015-02-02T10:28:24Z C_Keen is now known as C-Keen 2015-02-02T10:45:34Z fantazo joined #scheme 2015-02-02T10:56:07Z echo-area quit (Read error: Connection reset by peer) 2015-02-02T11:00:17Z redeemed quit (Ping timeout: 245 seconds) 2015-02-02T11:00:23Z nugnuts quit (Ping timeout: 240 seconds) 2015-02-02T11:02:28Z excelsior quit (Quit: Lost terminal) 2015-02-02T11:03:25Z khisanth_ joined #scheme 2015-02-02T11:09:39Z zadock joined #scheme 2015-02-02T11:13:05Z redeemed joined #scheme 2015-02-02T11:13:32Z nugnuts joined #scheme 2015-02-02T11:52:59Z PinealGlandOptic quit (Quit: leaving) 2015-02-02T11:54:29Z PinealGlandOptic joined #scheme 2015-02-02T11:55:20Z PinealGlandOptic: hi everyone. what is the best source code bases written in Scheme worth studying? 2015-02-02T12:02:38Z pjb: PinealGlandOptic: there are a lot of applications written in scheme. If you're interested in music, you may try to read OpenMusic (version 2 is written in a scheme implemented in Common Lisp, version 3 is written in the same scheme implemented in C++). 2015-02-02T12:02:48Z pjb: s/OpenMusic/CommonMusic/ sorry. 2015-02-02T12:02:53Z PinealGlandOptic: pjb: thanks! 2015-02-02T12:02:58Z pjb: http://commonmusic.sourceforge.net/ 2015-02-02T12:03:32Z pjb: Also, notice how writting the application in scheme allow it to change the native language easily :-) 2015-02-02T12:04:06Z pjb: PinealGlandOptic: another good example, would be edwin which is the emacs-like editor that comes with MIT-scheme. 2015-02-02T12:04:14Z PinealGlandOptic: pjb: oh, that's true. professional deformation 2015-02-02T12:06:54Z hellofunk joined #scheme 2015-02-02T12:20:14Z Steverman joined #scheme 2015-02-02T12:21:10Z PinealGlandOptic: but are there good libraries worth considering? for example, implementing sets? 2015-02-02T12:25:28Z fantazo quit (Quit: Verlassend) 2015-02-02T12:32:21Z tobik quit (Remote host closed the connection) 2015-02-02T12:34:08Z tobik joined #scheme 2015-02-02T12:50:37Z pjb: All the SRFI libraries. 2015-02-02T12:51:10Z enitiz joined #scheme 2015-02-02T12:51:45Z PinealGlandOptic: pjb: thanks again 2015-02-02T13:00:22Z hellofunk quit (Remote host closed the connection) 2015-02-02T13:00:55Z hellofunk joined #scheme 2015-02-02T13:04:24Z Steverman quit (Ping timeout: 245 seconds) 2015-02-02T13:04:32Z hiyosi joined #scheme 2015-02-02T13:05:23Z taspat` joined #scheme 2015-02-02T13:07:04Z enitiz quit (Quit: Leaving) 2015-02-02T13:07:17Z ijp joined #scheme 2015-02-02T13:14:46Z taspat joined #scheme 2015-02-02T13:21:19Z AkashicLegend joined #scheme 2015-02-02T13:22:40Z davexunit joined #scheme 2015-02-02T13:25:46Z taspat: hi, I've asked this in #racket but there is got no answer. Does anyone know why path is cannot be read and write? What is the reason for this? 2015-02-02T13:26:12Z wasamasa retries parsing the sentence 2015-02-02T13:26:22Z wasamasa gives up 2015-02-02T13:27:07Z taspat`: :) sorry i can't parse it either now that I see what i've written 2015-02-02T13:27:17Z wasamasa: lol 2015-02-02T13:27:35Z taspat`: so, in racket, path cannot be passed to read 2015-02-02T13:27:37Z taspat: why? 2015-02-02T13:27:45Z wasamasa: well, chances are that if you cannot explain it to an IRC channel, your computer will have difficulties Doing The Right Thing™ as well 2015-02-02T13:27:56Z pjb: because read uses a port, not a path. 2015-02-02T13:28:11Z pjb: Usually, you have a function named something like "open" to transform a path into a port. 2015-02-02T13:29:23Z pjb: taspat: said otherwise, it is usual (if not justified), that the notion of file has two states: open and closed, and that I/O can be performed only on open states. 2015-02-02T13:30:19Z pjb: I say that, because in some languages, there's no need to "open" a file before reading or writing to it. It is conceivable to implement such a concept in scheme, as a library. 2015-02-02T13:30:24Z pnkfelix quit (Quit: rcirc on GNU Emacs 24.3.92.1) 2015-02-02T13:31:33Z pjb: There are however some difficulties, in doing that: knowing when to flush and when to close the file (given that the underlying scheme or OS still has this notion). No choice is good in all cases. 2015-02-02T13:32:34Z alezost joined #scheme 2015-02-02T13:32:55Z taspat`: here is from the racket docs: 2015-02-02T13:32:56Z taspat: Notice that we will need to convert the path into a string. Why didn’t we just make the blog structure contain paths? Answer: They can’t be used with read and write. 2015-02-02T13:32:57Z taspat: 2015-02-02T13:32:57Z taspat: 2015-02-02T13:34:02Z pjb: scheme is a typed programming language: when a function expects a string, and not a path, then you cannot pass it a path. It's simple as that. 2015-02-02T13:35:20Z taspat quit (Read error: Connection reset by peer) 2015-02-02T13:35:20Z taspat` quit (Remote host closed the connection) 2015-02-02T13:36:00Z taspat joined #scheme 2015-02-02T13:36:56Z wasamasa: the way `read` is used is demonstrated shortly after that notice even 2015-02-02T13:36:59Z badkins joined #scheme 2015-02-02T13:38:50Z taspat: pjb: (struct blog (home posts)). Here home and posts can be any type i decide. Now, they choose home to be string(made from path) instead of path. 2015-02-02T13:38:55Z taspat: more from docs: 2015-02-02T13:38:58Z taspat: blog structures can now be read from the outside world with read and written to it with write. But we also need to make sure that everything inside a blog structure is also (transitively) marked as #:prefab. 2015-02-02T13:39:01Z fantazo joined #scheme 2015-02-02T13:39:14Z taspat: and then: 2015-02-02T13:39:15Z taspat: Why didn’t we just make the blog structure contain paths? Answer: They can’t be used with read and write. 2015-02-02T13:40:17Z pjb: I don't understand your question. What do you want to know? 2015-02-02T13:40:45Z vraid: pjb: he doesn't want to know, he's trolling 2015-02-02T13:41:27Z ecraven: taspat: is that racket? 2015-02-02T13:41:37Z taspat: yes 2015-02-02T13:41:46Z taspat: vraid, what are talking? 2015-02-02T13:41:47Z ecraven: taspat: you might have more luck in #racket then 2015-02-02T13:41:55Z turtleman_ joined #scheme 2015-02-02T13:41:57Z taspat: I didnt ecraven 2015-02-02T13:42:47Z taspat: pjb, you can build-path object. Then it appears that read function cannot read those objects 2015-02-02T13:42:55Z taspat: so we need to convert them to strings 2015-02-02T13:43:02Z pjb: So? 2015-02-02T13:43:24Z taspat: So is the reason for this? 2015-02-02T13:43:43Z vraid: taspat: paths don't convert to the same strings across platforms 2015-02-02T13:44:02Z LeoNerd: Surely: Because on every possible available OS to run these things on, files can't be read or written simply by path; you have to open them somehow 2015-02-02T13:44:02Z ecraven: taspat: there is no way to write paths portable on racket. thus you have to convert to strings (which aren't portable eitehr) 2015-02-02T13:44:09Z pjb: read comes from the standard (eg. r5rs). If read could accept path, then paths would have to be specified in the same standard. And then the r5rs standard would be bigger than 50 pages. 2015-02-02T13:44:25Z pjb: Already that people can't read those 50 pages, imagine if it was 1200 pages like CL standard! 2015-02-02T13:45:10Z taspat: pjb: ty! 2015-02-02T13:45:47Z pjb: perhaps r7rs introduced this notion of path in the standard? I've not read it yet. 2015-02-02T13:46:16Z taylanub quit (Disconnected by services) 2015-02-02T13:46:27Z ecraven: I don't think it does. the word "path" only occurs in different contexts in r7rs.pdf 2015-02-02T13:46:41Z taylanub joined #scheme 2015-02-02T13:51:19Z taspat quit (Ping timeout: 250 seconds) 2015-02-02T13:55:06Z ijp quit (Quit: brb founding new religion) 2015-02-02T13:58:55Z Kruppe quit (Quit: ZNC - http://znc.in) 2015-02-02T14:01:09Z Kruppe joined #scheme 2015-02-02T14:09:22Z pnkfelix joined #scheme 2015-02-02T14:13:20Z AkashicLegend quit (Quit: AkashicLegend) 2015-02-02T14:16:32Z hiroakip joined #scheme 2015-02-02T14:20:58Z khisanth_ quit (Ping timeout: 255 seconds) 2015-02-02T14:21:07Z zadock quit (Quit: Leaving) 2015-02-02T14:21:21Z civodul joined #scheme 2015-02-02T14:22:16Z stamourv joined #scheme 2015-02-02T14:23:33Z khisanth_ joined #scheme 2015-02-02T14:24:00Z khisanth_ is now known as Guest87392 2015-02-02T14:26:45Z jumblerg joined #scheme 2015-02-02T14:29:01Z hiroakip quit (Ping timeout: 250 seconds) 2015-02-02T14:39:12Z oleo joined #scheme 2015-02-02T14:41:07Z ecthiender quit (Quit: gotta go) 2015-02-02T14:42:39Z fsckd joined #scheme 2015-02-02T14:51:06Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-02-02T14:52:08Z hiroakip joined #scheme 2015-02-02T15:07:19Z turtleman_ quit (Ping timeout: 265 seconds) 2015-02-02T15:27:16Z uris77 joined #scheme 2015-02-02T15:37:12Z badkins quit 2015-02-02T15:39:03Z Guest87392 quit (Ping timeout: 264 seconds) 2015-02-02T15:39:55Z PinealGlandOptic quit (Quit: leaving) 2015-02-02T15:42:10Z Guest87392 joined #scheme 2015-02-02T15:48:53Z Guest87392 is now known as Khisanth 2015-02-02T15:49:18Z stamourv quit (Remote host closed the connection) 2015-02-02T15:49:33Z stamourv joined #scheme 2015-02-02T15:49:34Z stamourv quit (Changing host) 2015-02-02T15:49:34Z stamourv joined #scheme 2015-02-02T15:50:39Z Bahman quit (Ping timeout: 256 seconds) 2015-02-02T15:51:37Z Bahman joined #scheme 2015-02-02T15:59:49Z zadock joined #scheme 2015-02-02T16:06:27Z joneshf-laptop quit (Remote host closed the connection) 2015-02-02T16:13:13Z badkins joined #scheme 2015-02-02T16:14:35Z theseb joined #scheme 2015-02-02T16:15:52Z REPLeffect_ quit (Ping timeout: 272 seconds) 2015-02-02T16:23:46Z xyh quit (Remote host closed the connection) 2015-02-02T16:33:43Z b4284 quit (Quit: Konversation terminated!) 2015-02-02T16:38:05Z jgrant quit (Remote host closed the connection) 2015-02-02T16:38:33Z jgrant joined #scheme 2015-02-02T16:39:47Z nee quit (Remote host closed the connection) 2015-02-02T16:41:05Z jgrant quit (Remote host closed the connection) 2015-02-02T16:41:27Z jgrant joined #scheme 2015-02-02T16:42:55Z rtra quit (Ping timeout: 250 seconds) 2015-02-02T16:44:24Z rtra joined #scheme 2015-02-02T16:44:30Z fantazo quit (Quit: Verlassend) 2015-02-02T16:47:20Z jgrant quit (Remote host closed the connection) 2015-02-02T16:47:30Z badkins quit (Ping timeout: 252 seconds) 2015-02-02T16:47:43Z jgrant joined #scheme 2015-02-02T16:49:18Z vraid quit (Ping timeout: 265 seconds) 2015-02-02T16:55:14Z kbtr_ quit (Quit: leaving) 2015-02-02T16:55:33Z kbtr joined #scheme 2015-02-02T16:56:18Z visualshock joined #scheme 2015-02-02T16:58:13Z vanila joined #scheme 2015-02-02T16:58:50Z kbtr quit (Read error: Connection reset by peer) 2015-02-02T16:59:16Z kbtr joined #scheme 2015-02-02T17:02:54Z cocosp joined #scheme 2015-02-02T17:03:55Z ijp joined #scheme 2015-02-02T17:04:38Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-02-02T17:07:47Z tristero quit (Read error: Connection reset by peer) 2015-02-02T17:08:59Z Bahman quit (Quit: Ave atque vale) 2015-02-02T17:10:18Z msgodf quit (Ping timeout: 264 seconds) 2015-02-02T17:15:02Z daviid joined #scheme 2015-02-02T17:15:08Z jgrant quit (Remote host closed the connection) 2015-02-02T17:15:32Z jgrant joined #scheme 2015-02-02T17:17:53Z redeemed quit (Ping timeout: 240 seconds) 2015-02-02T17:21:49Z jgrant quit (Remote host closed the connection) 2015-02-02T17:22:27Z zadock quit (Quit: Leaving) 2015-02-02T17:23:53Z jgrant joined #scheme 2015-02-02T17:24:43Z vraid joined #scheme 2015-02-02T17:27:09Z adu joined #scheme 2015-02-02T17:37:52Z excelsior joined #scheme 2015-02-02T17:40:50Z gravicappa joined #scheme 2015-02-02T17:44:08Z Bahman joined #scheme 2015-02-02T17:51:06Z badkins joined #scheme 2015-02-02T17:57:53Z hiroakip quit (Ping timeout: 250 seconds) 2015-02-02T18:00:48Z alexei joined #scheme 2015-02-02T18:07:55Z jumblerg joined #scheme 2015-02-02T18:08:04Z bb010g quit (Quit: Connection closed for inactivity) 2015-02-02T18:08:46Z mumptai joined #scheme 2015-02-02T18:08:48Z joneshf-laptop joined #scheme 2015-02-02T18:10:56Z hiroakip joined #scheme 2015-02-02T18:11:16Z srenatus quit (Quit: Connection closed for inactivity) 2015-02-02T18:13:03Z mdln joined #scheme 2015-02-02T18:13:18Z mdln quit (Remote host closed the connection) 2015-02-02T18:14:30Z mdln joined #scheme 2015-02-02T18:16:58Z turtleman_ joined #scheme 2015-02-02T18:20:15Z alexei quit (Ping timeout: 256 seconds) 2015-02-02T18:20:16Z vraid quit (Ping timeout: 252 seconds) 2015-02-02T18:21:29Z uris77 quit (Quit: leaving) 2015-02-02T18:22:06Z theseb quit (Quit: Leaving) 2015-02-02T18:23:59Z visualshock quit (Quit: Leaving) 2015-02-02T18:25:03Z pnkfelix quit (Quit: rcirc on GNU Emacs 24.3.92.1) 2015-02-02T18:29:00Z psy_ quit (Read error: Connection reset by peer) 2015-02-02T18:29:18Z psy_ joined #scheme 2015-02-02T18:30:15Z fantazo joined #scheme 2015-02-02T18:32:33Z cocosp quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2015-02-02T18:34:01Z fridim_ joined #scheme 2015-02-02T18:36:03Z turtleman_ quit (Ping timeout: 244 seconds) 2015-02-02T19:00:44Z vraid joined #scheme 2015-02-02T19:05:51Z arrdem joined #scheme 2015-02-02T19:07:12Z tristero joined #scheme 2015-02-02T19:14:48Z alexei joined #scheme 2015-02-02T19:29:06Z turtleman_ joined #scheme 2015-02-02T19:34:02Z Vutral quit (Ping timeout: 245 seconds) 2015-02-02T19:36:21Z MichaelRaskin joined #scheme 2015-02-02T19:38:43Z uris77 joined #scheme 2015-02-02T19:44:58Z Bahman quit (Quit: Ave atque vale) 2015-02-02T19:45:02Z Vutral joined #scheme 2015-02-02T19:46:21Z alexei quit (Ping timeout: 245 seconds) 2015-02-02T19:48:01Z alexei joined #scheme 2015-02-02T19:48:42Z Khisanth quit (Ping timeout: 264 seconds) 2015-02-02T19:50:06Z Khisanth joined #scheme 2015-02-02T20:21:18Z vdamewood joined #scheme 2015-02-02T20:21:57Z excelsior quit (Quit: leaving) 2015-02-02T20:27:42Z civodul joined #scheme 2015-02-02T20:51:14Z boycottg00gle joined #scheme 2015-02-02T20:53:22Z badkins quit 2015-02-02T21:01:11Z enitiz joined #scheme 2015-02-02T21:02:09Z pnkfelix joined #scheme 2015-02-02T21:03:31Z gravicappa quit (Remote host closed the connection) 2015-02-02T21:10:54Z uris77 quit (Ping timeout: 264 seconds) 2015-02-02T21:16:02Z boycottg00gle quit (Remote host closed the connection) 2015-02-02T21:16:31Z hiyosi quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-02-02T21:16:36Z enitiz quit (Quit: Leaving) 2015-02-02T21:20:24Z enitiz joined #scheme 2015-02-02T21:21:02Z turtleman_ quit (Ping timeout: 252 seconds) 2015-02-02T21:26:53Z joneshf-laptop quit (Ping timeout: 250 seconds) 2015-02-02T21:31:07Z onepdp quit (Quit: onepdp) 2015-02-02T21:38:14Z jumblerg quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2015-02-02T21:47:25Z khisanth_ joined #scheme 2015-02-02T21:48:07Z Khisanth quit (Ping timeout: 250 seconds) 2015-02-02T21:49:03Z khisanth_ is now known as Khisanth 2015-02-02T21:51:12Z fantazo quit (Quit: Verlassend) 2015-02-02T21:51:37Z jumblerg joined #scheme 2015-02-02T21:58:02Z eli joined #scheme 2015-02-02T22:00:46Z mumptai_ joined #scheme 2015-02-02T22:01:22Z mumptai_ quit (Read error: Connection reset by peer) 2015-02-02T22:03:07Z acarrico quit (Ping timeout: 255 seconds) 2015-02-02T22:07:52Z fridim_ quit (Ping timeout: 240 seconds) 2015-02-02T22:11:54Z alezost quit (Quit: I use GNU Guix ) 2015-02-02T22:16:54Z daviid quit (Ping timeout: 245 seconds) 2015-02-02T22:16:55Z acarrico joined #scheme 2015-02-02T22:18:56Z hiroakip quit (Ping timeout: 265 seconds) 2015-02-02T22:22:01Z acarrico quit (Ping timeout: 264 seconds) 2015-02-02T22:22:37Z mumptai quit (Quit: Verlassend) 2015-02-02T22:24:54Z hiroakip joined #scheme 2015-02-02T22:28:30Z acarrico joined #scheme 2015-02-02T22:38:57Z civodul quit (Quit: ERC Version 5.3 (IRC client for Emacs)) 2015-02-02T22:41:09Z metaf5 joined #scheme 2015-02-02T22:41:13Z enitiz quit (Ping timeout: 245 seconds) 2015-02-02T22:47:27Z adu quit (Quit: adu) 2015-02-02T22:53:53Z alexei quit (Ping timeout: 240 seconds) 2015-02-02T22:56:11Z mrowe_away is now known as mrowe 2015-02-02T22:57:18Z cdidd quit (Remote host closed the connection) 2015-02-02T23:00:33Z cdidd joined #scheme 2015-02-02T23:02:25Z enitiz joined #scheme 2015-02-02T23:06:21Z hellofunk quit (Ping timeout: 245 seconds) 2015-02-02T23:20:36Z AkashicLegend joined #scheme 2015-02-02T23:22:28Z enitiz quit (Ping timeout: 245 seconds) 2015-02-02T23:26:49Z ijp quit (Ping timeout: 255 seconds) 2015-02-02T23:29:05Z adu joined #scheme 2015-02-02T23:38:53Z hiyosi joined #scheme 2015-02-02T23:46:42Z vdamewood quit (Quit: ["Textual IRC Client: www.textualapp.com"]) 2015-02-02T23:51:21Z rtra quit (Ping timeout: 245 seconds)