00:01:18 jrt4 [~jrtaylori@174-125-107-106.dyn.centurytel.net] has joined #scheme 00:02:51 -!- jrtayloriv [~jrtaylori@98.125.210.9] has quit [Ping timeout: 240 seconds] 00:04:40 -!- kenanb [~kenanb@94.54.231.88] has left #scheme 00:07:19 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 00:08:15 rpg [~rpg@66.161.23.209.lan.static.cptelecom.net] has joined #scheme 00:08:54 -!- josephholsten [~josephhol@216.16.128.242] has quit [Quit: josephholsten] 00:10:35 Riastradh: Would you say that `&cs.' is the plural of `&c.' (which is itself a plural, &c.)? 00:10:38 -!- acarrico [~acarrico@pppoe-68-142-62-150.gmavt.net] has quit [Ping timeout: 240 seconds] 00:14:41 geoffhill [~geoffhill@c-24-12-189-238.hsd1.il.comcast.net] has joined #scheme 00:16:12 -!- ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has quit [Remote host closed the connection] 00:18:28 ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has joined #scheme 00:20:00 jrt4__ [~jrtaylori@98.125.213.237] has joined #scheme 00:21:45 -!- jrt4 [~jrtaylori@174-125-107-106.dyn.centurytel.net] has quit [Ping timeout: 246 seconds] 00:22:15 -!- mmc [~michal@82-148-210-75.fiber.unet.nl] has quit [Ping timeout: 250 seconds] 00:23:22 Is anyone familiar with gtk-server? 00:26:03 -!- rasterbar [~rasterbar@unaffiliated/rasterbar] has quit [Read error: Connection reset by peer] 00:26:42 rasterbar [~rasterbar@unaffiliated/rasterbar] has joined #scheme 00:27:56 -!- cafesofie [~cafesofie@ool-18b97779.dyn.optonline.net] has quit [Remote host closed the connection] 00:28:46 -!- jonrafkind [~jon@crystalis.cs.utah.edu] has quit [Ping timeout: 240 seconds] 00:29:30 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 00:30:29 cafesofie [~cafesofie@ool-18b97779.dyn.optonline.net] has joined #scheme 00:30:53 -!- pdelgallego [~pdelgalle@1385159903.dhcp.dbnet.dk] has quit [Ping timeout: 260 seconds] 00:37:06 acarrico [~acarrico@pppoe-68-142-62-150.gmavt.net] has joined #scheme 00:42:20 AtnNn [~welcome@modemcable060.239-177-173.mc.videotron.ca] has joined #scheme 00:43:27 josephholsten [~josephhol@ip70-185-215-221.ok.ok.cox.net] has joined #scheme 00:45:03 -!- tauntaun [~Crumpet@ool-44c72ce0.dyn.optonline.net] has quit [Quit: Ex-Chat] 00:46:17 copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has joined #scheme 00:46:17 -!- copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has quit [Changing host] 00:46:17 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 00:46:32 klutometis, I don't know why you would want to pluralize `et cetera'... 00:48:45 The bad academic paper was littered with et ceteras? 00:49:08 appamatto, make sure LD_LIBRARY_PATH is empty, and make sure that you linked chibi-scheme with -R/usr/local/whatever/chibi-scheme-1.2.3.4.5/lib (i.e. -R$(LIBDIR)), and not with -R/home/mumble/destdir/whatever/lib or anything (i.e. not -R$(DESTDIR)$(LIBDIR)). 00:49:53 bremner_, no need to pluralize there. `The bad academic paper was littered with ``&c.''.' 00:50:19 phew. Glad we got that sorted out ;) 00:50:25 Senjai [80bdb12a@gateway/web/freenode/ip.128.189.177.42] has joined #scheme 00:50:36 is anyone able to help with mutable variables? 00:50:54 Senjai: What do you mean? 00:51:20 Im trying to figure out a question for my exam prep 00:51:36 Ill post it to pastebin? 00:51:45 worth a try 00:51:55 Senjai: Go for ir. 00:51:57 s/ir/it 00:53:16 -!- josephholsten [~josephhol@ip70-185-215-221.ok.ok.cox.net] has quit [Quit: josephholsten] 00:54:25 Ok one sec\ 00:54:31 lisppaste: url 00:54:31 To use the lisppaste bot, visit http://paste.lisp.org/new/scheme and enter your paste. 00:54:34 http://codepad.org/9ZWQvxNA 00:54:55 it says emp is a function\ 00:55:03 if i replace emp with E1 or E2 it works\\ 00:55:16 but i don't know how to pass an employee with a name that is not globally known 00:55:31 Riastradh: I have a map from HTTP status codes to functions which display the HTTP status, &c. (i.e. status header, content header, eol, prolog, doctype); the map is called: `http-status-code->display-status-&c.'; the values of the map are called `display-status-&cs.'. 00:55:39 I'm dealing with a pathological meta-plural. 00:56:14 klutometis, why not call it HTTP-STATUS-DISPLAYER? (Is there a sensible inverse map? If not, it's better to avoid ->.) 00:56:23 Or HTTP-STATUS-DISPLAY-PROCEDURE? 00:56:43 Interesting; if one avoids `->', what's an alternative? 00:57:27 didi, do you understand my dilemma? 00:57:41 Senjai: More or less. 00:58:17 didi, normally in c++ i'd pass the variable by reference and modify the memory\ 00:58:28 Senjai, all that you've done with SET! in RAISE is to change the value of the local variable EMP in RAISE. If you run (RAISE X), the procedure doesn't know anything about X. 00:59:04 Senjai, C++ has no analogue of SET!. Without SET!, you can pretend that every argument is passed by const reference. 00:59:30 I don't know how to do that in scheme, so how can i modify an employee that is external to the function without knowing the name of the function 00:59:56 If i want to give Emp4 a raise, but the function doesn't know that the name of the employee is Emp4, how can I give Emp4 raise\ 00:59:58 You can modify the employee object itself, with SET-EMPLOYEE-SALARY!. 00:59:59 a raise* 01:00:10 You can return a new employee instead, and if the caller wants to store it in a local variable, the caller can use SET!. 01:00:20 realitygrill_ [~realitygr@adsl-76-226-125-192.dsl.sfldmi.sbcglobal.net] has joined #scheme 01:00:33 *Riastradh* vanishes. 01:01:15 appamatto: Did you do a "hg revert --all" first? 01:01:26 This is a problem for exam prep\ 01:01:30 on a review sheet 01:01:30 appamatto: Not sure if you had local changes that could be clobbering things. 01:01:43 So i don't have that flexibity 01:02:09 How can i pass say. E2 to (raise) and have it set! E2, without the function internally knowing that E2 exists 01:02:16 klutometis: As I put it (back when that article was first doing the rounds in #scheme), Lisp turns almost all technical problems into bikeshed problems. 01:02:35 klutometis: Unfortunately, as a friend of mine puts it, solving the bikeshed problem is NP-Hard. ;-) 01:02:42 -!- realitygrill [~realitygr@adsl-76-226-135-228.dsl.sfldmi.sbcglobal.net] has quit [Ping timeout: 246 seconds] 01:02:42 -!- realitygrill_ is now known as realitygrill 01:02:56 -!- ckrailo [~ckrailo@208.86.167.249] has quit [Quit: Computer has gone to sleep.] 01:03:00 -!- rasterbar [~rasterbar@unaffiliated/rasterbar] has quit [Ping timeout: 260 seconds] 01:03:07 cky: heh; that's hilarious, actually. i didn't realize it was a repost. 01:03:31 :-) 01:04:07 -!- masm [~masm@2.80.128.12] has left #scheme 01:06:31 Does anyoneknowhow i could solve this problem 01:10:45 -!- bgs100 [~ian@unaffiliated/bgs100] has quit [Ping timeout: 246 seconds] 01:11:28 Senjai: You have to use structs? 01:11:55 Yes 01:12:00 The question is: 01:12:23 The googlepersonnel system each employee has a first name last name and a salary 01:12:35 Question A: Design a data definition to represent employees 01:13:08 bgs100 [~ian@unaffiliated/bgs100] has joined #scheme 01:13:14 Question B: Design a function that consumes Employeem produces void and mutates the employee to give them a 10% raise 01:13:22 Senjai: Wouldn't a list be sufficient? 01:13:37 ("foo" "bar" 42) 01:13:43 Keeping a list of employees in the syste? 01:13:57 sorry for speling errors, not using a familiar keyboard\ 01:14:10 Senjai: No, like: (define foo '("bar" "foo" 42)) 01:14:36 and set! each item in the list? 01:14:40 ysph [~user@75-143-92-146.dhcp.aubn.al.charter.com] has joined #scheme 01:14:45 I'm not familiar with structs. 01:15:14 I don't know, I think our prof wants us to consume an employee, and modify that employee's salary attribute so if that employee is called later in the program it would have the changed attribute\ 01:15:42 Senjai: As Riastradh said, you can always set! the result. 01:15:54 I don't understand\ 01:16:12 I cant provide a new employee, because then the employee is not modified it is reproduced 01:16:39 In order to modify existing employees it seems like the function requires knowing every employee that exists 01:17:24 It is not dynamic, I can easily (set! E1 ...) (set! E2 ..) but what if their names aren't E2 or E1, what if the programmer adds an employee to the system 01:17:33 they would have to change the function entirely 01:18:33 Senjai: How advanced you are in your course? Did you learn dispatches yet? 01:19:19 Possibly, he may have called it someting else 01:19:33 We are allowed to use advanced topics so long as they are used properly 01:19:34 xwl_ [~user@nat/nokia/x-ndwkygccbaigxder] has joined #scheme 01:22:14 Senjai: http://mitpress.mit.edu/sicp/full-text/book/book-Z-H-22.html#%_sec_3.3 01:23:20 -!- bgs100 [~ian@unaffiliated/bgs100] has quit [Read error: Connection reset by peer] 01:26:21 http://codepad.org/XCMKcxRe is the best i can do, i got about 8 miutes before i have to leave for the exam. If you're not familiar with structs (raises) does everything that needs to be done with structs properly. I just want to set a passed employee to a new value\ 01:26:55 didi, Like i want to pass (raise Employee2) to Change the value of Employee2 01:28:03 or (raise emp) I cant use (set! emp value) because emp returns a structure.. 01:28:36 Senjai: I think I can't help you. Maybe someone else can. Good luck. 01:28:59 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Ping timeout: 250 seconds] 01:28:59 appamatto: are you doing (import (scheme)) ? 01:30:15 bgs100 [~ian@unaffiliated/bgs100] has joined #scheme 01:30:49 -!- atomx [~user@86.35.150.23] has quit [Remote host closed the connection] 01:30:57 ckrailo [~ckrailo@utdpat242007.utdallas.edu] has joined #scheme 01:32:46 -!- rpg [~rpg@66.161.23.209.lan.static.cptelecom.net] has quit [Quit: rpg] 01:35:50 appamatto: yes (re: finalizers) 01:36:04 -!- bgs100 [~ian@unaffiliated/bgs100] has quit [Quit: Leaving] 01:36:06 no, chibi.html won't be online until I wrap up the 0.4 release 01:38:31 -!- alexgordon is now known as agordonfreeman 01:38:56 -!- thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has quit [Quit: Leaving] 01:42:59 thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has joined #scheme 01:57:56 -!- agordonfreeman is now known as alexgordon 01:58:11 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 02:06:24 -!- AtnNn [~welcome@modemcable060.239-177-173.mc.videotron.ca] has quit [Ping timeout: 248 seconds] 02:06:56 -!- kuribas [~user@d54C43D8A.access.telenet.be] has quit [Ping timeout: 248 seconds] 02:09:30 -!- pygospa [~TheRealPy@kiel-4dbed1ca.pool.mediaWays.net] has quit [Disconnected by services] 02:09:30 TheRealPygo [~TheRealPy@kiel-d9bfc6d7.pool.mediaWays.net] has joined #scheme 02:15:36 -!- wtetzner [~wtetzner@c-24-218-19-210.hsd1.ma.comcast.net] has quit [Remote host closed the connection] 02:15:39 -!- blueadept [~blueadept@unaffiliated/blueadept] has quit [Quit: Leaving] 02:30:50 rramsden [~rramsden@s64-180-62-209.bc.hsia.telus.net] has joined #scheme 02:32:37 rpg [~rpg@216.243.156.16.real-time.com] has joined #scheme 02:33:18 -!- rpg [~rpg@216.243.156.16.real-time.com] has quit [Client Quit] 02:33:44 abhinav [~abhinav@122.172.19.89] has joined #scheme 02:34:30 -!- ckrailo [~ckrailo@utdpat242007.utdallas.edu] has quit [Quit: Computer has gone to sleep.] 02:38:45 -!- abhinav [~abhinav@122.172.19.89] has quit [Ping timeout: 250 seconds] 02:41:19 -!- didi [~user@unaffiliated/didi/x-1022147] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 03:00:42 pygospa [~TheRealPy@kiel-d9bfc166.pool.mediaWays.net] has joined #scheme 03:03:11 -!- TheRealPygo [~TheRealPy@kiel-d9bfc6d7.pool.mediaWays.net] has quit [Ping timeout: 240 seconds] 03:06:25 Senjai, use the procedure SET-EMPLOYEE-SALARY! defined by DEFINE-STRUCT. 03:06:49 Transformer [~Transform@ool-4a59e397.dyn.optonline.net] has joined #scheme 03:08:16 -!- Transformer [~Transform@ool-4a59e397.dyn.optonline.net] has quit [Excess Flood] 03:12:17 jcowan [~John@cpe-74-68-112-189.nyc.res.rr.com] has joined #scheme 03:12:28 bttf [~backtothe@c-69-246-160-131.hsd1.fl.comcast.net] has joined #scheme 03:12:33 -!- bttf [~backtothe@c-69-246-160-131.hsd1.fl.comcast.net] has left #scheme 03:13:22 -!- geoffhill [~geoffhill@c-24-12-189-238.hsd1.il.comcast.net] has quit [Quit: geoffhill] 03:19:46 ccl-logbot [~ccl-logbo@setf.clozure.com] has joined #scheme 03:19:46 03:19:46 -!- names: ccl-logbot jcowan pygospa rramsden kilimanjaro thoolihan xwl_ ysph realitygrill Senjai copumpkin acarrico cafesofie jrt4__ ymasory Euthydemus tessier StayInSkool lbc_ peeq_ rien stepnem monqy XTL Jafet martinhex myu2 EM03 MrFahrenheit drdo dsmith alfa_y_omega_ poindont` emporas dsp_ gnomon chrissbx bwhitlock yell0 githogori ASau specbot minion lisppaste pothos Riastradh arbscht Nisstyre leppie mojavy alaricsp cataska ohwow em Modius Checkie ivartj 03:19:46 -!- names: sjamaan ecraven lusory askhader snorble peterhil cbrannon Adrinael kniu Khisanth shardz incubot milli EarlGray ski preflex DT`` shachaf dfeuer evhan C-Keen samth_away Hal9k duncanm zbigniew gabot eli mornfall rotty jimrees_ levi yosafbridge bzzbzz_ xian rmrfchik ray elly twem2 joast bremner_ Intensity weinholt aoh offby1 appamatto Nightwolf pjb incandenza poucet snarkyboojum erg mario-goulart eno antoszka certainty docgnome ineiros_ nteon alexgordon 03:19:46 -!- names: ineiros kanru rudybot tizoc nome cmatei Leonidas rins` clog futilius vk0 sloyd cky Zol aspect Kovensky Obfuscate timchen1` micro andreer malorie ada2358 danking foof fds kandinski oivindbi rrm3 xale borism inimino YokYok z0d qebab ve _p4bl0 simontwo_ dlouhy felipe stamourv klutometis elf_ LN^off Pepe_ ozzloy 03:23:44 -!- jrt4__ [~jrtaylori@98.125.213.237] has quit [Ping timeout: 248 seconds] 03:26:46 rageous [~rageous@user-38q461p.cable.mindspring.com] has joined #scheme 03:29:25 -!- cafesofie [~cafesofie@ool-18b97779.dyn.optonline.net] has quit [Remote host closed the connection] 03:30:04 cafesofie [~cafesofie@ool-18b97779.dyn.optonline.net] has joined #scheme 03:31:38 -!- pjb is now known as aleph0 03:31:41 -!- aleph0 is now known as pjb 03:32:30 foof, yes, I just figured out the (import (scheme)) part 03:33:16 foof, are you interested in sqlite bindings? 03:43:06 jcowan_ [~John@cpe-74-68-112-189.nyc.res.rr.com] has joined #scheme 03:43:15 -!- jcowan_ [~John@cpe-74-68-112-189.nyc.res.rr.com] has left #scheme 03:46:46 spc [~hypospace@S0106001b11eee383.no.shawcable.net] has joined #scheme 03:47:23 -!- spc [~hypospace@S0106001b11eee383.no.shawcable.net] has left #scheme 03:50:48 ckrailo [~ckrailo@pool-71-170-15-148.dllstx.fios.verizon.net] has joined #scheme 03:51:12 Riastradh: we used a creative word composition: <> (derived from "i t.d.", "i tak dalee", "&c") 03:52:27 Use Cyrillic; I can't read your transliterations! 03:55:20 << ,  >> (  " ..", "  ",  "&c") 03:56:22 -!- ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has quit [Quit: Leaving] 03:56:50 (Note hidden connotations with Greek loan words like "ecsema".) 03:57:18 (Or is it Latin?) 04:06:19 -!- xwl_ [~user@nat/nokia/x-ndwkygccbaigxder] has quit [Remote host closed the connection] 04:09:18 -!- ysph [~user@75-143-92-146.dhcp.aubn.al.charter.com] has quit [Ping timeout: 250 seconds] 04:12:13 czakian [~czakian@c-98-223-184-248.hsd1.in.comcast.net] has joined #scheme 04:15:16 appamatto: I think someone else wrote sqlite bindings. 04:19:18 xwl_ [~user@nat/nokia/x-rmjoxhbhjohmeiyb] has joined #scheme 04:22:08 Binario01 [~bin10@99-40-155-90.lightspeed.stlsmo.sbcglobal.net] has joined #scheme 04:24:22 -!- rramsden [~rramsden@s64-180-62-209.bc.hsia.telus.net] has quit [Quit: Leaving] 04:24:57 -!- xwl_ [~user@nat/nokia/x-rmjoxhbhjohmeiyb] has quit [Remote host closed the connection] 04:26:08 appamatto: That would be Doug Currie 04:26:17 I don't know that he ever published his bindings, though. 04:26:22 You could ask him. 04:26:38 -!- czakian [~czakian@c-98-223-184-248.hsd1.in.comcast.net] has quit [Quit: Leaving] 04:27:40 -!- martinhex [~mjc@93-97-29-243.zone5.bethere.co.uk] has quit [Remote host closed the connection] 04:28:07 martinhex [~mjc@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 04:29:19 -!- Senjai [80bdb12a@gateway/web/freenode/ip.128.189.177.42] has quit [Quit: Page closed] 04:31:12 infid [~infid@99-101-15-134.lightspeed.sndgca.sbcglobal.net] has joined #scheme 04:31:43 what package for linux can i get to write some basic lisp code in an interactive command prompt? 04:33:07 maybe the mit-scheme package? I know that has an interactive prompt 04:34:41 -!- leppie [~lolcow@196-215-49-168.dynamic.isadsl.co.za] has quit [Ping timeout: 240 seconds] 04:35:14 perfect thanks 04:35:26 the drscheme thing was weird and hard to get working 04:36:18 yeah, in fact I'm reading a scheme tutorial and following along with mit-scheme right now :) 04:36:32 I just started in scheme a few days ago 04:37:04 :) 04:37:36 are you experienced at all with it? 04:38:00 barely at all 04:38:13 i started learning it years ago and stopped until now 04:38:44 okay, we're in a similar level then :) 04:40:49 leppie [~lolcow@196-215-49-168.dynamic.isadsl.co.za] has joined #scheme 04:46:24 ysph [~user@75-143-92-146.dhcp.aubn.al.charter.com] has joined #scheme 04:47:32 xwl_ [~user@nat/nokia/x-iqkdsmdnjfmmejsn] has joined #scheme 04:50:11 -!- jcowan [~John@cpe-74-68-112-189.nyc.res.rr.com] has quit [Quit: Leaving] 04:50:25 Why don't you use DrRacket? 04:50:31 it's pretty nice 04:50:45 and it has command-line interface too, just start `racket' 04:51:03 jrtayloriv [~jrtaylori@207-118-125-31.dyn.centurytel.net] has joined #scheme 04:58:59 ohwow: i dont see a package for it in linux 04:59:04 with apt anyway 04:59:59 http://packages.debian.org/sid/racket 05:02:13 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 05:16:11 -!- realitygrill [~realitygr@adsl-76-226-125-192.dsl.sfldmi.sbcglobal.net] has quit [Read error: Connection reset by peer] 05:16:43 realitygrill [~realitygr@adsl-76-226-130-62.dsl.sfldmi.sbcglobal.net] has joined #scheme 05:23:39 -!- Nightwolf [~Nightwolf@clientssh1.rbg.informatik.tu-darmstadt.de] has quit [Remote host closed the connection] 05:28:24 jcowan [~user@cpe-74-68-112-189.nyc.res.rr.com] has joined #scheme 05:28:28 -!- jcowan [~user@cpe-74-68-112-189.nyc.res.rr.com] has quit [Client Quit] 05:29:09 jrt4 [~jrtaylori@207-118-100-100.dyn.centurytel.net] has joined #scheme 05:31:08 -!- jrtayloriv [~jrtaylori@207-118-125-31.dyn.centurytel.net] has quit [Ping timeout: 276 seconds] 05:35:28 -!- Binario01 [~bin10@99-40-155-90.lightspeed.stlsmo.sbcglobal.net] has quit [Remote host closed the connection] 05:36:57 gravicappa [~gravicapp@ppp91-77-187-136.pppoe.mtu-net.ru] has joined #scheme 05:38:59 jrt4__ [~jrtaylori@207-118-99-104.stat.centurytel.net] has joined #scheme 05:41:44 -!- jrt4 [~jrtaylori@207-118-100-100.dyn.centurytel.net] has quit [Ping timeout: 276 seconds] 05:46:33 jrt4 [~jrtaylori@207-118-98-65.stat.centurytel.net] has joined #scheme 05:48:53 -!- jrt4__ [~jrtaylori@207-118-99-104.stat.centurytel.net] has quit [Ping timeout: 276 seconds] 05:54:36 -!- rien [~rien@dyn-160-39-34-114.dyn.columbia.edu] has quit [Ping timeout: 250 seconds] 05:55:17 i have to get the source i guess, i have ubuntu lucid lynx 05:55:34 rien [~rien@dyn-160-39-34-114.dyn.columbia.edu] has joined #scheme 05:56:17 mmc [~michal@82-148-210-75.fiber.unet.nl] has joined #scheme 05:56:28 -!- myu2 [~myu2@v051158.dynamic.ppp.asahi-net.or.jp] has quit [Remote host closed the connection] 06:02:36 -!- mmc [~michal@82-148-210-75.fiber.unet.nl] has quit [Quit: Leaving.] 06:03:09 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 264 seconds] 06:08:03 pchrist [~spirit@gentoo/developer/pchrist] has joined #scheme 06:10:22 jewel [~jewel@196-215-88-68.dynamic.isadsl.co.za] has joined #scheme 06:12:11 mathk [~mathk@194.177.62.156] has joined #scheme 06:12:46 mathk_ [~mathk@dispo-82-65-228-167.adsl.proxad.net] has joined #scheme 06:17:17 -!- mathk [~mathk@194.177.62.156] has quit [Ping timeout: 276 seconds] 06:17:17 -!- mathk_ is now known as mathk 06:23:30 -!- peeq_ is now known as peeq 06:24:43 -!- cafesofie [~cafesofie@ool-18b97779.dyn.optonline.net] has quit [Remote host closed the connection] 06:25:05 -!- Hal9k [~Lernaean@unaffiliated/kusanagi] has quit [Ping timeout: 260 seconds] 06:27:18 -!- StayInSkool [~StayInSko@CPE001d7e3441e8-CM001a668109ee.cpe.net.cable.rogers.com] has quit [Quit: StayInSkool] 06:30:48 Hal9k [~Lernaean@24-107-60-232.dhcp.stls.mo.charter.com] has joined #scheme 06:30:48 -!- Hal9k [~Lernaean@24-107-60-232.dhcp.stls.mo.charter.com] has quit [Changing host] 06:30:48 Hal9k [~Lernaean@unaffiliated/kusanagi] has joined #scheme 06:33:08 -!- jrt4 [~jrtaylori@207-118-98-65.stat.centurytel.net] has quit [Quit: Leaving] 06:36:57 -!- rien [~rien@dyn-160-39-34-114.dyn.columbia.edu] has quit [Ping timeout: 246 seconds] 06:37:51 rien [~rien@dyn-160-39-34-114.dyn.columbia.edu] has joined #scheme 06:40:41 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 240 seconds] 06:46:44 copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has joined #scheme 06:46:44 -!- copumpkin [~pumpkin@209-6-232-56.c3-0.sbo-ubr1.sbo.ma.cable.rcn.com] has quit [Changing host] 06:46:44 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 06:48:11 josephholsten [~josephhol@ip70-185-215-221.ok.ok.cox.net] has joined #scheme 06:48:35 -!- josephholsten [~josephhol@ip70-185-215-221.ok.ok.cox.net] has left #scheme 06:49:28 EbiDK [511bd602@gateway/web/freenode/ip.81.27.214.2] has joined #scheme 06:49:57 -!- EbiDK [511bd602@gateway/web/freenode/ip.81.27.214.2] has quit [Client Quit] 06:50:18 EbiDK [511bd602@gateway/web/freenode/ip.81.27.214.2] has joined #scheme 06:51:13 -!- monqy [~chap@pool-71-102-217-117.snloca.dsl-w.verizon.net] has quit [Ping timeout: 260 seconds] 06:52:54 anyone here use racket for web dev? 06:53:06 monqy [~chap@pool-71-102-217-117.snloca.dsl-w.verizon.net] has joined #scheme 06:59:12 -!- gravicappa [~gravicapp@ppp91-77-187-136.pppoe.mtu-net.ru] has quit [Ping timeout: 248 seconds] 07:07:31 -!- xwl_ [~user@nat/nokia/x-iqkdsmdnjfmmejsn] has quit [Remote host closed the connection] 07:08:24 -!- pygospa [~TheRealPy@kiel-d9bfc166.pool.mediaWays.net] has quit [Disconnected by services] 07:08:34 pygospa [~TheRealPy@kiel-d9bfd0cd.pool.mediaWays.net] has joined #scheme 07:09:54 gravicappa [~gravicapp@ppp91-77-187-136.pppoe.mtu-net.ru] has joined #scheme 07:13:42 amoe [~amoe@cpc1-brig13-0-0-cust658.3-3.cable.virginmedia.com] has joined #scheme 07:14:40 -!- realitygrill [~realitygr@adsl-76-226-130-62.dsl.sfldmi.sbcglobal.net] has quit [Quit: realitygrill] 07:16:58 realitygrill [~realitygr@adsl-76-226-130-62.dsl.sfldmi.sbcglobal.net] has joined #scheme 07:23:09 wingo [~wingo@90.164.198.39] has joined #scheme 07:25:33 -!- ckrailo [~ckrailo@pool-71-170-15-148.dllstx.fios.verizon.net] has quit [Quit: Computer has gone to sleep.] 07:37:31 MichaelRaskin [~MichaelRa@195.178.216.22] has joined #scheme 07:42:28 -!- realitygrill [~realitygr@adsl-76-226-130-62.dsl.sfldmi.sbcglobal.net] has quit [Quit: realitygrill] 07:50:07 pdelgallego [~pdelgalle@1385159903.dhcp.dbnet.dk] has joined #scheme 08:07:26 leo2007 [~leo@2402:f000:5:2901:225:4bff:fea9:b9e4] has joined #scheme 08:08:13 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 260 seconds] 08:08:38 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 08:15:30 Riastradh: i've run into a problem when building the mit-scheme package with arch linux. on x86_64, it hangs on building the microcode when running "./m4-dos -P "WIN32,1" -P "WCC386R,1" < i386.m4 > i386-ntw.asm". should that even be run on x86_64? do i correctly surmise that this is a problem related to correctly detecting the cpu architecture? 08:19:43 -!- kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has quit [Ping timeout: 240 seconds] 08:24:47 pdelgallego_ [~pdelgalle@1385159903.dhcp.dbnet.dk] has joined #scheme 08:27:02 hussaibi [~hussaibi@CPE54d46fa9e97a-CM54d46fa9e978.cpe.net.cable.rogers.com] has joined #scheme 08:43:18 Bahman [~Bahman@2.144.253.23] has joined #scheme 08:43:56 Hi all! 08:46:47 anyone here a freelancer? 08:47:58 -!- rageous [~rageous@user-38q461p.cable.mindspring.com] has quit [Ping timeout: 240 seconds] 08:49:41 rageous [~rageous@user-38q461p.cable.mindspring.com] has joined #scheme 08:52:13 stis [~stis@host-95-201-112-88.mobileonline.telia.com] has joined #scheme 08:59:50 -!- hussaibi [~hussaibi@CPE54d46fa9e97a-CM54d46fa9e978.cpe.net.cable.rogers.com] has quit [Read error: Operation timed out] 09:07:43 -!- stis [~stis@host-95-201-112-88.mobileonline.telia.com] has quit [Ping timeout: 258 seconds] 09:07:51 stis [~stis@host-90-235-246-230.mobileonline.telia.com] has joined #scheme 09:08:37 masm [~masm@bl19-128-12.dsl.telepac.pt] has joined #scheme 09:14:07 -!- rageous [~rageous@user-38q461p.cable.mindspring.com] has quit [Ping timeout: 260 seconds] 09:15:29 -!- pygospa [~TheRealPy@kiel-d9bfd0cd.pool.mediaWays.net] has quit [Ping timeout: 246 seconds] 09:16:35 pygospa [~TheRealPy@kiel-d9bfd0cd.pool.mediaWays.net] has joined #scheme 09:24:23 aidalgol [~user@114-134-8-93.rurallink.co.nz] has joined #scheme 09:26:23 -!- gravicappa [~gravicapp@ppp91-77-187-136.pppoe.mtu-net.ru] has quit [Ping timeout: 260 seconds] 09:35:42 -!- MrFahrenheit [~RageOfTho@users-146-140.vinet.ba] has quit [Ping timeout: 260 seconds] 09:45:29 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Ping timeout: 276 seconds] 09:46:06 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 09:46:17 kuribas [~user@d54C43D8A.access.telenet.be] has joined #scheme 09:56:52 femtoo [~femto@95-89-249-242-dynip.superkabel.de] has joined #scheme 09:57:27 -!- pdelgallego [~pdelgalle@1385159903.dhcp.dbnet.dk] has quit [Ping timeout: 252 seconds] 09:57:32 gravicappa [~gravicapp@80.90.116.82] has joined #scheme 09:57:42 -!- pdelgallego_ [~pdelgalle@1385159903.dhcp.dbnet.dk] has quit [Ping timeout: 250 seconds] 10:07:15 pdelgallego_ [~pdelgalle@1385159903.dhcp.dbnet.dk] has joined #scheme 10:07:47 Manadar [~Manadar3@D978D8FE.cm-3-1d.dynamic.ziggo.nl] has joined #scheme 10:07:50 -!- Manadar [~Manadar3@D978D8FE.cm-3-1d.dynamic.ziggo.nl] has left #scheme 10:09:54 pdelgallego [~pdelgalle@1385159903.dhcp.dbnet.dk] has joined #scheme 10:12:31 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Read error: Operation timed out] 10:15:34 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 10:46:01 -!- pygospa [~TheRealPy@kiel-d9bfd0cd.pool.mediaWays.net] has quit [Disconnected by services] 10:46:10 pygospa [~TheRealPy@kiel-d9bfc9e2.pool.mediaWays.net] has joined #scheme 10:56:51 -!- lbc_ [~quassel@1908ds1-aboes.0.fullrate.dk] has quit [Remote host closed the connection] 10:57:38 -!- leo2007 [~leo@2402:f000:5:2901:225:4bff:fea9:b9e4] has quit [Quit: rcirc on GNU Emacs 23.3.50.1] 11:05:03 stis_ [~stis@host-90-235-115-238.mobileonline.telia.com] has joined #scheme 11:05:38 -!- stis [~stis@host-90-235-246-230.mobileonline.telia.com] has quit [Ping timeout: 240 seconds] 11:13:29 rageous [~rageous@user-38q461p.cable.mindspring.com] has joined #scheme 11:16:14 -!- kuribas [~user@d54C43D8A.access.telenet.be] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 11:28:36 -!- nteon [~nteon@c-98-210-195-105.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 11:37:33 -!- monqy [~chap@pool-71-102-217-117.snloca.dsl-w.verizon.net] has quit [Quit: hello] 11:40:01 -!- EbiDK [511bd602@gateway/web/freenode/ip.81.27.214.2] has quit [Quit: Page closed] 11:40:02 -!- rageous [~rageous@user-38q461p.cable.mindspring.com] has quit [Ping timeout: 246 seconds] 11:42:24 -!- amoe [~amoe@cpc1-brig13-0-0-cust658.3-3.cable.virginmedia.com] has quit [Ping timeout: 248 seconds] 11:46:18 -!- pdelgallego_ [~pdelgalle@1385159903.dhcp.dbnet.dk] has quit [Ping timeout: 240 seconds] 11:46:40 -!- pdelgallego [~pdelgalle@1385159903.dhcp.dbnet.dk] has quit [Ping timeout: 248 seconds] 11:50:56 -!- stis_ [~stis@host-90-235-115-238.mobileonline.telia.com] has quit [Ping timeout: 276 seconds] 11:52:02 -!- Modius [~Modius@cpe-70-123-140-183.austin.res.rr.com] has quit [Ping timeout: 276 seconds] 11:52:32 -!- femtoo [~femto@95-89-249-242-dynip.superkabel.de] has quit [Read error: Connection reset by peer] 11:52:59 -!- borism [~boris@ec2-46-137-99-139.eu-west-1.compute.amazonaws.com] has quit [Read error: Operation timed out] 11:53:20 borism [~boris@ec2-46-137-99-139.eu-west-1.compute.amazonaws.com] has joined #scheme 11:54:15 why does the MIT-SCHEME function WRITE-XML always stop writing after 118784 bytes? 11:55:34 -!- kniu [~kniu@DOHOHO.RES.CMU.EDU] has quit [Read error: Operation timed out] 11:56:11 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Ping timeout: 240 seconds] 11:56:33 kniu [~kniu@DOHOHO.RES.CMU.EDU] has joined #scheme 11:57:18 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 12:01:33 Broa [~Broa@13.Red-83-61-37.dynamicIP.rima-tde.net] has joined #scheme 12:09:33 pdelgallego [~pdelgalle@1385159903.dhcp.dbnet.dk] has joined #scheme 12:09:38 pdelgallego_ [~pdelgalle@1385159903.dhcp.dbnet.dk] has joined #scheme 12:16:48 Modius [~Modius@70.123.140.183] has joined #scheme 12:25:04 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Ping timeout: 248 seconds] 12:25:27 -!- aidalgol [~user@114-134-8-93.rurallink.co.nz] has quit [Quit: zZzZzZzZzZz] 12:25:51 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 12:35:05 kuribas [~user@d54C43D8A.access.telenet.be] has joined #scheme 12:37:13 teurastaja [~Samuel@modemcable182.177-200-24.mc.videotron.ca] has joined #scheme 12:37:25 ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has joined #scheme 12:40:12 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Ping timeout: 250 seconds] 12:41:06 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 12:45:19 ysph` [~user@75-143-92-146.dhcp.aubn.al.charter.com] has joined #scheme 12:46:51 -!- ysph [~user@75-143-92-146.dhcp.aubn.al.charter.com] has quit [Ping timeout: 252 seconds] 12:48:28 -!- pygospa [~TheRealPy@kiel-d9bfc9e2.pool.mediaWays.net] has quit [Disconnected by services] 12:48:37 pygospa [~TheRealPy@kiel-5f76964b.pool.mediaWays.net] has joined #scheme 12:48:51 femtoo [~femto@95-89-249-242-dynip.superkabel.de] has joined #scheme 12:52:27 tauntaun [~Crumpet@ool-44c7e46c.dyn.optonline.net] has joined #scheme 12:55:22 -!- jewel [~jewel@196-215-88-68.dynamic.isadsl.co.za] has quit [Ping timeout: 250 seconds] 13:03:25 -!- ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has quit [Quit: Leaving] 13:07:36 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Read error: Operation timed out] 13:10:36 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 13:11:34 -!- thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has quit [Quit: Leaving] 13:13:30 thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has joined #scheme 13:17:40 -!- thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has quit [Client Quit] 13:19:47 -!- shardz [~samuel@ilo.staticfree.info] has quit [Ping timeout: 246 seconds] 13:25:07 -!- Riastradh [debian-tor@fsf/member/riastradh] has quit [Ping timeout: 246 seconds] 13:27:04 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Ping timeout: 256 seconds] 13:27:58 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 13:28:06 tupi [~david@189.60.162.71] has joined #scheme 13:32:06 myu2 [~myu2@v051158.dynamic.ppp.asahi-net.or.jp] has joined #scheme 13:32:23 stis [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 13:33:21 leo2007 [~leo@2402:f000:5:2901:225:4bff:fea9:b9e4] has joined #scheme 13:41:47 -!- myu2 [~myu2@v051158.dynamic.ppp.asahi-net.or.jp] has quit [Remote host closed the connection] 13:45:22 -!- Jafet [~Jafet@unaffiliated/jafet] has quit [Quit: Leaving.] 13:45:42 Jafet [~Jafet@unaffiliated/jafet] has joined #scheme 13:47:24 dnolen [~davidnole@184.152.69.75] has joined #scheme 13:48:18 -!- teurastaja [~Samuel@modemcable182.177-200-24.mc.videotron.ca] has quit [Quit: --> Put something intelligent here when I'm more bored <--] 13:49:09 amoe [~amoe@cpc1-brig13-0-0-cust658.3-3.cable.virginmedia.com] has joined #scheme 13:50:33 peeq_ [~peeq@117.192.114.180] has joined #scheme 13:50:33 -!- peeq_ [~peeq@117.192.114.180] has quit [Changing host] 13:50:33 peeq_ [~peeq@unaffiliated/tqu] has joined #scheme 13:51:25 -!- peeq [~peeq@unaffiliated/tqu] has quit [Ping timeout: 240 seconds] 13:52:41 -!- Broa [~Broa@13.Red-83-61-37.dynamicIP.rima-tde.net] has quit [Ping timeout: 240 seconds] 13:56:51 -!- tauntaun [~Crumpet@ool-44c7e46c.dyn.optonline.net] has quit [Quit: Ex-Chat] 13:57:49 -!- gravicappa [~gravicapp@80.90.116.82] has quit [Remote host closed the connection] 13:58:20 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Ping timeout: 276 seconds] 13:58:31 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 14:02:06 -!- pygospa [~TheRealPy@kiel-5f76964b.pool.mediaWays.net] has quit [Disconnected by services] 14:02:15 pygospa [~TheRealPy@kiel-d9bfc6db.pool.mediaWays.net] has joined #scheme 14:03:24 jewel [~jewel@196-215-88-68.dynamic.isadsl.co.za] has joined #scheme 14:06:05 -!- peeq_ is now known as peeq 14:10:24 -!- oivindbi [oivindbi@lynx.stud.ntnu.no] has quit [Remote host closed the connection] 14:12:20 -!- Modius [~Modius@70.123.140.183] has quit [Ping timeout: 260 seconds] 14:14:20 -!- dnolen [~davidnole@184.152.69.75] has quit [Quit: dnolen] 14:15:39 rageous [~rageous@user-38q461p.cable.mindspring.com] has joined #scheme 14:15:52 Modius [~Modius@cpe-70-123-140-183.austin.res.rr.com] has joined #scheme 14:16:59 dnolen [~davidnole@184.152.69.75] has joined #scheme 14:21:39 -!- dnolen [~davidnole@184.152.69.75] has quit [Client Quit] 14:21:44 -!- rageous [~rageous@user-38q461p.cable.mindspring.com] has quit [Ping timeout: 276 seconds] 14:30:26 -!- samth_away is now known as samth 14:37:06 replore_ [~replore@ntkngw256114.kngw.nt.ftth.ppp.infoweb.ne.jp] has joined #scheme 14:46:47 abhinav [~abhinav@122.167.168.20] has joined #scheme 14:47:10 -!- DT`` [~Feeock@net-93-149-41-154.cust.dsl.teletu.it] has quit [Ping timeout: 250 seconds] 14:48:44 StayInSkool [~StayInSko@CPE001d7e3441e8-CM001a668109ee.cpe.net.cable.rogers.com] has joined #scheme 14:52:36 -!- copumpkin [~pumpkin@unaffiliated/pumpkingod] has quit [Quit: Computer has gone to sleep.] 14:58:26 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Read error: Operation timed out] 14:58:47 -!- mathk [~mathk@dispo-82-65-228-167.adsl.proxad.net] has quit [Read error: Operation timed out] 15:01:34 Euthydemus [~euthydemu@87.96.150.208] has joined #scheme 15:04:07 carleastlund [~cce@gotham.ccs.neu.edu] has joined #scheme 15:05:09 mathk [~mathk@lns-bzn-40-82-251-165-100.adsl.proxad.net] has joined #scheme 15:10:03 ymasory [~ymasory@frank.ldc.upenn.edu] has joined #scheme 15:11:49 DT`` [~Feeock@net-93-149-48-188.cust.dsl.teletu.it] has joined #scheme 15:15:55 -!- Euthydemus [~euthydemu@87.96.150.208] has quit [Ping timeout: 260 seconds] 15:16:16 -!- femtoo [~femto@95-89-249-242-dynip.superkabel.de] has quit [Read error: Connection reset by peer] 15:16:53 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 15:20:51 ckrailo [~ckrailo@208.86.167.249] has joined #scheme 15:21:32 copumpkin [~pumpkin@17.45.135.82] has joined #scheme 15:21:32 -!- copumpkin [~pumpkin@17.45.135.82] has quit [Changing host] 15:21:32 copumpkin [~pumpkin@unaffiliated/pumpkingod] has joined #scheme 15:23:46 -!- lisppaste [~lisppaste@common-lisp.net] has quit [Ping timeout: 258 seconds] 15:24:02 -!- specbot [~specbot@common-lisp.net] has quit [Ping timeout: 246 seconds] 15:24:38 -!- minion [~minion@common-lisp.net] has quit [Ping timeout: 240 seconds] 15:31:21 realitygrill [~realitygr@adsl-76-226-130-62.dsl.sfldmi.sbcglobal.net] has joined #scheme 15:31:57 -!- DT`` [~Feeock@net-93-149-48-188.cust.dsl.teletu.it] has quit [Ping timeout: 248 seconds] 15:32:25 -!- LN^off is now known as LN^^ 15:32:43 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Ping timeout: 260 seconds] 15:33:09 Euthydemus [~euthydemu@87.96.150.208] has joined #scheme 15:36:06 pdlogan [~patrick@174-25-37-137.ptld.qwest.net] has joined #scheme 15:36:26 rageous [~rageous@user-38q461p.cable.mindspring.com] has joined #scheme 15:37:54 thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has joined #scheme 15:43:40 rpg [~rpg@mpls.sift.info] has joined #scheme 15:45:22 DT`` [~Feeock@net-93-149-74-62.cust.dsl.teletu.it] has joined #scheme 15:46:50 -!- Euthydemus [~euthydemu@87.96.150.208] has quit [Ping timeout: 260 seconds] 15:47:29 Euthydemus [~euthydemu@87.96.150.208] has joined #scheme 15:49:04 -!- replore_ [~replore@ntkngw256114.kngw.nt.ftth.ppp.infoweb.ne.jp] has quit [Remote host closed the connection] 15:59:02 -!- ysph` [~user@75-143-92-146.dhcp.aubn.al.charter.com] has quit [Ping timeout: 276 seconds] 16:00:50 -!- thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has quit [Quit: Leaving] 16:04:36 gravicappa [~gravicapp@ppp91-77-170-5.pppoe.mtu-net.ru] has joined #scheme 16:10:00 -!- MichaelRaskin [~MichaelRa@195.178.216.22] has quit [Remote host closed the connection] 16:12:26 -!- ymasory [~ymasory@frank.ldc.upenn.edu] has quit [Read error: Connection reset by peer] 16:19:04 thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has joined #scheme 16:21:12 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Ping timeout: 250 seconds] 16:21:32 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 16:23:55 jonrafkind [~jon@crystalis.cs.utah.edu] has joined #scheme 16:29:25 -!- Euthydemus [~euthydemu@87.96.150.208] has quit [Ping timeout: 260 seconds] 16:29:48 ymasory [~ymasory@frank.ldc.upenn.edu] has joined #scheme 16:30:15 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 16:36:42 saiko-chriskun [~chris-kun@fsf/member/saiko-chriskun] has joined #scheme 16:37:51 where is a good place to find some freelancers for scheme? hehe 16:41:48 pdlogan1 [~patrick@174-25-37-137.ptld.qwest.net] has joined #scheme 17:04:49 bweaver [~user@host-68-169-158-20.WISOLT2.epbfi.com] has joined #scheme 17:06:28 ysph` [~user@75-143-82-29.dhcp.aubn.al.charter.com] has joined #scheme 17:07:44 -!- pdlogan1 [~patrick@174-25-37-137.ptld.qwest.net] has quit [Quit: Leaving.] 17:08:52 -!- pdelgallego [~pdelgalle@1385159903.dhcp.dbnet.dk] has quit [Ping timeout: 250 seconds] 17:09:01 -!- pdelgallego_ [~pdelgalle@1385159903.dhcp.dbnet.dk] has quit [Ping timeout: 252 seconds] 17:12:19 homie [~levgue@xdsl-78-35-172-64.netcologne.de] has joined #scheme 17:12:34 pdelgallego [~pdelgalle@1385159903.dhcp.dbnet.dk] has joined #scheme 17:12:38 pdelgallego_ [~pdelgalle@1385159903.dhcp.dbnet.dk] has joined #scheme 17:16:08 Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has joined #scheme 17:16:11 kilimanjaro [~kilimanja@unaffiliated/kilimanjaro] has joined #scheme 17:16:44 shardz [~samuel@ilo.staticfree.info] has joined #scheme 17:17:21 blueadept [~blueadept@unaffiliated/blueadept] has joined #scheme 17:17:36 -!- ysph` [~user@75-143-82-29.dhcp.aubn.al.charter.com] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 17:20:53 EM03: are you looking for people to code for you, or are you looking to find work? 17:22:43 -!- Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has quit [Ping timeout: 250 seconds] 17:24:54 -!- rageous [~rageous@user-38q461p.cable.mindspring.com] has quit [Ping timeout: 250 seconds] 17:28:32 Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has joined #scheme 17:28:58 -!- pdelgallego_ [~pdelgalle@1385159903.dhcp.dbnet.dk] has quit [Read error: Operation timed out] 17:31:00 pdelgallego_ [~pdelgalle@1385159903.dhcp.dbnet.dk] has joined #scheme 17:31:12 -!- Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has quit [Read error: Operation timed out] 17:31:24 -!- gravicappa [~gravicapp@ppp91-77-170-5.pppoe.mtu-net.ru] has quit [Ping timeout: 250 seconds] 17:32:27 femtoo [~femto@95-89-249-242-dynip.superkabel.de] has joined #scheme 17:36:47 -!- rien [~rien@dyn-160-39-34-114.dyn.columbia.edu] has quit [Quit: Get MacIrssi - http://www.sysctl.co.uk/projects/macirssi/] 17:37:10 -!- kilimanjaro is now known as KILIMANJARO 17:40:57 prob find work 17:48:10 Nshag [user@chl45-1-88-123-84-8.fbx.proxad.net] has joined #scheme 17:51:23 homie` [~levgue@xdsl-78-35-161-175.netcologne.de] has joined #scheme 17:52:41 -!- homie` [~levgue@xdsl-78-35-161-175.netcologne.de] has quit [Client Quit] 17:53:33 -!- homie [~levgue@xdsl-78-35-172-64.netcologne.de] has quit [Ping timeout: 264 seconds] 17:55:53 EM03: if you're currently employed and are looking for an opportunity to use scheme, are you in a position to make such an opportunity yourself? probably refit/reimplement an existing app with a scheme-based layer? 17:58:49 MichaelRaskin [~MichaelRa@195.91.224.225] has joined #scheme 18:00:52 geoffhill [~geoffhill@wireless-165-124-144-11.nuwlan.northwestern.edu] has joined #scheme 18:02:06 tauntaun [~Crumpet@ool-44c7e46c.dyn.optonline.net] has joined #scheme 18:04:30 -!- KILIMANJARO [~kilimanja@unaffiliated/kilimanjaro] has quit [Ping timeout: 260 seconds] 18:04:31 Riastradh [debian-tor@fsf/member/riastradh] has joined #scheme 18:07:24 Broa [~Broa@151.Red-83-33-87.dynamicIP.rima-tde.net] has joined #scheme 18:07:44 MrFahrenheit [~RageOfTho@users-146-140.vinet.ba] has joined #scheme 18:08:50 -!- alexgordon is now known as alexgordon| 18:09:51 nome: Or just rewrite an existing app in Scheme. ;-) 18:10:58 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Ping timeout: 240 seconds] 18:11:58 homie [~levgue@xdsl-78-35-161-175.netcologne.de] has joined #scheme 18:13:00 -!- leo2007 [~leo@2402:f000:5:2901:225:4bff:fea9:b9e4] has quit [Read error: Operation timed out] 18:18:19 -!- EM03 [~dfsdfdsf@unaffiliated/em03] has quit [Quit: EM03] 18:19:59 superjudge [~mjl@c83-250-110-188.bredband.comhem.se] has joined #scheme 18:20:48 -!- Modius [~Modius@cpe-70-123-140-183.austin.res.rr.com] has quit [Ping timeout: 250 seconds] 18:21:09 ecraven, no, `m4-dos' is run on the i386 assembly whenever the tree is set up. (I don't know why; I don't know anything about the Windows build.) Do you have m4 installed? What happens when you run the m4-dos script yourself? If it still hangs, what happens if you run it with `sh -x'? 18:21:27 Blkt [~user@dynamic-adsl-94-34-31-42.clienti.tiscali.it] has joined #scheme 18:21:36 yamanu [~yamanu@89.142.205.200] has joined #scheme 18:22:46 good evening everyone 18:23:00 djcb [~user@a88-112-253-18.elisa-laajakaista.fi] has joined #scheme 18:24:09 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has left #scheme 18:26:56 Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 18:29:36 nowhere_man [pierre@AStrasbourg-551-1-54-207.w83-194.abo.wanadoo.fr] has joined #scheme 18:34:21 -!- nowhere_man [pierre@AStrasbourg-551-1-54-207.w83-194.abo.wanadoo.fr] has quit [Ping timeout: 264 seconds] 18:36:55 Modius [~Modius@cpe-70-123-140-183.austin.res.rr.com] has joined #scheme 18:39:50 gravicappa [~gravicapp@ppp91-77-170-5.pppoe.mtu-net.ru] has joined #scheme 18:39:51 Evening Blkt. 18:41:00 stis_ [~stis@host-95-197-232-103.mobileonline.telia.com] has joined #scheme 18:42:36 Euthydemus` [~euthydemu@vaxjo3.208.cust.blixtvik.net] has joined #scheme 18:44:22 hi 18:45:12 -!- pygospa [~TheRealPy@kiel-d9bfc6db.pool.mediaWays.net] has quit [Disconnected by services] 18:45:13 -!- alexgordon| is now known as alexgordon 18:45:22 pygospa [~TheRealPy@kiel-d9bfd651.pool.mediaWays.net] has joined #scheme 18:45:45 -!- Euthydemus [~euthydemu@vaxjo3.208.cust.blixtvik.net] has quit [Ping timeout: 260 seconds] 18:48:16 mmc [~michal@82-148-210-75.fiber.unet.nl] has joined #scheme 18:52:37 -!- gravicappa [~gravicapp@ppp91-77-170-5.pppoe.mtu-net.ru] has quit [Ping timeout: 246 seconds] 18:58:37 aidalgol [~user@114-134-8-93.rurallink.co.nz] has joined #scheme 19:03:24 teurastaja [~Samuel@modemcable182.177-200-24.mc.videotron.ca] has joined #scheme 19:04:36 -!- geoffhill [~geoffhill@wireless-165-124-144-11.nuwlan.northwestern.edu] has quit [Quit: geoffhill] 19:08:51 nome, cky, EM03 is confused about the racket web server, and wants help 19:09:09 -!- StayInSkool [~StayInSko@CPE001d7e3441e8-CM001a668109ee.cpe.net.cable.rogers.com] has quit [Quit: StayInSkool] 19:09:33 He's spent two days in here failing to communicate any such thing 19:09:41 -!- Nisstyre [~nisstyre@infocalypse-net.info] has quit [Ping timeout: 276 seconds] 19:09:41 Poor soul. 19:10:41 Hahahaha. 19:20:24 bgs100 [~ian@unaffiliated/bgs100] has joined #scheme 19:21:32 monqy [~chap@pool-71-102-217-117.snloca.dsl-w.verizon.net] has joined #scheme 19:22:28 rageous [~rageous@nat-portal-160-94-47-16.uofm.wireless.umn.edu] has joined #scheme 19:30:21 how many r7rs drafts are to be written before the final release? 19:30:36 ijp [~user@host109-154-194-141.range109-154.btcentralplus.com] has joined #scheme 19:30:47 3? 19:31:26 -!- yamanu [~yamanu@89.142.205.200] has quit [Ping timeout: 250 seconds] 19:31:42 communication skills? what? 19:32:43 what. 19:32:48 what. 19:32:54 ? 19:33:22 They speak English in What? 19:33:24 its true, teurastaja did wait a few billion femtoseconds without receiving an answer.. 19:33:56 teurastaja: we will know that number when the r7 comes out. at least one it seems! 19:34:11 I was hoping someone would finish that, but oh well. http://www.youtube.com/watch?v=fbGkxcY7YFU 19:34:16 so its a long thriller? 19:34:42 teurastaja: and chills! but yes. 19:36:47 i started reading the draft but then i wondered if that were a good thing since im not fluent yet with older revisions 19:37:16 -!- femtoo [~femto@95-89-249-242-dynip.superkabel.de] has quit [Read error: Connection reset by peer] 19:38:42 depends on for what purpose; surely reading is a good thing! 19:39:08 and it is a well written text too 19:40:48 i could take things for granted that arent yet implemented since i could possibly not tell some differences from earlier versions 19:43:09 most of the stuff is implemented already in some schemes 19:45:27 EM03 [~dfsdfdsf@cpe-65-186-205-111.insight.res.rr.com] has joined #scheme 19:45:27 -!- EM03 [~dfsdfdsf@cpe-65-186-205-111.insight.res.rr.com] has quit [Changing host] 19:45:27 EM03 [~dfsdfdsf@unaffiliated/em03] has joined #scheme 19:45:48 damn this community split... 19:46:18 the community is still here don't worry :) 19:46:44 scattered 19:47:13 and that's a Bad Thing? 19:47:43 not only a bad thing but still... 19:50:46 what are the first impressions from older scheme users on how its getting? 19:51:21 theres not much on the internet yet... 19:52:10 StayInSkool [~StayInSko@24-246-87-105.cable.teksavvy.com] has joined #scheme 19:52:34 -!- StayInSkool [~StayInSko@24-246-87-105.cable.teksavvy.com] has quit [Client Quit] 19:53:05 Some of the older Schemers are writing it, so they should be mildly pleased. :-) 19:55:12 more chibi troubles. If I do (import (srfi 39)) chibi can't find srfi/39/param.so 19:55:28 Not necessarily, fds. Suppose there were eighteen different parts, and I wrote one of them, but had nothing to do with the other seventeen, for which responsibility lay with a bunch of bungling nitwits infatuated by fexprs. In that case, I might not be even mildly pleased with the result. 19:55:57 The file exists at /usr/local/stow/chibi/share/chibi/srfi/39/param.so 19:56:47 (and more relevantly is symlinked to /usr/local/share as well) 19:56:52 Riastradh: lol 19:57:07 whats wrong? 19:57:18 cky: looking to pay some money so I can get started on the right track here 19:58:50 EM03: Nice. 20:00:19 EM03: I'm an experienced coder and I've done freelance work before. However, I'm not sure that I'm an experienced Schemer per se. :-) Like, I can write most any program I want to in Scheme, but, in terms of depth of knowledge, many people on this channel are well above my level. 20:03:43 -!- EM03 [~dfsdfdsf@unaffiliated/em03] has quit [Read error: Connection reset by peer] 20:05:28 EM03 [~dfsdfdsf@cpe-65-186-205-111.insight.res.rr.com] has joined #scheme 20:05:28 -!- EM03 [~dfsdfdsf@cpe-65-186-205-111.insight.res.rr.com] has quit [Changing host] 20:05:28 EM03 [~dfsdfdsf@unaffiliated/em03] has joined #scheme 20:06:37 -!- ymasory [~ymasory@frank.ldc.upenn.edu] has quit [Quit: Leaving] 20:07:19 Riastradh: sorry to pester you on this point, but you mentioned that one should avoid `->' in identifiers if there's no sensible inverse map; is there an alternative to `->', or should one choose another naming convention altogether? 20:09:39 geoffhill [~geoffhill@wireless-165-124-144-245.nuwlan.northwestern.edu] has joined #scheme 20:09:53 -!- superjudge [~mjl@c83-250-110-188.bredband.comhem.se] has quit [Quit: Lost terminal] 20:11:18 -!- tauntaun [~Crumpet@ool-44c7e46c.dyn.optonline.net] has quit [Ping timeout: 250 seconds] 20:11:26 -!- rpg [~rpg@mpls.sift.info] has quit [Quit: rpg] 20:12:05 -!- EM03 [~dfsdfdsf@unaffiliated/em03] has quit [Ping timeout: 276 seconds] 20:12:09 Riastradh: speak English in Lisp! 20:15:40 k -- perhaps think in terms of constructors. To convert A to B, (make-B A) ? 20:16:15 gravicappa [~gravicapp@ppp91-77-170-5.pppoe.mtu-net.ru] has joined #scheme 20:16:37 hmm, though if you had multiple converts for multiple "A" types, that might not be ideal. 20:17:07 -!- jewel [~jewel@196-215-88-68.dynamic.isadsl.co.za] has quit [Ping timeout: 252 seconds] 20:17:54 EbiDK [3e6b7ac3@gateway/web/freenode/ip.62.107.122.195] has joined #scheme 20:21:30 -!- teurastaja [~Samuel@modemcable182.177-200-24.mc.videotron.ca] has quit [Quit: --> Put something intelligent here when I'm more bored <--] 20:30:33 struys [~Adium@bastion.inap.yelpcorp.com] has joined #scheme 20:34:41 -!- ckrailo [~ckrailo@208.86.167.249] has quit [Quit: Computer has gone to sleep.] 20:35:24 lbc_ [~quassel@1908ds1-aboes.0.fullrate.dk] has joined #scheme 20:37:45 -!- bweaver [~user@host-68-169-158-20.WISOLT2.epbfi.com] has quit [Ping timeout: 260 seconds] 20:38:37 ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has joined #scheme 20:39:02 -!- EbiDK [3e6b7ac3@gateway/web/freenode/ip.62.107.122.195] has quit [Ping timeout: 252 seconds] 20:39:54 EbiDK [3e6b7ac3@gateway/web/freenode/ip.62.107.122.195] has joined #scheme 20:40:05 -!- rageous [~rageous@nat-portal-160-94-47-16.uofm.wireless.umn.edu] has quit [Ping timeout: 260 seconds] 20:46:08 -!- saiko-chriskun [~chris-kun@fsf/member/saiko-chriskun] has quit [Quit: WeeChat 0.3.4] 20:46:38 rumina [~rumina@88-148-219-26.bb.dnainternet.fi] has joined #scheme 20:51:06 Riastradh: Good point! I guess that is always a risk with design by committee. Why don't you write your own language specification document? It would surely be brilliant. :-) 20:53:16 ...And surely couldn't be worse than some other benevolent dictatorships. 20:57:36 -!- EarlGray [~dmytrish@inherent.puzzler.volia.net] has quit [Read error: Connection reset by peer] 20:59:14 -!- homie [~levgue@xdsl-78-35-161-175.netcologne.de] has quit [Remote host closed the connection] 20:59:49 -!- aidalgol [~user@114-134-8-93.rurallink.co.nz] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 21:00:02 ckrailo [~ckrailo@129.110.242.7] has joined #scheme 21:01:24 I'm gonna ask a strange thing here. Just please bear with me till the end. 21:02:05 I live in Iran. There's no way to buy a book from online sites like Amazon because of the sanctions. 21:02:53 Do you folks consider it rude to ask if anyone is willing to send me a copy of "The Seasoned Schemer"? 21:04:50 Well, that's pretty dumb of `us'. Do you particularly want a paper copy? If not, perhaps you can find an electronic copy through BitTorrent. I presume that US copyright law doesn't apply to Iran, so you might not even be violating copyright by doing that... 21:06:12 Riastradh: Just an e-copy. 21:06:22 I'll search in torrents. Thanks. 21:07:32 -!- struys [~Adium@bastion.inap.yelpcorp.com] has left #scheme 21:07:41 -!- stis_ [~stis@host-95-197-232-103.mobileonline.telia.com] has quit [Ping timeout: 240 seconds] 21:14:08 -!- alfa_y_omega_ [~alfa_y_om@90.166.231.220] has quit [Ping timeout: 258 seconds] 21:14:24 -!- alexgordon is now known as alexgordon| 21:14:37 realitygrill_ [~realitygr@adsl-76-234-152-183.dsl.sfldmi.sbcglobal.net] has joined #scheme 21:15:26 -!- realitygrill [~realitygr@adsl-76-226-130-62.dsl.sfldmi.sbcglobal.net] has quit [Ping timeout: 250 seconds] 21:15:27 -!- realitygrill_ is now known as realitygrill 21:15:32 alfa_y_omega_ [~alfa_y_om@90.166.231.220] has joined #scheme 21:16:07 -!- gravicappa [~gravicapp@ppp91-77-170-5.pppoe.mtu-net.ru] has quit [Ping timeout: 246 seconds] 21:19:01 -!- geoffhill [~geoffhill@wireless-165-124-144-245.nuwlan.northwestern.edu] has quit [Quit: geoffhill] 21:20:34 choas [~lars@p578F6C55.dip.t-dialin.net] has joined #scheme 21:20:57 bobertlo [~robert@user-38q4b4r.cable.mindspring.com] has joined #scheme 21:25:46 geoffhill [~geoffhill@wireless-165-124-144-245.nuwlan.northwestern.edu] has joined #scheme 21:30:24 gravicappa [~gravicapp@ppp91-77-170-5.pppoe.mtu-net.ru] has joined #scheme 21:30:34 -!- alexgordon| is now known as alexgordon 21:32:13 -!- EbiDK [3e6b7ac3@gateway/web/freenode/ip.62.107.122.195] has quit [Quit: Page closed] 21:35:07 rpg [~rpg@216.243.156.16.real-time.com] has joined #scheme 21:42:05 yamanu [~yamanu@89.142.205.200] has joined #scheme 21:43:10 -!- LN^^ is now known as LN^off 21:44:04 pdponze [~pdponze@144.85.121.191] has joined #scheme 21:51:42 -!- DT`` [~Feeock@net-93-149-74-62.cust.dsl.teletu.it] has quit [Ping timeout: 258 seconds] 21:52:26 Okay, many problems were leading to chibi not working right 21:52:50 Only one of them was not my fault: /usr/local/lib wasn't in ld.so.conf in Arch Linux 21:53:04 the others are too embarassing to mention :P 21:53:29 -!- gravicappa [~gravicapp@ppp91-77-170-5.pppoe.mtu-net.ru] has quit [Remote host closed the connection] 21:53:29 -!- ymasory [~ymasory@c-76-99-55-224.hsd1.pa.comcast.net] has quit [Quit: Leaving] 21:55:32 Nisstyre [~nisstyre@infocalypse-net.info] has joined #scheme 21:59:33 tauntaun [~Crumpet@ool-44c72ce0.dyn.optonline.net] has joined #scheme 22:02:58 -!- geoffhill [~geoffhill@wireless-165-124-144-245.nuwlan.northwestern.edu] has quit [Quit: geoffhill] 22:03:50 -!- Broa [~Broa@151.Red-83-33-87.dynamicIP.rima-tde.net] has quit [Quit: Broa] 22:05:17 DT`` [~Feeock@net-93-149-41-226.cust.dsl.teletu.it] has joined #scheme 22:10:06 -!- Bahman [~Bahman@2.144.253.23] has quit [Ping timeout: 258 seconds] 22:11:26 Bahman [~Bahman@2.144.253.23] has joined #scheme 22:15:07 -!- ckrailo [~ckrailo@129.110.242.7] has quit [Quit: Computer has gone to sleep.] 22:15:20 appamatto: that's not your fault? i always have to add /usr/local/lib to ld.so.conf; i thought it was one of the basic housekeeping things in a distro. 22:16:27 though it does seem a little miserly on the part of the distros not to help me out in that respect. 22:17:13 It's added by default in Debian. 22:18:29 fds: nice; i always did have the feeling that debian was somewhat enlightened. maybe i should get off of the fedora train. 22:19:55 -!- Riastradh [debian-tor@fsf/member/riastradh] has quit [Ping timeout: 246 seconds] 22:20:01 Hmm 22:20:17 open-input-stream is not returning eof when my string has been read 22:20:28 -!- gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has quit [Read error: Operation timed out] 22:20:47 gnomon [~gnomon@CPE0022158a8221-CM000f9f776f96.cpe.net.cable.rogers.com] has joined #scheme 22:22:30 or maybe it is.... 22:23:20 saiko-chriskun [~chris-kun@fsf/member/saiko-chriskun] has joined #scheme 22:23:46 I've never ventured onto the RPM side of the tracks, but I'm a happy Debianista. :-) 22:25:46 -!- pdponze [~pdponze@144.85.121.191] has left #scheme 22:28:27 ckrailo [~ckrailo@129.110.242.7] has joined #scheme 22:29:31 aidalgol [~user@114-134-8-93.rurallink.co.nz] has joined #scheme 22:35:54 -!- Bahman [~Bahman@2.144.253.23] has quit [Quit: Zzz] 22:38:55 -!- pygospa [~TheRealPy@kiel-d9bfd651.pool.mediaWays.net] has quit [Read error: Operation timed out] 22:43:35 geoffhill [~geoffhill@wireless-165-124-145-163.nuwlan.northwestern.edu] has joined #scheme 22:44:23 -!- alfa_y_omega_ [~alfa_y_om@90.166.231.220] has quit [Ping timeout: 260 seconds] 22:45:38 alfa_y_omega_ [~alfa_y_om@90.166.231.220] has joined #scheme 22:48:36 -!- choas [~lars@p578F6C55.dip.t-dialin.net] has quit [Quit: leaving] 22:49:34 -!- saiko-chriskun [~chris-kun@fsf/member/saiko-chriskun] has quit [Quit: WeeChat 0.3.4] 22:56:44 -!- samth is now known as samth_away 22:57:23 turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has joined #scheme 22:58:26 -!- rpg [~rpg@216.243.156.16.real-time.com] has quit [Quit: rpg] 23:03:26 rpg [~rpg@216.243.156.16.real-time.com] has joined #scheme 23:04:59 -!- thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has quit [Ping timeout: 276 seconds] 23:05:31 thoolihan [~Tim@99-157-225-37.lightspeed.bcvloh.sbcglobal.net] has joined #scheme 23:09:54 -!- kuribas [~user@d54C43D8A.access.telenet.be] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 23:10:06 -!- pdlogan [~patrick@174-25-37-137.ptld.qwest.net] has left #scheme 23:11:22 -!- mmc [~michal@82-148-210-75.fiber.unet.nl] has quit [Quit: Leaving.] 23:17:58 -!- ckrailo [~ckrailo@129.110.242.7] has quit [Quit: Computer has gone to sleep.] 23:21:49 -!- geoffhill [~geoffhill@wireless-165-124-145-163.nuwlan.northwestern.edu] has quit [Quit: geoffhill] 23:30:08 -!- cmatei [~cmatei@78.96.101.216] has quit [Ping timeout: 276 seconds] 23:30:56 -!- carleastlund [~cce@gotham.ccs.neu.edu] has quit [Quit: carleastlund] 23:33:17 -!- tauntaun [~Crumpet@ool-44c72ce0.dyn.optonline.net] has quit [Quit: Ex-Chat] 23:35:35 cmatei [~cmatei@78.96.101.216] has joined #scheme 23:41:58 Does anyone know of a mechanism for documenting Scheme-code in-source, so to speak, and generating e.g. PDFs; similar to, say, noweb, doxygen, javadoc, etc.? 23:42:37 I revisit this question every once and a while, but haven't found a satisfactory solution; arcfide mentioned something a while back, and eli something else. 23:43:16 I'm "this close" to just implementing some dumb-ass mechanism and calling it a day; or maybe I'll co-opt emacs' org-mode: it seems to have some noweb-like facilities. 23:43:35 Viz., . 23:44:00 klutometis: scribble can do that for racket, I guess. 23:44:11 bremner_: oh, yeah; maybe that's what eli mentioned. 23:44:51 specifically this, i take it: . 23:46:38 I guess so, I don't have personal experience. 23:46:41 i suppose that's roughly equivalent to org-mode's noweb facilities; whereas the latter, though, are racket-agnostic and well-supported in emacs. 23:48:04 I don't know what org-mode has, but real LP tools other than noweb are very rare. 23:48:13 (And, IMO, for a good reason.) 23:48:45 it seems like there's roughly two models: the noweb model, where composite docs have to be tangled to produce useable code; and the doxygen model, where special documentation directives are encoded in the executable source code. 23:49:06 eli: what reason, do you think? 23:49:07 No, there's more. 23:49:32 There's the foodoc approach (which is probably the doxygen that you mention), 23:49:35 there's LP, 23:49:50 and there's semi-LP, which is actually something completely different from LP. 23:49:53 geoffhill [~geoffhill@wireless-165-124-145-163.nuwlan.northwestern.edu] has joined #scheme 23:50:18 The thing that I hate about LP (the real one) is that it is inherently (and intentionally) breaking lexical scope. 23:50:21 eli: mind elaborating on the third? is it scribble-esque? 23:50:29 eli: good point 23:50:33 No. 23:50:55 If you look for literate programming you soon run into Haskell-related mentions of how it's built into the language. 23:51:00 Those are usually lies. 23:51:10 What they have is exactly that semi-LP thing. 23:51:30 it's not so bad though, if a little simple-minded 23:51:57 Not at all -- in fact, it's much saner than real LP. 23:52:07 dnolen [~davidnole@pool-68-161-89-178.ny325.east.verizon.net] has joined #scheme 23:52:22 It just annoyed me that they used it as a bogus advertising hook. 23:53:09 I'm the one who change the wikipedia article from "The Haskell programming language has native support for literate programming." by adding "semi-" 23:53:47 unfortunately semi-literate sounds like an insult 23:54:14 eli: bizarre; look at , it looks like you can embed latex directly in haskell source? 23:54:39 bremner_: the term is not my choice. 23:54:43 and then there's ; but i'm not sure what special source-annotations it requires. 23:55:00 eli: ah, OK. 23:55:09 maybe there's yet another category: lisp and python docstrings. 23:55:37 klutometis: Yes, there are those, and there's obviously a few more. 23:55:52 klutometis: And re that haskell.org web page -- that's exactly the lie that I was talking about. 23:56:39 In any case, what you get with that semi-LP thing is much less than LP, and it should be mostly independent than *tex. 23:56:40 damn; i'd like something benign and unobtrusive. might have to think about this before i spend my time implementing something. 23:57:25 eli: The real LP is the one that allows you to have named code segments and use them in other segments? 23:57:43 Is that the difference between LP and semi? 23:58:12 masm: Yes, and the result is much more complicated since you can have the code written in random order. 23:58:25 OK. 23:58:39 In contrast, semi-LP basically means that you have some (line-oriented, usually) way to identify the documentation and the code. 23:59:00 So "tangle" and "weave" are actually simple sed or awk one-liners. 23:59:21 Right. 23:59:31 I used CWEB a little. 23:59:48 Well... it makes a lot of sense in some languages... namely in the original Pascal, right?