00:00:54 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 00:02:57 -!- ticking [~janpaulbu@87.253.189.132] has quit [Quit: Leaving...] 00:04:09 jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has joined #scheme 00:04:46 drwho [~drwho@56-34-237-24.gci.net] has joined #scheme 00:11:04 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Read error: Connection reset by peer] 00:15:25 ticking [~janpaulbu@87.253.189.132] has joined #scheme 00:16:27 copumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 00:28:20 -!- mister_m [~mattosaur@2620:0:2250:2104:223:5aff:fe7e:cc97] has quit [Quit: Leaving] 00:29:17 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 00:31:08 -!- EmmanuelOga [~emmanuel@host184.186-109-1.telecom.net.ar] has quit [Ping timeout: 244 seconds] 00:32:27 dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 00:40:17 -!- dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has left #scheme 00:43:38 -!- rostayob [~rostayob@02d99acf.bb.sky.com] has quit [Quit: WeeChat 0.3.5] 00:50:49 -!- samth is now known as samth_away 00:55:38 karswell__ [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 00:55:49 -!- brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has quit [Ping timeout: 240 seconds] 00:57:44 -!- karswell_ [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 252 seconds] 01:00:05 foof: yeah, splint can have a lot of false alarms 01:00:32 brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has joined #scheme 01:00:51 but hopefully some of those warnings will help find some bugs 01:01:15 as for warning about unused parameters, splint is not a mind reader 01:01:29 it can't know whether you intended to not use a paramter or made a mistake 01:01:34 hypnocat: Eh. I remember when someone ran Coverity on Guile, and the official stance is that most of them are not worth following up on. 01:01:46 (/me is not speaking on behalf of Guile there, despite being a committer.) 01:02:49 fortunately, it's easy to tell splint you meant not to use one, by adding an /*@unused@*/ comment in the argument declaration 01:03:05 hypnocat: Static analysis tools like Coverity and splint are mostly useful for programs that don't do tons of dynamic stuff, I think. 01:03:11 But, who knows. 01:03:49 well, one thing that really jumped out at me were the warnings that chibi was doing direct floating point comparisons 01:03:50 hypnocat: Eclipse can be configured to not warn about unused parameters when those parameters are documented via Javadoc. 01:03:54 i don't really know a good reason to do that 01:04:04 hypnocat: If it's comparing against 0.0, that's usually valid. 01:04:10 Other quantities, perhaps not. 01:04:30 *cky* should read the report. 01:05:31 sexp.c:762:13: Dangerous equality comparison involving double types: 01:05:31 ((a)->value.flonum) == ((b)->value.flonum) 01:05:44 eval.c:1258:7: Dangerous equality comparison involving double types: 01:05:44 fabs(d - res) == 0.5 01:06:46 *cky* looks at the code context. 01:08:00 The flonum one is correct. 01:08:08 That is for equal?'s implementation. 01:08:26 equal? is supposed to return #t if the two numbers are exactly identical. 01:08:36 (When comparing numbers, that is.) 01:10:20 hypnocat: The comparison to 0.5 in the other one is also correct, if a funky way to implement round-to-even. 01:10:59 Round-to-even(-integer) only actually applies if the number is equidistant between two integers. 01:11:18 hypnocat: (0.5 has an exact representation in floating-point.) 01:12:20 In contrast, numbers like 0.1 (and most other numbers) do not have an exact representation in floating-point, so doing an equality comparison to such numbers is dangerous. 01:14:38 interesting 01:14:40 dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has joined #scheme 01:16:14 well, there are some other ones too 01:16:25 Sure, tell me about them. I'll be happy to review them in context. 01:16:52 I don't have the time to sift through the whole report, but if you find interesting items, I'll be happy to investigate. 01:18:13 homie` [~levgue@xdsl-78-35-148-9.netcologne.de] has joined #scheme 01:18:58 foof: Minor comment (re even_round): rather than calling round then subtracting that from the number to get the fraction, you can use modf and get both parts in one operation. :-) 01:19:50 hypnocat: it's a _language_ implementation - of course you'll get a dangerous float equality comparison, because we have to provide a way for programmers to make that same error 01:19:58 foof: http://paste.pocoo.org/show/545504/ 01:20:42 -!- homie [~levgue@xdsl-78-35-140-20.netcologne.de] has quit [Ping timeout: 255 seconds] 01:20:45 yeah, i hear you 01:20:49 your arguments are persuasive 01:20:58 hypnocat: I saw, and already said every one of those warnings that I skimmed through were bogus. 01:21:35 oops, i meant to link that to cky 01:21:37 sorry 01:21:42 hypnocat: :-) 01:21:58 your nicks are both in yellow on my stupid xchat irc client 01:22:15 Your xchat obviously needs moar colours. 01:22:29 it has more colors.. it just has a stupid way of using them 01:22:32 :-P 01:22:48 i really need to submit a patch to them for a better nick color selection scheme 01:22:53 :-D 01:23:00 I want to write an IRC client in Scheme. 01:23:09 So sick of using C-based IRC clients and worrying about getting pwned. 01:23:11 -!- _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has quit [Ping timeout: 260 seconds] 01:23:32 are there any good scheme based ones? 01:23:43 i don't think there are any scheme-based ones period 01:23:46 there's an elisp-based one 01:24:15 there are libraries out there for handling the protocol, i guess 01:24:52 -!- masm [~masm@bl16-182-210.dsl.telepac.pt] has quit [Quit: Leaving.] 01:26:29 cky: assuming all platforms have modf 01:27:56 (mostly I just beed to check plan 9) 01:28:04 how about all the warnings about "Left operand of >> may be negative" and "Left operand of << may be negative" ? 01:29:55 or: sexp.c:1006:4: Dereference of null pointer p: *p 01:30:15 hypnocat: that's used for the tagging - it gets used everywhere, so if it were incorrect it would already have broken 01:31:17 this too? eval.c:190:13: Arrow access from null pointer e2: (e2)->value 01:31:33 main.c:317:347: Arrow access from null pointer ctx: (ctx)->value 01:31:55 uh... that warning is just broken - p can't even potentially be null there 01:32:01 hypnocat: just stop, I have no idea what tool your using but these warnings aren't helpful 01:32:16 If you can find a bug then great, I'll fix it. 01:32:42 alright, no problem 01:32:44 But most "lint" style tools just don't work well on something as low-level as a VM. 01:32:48 you guys have the links to the report 01:33:01 if you don't think they're helpful, i won't bother you with them 01:33:58 Not to say there are no bugs left in chibi, but I think my time would be better spent writing more unit tests. 01:36:11 but i'm glad to hear chibi is more robust than splint gives it credit for 01:36:31 -!- ToxicFrog [~ToxicFrog@24-246-40-169.cable.teksavvy.com] has quit [Read error: Connection reset by peer] 01:37:12 ToxicFrog [~ToxicFrog@24-246-40-169.cable.teksavvy.com] has joined #scheme 01:37:35 have you run splint on other scheme implementations? 01:37:50 yep.. tried it on chicken 01:38:16 and? 01:38:31 splint output on pretty much any good-sized program that hasn't been heavily annotated for splint is always pretty much the same: lots of warnings 01:38:54 foof: Like I mentioned to hypnocat, someone once sent a Coverity report to the Guile dev mailing list, and the general opinion was that most of the warnings weren't worth following up on. A small handful of them did get fixed. 01:39:00 how many of those warnings indicate a real problem will, of course, vary from program to program 01:39:34 hypnocat: No open-source project I know of will annotate heavily for splint, Coverity, or another proprietary static checker. 01:39:39 i haven't had any feedback yet from any chicken developers re: the splint output yet.. i've been asked to post the reports to the chicken developer mailing list 01:39:51 but now that i see your response, i'm having second thoughts about doing so 01:40:19 yeah.. there are a couple of problems with heavily annotating code for splint 01:40:26 fwiw, we tried running splint on angband 01:40:29 hypnocat: I think you're better off trying to see if any of them are real bugs, then send bug reports accordingly...it's often easy to see which ones are bugs. 01:40:29 one is that it takes a long time and a fair bit of effort 01:40:41 and even with quite a bit of annotating, we were submerged in a sea of false warnings 01:40:51 the second problem is that code that's heavily annotated for splint is hard to read 01:40:52 you really have to write your program to be splinted from day one 01:40:59 mister_m [~mattosaur@216-80-123-91.c3-0.drb-ubr1.chi-drb.il.cable.rcn.com] has joined #scheme 01:41:39 elly: yeah, the best way to do it is definitely to aim for a clean splint run from day one 01:41:59 but even so, there'd still be the problem of there being so many splint annotations that the underlying code becomes hard to read 01:42:10 yes 01:42:16 hypnocat: Which kind of makes you wonder if such tools are worth it. 01:42:18 although you could hack around that by having your editor hide them 01:42:19 also, to really do it right, you have to put comments in the code regarding why you put in a certain splint annotation 01:42:26 but really, you aren't writing C at that point 01:42:31 you're writing a weird C dialect 01:42:42 and those extra comments would make the underlying code even harder to read 01:43:20 cky: yeah.. it's a tradeoff.. making the tool more robust vs making the code more readable and spending less effort 01:43:27 and less time 01:43:36 the solution, obviously, is a better lint tool or a better language :) 01:44:02 another major problem with splint is that it's seen very little development recently.. it could be made a lot better, but it's just not being done much anymore 01:45:11 still, for someone closely familiar with the codebase and well versed in C, going through a bunch of splint warnings might not take that long 01:45:17 and maybe something will jump out at them 01:45:36 hypnocat: Is it static code analysis, or does it actually run an instrumented version of the program? 01:45:47 completely static 01:46:51 can I see the overall splint report, hypnocat? 01:46:57 I can grovel through it for real bugs 01:47:09 http://paste.pocoo.org/show/545188/ 01:47:33 i only ran splint against the *.c files in chibi's root directory 01:48:09 augh, why does splint complain about assigning null to pointers 01:48:29 well, it likes to know whether you intended to do that or not 01:48:43 and the only way it can know that is if you annotate the source 01:48:49 yeah, no 01:49:08 I think plan A is just to not have bugs 01:49:19 :) 01:49:51 the idea of putting a /*@null@*/ after every pointer is like... no :P 01:50:05 oh, another huge problem with splint annotations: they have to be kept up to date 01:50:29 wtf is 'implicitly only storage'? 01:50:29 eval.c:369:7: Operands of && are non-booleans (char *, char): str && *str 01:50:30 why is that even a warning? 01:50:36 if you, say, change the underlying code without making sure the annotation to that part of the code still needs to be there, you might have just introduced a bug that splint will be blind to 01:50:56 ah 01:51:29 The only annotations I use re null is @Notnull. 01:51:38 Anything not annotated @Notnull is assumed to be nullable. 01:51:47 (For Java code, here.) 01:51:48 chibi's heavy use of macros makes the splint output very hard to read 01:52:03 elly: ah.. the whole "only storage" thing... i don't remember off-hand what it means.. it's some splint terminology 01:52:12 you might want to search for it in the splint manual: http://www.splint.org/manual/manual.html 01:53:04 there's "read-only storage": "It is often useful for a function to return a pointer to internal storage (or an instance of a mutable abstract type) that is intended only as an observer. The caller may use the result, but should not modify the storage it points to." 01:53:14 i'm not quite sure if that's the same as "only storage" 01:53:20 *foof* can't wait to rewrite chibi's core in scheme 01:53:29 foof: Yay! 01:54:54 -!- gsathya [~gsathya@unaffiliated/gsathya] has quit [Ping timeout: 255 seconds] 01:55:34 -!- paperkettles [~chris@ip72-195-132-159.ri.ri.cox.net] has left #scheme 01:55:54 that'll be nice 01:56:09 _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has joined #scheme 01:56:22 gsathya [~gsathya@unaffiliated/gsathya] has joined #scheme 01:56:47 -!- dnolen [~user@cpe-98-14-92-234.nyc.res.rr.com] has quit [Ping timeout: 256 seconds] 01:57:28 elly: re: the whole "non-boolean" warning, see section 4.2 of the splint manual on "boolean types" 01:58:37 basically, splint likes to have you use a distinct type that you use as a boolean type, and the names TRUE and FALSE for the values 01:59:07 sure, but splint is not in line with how people usually write C 01:59:31 confab [~confab@c-71-193-9-153.hsd1.ca.comcast.net] has joined #scheme 01:59:35 well, in all fairness neither is chibi :) 01:59:45 elly: of course.. if it was, it'd give many fewer warnings :) 02:00:12 i feel like i came in at an awkward moment 02:00:18 *elly* runs out of desire to wade through all these warnings 02:00:31 elly: I'm surprised it took you so long to run out of interest. :-) 02:00:48 the question becomes: which is safer? the normal way people write C, or splint's way? 02:01:58 well, there are a whole lot of warnings.. i don't blame you for losing interest.. 02:02:08 hypnocat: splint's way is "safer", but also exhausting 02:02:23 and, well, requires a LOT of programmer discipline 02:02:27 which is never a recipe for secure 02:02:30 some of the warnings might well indicate real bugs.. but it's hard to wade through them all to find those 02:03:33 yeah, it definitely requires a lot of discipline.. and a lot of annotation 02:03:51 or using a safe language to begin with.. :) 02:04:43 anyway, i think we've probably had enough splint for the evening.. 02:04:56 thanks for giving the reports the attention you did give them 02:05:03 sorry it didn't turn up anything worthwhile 02:05:10 s'ok 02:05:14 if you want to read through, go for it 02:05:24 well, if anyone does find something truly suspicious let me know and I'll take a look 02:06:19 eli: i do.. but i don't know chibi's codebase at all.. and my C skills are pretty rusty.. and, as you know, the real way to go through a report like this is to annotate the hell out of the source 02:06:22 hypnocat: you might also try turning off some of the splint warnings 02:11:54 -!- em [~em@unaffiliated/emma] has quit [Ping timeout: 245 seconds] 02:12:27 rostayob [~rostayob@02d99acf.bb.sky.com] has joined #scheme 02:13:44 em [~em@unaffiliated/emma] has joined #scheme 02:16:06 you know, someone should write a tool that praises code for good programming practices 02:17:15 that sort of tool will probably be a lot more popular than one that flags code for what it considers poor programming practices 02:18:42 dous [~dous@unaffiliated/dous] has joined #scheme 02:18:53 -!- brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has quit [Ping timeout: 256 seconds] 02:19:17 hypnocat: Ew. 02:19:20 That's just noise. 02:19:33 i was kidding 02:19:36 I go by the Unix philosophy that "no news is good news". 02:23:27 brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has joined #scheme 02:30:13 -!- brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has quit [Ping timeout: 248 seconds] 02:30:42 brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has joined #scheme 02:45:31 -!- brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has quit [Ping timeout: 256 seconds] 02:49:45 has chibi scheme been ported to hurd? 02:53:32 hypnocat: Try it and see. :-P 02:54:23 i will :) 02:54:37 i just recently got chicken working on hurd 02:54:46 and it was virtually painless 02:56:06 -!- dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has quit [Ping timeout: 255 seconds] 03:00:09 langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has joined #scheme 03:02:22 -!- Adamant [~Adamant@unaffiliated/adamant] has quit [Quit: Adamant] 03:03:45 -!- rostayob [~rostayob@02d99acf.bb.sky.com] has quit [Quit: WeeChat 0.3.5] 03:05:49 langmart` [~user@host-68-169-155-216.WISOLT2.epbfi.com] has joined #scheme 03:06:13 -!- langmart` [~user@host-68-169-155-216.WISOLT2.epbfi.com] has quit [Client Quit] 03:07:02 -!- langmartin [~user@host-68-169-155-216.WISOLT2.epbfi.com] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 03:09:34 -!- turbofail [~user@c-107-3-149-149.hsd1.ca.comcast.net] has quit [Ping timeout: 248 seconds] 03:21:58 -!- kk` [~kk@unaffiliated/kk/x-5380134] has quit [Remote host closed the connection] 03:22:54 -!- GoKhlaYeh [~GoKhlaYeh@135.51.68.86.rev.sfr.net] has quit [Ping timeout: 272 seconds] 03:32:35 -!- bytbox [~s@129.2.129.230] has quit [Ping timeout: 252 seconds] 03:33:55 -!- mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has quit [Ping timeout: 252 seconds] 03:34:34 bytbox [~s@129.2.129.230] has joined #scheme 03:39:49 -!- bytbox [~s@129.2.129.230] has quit [Ping timeout: 240 seconds] 03:39:51 -!- jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has quit [Quit: Leaving] 03:45:00 bytbox [~s@129.2.129.230] has joined #scheme 03:47:30 -!- bytbox [~s@129.2.129.230] has quit [Client Quit] 03:53:22 soveran [~soveran@186.19.214.247] has joined #scheme 04:00:45 -!- bfgun is now known as bfig 04:04:17 when i make and install chibi via: make PREFIX=/usr/local/chibi install ; export PATH=/usr/local/chibi/bin:$PATH ; export LD_LIBRARY_PATH=/usr/local/chibi/lib:$LD_LIBRARY_PATH 04:04:30 when i run chibi-scheme, i get: ERROR: couldn't find file in module path: "init-7.scm" 04:04:56 how can i tell chibi to look in /usr/local/chibi/share/chibi for init-7.scm? 04:07:55 that's the "MODDIR" in chibi's Makefile 04:24:46 -!- _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has quit [Ping timeout: 252 seconds] 04:29:22 cswords [~cswords@c-98-223-234-80.hsd1.in.comcast.net] has joined #scheme 04:30:03 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 04:32:10 nevermind.. i started from scratch with a newly untarred chibi and i no longer run in to the problem 04:46:34 well, my attempt to make chibi on hurd failed 04:46:42 make log: http://paste.pocoo.org/show/545534/ 04:47:04 looks like the main culprit at this point is lib/chibi/stty.so 04:47:18 which fails to build with a bunch of errors 04:48:07 actually, the errors come from lib/chibi/stty.c 04:48:30 Huh. I've gotta to try this out. :-P 04:48:47 I have a Debian GNU/kFreeBSD virtual machine. Maybe it's now time to have a Debian GNU/Hurd one also. 04:48:49 ThePawnBreak [~quassel@94.177.108.25] has joined #scheme 04:49:44 i'm running the hurd image from here: http://www.gnu.org/software/hurd/hurd/running/qemu.html 04:50:07 under qemu 0.11.1 04:50:59 one nice thing about chibi's smallness is that it builds pretty fast 04:51:16 Ah, so that's still using Debian GNU/Hurd, then? 04:51:20 chicken took 2.5 hours to build on hurd running under qemu 04:51:22 That's what the page seems to mention. 04:51:25 chibi only took 12 minuts 04:51:29 Are you using KVM? 04:51:33 nope 04:51:37 You are a masochist. 04:51:47 i have an old processor that doesn't have the extensions needed for kvm 04:52:03 I see. 04:52:26 another option would be to get one of the free accounts offered by the hurd guys to play with 04:52:34 i've been meaning to do that.. just haven't gotten around to it 04:52:59 i hear they're still kind of slow, i can't imagine they're anywhere as slow as what i've got now 04:54:40 *nods* 04:54:50 Too bad Hurd doesn't yet support dom0 operation (AFAIK). 04:54:59 It'd otherwise be nice to run as a Linode instance. 04:55:10 I've been meaning to run a FreeBSD-based dom0 on Linode. 04:59:08 that would be fun to try out 05:14:34 groovy2shoes [~cory@unaffiliated/groovebot] has joined #scheme 05:20:28 -!- karswell__ [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 244 seconds] 05:21:43 karswell__ [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 05:26:37 -!- gsathya [~gsathya@unaffiliated/gsathya] has quit [Ping timeout: 248 seconds] 05:26:48 since the stty.c errors i got on hurd while compiling chibi were about: "error: 'struct termios' has no member named 'c_ispeed'" and the same regarding "c_ospeed", i started doing a web search for those.. and found this bit of advice: 05:27:10 "Rather than poking c_ispeed directly, use the cfgetispeed helper. This is part of POSIX, and we already use cfsetispeed, so there shouldn't be any portability issues here." 05:27:17 from: http://permalink.gmane.org/gmane.comp.hardware.gps.gpsd.devel/9128 05:27:32 gsathya [~gsathya@unaffiliated/gsathya] has joined #scheme 05:28:39 that might be worth trying.. 05:30:09 -!- homie` [~levgue@xdsl-78-35-148-9.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 05:32:07 gravicappa [~gravicapp@ppp91-77-163-92.pppoe.mtu-net.ru] has joined #scheme 05:44:15 -!- groovy2shoes [~cory@unaffiliated/groovebot] has quit [Read error: Connection reset by peer] 05:49:27 ijp [~user@host86-168-33-252.range86-168.btcentralplus.com] has joined #scheme 05:55:49 realitygrill [~realitygr@76.226.216.238] has joined #scheme 06:03:11 groovy2shoes [~cory@unaffiliated/groovebot] has joined #scheme 06:13:46 -!- groovy2shoes [~cory@unaffiliated/groovebot] has quit [Read error: Connection reset by peer] 06:17:39 homie [~levgue@xdsl-78-35-148-9.netcologne.de] has joined #scheme 06:32:33 -!- homie [~levgue@xdsl-78-35-148-9.netcologne.de] has quit [Quit: ERC Version 5.3 (IRC client for Emacs)] 06:42:10 grettke [~grettke@CPE-70-92-14-73.wi.res.rr.com] has joined #scheme 06:44:38 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 07:08:01 -!- grettke [~grettke@CPE-70-92-14-73.wi.res.rr.com] has quit [] 07:11:29 -!- gravicappa [~gravicapp@ppp91-77-163-92.pppoe.mtu-net.ru] has quit [Ping timeout: 240 seconds] 07:23:20 gravicappa [~gravicapp@ppp91-77-160-154.pppoe.mtu-net.ru] has joined #scheme 07:25:18 homie [~levgue@xdsl-78-35-148-9.netcologne.de] has joined #scheme 07:39:30 -!- gsathya [~gsathya@unaffiliated/gsathya] has quit [Ping timeout: 252 seconds] 07:55:25 -!- drwho [~drwho@56-34-237-24.gci.net] has quit [Quit: leaving] 07:55:39 -!- MichaelRaskin [~MichaelRa@3ad50e34.broker.freenet6.net] has quit [Ping timeout: 245 seconds] 07:56:03 -!- realitygrill [~realitygr@76.226.216.238] has quit [Ping timeout: 256 seconds] 07:58:08 realitygrill [~realitygr@76.226.200.45] has joined #scheme 08:01:28 groovy2shoes [~cory@unaffiliated/groovebot] has joined #scheme 08:04:27 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 08:04:59 EmmanuelOga [~emmanuel@host184.186-109-1.telecom.net.ar] has joined #scheme 08:13:02 -!- EmmanuelOga [~emmanuel@host184.186-109-1.telecom.net.ar] has quit [Ping timeout: 244 seconds] 08:13:06 brendyn [~brendyn@123-2-73-61.static.dsl.dodo.com.au] has joined #scheme 08:14:07 well, i've managed to patch chibi's lib/chibi/stty.c so that lib/chibi/stty.so will compile on hurd.. patch here: http://paste.pocoo.org/show/545554/ 08:14:34 unfortunately, i did that before realizing that stty.c was itself auto-generated 08:15:48 so my patch can't simply be applied to the raw chibi source (which doesn't actually even include stty.c until after it's started compiling) 08:16:56 hopefully someone familiar with the chibi ffi can patch the relevant files from which stty.c is auto-generated (apparently those are stty.scm and stty.stub) 08:18:37 -!- DGASAU [~user@91.218.144.129] has quit [Read error: Connection reset by peer] 08:20:08 -!- realitygrill [~realitygr@76.226.200.45] has quit [Quit: realitygrill] 08:22:42 leo2007 [~leo@114.249.197.46] has joined #scheme 08:24:29 -!- mister_m [~mattosaur@216-80-123-91.c3-0.drb-ubr1.chi-drb.il.cable.rcn.com] has quit [Quit: Leaving] 08:27:30 if the above changes could be made, then chibi will run on hurd 08:27:39 just tested it 08:33:13 dzhus [~sphinx@95-25-98-202.broadband.corbina.ru] has joined #scheme 08:39:15 dan64 [~dan64@c-71-206-193-42.hsd1.pa.comcast.net] has joined #scheme 08:49:00 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 08:49:50 eno [~eno@nslu2-linux/eno] has joined #scheme 08:52:57 -!- groovy2shoes [~cory@unaffiliated/groovebot] has quit [Read error: Connection reset by peer] 08:53:16 bfgun [~b_fin_g@r186-48-221-67.dialup.adsl.anteldata.net.uy] has joined #scheme 08:56:05 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 08:56:43 -!- bfig [~b_fin_g@r186-48-252-199.dialup.adsl.anteldata.net.uy] has quit [Ping timeout: 252 seconds] 08:57:45 eno [~eno@nslu2-linux/eno] has joined #scheme 09:00:09 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 09:07:51 choas [~lars@p5795CF60.dip.t-dialin.net] has joined #scheme 09:16:35 groovy2shoes [~cory@unaffiliated/groovebot] has joined #scheme 09:18:06 -!- ijp [~user@host86-168-33-252.range86-168.btcentralplus.com] has quit [Read error: Connection reset by peer] 09:19:05 ijp [~user@host86-168-33-252.range86-168.btcentralplus.com] has joined #scheme 09:27:22 -!- groovy2shoes [~cory@unaffiliated/groovebot] has quit [Quit: It is now safe to turn off your groovebot.] 09:34:51 -!- pchrist [~spirit@gentoo/developer/pchrist] has quit [Quit: leaving] 09:35:22 pchrist [~spirit@gentoo/developer/pchrist] has joined #scheme 09:35:47 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 256 seconds] 09:37:09 eno [~eno@nslu2-linux/eno] has joined #scheme 09:47:24 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 09:49:07 eno [~eno@nslu2-linux/eno] has joined #scheme 09:54:54 MichaelRaskin [~MichaelRa@3ad50e34.broker.freenet6.net] has joined #scheme 09:54:58 klnvnv [~klnvnv@46.10.82.29] has joined #scheme 10:01:26 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 10:03:07 eno [~eno@nslu2-linux/eno] has joined #scheme 10:05:11 -!- klnvnv [~klnvnv@46.10.82.29] has quit [Remote host closed the connection] 10:18:09 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 10:20:10 eno [~eno@nslu2-linux/eno] has joined #scheme 10:33:57 -!- eno [~eno@nslu2-linux/eno] has quit [Read error: Operation timed out] 10:34:18 masm [~masm@bl16-182-210.dsl.telepac.pt] has joined #scheme 10:36:12 eno [~eno@nslu2-linux/eno] has joined #scheme 10:37:47 mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has joined #scheme 10:44:56 -!- ticking [~janpaulbu@87.253.189.132] has quit [Quit: Leaving...] 10:46:25 ticking [~janpaulbu@87.253.189.132] has joined #scheme 10:48:45 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 10:50:11 eno [~eno@nslu2-linux/eno] has joined #scheme 10:59:08 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 11:01:08 eno [~eno@nslu2-linux/eno] has joined #scheme 11:01:46 -!- copumpkin [~copumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 252 seconds] 11:02:12 copumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 11:03:09 -!- jakky [jakk@motherfucking.ddosking.org] has quit [Ping timeout: 240 seconds] 11:04:08 jakky [jokk@motherfucking.ddosking.org] has joined #scheme 11:08:27 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 11:10:04 eno [~eno@nslu2-linux/eno] has joined #scheme 11:11:04 MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has joined #scheme 11:18:09 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 11:20:01 eno [~eno@nslu2-linux/eno] has joined #scheme 11:24:50 -!- MichaelRaskin [~MichaelRa@3ad50e34.broker.freenet6.net] has quit [Ping timeout: 245 seconds] 11:28:08 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 11:29:58 eno [~eno@nslu2-linux/eno] has joined #scheme 11:30:47 hypnocat: thanks, I'll look into that 11:31:04 note stty is optional - chibi itself will run fine even if that library fails to build 11:31:11 nowhereman [~pierre@AStrasbourg-551-1-28-124.w83-196.abo.wanadoo.fr] has joined #scheme 11:31:36 foof: when that library failed to build, chibi failed to fully install 11:31:59 "make chibi-scheme" is all you really need 11:32:18 it's the "install" rule that had the problem 11:33:15 see this log: http://paste.pocoo.org/show/545534/ 11:33:34 hmmm... it should still have installed the core chibi itself 11:34:07 well, it installed the "chibi-scheme" binary 11:34:15 -!- nowhere_man [~pierre@AStrasbourg-551-1-135-13.w90-26.abo.wanadoo.fr] has quit [Ping timeout: 252 seconds] 11:34:15 but one thing it definitely failed to install was libchibi-scheme.so 11:34:23 chibi-scheme complained that it was missing 11:34:59 i think there were some other things missing 11:36:29 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 256 seconds] 11:37:54 eno [~eno@nslu2-linux/eno] has joined #scheme 11:38:39 t55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555 11:39:09 cat on keyboard? :) 11:39:45 rudybot: does this number have any significance to you? 11:39:45 ijp: the little girl in the red coat would lose her significance 11:40:48 oops, that was deanna 11:44:30 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 272 seconds] 11:45:49 eno [~eno@nslu2-linux/eno] has joined #scheme 11:46:29 -!- mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has quit [Ping timeout: 240 seconds] 11:47:49 -!- leo2007 [~leo@114.249.197.46] has quit [Quit: rcirc on GNU Emacs 23.4.1] 11:52:44 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 272 seconds] 11:53:44 eno [~eno@nslu2-linux/eno] has joined #scheme 11:57:33 -!- ticking [~janpaulbu@87.253.189.132] has quit [Quit: Linkinus - http://linkinus.com] 12:06:54 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 255 seconds] 12:08:47 eno [~eno@nslu2-linux/eno] has joined #scheme 12:11:34 rostayob [~rostayob@02d99acf.bb.sky.com] has joined #scheme 12:13:54 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 12:14:54 eno [~eno@nslu2-linux/eno] has joined #scheme 12:17:46 -!- X-Scale [email@sgi-ultra64.broker.freenet6.net] has quit [Remote host closed the connection] 12:19:55 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 12:20:32 ticking [~janpaulbu@87.253.189.132] has joined #scheme 12:20:50 eno [~eno@nslu2-linux/eno] has joined #scheme 12:28:03 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 255 seconds] 12:29:43 eno [~eno@nslu2-linux/eno] has joined #scheme 12:30:42 -!- tupi [~david@139.82.89.24] has quit [Remote host closed the connection] 12:31:47 tupi [~david@177.30.115.118] has joined #scheme 12:40:32 woonie [~woonie@175.156.211.52] has joined #scheme 12:40:40 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 12:42:43 eno [~eno@nslu2-linux/eno] has joined #scheme 12:45:55 -!- ticking [~janpaulbu@87.253.189.132] has quit [Quit: Leaving...] 12:46:08 -!- choas [~lars@p5795CF60.dip.t-dialin.net] has quit [Ping timeout: 240 seconds] 12:54:10 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 272 seconds] 12:55:42 eno [~eno@nslu2-linux/eno] has joined #scheme 13:04:10 bytbox [~s@129.2.129.226] has joined #scheme 13:04:17 -!- eno [~eno@nslu2-linux/eno] has quit [Read error: Operation timed out] 13:07:40 eno [~eno@nslu2-linux/eno] has joined #scheme 13:13:44 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 244 seconds] 13:15:33 eno [~eno@nslu2-linux/eno] has joined #scheme 13:21:09 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 255 seconds] 13:21:46 eno [~eno@nslu2-linux/eno] has joined #scheme 13:22:11 GoKhlaYeh [~GoKhlaYeh@135.51.68.86.rev.sfr.net] has joined #scheme 13:26:38 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 13:27:23 leo2007 [~leo@222.130.128.105] has joined #scheme 13:27:55 eno [~eno@nslu2-linux/eno] has joined #scheme 13:35:17 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 13:36:51 eno [~eno@nslu2-linux/eno] has joined #scheme 13:40:24 -!- homie [~levgue@xdsl-78-35-148-9.netcologne.de] has quit [Read error: Connection reset by peer] 13:41:29 -!- ssbr [~scorchsab@python/site-packages/ssbr] has quit [Read error: Connection reset by peer] 13:42:16 ssbr [~scorchsab@206-188-66-188.cpe.distributel.net] has joined #scheme 13:42:16 -!- ssbr [~scorchsab@206-188-66-188.cpe.distributel.net] has quit [Changing host] 13:42:16 ssbr [~scorchsab@python/site-packages/ssbr] has joined #scheme 13:42:37 homie [~levgue@xdsl-78-35-157-2.netcologne.de] has joined #scheme 13:43:34 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 272 seconds] 13:44:45 eno [~eno@nslu2-linux/eno] has joined #scheme 13:45:56 ticking [~janpaulbu@87.253.189.132] has joined #scheme 13:46:33 soveran [~soveran@186.19.214.247] has joined #scheme 13:49:19 kingless [~kingless@12.207.185.156] has joined #scheme 13:50:13 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 13:50:53 eno [~eno@nslu2-linux/eno] has joined #scheme 13:53:23 jewel [~jewel@196-215-88-26.dynamic.isadsl.co.za] has joined #scheme 13:56:52 -!- woonie [~woonie@175.156.211.52] has quit [Ping timeout: 272 seconds] 13:57:01 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 256 seconds] 13:57:08 woonie [~woonie@175.156.211.52] has joined #scheme 13:58:49 eno [~eno@nslu2-linux/eno] has joined #scheme 14:04:08 -!- kingless [~kingless@12.207.185.156] has quit [Read error: Connection reset by peer] 14:05:00 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 260 seconds] 14:05:06 kingless [~kingless@12.207.185.156] has joined #scheme 14:06:43 eno [~eno@nslu2-linux/eno] has joined #scheme 14:08:14 -!- rostayob [~rostayob@02d99acf.bb.sky.com] has quit [Quit: WeeChat 0.3.5] 14:09:25 -!- kingless [~kingless@12.207.185.156] has quit [Ping timeout: 245 seconds] 14:13:49 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 252 seconds] 14:17:15 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 260 seconds] 14:18:41 eno [~eno@nslu2-linux/eno] has joined #scheme 14:20:29 -!- jewel [~jewel@196-215-88-26.dynamic.isadsl.co.za] has quit [Ping timeout: 240 seconds] 14:25:01 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 14:28:47 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 14:30:40 eno [~eno@nslu2-linux/eno] has joined #scheme 14:32:10 add^_ [~add^_^@m212-152-28-246.cust.tele2.se] has joined #scheme 14:39:47 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 14:41:38 eno [~eno@nslu2-linux/eno] has joined #scheme 14:42:39 choas [~lars@p5795CF60.dip.t-dialin.net] has joined #scheme 14:48:50 -!- gnomon_ is now known as gnomon 14:49:51 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 14:49:53 MichaelRaskin [~MichaelRa@3ad50e34.broker.freenet6.net] has joined #scheme 14:51:34 eno [~eno@nslu2-linux/eno] has joined #scheme 14:56:50 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 14:57:50 eno [~eno@nslu2-linux/eno] has joined #scheme 15:04:12 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 255 seconds] 15:05:44 eno [~eno@nslu2-linux/eno] has joined #scheme 15:08:06 Blkt [~user@82.84.158.49] has joined #scheme 15:08:42 -!- ticking [~janpaulbu@87.253.189.132] has quit [Quit: Linkinus - http://linkinus.com] 15:13:04 good day everyone 15:14:25 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 260 seconds] 15:15:41 eno [~eno@nslu2-linux/eno] has joined #scheme 15:21:47 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 15:23:04 jrslepak [~jrslepak@c-71-233-151-135.hsd1.ma.comcast.net] has joined #scheme 15:25:49 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 15:27:39 eno [~eno@nslu2-linux/eno] has joined #scheme 15:38:49 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 15:39:44 mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has joined #scheme 15:40:39 eno [~eno@nslu2-linux/eno] has joined #scheme 15:40:57 stis [~stis@1-1-1-39a.veo.vs.bostream.se] has joined #scheme 15:51:38 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 15:53:38 eno [~eno@nslu2-linux/eno] has joined #scheme 15:53:39 _schulte_ [~eschulte@c-174-56-1-147.hsd1.nm.comcast.net] has joined #scheme 16:03:29 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 16:05:37 eno [~eno@nslu2-linux/eno] has joined #scheme 16:10:44 -!- karswell__ [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Read error: Operation timed out] 16:11:11 karswell__ [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 16:12:39 rostayob [~rostayob@host217-42-35-248.range217-42.btcentralplus.com] has joined #scheme 16:13:57 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 255 seconds] 16:15:33 eno [~eno@nslu2-linux/eno] has joined #scheme 16:21:31 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 16:23:31 eno [~eno@nslu2-linux/eno] has joined #scheme 16:30:41 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 16:32:28 eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has joined #scheme 16:32:38 -!- eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has quit [Changing host] 16:32:38 eno [~eno@nslu2-linux/eno] has joined #scheme 16:38:22 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 272 seconds] 16:38:48 eno [~eno@nslu2-linux/eno] has joined #scheme 16:44:44 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 16:46:08 eno [~eno@nslu2-linux/eno] has joined #scheme 16:55:14 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 16:55:32 phax [~phax@cpc14-haye17-2-0-cust110.haye.cable.virginmedia.com] has joined #scheme 16:55:32 -!- phax [~phax@cpc14-haye17-2-0-cust110.haye.cable.virginmedia.com] has quit [Changing host] 16:55:32 phax [~phax@unaffiliated/phax] has joined #scheme 16:55:49 -!- phax [~phax@unaffiliated/phax] has quit [Remote host closed the connection] 16:57:06 eno [~eno@nslu2-linux/eno] has joined #scheme 17:01:29 foof: is "deanna" a cat? 17:02:47 rudybot: why is it that the Holocaust movie always wins the Oscar? 17:02:47 *offby1: 'Scott Brown Wins Mass. Race, Giving GOP 41-59 Majority in the Senate' 17:02:49 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 17:03:17 -!- offby1 [~user@pdpc/supporter/monthlybyte/offby1] has quit [Quit: time to install the new version of Racket!] 17:03:24 -!- rudybot [~luser@ec2-204-236-150-238.us-west-1.compute.amazonaws.com] has quit [Remote host closed the connection] 17:03:40 offby1 [~user@ec2-204-236-150-238.us-west-1.compute.amazonaws.com] has joined #scheme 17:03:54 eno [~eno@nslu2-linux/eno] has joined #scheme 17:04:37 -!- offby1 [~user@ec2-204-236-150-238.us-west-1.compute.amazonaws.com] has quit [Changing host] 17:04:37 offby1 [~user@pdpc/supporter/monthlybyte/offby1] has joined #scheme 17:05:35 *offby1* slaps hisself upside the haid 17:05:36 it's the bot who needed to quit; not me 17:10:40 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 272 seconds] 17:10:47 eno [~eno@nslu2-linux/eno] has joined #scheme 17:14:22 attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has joined #scheme 17:16:57 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 255 seconds] 17:18:40 eno [~eno@nslu2-linux/eno] has joined #scheme 17:27:55 -!- ijp [~user@host86-168-33-252.range86-168.btcentralplus.com] has quit [Quit: The garbage collector got me] 17:29:16 -!- soveran [~soveran@186.19.214.247] has quit [Remote host closed the connection] 17:31:49 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 17:33:47 eno [~eno@70.137.133.209] has joined #scheme 17:33:47 -!- eno [~eno@70.137.133.209] has quit [Changing host] 17:33:47 eno [~eno@nslu2-linux/eno] has joined #scheme 17:35:45 realitygrill [~realitygr@76.226.200.45] has joined #scheme 17:39:58 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 17:41:22 -!- attila_lendvai [~attila_le@unaffiliated/attila-lendvai/x-3126965] has quit [Ping timeout: 244 seconds] 17:41:39 eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has joined #scheme 17:41:39 -!- eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has quit [Changing host] 17:41:39 eno [~eno@nslu2-linux/eno] has joined #scheme 17:43:51 -!- ft [efftee@shell.chaostreff-dortmund.de] has quit [Ping timeout: 252 seconds] 17:54:34 -!- bfgun [~b_fin_g@r186-48-221-67.dialup.adsl.anteldata.net.uy] has quit [Quit: Leaving] 17:57:39 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 17:58:55 ft [efftee@shell.chaostreff-dortmund.de] has joined #scheme 17:59:42 eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has joined #scheme 17:59:42 -!- eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has quit [Changing host] 17:59:42 eno [~eno@nslu2-linux/eno] has joined #scheme 18:03:50 rudybot [~luser@ec2-204-236-150-238.us-west-1.compute.amazonaws.com] has joined #scheme 18:19:12 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 18:20:50 eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has joined #scheme 18:20:51 -!- eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has quit [Changing host] 18:20:51 eno [~eno@nslu2-linux/eno] has joined #scheme 18:23:19 -!- Nisstyre [~yours@c-208-90-102-250.netflash.net] has quit [Read error: Connection reset by peer] 18:24:40 Nisstyre [~yours@c-208-90-102-250.netflash.net] has joined #scheme 18:25:35 -!- hypnocat [~hypnocat@unaffiliated/hypnocat] has quit [Quit: ZNC - http://znc.sourceforge.net] 18:27:53 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 18:29:46 eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has joined #scheme 18:29:47 -!- eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has quit [Changing host] 18:29:47 eno [~eno@nslu2-linux/eno] has joined #scheme 18:31:44 -!- bytbox [~s@129.2.129.226] has quit [Ping timeout: 272 seconds] 18:33:09 fgudin [~fgudin@odin.sdf-eu.org] has joined #scheme 18:35:47 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 252 seconds] 18:37:41 eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has joined #scheme 18:37:41 -!- eno [~eno@adsl-70-137-133-209.dsl.snfc21.sbcglobal.net] has quit [Changing host] 18:37:41 eno [~eno@nslu2-linux/eno] has joined #scheme 18:41:50 bytbox [~s@129.2.129.226] has joined #scheme 18:53:23 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 256 seconds] 18:54:01 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 248 seconds] 18:54:46 eno [~eno@nslu2-linux/eno] has joined #scheme 19:00:19 -!- leppie [~lolcow@196-210-191-79.dynamic.isadsl.co.za] has quit [Read error: Connection reset by peer] 19:00:57 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 19:02:13 eno [~eno@nslu2-linux/eno] has joined #scheme 19:07:44 leppie [~lolcow@196-210-191-79.dynamic.isadsl.co.za] has joined #scheme 19:07:46 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 19:08:50 eno [~eno@nslu2-linux/eno] has joined #scheme 19:14:51 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 255 seconds] 19:16:44 eno [~eno@nslu2-linux/eno] has joined #scheme 19:22:57 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 255 seconds] 19:24:39 eno [~eno@nslu2-linux/eno] has joined #scheme 19:33:29 -!- MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has quit [Ping timeout: 245 seconds] 19:36:11 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 19:40:29 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 240 seconds] 19:45:12 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 248 seconds] 19:46:48 eno [~eno@nslu2-linux/eno] has joined #scheme 19:52:53 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 256 seconds] 19:53:04 -!- tupi [~david@177.30.115.118] has quit [Read error: Connection reset by peer] 19:54:44 eno [~eno@nslu2-linux/eno] has joined #scheme 19:55:51 jonrafkind [~jon@jonr5.dsl.xmission.com] has joined #scheme 20:00:41 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 20:02:39 eno [~eno@nslu2-linux/eno] has joined #scheme 20:05:46 EmmanuelOga [~emmanuel@host100.201-253-129.telecom.net.ar] has joined #scheme 20:07:14 -!- pygospa [~Pygosceli@kiel-5f77b874.pool.mediaWays.net] has quit [Read error: Operation timed out] 20:08:21 -!- ThePawnBreak [~quassel@94.177.108.25] has quit [Ping timeout: 248 seconds] 20:09:32 pygospa [~Pygosceli@kiel-5f77bc00.pool.mediaWays.net] has joined #scheme 20:13:47 -!- EmmanuelOga [~emmanuel@host100.201-253-129.telecom.net.ar] has quit [Ping timeout: 244 seconds] 20:20:04 -!- ASau` [~user@95-27-175-50.broadband.corbina.ru] has quit [Remote host closed the connection] 20:20:54 ASau` [~user@95-27-175-50.broadband.corbina.ru] has joined #scheme 20:23:38 pothos_ [~pothos@114-36-238-228.dynamic.hinet.net] has joined #scheme 20:25:25 -!- pothos [~pothos@114-36-241-131.dynamic.hinet.net] has quit [Ping timeout: 248 seconds] 20:26:11 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 244 seconds] 20:26:40 -!- pothos_ [~pothos@114-36-238-228.dynamic.hinet.net] has quit [Read error: Connection reset by peer] 20:26:59 pothos [~pothos@114-36-238-228.dynamic.hinet.net] has joined #scheme 20:26:59 EmmanuelOga [~emmanuel@host212.201-252-47.telecom.net.ar] has joined #scheme 20:27:51 eno [~eno@nslu2-linux/eno] has joined #scheme 20:29:38 -!- pothos [~pothos@114-36-238-228.dynamic.hinet.net] has quit [Read error: Connection reset by peer] 20:30:00 pothos [~pothos@114-36-238-228.dynamic.hinet.net] has joined #scheme 20:35:25 -!- karswell__ [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Remote host closed the connection] 20:35:52 karswell__ [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 20:38:26 mister_m [~mattosaur@c-98-193-90-178.hsd1.il.comcast.net] has joined #scheme 20:41:25 teurastaja [~chatzilla@modemcable168.103-58-74.mc.videotron.ca] has joined #scheme 20:43:49 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 240 seconds] 20:45:56 eno [~eno@nslu2-linux/eno] has joined #scheme 20:56:10 ijp [~user@host86-168-33-252.range86-168.btcentralplus.com] has joined #scheme 21:02:06 tom_i [~thomasing@ingserv.demon.co.uk] has joined #scheme 21:02:07 -!- add^_ [~add^_^@m212-152-28-246.cust.tele2.se] has quit [Quit: add^_] 21:13:42 bfig [~b_fin_g@r190-135-30-142.dialup.adsl.anteldata.net.uy] has joined #scheme 21:15:06 toekutr [~user@50-0-51-2.dsl.static.sonic.net] has joined #scheme 21:15:49 -!- tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has quit [Ping timeout: 240 seconds] 21:16:24 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 245 seconds] 21:16:38 -!- tom_i [~thomasing@ingserv.demon.co.uk] has quit [Ping timeout: 240 seconds] 21:18:14 eno [~eno@nslu2-linux/eno] has joined #scheme 21:20:57 hypnocat [~hypnocat@unaffiliated/hypnocat] has joined #scheme 21:25:42 -!- copumpkin [~copumpkin@unaffiliated/pumpkingod] has quit [Ping timeout: 245 seconds] 21:25:49 -!- teurastaja [~chatzilla@modemcable168.103-58-74.mc.videotron.ca] has quit [Ping timeout: 240 seconds] 21:26:08 copumpkin [~copumpkin@unaffiliated/pumpkingod] has joined #scheme 21:35:13 -!- jonrafkind [~jon@jonr5.dsl.xmission.com] has quit [Ping timeout: 252 seconds] 21:46:33 -!- dzhus [~sphinx@95-25-98-202.broadband.corbina.ru] has quit [Remote host closed the connection] 21:46:47 -!- eno [~eno@nslu2-linux/eno] has quit [Ping timeout: 256 seconds] 21:47:03 tuubow [~adityavit@c-69-136-105-164.hsd1.nj.comcast.net] has joined #scheme 21:48:30 eno [~eno@nslu2-linux/eno] has joined #scheme 21:56:34 phax [~phax@cpc14-haye17-2-0-cust110.haye.cable.virginmedia.com] has joined #scheme 21:56:34 -!- phax [~phax@cpc14-haye17-2-0-cust110.haye.cable.virginmedia.com] has quit [Changing host] 21:56:34 phax [~phax@unaffiliated/phax] has joined #scheme 21:59:55 Adamant [~Adamant@71-22-233-28.gar.clearwire-wmx.net] has joined #scheme 21:59:55 -!- Adamant [~Adamant@71-22-233-28.gar.clearwire-wmx.net] has quit [Changing host] 21:59:55 Adamant [~Adamant@unaffiliated/adamant] has joined #scheme 22:00:12 -!- Adamant [~Adamant@unaffiliated/adamant] has quit [Client Quit] 22:01:06 Adamant [~Adamant@71-22-233-28.gar.clearwire-wmx.net] has joined #scheme 22:01:06 -!- Adamant [~Adamant@71-22-233-28.gar.clearwire-wmx.net] has quit [Changing host] 22:01:06 Adamant [~Adamant@unaffiliated/adamant] has joined #scheme 22:07:01 MrFahrenheit [~RageOfTho@users-38-111.vinet.ba] has joined #scheme 22:07:35 -!- Adamant [~Adamant@unaffiliated/adamant] has quit [Quit: Adamant] 22:11:49 -!- stis [~stis@1-1-1-39a.veo.vs.bostream.se] has left #scheme 22:24:44 -!- phax [~phax@unaffiliated/phax] has quit [Quit: Leaving] 22:45:29 -!- gravicappa [~gravicapp@ppp91-77-160-154.pppoe.mtu-net.ru] has quit [Ping timeout: 240 seconds] 22:49:25 -!- leo2007 [~leo@222.130.128.105] has quit [Ping timeout: 260 seconds] 22:52:39 -!- mmc1 [~michal@178-85-131-65.dynamic.upc.nl] has quit [Ping timeout: 245 seconds] 22:54:17 jao [~user@pdpc/supporter/professional/jao] has joined #scheme 23:02:44 -!- EmmanuelOga [~emmanuel@host212.201-252-47.telecom.net.ar] has quit [Ping timeout: 244 seconds] 23:03:37 -!- toekutr [~user@50-0-51-2.dsl.static.sonic.net] has quit [Remote host closed the connection] 23:08:12 -!- MichaelRaskin [~MichaelRa@3ad50e34.broker.freenet6.net] has quit [Ping timeout: 245 seconds] 23:22:15 -!- djcb [~djcb@a88-114-95-13.elisa-laajakaista.fi] has quit [Ping timeout: 248 seconds] 23:23:40 phax [~phax@cpc14-haye17-2-0-cust110.haye.cable.virginmedia.com] has joined #scheme 23:23:40 -!- phax [~phax@cpc14-haye17-2-0-cust110.haye.cable.virginmedia.com] has quit [Changing host] 23:23:40 phax [~phax@unaffiliated/phax] has joined #scheme 23:30:48 -!- phax [~phax@unaffiliated/phax] has quit [Quit: Leaving] 23:40:58 Saeren_ [~saeren@mail.skepsi.net] has joined #scheme 23:42:42 -!- choas [~lars@p5795CF60.dip.t-dialin.net] has quit [Ping timeout: 272 seconds] 23:42:53 tonyg_ [~tonyg@173-203-78-111.static.cloud-ips.com] has joined #scheme 23:43:56 poucet [~chris@li23-146.members.linode.com] has joined #scheme 23:45:07 -!- tonyg [~tonyg@173-203-78-111.static.cloud-ips.com] has quit [Ping timeout: 255 seconds] 23:45:08 -!- Saeren [~saeren@mail.skepsi.net] has quit [Ping timeout: 255 seconds] 23:45:08 -!- ski [~slj@c80-216-142-165.bredband.comhem.se] has quit [Ping timeout: 255 seconds] 23:45:09 -!- Intensity [bgdh4rG9xt@unaffiliated/intensity] has quit [Ping timeout: 255 seconds] 23:45:09 -!- erg [~erg@li32-38.members.linode.com] has quit [Ping timeout: 255 seconds] 23:45:09 -!- poucet_ [~chris@li23-146.members.linode.com] has quit [Ping timeout: 255 seconds] 23:45:09 -!- ToxicFrog [~ToxicFrog@24-246-40-169.cable.teksavvy.com] has quit [Ping timeout: 255 seconds] 23:45:10 -!- araujo [~araujo@gentoo/developer/araujo] has quit [Ping timeout: 255 seconds] 23:45:11 -!- pranq [pranq@unaffiliated/contempt] has quit [Ping timeout: 255 seconds] 23:45:11 -!- peterbb [143027@diamant.ifi.uio.no] has quit [Ping timeout: 255 seconds] 23:45:11 erg [~erg@li32-38.members.linode.com] has joined #scheme 23:45:27 peterbb [143027@diamant.ifi.uio.no] has joined #scheme 23:45:35 ToxicFrog [~ToxicFrog@24-246-40-169.cable.teksavvy.com] has joined #scheme 23:45:37 ski [~slj@c80-216-142-165.bredband.comhem.se] has joined #scheme 23:45:37 pranq [pranq@unaffiliated/contempt] has joined #scheme 23:46:06 araujo [~araujo@gentoo/developer/araujo] has joined #scheme 23:46:27 Intensity [1RlKwavoGr@unaffiliated/intensity] has joined #scheme 23:48:35 karswell [~coat@93-97-29-243.zone5.bethere.co.uk] has joined #scheme 23:48:49 -!- karswell__ [~coat@93-97-29-243.zone5.bethere.co.uk] has quit [Ping timeout: 240 seconds]