00:01:09 -!- phax [~phax@unaffiliated/phax] has quit [Quit: Leaving] 00:02:18 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 00:09:51 sharkspirit [4fa8bc9f@gateway/web/freenode/ip.79.168.188.159] has joined #scheme 00:13:47 hello? can someone help with a scheme work? 00:15:12 [0] Go ahead and ask :-) ... and some one will try to help.. if not right now, whenever they happen to wander over to the computer 00:16:20 i already have the code to dijkstra algorithm 00:16:53 but now they ask me to create a new procedure that is a dijkstra modified 00:17:49 in the way that if i ask the path between (A B) wich is (A C D B) for exemple...and then i ask (A D) instead of calculating everything again 00:18:37 he picks up the ( A C D B) from the previous and returns (A C D) 00:18:42 (not english sry) 00:19:52 This problem statement is not clear. Do you want to cache only the last result? 00:21:07 i want him to use the last result (if possible) to find the fastest way (like dijkstra) but without calculating the path again 00:21:42 (let ((last-path '())) (define (cached-dijkstra src dst) (if (and (eql src (car last-path)) (member dst last-path)) (reverse (member dst (reverse last-path))) (begin (set! last-path (dijkstra src dst)) last-path)))) 00:22:15 src =source and dst= destination? 00:22:28 Yes 00:22:41 peddie [~peddie@repl.esden.net] has joined #scheme 00:23:00 im a bit slow...but thanks...im going to see what u just wrote =P 00:23:30 But that's perhaps not what is requested. Try to elucidate the problem statement... 00:23:45 its hard to explain in not native language xD 00:24:00 Accept-Language: fr, es, en 00:24:23 eql whats this? 00:24:37 eqv? 00:24:46 (I'm a Common Lisp, sorry). 00:25:38 ill try to explain my best now =P 00:25:40 so 00:26:04 -!- ijp [~user@host86-183-35-200.range86-183.btcentralplus.com] has quit [Quit: The garbage collector got me] 00:26:07 i have a procedure that uses dijkstra called shortest-path 00:26:31 the inputs are 1 src 1dst and 1 graph 00:26:37 and the outputs are 00:27:05 ((nod distance nod distance nod ....) . total distance) 00:27:19 thats what i've done 00:27:25 now i want one that 00:27:31 inputs are 1 graph 00:27:49 and does the following 00:28:14 (shortes-path 'A 'F) 00:28:32 nodes processed (A C B) 00:28:34 output 00:28:44 ((A 9 B 2 F).11) 00:28:47 but then 00:28:52 if i 00:28:56 ask 00:29:07 (shortest path 'A 'C) 00:29:13 no nodes are processed 00:29:16 and outputs 00:29:26 ((A 7 C) . 7) 00:29:28 kpal [~kpal@46-252-118-54.sibtele.com] has joined #scheme 00:29:56 ups 00:29:57 Check my solution. Adapt it for your output data. 00:29:58 w8 00:30:01 ok 00:30:21 btw 00:30:23 whats this 00:30:24 member 00:30:25 ? 00:30:38 read r5rs 00:31:01 50 pages... 00:31:23 If you can't read 50 pages specifying your programming language, perhaps you should rather try to sell fries on the beach... 00:31:41 ?? i can read 50 pages 00:31:52 its a work for 3, but im doing it alone thats why the trouble im having 00:32:48 sharkspirit: and when you work at 3, each read a third of the language definition... 00:32:54 My advice: go sell fries. 00:35:06 i have like 2 months of scheme programming...thanks for the advice non the less 00:35:24 And you need more than 2 months to read 50 pages? I stand on my advice. 00:36:14 i never heard of that book, i have a 650 page book about scheme 00:36:15 not that one 00:37:25 sharkspirit: that's a pity. 00:37:40 Browse http://www.schemers.org/ 00:39:54 startling [~startling@adsl-99-24-228-124.dsl.emhril.sbcglobal.net] has joined #scheme 00:40:23 Is it okay to ask questions about SICP here? 00:40:26 =O i found what member does its rly good for me 00:40:31 ty 00:41:57 -!- choas [~lars@p5795CF91.dip.t-dialin.net] has quit [Ping timeout: 248 seconds] 00:42:20 Oh well, I'm just gonna ask. 00:42:40 Excercise 1.6 is: "Alyssa P. Hacker doesn't see why if needs to be provided as a special form. ``Why can't I just define it as an ordinary procedure in terms of cond?'" 00:42:57 http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-10.html#%_sec_1.6 00:43:20 Is it because both branches of new-if will be evaluated, because of applicative order? 00:45:18 Yes, exactly. 00:45:48 You could define it using thunks: (my-if condition (lambda () then...) (lambda () else...)) 00:46:02 pjb: awesome, thanks. I thought so but it felt like there was something more there. 00:46:06 -!- masm [~masm@bl19-167-140.dsl.telepac.pt] has quit [Quit: Leaving.] 00:46:11 but it would be boring to write all these lambda, so we wrap it in a syntactic abstraction, a macro. 00:46:35 relief of boredom is an underappreciated benefit of automation 00:49:28 So, what I'm getting is: standard order is more intuitive, but applicative order is more efficient and better for recursion. 00:49:31 Is that correct? 00:49:55 Well, Haskell would have a different opinion... 00:50:04 It's a language design choice. 00:50:14 Right, okay. 00:50:46 applicative order is at the very least easier to implement 00:51:00 in a non-lazy language 00:53:09 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 240 seconds] 01:04:10 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 01:08:45 -!- _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has quit [Ping timeout: 252 seconds] 01:21:36 -!- rostayob [~rostayob@93-40-69-90.ip37.fastwebnet.it] has quit [Quit: WeeChat 0.3.5] 01:22:29 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 240 seconds] 01:22:33 -!- sharkspirit [4fa8bc9f@gateway/web/freenode/ip.79.168.188.159] has quit [Quit: Page closed] 01:22:35 albert [~albert@24-205-85-84.dhcp.psdn.ca.charter.com] has joined #scheme 01:29:30 -!- jrslepak [~jrslepak@c-24-12-144-42.hsd1.il.comcast.net] has quit [Quit: Leaving] 01:45:09 -!- tuubow [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 01:45:25 -!- kpal [~kpal@46-252-118-54.sibtele.com] has quit [Ping timeout: 248 seconds] 01:46:00 kpal [~kpal@46-252-118-54.sibtele.com] has joined #scheme 01:53:52 bokr [~edka@109.110.53.173] has joined #scheme 01:56:00 ddp [~ddp@216.243.111.165] has joined #scheme 01:57:19 NihilistDandy [~NihilistD@c-75-69-129-101.hsd1.nh.comcast.net] has joined #scheme 01:58:51 ThePawnBreak [~quassel@94.177.108.25] has joined #scheme 02:08:45 hba [~hba@189.130.178.126] has joined #scheme 02:30:18 tuubow [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has joined #scheme 02:35:47 -!- MrFahrenheit [~RageOfTho@users-55-189.vinet.ba] has quit [Ping timeout: 248 seconds] 02:45:09 samth [~samth@c-67-176-146-194.hsd1.in.comcast.net] has joined #scheme 02:48:49 EClaesson [~EClaesson@c-5eeaaa58-74736162.cust.telenor.se] has joined #scheme 02:50:10 Are there any stable, fast and embeddable scheme/lisp that plays nicely on windows (visual studio)? 02:51:26 chibi maybi? 02:53:02 I'll take a look at that. How's its speed? I need it for a script-heavy real-time application. Somewhat around Lua when it comes to speed. 02:53:42 the author hangs in here so i am sure he can give you details. 02:54:24 -!- albert [~albert@24-205-85-84.dhcp.psdn.ca.charter.com] has quit [Remote host closed the connection] 02:55:29 -!- freakazoid [~seanl@out-mpk.corp.tfbnw.net] has quit [Quit: Computer has gone to sleep.] 02:55:44 foof if i'm not mistaken? foof: are you here? 03:00:30 -!- Rotham [~R@174.33.144.42] has quit [Read error: Connection reset by peer] 03:01:46 Rotham [~R@174.33.144.42] has joined #scheme 03:04:48 albert [~albert@66-215-80-56.dhcp.psdn.ca.charter.com] has joined #scheme 03:07:38 -!- albert [~albert@66-215-80-56.dhcp.psdn.ca.charter.com] has quit [Remote host closed the connection] 03:09:37 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 03:16:29 -!- tuubow [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 03:22:48 EClaesson: Last I checked it builds with VC++ but I haven't actually run it. 03:23:26 foof: What about its speed? 03:24:47 Average Scheme VM speed - I haven't tuned it much yet. So probably a little slower than Lua, faster than PHP/Ruby, much slower than the LuaJIT. 03:24:50 -!- MichaelRaskin [~MichaelRa@195.91.224.225] has left #scheme 03:33:15 And it's still pretty young - the core is stable, but the standard libraries need more testing. I can usually give a 24-hour turnaround time on bugs though. 03:36:22 -!- kpal [~kpal@46-252-118-54.sibtele.com] has quit [Ping timeout: 255 seconds] 03:38:05 kpal [~kpal@46-252-118-54.sibtele.com] has joined #scheme 03:40:00 freakazoid [~seanl@c-67-164-106-36.hsd1.ca.comcast.net] has joined #scheme 03:44:39 soveran [~soveran@186.19.214.247] has joined #scheme 03:45:00 bfg9000 [~BFV@r186-48-223-87.dialup.adsl.anteldata.net.uy] has joined #scheme 03:46:47 -!- samth [~samth@c-67-176-146-194.hsd1.in.comcast.net] has quit [Ping timeout: 252 seconds] 03:50:38 Hmmm.. it seems the Lua REPL is a REL - you need an explicit "print" to see the results. 03:51:15 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 03:52:17 aw 03:52:22 tuubow [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has joined #scheme 03:52:31 that suggests the Lua encourages imperative style 03:56:47 huh... lua's repl is actually kind of frustrating 03:57:10 this concludes my experience with lua 03:59:48 i was messing with lua a few years ago and somehow don't remember this detail 04:00:03 -!- kpal [~kpal@46-252-118-54.sibtele.com] has quit [Ping timeout: 248 seconds] 04:04:07 -!- freakazoid [~seanl@c-67-164-106-36.hsd1.ca.comcast.net] has quit [Quit: Computer has gone to sleep.] 04:12:56 is it good practice to use set! ? the conversation the other day left me with the impression it wasn't 04:13:21 bfg9000: Usually, you don't need it. Just use let. 04:13:35 But in some cases you need it, then use it. 04:13:37 ok 04:13:49 See sicp. 04:13:51 are there functional style libraries around? 04:13:59 i'm reading sicp (chapter 3) 04:14:02 Hint: you need it less often than an imperative programmer might think. 04:14:03 goood. 04:14:44 i know you can do altogether with them, using for example state monads 04:15:03 i don't know if it's the custom around... that's why i ask 04:15:46 (i've got a fairly good grasp of haskell and understand how most monads work) 04:18:46 *offby1* suspects he has monads in his crawlspace, and must call the exterminator 04:20:59 lol 04:24:51 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 04:27:13 geckosenator [~sean@210.48.92.26] has joined #scheme 04:48:34 gmcerveny [~gmcerveny@cpe-173-172-188-233.satx.res.rr.com] has joined #scheme 04:54:56 -!- EClaesson [~EClaesson@c-5eeaaa58-74736162.cust.telenor.se] has left #scheme 04:57:04 wbooze` [~levgue@xdsl-84-44-208-28.netcologne.de] has joined #scheme 04:57:24 homie` [~levgue@xdsl-84-44-208-28.netcologne.de] has joined #scheme 04:59:37 -!- wbooze [~levgue@xdsl-78-35-152-161.netcologne.de] has quit [Ping timeout: 255 seconds] 04:59:57 -!- homie [~levgue@xdsl-78-35-152-161.netcologne.de] has quit [Ping timeout: 256 seconds] 05:01:36 dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 05:11:12 tuubow_ [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has joined #scheme 05:12:49 -!- tuubow [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 05:23:26 realitygrill [~realitygr@adsl-71-129-61-74.dsl.irvnca.pacbell.net] has joined #scheme 05:34:10 -!- bfg9000 is now known as bfig 05:44:09 -!- tuubow_ [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 05:51:43 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 05:59:07 -!- ddp [~ddp@216.243.111.165] has quit [Remote host closed the connection] 05:59:19 tuubow_ [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has joined #scheme 05:59:22 ddp [~ddp@anon-158-35.relakks.com] has joined #scheme 05:59:25 skld [~skld@unaffiliated/skld] has joined #scheme 05:59:36 -!- skld [~skld@unaffiliated/skld] has left #scheme 06:05:15 -!- confab [~win7@c-71-193-9-153.hsd1.ca.comcast.net] has quit [Quit: leaving] 06:09:03 `26 [~kvirc@unaffiliated/26/x-1186543] has joined #scheme 06:09:51 albert [~albert@adsl-71-156-44-252.dsl.irvnca.sbcglobal.net] has joined #scheme 06:11:27 <`26> If I may take up a few minutes of your time, I would like to ask you how the R5RS scheme interpreter is meant to look up symbols in the top level environment. 06:12:17 however it is implemented to 06:12:17 That would depend on the data structure it uses to store those symbols, don't you think? 06:12:45 <`26> Sorry, my fault in not giving further details. 06:13:55 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 06:14:14 <`26> I meant to ask, does each lambda hold a reference to the top level environment (or rather, to each binding in there) or does the top level environment act as if it were dynamically scoped? 06:14:41 <`26> I tried reading some of the namespace and environment things on the scheme wiki but I became awfully confused . 06:14:49 It can just be a global lexical variable. 06:17:14 <`26> Is there a way of executing a procedure inside a top level environment different from the current one? 06:17:38 (eval '(fun) some-environment) 06:17:39 no standard way 06:18:08 a lot of schemes support this 06:18:17 (what pjb is talking about isn't executing a procedure, it is evaluating a datastructure representing code) 06:24:23 -!- bpalmer [user@unaffiliated/bpalmer] has left #scheme 06:24:40 <`26> Could anyone give me some reference to better understanding manipulation of top level environment in R5RS? 06:25:25 set! manipulates it? 06:25:31 `26: r5rs 06:25:45 But as you'll learn, it's mostly implementation dependant. 06:26:55 <`26> pjb: Okay, I'll read that. 06:27:52 rudybot: have you seen specbot? 06:27:53 ski: slaps ccl-logbot, rudybot and specbot 06:28:03 freakazoid [~seanl@c-67-164-106-36.hsd1.ca.comcast.net] has joined #scheme 06:35:16 -!- `26 [~kvirc@unaffiliated/26/x-1186543] has quit [] 06:42:49 -!- freakazoid [~seanl@c-67-164-106-36.hsd1.ca.comcast.net] has quit [Quit: Computer has gone to sleep.] 06:45:24 MengZhang [~MengZhang@203.208.61.212] has joined #scheme 06:47:55 -!- cky [~cky@fsf/member/cky] has quit [Ping timeout: 252 seconds] 07:03:36 kpal [~kpal@46-252-118-54.sibtele.com] has joined #scheme 07:06:05 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 252 seconds] 07:06:11 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 07:09:09 -!- dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has quit [Ping timeout: 256 seconds] 07:32:54 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 07:38:37 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 256 seconds] 07:42:31 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 255 seconds] 07:44:44 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 07:47:20 -!- NihilistDandy [~NihilistD@c-75-69-129-101.hsd1.nh.comcast.net] has quit [Quit: Linkinus - http://linkinus.com] 07:48:38 -!- pchrist_ [~spirit@gentoo/developer/pchrist] has quit [Quit: leaving] 07:48:50 hkBst [~marijn@79.170.210.172] has joined #scheme 07:48:50 -!- hkBst [~marijn@79.170.210.172] has quit [Changing host] 07:48:50 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 07:49:09 pchrist [~spirit@gentoo/developer/pchrist] has joined #scheme 07:52:34 -!- stchang [~stchang@syrah.ccs.neu.edu] has quit [Read error: Operation timed out] 07:53:33 stchang [~stchang@syrah.ccs.neu.edu] has joined #scheme 07:53:41 -!- ThePawnBreak [~quassel@94.177.108.25] has quit [Ping timeout: 240 seconds] 07:55:05 -!- albert [~albert@adsl-71-156-44-252.dsl.irvnca.sbcglobal.net] has quit [Remote host closed the connection] 07:57:09 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Ping timeout: 240 seconds] 07:57:20 hkBst [~marijn@79.170.210.172] has joined #scheme 07:57:20 -!- hkBst [~marijn@79.170.210.172] has quit [Changing host] 07:57:20 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 07:58:59 -!- brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has quit [Quit: WeeChat 0.3.6] 08:11:06 brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has joined #scheme 08:14:21 -!- hba [~hba@189.130.178.126] has quit [Quit: Lost terminal] 08:43:42 cky [~cky@fsf/member/cky] has joined #scheme 08:45:35 -!- stchang [~stchang@syrah.ccs.neu.edu] has quit [*.net *.split] 08:45:35 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [*.net *.split] 08:45:35 -!- Rotham [~R@174.33.144.42] has quit [*.net *.split] 08:45:35 -!- eno [~eno@nslu2-linux/eno] has quit [*.net *.split] 08:45:35 -!- pygospa [~Pygosceli@kiel-5f77b0f9.pool.mediaWays.net] has quit [*.net *.split] 08:45:35 -!- snarkyboojum [~snarkyboo@67-23-4-190.static.slicehost.net] has quit [*.net *.split] 08:45:35 -!- Euthy [~euthy@unaffiliated/euthydemus] has quit [*.net *.split] 08:45:36 -!- rudybot [~luser@ec2-204-236-150-238.us-west-1.compute.amazonaws.com] has quit [*.net *.split] 08:45:36 -!- penryu [~penryu@kame.penryu.org] has quit [*.net *.split] 08:45:36 -!- joast [~rick@76.178.187.164] has quit [*.net *.split] 08:45:36 -!- Adrinael [~adrinael@barrel.rolli.org] has quit [*.net *.split] 08:47:34 djcb [~user@a88-114-95-13.elisa-laajakaista.fi] has joined #scheme 08:49:11 stchang [~stchang@syrah.ccs.neu.edu] has joined #scheme 08:49:11 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 08:49:11 Rotham [~R@174.33.144.42] has joined #scheme 08:49:11 eno [~eno@nslu2-linux/eno] has joined #scheme 08:49:11 pygospa [~Pygosceli@kiel-5f77b0f9.pool.mediaWays.net] has joined #scheme 08:49:11 snarkyboojum [~snarkyboo@67-23-4-190.static.slicehost.net] has joined #scheme 08:49:11 Euthy [~euthy@unaffiliated/euthydemus] has joined #scheme 08:49:11 rudybot [~luser@ec2-204-236-150-238.us-west-1.compute.amazonaws.com] has joined #scheme 08:49:11 penryu [~penryu@kame.penryu.org] has joined #scheme 08:49:11 joast [~rick@76.178.187.164] has joined #scheme 08:49:11 Adrinael [~adrinael@barrel.rolli.org] has joined #scheme 08:49:40 *rudybot* bows deeply before his master, inventor of incubot 08:49:41 la la la 08:52:51 -!- geckosenator [~sean@210.48.92.26] has left #scheme 09:08:15 -!- fantazo [~fantazo@178-191-169-183.adsl.highway.telekom.at] has quit [Remote host closed the connection] 09:10:13 gravicappa [~gravicapp@ppp91-77-174-173.pppoe.mtu-net.ru] has joined #scheme 09:27:04 ahinki [~chatzilla@212.99.10.150] has joined #scheme 09:33:32 -!- realitygrill [~realitygr@adsl-71-129-61-74.dsl.irvnca.pacbell.net] has quit [Quit: realitygrill] 09:36:45 arthurmaciel [~user@186.204.126.4] has joined #scheme 09:43:49 rostayob [~rostayob@93-40-137-241.ip39.fastwebnet.it] has joined #scheme 10:23:09 choas [~lars@p4FDC5AB2.dip.t-dialin.net] has joined #scheme 10:24:43 -!- drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has quit [Quit: leaving] 10:26:30 drwho [~drwho@c-68-81-125-196.hsd1.pa.comcast.net] has joined #scheme 10:27:25 woonie [~woonie@nusnet-199-161.dynip.nus.edu.sg] has joined #scheme 10:32:58 add^_ [~add^_^@h169n4c1o838.bredband.skanova.com] has joined #scheme 10:36:10 -!- bokr [~edka@109.110.53.173] has quit [Quit: Leaving.] 10:48:58 -!- startling [~startling@adsl-99-24-228-124.dsl.emhril.sbcglobal.net] has quit [Quit: leaving] 10:49:49 ThePawnBreak [~quassel@94.177.108.25] has joined #scheme 10:50:58 MrFahrenheit [~RageOfTho@users-55-189.vinet.ba] has joined #scheme 10:56:39 -!- vjacob [~vjacob@87.61.170.233] has quit [Quit: Leaving] 11:02:10 -!- MengZhang [~MengZhang@203.208.61.212] has quit [Remote host closed the connection] 11:34:50 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 244 seconds] 11:36:53 -!- pranq [pranq@unaffiliated/contempt] has quit [Ping timeout: 240 seconds] 11:40:06 confab [~win7@c-71-193-9-153.hsd1.ca.comcast.net] has joined #scheme 11:45:22 masm [~masm@bl19-149-67.dsl.telepac.pt] has joined #scheme 11:53:14 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 11:54:28 chturne [~charles@host86-128-40-15.range86-128.btcentralplus.com] has joined #scheme 12:00:26 -!- woonie [~woonie@nusnet-199-161.dynip.nus.edu.sg] has quit [Ping timeout: 256 seconds] 12:05:25 markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has joined #scheme 12:05:25 -!- markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has quit [Changing host] 12:05:25 markskilbeck [~markskilb@unaffiliated/markskilbeck] has joined #scheme 12:08:23 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 12:13:46 Blkt [~user@host69-129-dynamic.12-79-r.retail.telecomitalia.it] has joined #scheme 12:14:09 -!- tuubow_ [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 12:17:43 -!- sphex_ [~nobody@74.127.215.20] has quit [Read error: Connection reset by peer] 12:17:47 sphex [~nobody@74.127.215.20] has joined #scheme 12:18:57 -!- Blkt [~user@host69-129-dynamic.12-79-r.retail.telecomitalia.it] has quit [Remote host closed the connection] 12:19:05 Blkt [~user@host69-129-dynamic.12-79-r.retail.telecomitalia.it] has joined #scheme 12:23:41 soveran [~soveran@186.19.214.247] has joined #scheme 12:27:05 good morning everyone 12:28:42 -!- copumpkin is now known as Jim 12:28:47 -!- Jim is now known as Bo 12:29:21 -!- Bo is now known as copumpkin 12:50:59 -!- markskilbeck [~markskilb@unaffiliated/markskilbeck] has quit [Remote host closed the connection] 12:53:52 -!- pygospa [~Pygosceli@kiel-5f77b0f9.pool.mediaWays.net] has quit [Disconnected by services] 12:54:01 pygospa [~Pygosceli@kiel-5f768e64.pool.mediaWays.net] has joined #scheme 12:58:38 -!- jao [~user@pdpc/supporter/professional/jao] has quit [Ping timeout: 240 seconds] 13:22:59 -!- amoe [~amoe@host-92-26-167-176.as13285.net] has quit [Remote host closed the connection] 13:26:52 amoe [~amoe@host-92-26-167-176.as13285.net] has joined #scheme 13:31:02 markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has joined #scheme 13:31:02 -!- markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has quit [Changing host] 13:31:02 markskilbeck [~markskilb@unaffiliated/markskilbeck] has joined #scheme 13:31:27 -!- markskilbeck [~markskilb@unaffiliated/markskilbeck] has quit [Remote host closed the connection] 13:31:53 markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has joined #scheme 13:31:55 -!- markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has quit [Changing host] 13:31:55 markskilbeck [~markskilb@unaffiliated/markskilbeck] has joined #scheme 13:34:56 -!- choas [~lars@p4FDC5AB2.dip.t-dialin.net] has quit [Ping timeout: 252 seconds] 13:35:30 -!- kpal [~kpal@46-252-118-54.sibtele.com] has quit [Ping timeout: 268 seconds] 13:38:08 -!- peterhil [~peterhil@xdsl-77-86-196-131.nebulazone.fi] has quit [Ping timeout: 240 seconds] 13:38:08 -!- bfig [~BFV@r186-48-223-87.dialup.adsl.anteldata.net.uy] has quit [Read error: Connection reset by peer] 13:38:35 bfig [~BFV@r186-48-208-211.dialup.adsl.anteldata.net.uy] has joined #scheme 13:42:51 -!- markskilbeck [~markskilb@unaffiliated/markskilbeck] has quit [Remote host closed the connection] 13:43:41 peterhil [~peterhil@xdsl-77-86-196-131.nebulazone.fi] has joined #scheme 13:45:56 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 252 seconds] 13:48:16 good morning! 13:48:24 o/ 13:56:17 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 14:00:31 soveran [~soveran@186.19.214.247] has joined #scheme 14:11:43 pranq [~pranq@unaffiliated/contempt] has joined #scheme 14:12:19 -!- homie` [~levgue@xdsl-84-44-208-28.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 14:12:30 -!- wbooze` [~levgue@xdsl-84-44-208-28.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 14:15:34 homie [~levgue@xdsl-84-44-208-28.netcologne.de] has joined #scheme 14:19:12 choas [~lars@p4FDC5AB2.dip.t-dialin.net] has joined #scheme 14:26:14 woonie [~woonie@nusnet-199-161.dynip.nus.edu.sg] has joined #scheme 14:26:49 wbooze [~levgue@xdsl-84-44-208-28.netcologne.de] has joined #scheme 14:33:59 kk` [~kk@unaffiliated/kk/x-5380134] has joined #scheme 14:34:13 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 14:37:53 jewel [~jewel@196-215-117-46.dynamic.isadsl.co.za] has joined #scheme 14:45:16 -!- confab [~win7@c-71-193-9-153.hsd1.ca.comcast.net] has quit [Read error: Connection reset by peer] 14:50:09 -!- Blkt [~user@host69-129-dynamic.12-79-r.retail.telecomitalia.it] has quit [Ping timeout: 240 seconds] 14:57:09 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Ping timeout: 240 seconds] 14:59:22 _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has joined #scheme 15:08:27 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 15:15:09 hkBst [~marijn@79.170.210.172] has joined #scheme 15:15:09 -!- hkBst [~marijn@79.170.210.172] has quit [Changing host] 15:15:09 hkBst [~marijn@gentoo/developer/hkbst] has joined #scheme 15:18:20 -!- arthurmaciel [~user@186.204.126.4] has quit [Ping timeout: 252 seconds] 15:28:15 coderdad [~coderdad@68.15.125.214] has joined #scheme 15:50:37 vjacob [~vjacob@87.61.170.233] has joined #scheme 15:52:45 -!- ahinki [~chatzilla@212.99.10.150] has quit [Quit: ChatZilla 0.9.88 [Firefox 10.0/20111221135037]] 15:53:17 fantazo [~fantazo@178-191-169-183.adsl.highway.telekom.at] has joined #scheme 16:02:29 -!- Quadrescence [~quad@unaffiliated/quadrescence] has quit [Ping timeout: 240 seconds] 16:10:19 pumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 16:11:11 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 248 seconds] 16:15:34 -!- pumpkin is now known as copumpkin 16:15:50 freakazoid [~seanl@c-67-164-106-36.hsd1.ca.comcast.net] has joined #scheme 16:20:35 -!- airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has quit [] 16:23:59 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has left #scheme 16:34:31 fantazo_ [~fantazo@178-191-165-67.adsl.highway.telekom.at] has joined #scheme 16:36:28 markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has joined #scheme 16:36:28 -!- markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has quit [Changing host] 16:36:28 markskilbeck [~markskilb@unaffiliated/markskilbeck] has joined #scheme 16:37:48 -!- fantazo [~fantazo@178-191-169-183.adsl.highway.telekom.at] has quit [Ping timeout: 240 seconds] 16:40:30 mucker [~mucker@183.83.227.117] has joined #scheme 16:45:01 albert [~albert@71.156.44.252] has joined #scheme 16:46:02 probably the 100th time a beginner asked this, ..... does http://paste.lisp.org/display/126752 this look pretty ? 16:52:40 kennyd [~kennyd@93-136-57-51.adsl.net.t-com.hr] has joined #scheme 16:53:11 No. 16:53:55 If you want a serious indentation-based reader syntax, have a look at http://www.dwheeler.com/readable/ 16:54:04 In particular, it does not depend on semicolons. 16:54:35 i was aware of that ... but i wanted to take bracket alias to the extreme 16:54:56 if i am not mistaken [ and ( mean the same thing in scheme right ? 16:56:21 mucker: In R6RS, yes. In R5RS, no. In R7RS, probably no. 16:57:29 -!- chturne [~charles@host86-128-40-15.range86-128.btcentralplus.com] has quit [Ping timeout: 240 seconds] 16:59:22 cky : ok .. [ not popular i guess :) 17:03:14 mucker: It's not a matter of popularity, actually. :-) 17:03:21 mucker: It's very...controversial. 17:03:42 :) 17:03:45 [: 17:04:38 -!- kk` [~kk@unaffiliated/kk/x-5380134] has quit [Ping timeout: 240 seconds] 17:05:57 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 248 seconds] 17:06:03 kk` [~kk@unaffiliated/kk/x-5380134] has joined #scheme 17:08:33 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 17:10:48 chturne [~charles@host81-158-85-161.range81-158.btcentralplus.com] has joined #scheme 17:11:39 -!- hkBst [~marijn@gentoo/developer/hkbst] has quit [Quit: Konversation terminated!] 17:29:28 ddp_ [~ddp@216.243.111.165] has joined #scheme 17:29:41 mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has joined #scheme 17:33:29 -!- ddp [~ddp@anon-158-35.relakks.com] has quit [Ping timeout: 252 seconds] 17:33:29 -!- ddp_ is now known as ddp 17:38:19 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 255 seconds] 17:43:10 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 17:43:22 -!- homie [~levgue@xdsl-84-44-208-28.netcologne.de] has quit [Read error: Operation timed out] 17:43:40 wbooze` [~levgue@xdsl-78-35-129-10.netcologne.de] has joined #scheme 17:43:57 homie` [~levgue@xdsl-78-35-129-10.netcologne.de] has joined #scheme 17:46:05 -!- wbooze [~levgue@xdsl-84-44-208-28.netcologne.de] has quit [Ping timeout: 252 seconds] 17:48:07 -!- markskilbeck [~markskilb@unaffiliated/markskilbeck] has quit [Remote host closed the connection] 17:51:54 dnolen [aa95640a@gateway/web/freenode/ip.170.149.100.10] has joined #scheme 17:56:46 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Read error: Operation timed out] 18:00:54 -!- homie` [~levgue@xdsl-78-35-129-10.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 18:01:05 -!- wbooze` [~levgue@xdsl-78-35-129-10.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 18:01:41 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 18:03:48 homie [~levgue@xdsl-78-35-129-10.netcologne.de] has joined #scheme 18:05:49 -!- chturne [~charles@host81-158-85-161.range81-158.btcentralplus.com] has quit [Ping timeout: 240 seconds] 18:06:43 ijp [~user@host86-183-35-200.range86-183.btcentralplus.com] has joined #scheme 18:10:47 wbooze [~levgue@xdsl-78-35-129-10.netcologne.de] has joined #scheme 18:16:40 -!- shachaf [~shachaf@204.109.63.130] has quit [Remote host closed the connection] 18:17:10 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Read error: Operation timed out] 18:18:29 chturne [~charles@host86-136-158-11.range86-136.btcentralplus.com] has joined #scheme 18:19:18 -!- mucker [~mucker@183.83.227.117] has quit [Quit: Leaving] 18:21:34 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 18:24:39 -!- copumpkin is now known as [\|-\{}] 18:27:21 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 18:32:29 -!- karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 240 seconds] 18:33:48 -!- [\|-\{}] is now known as copumpkin 18:34:48 -!- choas [~lars@p4FDC5AB2.dip.t-dialin.net] has quit [Ping timeout: 240 seconds] 18:36:55 pumpkin [~pumpkin@host131-209-dynamic.116-80-r.retail.telecomitalia.it] has joined #scheme 18:36:56 -!- pumpkin [~pumpkin@host131-209-dynamic.116-80-r.retail.telecomitalia.it] has quit [Changing host] 18:36:57 pumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 18:39:05 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 252 seconds] 18:39:39 zzach [~zzach@dslb-088-076-031-135.pools.arcor-ip.net] has joined #scheme 18:40:44 -!- felipe [~felipe@unaffiliated/felipe] has quit [Ping timeout: 252 seconds] 18:45:37 markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has joined #scheme 18:45:37 -!- markskilbeck [~markskilb@host86-137-69-187.range86-137.btcentralplus.com] has quit [Changing host] 18:45:37 markskilbeck [~markskilb@unaffiliated/markskilbeck] has joined #scheme 18:50:47 confab [~win7@c-71-193-9-153.hsd1.ca.comcast.net] has joined #scheme 19:00:09 -!- coderdad [~coderdad@68.15.125.214] has quit [Ping timeout: 252 seconds] 19:00:18 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 19:03:14 -!- pumpkin is now known as copumpkin 19:07:37 -!- dnolen [aa95640a@gateway/web/freenode/ip.170.149.100.10] has quit [Ping timeout: 258 seconds] 19:08:21 -!- albert [~albert@71.156.44.252] has quit [Remote host closed the connection] 19:08:50 -!- wbooze [~levgue@xdsl-78-35-129-10.netcologne.de] has quit [Read error: Connection reset by peer] 19:09:07 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 268 seconds] 19:11:54 -!- homie [~levgue@xdsl-78-35-129-10.netcologne.de] has quit [Read error: Connection reset by peer] 19:12:05 -!- MrFahrenheit [~RageOfTho@users-55-189.vinet.ba] has quit [Ping timeout: 252 seconds] 19:13:03 wbooze [~levgue@xdsl-78-35-129-10.netcologne.de] has joined #scheme 19:13:03 felipe [~felipe@unaffiliated/felipe] has joined #scheme 19:13:16 homie [~levgue@xdsl-78-35-129-10.netcologne.de] has joined #scheme 19:14:14 choas [~lars@p4FDC5AB2.dip.t-dialin.net] has joined #scheme 19:20:52 -!- rostayob [~rostayob@93-40-137-241.ip39.fastwebnet.it] has quit [Quit: WeeChat 0.3.5] 19:21:05 -!- confab [~win7@c-71-193-9-153.hsd1.ca.comcast.net] has quit [Read error: Connection reset by peer] 19:24:35 -!- homie [~levgue@xdsl-78-35-129-10.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 19:25:02 -!- wbooze [~levgue@xdsl-78-35-129-10.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 19:26:19 homie [~levgue@xdsl-78-35-129-10.netcologne.de] has joined #scheme 19:27:00 -!- homie [~levgue@xdsl-78-35-129-10.netcologne.de] has quit [Remote host closed the connection] 19:28:17 are serializers used extensively as the de facto scheme concurrence mechanism? 19:28:45 homie [~levgue@xdsl-78-35-129-10.netcologne.de] has joined #scheme 19:28:58 -!- kennyd [~kennyd@93-136-57-51.adsl.net.t-com.hr] has left #scheme 19:29:20 coderdad [~coderdad@68.15.125.214] has joined #scheme 19:29:27 persistence? 19:29:39 -!- homie [~levgue@xdsl-78-35-129-10.netcologne.de] has quit [Read error: Connection reset by peer] 19:29:50 what do you mean? 19:31:05 homie [~levgue@xdsl-78-35-129-10.netcologne.de] has joined #scheme 19:35:35 kuribas [~user@d51524847.access.telenet.be] has joined #scheme 19:37:13 qu1j0t3: No, synchronisers. 19:37:27 qu1j0t3: I believe in SICP or the like they call synchronisers serialisers, instead. 19:37:52 bfig: qu1j0t3 was wondering what context your use of serialisers was in, because in, say, Java or .NET, serialisation is for persistence. 19:37:57 And has no relation to synchronisation. 19:38:19 bfig: There is no such thing as "de facto Scheme concurrency", BTW. 19:38:38 HG` [~HG@dsbg-4d0a3be7.pool.mediaWays.net] has joined #scheme 19:39:13 tuubow_ [~adityavit@c-69-136-107-140.hsd1.nj.comcast.net] has joined #scheme 19:39:16 sicp, chapter 3.4 19:39:26 -!- HG` [~HG@dsbg-4d0a3be7.pool.mediaWays.net] has quit [Client Quit] 19:39:26 cky: oh. 19:39:27 bfig: Yes, exactly what I thought. 19:39:30 cky: i see! overloaded term. 19:39:34 qu1j0t3: Very. 19:39:38 extremely 19:39:57 serializer as in 'turns parallel to serial' 19:40:24 bfig: Right, whereas in Java and .NET, serialiser turns an object into a stream of bytes. 19:40:38 yeah i'm familiar with those 19:40:58 :-) 19:41:19 just like protocol wars, everyone despises serialization 19:41:27 Hehehehehe. 19:41:49 phax [~phax@adsl-68-73-150-63.dsl.ipltin.ameritech.net] has joined #scheme 19:41:55 god how much i hate that subject, don't even make me remember >_> 19:41:57 -!- phax [~phax@adsl-68-73-150-63.dsl.ipltin.ameritech.net] has quit [Changing host] 19:41:57 phax [~phax@unaffiliated/phax] has joined #scheme 19:42:13 i'm addicted to M-x tetris 19:43:29 Hehehehehe. 19:53:49 airolson [~airolson@CPE00222d55a738-CM00222d55a735.cpe.net.cable.rogers.com] has joined #scheme 19:57:08 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 240 seconds] 20:01:40 freakazo_ [~seanl@c-67-164-106-36.hsd1.ca.comcast.net] has joined #scheme 20:02:38 -!- freakazoid [~seanl@c-67-164-106-36.hsd1.ca.comcast.net] has quit [Ping timeout: 240 seconds] 20:02:38 -!- freakazo_ is now known as freakazoid 20:04:47 -!- choas [~lars@p4FDC5AB2.dip.t-dialin.net] has quit [Ping timeout: 244 seconds] 20:12:12 -!- soveran [~soveran@186.19.214.247] has quit [Read error: Connection reset by peer] 20:12:34 soveran [~soveran@186.19.214.247] has joined #scheme 20:14:17 -!- markskilbeck [~markskilb@unaffiliated/markskilbeck] has quit [Quit: Leaving] 20:17:52 -!- jewel [~jewel@196-215-117-46.dynamic.isadsl.co.za] has quit [Ping timeout: 276 seconds] 20:28:41 -!- X-Scale [email@sgi-ultra64.broker.freenet6.net] has quit [Ping timeout: 268 seconds] 20:37:25 -!- kk` [~kk@unaffiliated/kk/x-5380134] has quit [Ping timeout: 255 seconds] 20:37:28 X-Scale [email@sgi-ultra64.broker.freenet6.net] has joined #scheme 20:37:54 -!- X-Scale is now known as Guest44174 20:39:56 -!- Guest44174 is now known as X-Scale 20:40:32 kk` [~kk@unaffiliated/kk/x-5380134] has joined #scheme 20:47:20 bipt [~bpt@cpe-071-070-253-241.nc.res.rr.com] has joined #scheme 20:50:03 -!- phax [~phax@unaffiliated/phax] has quit [Quit: Leaving] 20:53:09 -!- lusory [~bart@bb115-66-195-54.singnet.com.sg] has quit [Ping timeout: 240 seconds] 20:56:08 MrFahrenheit [~RageOfTho@users-55-202.vinet.ba] has joined #scheme 21:02:02 hba [~hba@189.130.178.126] has joined #scheme 21:02:12 jao [~user@pdpc/supporter/professional/jao] has joined #scheme 21:08:54 -!- kuribas [~user@d51524847.access.telenet.be] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:11:09 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 21:13:26 -!- _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has quit [Quit: leaving] 21:17:58 -!- tupi [~david@139.82.89.24] has quit [Quit: Leaving] 21:24:05 -!- gmcerveny [~gmcerveny@cpe-173-172-188-233.satx.res.rr.com] has quit [Ping timeout: 252 seconds] 21:25:23 lol, for some reason i'm getting super distracted while reading SICP (i'm gonna finish it at all costs, i'm already all-in). So i decided to check what amazon reviewers had to say 21:25:48 uh oh 21:26:13 http://www.amazon.com/Structure-Interpretation-Computer-Programs-Engineering/dp/0262011530 <- hilarious, and exactly my thought (agree with most of both the 1 star and 5 star ratings, which is weird) 21:26:14 http://tinyurl.com/32kp4p 21:30:41 if this book is really used at MIT for a first semester course, i take my hat off to them, because it is absolutely insane to cover the whole book in a single semester for somebody with no experience 21:31:01 experience with what? 21:31:22 with programming or mathematics 21:32:12 Daemmerung [~goetter@63.142.200.228] has joined #scheme 21:40:59 bfig: This is MIT you're talking about. 21:41:17 -!- Daemmerung [~goetter@63.142.200.228] has quit [Quit: Smoove out.] 21:43:38 bfig: The calibre of students there is supposed to be...a cut above. ;-) 21:43:56 i guess, but... it is like 40 cuts above where i am :| 21:44:18 you'll bleed to death with that many cuts 21:44:42 it sounds like that harvard mathematics course where they go up to differential geometry in a single semester 21:44:46 i mean, *what*!! 21:48:20 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 21:57:10 they don't use it for t heir first semester course anymore 21:57:37 do they use it for something? 21:57:45 they used to use it at berkeley too, but they stopped that even more recently 21:57:52 bfig: dunno 21:58:24 i believe it is a good book to make people think but you gotta have some base 21:59:43 oh wait i guess they actually still base the berkeley CS course off of SICP 21:59:55 though i don't know if that's the introductory one anymore 22:02:42 lusory [~bart@bb115-66-195-54.singnet.com.sg] has joined #scheme 22:06:26 albert_ [~albert@adsl-71-156-44-252.dsl.irvnca.sbcglobal.net] has joined #scheme 22:17:35 -!- ThePawnBreak [~quassel@94.177.108.25] has quit [Ping timeout: 240 seconds] 22:38:38 -!- pygospa [~Pygosceli@kiel-5f768e64.pool.mediaWays.net] has quit [Ping timeout: 240 seconds] 22:40:40 pygospa [~Pygosceli@kiel-4dbedf8f.pool.mediaWays.net] has joined #scheme 22:52:50 -!- gravicappa [~gravicapp@ppp91-77-174-173.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 23:03:03 -!- coderdad [~coderdad@68.15.125.214] has quit [Quit: Computer has gone to sleep.] 23:16:58 -!- pygospa [~Pygosceli@kiel-4dbedf8f.pool.mediaWays.net] has quit [Disconnected by services] 23:17:07 pygospa [~Pygosceli@kiel-4d0677f0.pool.mediaWays.net] has joined #scheme 23:18:46 zarus [~dilange88@24.196.113.147] has joined #scheme 23:42:30 -!- add^_ [~add^_^@h169n4c1o838.bredband.skanova.com] has quit [Quit: add^_] 23:49:17 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 23:50:45 tali713` [~user@c-76-17-236-129.hsd1.mn.comcast.net] has joined #scheme 23:51:06 soveran [~soveran@186.19.214.247] has joined #scheme 23:51:18 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 23:53:15 -!- tali713` [~user@c-76-17-236-129.hsd1.mn.comcast.net] has quit [Client Quit] 23:57:43 -!- ft [efftee@shell.chaostreff-dortmund.de] has quit [Ping timeout: 268 seconds] 23:57:50 fschwidom [~fschwidom@2.208.38.85] has joined #scheme