00:00:00 --- log: started forth/06.08.08 00:30:24 --- join: Cheery (n=Cheery@a81-197-20-242.elisa-laajakaista.fi) joined #forth 02:29:38 --- join: virl (n=virl@chello062178085149.1.12.vie.surfer.at) joined #forth 05:16:17 --- join: vatic (n=chatzill@pool-162-83-254-201.ny5030.east.verizon.net) joined #forth 06:17:41 --- join: Ray_work (n=Raystm2@199.227.227.26) joined #forth 06:24:06 Good morning world. 06:31:28 Hi Ray_work! 06:59:12 --- join: nighty_ (n=nighty@66-163-28-100.ip.tor.radiant.net) joined #forth 07:27:57 --- quit: vatic (Read error: 110 (Connection timed out)) 08:06:54 --- join: vatic (n=chatzill@pool-162-83-254-201.ny5030.east.verizon.net) joined #forth 08:26:24 lo 08:30:02 hi nighty_ 08:31:58 :) 08:32:57 nighty_ what's up? 08:33:03 --- quit: Quartus (Read error: 104 (Connection reset by peer)) 08:59:54 --- join: GoGoDncr (n=GoGoDncr@74.132.197.239) joined #forth 09:05:11 --- join: Quartus (n=trailer@CPE0001023f6e4f-CM013349902843.cpe.net.cable.rogers.com) joined #forth 09:05:11 --- mode: ChanServ set +o Quartus 09:23:28 --- join: PoppaVic (n=pete@0-1pool73-83.nas24.chicago4.il.us.da.qwest.net) joined #forth 10:05:31 w00t 10:05:58 http://www.woot.com/ 10:09:53 hmm? 10:16:13 I'd like a forth computer 10:18:08 we all would 10:18:26 --- join: Quartus__ (n=Quartus_@209.167.5.1) joined #forth 10:20:30 I don't pretend to "guru" or "elite" so "w00t" lost me and I was curious. 10:21:02 curios about what? 10:26:47 what would the ideal forth computer have? 10:27:03 what do you imagine? 10:27:11 I'd like really to build one. 10:28:48 virl the Ultimate forth computer would come with a vagina. 10:29:23 wtf? 10:29:40 aha.. ehm that's not what I would call a forth computer 10:30:01 2 on-chip stacks, registers (ip, sp, rp), interrupts, 32bit addressing :), extendible micro-code, 10:31:08 in a pen shaped case. 10:31:29 or one dice 10:31:57 or maybe a rubik's cube would be big enuf 10:33:22 As an overlay for your watch. 10:33:29 yea yea sure sure 10:33:45 in clear pollystyrene 10:33:50 heh 10:33:56 no moving parts 10:34:02 right. 10:34:06 have to be that 10:35:04 powered by the differencial between the fact that it does exist when it shouldn't. 10:35:30 heh, nah, just an antenna for soaking power from the air :) 10:35:52 ooh it is air. 10:36:47 --- join: I440r (n=mark4@63.163.143.188) joined #forth 10:37:06 I! 10:38:38 hi 10:38:47 shhh im not here ! 10:38:47 :) 10:38:51 HONEST! 10:40:01 Quartus: :) 10:40:06 15:00 :) 10:41:28 well my wishes are similiar, but I don't think it makes sense to have the computer in a pen.. 10:42:41 well, i'm just emphasing really small. 10:42:52 io when you write with it. 10:43:04 it need not have ink 10:43:16 tatooing needle. 10:43:30 for persistance. 11:02:13 nm - have fun. Just Another Day. 11:02:20 laters, kids 11:02:22 --- quit: PoppaVic ("Pulls the pin...") 11:06:27 hi nighty. I'll be around at 3. 11:06:49 bbl 11:06:54 --- quit: I440r ("Leaving") 11:13:07 :) 12:42:44 --- join: snoopy_1711 (i=snoopy_1@dslb-084-058-145-037.pools.arcor-ip.net) joined #forth 12:50:23 --- quit: Snoopy42 (Read error: 145 (Connection timed out)) 12:50:27 --- nick: snoopy_1711 -> Snoopy42 13:09:51 --- quit: GoGoDncr (Remote closed the connection) 13:12:11 --- join: GoGoDncr (n=GoGoDncr@74.132.197.239) joined #forth 13:25:32 --- quit: Quartus__ (Read error: 104 (Connection reset by peer)) 13:29:31 --- nick: Raystm2 -> nanstm 13:35:21 --- quit: madgarden (Read error: 104 (Connection reset by peer)) 13:57:39 --- quit: Cheery ("Download Gaim: http://gaim.sourceforge.net/") 13:59:10 --- join: Quartus__ (n=Quartus_@209.167.5.1) joined #forth 14:03:42 Hi Quartus__ I have a dumb question... 14:05:39 Hey. Go ahead. 14:10:04 Quartus__ I type the following into Quartus: "1 2 3 4 2swap . . . ." and get "2 1 4 3 ok" back... 14:11:13 ANS stack diagram says: ( x1 x2 x3 x4 -- x3 x4 x1 x2 ). What am I not seeing here? 14:11:39 vatic did you write your own 2swap? 14:12:05 Quiznos: in PIC18F assembler... 14:12:23 vatic i think you messed up the code 14:12:38 abcd -- cdab 14:12:53 vatic, it's supposed to be 3 4 1 2 coming back. 14:13:07 vatic write it in : instead 14:13:08 If you . . . . you'll get 2 1 4 3. 14:13:24 or with pick 14:13:57 It's working fine. Try 1 2 3 4 2swap .s 14:14:13 nighty, thanks for the invite; interesting to see what you're up to there. 14:14:14 Quartus__: so it's an issue between the char size of 1234 and the cell size of . . . . ? 14:14:57 No. 1 2 3 4 places 1 2 3 4 on the stack. 2swap turns that around to 3 4 1 2. Displaying that with . returns them in reverse order, top-first. So you get 2 1 4 3. 14:15:54 There are no chars involved in the operation, just cells. 14:15:56 Quartus__: so the problem is I can't read a stack diagram correctly. How embarrassing! 14:16:27 vatic lol 14:16:30 If you do 1 2 3 4 2swap .s you'll see them on the stack in the expected order. It's just that displaying them with . pulls them off and displays them in reverse order to the way they are on the stack. 14:16:31 vatic cool 14:17:18 Quartus__ yeah, I see that, thanks! 14:23:33 Quartus__ thanks for that sheet on the minimum # of primitives for a Forth... 14:24:26 Quartus__ the thing I did with Albert's ciForth was a bit different: Of the ASN CORE word set, what words were written as ASM primitives. 14:24:34 Quartus__: http://pastebin.ca/122717 14:25:48 There are certain words that have to be primitives, like @ and !. Some are a matter of choice. 14:30:32 Quartus__ What I find valuable about your list is that it suggest a priority for development... 14:31:01 For better or worse, I chose to get an interpreter running and deal with compilation later... 14:31:57 vatic on the PIC? 14:32:11 Quiznos: yeah... 14:32:29 k 14:32:59 Quiznos: for my friend's board: http://multio.mamalala.net/ 14:34:04 I'm asking everytime how .s would be implemented in forth. a hell of stack juggling, perhaps? 14:35:21 virl use sp0 to step up to sp0+depth 14:35:47 vatic cool 14:36:18 Quiznos: hopefully my Forth will work! ;-) 14:36:19 copy sp0 and depth and do a sp0 (depth--) add . 14:36:23 vatic yep 14:39:40 .s is generally implemented reading directly from stack memory, but there's a way to do it without accessing memory directly. 14:40:27 well, I would do it directly. 14:44:46 In which case, no stack juggling to speak of. 14:45:53 Quartus: I think .s is a high priority for me. Right now I just have u. 14:46:04 Can you read stack memory directly? 14:47:32 This is one way to do it if you can't: : (.s) depth if >r recurse r> dup . then ; : .S ." <" depth u. ." > " (.s) ; 14:47:47 Requires sufficient stack depth. 14:47:47 Quartus: certainly from PIC ASM... All I have is an interp so I can define a word that iterates... 14:48:13 can = can't 14:48:28 --- quit: nighty_ ("Disappears in a puff of smoke") 14:48:30 Oh. You might want to do the 20 minutes work that builds the actual compiler. :) 14:49:27 Quartus: my thinking was that once I had an interpreter and a certain number of ANS primitives, the compiler would be pretty straighforward. 14:50:06 Quartus: thanks for the .s snippet! 14:50:07 I guess, if you're determined to write the compiler in high-level Forth. 14:50:34 Quartus: oh, do you think it's that little work in ASM? 14:51:30 In a Standard Forth system, the compiler is a function of the interpreter (responding to STATE). So the compiler isn't something you build afterward, it's integral to the interpreter loop. 14:51:59 In an antique implementation, : is a separate interpreter loop that is terminated by ; 14:52:47 Quartus: well I spent some time avoiding the examination of STATE and such to build my interpreter. :-) 14:53:20 If you plan to build an antique implementation, you could build : to be its own interpreter loop, and thus write it readily enough in high-level Forth. 14:53:30 I don't recommend that, but it's one way to go. 14:53:51 Quartus: so my interpreter loop is modelled the flow chart in Rather's book for example, but I've ignored the tests for compilation... 14:54:15 I don't have her flowchart at hand, but it sounds like the modern model. 14:54:26 Quartus: been trying to model my interpreting words on ANS definitions... 14:54:38 I don't quite see how you'll use defined primitives to graft state-awareness into your interpreter loop. 14:54:50 ABORT QUERY ACCEPT WORD >IN... 14:55:31 QUERY is deprecated, but ok. 14:57:26 Quartus: so it's part of QUIT now? 14:58:02 You lost me. 14:59:26 Quartus: Here's my QUIT loop. Sorry for the CRLF messiness: http://pastebin.ca/122762 15:00:27 : .s ( -- ) depth dup BEGIN dup WHILE 1- rot >r REPEAT drop BEGIN dup WHILE 1- r> . REPEAT drop ; 15:01:00 vatic, when I say QUERY is deprecated, I mean in the Standard REFILL is the replacement for QUERY. 15:01:08 segher: thnx! 15:01:16 segher, that lightens the load on the return stack a bit. 15:01:25 vatic: np 15:01:36 Quartus: OK, thanks. I must have overlooked the deprecation in the Draft standard. 15:01:42 quartus: yeah, needs return stack depth the same as parameter stack depth 15:02:04 vatic, http://quartus.net/dpans/dpansa6.htm#A.6.2.2040 15:02:33 Still, you're unlikely to have so shallow a return stack that the recursive version would bomb out. 15:03:20 segher too many dups in that :? 15:03:27 Quartus: you know. I asked about writing the QUIT loop using ANS words on c.l.f and didn't get a very good response. 15:03:30 recursive version needs twice the return stack, on implementations that can't transform the RECURSE into a loop anyway 15:03:39 vatic, I don't recall that. 15:03:54 quiznos: looks fine to me? 15:03:56 Quartus: oh, I'm not saying you should have responded... 15:04:03 :-) 15:04:05 3 dups and one drop at the end 15:04:06 segher, yes. So an average stack display might require 12 cells on the return stack instead of 6. 15:04:19 2 dups 15:04:29 one dup 15:05:02 and both those "depth" things are eaten by the loops, one each 15:06:05 --- quit: Ray_work ("User pushed the X - because it's Xtra, baby") 15:06:16 Quartus: people basically said "you can't write the QUIT loopusing ANS words. Besides it'd be slow" 15:06:21 If a system has a return stack so small as to make that a consideration, a .S that reads stack memory directly would be the way to go. 15:06:29 They didn't get I was looking for a model... 15:06:39 quartus: sure, almost always the stacks will be big enough, heh 15:08:04 vatic, I think it can, in general terms, be written using ANS words, but QUIT also resets the return stack, which is an implementation-specific thing. 15:08:57 It also has to reset the exception-handler chain, return the input source to the default, things like that. 15:09:18 : (kill-return-stack BEGIN r> drop AGAIN ; : kill-return-stack ['] (kill-return-stack CATCH drop ; 15:09:25 well that won't really work, but heh 15:09:27 Quartus: well I guess only someone as generous or crazy as you are would have offered help... 15:09:55 If somebody told you you can't do it, they'd be right as far as that goes, as you can't make a compliant QUIT without fiddling under the hood. 15:11:52 but you don't need to, as you already _have_ a QUIT if your system is compliant ;-) 15:12:11 Quartus: yes, I see. 15:13:14 segher: I'm interested in it as a model of what to code in ASM. I liked van der Horst's ciForth for that, but it's still a FIG Forth model... 15:14:35 vatic, you should check out MAF. 15:14:38 you need about 12 primitives or so. but i guess you want + etc. as primitives as well, so better make it 30-40 15:14:53 Quartus: what's that? 15:14:58 MAF? 15:14:59 PAF/MAF is great fun, yeah 15:15:06 Minimal ANS Forth. 15:15:31 it's an ANS Forth that runs on top of another Forth 15:15:34 I've never run across it. 15:15:51 unless it a FIG UK thing... 15:15:52 It 's a Forth written in Forth, not intended for use but for education. 15:16:02 ftp://ftp.taygeta.com/pub/Forth/Applications/ANS/maf1v02.zip 15:16:49 There's a QUIT in there that's a good outline. 15:18:00 Quartus: ah yes, actually, I saw this more than a year ago but lost track of it... Thanks! 15:18:35 There's a QUIT showing CATCH/THROW integration in the Standard, too: http://quartus.net/dpans/dpansa9.htm 15:19:19 So, no shortage of outlines of what steps the word needs to take. 15:26:05 Quartus: well thanks again!! 15:26:22 segher, you too... :-) 15:32:52 --- quit: vatic ("*poof*") 16:03:35 Hello, Men! 16:03:41 oops sex change 16:03:46 --- nick: nanstm -> Raystm2 16:04:19 ahem, Hello, Men! ( deeper voice) 16:08:08 --- join: slava (n=slava@CPE0080ad77a020-CM000e5cdfda14.cpe.net.cable.rogers.com) joined #forth 16:16:30 hi slava, how's the factor? 16:16:36 * Raystm2 really needs to try that. 16:16:47 working on the compiler 16:17:19 cool. 16:17:43 slava: do you have a chessgame in factor yet? 16:17:49 no 16:18:58 I owe one to IsForth, which I'll do after I finish the Retroforth version. 16:19:13 Maybe if I can understand Factor, I'll give you one as well. 16:19:41 I use chess to learn languages. It's my helloworld. 16:20:45 actually, i'm at a conceptual stopping point in the RxChess, I should prob'ly do all three at the same time. 16:39:52 "thats after I get through the army and become a merc." 16:40:32 is that from a movie or something? 16:41:24 wanting to join Britain's military? OK, sure. Want to be a sniper? Fine, fine. Want to get through British army and then become a mercenary? ... yow, I just felt a rush of disgust, as if I were some kind of hippy pacifist. 16:41:34 someone on a forum. 16:42:49 hehe. 17:03:03 --- quit: warpzero (Read error: 104 (Connection reset by peer)) 17:13:42 --- join: nighty_ (n=nighty@CPE00119576a9c5-CM0012c90d36fc.cpe.net.cable.rogers.com) joined #forth 17:16:47 re 17:16:49 Quartus: thanks for dropping by :) 17:17:02 Hey. Thanks for the invite :) Sent my doc via email. 17:17:13 Quartus: I did not get that 17:17:16 hello. 17:17:17 Quartus: uhmmm 17:17:25 I can resend, let me know where. 17:18:22 Quartus: oh 17:18:30 Wait a second :) 17:18:38 I know what happens 17:19:05 my machine at the office is picking the emails 17:19:11 Ah. 17:19:30 I really need to get a in house email server going there 17:19:50 their infras are just not good 17:20:00 need to put some order into this 17:20:10 with eric 17:20:13 :) 17:20:27 Heh. The challenges of infrastructure. 17:20:32 Eric did not speak much but he is a very knowledgeable person 17:20:42 I figured he just didn't like me. :) 17:20:49 no he liked you 17:20:59 he just does not speak much 17:21:30 Quartus: he is always like this 17:21:42 Ok, that's good. I wasn't worried really. 17:21:45 Quartus: I know him for more than 15 years 17:23:09 Quartus: now that you have a better understanding of what NLT does 17:23:29 I do. Interesting operation. 17:23:33 Quartus: it is easier for you to see if there is anything you want and/or can do with us 17:23:53 Sure. I talked a bit about it in my email. 17:24:09 i'll read tomorrow 17:24:48 I've got to put up some VPN once I get my Dry Loop 17:24:54 and ADSL 17:36:38 That's coming soon? 17:39:09 Your ADSL, I mean. 17:39:09 When I come from France on the 25th 17:39:27 So spell for me where you're from in France again? 17:39:28 No need to pay for it when I am not here 17:39:33 Reims 17:39:44 Reims , Marne (51) 17:39:48 Champagne Region 17:40:09 I hear the sound of corks popping . :) 17:40:15 Yes :) 17:40:56 Did you finally get your beer the other night? Or was it ice cream? 17:41:00 I am going to host a machine and get some DID and SIP trunks 17:41:07 Quartus: none of it :) 17:41:50 Not good, I shall have to buy you a beer one evening. 17:41:59 Yeah! :) 17:42:01 nice 17:42:21 Though you know, you can't smoke in bars here. 17:42:25 I went to buy car baby seats 17:42:32 that's ok :) 17:42:52 I had to go to Toy R Us 17:43:07 because Zellers had only very bad quality seats 17:43:27 Zellers wouldn't be my first choice. Maybe Canadian Tire? 17:43:45 I bought from Toy R Us 17:43:50 100 $ each 17:43:53 I bought 2 17:43:54 :) 17:44:00 Right. Twins. 17:44:07 yep 17:44:51 As you could tell Mike (NLT) likes to make long complicated sentences :) 17:45:04 To say very simple things :) 17:45:08 Perhaps I do too, I didn't really notice :) 17:45:22 no you were ok :) 17:45:38 I just have a good laugh everytime Mike is in a Meeting 17:45:49 he is an OK dude though 17:45:57 Seems like a nice guy. 17:46:11 Yes overall everybody is nice in the company 17:46:26 except for some of the sales guys :) 17:46:31 Heh. 17:47:43 The CEO dropped by just after you left 17:47:52 he popped in our room 17:47:53 --- join: madgarden (n=madgarde@Toronto-HSE-ppp3708723.sympatico.ca) joined #forth 17:47:56 I was still nearby in Home Depot. 17:48:08 and asked me : so you had a meeting ? 17:48:15 I answered: Yep 17:48:23 he said: good good 17:48:26 and went away :) 17:48:31 heh 17:48:56 He is a good guy too 17:49:04 spends its time playing golf :) 17:49:07 Well, hopefully some appropriate hardware people can be found. I think it'd be interesting work. 17:49:10 with his buddies 17:49:31 Nice job he has. :) 17:49:40 yes and he is LOADED :) 17:49:51 I wish I had his job :) 17:50:01 Me too. 17:50:07 he just came back from australia 17:50:18 because there is an NLT in australia 17:50:30 Right, I saw that on the website. 18:00:41 How long has NL been at that location? 18:04:11 Since the begining 18:04:24 the building belongs to levitt safety 18:04:51 But they are making plans for a new one 18:05:17 Just in time? :) 18:05:25 lol :) 18:05:40 Well we have ROOFERS from HELL 18:05:59 these guys just don't know what they are doing 18:06:06 Flat roof, too. 18:06:08 and they already lost plenty money 18:06:15 because of insurance 18:06:48 they have to pay already more than the cost of ROOF 18:06:56 Sheesh. 18:06:57 and Levitt is taking them to court 18:07:21 Levitt lawyers are a bunch of hungry dogs 18:07:27 I suppose they have to be. 18:07:39 I think they will tear apart the poor bastards 18:08:14 Rightly so, from the looks of things. 18:08:34 The roofers already have to pay for 2 Oscilloscopes 18:08:42 digitals one 18:08:51 top of the line stuff 18:09:07 Digital analyzers 18:09:08 Bad luck. 18:09:22 like 20000$ a piece thing 18:09:37 not counting several computers 18:09:43 and furnitures 18:09:49 carpetting 18:09:58 all the Cubicles 18:10:07 etc.... 18:10:08 etc... 18:10:09 Ugly business. 18:10:32 Yeah if you have to redo a roof 18:10:38 I'll give u their names 18:10:44 heh 18:10:46 so you don't hire them 18:10:50 As long as it's not Avenue Road Roofing. 18:11:39 I got to buy a car 18:11:46 do you know any good place to do so ? 18:11:57 somewhere I could get good pricing ? 18:11:57 I'm not a car-owner, so I can't really recommend. 18:12:03 I can ask a friend of mine. 18:12:10 New or used? 18:12:15 depends 18:12:19 New is ok 18:12:24 but if I can get a nice demo 18:12:29 I might 18:12:49 I sent a note, I'll let you know what he says. 18:12:51 I don't buy American cars thought 18:12:53 I don't buy American cars though 18:13:07 Noted. 18:13:18 Japanese or German 18:13:26 or UK 18:13:27 LandRover 18:13:31 for example 18:13:53 Ok. 18:13:54 if I can my hands on a nice LR3 18:13:58 cheap :) 18:14:12 My friend's a family man himself, he may have some good advice. 18:14:26 Quartus: you don't have any kids ? 18:14:39 No, I don't. 18:15:30 here without a car , you don't do much 18:15:38 I wonder how you manage 18:15:51 like for shopping and stuf 18:15:52 In fact I find no need for one in the city. Transit's good. Cabs if I'm in a rush. 18:16:18 but you shop very little ? 18:16:25 I'm right downtown, so the market is right here, and 24hr. groceries, etc. Occasionally I need something large, I'll have it delivered or use a friend's vehicle. 18:16:36 I see 18:17:26 Walking keeps me fit. :) 18:17:39 Yes I walk a lot too :) 18:17:41 for now :) 18:18:42 --- join: vatic (n=chatzill@pool-162-83-254-201.ny5030.east.verizon.net) joined #forth 18:18:46 re :) 18:20:29 nighty_ :-) 18:20:32 I find walking assists thinking, too. 18:26:06 --- quit: Quiznos (Read error: 110 (Connection timed out)) 18:48:33 Hey how do you specify the number of pixel in width in a CSS ? 18:48:49 like for fieldset {margin: 1em 0 0 0} 19:08:31 --- quit: uiuiuiu (Remote closed the connection) 19:08:33 --- join: uiuiuiu (i=ian@dslb-084-056-224-035.pools.arcor-ip.net) joined #forth 19:16:46 --- quit: vatic ("*poof*") 20:24:25 --- quit: saon ("leaving") 20:36:09 I guess not :) 20:39:53 uhhhh! I guess skunks now near my windows ! 20:40:02 better not piss them off! 20:40:23 its a zoo here ! :) 21:46:23 Hey. Heard back from my friend. Last time he bought a new car he joined the apa, www.apa.com -- for a small fee they tell you the lowest priced places to go for three different makes/models, turned out ot be a very good deal. 21:47:27 He said for Toyota, it was http://wietzes.toyota.ca/ and for a Honda Civic http://www.georgetownhonda.com/ . This was a few years back. He definitely recommends the apa though. 21:47:36 Oops. www.apa.ca 21:47:38 sorry for the confusion 23:06:11 ok:) 23:06:16 how about Nissan ? 23:06:17 :) 23:12:28 That one I don't know... worth the $65 to join APA, he saved way more than that. 23:12:40 :) 23:13:23 They really know their stuff. 23:15:58 ok 23:16:00 bed time 23:16:07 my fridge is dying on me 23:16:16 --- part: slava left #forth 23:16:20 I need to ask the superintendant 23:16:23 to change it 23:16:48 it is supposed to be new , but the rear freon tubes are all corroded 23:17:08 and the electric pump is hot 23:17:24 I think they just bought a cheap ass fridge 23:18:03 and now instead of a making small economies they'll have to buy a new fridge 23:18:13 Gotta keep the chocolate milk cold. :) 23:18:17 sometimes I don't understand canadian company 23:18:23 sometimes I don't understand canadian companies 23:18:31 they always try to run cheap 23:18:37 They make stupid and cheap all over the world. 23:18:40 but end up spending more money 23:19:25 if you buy cheap stuff it last very little 23:19:28 usually 23:19:52 also they buy american brands everything, which is mostly crap 23:20:22 I went to try american 4WD from GM 23:20:24 GMC 23:20:31 I went for test drive 23:20:42 I just got out of the parking lot when I heard a noise 23:20:51 I told the guy sitting next to me 23:20:55 we lost something 23:20:59 he said : NO 23:21:04 I stopped 23:21:11 the truck was pissing OIL 23:21:25 brand new GMC 4WD 23:21:46 I told the guy ...ok when you have something better to show me I'll come back 23:21:47 and left 23:21:54 Still in the infant mortality period. New equipment fails more often. 23:22:43 Or maybe the last guy who test-drove it managed to drive over something that pierced the oil reservoir. 23:22:59 I don't think so 23:23:13 Not that I'm a big fan of GMC, but I think they figured out how to keep the oil in the engine by now. :) 23:23:16 I found the OIL carter 10 meters behind 23:23:40 the screw on it was cut 23:23:44 broken 23:24:08 anyway so much for a trial 23:24:49 --- quit: segher (Read error: 145 (Connection timed out)) 23:25:10 --- join: segher (n=segher@dslb-084-056-156-095.pools.arcor-ip.net) joined #forth 23:25:39 good night 23:25:41 --- quit: nighty_ ("Disappears in a puff of smoke") 23:59:59 --- log: ended forth/06.08.08