Talk About Network



Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Forth > Re: The Promise...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 64 of 495 Topic 3957 of 4053
Post > Topic >>

Re: The Promise of Forth

by William James <w_a_x_man@[EMAIL PROTECTED] > Mar 23, 2008 at 12:09 PM

On Mar 22, 7:56 pm, Jonah Thomas <jethom...@[EMAIL PROTECTED]
> wrote:
> People who don't like Forth say, why bother with a data stack at all?
> Declare variables, declare locals, let the compiler do the work of
> figuring out where everything is. Don't bother your little brain about
> it.

You are dishonest, or illogical, or both.
If you want your brain to do all of the work,
then don't use a computer.  Ever.  Understand?

>   And Forthers say that with a data stack we get a simpler compiler

Untrue.  Only those whose highest ambition is flushing a
toilet say that.

And why would the one using a compiler want it to be
as simple as possible?  That's what the lazy creator
of the compiler would want: "Let the users do most of
the work, not me."

> and we get simpler subroutine calling. We're encouraged to factor
> deeper, and that helps us write simpler code.

Untrue.

>    And they say it isn't
> simpler, programming in Forth is like solving a Rubik's cube, you're
> handling details the compiler could do better and it costs you in
> efficiency.
>
> The Forth promise is that the extra thinking will pay off. That the
> normal exponential crufty buildup will be slowed. That the simplicities
> will work together so that you'll wind up with less total work. Fewer
> places for bugs to hide means faster debugging and the possibility for
> actual correct code.

Untrue.

For example, you posted this stack spaghetti:

: BOX4 ( x1 y1 x2 y2 -- )
   2>R
   R'@[EMAIL PROTECTED]
 OVER 2R@[EMAIL PROTECTED]
 LINE
   OVER R@[EMAIL PROTECTED]
 2R@[EMAIL PROTECTED]
 LINE
   2DUP OVER R> LINE
   R> OVER LINE ;

Those of you who are honest and willing to think
will note the lack of factoring, the unreadability.
and the multitude of places for bugs to hide.
It is as though the programmer set out to generate
the worst possible gibberish.  Anyone who thinks
that this is acceptable code has a gigantic
mental blind spot.

I would never hire a programmer who produced
code like that.  I would never hire a "programmer"
who had a paranoid fear of local variables.


>    The less that extra complexity leaves you making
> work for yourself, the more time you have available to think and
> simplify and the more actual results you can produce.

The code you posted was hideously complex.

>
> It's true for some Forth programmers. When people try Forth and decide
> it wouldn't work for them, they may be right. The Forth Promise

You are capitalizing it as though it were your god.
I think that this is a religious belief that has no
connection with facts or reason.

>     can't
> pay off except for programmers who think of ways to keep it simple.

As simple as your BOX4?

Or as simple as one approach using locals:

: from_corner { x y  xx yy -- }
  x y  xx y line
  x y  x yy line ;

: box { x y  xx yy -- }
  x y  xx yy  from_corner
  xx yy  x y  from_corner ;




 495 Posts in Topic:
The Promise of Forth
Jonah Thomas <jethomas  2008-03-22 21:56:18 
Re: The Promise of Forth
Axel Harvey <xlrv@[EMA  2008-03-22 21:57:00 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-23 06:09:42 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-23 12:50:04 
Re: The Promise of Forth
Albert van der Horst <  2008-03-24 02:02:31 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-03-31 22:17:42 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-01 10:32:12 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-01 12:45:29 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-02 11:10:23 
Re: The Promise of Forth
Albert van der Horst <  2008-04-01 09:05:40 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-01 12:59:36 
Re: The Promise of Forth
Guy Macon <http://www.  2008-03-23 22:46:35 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-03-31 22:29:25 
Re: The Promise of Forth
Albert van der Horst <  2008-04-01 09:10:55 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 18:05:14 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-24 02:36:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 19:39:13 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-03-27 12:07:48 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-04-24 09:50:51 
Re: The Promise of Forth
"Paul E. Bennett&quo  2008-03-23 11:20:00 
Re: The Promise of Forth
JK <jk.usenet@[EMAIL P  2008-03-25 14:11:45 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-25 18:54:11 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 14:53:25 
Re: The Promise of Forth
JK <jk.usenet@[EMAIL P  2008-03-27 09:11:30 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-04-24 09:53:56 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 08:23:22 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-23 12:58:12 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 12:58:39 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 14:16:35 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 00:17:17 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-24 22:28:53 
Re: The Promise of Forth
"Jenny Brien" &  2008-03-25 20:19:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 14:28:01 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 15:41:21 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 16:32:27 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 17:40:46 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 11:23:46 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-25 11:04:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 20:40:22 
Re: The Promise of Forth
stephen@[EMAIL PROTECTED]  2008-03-25 04:44:48 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-25 17:12:48 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-03-26 06:13:36 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-26 07:00:14 
Re: The Promise of Forth
astrobe <fdubois76@[EM  2008-03-27 05:32:10 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-27 15:35:21 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-28 15:41:20 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-28 17:41:22 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-28 17:36:37 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-03-28 16:40:35 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-27 11:14:40 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-03-27 12:12:34 
Re: The Promise of Forth
astrobe <fdubois76@[EM  2008-03-28 05:28:12 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 11:30:35 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:07:30 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 15:15:23 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:05:20 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 18:10:30 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 08:16:09 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 10:11:02 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 12:16:54 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-23 16:45:15 
Re: The Promise of Forth
kenney@[EMAIL PROTECTED]   2008-03-24 08:32:26 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-03-24 17:22:51 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-23 12:09:11 
Re: The Promise of Forth
"Robert Miller"  2008-03-23 21:31:37 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-03-24 17:49:46 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 02:41:12 
Re: The Promise of Forth
Frank Buss <fb@[EMAIL   2008-03-25 05:00:58 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 20:09:00 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 04:03:15 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-25 06:49:08 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 22:44:53 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 11:37:14 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-03-25 22:51:42 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-25 10:51:49 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-03-25 10:55:38 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-03-25 19:39:22 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 23:06:26 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-03-27 18:36:53 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 20:54:58 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 08:57:48 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 09:32:08 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 17:43:33 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-23 16:35:44 
Re: The Promise of Forth
John Passaniti <put-my  2008-03-23 18:37:55 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 23:18:44 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-23 23:50:24 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-24 08:06:31 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 08:24:37 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 10:38:40 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 08:52:04 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 09:32:58 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-24 11:24:39 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-24 14:55:12 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-03-25 02:34:19 
Re: The Promise of Forth
Alex McDonald <blog@[E  2008-03-25 07:20:19 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 09:20:17 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 16:08:24 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 17:34:51 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 19:55:56 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 20:00:19 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 22:29:30 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 10:35:29 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:16:23 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 22:25:31 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 16:48:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-05 01:08:15 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 10:39:14 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 11:50:08 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 07:54:47 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-06 23:41:57 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-06 23:47:56 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 08:25:40 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-07 09:45:40 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-07 09:59:41 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-07 21:18:56 
Re: The Promise of Forth
kenney@[EMAIL PROTECTED]   2008-04-08 04:52:36 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-08 18:59:06 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-04-09 11:18:52 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-09 17:45:09 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-12 21:15:16 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-08 07:03:01 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-09 08:57:51 
Re: The Promise of Forth
Tarkin <Tarkin000@[EMA  2008-04-09 22:38:00 
Re: The Promise of Forth
Brad Eckert <nospaambr  2008-03-25 20:30:02 
Re: The Promise of Forth (Doty)
William James <w_a_x_m  2008-03-26 03:25:01 
Re: The Promise of Forth (Doty)
William James <w_a_x_m  2008-03-26 03:34:41 
Re: The Promise of Forth (Doty)
Bruce McFarling <agila  2008-03-26 06:40:48 
Re: The Promise of Forth (doty)
Bruce McFarling <agila  2008-03-26 07:06:33 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 11:46:10 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-01 14:00:53 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:20:32 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 15:41:32 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-05 23:40:17 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 19:09:35 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 15:21:25 
Re: The Promise of Forth
Duke Normandin <dukeof  2008-04-04 04:06:12 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-04 08:55:34 
Re: The Promise of Forth
gavino <gavcomedy@[EMA  2008-04-24 10:10:29 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 18:39:26 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-23 18:56:02 
Re: The Promise of Forth
JK <jk.usenet@[EMAIL P  2008-03-27 10:28:45 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-28 09:57:12 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-28 17:40:51 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-30 01:54:05 
Re: The Promise of Forth
John Passaniti <nntp@[  2008-03-30 06:20:08 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-30 09:58:40 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 20:05:36 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-23 22:39:40 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-23 22:07:21 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 18:38:03 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-01 22:37:03 
Re: The Promise of Forth
John Passaniti <put-my  2008-03-24 01:00:11 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 10:46:31 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 18:02:13 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-23 20:50:19 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 21:25:29 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-23 23:10:02 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-24 11:56:44 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 10:24:48 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 11:44:39 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 12:44:24 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 14:37:25 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 14:12:06 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 17:34:10 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 01:53:13 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-25 00:02:28 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-25 11:50:15 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 17:33:45 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 19:42:54 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-03-25 12:16:55 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-03-25 15:17:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 09:48:37 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-25 10:02:13 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 14:29:41 
Re: The Promise of Forth
m-coughlin <m-coughlin  2008-03-25 23:32:55 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-03-25 05:46:58 
Re: The Promise of Forth
"Rod Pemberton"  2008-03-27 05:32:15 
Re: The Promise of Forth
Albert van der Horst <  2008-03-28 09:07:33 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-28 08:12:44 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-28 10:00:40 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-24 17:31:47 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-30 00:10:43 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-23 21:46:01 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 07:53:42 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 09:03:40 
Re: The Promise of Forth
"Robert Miller"  2008-03-24 11:40:00 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 13:19:30 
Re: The Promise of Forth
"Robert Miller"  2008-03-24 22:08:54 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 21:24:16 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 19:47:41 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:42:12 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 15:28:46 
Re: The Promise of Forth
"Mark W. Humphries&q  2008-04-04 09:51:51 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 11:05:49 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 11:12:15 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 20:07:19 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 04:14:38 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 04:40:16 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-05 14:10:31 
Re: The Promise of Forth
stephen@[EMAIL PROTECTED]  2008-04-05 14:50:53 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 07:56:43 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 08:01:51 
Re: The Promise of Forth
Gerry <gerry@[EMAIL PR  2008-04-05 10:16:34 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 10:42:39 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 10:51:57 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-13 19:42:56 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-14 11:13:45 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-01 16:42:58 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-02 09:15:10 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 07:13:40 
Re: The Promise of Forth
Albert van der Horst <  2008-05-02 16:11:20 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 10:55:22 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-02 21:39:17 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 16:14:01 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 16:34:35 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 02:07:40 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 21:03:33 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 09:03:49 
Re: The Promise of Forth
Bruce McFarling <agila  2008-05-07 15:27:31 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 02:04:24 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 21:11:32 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 09:49:42 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 08:32:32 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-05-03 09:01:34 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 11:06:21 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-05-03 17:10:06 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 18:23:14 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 09:49:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 18:25:24 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 12:48:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 21:49:17 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 12:01:17 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 18:57:53 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 13:51:22 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-03 21:56:47 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-03 17:26:20 
Re: The Promise of Forth
Bruce McFarling <agila  2008-05-05 10:25:55 
Re: The Promise of Forth
Guy Macon <http://www.  2008-05-05 17:45:58 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-05 11:08:48 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 14:10:10 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 14:59:23 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 22:26:05 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 06:26:07 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 22:45:58 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 22:58:04 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-04 11:19:27 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:37:37 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 23:08:12 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 19:57:42 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 21:18:46 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 09:15:24 
Re: The Promise of Forth
Doug Hoffman <no.spam&  2008-03-24 10:53:38 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-03-24 09:57:45 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 09:39:24 
Re: The Promise of Forth
Andrew Haley <andrew29  2008-03-24 14:38:07 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 11:16:10 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 13:08:44 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 14:47:02 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 12:54:32 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-03-24 19:56:20 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-24 13:04:18 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 14:51:21 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 13:05:04 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 14:58:24 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 15:46:16 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-24 13:54:02 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-24 18:19:57 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 00:43:34 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-03-25 20:27:40 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 07:30:17 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 18:28:41 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-25 20:40:53 
Re: The Promise of Forth
"Robert Miller"  2008-03-25 23:20:11 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 06:56:49 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 10:44:41 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 20:18:16 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-25 20:52:17 
Re: The Promise of Forth
Stan Katz <stanmkatz@[  2008-03-26 15:01:03 
Re: The Promise of Forth
John Passaniti <nntp@[  2008-03-26 16:32:07 
Re: The Promise of Forth
Stan Katz <stanmkatz@[  2008-04-01 18:59:28 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-03-26 16:28:41 
Re: The Promise of Forth
Stan Katz <stanmkatz@[  2008-04-01 19:24:17 
Re: The Promise of Forth
"Mark W. Humphries&q  2008-03-26 20:31:53 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 22:59:25 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-04-01 15:37:48 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:29:24 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-26 21:30:32 
Re: The Promise of Forth
William James <w_a_x_m  2008-03-26 21:42:29 
Re: The Promise of Forth
Bruce McFarling <agila  2008-03-27 13:36:42 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 23:08:05 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-02 21:50:17 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 18:42:28 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-06 21:58:21 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-01 12:19:28 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:24:03 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 19:53:18 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-06 20:26:22 
Re: The Promise of Forth (Doty)
Jonah Thomas <jethomas  2008-03-26 23:22:59 
Re: The Promise of Forth (Doty)
John Doty <jpd@[EMAIL   2008-03-27 16:55:46 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-27 02:51:50 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:23:42 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 15:14:46 
Re: The Promise of Forth
Bruce McFarling <agila  2008-04-02 13:26:43 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 15:23:15 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-25 21:35:47 
Re: The Promise of Forth (Doty)
Jonah Thomas <jethomas  2008-03-25 23:26:05 
Re: The Promise of Forth (doty)
Jonah Thomas <jethomas  2008-03-25 23:30:28 
Re: The Promise of Forth (doty)
"Rod Pemberton"  2008-03-27 05:50:34 
Re: The Promise of Forth (Doty)
Jonah Thomas <jethomas  2008-03-26 08:57:09 
Re: The Promise of Forth (Doty)
mhx@[EMAIL PROTECTED] (M  2008-03-26 19:16:10 
Re: The Promise of Forth (Doty)
Bruce McFarling <agila  2008-03-26 14:07:58 
Re: The Promise of Forth (Doty)
mhx@[EMAIL PROTECTED] (M  2008-03-26 22:33:00 
Re: The Promise of Forth (Doty)
Bruce McFarling <agila  2008-03-26 14:48:23 
Re: The Promise of Forth (doty)
Jonah Thomas <jethomas  2008-03-27 20:40:56 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-03-27 21:10:39 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-01 22:22:53 
Re: The Promise of Forth
Jerry Avins <jya@[EMAI  2008-04-01 14:37:57 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 00:01:14 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-02 02:54:39 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-01 16:20:49 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-03 00:40:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-01 16:39:19 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-02 23:00:00 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-02 17:13:44 
Re: The Promise of Forth
Aleksej Saushev <asau@  2008-04-06 18:18:03 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-01 20:03:58 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-01 19:58:34 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-02 22:15:33 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 17:53:48 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-03 19:45:21 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 17:33:56 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 00:19:39 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 21:00:25 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-04 11:30:17 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-06 00:01:05 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-06 13:26:40 
Re: The Promise of Forth
Charlie Springer <RAM@  2008-04-07 21:14:47 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-04-08 10:20:03 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-04 19:01:03 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-03 16:36:41 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 21:43:44 
[Doty] Re: The Promise of Forth
Andrew Haley <andrew29  2008-04-04 04:25:52 
Re: The Promise of Forth
stephenXXX@[EMAIL PROTECT  2008-04-04 13:30:44 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 10:00:37 
Re: The Promise of Forth
Richard Owlett <rowlet  2008-04-04 12:33:50 
Re: The Promise of Forth
Elizabeth D Rather <er  2008-04-04 08:37:58 
Re: The Promise of Forth
Marc Olschok <nobody@[  2008-04-05 21:51:10 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-02 22:45:20 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 17:12:47 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-03 22:02:36 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 17:05:38 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 00:17:35 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-03 18:46:00 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 16:02:45 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 10:40:20 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 22:14:28 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 16:24:05 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-05 00:57:17 
Re: The Promise of Forth
Bruce McFarling <agila  2008-05-02 04:44:30 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-02 10:05:50 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 09:20:12 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 13:29:06 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 15:26:26 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 17:43:46 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-02 16:48:13 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-02 19:09:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 13:51:32 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:34:29 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 22:40:44 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 17:05:49 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 14:53:40 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 12:58:08 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 15:33:35 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 13:40:56 
Re: The Promise of Forth
Guy Macon <http://www.  2008-04-04 23:24:16 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 18:52:41 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-04-04 17:30:43 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 21:38:23 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-04 22:04:12 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-05 06:50:35 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-05 10:30:48 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-05 12:19:05 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-06 09:12:47 
Re: The Promise of Forth
Jonah Thomas <jethomas  2008-04-14 14:39:59 
Re: The Promise of Forth
John Doty <jpd@[EMAIL   2008-05-01 21:28:51 
Re: The Promise of Forth
Bernd Paysan <bernd.pa  2008-05-02 14:49:32 
Re: The Promise of Forth
mhx@[EMAIL PROTECTED] (M  2008-05-02 17:28:03 
Re: The Promise of