00:08:03 -!- kniu [~kniu@HOHOHO.RES.CMU.EDU] has quit [Read error: Operation timed out] 00:08:19 kniu [~kniu@HOHOHO.RES.CMU.EDU] has joined #scheme 00:17:04 -!- rdd [~rdd@c83-250-48-164.bredband.comhem.se] has quit [Ping timeout: 252 seconds] 00:37:17 -!- Kerrick [~Kerrick@kerrick.student.iastate.edu] has quit [Read error: Operation timed out] 00:39:52 saccade [~saccade@209-6-54-113.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has joined #scheme 01:11:44 Rakko [~rakko@71-90-73-192.dhcp.ftbg.wi.charter.com] has joined #scheme 01:16:26 hypercube32 [~hypercube@125.155.202.68.cfl.res.rr.com] has joined #scheme 01:43:19 neilv: what did I do? 01:50:35 Kerrick [~Kerrick@kerrick.student.iastate.edu] has joined #scheme 01:55:54 -!- MrFahrenheit [~RageOfTho@users-55-51.vinet.ba] has quit [Ping timeout: 258 seconds] 01:59:16 -!- masm [~masm@bl15-232-6.dsl.telepac.pt] has quit [Quit: Leaving.] 02:03:53 -!- Riastradh [debian-tor@fsf/member/riastradh] has quit [Ping timeout: 245 seconds] 02:04:18 -!- pdelgallego [~pdelgalle@1503031474.dhcp.dbnet.dk] has quit [Ping timeout: 240 seconds] 02:10:01 -!- mjonsson [~mjonsson@cpe-98-14-173-5.nyc.res.rr.com] has quit [Remote host closed the connection] 02:14:34 mjonsson [~mjonsson@cpe-98-14-173-5.nyc.res.rr.com] has joined #scheme 02:14:48 -!- rbarraud_ [~rbarraud@118-92-2-40.dsl.dyn.ihug.co.nz] has quit [Read error: Connection reset by peer] 02:16:41 xwl [~user@117.79.235.217] has joined #scheme 02:30:19 -!- xwl [~user@117.79.235.217] has quit [Ping timeout: 240 seconds] 02:35:19 leppie [~lolcow@196-215-63-152.dynamic.isadsl.co.za] has joined #scheme 02:49:56 -!- Fare [~Fare@64.119.159.126] has quit [Ping timeout: 276 seconds] 02:49:57 rbarraud [~rbarraud@118-92-2-40.dsl.dyn.ihug.co.nz] has joined #scheme 02:50:19 Checkie [6201@unaffiliated/checkie] has joined #scheme 02:52:34 timj__ [~timj@e176192097.adsl.alicedsl.de] has joined #scheme 02:56:38 -!- timj_ [~timj@e176196218.adsl.alicedsl.de] has quit [Ping timeout: 276 seconds] 02:59:45 -!- Kerrick [~Kerrick@kerrick.student.iastate.edu] has quit [Quit: Kerrick] 02:59:58 -!- luz [~davids@201.17.88.176] has quit [Quit: Client exiting] 03:05:41 eli: i was going to bounce off you some change i was going to make. but i already made it 03:10:25 neilv: Changes to what? 03:17:10 your list email just burnt the pasta soup that i was making in the background 03:17:49 towlie sez: always use a timer 03:18:25 *eli* apologizes 03:18:33 http://stackoverflow.com/questions/3693447/cannot-create-apply-function-with-static-language/ 03:18:33 -rudybot:#scheme- http://tinyurl.com/2b8rfgv 03:18:54 That's a very nice demonstration for how deeply confused Haskellers can be about lispish languages. 03:19:13 s/lispish/lispy/, probably. 03:19:47 elf, I like brian cambells reply 03:19:56 sorry, eli 03:21:50 jonrafkind: You mean his comment about this specific example? 03:21:54 yea 03:22:12 like, way to completely miss the point 03:22:26 I just replied to that -- if it's valid to show any way of doing what he wants, then "6" works even better... 03:22:38 yea heh 03:22:57 I'm actually very surprised at how deeply confused these haskellers are. 03:23:16 well theres no need to understand things they dont normally use 03:23:18 They seem to completely miss the point, which is why they bring up folding and `$'. 03:23:41 And even worse, it looks like they're unaware that their language has *only* one-argument functions. 03:24:19 Probably a good question to ask an average Haskeller is "how come your language doesn't even have nullary functions?". 03:24:24 I wonder how many will get that. 03:28:35 eli: just to confirm: this handin client sends a client certificate, which authenticates the client to the server, not simply authenticates the server's certificate against a ca, correct? 03:31:50 -!- jonrafkind [~jon4@jonr5.dsl.xmission.com] has quit [Ping timeout: 272 seconds] 03:33:26 kanak [~user@STUDENT-TWENTY-FIVE.MIT.EDU] has joined #scheme 03:34:57 -!- kanak [~user@STUDENT-TWENTY-FIVE.MIT.EDU] has quit [Remote host closed the connection] 03:40:32 Lispischen Sprachen 03:42:46 what good is the #' before function names? 03:48:23 Rakko: You're probably thinking of Common Lisp. #' has a different meaning in Scheme. 03:48:43 Rakko: you're probably talking about CL -- which has two separate namespaces for functions and for values. 03:49:05 neilv: I'm not following your question. 03:49:10 Hmm, actually I was talking about whichever dialect was used in that stackoverflow thread. 03:49:28 Rakko: yes, that's CL then. 03:49:53 Oh, I read that about CL namespaces the other day. So you take a function named + and if you type #'+ you can use it as a variable? 03:50:00 or value, I should say 03:50:01 Rakko: (apply foo l) refers to the value of the `foo' variable, and (apply #'foo l) refers to the `foo' function. 03:50:14 eli: does the handin server use *client* certificates? (just making sure we are not confusing terms) 03:50:31 Rakko: Yes, #'+ is a value that is the addition function, but just + is a reference to a + variable. 03:51:42 neilv: the server/client talk with a known certificate, with the public key being distributed with it. 03:53:26 eli: on the client end, do you use both ssl-load-certificate-chain! and ssl-load-private-key! ? 03:54:44 neilv: It uses `ssl-load-verify-root-certificates!'. 13:47:38 ccl-logbot [~ccl-logbo@setf.clozure.com] has joined #scheme 13:47:38 13:47:38 -!- names: ccl-logbot ASau Jafet Fare jmcphers xwl bgs100 stis mornfall atomx MrFahrenheit leppie Crito gravicappa hohoho fradgers- incubot stepnem dzhus ak70 luz martinhex Checkie kuribas homie wbooze Blkt pdelgallego snappy masm rdd githogori foof Nshag emma antoszka tltstc Adrinael weinholt clklein_ sir_lewk_ Adamant rudybot Modius prince_ franki^ Baughn nowhereman timj__ saccade kniu pygospa offby1 somnium snorble IJP adadglgmut FurnaceBoy puddingpimp 13:47:38 -!- names: ToxicFrog yosafbridge alaricsp rapacity REPLeffect tewk_ jao zbigniew z0d cipher copumpkin gnomon TE263w` acarrico ray shawnps zilt klutometis niko felipe Quadrescence malorie ecraven adzuci preflex lusory samth_away bzzbzz metasyntax stamourv sjamaan Pepe_ mhoye jensn easy4 wgd pjb maharba csmrfx_ `micro dfeuer Hal9k ski e-future_ e-future markatto certainty eno alexand31 rotty C-Keen sloyd futilius Leonidas saccade_ shardz gabot ASau` ineiros aoh 13:47:38 -!- names: rmrfchik roderic duncanm elly chandler kloeri elf rrm3 spacebat clog askhader Obfuscate DerGuteMoritz erg inimino Khisanth mario-goulart lisppaste Axioplase_ qebab joast tessier fda314925 nasloc__ eli danking_ tizoc jimster 13:48:49 alaricsp_ [~alaric@relief.warhead.org.uk] has joined #scheme 13:49:26 zeroish [~zeroish@135.207.174.50] has joined #scheme 13:49:32 -!- alaricsp [~alaric@relief.warhead.org.uk] has quit [Ping timeout: 265 seconds] 13:55:10 -!- ak70 [~ak70@80.77.204.157] has left #scheme 13:58:57 -!- alaricsp_ is now known as alaricsp 14:17:24 HG` [~HG@xdsl-188-118-136-49.dip.osnanet.de] has joined #scheme 14:26:39 femtoo [~femto@95-89-248-82-dynip.superkabel.de] has joined #scheme 14:28:25 -!- xwl [~user@117.79.235.225] has quit [Remote host closed the connection] 14:32:00 -!- kuribas [~user@d54C439D4.access.telenet.be] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 14:43:45 -!- kniu [~kniu@HOHOHO.RES.CMU.EDU] has quit [Remote host closed the connection] 14:53:22 xwl [~user@117.79.235.225] has joined #scheme 15:54:44 ccl-logbot [~ccl-logbo@setf.clozure.com] has joined #scheme 15:54:44 15:54:44 -!- names: ccl-logbot fjellfras kniu femtoo HG` zeroish alaricsp ASau Jafet Fare jmcphers bgs100 stis mornfall atomx MrFahrenheit leppie Crito gravicappa hohoho fradgers- incubot stepnem dzhus luz martinhex Checkie homie wbooze Blkt pdelgallego snappy masm rdd githogori foof Nshag emma antoszka tltstc Adrinael weinholt clklein_ sir_lewk_ Adamant rudybot Modius prince_ franki^ Baughn nowhereman timj__ saccade pygospa offby1 somnium snorble adadglgmut FurnaceBoy 15:54:44 -!- names: puddingpimp ToxicFrog yosafbridge rapacity REPLeffect tewk_ jao zbigniew z0d cipher copumpkin gnomon TE263w` acarrico ray shawnps zilt klutometis niko felipe Quadrescence malorie ecraven adzuci preflex lusory samth_away bzzbzz metasyntax stamourv sjamaan Pepe_ mhoye jensn easy4 wgd pjb maharba csmrfx_ `micro dfeuer Hal9k ski e-future_ e-future markatto certainty eno alexand31 rotty C-Keen sloyd futilius Leonidas saccade_ jimster tizoc danking_ eli 15:54:44 -!- names: nasloc__ fda314925 tessier joast qebab Axioplase_ lisppaste mario-goulart Khisanth inimino erg DerGuteMoritz Obfuscate askhader shardz gabot ASau` ineiros aoh clog spacebat rrm3 elf kloeri chandler elly duncanm roderic rmrfchik 16:06:38 bremner_ [~bremner@yantan.tethera.net] has joined #scheme 16:33:42 mjonsson [~mjonsson@cpe-98-14-173-5.nyc.res.rr.com] has joined #scheme 16:39:58 dzhus89 [~sphinx@95-24-14-195.broadband.corbina.ru] has joined #scheme 16:41:20 -!- dzhus [~sphinx@89-178-139-4.broadband.corbina.ru] has quit [Ping timeout: 276 seconds] 16:41:39 -!- dzhus89 is now known as dzhus 16:46:30 -!- bremner_ [~bremner@yantan.tethera.net] has quit [Quit: ZNC - http://znc.sourceforge.net] 16:47:09 bremner [~bremner@yantan.tethera.net] has joined #scheme 16:48:13 -!- fjellfras [~abhijat@123.236.183.254] has left #scheme 16:50:53 kar8nga [~kar8nga@91-114-226-112.adsl.highway.telekom.at] has joined #scheme 16:52:28 Scala_ [~agscala@198.111.39.24] has joined #scheme 17:12:35 langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has joined #scheme 17:14:28 -!- hohoho [~hohoho@ntkngw229253.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Remote host closed the connection] 17:19:04 koisoke [xef4@epilogue.org] has joined #scheme 17:22:08 -!- langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has quit [Ping timeout: 272 seconds] 17:23:07 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Ping timeout: 240 seconds] 17:23:36 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 17:27:41 hohoho [~hohoho@ntkngw229253.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 17:29:30 langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has joined #scheme 17:31:51 -!- Scala_ [~agscala@198.111.39.24] has quit [Ping timeout: 240 seconds] 17:35:06 hypercube32 [~hypercube@125.155.202.68.cfl.res.rr.com] has joined #scheme 17:36:48 -!- langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has quit [Ping timeout: 240 seconds] 17:40:05 -!- Blkt [~user@dynamic-adsl-94-37-246-235.clienti.tiscali.it] has quit [Read error: Connection reset by peer] 17:40:42 -!- kar8nga [~kar8nga@91-114-226-112.adsl.highway.telekom.at] has quit [Remote host closed the connection] 17:43:50 edw [~user@static-72-94-199-21.phlapa.fios.verizon.net] has joined #scheme 17:44:25 MIT Scheme's Paredit mode seems to lack slurping and barfing. Am I mistaken? 17:45:58 Blkt [~user@dynamic-adsl-94-37-246-235.clienti.tiscali.it] has joined #scheme 17:46:53 -!- edw [~user@static-72-94-199-21.phlapa.fios.verizon.net] has quit [Remote host closed the connection] 17:47:06 edw [~user@static-72-94-199-21.phlapa.fios.verizon.net] has joined #scheme 17:49:37 MIT Scheme's Paredit seems to lack slurping and barfing; am I mistaken? (Do I hear an echo?) 17:50:23 are you going to keep asking until someone tells you they don't know the answer? 17:51:15 edw: wait until Riastradh shows up, or leave a memo for him; I assume he'll know 17:52:52 jonrafkind [~jon4@jonr5.dsl.xmission.com] has joined #scheme 17:52:55 No, bremner, Emacs had a seizure, leading me to question whether my message was sent. 17:54:14 unthinkable 17:55:14 Hey, long time no see! 17:56:40 offby1: I was so irritated by bremner (sorry bremner!) that I didn't even notice that you made the Riastadh comment. 17:57:38 -!- edw [~user@static-72-94-199-21.phlapa.fios.verizon.net] has quit [Remote host closed the connection] 17:57:45 RageOfThou [~RageOfTho@users-33-168.vinet.ba] has joined #scheme 17:57:53 edw [~user@static-72-94-199-21.phlapa.fios.verizon.net] has joined #scheme 17:58:04 edw: goodness. IRC may not be a good medium for you :) 17:58:34 Blkt` [~user@dynamic-adsl-94-34-31-251.clienti.tiscali.it] has joined #scheme 17:58:40 wbooze` [~user@xdsl-78-34-108-24.netcologne.de] has joined #scheme 17:58:45 homie` [~user@xdsl-78-34-108-24.netcologne.de] has joined #scheme 17:59:03 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 18:00:27 ya rly 18:00:43 edw: I lurk here pretty much all the time, but rarely pipe up. 18:00:46 -!- wbooze [~user@xdsl-78-34-201-254.netcologne.de] has quit [Ping timeout: 252 seconds] 18:00:58 -!- homie [~user@xdsl-78-34-201-254.netcologne.de] has quit [Ping timeout: 245 seconds] 18:01:11 -!- MrFahrenheit [~RageOfTho@users-55-147.vinet.ba] has quit [Ping timeout: 240 seconds] 18:01:47 -!- atomx [~user@93.112.81.240] has quit [Remote host closed the connection] 18:02:30 -!- Blkt [~user@dynamic-adsl-94-37-246-235.clienti.tiscali.it] has quit [Ping timeout: 272 seconds] 18:03:08 ddp_ [~ddp@c-67-169-77-221.hsd1.ca.comcast.net] has joined #scheme 18:04:43 -!- edw [~user@static-72-94-199-21.phlapa.fios.verizon.net] has quit [Ping timeout: 245 seconds] 18:06:06 -!- ddp_ [~ddp@c-67-169-77-221.hsd1.ca.comcast.net] has left #scheme 18:11:32 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has quit [Ping timeout: 272 seconds] 18:11:43 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 18:19:56 -!- femtoo [~femto@95-89-248-82-dynip.superkabel.de] has quit [Quit: Leaving] 18:21:31 -!- ASau [~user@83.69.227.32] has quit [Ping timeout: 240 seconds] 18:38:09 femtoo [~femto@95-89-248-82-dynip.superkabel.de] has joined #scheme 18:41:10 drwho [~drwho@c-68-63-83-105.hsd1.pa.comcast.net] has joined #scheme 18:43:44 -!- HG` [~HG@xdsl-188-118-136-49.dip.osnanet.de] has quit [Quit: Leaving.] 18:57:58 -!- bremner [~bremner@yantan.tethera.net] has quit [Ping timeout: 252 seconds] 19:05:15 Mr-Cat [c2babc66@gateway/web/freenode/ip.194.186.188.102] has joined #scheme 19:08:43 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Ping timeout: 240 seconds] 19:10:05 -!- dzhus [~sphinx@95-24-14-195.broadband.corbina.ru] has quit [Ping timeout: 265 seconds] 19:12:58 -!- Blkt` is now known as Blkt 19:19:45 -!- wbooze` [~user@xdsl-78-34-108-24.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 19:19:52 -!- homie` [~user@xdsl-78-34-108-24.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 19:20:39 bremner_ [~bremner@yantan.tethera.net] has joined #scheme 19:25:26 wbooze [~user@xdsl-78-34-108-24.netcologne.de] has joined #scheme 19:25:29 homie [~user@xdsl-78-34-108-24.netcologne.de] has joined #scheme 19:28:36 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 19:40:18 edw [~user@c-71-225-69-121.hsd1.pa.comcast.net] has joined #scheme 19:41:01 bremner_: Perhaps. I don't like smugness. 19:43:53 But I've since moved on to loud fatuousness. 19:49:26 *offby1* specializes in random irrelevance 20:02:01 *FurnaceBoy* lurks in an irrelevant, smug and fatuous way, while abusing emote 20:03:56 I'm really out of date here: I'm using Riastradh's 1.3 S48 reference, which refers to a CL-like `format' structure, put it doesn't seem to be in 1.8. A casualty of Unicode? 20:07:30 ASau [~user@83.69.227.32] has joined #scheme 20:09:23 *shrug* 20:09:32 Mmm. 20:10:37 Who needs `format' anyway when you have `map' and long, ugly lists of string literals and objects? 20:15:08 the ytools author had a good alternative to format (in CL) 20:15:16 and then, there are format combinators 20:16:36 Man, and I thought Scheme was a bit weak in tooling and libraries *before* you told me that! 20:22:50 -!- sjamaan [~sjamaan@netbsd/developer/sjamaan] has quit [Ping timeout: 264 seconds] 20:29:57 sjamaan [~sjamaan@frohike.xs4all.nl] has joined #scheme 20:29:57 -!- sjamaan [~sjamaan@frohike.xs4all.nl] has quit [Changing host] 20:29:57 sjamaan [~sjamaan@netbsd/developer/sjamaan] has joined #scheme 20:33:06 wingo [~wingo@83.44.190.100] has joined #scheme 20:39:54 evening, schemers 20:41:37 hey 20:41:48 -!- edw [~user@c-71-225-69-121.hsd1.pa.comcast.net] has quit [Ping timeout: 245 seconds] 20:41:55 I was just trying to build guile on Ubuntu. It's hard! Lotta stuff I gotta download and install :-| 20:43:14 offby1, best thing to do is use the packages for supporting stuff 20:43:30 then build guile itself (if you want to have the very latest version) 20:43:32 hypercube32: but I don't think there -are- packages for the supporting stuff. 20:43:53 offby1, which guile version are you trying to install? 20:43:54 I couln't figure out how to satisfy its demand for "bdw-gc", e.g. 20:44:06 uh duno about that one 20:44:14 offby1, have you tried chicken scheme? 20:44:25 offby1, its way better 20:44:36 hypercube32: I've tried it, but I wanted guile for whatever reason. 20:44:38 i went from guile to chick myself 20:44:41 I was trying to build the "release_1-9-12" tag. 20:44:47 ah 20:45:02 chick/chicken rather 20:46:44 -!- sjamaan [~sjamaan@netbsd/developer/sjamaan] has quit [Remote host closed the connection] 20:47:17 yes bdw-gc is a problem 20:47:22 hypercube32: also I picked just now to vent, since wingo is the maintainer :) 20:47:34 :) 20:47:59 -!- eno [~eno@nslu2-linux/eno] has quit [Read error: Connection reset by peer] 20:48:02 ha 20:48:04 ok 20:48:22 wait wingo you maintain the guile project itself? 20:48:41 hypercube32: yes, but only since recently 20:48:47 co-maintain actually 20:48:56 anyway, chicken is fun too :) 20:49:01 ahh cool, guile is a great project it just has limitations that i cant stop at lately :/ 20:50:51 eno [~eno@nslu2-linux/eno] has joined #scheme 20:52:02 sjamaan_ [~sjamaan@frohike.xs4all.nl] has joined #scheme 20:54:04 -!- femtoo [~femto@95-89-248-82-dynip.superkabel.de] has quit [Quit: Leaving] 20:55:53 edw [~user@pool-141-158-49-219.phil.east.verizon.net] has joined #scheme 21:00:23 edw_ [~user@pool-141-158-49-219.phil.east.verizon.net] has joined #scheme 21:03:39 -!- bremner_ [~bremner@yantan.tethera.net] has quit [Quit: ZNC - http://znc.sourceforge.net] 21:05:10 f0d [~root@unaffiliated/f0d] has joined #scheme 21:05:34 hi guys, i want to learn how to program, is SICP a good book for a beginner. [NOTE] I am not at all good with mathematics 21:08:19 -!- alaricsp [~alaric@relief.warhead.org.uk] has quit [Ping timeout: 240 seconds] 21:08:53 -!- Fare [~Fare@64.119.159.126] has quit [Ping timeout: 245 seconds] 21:09:40 f0d: maybe not. 21:09:46 f0d: get it from the library and see for yourself. 21:10:00 why not? 21:10:15 f0d, its very math based thats why 21:10:30 ah 21:10:35 yeah im not ata ll good 21:10:35 f0d, its not near as explicit as imperative languages 21:10:58 i'm in junior high and i haven't covered as much as i would like, nor am i good at what i have covered 21:11:06 i just want to write programs that are elegant :P 21:11:39 f0d, try some language that isnt functional first, like python... 21:11:53 :/ 21:11:59 f0d, python is a good first experience because it has lambdas in it but arent required 21:12:10 thanks 21:12:11 f0d, so when you're ready to tackle it you have an open door 21:12:18 specbot [~specbot@common-lisp.net] has joined #scheme 21:12:38 -!- gravicappa [~gravicapp@ppp85-140-117-65.pppoe.mtu-net.ru] has quit [Ping timeout: 245 seconds] 21:13:17 hypercube32: what about um 21:13:19 the little schemer? 21:13:21 offby1 21:14:14 f0d, you really should learn some computer science before bothering, but thats my opinion 21:14:51 f0d: I never liked "The Little Schemer", but lots of people did 21:15:19 hypercube32: which book would you suggest for that 21:15:55 minion [~minion@common-lisp.net] has joined #scheme 21:16:34 -!- leppie [~lolcow@196-215-63-152.dynamic.isadsl.co.za] has quit [Ping timeout: 252 seconds] 21:16:52 f0d, i dont know of any books, i learned it decades ago :/ 21:17:01 heh 21:17:13 The Little Schemer is mind numbingly boring if you have the slightest clue what you're doing. And if you *think* you know what you're doing (and you're wrong) you'll start skimming and miss the point. It's only good for Winnie the Pooh types. 21:17:24 f0d, http://en.wikipedia.org/wiki/Computer_science 21:17:35 yay, I finally got guile's "configure" to finish. 21:17:44 ooh, he uses the slick modern git-style quiet makefile. 21:18:23 kar8nga [~kar8nga@78.104.81.189] has joined #scheme 21:18:47 thanks 21:18:49 -!- f0d [~root@unaffiliated/f0d] has left #scheme 21:19:09 bremner_ [~bremner@yantan.tethera.net] has joined #scheme 21:19:47 wingo: "configure" exited with 0, yet apparently failed to find the libgc library. 21:20:45 It's rather amateur, but I enjoy the exercises. 21:21:04 (re: the little schemer) 21:22:38 offby1: send config.log to bug-guile@gnu.org (no subscription required) 21:24:06 wingo: tx 21:27:00 -!- fradgers- [~fradgers-@5e055c8a.bb.sky.com] has quit [Remote host closed the connection] 21:27:38 -!- edw_ [~user@pool-141-158-49-219.phil.east.verizon.net] has quit [Ping timeout: 245 seconds] 21:27:38 -!- edw [~user@pool-141-158-49-219.phil.east.verizon.net] has quit [Ping timeout: 245 seconds] 21:29:02 leppie [~lolcow@196-215-63-152.dynamic.isadsl.co.za] has joined #scheme 21:29:31 Kerrick [~Kerrick@kerrick.student.iastate.edu] has joined #scheme 21:30:49 -!- kar8nga [~kar8nga@78.104.81.189] has quit [Remote host closed the connection] 21:35:49 -!- bremner_ [~bremner@yantan.tethera.net] has quit [Ping timeout: 252 seconds] 21:41:12 atomx [~user@93.112.81.240] has joined #scheme 21:41:14 -!- Kerrick [~Kerrick@kerrick.student.iastate.edu] has quit [Read error: Operation timed out] 21:53:39 bremner_ [~bremner@yantan.tethera.net] has joined #scheme 21:59:10 neilv [~user@dsl092-071-029.bos1.dsl.speakeasy.net] has joined #scheme 22:00:08 -!- jonrafkind [~jon4@jonr5.dsl.xmission.com] has quit [Read error: Operation timed out] 22:00:33 -!- wingo [~wingo@83.44.190.100] has quit [Ping timeout: 245 seconds] 22:10:44 -!- bremner_ [~bremner@yantan.tethera.net] has quit [Quit: ZNC - http://znc.sourceforge.net] 22:11:07 has anyone else in wg2 been denied access to the voting spreadsheet? 22:11:27 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has quit [Remote host closed the connection] 22:20:59 has anyone else thought of seizing control of the steering committee in a (hopefully) bloodless coup, and sending the working groups off to re-education camps? 22:26:44 -!- neilv [~user@dsl092-071-029.bos1.dsl.speakeasy.net] has left #scheme 22:27:25 -!- Mr-Cat [c2babc66@gateway/web/freenode/ip.194.186.188.102] has quit [Quit: Page closed] 22:31:09 bremner_ [~bremner@yantan.tethera.net] has joined #scheme 22:38:24 rbarraud [~rbarraud@118-92-19-211.dsl.dyn.ihug.co.nz] has joined #scheme 22:38:37 Kerrick [~Kerrick@kerrick.student.iastate.edu] has joined #scheme 22:39:27 -!- pygospa [~pygospa@g227158144.adsl.alicedsl.de] has quit [Read error: Operation timed out] 22:40:36 petafile [~ben@S010600146c99d4d3.vc.shawcable.net] has joined #scheme 22:41:37 Is there a better way in scheme (racket in particular) to get all but the last member of a list than (reverse (rest (reverse mylist))) ? 22:42:20 pygospa [~pygospa@g226239208.adsl.alicedsl.de] has joined #scheme 22:42:59 -!- wbooze [~user@xdsl-78-34-108-24.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 22:43:09 -!- homie [~user@xdsl-78-34-108-24.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 22:44:45 mbohun [~mbohun@ppp115-156.static.internode.on.net] has joined #scheme 22:44:58 -!- koisoke [xef4@epilogue.org] has left #scheme 22:45:19 (drop-right mylist 1) 22:51:59 awesome, thanks 23:01:37 -!- bremner_ [~bremner@yantan.tethera.net] has quit [Ping timeout: 252 seconds] 23:01:50 -!- leppie [~lolcow@196-215-63-152.dynamic.isadsl.co.za] has quit [Ping timeout: 240 seconds] 23:03:11 bremner_ [~bremner@yantan.tethera.net] has joined #scheme 23:07:50 -!- rdd [~rdd@c83-250-48-164.bredband.comhem.se] has quit [Ping timeout: 264 seconds] 23:10:58 -!- bremner_ [~bremner@yantan.tethera.net] has quit [Ping timeout: 252 seconds] 23:11:09 -!- masm [~masm@bl15-232-6.dsl.telepac.pt] has quit [Quit: Leaving.] 23:13:53 -!- pdelgallego [~pdelgalle@1503031474.dhcp.dbnet.dk] has quit [Ping timeout: 240 seconds] 23:19:18 leppie [~lolcow@196-215-63-152.dynamic.isadsl.co.za] has joined #scheme 23:22:42 haesbaert [~haesbaert@187.36.52.149] has joined #scheme 23:29:10 bremner_ [~bremner@yantan.tethera.net] has joined #scheme 23:32:59 IJP [~Ian@host86-163-223-137.range86-163.btcentralplus.com] has joined #scheme 23:41:05 -!- rbarraud [~rbarraud@118-92-19-211.dsl.dyn.ihug.co.nz] has quit [Read error: Operation timed out] 23:55:33 Fare [~Fare@ita4fw1.itasoftware.com] has joined #scheme 23:57:49 FunkyDrummer [~RageOfTho@users-55-242.vinet.ba] has joined #scheme