00:01:04 -!- tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 00:05:50 -!- woonie [~woonie@nusnet-228-5.dynip.nus.edu.sg] has quit [Ping timeout: 255 seconds] 00:06:19 mikecsh [~mikecsh@203.145.92.116] has joined #scheme 00:08:32 -!- SeanTAllen [u4855@gateway/web/irccloud.com/x-upghczqulezajrsm] has quit [Remote host closed the connection] 00:14:07 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 00:20:33 -!- mikecsh [~mikecsh@203.145.92.116] has quit [Quit: mikecsh] 00:27:54 replore_ [~replore@203.152.213.161.static.zoot.jp] has joined #scheme 00:35:37 jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has joined #scheme 00:37:25 SeanTAllen [u4855@gateway/web/irccloud.com/x-foeuszsetcujsupc] has joined #scheme 00:40:21 -!- euccastro [~euccastro@214.Red-83-59-7.dynamicIP.rima-tde.net] has quit [Ping timeout: 252 seconds] 00:40:51 -!- homie` [~levgue@xdsl-78-35-162-208.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 00:43:58 homie [~levgue@xdsl-78-35-162-208.netcologne.de] has joined #scheme 01:02:26 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 01:04:09 -!- kk` [~kk@unaffiliated/kk/x-5380134] has quit [Remote host closed the connection] 01:22:35 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 240 seconds] 01:23:02 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 01:27:03 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Read error: Operation timed out] 01:29:32 drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has joined #scheme 01:30:40 -!- shurane [~mortimer@65-86-91-130.client.dsl.net] has quit [Read error: Connection reset by peer] 01:30:40 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Read error: Operation timed out] 01:31:59 shurane [~mortimer@65-86-91-130.client.dsl.net] has joined #scheme 01:49:13 gnuvince [~vince@ip-96-43-229-137.dsl.netrevolution.com] has joined #scheme 01:49:39 Is there an easier way than (make-string 1 c) to convert a character c into a string? 01:49:57 s/easier/more proper/ 01:50:48 I suspect not. 01:50:52 At least, not portably. 01:50:57 I seem to recall having done that myself. 01:51:19 Thank you. 01:51:30 I don't really mind, just making sure ;) 01:51:50 rudybot: (build-string 1 integer->char) 01:51:51 *offby1: your sandbox is ready 01:51:51 *offby1: ; Value: "\u0000" 01:51:55 rudybot: (build-string 10 integer->char) 01:51:55 *offby1: ; Value: "\u0000\u0001\u0002\u0003\u0004\u0005\u0006\a\b\t" 01:52:00 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 01:52:07 rudybot: (build-string 10 (curryr integer->char 97)) 01:52:07 *offby1: error: build-string: expected argument of type ; given #\a 01:52:11 rudybot: (build-string 10 (curry integer->char 97)) 01:52:11 *offby1: error: build-string: expected argument of type ; given #\a 01:52:14 pfft 01:52:27 rudybot: (build-string 10 (compose integer->char (curryr 97))) 01:52:28 *offby1: error: curryr: expected argument of type ; given 97 01:52:30 rudybot: (build-string 10 (compose integer->char (curryr + 97))) 01:52:30 *offby1: ; Value: "abcdefghij" 01:52:51 I don't write code; instead I push bits of code together until it forms a pile 01:53:42 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 02:04:26 offby1: I await your book on The Extreme Piling Methodology. 02:04:53 -!- githogori [~githogori@216.207.36.222] has quit [Ping timeout: 252 seconds] 02:08:56 well, Extreme Piling requires a lack of planning. 02:11:14 Right, but there must still be some methodological elements to avoid planning. 02:11:19 phao [phao@177.115.107.49] has joined #scheme 02:11:22 Hi. 02:12:02 The Little Schemer talks about some interesting stuff on functions. I really liked the Y combinator, functions that are not complete, the fact that it's not possible to write a function that tells if another one stops... Are there any good books on that stuff? 02:12:05 pjb: ah, there's the Zen of it 02:12:18 phao: SICP might touch on some of that 02:12:33 phao: but you might be better served by going to Church's original papers 02:12:37 not that I've ever read 'em 02:12:38 phao: it's not entirely correct: you can write a function that tells if ANOTHER one stops. 02:12:42 I've heard of these things here and there, but I don't know any book that addresses them deep 02:12:55 phao: what's not possible is to write a function that tells if any function stops. 02:13:02 pjb, yeah, by "another" there I meant "any" 02:13:53 are these things hard or what? it took me some time to understand the Y combinator 02:14:35 Otherwise, http://en.wikipedia.org/wiki/Theoretical_computer_science 02:14:48 Some of them are hards, some of them are not too hard. 02:15:04 OK. 02:15:04 th. 02:20:05 phao: there are a great many books on functional programming and comp sci. "deep" / I have some here that I like: Functional Programming Application and Implementation (Henderson); Applicative High Order Programming; Recursive Programming Techniques (Burge); and various language specific books like ML for the Working Programmer, SICP of course... 02:21:39 hypnocat [~hypnocat@unaffiliated/hypnocat] has joined #scheme 02:21:56 has anyone here gone through norvig's PAIP using scheme? 02:22:13 -!- phao [phao@177.115.107.49] has quit [Ping timeout: 248 seconds] 02:23:08 hm, a reading list was recently posted here: http://www.classiccmp.org/pipermail/cctalk/2012-January/310497.html 02:23:09 sigh 02:23:11 too slow 02:25:29 dsmith [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has joined #scheme 02:39:16 -!- copumpkin [~copumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 02:41:35 stunsg [~dous@210.24.42.190] has joined #scheme 02:44:12 -!- masm [~masm@bl19-138-65.dsl.telepac.pt] has quit [Quit: Leaving.] 02:44:36 xwl_ [user@nat/nokia/x-tdahinmoyvtrwcbf] has joined #scheme 02:50:24 -!- jao [~user@pdpc/supporter/professional/jao] has quit [Ping timeout: 240 seconds] 02:50:44 -!- drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has quit [Ping timeout: 240 seconds] 02:51:29 -!- mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has quit [Ping timeout: 244 seconds] 02:58:37 _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has joined #scheme 03:02:05 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 03:02:26 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 03:05:15 copumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 03:07:11 -!- shurane [~mortimer@65-86-91-130.client.dsl.net] has quit [Ping timeout: 255 seconds] 03:09:08 realitygrill_ [~realitygr@76.226.203.106] has joined #scheme 03:11:04 -!- realitygrill [~realitygr@76.226.194.72] has quit [Ping timeout: 240 seconds] 03:11:04 -!- realitygrill_ is now known as realitygrill 03:12:41 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 03:13:27 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Quit: Leaving] 03:13:46 soveran [~soveran@186.19.214.247] has joined #scheme 03:21:28 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 276 seconds] 03:27:46 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 03:29:35 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has left #scheme 03:37:31 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 03:40:20 ThePawnBreak [~quassel@94.177.108.25] has joined #scheme 03:43:56 -!- gnuvince [~vince@ip-96-43-229-137.dsl.netrevolution.com] has quit [Ping timeout: 252 seconds] 03:45:26 gnuvince [~vince@ip-50-21-131-109.dsl.netrevolution.com] has joined #scheme 03:46:15 -!- bfig [~b_fin_g@r186-48-199-1.dialup.adsl.anteldata.net.uy] has quit [Ping timeout: 240 seconds] 03:49:15 -!- ijp [~user@host86-182-157-113.range86-182.btcentralplus.com] has quit [Quit: The garbage collector got me] 03:50:09 -!- MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has quit [Ping timeout: 245 seconds] 03:52:14 -!- turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has quit [Ping timeout: 260 seconds] 03:52:53 -!- gnuvince [~vince@ip-50-21-131-109.dsl.netrevolution.com] has quit [Ping timeout: 248 seconds] 03:53:39 in answer to the string question doesn't (string c) work? 03:54:02 rudybot: (string #\a) 03:54:02 rasactive: your sandbox is ready 03:54:02 rasactive: ; Value: "a" 03:55:06 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 03:56:09 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Read error: Operation timed out] 03:56:21 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 03:59:28 rasactive: too simple 03:59:35 (string #\a #\b #\c) 03:59:39 rudybot: (string #\a #\b #\c) 03:59:39 *offby1: ; Value: "abc" 04:00:22 so you want an option that refuses multiple arguments? 04:00:27 :) 04:03:18 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 244 seconds] 04:13:16 -!- bytbox [~s@96.26.105.154] has quit [Quit: Lost terminal] 04:14:07 cataska [~cataska@210.64.6.233] has joined #scheme 04:15:38 githogori [~githogori@c-50-131-15-16.hsd1.ca.comcast.net] has joined #scheme 04:16:31 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #scheme 04:17:51 drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has joined #scheme 04:18:01 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 04:19:35 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 04:23:13 -!- drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has quit [Ping timeout: 276 seconds] 04:31:43 -!- ThePawnBreak [~quassel@94.177.108.25] has quit [Ping timeout: 244 seconds] 04:35:47 ysph [~user@68-186-193-128.dhcp.unas.al.charter.com] has joined #scheme 04:36:59 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 04:38:27 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 04:39:01 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 04:39:43 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 04:40:45 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 04:41:01 -!- EmmanuelOga [~emmanuel@190.244.15.195] has quit [Ping timeout: 244 seconds] 04:44:57 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 04:51:16 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 05:04:48 -!- jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has quit [Quit: Leaving] 05:05:18 shurane [~mortimer@pool-71-246-112-82.nycmny.east.verizon.net] has joined #scheme 05:18:42 dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 05:19:25 pjb- [~t@81.202.16.46.dyn.user.ono.com] has joined #scheme 05:19:28 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 05:20:35 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 240 seconds] 05:25:02 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 05:25:28 gravicappa [~gravicapp@ppp91-77-179-88.pppoe.mtu-net.ru] has joined #scheme 05:27:36 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 05:48:23 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Quit: Leaving] 05:48:44 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 05:48:50 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 05:49:09 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 05:49:55 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 05:53:26 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 05:54:15 -!- dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has quit [Remote host closed the connection] 05:57:36 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 05:57:44 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 06:00:53 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 06:05:19 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Ping timeout: 252 seconds] 06:11:56 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 06:12:15 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 06:12:37 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 06:12:39 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 06:13:10 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 06:13:14 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 06:14:05 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 06:15:01 -!- ysph [~user@68-186-193-128.dhcp.unas.al.charter.com] has quit [Ping timeout: 276 seconds] 06:26:28 -!- replore_ [~replore@203.152.213.161.static.zoot.jp] has quit [Remote host closed the connection] 06:27:04 -!- shurane [~mortimer@pool-71-246-112-82.nycmny.east.verizon.net] has quit [Ping timeout: 240 seconds] 06:34:54 confab [~win7@c-71-193-9-153.hsd1.ca.comcast.net] has joined #scheme 06:45:32 jewel [~jewel@196-215-117-46.dynamic.isadsl.co.za] has joined #scheme 07:02:21 -!- djcb [~user@a88-114-95-13.elisa-laajakaista.fi] has quit [Remote host closed the connection] 07:07:30 Alice23 [cjm@s3.enemy.org] has joined #scheme 07:08:44 -!- jewel [~jewel@196-215-117-46.dynamic.isadsl.co.za] has quit [Ping timeout: 240 seconds] 07:11:15 -!- gravicappa [~gravicapp@ppp91-77-179-88.pppoe.mtu-net.ru] has quit [Ping timeout: 240 seconds] 07:16:53 -!- cataska [~cataska@210.64.6.233] has quit [*.net *.split] 07:16:53 -!- _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has quit [*.net *.split] 07:16:53 -!- stunsg [~dous@210.24.42.190] has quit [*.net *.split] 07:16:53 -!- LeoNerd [~leo@cel.leonerd.org.uk] has quit [*.net *.split] 07:16:53 -!- Alice23_ [cjm@s3.enemy.org] has quit [*.net *.split] 07:17:57 cataska [~cataska@210.64.6.233] has joined #scheme 07:17:57 _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has joined #scheme 07:17:57 stunsg [~dous@210.24.42.190] has joined #scheme 07:17:57 LeoNerd [~leo@cel.leonerd.org.uk] has joined #scheme 07:35:39 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 244 seconds] 07:40:16 stis [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 07:40:23 hkBst [~marijn@79.170.210.172] has joined #scheme 07:40:23 -!- hkBst [~marijn@79.170.210.172] has quit [Changing host] 07:40:23 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 07:43:33 soveran [~soveran@186.19.214.247] has joined #scheme 08:02:29 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 08:04:13 eno [~eno@nslu2-linux/eno] has joined #scheme 08:05:49 taylanub [d9180873@gateway/web/freenode/ip.217.24.8.115] has joined #scheme 08:07:11 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 252 seconds] 08:15:38 -!- dsmith [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has quit [Ping timeout: 240 seconds] 08:16:25 how would one traditionally traverse an s-expression, say to print out an xml representation of the same data ? 08:20:45 -!- pjb- [~t@81.202.16.46.dyn.user.ono.com] has quit [Ping timeout: 252 seconds] 08:27:05 wingo [~wingo@90.164.198.39] has joined #scheme 08:27:22 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 08:30:35 dsmith_ [~dsmith@cpe-184-56-129-232.neo.res.rr.com] has joined #scheme 08:32:57 gravicappa [~gravicapp@ppp91-77-178-126.pppoe.mtu-net.ru] has joined #scheme 08:33:33 -!- xwl_ [user@nat/nokia/x-tdahinmoyvtrwcbf] has quit [Remote host closed the connection] 08:40:21 tom_i [~thomasing@cmc.beaming.biz] has joined #scheme 08:45:09 xwl_ [user@nat/nokia/x-kqgbgmzkddwmdabw] has joined #scheme 08:50:17 taylanub: the traversing part can be gleaned from this example: http://trixy.justinkbeck.com/2008/12/tree-map-scheme.html 08:57:02 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 08:57:29 thanks. and i goess when a DTD comes into play (only specific types of atoms are "valid" at specific places, etc.), one would use a set of mutually recursive functions ? (that would be a "state machine" ?) 08:59:00 djcb [djcb@nat/nokia/x-iervqargfuowellf] has joined #scheme 09:02:46 taylanub: that sounds plausible 09:09:02 homie` [~levgue@xdsl-84-44-152-107.netcologne.de] has joined #scheme 09:11:49 -!- homie [~levgue@xdsl-78-35-162-208.netcologne.de] has quit [Ping timeout: 276 seconds] 09:32:03 ahinki [~chatzilla@212.99.10.150] has joined #scheme 09:45:04 -!- tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 09:47:08 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Read error: Connection reset by peer] 09:47:20 hkBst [~marijn@79.170.210.172] has joined #scheme 09:47:31 -!- hkBst [~marijn@79.170.210.172] has quit [Changing host] 09:47:32 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 09:55:22 -!- xwl_ [user@nat/nokia/x-kqgbgmzkddwmdabw] has quit [Ping timeout: 276 seconds] 10:04:11 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 10:19:54 ahinki_ [~chatzilla@212.99.10.150] has joined #scheme 10:21:24 -!- ahinki [~chatzilla@212.99.10.150] has quit [Ping timeout: 245 seconds] 10:21:35 -!- ahinki_ is now known as ahinki 10:28:26 masm [~masm@bl19-138-65.dsl.telepac.pt] has joined #scheme 10:29:08 add^_ [~add^_^@m212-152-2-188.cust.tele2.se] has joined #scheme 10:46:26 Is there any way to open a file in append mode in r7rs-small? was that discussed on the list? 10:48:00 From a quick look, maybe R6 can do it using file-options and SET-PORT-POSITION!... 10:56:47 Yeah that works in R6, except there's no way to seek symbolically to the end, so you'd have to read the file first to get the total length. 10:57:34 There's an R7? Heh.. man, I'm still working to R5 10:57:54 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 11:04:39 r7 is out ? it was meant to separate the minimal core from "big language" features like modules IIRC, LeoNerd, since people raged at r6 making such features part of *the* single standard 11:05:12 Ahhhh :) 11:05:14 I see 11:06:40 r7rs.org says "nothing here yet" .. 11:15:54 Not out yet, the 5th draft came out just before the end of last year, which is meant to be very close to final 11:39:43 drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has joined #scheme 12:12:14 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [] 12:19:21 I'm sure I've seen this feature somewhere.. might not have been Scheme, but... Would it be possible to create a (list/structure?) of functions, and apply the lot to some value, to yield the same structure of answers? 12:19:38 E.g. (apply (first third fifth) '(a b c d e)) ==> (a c e) 12:20:04 rostayob [~rostayob@dyn1213-19.wlan.ic.ac.uk] has joined #scheme 12:20:41 -!- rostayob [~rostayob@dyn1213-19.wlan.ic.ac.uk] has quit [Client Quit] 12:21:21 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 12:22:01 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 12:26:12 soveran [~soveran@186.19.214.247] has joined #scheme 12:27:27 LeoNerd: you mean (apply (f g h) value) -> (f value) (g value) (h value) ? 12:28:18 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [] 12:28:43 Ya... that'd be it 12:29:33 should be easy to implement, but don't know if there's a standard method 12:30:04 *LeoNerd* nod.. 12:30:42 Ohyes, it's not terribly hard. Something like (define (apply-list funcs val) (map (lambda (f) (f val)) val)) woudl do it 12:30:48 with more ) 12:30:49 hrmm .. (apply (lambda (f) ... you beat me 12:31:14 I've often wanted to make ] close all the current parens.. :) 12:33:03 i noticed that people in lisp channels use that syntax. (i guess text editors automatically replace it with real parens) 12:33:31 Hrm.. Or.. maybe, allow ] to close up until the innermost [ 12:33:37 So you could [define .....] 12:34:04 that'd be interesting 12:40:59 -!- preflex [~preflex@unaffiliated/mauke/bot/preflex] has quit [Ping timeout: 245 seconds] 12:44:41 -!- drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has quit [Quit: bbl] 12:46:26 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 12:53:23 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 252 seconds] 12:54:51 -!- taylanub [d9180873@gateway/web/freenode/ip.217.24.8.115] has quit [Ping timeout: 258 seconds] 12:55:32 preflex [~preflex@unaffiliated/mauke/bot/preflex] has joined #scheme 13:01:50 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 13:05:16 -!- homie` [~levgue@xdsl-84-44-152-107.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 13:07:05 bytbox [~s@96.26.105.154] has joined #scheme 13:16:08 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 244 seconds] 13:16:53 stis1 [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 13:19:25 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has quit [Ping timeout: 252 seconds] 13:32:32 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 13:32:48 homie [~levgue@xdsl-84-44-152-107.netcologne.de] has joined #scheme 13:37:47 GoKhlaYeh [~GoKhlaYeh@33.31.80.79.rev.sfr.net] has joined #scheme 13:59:35 EmmanuelOga [~emmanuel@190.244.15.195] has joined #scheme 14:04:37 rostayob [~rostayob@dyn1222-164.wlan.ic.ac.uk] has joined #scheme 14:06:45 Actually it occurs to me, what I want isn't quite the list-apply thing. Because sometimes I want more complex functions.. 14:07:10 jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has joined #scheme 14:07:48 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 14:16:43 jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has joined #scheme 14:22:47 -!- wingo [~wingo@90.164.198.39] has quit [Ping timeout: 244 seconds] 14:26:22 I just simply never have inbalanced parens in my lisp buffers... (use paredit to structurally edit the code) 14:33:32 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has left #scheme 14:42:24 jewel [~jewel@196-215-117-46.dynamic.isadsl.co.za] has joined #scheme 15:05:51 bfig [~b_fin_g@r186-48-192-214.dialup.adsl.anteldata.net.uy] has joined #scheme 15:06:31 -!- realitygrill [~realitygr@76.226.203.106] has quit [Quit: realitygrill] 15:12:31 chuck norris can get unbalanced parens to compile. 15:18:15 shurane [~mortimer@65-86-91-130.client.dsl.net] has joined #scheme 15:18:43 If your reader supports the "] closes everything" style, you don't have to be Chuck Norris to make that work. ;-) 15:19:14 Also, on Chuck Norris Facts, you've heard of the likes of Bruce Schneier Facts and Jon Skeet Facts, right? :-P 15:19:16 -!- add^_ [~add^_^@m212-152-2-188.cust.tele2.se] has quit [Ping timeout: 253 seconds] 15:26:37 -!- pygospa [~Pygosceli@kiel-5f77b635.pool.mediaWays.net] has quit [Disconnected by services] 15:26:47 pygospa [~Pygosceli@kiel-4dbeda32.pool.mediaWays.net] has joined #scheme 15:28:57 -!- jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has quit [Quit: This computer has gone to sleep] 15:41:48 who's Jon Skeet? 15:42:23 -!- copumpkin [~copumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 15:42:35 qu1j0t3: Jon Skeet is the top user on Stack Overflow. 15:42:51 qu1j0t3: His score is way above anybody else's, so people attribute him godlike powers. :-) 15:43:11 -!- ahinki [~chatzilla@212.99.10.150] has quit [Quit: ChatZilla 0.9.88 [Firefox 10.0/20120111092507]] 15:44:59 -!- jeapostrophe [~jay@69.169.141.110.provo.static.broadweavenetworks.net] has quit [Ping timeout: 255 seconds] 15:45:35 cky: oh, thanks. 15:46:56 :-) 15:47:40 cky: What's bizarre to me is that SO is approaching Wikipedia style editorial control: . 15:48:06 What do you mean by "Wikipedia-style editorial control"? 15:48:09 A question being locked is a necessary and sufficient condition for it being interesting and on-topic. 15:48:19 Power-weilding mods descending like locusts. 15:48:21 In other news: I managed to finish reading LiSP in just over 3 years :) 15:48:31 leppie: Nice; I've got to start! 15:49:15 klutometis: Hahahaha. 15:49:24 leppie: \o/ 15:49:30 I probably need to read it a few more time to understand the plot. 15:50:15 you can see a frenchman wrote it, full of silly humour 15:50:25 perhaps it got lost in translation :) 15:52:22 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Quit: Konversation terminated!] 15:52:46 unfortunately I am not a big reader :( (a bit dyslexic in that area, but mostly in writing) 15:53:20 klutometis: Quora also has a whiff of wikipedia at times. 15:53:39 klutometis: 'wikipedia moments' 15:53:54 *klutometis* thanks the Olympians for elinks: browsing WP is still possible despite the SOPA-blackout. 15:54:24 qu1j0t3: It's an interesting phenomenon, to be sure; it may be the obligatory issue of any highly developed on-line community. 15:55:29 klutometis: I use w3m. :-P 15:56:17 LeoNerd: (define (multiple-apply funcs arg) (map (lambda (fun) (fun arg)) funcs)) 15:56:57 Yah.. 15:57:00 We got that far :) 15:57:14 cky: where can I find old transferred answers on SO? I recall some person asked what to call their baby. I said: Jon Skeet and if it is a girl, Jon Skeet (got way over 100 upvotes) 15:57:40 LeoNerd: the code you gave was wrong. 15:58:32 leppie: Uh...Google? :-) (I hope.) 15:58:50 errr, wrong answer, but I'll tr :) 15:58:53 try 15:58:58 :-P 15:59:49 cky: nope google foo level -50 today it seems... 15:59:49 Seeing pjb's multiple-apply makes me want to try my hand at implement CL's multiple-value-call as a Scheme macro. 15:59:54 leppie: :-( 16:00:43 cky: I can find it in my history, so it is probably on some SO site I have not 'registered' yet (silly behavior IMO) 16:00:53 s/can/can't/ 16:00:58 to celebrate SOPA google should invert their relevance function 16:01:02 ffs I hate those typos 16:01:40 MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has joined #scheme 16:03:31 leppie: It's probably been nuked, since I can find it on Google either. 16:03:56 sux :( 16:04:33 :-( 16:05:34 cky: wtf is flag weight? 16:05:49 *leppie* feels really blacked out today :) 16:09:59 copumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 16:17:48 -!- ASau [~user@95-24-150-243.broadband.corbina.ru] has quit [Remote host closed the connection] 16:18:00 ASau [~user@93-80-123-238.broadband.corbina.ru] has joined #scheme 16:19:08 HG` [~HG@dsbg-4db57cb7.pool.mediaWays.net] has joined #scheme 16:25:39 qu1j0t3: That's a pretty cool idea; even if it's not totally germane to SOPA. Inversion-of-relevance might be feat for e.g. tea-party day. 16:26:46 klutometis: LOL! Though Google is all-powerful, i bet that what i am suggesting is technically non trivial or practically impossible for them. 16:27:07 cky: Age old question: what does w3m have that elinks doesn't? It produced images in the terminal OUAT; but, otherwise: is it square root of one, halfth power of the other? 16:27:08 klutometis: it's a while since i read their architecture paper so my intuition may be weak on this. 16:28:47 By the way, guys: I did the unthinkable yesterday and deleted 10 years of accumulated .emacs-cruft; replacing it with ESK. 16:28:59 We'll see how long the experiment lasts; so far, it's a little refreshing, though. 16:29:46 *gasp* 16:30:04 now you're at the whim of Phil Hagelberg 16:30:28 wingo [~wingo@158.pool80-102-159.dynamic.orange.es] has joined #scheme 16:31:09 now imagine if all internet porn got blacked out for 1 day 16:31:38 offby1: Heh; you're right. Surprisingly (or not so surprisingly), though, we discovered a lot of the same things independently; and he showed me a thing or two. 16:31:52 leppie: Not going to happen: porn is a useful castration device. 16:32:03 .oO("OUAT"?) 16:32:16 On Ur Argentine Tango 16:32:25 kk` [~kk@unaffiliated/kk/x-5380134] has joined #scheme 16:32:41 leppie: we won't have to imagine soon! 16:32:45 CampinSam [~CampinSam@24-176-98-217.dhcp.jcsn.tn.charter.com] has joined #scheme 16:33:00 klutometis: I meant politicians would quickly realize their mistake :) 16:33:09 leppie: has that ever happened, tho? ;-) 16:33:58 offby1: Heh: "once upon a time;" I'm surprised OUAT doesn't have wider currency. I've actually never seen it in the wild. 16:34:03 qu1j0t3: Only once, in 1989 16:34:19 leppie: Good point; I thought most politicians were cruising D.C. bathrooms, though. 16:34:26 klutometis: inb4 Wide Stance 16:34:29 *qu1j0t3* giggles 16:34:36 leppie: seriously? 16:34:59 amoe: nope, that was a joke about the early internet :) 16:35:35 ah those days... I wish I remembered, or perhaps not 16:35:49 but 1989 is probably the last time the government could enfore a porn blackout 16:36:03 enforce 16:36:04 qu1j0t3: Hilarious; I'm glad they immortalized that with a meme. 16:36:16 *klutometis* vows to work "wide stance" into his conversation at some point. 16:37:29 klutometis: "I'm not averse to your suggestion; let's say that in this area, I take a very *wide* stance." 16:38:17 -!- X-Scale [email@2001:5c0:1000:b::9eff] has quit [Remote host closed the connection] 16:40:13 qu1j0t3 surges from behind! 16:43:01 -!- HG` [~HG@dsbg-4db57cb7.pool.mediaWays.net] has quit [Read error: Connection reset by peer] 16:43:08 !! 16:43:15 HG` [~HG@dsbg-4db57cb7.pool.mediaWays.net] has joined #scheme 16:43:22 offby1: you're frothing. 16:43:50 X-Scale [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 16:43:53 heh 16:44:07 -!- X-Scale is now known as Guest1078 16:44:28 euccastro [~es@102.Red-79-158-173.staticIP.rima-tde.net] has joined #scheme 16:46:27 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 16:47:26 leppie: Flag weight is an indicator of how useful your flags (spam, offensive, report to moderator) are. 16:47:38 leppie: When a moderator sees a flag, they can mark it as helpful or not helpful. 16:47:56 offby1: Although, yeah: fuck for Phil for issuing (setq visible-bell t). 16:47:57 Your flag weight starts out at 100. Every helpful flag raises it by 10 points, until you hit 500 points. 16:48:01 cky: thanks, is 315 any good? 16:48:11 leppie: Yes, it's pretty good. :-) 16:48:13 ahh, i see, average 16:48:22 leppie: Once you get to 500, there's a silver badge waiting for you. 16:48:30 i close a lot of posts, but rarely flag 16:48:39 *klutometis* senses that cky is speaking from a position of modest SO-virtuosity. 16:48:39 At 500, the flag weight increases are no longer linear. 16:48:53 klutometis: What do you mean? :-) 16:49:10 cky: That you're a Yoda of SO, but won't admit it. 16:49:25 Above 500, it takes many, many more "correct" flags to raise the flag weight by much. 16:49:36 It takes several hundred (at least) correct flags to get to about 750 flag weight. 16:49:38 IMO, scheme is probably one of the best supported languages on SO 16:49:50 klutometis: Hehehehe, I wish. :-) 16:50:13 leppie: Oh? 16:50:16 leppie: Does SO itself support it; or you mean the community is vibrant? 16:50:34 jeapostrophe [~jay@lallab.cs.byu.edu] has joined #scheme 16:50:47 klutometis: when looking at scheme tagged questions, 99.9% is answered 16:51:10 and it gets answered rather quickly normally 16:51:36 but then again, most questions are newb ones, schemers soon learn to think for themselves :) 16:53:12 Indeed. :-) 16:53:22 I'd like to believe the "Schemers soon learn to think for themselves" part. :-P 16:53:27 hba [~hba@189.130.178.126] has joined #scheme 16:53:46 langmartin [~user@host-68-169-175-226.WISOLT2.epbfi.com] has joined #scheme 17:01:32 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Quit: Leaving.] 17:13:29 -!- confab [~win7@c-71-193-9-153.hsd1.ca.comcast.net] has quit [Read error: Connection reset by peer] 17:15:02 JoelMcCracken [~user@pool-72-95-162-219.pitbpa.east.verizon.net] has joined #scheme 17:18:16 add^_ [~add^_^@m212-152-2-188.cust.tele2.se] has joined #scheme 17:25:55 -!- tom_i [~thomasing@cmc.beaming.biz] has quit [Ping timeout: 240 seconds] 17:31:41 -!- framling [~pete@cpe-74-64-94-88.hvc.res.rr.com] has left #scheme 17:31:50 cky: can I flag a good answer as a 'good answer' ? 17:33:39 -!- rostayob [~rostayob@dyn1222-164.wlan.ic.ac.uk] has quit [Quit: WeeChat 0.3.5] 17:37:34 leppie: No. 17:37:50 leppie: This isn't Craigslist where you can flag stuff for "best of Craigslist". :-) 17:38:02 Flagging is always for problems; no news is good news. :-) 17:38:02 'good-answer perhaps? 17:38:13 LeoNerd: Flags != tags. 17:39:25 cky: lol #tringtoboostflagweight 17:39:26 leppie: One exception: if an answer has been deleted by popular vote, but you think it's a great answer and should be revived, you can alert moderators to that. 17:39:29 grrr 17:39:54 leppie: But in general, only flag for stuff that moderators can do anything about, and "should" do anything about. 17:40:21 If you need to know what moderators can or can't do, just ask me. I'm a mod at the Code Golf SE. :-) 17:40:24 yeah, but I never see those due to only visiting the default home page :( anything closed or negative or ignored do not show up generally 17:40:45 leppie: Do you have at least 10k rep? (I'd check, but SO's users page isn't very accessible via w3m.) 17:41:22 where does the ssl package come from? 17:41:58 cky: can you mark all the questions I answered that do not have a mark answer with my answer as the correcty answer please? also give 1 upvote from me to each accepted answer's question as I do that normally (good karma). kthxbi! 17:42:16 ;p 17:42:45 leppie: Moderators cannot make an answer "accepted". Only the OP can do that. 17:43:06 cky: interestingly I have exactly 42k now, I like to keep it that way for a bit :) 17:43:07 -!- add^_ [~add^_^@m212-152-2-188.cust.tele2.se] has quit [Quit: add^_] 17:43:09 Moderators also can't vote on your behalf. :-) 17:43:19 leppie: Ooh! 42k! 17:43:25 Hey, are you on the first 5 pages of the users list? 17:43:28 cky: so exactly what are getting paid for!!!!!!!!!!! 17:43:31 ;p 17:43:39 If so, you're probably eligible for a special-edition SO tshirt. :-) 17:43:50 cky: cool :) 17:44:01 When I checked that list back when the promotion started, 42k was the cutoff rep for the first 5 pages. 17:44:07 im in the top 0.33% , but not top 5 pages I think 17:44:12 Oh. Hmm. 17:44:17 -!- langmartin [~user@host-68-169-175-226.WISOLT2.epbfi.com] has quit [Ping timeout: 244 seconds] 17:44:36 #223 all time rank 17:44:58 I see, the cutoff rep is now 47.5k. 17:45:01 Hey it is on page 5 viewed as 50 per page! 17:45:04 How people's rep rises. 17:45:06 Hehehehe. 17:45:37 damn that jon skeet stealing all my points! 17:45:43 Hehehehehe. :-D 17:45:50 I thought Jon Skeet doesn't answer Scheme questions. :-P 17:46:05 TBH, I am too much of a dick to deserve anything :) 17:46:11 Anyway, there was a time when I was on page 1, but slowly slid, and slid, and slid.... ;-) 17:46:30 Currently, I'm on page 4. 17:46:37 want to be spoonfed? HERE EAT THE FUCKIN SPOON.... WITH NO TEETH! 17:46:42 Lol. 17:47:25 I think I am a borderline troll :) good to have rep when you plan on doing that however 17:50:18 dnolen [aa95640a@gateway/web/freenode/ip.170.149.100.10] has joined #scheme 17:50:32 damn I hate these SO idiots... 17:50:52 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 17:54:59 ok, I was the idiot this time! :) 17:57:56 -!- Guest1078 [email@sgi-ultra64.broker.freenet6.net] has quit [Ping timeout: 272 seconds] 17:58:19 -!- djcb [djcb@nat/nokia/x-iervqargfuowellf] has quit [Remote host closed the connection] 17:59:37 Guest1078 [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 18:02:12 SOPA fans rejoice, http://thedailywtf.com/ has got your back. klutometis 18:04:12 -!- dnolen [aa95640a@gateway/web/freenode/ip.170.149.100.10] has quit [Ping timeout: 258 seconds] 18:05:09 mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has joined #scheme 18:09:37 qu1j0t3: Lol. 18:20:06 qu1j0t3: Heh; thank god for the Google cache today. 18:20:15 add^_ [~add^_^@m212-152-2-188.cust.tele2.se] has joined #scheme 18:23:01 turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has joined #scheme 18:29:53 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 18:30:02 CampinSa1 [~CampinSam@24-176-98-217.dhcp.jcsn.tn.charter.com] has joined #scheme 18:30:44 woonie [~woonie@137.132.254.149] has joined #scheme 18:31:45 jao [~user@pdpc/supporter/professional/jao] has joined #scheme 18:32:55 -!- CampinSam [~CampinSam@24-176-98-217.dhcp.jcsn.tn.charter.com] has quit [Ping timeout: 252 seconds] 18:44:46 -!- REPLeffect [~REPLeffec@69.54.115.254] has quit [Quit: bye] 18:46:45 samth [~samth@nat/yahoo/x-czsjmlcengvewfsw] has joined #scheme 18:48:44 -!- tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 18:53:32 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 18:55:34 dnolen [aa95640a@gateway/web/freenode/ip.170.149.100.10] has joined #scheme 19:00:48 -!- add^_ [~add^_^@m212-152-2-188.cust.tele2.se] has quit [Quit: add^_] 19:06:09 -!- wingo [~wingo@158.pool80-102-159.dynamic.orange.es] has quit [Quit: Leaving] 19:11:46 -!- mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has quit [Remote host closed the connection] 19:15:33 -!- woonie [~woonie@137.132.254.149] has quit [Ping timeout: 248 seconds] 19:16:28 -!- brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has quit [Ping timeout: 272 seconds] 19:16:51 -!- hba [~hba@189.130.178.126] has quit [Read error: Operation timed out] 19:17:37 brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has joined #scheme 19:19:39 hba [~hba@187.171.205.0] has joined #scheme 19:23:09 mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has joined #scheme 19:28:52 choas [~lars@p4FDC5288.dip.t-dialin.net] has joined #scheme 19:29:53 leppie: ??? "FOSS News Channel"? Is that like a spoof of Fox News? 19:30:12 The tweets are on par with the latter's sensationalism. 19:30:57 yes :) (and I really dont care for Mono especially after their comercialization) 19:31:27 actually I just dont like Miguel 19:32:41 Hahahahahaha. 19:32:43 he is too sensitive to (be on the internet and lead such a project) 19:33:10 You make him sound like Enrique Iglesias. :-P 19:33:41 yes, the ugly geek brother, that would be pretty much spot on ;p 19:34:44 -!- dous_ [~dous@cm171.sigma67.maxonline.com.sg] has quit [Ping timeout: 240 seconds] 19:35:37 Lol. 19:35:45 i recall I wanted to report a silly bug, but he made me go thru the entire Novell sign up form, and I told him 'stuff that', and he seemed to get insulted by this and blocked me on twitter. #tooproudforme 19:35:50 REPLeffect [~REPLeffec@69.54.115.254] has joined #scheme 19:35:58 have you ever seen the Nvell sign up form? 19:36:02 Nope. 19:36:03 Novell 19:36:16 well, don't 19:36:20 Okay. :-) 19:36:22 just say NO 19:37:06 anyways, long story short, they take ages to fix bugs too, as they have to vet everything to make sure it does not look 1 bit like MS code... 19:37:29 now imagine trivial stuff implemented in funny ways... FAIL 19:37:39 :-O 19:42:08 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 19:48:09 bweaver [~user@host-68-169-158-230.WISOLT2.epbfi.com] has joined #scheme 19:51:56 -!- kk` [~kk@unaffiliated/kk/x-5380134] has quit [Ping timeout: 252 seconds] 19:54:58 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 19:57:48 leppie: yeah, he's just a jerk. 19:59:07 bzzbzz [~franco@modemcable023.13-56-74.mc.videotron.ca] has joined #scheme 19:59:39 -!- JoelMcCracken [~user@pool-72-95-162-219.pitbpa.east.verizon.net] has quit [Ping timeout: 244 seconds] 20:01:54 -!- homie [~levgue@xdsl-84-44-152-107.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 20:07:04 kk` [~kk@unaffiliated/kk/x-5380134] has joined #scheme 20:11:47 -!- shurane [~mortimer@65-86-91-130.client.dsl.net] has quit [Read error: Connection reset by peer] 20:11:51 jcowan [c6b912cf@gateway/web/freenode/ip.198.185.18.207] has joined #scheme 20:13:13 shurane [~mortimer@65-86-91-130.client.dsl.net] has joined #scheme 20:17:03 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 252 seconds] 20:18:45 -!- jcowan [c6b912cf@gateway/web/freenode/ip.198.185.18.207] has quit [Ping timeout: 258 seconds] 20:18:58 jcowan [c6b912cf@gateway/web/freenode/ip.198.185.18.207] has joined #scheme 20:20:04 -!- jewel [~jewel@196-215-117-46.dynamic.isadsl.co.za] has quit [Ping timeout: 240 seconds] 20:21:42 jcowan_ [c6b912cf@gateway/web/freenode/ip.198.185.18.207] has joined #scheme 20:22:31 -!- jcowan [c6b912cf@gateway/web/freenode/ip.198.185.18.207] has quit [Disconnected by services] 20:22:35 -!- jcowan_ is now known as jcowan 20:29:30 n0x [~eliott@car75-10-78-224-127-139.fbx.proxad.net] has joined #scheme 20:29:46 langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has joined #scheme 20:31:01 -!- n0x [~eliott@car75-10-78-224-127-139.fbx.proxad.net] has quit [Client Quit] 20:32:38 -!- bfig [~b_fin_g@r186-48-192-214.dialup.adsl.anteldata.net.uy] has quit [Ping timeout: 240 seconds] 20:41:42 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 20:42:48 phax [~phax@cpc14-haye17-2-0-cust110.haye.cable.virginmedia.com] has joined #scheme 20:42:48 -!- phax [~phax@cpc14-haye17-2-0-cust110.haye.cable.virginmedia.com] has quit [Changing host] 20:42:48 phax [~phax@unaffiliated/phax] has joined #scheme 20:43:19 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 248 seconds] 20:46:04 bfig [~b_fin_g@r186-48-196-24.dialup.adsl.anteldata.net.uy] has joined #scheme 20:51:42 jcowan_ [c6b912cf@gateway/web/freenode/ip.198.185.18.207] has joined #scheme 20:52:29 -!- jcowan [c6b912cf@gateway/web/freenode/ip.198.185.18.207] has quit [Ping timeout: 258 seconds] 21:01:20 homie [~levgue@xdsl-84-44-152-107.netcologne.de] has joined #scheme 21:05:10 -!- githogori [~githogori@c-50-131-15-16.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 21:05:40 -!- HG` [~HG@dsbg-4db57cb7.pool.mediaWays.net] has quit [Quit: HG`] 21:06:40 -!- Guest1078 [email@sgi-ultra64.broker.freenet6.net] has quit [Ping timeout: 272 seconds] 21:10:49 Guest1078 [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 21:11:49 -!- gravicappa [~gravicapp@ppp91-77-178-126.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 21:16:15 -!- jcowan_ [c6b912cf@gateway/web/freenode/ip.198.185.18.207] has quit [Ping timeout: 258 seconds] 21:18:05 githogori [~githogori@c-50-131-15-16.hsd1.ca.comcast.net] has joined #scheme 21:19:14 -!- homie [~levgue@xdsl-84-44-152-107.netcologne.de] has quit [Read error: Connection reset by peer] 21:20:28 homie [~levgue@xdsl-78-35-141-71.netcologne.de] has joined #scheme 21:23:45 -!- euccastro [~es@102.Red-79-158-173.staticIP.rima-tde.net] has quit [Remote host closed the connection] 21:26:25 -!- phax [~phax@unaffiliated/phax] has quit [Quit: Leaving] 21:29:21 snizzo [~quassel@adsl-ull-138-243.49-151.net24.it] has joined #scheme 21:33:47 offby1: Funny thing is, I needed this today: . ESK artifact, you know. 21:37:02 -!- stis1 [~stis@1-1-1-39a.veo.vs.bostream.se] has left #scheme 21:39:02 hba_ [~hba@187.171.205.0] has joined #scheme 21:39:02 -!- hba_ [~hba@187.171.205.0] has quit [Client Quit] 21:41:19 euccastro [~euccastro@214.Red-83-59-7.dynamicIP.rima-tde.net] has joined #scheme 21:44:03 Blkt [~user@82.84.176.4] has joined #scheme 21:46:07 -!- snizzo [~quassel@adsl-ull-138-243.49-151.net24.it] has quit [Remote host closed the connection] 21:51:55 *offby1* checks 21:52:24 yay me 21:53:36 I was just consulting with a friend yesterday about bumpiness in ESK. 21:53:59 Turns out it (or the v2 branch, anyway) requires Emacs24, and that wasn't obvious to Mr Friend who is still using 23.3 21:54:04 *offby1* checks to see if this is #emacs 21:54:19 hmm, apparently this channel is about something called "scheme" 21:54:38 -!- choas [~lars@p4FDC5288.dip.t-dialin.net] has quit [Ping timeout: 240 seconds] 21:55:25 -!- CampinSa1 [~CampinSam@24-176-98-217.dhcp.jcsn.tn.charter.com] has quit [Read error: Connection reset by peer] 21:57:59 offby1: inconceivable! 21:58:11 good evening everyone 22:01:12 qu1j0t3: You keep using that word. I do not think it means what you think it means. 22:03:20 cky: We are the Knights Who Say Nil 22:03:46 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Ping timeout: 260 seconds] 22:06:26 -!- SeanTAllen [u4855@gateway/web/irccloud.com/x-foeuszsetcujsupc] has quit [Remote host closed the connection] 22:06:54 cky: a synonym to impossible? 22:06:58 icrazyhack [~horieyui@222.47.134.145] has joined #scheme 22:08:17 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 22:12:50 -!- _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has quit [Read error: Connection reset by peer] 22:13:37 wingo [~wingo@90.164.198.39] has joined #scheme 22:14:49 it's conceivable, C-Keen, that you aren't familiar with The Princess Bride. 22:15:20 qu1j0t3: in fact I am, so that kinda makes the statement true I guess 22:15:43 cswords__ [~cswords@c-98-223-234-80.hsd1.in.comcast.net] has joined #scheme 22:15:55 C-Keen: oh 22:16:03 -!- langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has quit [Ping timeout: 244 seconds] 22:16:12 C-Keen: then you were deadpanning! 22:16:25 *qu1j0t3* was fooled! 22:16:27 qu1j0t3: I am sleeping (now) 22:16:30 C-Keen: nite 22:16:35 gnite :) 22:17:15 -!- rsimoes [~rsimoes@76-253-76-158.lightspeed.austtx.sbcglobal.net] has quit [Ping timeout: 252 seconds] 22:19:28 -!- cswords_ [~cswords@c-98-223-234-80.hsd1.in.comcast.net] has quit [Ping timeout: 252 seconds] 22:20:03 rsimoes [~rsimoes@76-253-76-158.lightspeed.austtx.sbcglobal.net] has joined #scheme 22:28:23 metasyntax [~taylor@c-98-214-251-184.hsd1.in.comcast.net] has joined #scheme 22:36:41 SeanTAllen [u4855@gateway/web/irccloud.com/x-rrzbycwgmokhoupk] has joined #scheme 22:43:45 -!- gffa [~gffa@unaffiliated/gffa] has quit [Quit: sleep] 22:51:50 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 22:52:00 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 22:53:30 -!- homie [~levgue@xdsl-78-35-141-71.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 22:54:01 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 22:54:14 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 22:54:24 -!- tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 22:54:38 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 22:54:47 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 22:55:04 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 22:55:23 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 22:55:30 _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has joined #scheme 22:55:39 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 22:55:45 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 22:58:36 -!- platinuum [~platinuum@S0106602ad06b80ad.vc.shawcable.net] has quit [Ping timeout: 252 seconds] 23:03:17 -!- wingo [~wingo@90.164.198.39] has quit [Ping timeout: 252 seconds] 23:03:20 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 23:06:08 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 23:07:06 -!- ToxicFrog [~ToxicFrog@24-246-40-169.cable.teksavvy.com] has quit [Read error: Connection reset by peer] 23:07:52 ToxicFrog [~ToxicFrog@24-246-40-169.cable.teksavvy.com] has joined #scheme 23:08:40 -!- joast [~rick@76.178.187.164] has quit [Read error: Operation timed out] 23:10:05 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 23:10:47 -!- euccastro [~euccastro@214.Red-83-59-7.dynamicIP.rima-tde.net] has quit [Read error: Connection reset by peer] 23:11:37 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 23:11:49 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 23:12:46 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 23:13:38 -!- bweaver [~user@host-68-169-158-230.WISOLT2.epbfi.com] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 23:15:42 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 23:16:02 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 23:16:45 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 23:19:03 gnuvince_ [~vince@ip-96-43-229-40.dsl.netrevolution.com] has joined #scheme 23:19:16 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 23:19:49 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Client Quit] 23:20:11 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 23:21:58 -!- dnolen [aa95640a@gateway/web/freenode/ip.170.149.100.10] has quit [Quit: Page closed] 23:22:47 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 23:22:49 sureaint [~mortimer@65-86-91-130.client.dsl.net] has joined #scheme 23:24:19 -!- shurane [~mortimer@65-86-91-130.client.dsl.net] has quit [Ping timeout: 245 seconds] 23:29:38 -!- sureaint [~mortimer@65-86-91-130.client.dsl.net] has quit [Ping timeout: 240 seconds] 23:31:03 -!- jeapostrophe [~jay@lallab.cs.byu.edu] has quit [Ping timeout: 252 seconds] 23:32:54 homie [~levgue@xdsl-78-35-141-71.netcologne.de] has joined #scheme 23:34:59 drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has joined #scheme 23:43:01 -!- icrazyhack [~horieyui@222.47.134.145] has quit [Quit: http://www.cnblogs.com/crazyhack] 23:43:54 dous [~dous@unaffiliated/dous] has joined #scheme 23:48:58 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Quit: Leaving] 23:58:16 is it true that racket is not a scheme all the way through? 23:58:33 i've heard that it has an r5rs mode, but the rest is its own language 23:59:13 realitygrill [~realitygr@76.226.203.106] has joined #scheme