00:00:00 --- log: started forth/02.04.17 01:11:15 --- join: davidw (~davidw@ppp-46-17.25-151.libero.it) joined #forth 06:37:18 --- join: rob_ert (~robert@h237n2fls31o965.telia.com) joined #forth 07:34:21 --- join: Speuler (~l@195.30.184.51) joined #forth 07:34:31 'day 07:51:11 --- quit: davidw (Read error: 110 (Connection timed out)) 07:53:12 --- part: Speuler left #forth 07:56:58 --- join: mark4 (~mark4@1Cust185.tnt1.bloomington.in.da.uu.net) joined #forth 08:01:50 --- nick: mark4 -> I440r 08:07:18 --- join: gilbertbsd (~gilbert@max1-60.dacor.net) joined #forth 08:07:51 HELLO 08:07:58 hi 08:08:18 :) 08:08:29 hi! 08:08:29 didnt think anyone was awake :) 08:08:33 capslock stucked or theres sg interesting ? 08:08:45 capslock. 08:08:55 I can't see the keyboard 08:09:13 I440r: im awake 4 4hrs 08:09:26 gilbertbsd: is it black? :) 08:09:46 they keyboard? 08:09:51 the* 08:10:00 its under the table on my lap. 08:10:15 tought so. just joking :) 08:10:43 its possible to do this in scheme (+ 2 43 5 6 67 6 7 ) 08:10:48 whats the forth equivalent? 08:11:41 what does that do 08:11:56 it adds up all the numbers 08:12:21 there is no default 4th eqvivalent 08:12:34 4th doesnt handle lists 08:12:45 ah yes ... its list handling . 08:12:47 tho, u can easily implement sort of 08:12:48 I forgot. 08:12:53 2 43 5 6 67 6 7 + + + + + + 08:12:56 like: 08:13:04 or... 08:13:21 : {{ depth depth-marker ! ; 08:13:23 you can make a word that scans from +{ 1 2 3 4 5 } 08:13:34 that wouldnt be a very useful word tho :) 08:13:43 : }} depth depth-marker @ - ; 08:14:14 : map ( word-addr -- ) .... ; 08:14:26 {{ 1 43 3 5 6 87 876 }} ' + map 08:14:28 ah you can make a 'map' 08:16:49 gilbertbsd: r u interested in an example definition of map? 08:16:57 sure 08:17:22 : map ( list... no-of-elems word2map ) 08:17:43 swap 0 do 08:18:46 hmmm... :) 08:18:54 nifty 08:20:08 I just realised you could name words with spaces 08:20:11 as in program 2 08:20:16 or program 1 08:20:30 we should make the way to the list elements clear... 08:20:43 gilbertbsd: pardon? 08:21:08 u could use spaces in word names!? 08:21:09 it was a mistake 08:21:10 :) 08:21:22 the default text interpreter... 08:21:25 it just ignores everything after the space. 08:21:26 :) 08:21:32 thats why it seems to work. 08:24:22 over >r >r ( elem# R: elem# word2map ) 08:24:30 0 do 08:24:45 r@ execute 08:24:48 loop 08:25:25 rdrop r> ( -- elem# R: -- ) ; 08:25:43 so u still have a list on the stack 08:26:36 : map' ' map ; 08:26:37 you cant do that 08:26:45 {{ 1 43 3 5 6 87 876 }} map' + 08:26:49 do puts its parameters over the top of the things you put there 08:27:03 I440r: thats right :) 08:27:12 it usually does :-/ 08:28:05 s/r@ execute/dup >r execute r>/ 08:28:20 s/rdrop/drop/ 08:28:36 s/>r >r/>r/ 08:28:50 is it better this way? :) 08:29:09 --- join: davidw (~davidw@ppp-200-38.25-151.libero.it) joined #forth 08:34:21 : map over >r 0 do dup >r execute r> loop drop r> ; 08:38:30 you cant keep doing r> on the inside of a loop heh 08:38:41 you do that in isforth and yer in big trubble :) 08:38:50 I440r: i can 08:39:41 do puts its parameters on a "do stack" ? 08:39:48 no 08:39:52 I440r: try it! 08:40:05 its easier than explaing it :) 08:42:45 I440r: the code is not perfect yet. hold on, im testing it 08:43:15 try this : map over >r swap 1- 0 do dup >r execute r> loop drop r> ; 08:43:53 1 2 3 3 ' + map .s 3 6 ok 08:44:09 ur isforth told that 2 me ;) 08:44:23 oh i get it heh 08:44:34 my friend had a good one 08:44:35 :) 08:44:36 nevermind ur doing a >r blah blah r> in the loop heh 08:44:50 "forth, the only language that it's easier to write an interpreter for than write something in it" 08:44:51 iknow :) 08:45:01 why are you using dup >r instead of dup>r ? 08:45:02 davidw: lol 08:45:30 what 4th standard defines dup>r ? 08:45:49 anyway, its clearly an "alias" 4 dup >r 08:46:10 who cares about what standard defines what 08:46:22 dup>r has been in every single forth ive ever used! 08:46:25 for example.... me? 08:46:43 k, let me check 08:46:51 gforth, bigforth, tile 08:47:44 none of them knows it... 08:47:47 no comment 08:48:10 but anyone can c that it is a compound word 08:48:29 its just an abbrev, like: 08:48:47 "ithink" instead of "i think" 08:49:32 or ideepthroat 08:49:40 * gilbertbsd *shrugs* 08:50:02 u hate portability a bit more paranoidly than 1 should... 08:50:28 they arent forths :P 08:50:35 nuff sed :) 08:51:01 enlist me some 4thes then 08:51:43 i believe pybmy defines it 08:51:48 win32for probably does 08:51:50 fpc did 08:55:13 --- quit: gilbertbsd ("xchat exiting..") 08:55:38 stupid win/dos 4thes... :) 09:08:58 isfoth defines it :P 09:09:07 so foo to you :P~ 09:26:09 but while "dup >r" is granted 2 work on any system, dup>r isnt :P~~~ 09:26:31 anyway, have u already met coldforth? 09:28:44 btw, do u use already in such a postion? 09:29:15 or say "have u ever" or "have u met ... yet" instead? 09:30:00 have you ever had a look at 09:30:18 no 09:30:19 that's not right 09:30:21 dammit 09:30:24 I don't speak english enough 09:30:30 have you looked at coldforth yet? 09:30:33 there 09:31:08 ammm, theres notin wrong w the verb meet... 09:31:14 it was intentional 09:31:36 meet is for people, usually 09:31:44 it rather means "heard about" than "look @" 09:31:54 no it doesn't 09:31:57 thats right: usually 09:32:39 so its megszemelyesites ~= personalization 09:32:51 s/its/its a/ 09:34:41 its a term from the world of literature 09:38:44 : dup>r dup >r ; 09:41:11 I440r: coldforth? does it ring a bell? 09:44:47 ? 09:47:27 http://coldforth.teegra.net/ 09:48:43 complete 4thOS for a kind of motorola architecture 09:48:58 GPLL !!! 09:49:20 and it also has a TCP/IP implementation written in 4th!!! 09:49:45 cool 09:50:00 & features a tricky source documention idea 09:50:23 u compile the html files directly when 09:50:31 ur compiling the OS :) 09:51:10 u dont have to write a separate code & documentation 09:51:13 :) 09:51:58 how do u like it? 09:52:52 not looked yet, im downloading opera nad thats making it impossible to brows rite now 09:54:57 its just 1M anyway 09:55:22 did u know opera 6 is already themable? 09:58:15 themable shmebable... who cares about shit like that:-) 10:01:14 some cares... tho, i usually use console based stuff in an xterm 10:01:39 i still like colors 10:01:59 and this themability allows me coloring opera too 10:02:42 i also dyed my xmms (handwritten skin :) 10:02:48 how much of coldforth is m68k? 10:03:10 n/a 10:03:13 I hate xmms... the thing takes up a ton of space 10:03:30 n/a my ass... it's written for the coldfire processor 10:03:34 havent found any data about it, but 10:04:03 ithink not much of it is m68k specific 10:04:24 n/a = not/available 10:04:46 imeant, data about that ratio is n/a 10:05:12 it was an implementation goal 2 keep asm part small 10:05:14 parts 10:05:52 what else do u use instead of xmms? 10:06:15 ogg123 10:06:37 does it allow u 2 position in files? 10:07:11 sure 10:07:34 imean, via the keyboard 10:08:01 don't know... don't really care 10:08:10 I just want something minimal, not all that bloat in xmms 10:09:58 do u know cplay? 10:10:37 --- join: tathi (~tathi@wsip68-15-54-54.ri.ri.cox.net) joined #forth 10:11:35 'lo all 10:12:30 tathi: http://coldforth.teegra.net/ 10:12:54 ithink ull like it ;) 10:13:55 I'll take a look 10:26:10 --- quit: I440r ("bbl - gotta free up the fone") 10:26:30 tathi: well? how did u like it? 10:26:37 --- quit: MrGone () 10:26:52 not sure 10:26:59 they don't explain what it is very well :) 10:26:59 why? 10:27:10 huh? 10:27:19 but they do! 10:27:31 looks to me like they have a 68K forth system written in assembly language 10:27:33 there r 2 articles 10:27:38 they went out of their way to make it GPL 10:27:44 but don't seem to provide source code anywhere 10:27:55 lol 10:28:08 the html pages u browse r the code itself 10:28:25 u can compile those directly w 4th 10:28:46 ah 10:28:49 and its mainly written in 4th, anyway 10:28:53 hadn't gotten that far yet 10:29:10 http://coldforth.teegra.net/tcpippaper/tcp_ip.html 10:29:28 it talks a bit about the systems history 10:29:48 there is a source link on the main page 10:29:54 what else would u like? 10:30:16 yeah, just finished reading that 10:30:18 it also has nice diagrams about 10:30:35 dict, voc, task structures 10:33:56 not bad 10:34:14 tathi: mind the native 4th tcp/ip stack 2!!! 10:34:49 (protocol stack, imean :) 10:35:13 --- join: MrGone (~mrreach@209.181.43.190) joined #forth 10:35:18 well, sounds like they're using it for networked devices, so they kind of had to write one :) 10:42:45 very nice 10:47:05 yeah, ive told u in advance ;) 10:48:06 so you did :) 11:30:13 --- join: herkamire (~jason@wsip68-15-54-54.ri.ri.cox.net) joined #forth 12:44:54 --- join: mark4 (~mark4@1Cust80.tnt1.bloomington.in.da.uu.net) joined #forth 12:51:05 --- quit: mark4 ("Reality Strikes Again") 13:49:12 herkamire: http://coldforth.teegra.net/ 13:51:49 All I need now is a coldfire device to run it on :/ 13:52:43 Soap`: :) 13:53:03 Soap`: u can run it in your mind ;) 13:55:23 I prefer not to run Forth on dodgy hardware :/ 13:57:22 so, hack a coldfire simulator ;) 14:20:51 --- join: I440r (~mark4@1Cust80.tnt1.bloomington.in.da.uu.net) joined #forth 14:21:02 Hi 14:21:36 hi 14:21:42 i relay need a job coding :( 14:21:47 :-( 14:24:45 learn java 14:25:09 Learn to read. 14:25:17 davidw: broaf ? :) 14:45:42 --- quit: tathi ("Client Exiting") 15:04:10 --- quit: herkamire ("Client Exiting") 15:04:27 --- join: Soap- (flop@210-55-86-51.dialup.xtra.co.nz) joined #forth 15:04:29 --- join: s[7]th (s_7_th@AAubervilliers-103-1-3-235.abo.wanadoo.fr) joined #forth 15:04:33 hiho 15:04:58 where can i find some forth programming samples ? 15:06:12 hehe 15:06:16 google.com :) 15:06:17 or 15:06:24 ftp://ftp.taygeta.com 15:07:30 hi, se7enth 15:07:51 thank you ^^ 15:08:02 s[7]th: what os do u use? 15:08:10 windows 15:08:17 hmm 15:08:25 why ? 15:08:26 do you have win32 forth ? 15:08:35 bad choice... 15:08:52 yes but i didn't understand anything with win32forth 15:08:55 probably u should try bigforth 4 win32 15:08:59 i prefere gforth 15:09:16 u can see many examples in it 15:09:31 ok, i'll search it ^^ 15:09:32 what r u interested in, anyway? 15:09:32 --- join: Speuler (~l@195.30.184.51) joined #forth 15:09:54 g'day 15:10:10 taygeta is the most advisable place 4 everybody, ithink 15:12:10 s[7]th: but if u r interested in 4th related theoretical stuff 15:12:17 s[7]th: dont miss http://www.ultratechnology.com/people.htm !!! 15:27:17 --- quit: rob_ert ("(:") 15:27:18 --- quit: s[7]th (Read error: 104 (Connection reset by peer)) 15:28:43 --- quit: davidw (Read error: 113 (No route to host)) 15:30:39 --- quit: Soap` (Read error: 110 (Connection timed out)) 15:45:32 --- join: s[7]th (s_7_th@AAubervilliers-103-1-3-235.abo.wanadoo.fr) joined #forth 15:45:51 nah, what has happened 2 u? 15:46:07 i don't know 15:46:24 u fell off by no reason? 15:46:40 i'm affraid it's the truth ^^ 15:47:15 * s[7]th : computers & their mysteries 15:47:19 but have u got the "dont miss http://www.ultratechnology.com/people.htm !!!" msg? 15:47:40 no, i writed it 15:48:03 what did u write? 15:48:05 but the site is very... compact 15:48:09 the url 15:48:33 compact, compact... but it has all the important 15:48:51 links 2 4th related theoretical stuff 15:49:27 it gathers most of today's biggest names of 4th 15:49:55 --- join: tathi (~tathi@ip68-9-58-81.ri.ri.cox.net) joined #forth 15:50:11 in fact, i've no idea of programming somehing in forth (but i've to write a lisp interpreter in forth but it's litte bit hard for a firdt step into the forth's world ^^) 15:50:16 like chuck, jeff fox, john rible, wil baden 15:51:08 s[7]th: maybe lifo (lisp forth) by alexander burger may give you some inspiration 15:52:15 hmmm, but i can find peter knaggs & ... that other chinese guy... 15:52:31 in fact i'm very surprised by this project : http://jpb.forth.free.fr/Francais/encadrement.html 15:52:35 os in forth 15:53:06 1tom: ting ? wong ? 15:53:14 http://jpb.forth.free.fr/Anglais/encadrement.html (for english speaker) 15:53:19 ting ithink... 15:53:46 ting = offete enterprises 15:54:22 ch ting = some guy who cant speak good english that tom zimmer got to write his dox for him hehe 15:54:31 but he is a better FORTH coder than tz 15:54:39 s[7]th: :) that seems a nice link, tho its in french & thats why i havent find it yet, iguess... 15:55:13 onetom : http://jpb.forth.free.fr/Anglais/encadrement.html is in english 15:56:28 s[7]th: http://coldforth.teegra.net/ or http://www.forthos.org/ or retro at tunes.org or enth/flux (a modification of chucks www.colorforth.com) r also nice forth os-es 15:56:49 s[7]th: :) thx 4 the english link 16:00:01 'night 16:00:06 --- quit: Speuler ("using sirc version 2.211+KSIRC/1.1") 16:07:48 --- join: tcn (tcn@tc1-login22.megatrondata.com) joined #forth 16:07:48 --- mode: ChanServ set +o tcn 16:08:02 hey all 16:11:37 bye 16:11:47 --- nick: s[7]th -> s[away]th 16:17:12 tcn! 16:17:20 dood this is starting to become a habit with you heh 16:17:23 sorry - i was afk :) 16:17:29 even I have to eat sometimes :) 16:19:24 i had to get outta town for a while.. too fucking hot there 16:20:55 lol 16:21:09 u need a personal air conditioner :) 16:21:17 to condition your personal space :) 16:22:13 yeah, well, what's the point.. 16:23:17 heh.. you seen colorforth.com lately? 16:23:28 nope 16:24:00 so did you write my assembler yet or what :P 16:24:15 you had all day yesterday to do it in:P 16:24:52 tcn: hi. whats new on colorforth.com? 16:25:00 why don't you just write your own assembler? 16:25:27 cuz i dunno how :P) 16:25:59 onetom: nothing at all :) His old web site's dated about 7/13/01 and says to use colorforth.com, and colorforth.com is dated 7/26/01 16:26:26 tcn: :) c 16:26:27 lol 16:27:35 i wonder what's up with him anyways.. did he just say fuck it, or has he got health problems? 16:27:50 chuck ? 16:27:53 yeah 16:28:01 he is going blind 16:28:01 he is already legally blind 16:28:19 so it's gotten that much worse this past year? 16:28:22 he needs a huge screen in a 3 chrs by 4 chars mode where each char is a foot big 16:28:29 or something like that 16:28:36 its getting worse all the time from what i hear 16:28:56 i wonder if that's what happens when you stare at a computer too long 16:29:16 lol 16:29:25 if so how come im not blind :) 16:31:06 do you wear glasses? 16:31:08 I440r: ur name is not chuck :) 16:31:19 I440r: welding glasses :) 16:31:30 me ? no 16:31:35 and im 38 16:31:40 then, u should! ;) 16:31:57 actually i have the same prescription as my dad and his mother 16:31:59 38-) 16:32:07 & u say, moooo 16:32:08 i can hit a 6 inch target with my 45 at 100 yards 16:33:53 i hit a charging boar in the eye 16:34:39 i can kill a game bird at 30 yards with a rock :) 16:36:54 ok, i'm updating my web page 16:37:43 you have a web page ? 16:37:44 heh 16:38:02 tcn my 45 is a handgun not a rifle 16:38:24 what kind of sights? 16:38:53 just normal iron sites 16:39:02 no long eye reliefe scope or anything 16:39:09 its a kimber classic custom 1911 45 acp 16:39:51 the boar was with a 30-30, iron sites 16:40:47 anyway.. good aim runs in my family 16:41:38 :) 16:42:07 my dad is a hell of alot better a shot than i am 16:42:16 and he is old and has the shakes and cant see for shit 16:42:22 i dunno how the fuck he does it heheh 16:42:48 heh 16:44:23 anyway get me that assembler dammit :P 16:44:29 and fix fbsd.1 :P 16:44:31 ohh btw 16:44:45 i got some code you mite be interested in for your retro! 16:44:48 hang on 16:47:01 if i mailed you at tcn@tunes.org can u pick up from where u r at rite now ? 16:47:25 yeah 16:49:47 ok brb mailing someone :) 16:49:47 heh 16:53:23 sent 16:55:42 theres quite a bit in there that you mite be interested in for retro 16:55:55 btw i noticed you used .1 extensions for your files hehe 16:57:46 yeah, since i was sharing between retro & isforth 16:57:53 where'd you get that idea anyway? 17:00:24 ok i use the a86 assembler 17:00:31 a86 has some nifty features 17:00:38 i use file.a for my main source file 17:00:47 but in linux .a is spoken for 17:01:06 for files that have to be manually included i use .i 17:01:29 and for files that a86 will automatically include if you reference a label contained therein i use .s 17:01:55 i cant use any of the above in linux. they arent appropriate 17:02:00 so i used .1 :P 17:02:22 i seriously considered calling my main source file isforth.a and all include files file.s 17:02:42 i REFUSE to use file.S becuse the upper case entension is BUTT UGLY 17:03:01 hmm.. we could get some ideas for this assembler from A86 17:03:12 definatly could 17:03:25 and eric isaacson lives about 20 minutes away from me :) 17:04:19 what's >L1? 17:07:24 its a forward branch to a local label 17:07:42 it lets a86 (one pass assembler) know that it can assemble a short branch 17:07:51 all local labels have to be within short range 17:08:14 a86 rocks :) 17:08:16 any single letter plus a single digit label is a local label 17:08:19 i registered it 17:08:34 you can also do 17:08:38 L1L 17:08:40 erm 17:08:41 L1: 17:08:43 xxx 17:08:44 xxx 17:08:48 jne L1 17:08:52 je >L1 17:08:54 yyy 17:08:55 yyy 17:08:57 L1: 17:08:58 ret 17:09:20 but you cant cross over 17:09:23 L1: 17:09:26 jne >L1 17:09:30 je L1 17:09:32 L1: 17:09:35 is not legal 17:10:45 i see 17:10:58 i only ever use L0 to L9 17:11:13 if you need more local labels you need to rethink your code more:) 17:11:17 yeah 17:11:27 i use .0 to .9 in nasm 17:11:35 rite 17:11:49 but i always put .L0: 17:12:00 the l and the : are preferable to me 17:12:01 oh 17:12:03 note this 17:12:12 local labels are the only place i use upper case normally :) 17:12:29 so where do i get A86? source? 17:12:36 you dont lol 17:12:44 a86 is shareware 17:12:51 a386 (registered) is commercial 17:13:14 one of its few downsides :( 17:13:26 oh maybe i have it around 17:13:37 maybe you have what arround ? 17:13:41 a86 17:13:46 a86 and d86 can be downloaded from www.eji.com 17:14:00 i never pass out a386 to anyone tho 17:14:04 its realy amazing too 17:14:16 a386 is the only assembler ive never seen warzed 17:14:17 ever 17:16:00 I think the people that use it appreciate all the work he must have put into it 17:16:07 I know I did... 17:16:16 did u reg it? 17:16:34 no, I didn't have the money at that point 17:16:38 aha 17:16:44 I was like 12 or something 17:16:46 neither did i but i still regged it heh 17:17:03 i think a86lib is the best thing since sliced bread 17:17:16 yup yup 17:18:38 i keep meaning to email eji - i moved to within 20 minues of where he lives :) 17:19:47 cool 17:20:37 I got so spoiled using D86 -- I really dislike debugging asm with gdb now :) 17:20:45 lol 17:21:04 one of the things i realy want for isforth is the ability to debug coded definitions as well as colon definitions 17:21:25 i.e. if you single step into a coded definition it reverts to disassembling :) 17:21:32 as opposed to decompiling 17:21:47 i definatly want a display similar to d86 17:23:02 that would be pretty cool 17:23:03 i just downloaded it :) 17:23:47 d86 is all in blue and i got used to that - i didnt like d386 at first. its all in red heh 17:24:35 weird 17:24:51 wonder why he made it different? 17:25:17 so you could tell which one you are in 17:25:21 is my guess 17:27:06 do you still need d86 if you have d386? 17:27:13 not realy 17:27:39 tcn u looked at those sources i sent u ? 17:28:00 look at the way i calculate screen address based on x/y coordinates of the cursor :) 17:28:20 use y as an index into a byte table 17:28:29 mov ax,[y] 17:28:36 mov bx,xlat-table 17:28:37 xlat 17:28:42 shl ax,5 17:29:03 that leaves the offset from the start of the videp segment to the start of the yth line :) 17:29:08 then i just add in 2*x :) 17:29:27 and the strout function does tokenised string output 17:29:29 heh 17:29:52 tokenized? 17:29:57 yes 17:30:01 you can have a string 17:30:04 string1: 17:30:11 'and',0 17:30:27 now you can embed a token for that string in some other string 17:30:35 i.e. you can nest strings inside other strings 17:30:51 cool :) 17:30:53 you can even tokenize strings that have tokenised strings within them 17:31:29 strings can contain x/y cursor positioning info, forground and background colour info 17:31:38 all kinds of stuff 17:31:48 and the code isnt very complex either 17:31:53 very simple actually 17:32:36 yeah, since it's asm and the strings don't move around 17:33:24 heh 17:33:36 so anyway it's like a terminal emulator 17:33:47 not quite - but close :) 17:34:29 oh - i also sent you my vga code - mode $12 AND $13 17:34:44 line drawing, pixle writes etc - 17:35:04 my line drawing in mode $12 is almost guaranteed to be the fastest possible 17:35:14 i doubt anyone ever wrote anything faster 17:35:26 what's mode $12 again? 17:35:40 640x480x16 17:35:44 planar 17:35:55 to write a pixle you have to set the set-reset register 17:36:01 the map mask register 17:36:01 i wrote some 640x480 B&W stuff :) 17:36:08 and do a dummy read followed by a dummy write 17:36:17 fun stuff :) 17:36:31 ya 17:36:32 yeah, graphics is cool 17:36:45 my mode x and mode 13 code is int ehre too 17:36:55 and my line clipping code :) 17:37:12 i didnt get round to writing the real 3d shit tho 17:37:22 so you cant do teture mapping or any of that :P 17:37:24 too lazy 17:37:47 3D is too much work anyway 17:38:04 nah 17:38:17 to make up all the models & textures and crap?? 17:38:19 i wrote a 3d rotating dots windowmaker dockapp heh 17:38:34 it would have been fun but i was too lazy :P 17:38:40 and maff isnt my strong suit heh 17:38:48 what's maff? 17:38:55 oh 17:39:10 lol 17:39:18 thats what i keep saying too 17:43:28 ive worked on everything from long wall coal mining roof suport system to bios level plug and play inti 17:43:48 doppler nav on apache helecopter and air speed indicator of the U2 spy plane 17:44:01 grr mischan 17:44:14 no wonder it crashes so much 17:44:26 ;) 17:44:39 lol 17:44:45 stick actuator error 17:55:39 anyway tcn if we keep talking machine tools in tunes water will get ansi :) 18:26:00 has anyone here seen joa actually say anything ? 18:26:03 heh 18:26:14 --- nick: MrGone -> MrReach 18:26:14 yes 18:26:47 wow! 18:26:48 lol 18:26:48 but I bet no one's seen ChanServ say anything :) 18:27:00 gotta go eat though. later heh 18:27:03 actually i was beginning to think YOU were a bot too :) 18:27:18 not that thas a problem or anything heh 18:28:12 heh 18:28:25 hi mrreach :) 18:28:30 hihi 18:28:33 :) 18:29:21 eep i just found a unix embedded job related to aircraft fire systems (as in weapons) and it requires knowledge of PVCS 18:29:35 note - not rcs, not cvs - but PVCS!!!! 18:29:36 lol 18:29:37 what is PVCS? 18:29:47 its polytron version control system 18:29:51 its crap 18:29:54 heh 18:29:58 grrr, bloody PowerPC caches... 18:30:07 they sent joy mining macheneery an update cd and it woudnt install 18:30:09 that's one advantage of block editors 18:30:16 so we fond up the tech rep and he asked for the number on the cd 18:30:25 it's easier to build version tools 18:30:30 we gave it to him and it wasnt in his databse of released versions 18:30:46 they write a version control system and they cant even keep track of their own versions of it 18:30:48 lol 18:30:51 hacked version w/ trojan? 18:31:03 no. it was mailed to us directly from them 18:31:11 sent by disgruntled employee? 18:31:15 nope 18:31:24 just a bonehead mistake? 18:31:29 it was a prepaid update 18:31:31 typical for military/commercial software 18:31:31 yes 18:31:36 definatly a bonehead mistake 18:31:39 it's all crap 18:31:54 heh, tcn, you're always *SO* cheery 18:31:59 hahaha 18:31:59 hehe 18:32:50 listen, we have this lousy inventory/manufacturing/accounting database at work.. this is what you get when you need something more specialized than a word processor 18:33:14 erm ... that wouldn't be Atrex, would it? 18:33:24 nope 18:33:34 good, that's what I spent today learning 18:40:17 shit 18:40:30 enough of this for one night.. see ya 18:40:51 nite 18:40:55 --- quit: tcn ("Leaving") 18:40:57 fix fbsd.1 :) 18:41:03 doh he left too fast :) 19:20:32 --- quit: s[away]th (Connection reset by peer) 20:24:05 --- join: onetom_ (tom@adsl52032.vnet.hu) joined #forth 20:24:23 oh no! 20:24:27 two of him! 20:24:29 panic! 20:24:30 heh 20:42:13 --- quit: onetom (Read error: 110 (Connection timed out)) 20:42:13 --- nick: onetom_ -> onetom 20:44:11 :) 21:07:36 clog - listen up! 21:08:16 ...for example, the ANSI Forth standard doe not describe Forth, but a language with the same name 21:08:21 -- Chuck Moore 21:43:25 --- quit: tathi (Remote closed the connection) 21:56:04 --- quit: onetom (Read error: 110 (Connection timed out)) 23:05:07 --- quit: I440r ("Reality Strikes Again") 23:44:00 --- join: futhin (~thin@h24-64-174-2.cg.shawcable.net) joined #forth 23:46:55 hello 23:46:56 anybody alive 23:59:59 --- log: ended forth/02.04.17