00:09:12 typeclassy [~user@ool-3f8ffbbb.dyn.optonline.net] has joined #scheme 00:09:26 bipt [~bpt@cpe-173-095-170-102.nc.res.rr.com] has joined #scheme 00:14:44 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 00:14:44 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Changing host] 00:14:44 jeapostrophe [~jay@racket/jeapostrophe] has joined #scheme 00:19:07 -!- agumonkey [~agu@52.158.70.86.rev.sfr.net] has quit [Ping timeout: 256 seconds] 00:24:27 -!- avery [~avery@host-74-211-18-15.beyondbb.com] has quit [Quit: avery] 00:30:43 langmartin [~user@host-68-169-154-130.WISOLT2.epbfi.com] has joined #scheme 00:39:06 -!- jonrafkind [~jon@racket/jonrafkind] has quit [Ping timeout: 264 seconds] 00:50:42 -!- bjz_ [~brendanza@125.253.99.68] has quit [Ping timeout: 240 seconds] 00:50:53 bjz [~brendanza@125.253.99.68] has joined #scheme 00:53:04 -!- langmartin [~user@host-68-169-154-130.WISOLT2.epbfi.com] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 01:05:23 -!- bipt [~bpt@cpe-173-095-170-102.nc.res.rr.com] has quit [Ping timeout: 260 seconds] 01:14:06 Nisstyre-laptop [~yours@oftn/member/Nisstyre] has joined #scheme 01:18:10 -!- miql [~miql@ip68-98-19-126.ph.ph.cox.net] has quit [Ping timeout: 276 seconds] 01:20:37 -!- joneshf-laptop [~joneshf@mail.concordusapps.com] has quit [Ping timeout: 248 seconds] 01:22:10 -!- offby1` is now known as offby1 01:22:11 -!- offby1 [~user@ec2-50-18-28-110.us-west-1.compute.amazonaws.com] has quit [Changing host] 01:22:11 offby1 [~user@pdpc/supporter/monthlybyte/offby1] has joined #scheme 01:29:58 BW^- [~Miranda@5-15-168-222.residential.rdsnet.ro] has joined #scheme 01:30:14 guys, on the topic of URI handling: 01:30:25 I have a URI to string parser that urldecodes the URI path while my URI to string serializer does *not* urlencode 01:30:42 this recently came to my attention, as it leads to wild bugs; 01:30:46 any thoughts on this topic? 01:31:07 it seems documented on the web so will check it out, though am happy to kind of bring it to attention here. 01:34:49 -!- Nisstyre-laptop is now known as Nisstyre 01:35:43 bipt [~bpt@cpe-173-095-170-102.nc.res.rr.com] has joined #scheme 01:35:53 URI to string parser? 01:36:43 riastradh: ah sorry - string to URI parser/deserializer I meant 01:36:56 hm, possibly i should look up Racket's code repo for this 01:40:06 Note that URIs are not a sensible container format for a data structure. For example, if you encode a key/value list as a query string, and then pct-encode that to stuff it into a URI, you end up with perfectly sensible double-quotation of % that bollocksed up applications barf on because the whole design was accrued from the way that mountains of Perl duct tape developed the web in the nineties. 01:43:15 riastradth: mhm. what i have right now is just an issue of information destruction: 01:43:38 riastradth: my path contains some urlencoded sequences ("%12%34" etc.) and the http-client takes a uri object and then when writing a HTTP request, 01:44:00 riastradth: it uses effectively uri->string , which does *not* urlencode back the URI path 01:44:12 the http client uses an 8bit byte width data channel 01:44:21 so this way, the unicode characters are destroyed 01:44:25 I'm missing a lot of context. Please give some hints about context and some examples of what's going on. 01:45:05 riastradh: (http-get "http://host/%C3%AB") , this is what's going on :) 01:45:46 riastradh: http-get parses this using string->uri to: # 01:45:49 Examples of input, transformation, bad output, system response...? 01:46:42 (or, 1. exactly what you typed, 2. exactly what you saw, and 3. exactly what you expected to see) 01:46:49 riastradh: this works great up to the point where http-get writes the following to the established HTTP TCP connection: "GET /\353 HTTP/1.1\r\n" 01:47:08 Sounds like Racket's STRING->URI is hosed. 01:47:11 correction - "GET \353 HTTP/1.1\r\n" 01:47:20 riastradh: i'm not in Racket! 01:47:26 What are you in? 01:47:38 riastradh: this is a gambit library. i just want to get clear about how to implement this the right way 01:47:39 Sorry, you mentioned Racket, so I thought that's what you were using. 01:48:01 np 01:48:07 i'm in a newer version of uri.scm of https://github.com/pereckerdal/sack/tree/master/src 01:48:16 though with regard to this functionality it's the same. 01:48:17 Well, the right way, or the way that will maximize probability of working? 01:48:42 the way that maximizes probability of working 01:48:54 riastradh: what's the URI to the sourcecode of Racket's URI <-> string routines? 01:48:58 as to get inspiration there 01:49:00 No idea. 01:49:04 The right way is whatever does. 01:49:11 mhm wait maybehttps://github.com/plt/racket/tree/master/collects/net 01:49:14 But that doesn't work. 01:49:26 riastradh: what does not work? 01:51:29 Here are two possible results from trying to parse the query string in the result of (string->uri "?x=y%26a=b&p=q"): 01:51:38 (("x" . "y") ("a" . "b") ("p" . "q")) 01:51:48 (("x" . "y&a=b") ("p" . "q")) 01:52:11 The first is the right thing -- URI pct-encoding is at a layer independent of query string parsing (or, application/x-www-form-urlencoded). 01:52:18 The second is how the world behaves. 01:52:42 (STRING->URI there is whatever you find in MIT Scheme or in .) 01:53:09 riastradh: aha. my issue is about path handling, not the query part 01:53:18 currently me looking for the code that processes the path part of the URI on string to URI object deserialization, and that encodes the path part of the URI on URI obejct to string serialization. 01:53:30 in http://mumble.net/~campbell/darcs/schemantic-web/uri.scm 01:53:42 Path handling is less bollocksed up. 01:54:00 path serialization seems to be in |write-path|: (write-pct-encoded (car segments) uri-char-set:pchar output-port) , which is done *per segment* (as not to urlencode the slashes i'd guess) 01:54:00 But if you're doing any UTF-8 encoding or decoding in the URI library, that's going to screw you up. 01:54:32 riastradh: i do. it's fine if this screws up something - utf8 is standard enough and there's a extra arguments to make it go with 8bit otherwise. 01:54:36 URIs deal in sequences of octets, not in valid UTF-8 sequences or in sequences of Unicode code points. 01:54:41 ah 01:54:46 there's no plaintext utf8 in there 01:55:04 but, there can be utf8-urlencoded sequences, such as %C3%AB 01:55:06 So if your URI parser or unparser is doing any UTF-8 decoding automagically -- it's wrong, and it won't interoperate with the world. 01:55:26 No, the UTF-8 encoding and decoding has to happen at another level. 01:57:39 -!- BossKonaSegwaY [~Michael@72.49.0.102] has left #scheme 01:58:15 `http://mumble.net/~campbell/%C3' is a valid URI even though the last path component, once decoded, is not a valid UTF-8 sequence. 01:58:23 riastradh: while i get your point, i'll keep it for conveniency as it works for all the reasonable usecases. 01:58:32 mm i agree. 01:58:42 No, it doesn't! You've just seen exactly what goes wrong with this scheme. 01:58:55 Move the UTF-8 encoding and decoding to another level and your HTTP problem will go away. 02:00:40 riastradh: i'm in a use context where convenience for reasonable usecases can be prioritized. 02:01:20 riastradh: i checked racket's code now and it does not touch urlencoding regards in the url<->string routines indeed. 02:03:55 If you want to make UTF-8 encoding and decoding convenient, add convenient ENCODE-UTF8 and DECODE-UTF8 routines. 02:09:07 -!- Triclops256|away is now known as Triclops256 02:12:07 -!- typeclassy [~user@ool-3f8ffbbb.dyn.optonline.net] has quit [Ping timeout: 260 seconds] 02:12:34 miql [~miql@ip68-98-19-126.ph.ph.cox.net] has joined #scheme 02:16:58 francis_wolke [4441a942@gateway/web/cgi-irc/kiwiirc.com/ip.68.65.169.66] has joined #scheme 02:17:35 -!- francis_wolke [4441a942@gateway/web/cgi-irc/kiwiirc.com/ip.68.65.169.66] has quit [Client Quit] 02:22:15 -!- miql [~miql@ip68-98-19-126.ph.ph.cox.net] has quit [Ping timeout: 252 seconds] 02:23:50 -!- Triclops256 is now known as Triclops256|away 02:27:14 Gooder [~user@33.155.200.192.client.dyn.strong-in144.as13926.net] has joined #scheme 02:27:31 miql [~miql@ip68-98-19-126.ph.ph.cox.net] has joined #scheme 02:30:09 yacks [~py@180.151.36.168] has joined #scheme 02:48:53 weie [~eie@softbank221078042071.bbtec.net] has joined #scheme 02:49:16 jonrafkind [~jon@racket/jonrafkind] has joined #scheme 02:53:08 RITRedbeard [~t410@c-68-37-165-37.hsd1.nj.comcast.net] has joined #scheme 02:57:13 -!- miql [~miql@ip68-98-19-126.ph.ph.cox.net] has quit [Ping timeout: 256 seconds] 02:57:52 -!- brianloveswords [~brianlove@li124-154.members.linode.com] has quit [Excess Flood] 02:59:17 brianloveswords [~brianlove@li124-154.members.linode.com] has joined #scheme 03:00:21 -!- cibs [~cibs@118-163-170-73.HINET-IP.hinet.net] has quit [Quit: leaving] 03:05:34 -!- toekutr [~user@50-0-51-11.dsl.static.sonic.net] has quit [Ping timeout: 256 seconds] 03:13:57 -!- amoe_ [~amoe@host-2-96-235-48.as13285.net] has quit [Ping timeout: 252 seconds] 03:21:50 -!- juxovec [~juxovec@88.103.13.78] has quit [Remote host closed the connection] 03:25:45 amoe [~amoe@host-92-24-171-187.ppp.as43234.net] has joined #scheme 03:26:07 avery [~avery@host-74-211-18-15.beyondbb.com] has joined #scheme 03:26:46 toekutr [~user@50-0-51-11.dsl.static.sonic.net] has joined #scheme 03:26:57 -!- tcsc [~tcsc@24-177-92-172.dhcp.nwtn.ct.charter.com] has quit [Quit: computer sleeping] 03:27:33 -!- toekutr [~user@50-0-51-11.dsl.static.sonic.net] has left #scheme 03:28:33 ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has joined #scheme 03:29:33 -!- BW^- [~Miranda@5-15-168-222.residential.rdsnet.ro] has quit [Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org] 03:31:44 -!- jeapostrophe [~jay@racket/jeapostrophe] has quit [Ping timeout: 245 seconds] 03:32:58 miql [~miql@ip68-98-19-126.ph.ph.cox.net] has joined #scheme 03:40:04 -!- miql [~miql@ip68-98-19-126.ph.ph.cox.net] has quit [Ping timeout: 245 seconds] 03:44:54 -!- avery [~avery@host-74-211-18-15.beyondbb.com] has quit [Quit: avery] 03:46:11 avery [~avery@host-74-211-18-15.beyondbb.com] has joined #scheme 03:46:41 -!- wbooze [~wbooze@xdsl-78-35-130-152.netcologne.de] has quit [Ping timeout: 248 seconds] 03:48:29 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Remote host closed the connection] 03:51:24 juxovec [~juxovec@88.103.13.78] has joined #scheme 03:54:13 -!- pierpa [~user@host117-20-dynamic.53-79-r.retail.telecomitalia.it] has quit [Ping timeout: 248 seconds] 03:57:10 preflex_ [~preflex@unaffiliated/mauke/bot/preflex] has joined #scheme 03:58:08 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has quit [Ping timeout: 256 seconds] 03:58:13 -!- preflex_ is now known as preflex 04:12:31 abhinav [~abhinav@nat/cisco/x-nxojurwgthuxwmxv] has joined #scheme 04:19:23 tcsc [~tcsc@24-177-92-172.dhcp.nwtn.ct.charter.com] has joined #scheme 04:20:04 -!- juxovec [~juxovec@88.103.13.78] has quit [Remote host closed the connection] 04:21:54 -!- tcsc [~tcsc@24-177-92-172.dhcp.nwtn.ct.charter.com] has quit [Client Quit] 04:34:36 trusktr [~trusktr@130.86.99.226] has joined #scheme 04:34:51 REPLeffect [~REPLeffec@69.54.115.254] has joined #scheme 04:35:02 -!- amoe [~amoe@host-92-24-171-187.ppp.as43234.net] has quit [Read error: Connection reset by peer] 04:36:03 amoe [~amoe@host-78-147-162-215.as13285.net] has joined #scheme 04:42:38 dnolen` [~user@80.232.109.46] has joined #scheme 04:48:17 -!- jao [~jao@pdpc/supporter/professional/jao] has quit [Ping timeout: 256 seconds] 04:49:05 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 05:06:01 amoe_ [~amoe@host-78-147-151-75.as13285.net] has joined #scheme 05:09:10 -!- amoe [~amoe@host-78-147-162-215.as13285.net] has quit [Ping timeout: 252 seconds] 05:14:17 weie_ [~eie@softbank221078042071.bbtec.net] has joined #scheme 05:15:06 -!- weie [~eie@softbank221078042071.bbtec.net] has quit [Ping timeout: 264 seconds] 05:15:45 juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has joined #scheme 05:20:20 -!- juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has quit [Read error: Connection reset by peer] 05:22:01 sonstwo [~rage@unaffiliated/ffs] has joined #scheme 05:22:32 -!- rage_ [~rage@unaffiliated/ffs] has quit [Ping timeout: 260 seconds] 05:24:26 juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has joined #scheme 05:25:09 -!- juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has quit [Read error: Connection reset by peer] 05:25:52 juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has joined #scheme 05:34:07 juxovec_ [~juxovec@ip-37-188-229-120.eurotel.cz] has joined #scheme 05:35:01 -!- juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has quit [Ping timeout: 252 seconds] 05:50:14 -!- hiroakip [~hiroaki@77-20-192-229-dynip.superkabel.de] has quit [Quit: Ex-Chat] 05:51:09 rage_ [~rage@unaffiliated/ffs] has joined #scheme 05:51:45 -!- sonstwo [~rage@unaffiliated/ffs] has quit [Ping timeout: 256 seconds] 05:52:51 -!- amoe_ [~amoe@host-78-147-151-75.as13285.net] has quit [Ping timeout: 240 seconds] 05:54:55 amoe [~amoe@host-78-147-149-235.as13285.net] has joined #scheme 05:58:07 gravicappa [~gravicapp@ppp91-77-160-184.pppoe.mtu-net.ru] has joined #scheme 06:08:04 Gooder` [~user@33.155.200.192.client.dyn.strong-in144.as13926.net] has joined #scheme 06:08:38 rszeno [~rszeno@79.114.106.58] has joined #scheme 06:10:29 -!- Gooder [~user@33.155.200.192.client.dyn.strong-in144.as13926.net] has quit [Read error: Connection reset by peer] 06:11:24 -!- ecloud_ [~quassel@cm-84.208.147.184.getinternet.no] has quit [Quit: No Ping reply in 180 seconds.] 06:11:30 ecloud_ [~quassel@cm-84.208.147.184.getinternet.no] has joined #scheme 06:11:45 -!- juxovec_ [~juxovec@ip-37-188-229-120.eurotel.cz] has quit [Ping timeout: 248 seconds] 06:15:42 -!- Tanami_ [~carnage@9ch.in] has quit [Ping timeout: 264 seconds] 06:22:55 -!- ehaliewicz [~user@50-0-51-11.dsl.static.sonic.net] has quit [Ping timeout: 256 seconds] 06:23:40 Tanami_ [~carnage@9ch.in] has joined #scheme 06:24:21 jewel [~jewel@105-237-24-43.access.mtnbusiness.co.za] has joined #scheme 06:27:34 -!- jonrafkind [~jon@racket/jonrafkind] has quit [Ping timeout: 276 seconds] 06:28:21 -!- dnolen` [~user@80.232.109.46] has quit [Ping timeout: 248 seconds] 06:29:57 snowylike [~sn@91-67-171-156-dynip.superkabel.de] has joined #scheme 06:38:25 Oejet [~Oejet@unaffiliated/oejet] has joined #scheme 06:58:15 civodul [~user@193.50.110.186] has joined #scheme 06:58:49 -!- trusktr [~trusktr@130.86.99.226] has quit [Ping timeout: 245 seconds] 07:10:31 hkBst [~marijn@79.170.210.172] has joined #scheme 07:10:31 -!- hkBst [~marijn@79.170.210.172] has quit [Changing host] 07:10:31 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 07:26:08 juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has joined #scheme 07:34:55 Gooder`` [~user@218.69.12.194] has joined #scheme 07:35:49 agumonkey [~agu@52.158.70.86.rev.sfr.net] has joined #scheme 07:39:43 -!- Gooder` [~user@33.155.200.192.client.dyn.strong-in144.as13926.net] has quit [Ping timeout: 276 seconds] 07:40:13 -!- robot-beethoven [~user@c-24-118-142-0.hsd1.mn.comcast.net] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 07:43:24 przl [~przlrkt@46.231.183.162] has joined #scheme 07:53:05 -!- avery [~avery@host-74-211-18-15.beyondbb.com] has quit [Quit: avery] 07:55:57 -!- kobain [~kobian@unaffiliated/kobain] has quit [Quit: l'unica verità.. è la morte stessa!] 08:10:27 cibs [~cibs@118-163-170-73.HINET-IP.hinet.net] has joined #scheme 08:31:18 -!- Tanami_ [~carnage@9ch.in] has quit [Remote host closed the connection] 08:33:42 fzappa [~user@int.emakina.nl] has joined #scheme 08:36:25 Gooder``` [~user@27.155.200.192.client.dyn.strong-in144.as13926.net] has joined #scheme 08:40:18 -!- Gooder`` [~user@218.69.12.194] has quit [Ping timeout: 264 seconds] 08:44:30 -!- yacks [~py@180.151.36.168] has quit [Ping timeout: 264 seconds] 08:44:46 -!- ski [~na@t-2020-07.studat.chalmers.se] has quit [Quit: Lost terminal] 08:49:29 yacks [~py@180.151.36.168] has joined #scheme 08:53:44 dsp [~dsp@host86-148-151-91.range86-148.btcentralplus.com] has joined #scheme 09:03:28 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Ping timeout: 252 seconds] 09:05:12 -!- Nisstyre [~yours@oftn/member/Nisstyre] has quit [Ping timeout: 262 seconds] 09:09:14 hkBst [~marijn@79.170.210.172] has joined #scheme 09:09:15 -!- hkBst [~marijn@79.170.210.172] has quit [Changing host] 09:09:15 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 09:10:57 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Excess Flood] 09:11:46 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 09:12:48 -!- Gooder``` [~user@27.155.200.192.client.dyn.strong-in144.as13926.net] has quit [Remote host closed the connection] 09:22:31 weie [~eie@softbank221078042071.bbtec.net] has joined #scheme 09:22:33 -!- juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has quit [Read error: Connection reset by peer] 09:23:45 -!- weie_ [~eie@softbank221078042071.bbtec.net] has quit [Ping timeout: 248 seconds] 09:27:32 -!- dsp [~dsp@host86-148-151-91.range86-148.btcentralplus.com] has quit [Ping timeout: 240 seconds] 09:32:32 dsp [~dsp@host86-148-151-91.range86-148.btcentralplus.com] has joined #scheme 09:38:54 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has quit [Read error: Connection reset by peer] 09:41:44 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 09:45:21 dnolen` [~user@80.232.109.46] has joined #scheme 09:46:11 -!- abhinav [~abhinav@nat/cisco/x-nxojurwgthuxwmxv] has quit [Ping timeout: 260 seconds] 09:52:18 szablica [~karol@89-67-52-124.dynamic.chello.pl] has joined #scheme 09:54:18 -!- szablica [~karol@89-67-52-124.dynamic.chello.pl] has quit [Quit: WeeChat 0.4.1] 09:54:35 -!- dnolen` [~user@80.232.109.46] has quit [Ping timeout: 260 seconds] 10:02:38 abhinav [~abhinav@nat/cisco/x-jwvomfjzqqdzbmyp] has joined #scheme 10:13:04 -!- abhinav [~abhinav@nat/cisco/x-jwvomfjzqqdzbmyp] has quit [Quit: Ex-Chat] 10:28:57 Petrus [~petrus@unaffiliated/petrus] has joined #scheme 10:30:17 pt [~pt@84.114.230.154] has joined #scheme 10:32:37 -!- pyro- [~pyro@unaffiliated/purplepanda] has quit [Read error: Connection reset by peer] 10:32:53 pyro- [~pyro@chopstick.dcollins.info] has joined #scheme 10:33:20 juxovec [~juxovec@host-77-236-207-9.blue4.cz] has joined #scheme 10:41:59 -!- Petrus [~petrus@unaffiliated/petrus] has left #scheme 11:09:05 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Ping timeout: 256 seconds] 11:09:12 hkBst_ [~marijn@79.170.210.172] has joined #scheme 11:09:13 -!- hkBst_ [~marijn@79.170.210.172] has quit [Changing host] 11:09:13 hkBst_ [~marijn@gentoo/developer/hkbst] has joined #scheme 11:23:08 miql [~miql@ip68-98-19-126.ph.ph.cox.net] has joined #scheme 11:30:42 -!- snowylike [~sn@91-67-171-156-dynip.superkabel.de] has quit [Quit: Nettalk6 - www.ntalk.de] 11:31:53 dnolen` [~user@109-74-176-162.biz.static.gigbone.net] has joined #scheme 11:36:17 amgarchIn9 [~amgarchin@theo1.theochem.tu-muenchen.de] has joined #scheme 11:37:42 -!- dnolen` [~user@109-74-176-162.biz.static.gigbone.net] has quit [Ping timeout: 240 seconds] 11:40:18 edw [~edw@207.239.61.34] has joined #scheme 11:51:01 -!- dsp [~dsp@host86-148-151-91.range86-148.btcentralplus.com] has quit [Ping timeout: 240 seconds] 12:06:59 MrFahrenheit [~RageOfTho@77.221.25.95] has joined #scheme 12:16:02 pnkfelix [~user@mozilla.vlan502.asr1.cdg2.gblx.net] has joined #scheme 12:25:58 -!- pt [~pt@84.114.230.154] has quit [Quit: leaving] 12:31:56 Probably a very stupid question, but I was just looking at setting a lists cdr to itself, it doesn't seem like a bad way to create value generators similar to how cycle() works in python, is it really bad practice to do something like that? 12:32:03 (Very new to scheme here) 12:35:50 Cyclic lists are fine 12:36:24 r7 even introduces a notation for them; #1=('item #1#) 12:36:30 err.. 12:36:35 r7 even introduces a notation for them; #1=('item . #1#) 12:36:45 oh interesting 12:36:52 thank you LeoNerd 12:37:09 Before that in r5 you'll have to set-cdr! 12:39:52 -!- acarrico [~acarrico@richmon2-dhcp-43.greenmountainaccess.net] has quit [Ping timeout: 246 seconds] 12:52:39 -!- miql [~miql@ip68-98-19-126.ph.ph.cox.net] has quit [Ping timeout: 256 seconds] 13:15:24 -!- bipt [~bpt@cpe-173-095-170-102.nc.res.rr.com] has quit [Ping timeout: 264 seconds] 13:27:20 pjb- [~pjb-@LPuteaux-156-15-31-124.w82-127.abo.wanadoo.fr] has joined #scheme 13:29:57 Petrus [~petrus@unaffiliated/petrus] has joined #scheme 13:31:02 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has quit [Remote host closed the connection] 13:33:49 wbooze [~wbooze@xdsl-87-79-250-69.netcologne.de] has joined #scheme 13:38:05 acarrico [~acarrico@richmon2-dhcp-43.greenmountainaccess.net] has joined #scheme 13:39:02 -!- pjb- [~pjb-@LPuteaux-156-15-31-124.w82-127.abo.wanadoo.fr] has quit [Quit: from my iPad] 13:44:55 -!- hkBst_ [~marijn@gentoo/developer/hkbst] has quit [Ping timeout: 256 seconds] 13:45:45 hkBst_ [~marijn@gentoo/developer/hkbst] has joined #scheme 14:00:29 -!- Petrus [~petrus@unaffiliated/petrus] has quit [Quit: WeeChat 0.4.1] 14:03:55 pjb- [~pjb-@LPuteaux-156-15-31-124.w82-127.abo.wanadoo.fr] has joined #scheme 14:07:27 hkBst__ [~marijn@79.170.210.172] has joined #scheme 14:07:54 -!- hkBst_ [~marijn@gentoo/developer/hkbst] has quit [Read error: Connection reset by peer] 14:07:56 edw_ [~edw@207.239.61.34] has joined #scheme 14:09:39 -!- hkBst__ [~marijn@79.170.210.172] has quit [Excess Flood] 14:10:02 hkBst__ [~marijn@79.170.210.172] has joined #scheme 14:10:21 dnolen` [~user@80.232.109.46] has joined #scheme 14:10:48 -!- edw [~edw@207.239.61.34] has quit [Ping timeout: 260 seconds] 14:13:25 -!- pjb- [~pjb-@LPuteaux-156-15-31-124.w82-127.abo.wanadoo.fr] has quit [Quit: from my iPad] 14:16:48 -!- edw_ [~edw@207.239.61.34] has quit [Quit: Computer has gone to sleep.] 14:17:38 edw [~edw@207.239.61.34] has joined #scheme 14:19:49 Riastradh: is there any way it would be possible to add source annotations to code compiled (or interpreted) by MIT/GNU Scheme, so that M-. would work? Store the file and line number of each function etc. somehow in the scode? 14:21:47 permagreen [~donovan@204-195-27-175.wavecable.com] has joined #scheme 14:22:53 It would be a big project. You could use a heuristic approach, though -- look at the compiled code debugging data for a file name, and grep through there. 14:24:05 Riastradh: how do I get at that compiled code debugging data? 14:24:54 miql [~miql@ip68-98-19-126.ph.ph.cox.net] has joined #scheme 14:25:43 acarrico1 [~acarrico@richmon2-dhcp-43.greenmountainaccess.net] has joined #scheme 14:26:55 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 14:28:45 Poke around in runtime/infutl.scm and runtime/infstr.scm. 14:28:49 -!- acarrico [~acarrico@richmon2-dhcp-43.greenmountainaccess.net] has quit [Ping timeout: 248 seconds] 14:29:51 Riastradh: thanks 14:32:15 -!- hkBst__ [~marijn@79.170.210.172] has quit [Read error: Connection reset by peer] 14:32:37 hkBst__ [~marijn@79.170.210.172] has joined #scheme 14:37:02 newtothis [~chatzilla@77.127.4.205] has joined #scheme 14:39:28 jeapostrophe [~jay@128.187.179.63] has joined #scheme 14:39:28 -!- jeapostrophe [~jay@128.187.179.63] has quit [Changing host] 14:39:28 jeapostrophe [~jay@racket/jeapostrophe] has joined #scheme 14:42:32 -!- Oejet [~Oejet@unaffiliated/oejet] has quit [Quit: Leaving.] 14:46:58 tcsc [~tcsc@24-177-92-172.dhcp.nwtn.ct.charter.com] has joined #scheme 14:52:08 -!- fzappa [~user@int.emakina.nl] has quit [Remote host closed the connection] 14:53:04 edw_ [~edw@207.239.61.34] has joined #scheme 14:55:10 -!- edw [~edw@207.239.61.34] has quit [Ping timeout: 261 seconds] 14:56:01 -!- hkBst__ [~marijn@79.170.210.172] has quit [Quit: Konversation terminated!] 15:01:04 avery [~avery@host-74-211-18-15.beyondbb.com] has joined #scheme 15:19:25 -!- dnolen` [~user@80.232.109.46] has quit [Ping timeout: 256 seconds] 15:23:11 kobain [~kobian@unaffiliated/kobain] has joined #scheme 15:23:55 -!- rszeno [~rszeno@79.114.106.58] has quit [Quit: Leaving.] 15:25:49 -!- avery [~avery@host-74-211-18-15.beyondbb.com] has quit [Quit: avery] 15:26:57 rszeno [~rszeno@79.114.106.58] has joined #scheme 15:27:28 -!- juxovec [~juxovec@host-77-236-207-9.blue4.cz] has quit [Remote host closed the connection] 15:30:43 juxovec [~juxovec@host-77-236-207-9.blue4.cz] has joined #scheme 15:30:50 jao [~jao@118.Red-83-41-22.dynamicIP.rima-tde.net] has joined #scheme 15:30:53 -!- jao [~jao@118.Red-83-41-22.dynamicIP.rima-tde.net] has quit [Changing host] 15:30:53 jao [~jao@pdpc/supporter/professional/jao] has joined #scheme 15:39:31 -!- jeapostrophe [~jay@racket/jeapostrophe] has quit [Ping timeout: 264 seconds] 15:42:55 -!- jao [~jao@pdpc/supporter/professional/jao] has quit [Remote host closed the connection] 15:43:23 jao [~jao@118.Red-83-41-22.dynamicIP.rima-tde.net] has joined #scheme 15:43:26 -!- jao [~jao@118.Red-83-41-22.dynamicIP.rima-tde.net] has quit [Changing host] 15:43:26 jao [~jao@pdpc/supporter/professional/jao] has joined #scheme 15:43:49 joneshf-laptop [~joneshf@c-98-208-36-36.hsd1.ca.comcast.net] has joined #scheme 15:49:27 -!- _1126 [~1126@saturn.lileth.net] has quit [Ping timeout: 256 seconds] 15:52:47 jonrafkind [~jon@racket/jonrafkind] has joined #scheme 15:54:08 -!- juxovec [~juxovec@host-77-236-207-9.blue4.cz] has quit [Remote host closed the connection] 15:59:39 -!- miql [~miql@ip68-98-19-126.ph.ph.cox.net] has quit [Ping timeout: 245 seconds] 16:01:09 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 240 seconds] 16:04:23 -!- civodul [~user@193.50.110.186] has quit [Remote host closed the connection] 16:05:39 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 16:15:29 -!- przl [~przlrkt@46.231.183.162] has quit [Ping timeout: 248 seconds] 16:16:25 miql [~miql@ip68-98-19-126.ph.ph.cox.net] has joined #scheme 16:16:47 -!- REPLeffect [~REPLeffec@69.54.115.254] has quit [Quit: bye] 16:18:31 francis_wolke [~Adium@12.250.97.26] has joined #scheme 16:21:01 -!- amgarchIn9 [~amgarchin@theo1.theochem.tu-muenchen.de] has quit [Ping timeout: 276 seconds] 16:24:44 juxovec [~juxovec@host-77-236-207-9.blue4.cz] has joined #scheme 16:25:27 tupi [~user@186.205.68.86] has joined #scheme 16:27:29 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 240 seconds] 16:30:15 -!- tupi [~user@186.205.68.86] has quit [Ping timeout: 256 seconds] 16:30:30 tupi [~user@186.205.68.86] has joined #scheme 16:33:06 -!- rszeno [~rszeno@79.114.106.58] has quit [Ping timeout: 252 seconds] 16:35:12 -!- juxovec [~juxovec@host-77-236-207-9.blue4.cz] has quit [Ping timeout: 256 seconds] 16:36:42 -!- pnkfelix [~user@mozilla.vlan502.asr1.cdg2.gblx.net] has quit [Ping timeout: 264 seconds] 16:37:29 -!- brianloveswords [~brianlove@li124-154.members.linode.com] has quit [Excess Flood] 16:39:19 brianloveswords [~brianlove@li124-154.members.linode.com] has joined #scheme 16:50:09 -!- microcode [~microcode@bas1-toronto04-1176393241.dsl.bell.ca] has quit [Ping timeout: 248 seconds] 16:52:05 hiroakip [~hiroaki@77-20-192-229-dynip.superkabel.de] has joined #scheme 16:54:08 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 16:57:34 amgarchIn9 [~amgarchin@p4FD63EC9.dip0.t-ipconnect.de] has joined #scheme 17:03:20 jeapostrophe [~jay@128.187.179.63] has joined #scheme 17:03:20 -!- jeapostrophe [~jay@128.187.179.63] has quit [Changing host] 17:03:20 jeapostrophe [~jay@racket/jeapostrophe] has joined #scheme 17:06:09 -!- dsmith [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has quit [Ping timeout: 248 seconds] 17:07:12 -!- weie [~eie@softbank221078042071.bbtec.net] has quit [Read error: Connection reset by peer] 17:09:34 microcode [~microcode@bas1-toronto04-1176393236.dsl.bell.ca] has joined #scheme 17:09:42 -!- jeapostrophe [~jay@racket/jeapostrophe] has quit [Ping timeout: 264 seconds] 17:11:16 jeapostrophe [~jay@lallab.cs.byu.edu] has joined #scheme 17:11:16 -!- jeapostrophe [~jay@lallab.cs.byu.edu] has quit [Changing host] 17:11:16 jeapostrophe [~jay@racket/jeapostrophe] has joined #scheme 17:11:32 -!- taylanub [tub@p4FD921D6.dip0.t-ipconnect.de] has quit [Disconnected by services] 17:11:58 taylanub [tub@p4FD921D6.dip0.t-ipconnect.de] has joined #scheme 17:12:42 -!- francis_wolke [~Adium@12.250.97.26] has quit [Quit: Leaving.] 17:15:46 -!- amgarchIn9 [~amgarchin@p4FD63EC9.dip0.t-ipconnect.de] has quit [Quit: Konversation terminated!] 17:15:48 amgarching [~amgarchin@p4FD63EC9.dip0.t-ipconnect.de] has joined #scheme 17:17:10 weie [~eie@softbank221078042071.bbtec.net] has joined #scheme 17:19:24 kvda [~kvda@unaffiliated/kvda] has joined #scheme 17:23:29 pnpuff [~C6248@unaffiliated/pnpuff] has joined #scheme 17:24:25 -!- m4burns [m4burns@taurine.csclub.uwaterloo.ca] has quit [Read error: Connection reset by peer] 17:24:55 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has quit [Ping timeout: 260 seconds] 17:27:02 avery [~avery@host-74-211-18-15.beyondbb.com] has joined #scheme 17:34:47 -!- microcode [~microcode@bas1-toronto04-1176393236.dsl.bell.ca] has quit [Read error: Operation timed out] 17:36:06 -!- adiii [~adityavit@c-76-117-52-187.hsd1.nj.comcast.net] has quit [Ping timeout: 264 seconds] 17:36:06 azathoth99 [~g@cpe-98-154-167-76.socal.res.rr.com] has joined #scheme 17:38:51 REPLeffect [~REPLeffec@69.54.115.254] has joined #scheme 17:41:32 -!- rage_ [~rage@unaffiliated/ffs] has quit [Quit: this space intentionally left blank] 17:42:35 -!- bjz [~brendanza@125.253.99.68] has quit [Quit: Leaving...] 17:43:39 bjz [~brendanza@125.253.99.68] has joined #scheme 17:44:52 bipt [~bpt@cpe-173-095-170-102.nc.res.rr.com] has joined #scheme 17:48:40 -!- joneshf-laptop [~joneshf@c-98-208-36-36.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 17:49:21 juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has joined #scheme 17:50:31 microcode [~microcode@bas1-toronto04-1176377731.dsl.bell.ca] has joined #scheme 17:58:47 acedia [~rage@unaffiliated/ffs] has joined #scheme 18:00:34 pt [~pt@84.114.230.154] has joined #scheme 18:00:48 -!- pt [~pt@84.114.230.154] has quit [Client Quit] 18:02:11 -!- tupi [~user@186.205.68.86] has quit [Ping timeout: 252 seconds] 18:03:16 -!- tcsc [~tcsc@24-177-92-172.dhcp.nwtn.ct.charter.com] has quit [Quit: bye!] 18:03:42 tcsc [~tcsc@24-177-92-172.dhcp.nwtn.ct.charter.com] has joined #scheme 18:08:58 _1126 [~1126@saturn.lileth.net] has joined #scheme 18:09:06 adiii [~adityavit@c-76-117-52-187.hsd1.nj.comcast.net] has joined #scheme 18:10:11 jlongster [~user@pool-96-238-181-209.rcmdva.fios.verizon.net] has joined #scheme 18:10:23 bjz_ [~brendanza@125.253.99.68] has joined #scheme 18:10:40 -!- bjz [~brendanza@125.253.99.68] has quit [Read error: Connection reset by peer] 18:11:10 joneshf-laptop [~joneshf@mail.concordusapps.com] has joined #scheme 18:11:57 -!- juxovec [~juxovec@ip-37-188-229-120.eurotel.cz] has quit [Remote host closed the connection] 18:14:34 francis_wolke [~Adium@12.250.97.26] has joined #scheme 18:22:00 -!- microcode [~microcode@bas1-toronto04-1176377731.dsl.bell.ca] has quit [Read error: Operation timed out] 18:22:48 microcode [~microcode@bas1-toronto04-1242323192.dsl.bell.ca] has joined #scheme 18:24:17 pierpa [~user@host117-20-dynamic.53-79-r.retail.telecomitalia.it] has joined #scheme 18:26:28 does siag office work on freebsd? 18:26:54 -!- microcode [~microcode@bas1-toronto04-1242323192.dsl.bell.ca] has quit [Ping timeout: 240 seconds] 18:32:59 -!- brianloveswords [~brianlove@li124-154.members.linode.com] has quit [Excess Flood] 18:34:49 brianloveswords [~brianlove@li124-154.members.linode.com] has joined #scheme 18:36:02 microcode [~microcode@bas1-toronto04-1176326180.dsl.bell.ca] has joined #scheme 18:39:06 -!- jrslepak [~jrslepak@punchout.ccs.neu.edu] has quit [Remote host closed the connection] 18:40:41 RomyRomy [~stickycak@cpe-68-173-126-232.nyc.res.rr.com] has joined #scheme 18:41:41 -!- RomyRomy [~stickycak@cpe-68-173-126-232.nyc.res.rr.com] has quit [Client Quit] 18:42:23 RomyRomy [~stickycak@cpe-68-173-126-232.nyc.res.rr.com] has joined #scheme 18:54:48 przl [~przlrkt@p5B298C4E.dip0.t-ipconnect.de] has joined #scheme 18:55:03 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Remote host closed the connection] 18:55:16 ijp [~user@host81-155-30-8.range81-155.btcentralplus.com] has joined #scheme 18:56:25 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 19:03:23 -!- kvda [~kvda@unaffiliated/kvda] has quit [Quit: x___x] 19:03:47 Schulzilla [~martin@dslb-178-012-174-056.pools.arcor-ip.net] has joined #scheme 19:07:01 karswell [~user@87.112.161.139] has joined #scheme 19:12:37 -!- taylanub [tub@p4FD921D6.dip0.t-ipconnect.de] has quit [Disconnected by services] 19:13:03 taylanub [tub@p4FD90C8B.dip0.t-ipconnect.de] has joined #scheme 19:13:41 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 19:23:40 -!- wbooze [~wbooze@xdsl-87-79-250-69.netcologne.de] has quit [Ping timeout: 276 seconds] 19:27:09 -!- Riastradh [~riastradh@fsf/member/riastradh] has quit [Ping timeout: 240 seconds] 19:31:10 -!- jonrafkind [~jon@racket/jonrafkind] has quit [Ping timeout: 265 seconds] 19:31:46 Nisstyre-laptop [~yours@oftn/member/Nisstyre] has joined #scheme 19:36:50 civodul [~user@reverse-83.fdn.fr] has joined #scheme 19:37:06 -!- microcode [~microcode@bas1-toronto04-1176326180.dsl.bell.ca] has quit [Remote host closed the connection] 19:37:31 microcode [~microcode@bas1-toronto04-1176326180.dsl.bell.ca] has joined #scheme 19:39:56 -!- microcode [~microcode@bas1-toronto04-1176326180.dsl.bell.ca] has quit [Remote host closed the connection] 19:42:12 microcode [~microcode@bas1-toronto04-1176326180.dsl.bell.ca] has joined #scheme 19:45:11 -!- gravicappa [~gravicapp@ppp91-77-160-184.pppoe.mtu-net.ru] has quit [Read error: Connection reset by peer] 19:45:48 -!- newtothis [~chatzilla@77.127.4.205] has quit [Quit: ChatZilla 0.9.90 [Firefox 21.0/20130511120803]] 19:49:29 -!- RomyRomy [~stickycak@cpe-68-173-126-232.nyc.res.rr.com] has quit [Quit: RomyRomy] 19:50:50 eni [~eni@gob75-5-82-230-88-217.fbx.proxad.net] has joined #scheme 20:11:25 jrslepak_neu [~jrslepak@punchout.ccs.neu.edu] has joined #scheme 20:11:40 -!- jrslepak_neu is now known as jrslepak 20:24:31 -!- Schulzilla [~martin@dslb-178-012-174-056.pools.arcor-ip.net] has quit [Quit: Konversation terminated!] 20:29:51 -!- avery [~avery@host-74-211-18-15.beyondbb.com] has quit [Quit: avery] 20:32:36 anybody here try artanis? https://github.com/NalaGinrut/artanis 20:36:17 -!- kobain [~kobian@unaffiliated/kobain] has quit [Ping timeout: 248 seconds] 20:39:32 gravicappa [~gravicapp@ppp91-77-161-0.pppoe.mtu-net.ru] has joined #scheme 20:40:15 ASau` [~user@p4FF965AB.dip0.t-ipconnect.de] has joined #scheme 20:40:58 -!- ASau [~user@p5797FB60.dip0.t-ipconnect.de] has quit [Ping timeout: 240 seconds] 20:43:08 -!- ASau` is now known as ASau 20:45:23 -!- agumonkey [~agu@52.158.70.86.rev.sfr.net] has quit [Remote host closed the connection] 20:49:50 aranhoide [~smuxi@238.Red-95-122-80.staticIP.rima-tde.net] has joined #scheme 20:50:18 -!- aranhoide is now known as aranh|dinner 20:52:07 -!- przl [~przlrkt@p5B298C4E.dip0.t-ipconnect.de] has quit [Ping timeout: 264 seconds] 21:02:25 -!- aranh|dinner [~smuxi@238.Red-95-122-80.staticIP.rima-tde.net] has quit [Ping timeout: 248 seconds] 21:02:36 -!- jeapostrophe [~jay@racket/jeapostrophe] has quit [Ping timeout: 252 seconds] 21:05:34 pt [~pt@84.114.230.154] has joined #scheme 21:05:35 -!- pt [~pt@84.114.230.154] has quit [Client Quit] 21:05:43 -!- Natch [~Natch@c-10cfe155.25-4-64736c10.cust.bredbandsbolaget.se] has quit [Read error: Connection reset by peer] 21:05:50 pt [~pt@84.114.230.154] has joined #scheme 21:05:55 -!- azathoth99 [~g@cpe-98-154-167-76.socal.res.rr.com] has quit [Remote host closed the connection] 21:06:28 Natch [~Natch@c-10cfe155.25-4-64736c10.cust.bredbandsbolaget.se] has joined #scheme 21:08:27 -!- kib0 [~kib0@200.92.100.68] has quit [Ping timeout: 260 seconds] 21:14:59 -!- bipt [~bpt@cpe-173-095-170-102.nc.res.rr.com] has quit [Remote host closed the connection] 21:15:28 jonrafkind [~jon@racket/jonrafkind] has joined #scheme 21:23:32 izisf [~izisf@host-37-191-200-55.lynet.no] has joined #scheme 21:26:59 weird, I never have problems with npm... basta, have you seen this? https://gist.github.com/jlongster/5639548 21:30:30 -!- francis_wolke [~Adium@12.250.97.26] has quit [Quit: Leaving.] 21:33:52 -!- amgarching [~amgarchin@p4FD63EC9.dip0.t-ipconnect.de] has quit [Quit: Konversation terminated!] 21:33:59 alexei [~amgarchin@p4FD63EC9.dip0.t-ipconnect.de] has joined #scheme 21:41:01 -!- pnpuff [~C6248@unaffiliated/pnpuff] has quit [Quit: leaving] 21:45:10 -!- pothos [~pothos@114-36-242-129.dynamic.hinet.net] has quit [Ping timeout: 246 seconds] 21:45:16 pothos_ [~pothos@114-36-238-98.dynamic.hinet.net] has joined #scheme 21:45:30 -!- pothos_ is now known as pothos 21:46:36 -!- amoe [~amoe@host-78-147-149-235.as13285.net] has quit [Ping timeout: 252 seconds] 21:47:43 -!- wingo [~wingo@cha74-2-88-160-190-192.fbx.proxad.net] has quit [Ping timeout: 256 seconds] 21:52:10 -!- izisf [~izisf@host-37-191-200-55.lynet.no] has quit [Remote host closed the connection] 21:53:48 crap wrong channel 21:54:53 francis_wolke [~Adium@12.250.97.26] has joined #scheme 21:58:09 -!- microcode [~microcode@bas1-toronto04-1176326180.dsl.bell.ca] has quit [Changing host] 21:58:09 microcode [~microcode@unaffiliated/microcolonel] has joined #scheme 21:58:20 przl [~przlrkt@p5B298C4E.dip0.t-ipconnect.de] has joined #scheme 21:58:36 -!- gravicappa [~gravicapp@ppp91-77-161-0.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 22:00:01 -!- adiii [~adityavit@c-76-117-52-187.hsd1.nj.comcast.net] has quit [Ping timeout: 248 seconds] 22:01:21 adiii [~adityavit@c-76-117-52-187.hsd1.nj.comcast.net] has joined #scheme 22:02:49 -!- przl [~przlrkt@p5B298C4E.dip0.t-ipconnect.de] has quit [Ping timeout: 252 seconds] 22:06:40 -!- jonrafkind [~jon@racket/jonrafkind] has quit [Ping timeout: 252 seconds] 22:08:05 kobain [~kobian@unaffiliated/kobain] has joined #scheme 22:14:24 -!- Nisstyre-laptop [~yours@oftn/member/Nisstyre] has quit [Quit: Leaving] 22:19:13 -!- eni [~eni@gob75-5-82-230-88-217.fbx.proxad.net] has quit [Ping timeout: 248 seconds] 22:19:59 -!- hiroakip [~hiroaki@77-20-192-229-dynip.superkabel.de] has quit [Quit: Ex-Chat] 22:20:03 pierpa` [~user@host117-20-dynamic.53-79-r.retail.telecomitalia.it] has joined #scheme 22:23:08 -!- pierpa [~user@host117-20-dynamic.53-79-r.retail.telecomitalia.it] has quit [Ping timeout: 256 seconds] 22:23:42 snearch [~snearch@brln-4dba39b6.pool.mediaWays.net] has joined #scheme 22:24:38 teiresia1 [~teiresias@75-175-60-174.ptld.qwest.net] has joined #scheme 22:25:07 -!- teiresias [~teiresias@archlinux/trusteduser/teiresias] has quit [Ping timeout: 256 seconds] 22:28:21 -!- alexei [~amgarchin@p4FD63EC9.dip0.t-ipconnect.de] has quit [Ping timeout: 248 seconds] 22:32:44 -!- teiresia1 is now known as teiresias 22:32:58 -!- teiresias [~teiresias@75-175-60-174.ptld.qwest.net] has quit [Changing host] 22:32:58 teiresias [~teiresias@archlinux/trusteduser/teiresias] has joined #scheme 22:34:44 -!- francis_wolke [~Adium@12.250.97.26] has quit [Quit: Leaving.] 22:35:08 -!- civodul [~user@reverse-83.fdn.fr] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 22:42:48 -!- edw_ [~edw@207.239.61.34] has quit [Quit: Computer has gone to sleep.] 22:42:56 francis_wolke [~Adium@12.250.97.26] has joined #scheme 22:46:19 jonrafkind [~jon@racket/jonrafkind] has joined #scheme 22:47:20 -!- dessos [~dessos@c-174-60-176-249.hsd1.pa.comcast.net] has quit [Quit: leaving] 22:49:29 bipt [~bpt@cpe-173-095-170-102.nc.res.rr.com] has joined #scheme 22:55:29 -!- brianloveswords [~brianlove@li124-154.members.linode.com] has quit [Excess Flood] 22:56:43 -!- jewel [~jewel@105-237-24-43.access.mtnbusiness.co.za] has quit [Ping timeout: 256 seconds] 22:57:42 -!- REPLeffect [~REPLeffec@69.54.115.254] has quit [Quit: bye] 22:57:51 brianloveswords_ [~brianlove@li124-154.members.linode.com] has joined #scheme 22:57:53 -!- brianloveswords_ is now known as brianloveswords 22:58:41 trusktr [~trusktr@130.86.99.226] has joined #scheme 23:12:56 avery [~avery@host-74-211-18-15.beyondbb.com] has joined #scheme 23:17:25 REPLeffect [~REPLeffec@69.54.115.254] has joined #scheme 23:20:31 -!- jonrafkind [~jon@racket/jonrafkind] has quit [Ping timeout: 256 seconds] 23:20:38 -!- miql [~miql@ip68-98-19-126.ph.ph.cox.net] has quit [Ping timeout: 252 seconds] 23:20:58 -!- Triclops256|away is now known as Triclops256 23:21:40 -!- bipt [~bpt@cpe-173-095-170-102.nc.res.rr.com] has quit [Remote host closed the connection] 23:43:45 Riastradh [~riastradh@fsf/member/riastradh] has joined #scheme 23:45:40 -!- pt [~pt@84.114.230.154] has quit [Ping timeout: 252 seconds] 23:53:02 -!- trusktr [~trusktr@130.86.99.226] has quit [Read error: Operation timed out] 23:53:45 adu [~ajr@pool-173-66-11-197.washdc.fios.verizon.net] has joined #scheme