comp.lang.ada
 help / color / mirror / Atom feed
* Re: += in ada
@ 2003-10-13  9:22 christoph.grein
  2003-10-13 18:38 ` Wes Groleau
  0 siblings, 1 reply; 284+ messages in thread
From: christoph.grein @ 2003-10-13  9:22 UTC (permalink / raw)
  To: comp.lang.ada

> > with Text_IO; use Text_IO;
> > with Integer_Text_IO; use Integer_Text_IO;
> > procedure Issue is
> >    X,Y,Z: Integer := 0;
> > begin
> >    Get(X); Get(Y);
> >    if X * Y > Integer'Last

X and Y may be kept in registers and also the result, and the registers may well 
be able to hold values above Integer'Last.

The RM specifies that either an exception be raised or the mathematically 
correct result (here Boolean True) be returned. [Only when the result is 
assigned to an Integer must the exception be raised. There is no assignment in 
the if-statement's expression.]

> >    then
> >      Put_Line("Overflow!");
> >    else
> >      Z := X * Y;
> >      Put_Line("Okay");
> >    end if;
> > exception when Constraint_Error =>
> >    Put("Exception Raised. Z = ");
> >    Put(Z);
> >    New_Line;
> > end Issue;
> What,there are exception in X * Y > Integer'Last 
> if there are overflow on X*Y?
> And if so,how Put_Line("Overflow!"); could work?
> 
> (yes ,i'm is a newbie to ada)



^ permalink raw reply	[flat|nested] 284+ messages in thread
[parent not found: <3F957DAD.2020801@myob.com>]
* Re: += in ada
@ 2003-10-21 12:07 christoph.grein
  2003-10-21 13:51 ` Preben Randhol
  0 siblings, 1 reply; 284+ messages in thread
From: christoph.grein @ 2003-10-21 12:07 UTC (permalink / raw)
  To: comp.lang.ada

From: Preben Randhol <randhol+valid_for_reply_from_news@pvv.org>
> On 2003-10-21, Hyman Rosen <hyrosen@mail.com> wrote:
> > Wes Groleau wrote:
> >> I don't think Ada's alleged "awkward syntax"
> >> is a reason for its unpopularity.
> >
> > All I know is that when I first became aware of Ada many
> > years ago, my reaction was "Oh no! Pascal! Why did it have
> > to be Pascal?" (or something to that effect, since I guess
> > Ada predates the Indiana Jones movies). I don't think I
> > ever recovered from that initial visceral dislike.
> 
> Funny I had the same reaction. However, I recovered fast.

I had the exact opposite feeling (back in 1983): Oh, there finally is a language 
that has everything Pascal is lacking (range limits as attributes etc.).



^ permalink raw reply	[flat|nested] 284+ messages in thread
[parent not found: <1066725615.2801.26.camel@localhost.localdomain>]
* Re: += in ada
@ 2003-10-21 10:03 christoph.grein
  0 siblings, 0 replies; 284+ messages in thread
From: christoph.grein @ 2003-10-21 10:03 UTC (permalink / raw)
  To: comp.lang.ada

> On Tue, 2003-10-21 at 00:57, Wes Groleau wrote:
> > Martin Dowie wrote:
> > > Well, for 200Y some serious 'C++/Java'-style improvements are on the
> > > cards (though not yet approved), e.g.
> > > 
> > > 'interfaces' a la Java, and
> > > Object.Method notation like C++/Java/etc.
> > 
> > Interfaces I think there may be some value to.
> 
> No. They're useless. Ada 95 has several idioms to accomplish what Java
> does with interfaces. (This has been shown in a recent Ada-Europe
> conference by J.-P. Rosen. I think he won the best paper.)

No, Jean-Pierre didn't win the best paper award nor the best presentation award.
And no, there is some value in it or else there would not be such a proposal for 
Ada0y.



^ permalink raw reply	[flat|nested] 284+ messages in thread
* Re: += in ada
@ 2003-10-21  8:53 christoph.grein
  2003-10-21 13:48 ` Ole-Hjalmar Kristensen
  0 siblings, 1 reply; 284+ messages in thread
From: christoph.grein @ 2003-10-21  8:53 UTC (permalink / raw)
  To: comp.lang.ada

>     R> procedure P is
> 
>     R>   procedure Russ (X: in Boolean) is begin null; end Russ
> 
>     R>   X, Y: Boolean
> 
>     R> begin
> 
>     R>   Russ (X = Y)
> 
> I think you have just illustrated his point ....

Who has illustrated whose point?

> 
>     R>   Russ (X ==  Y)
> 
>     R> end P
> 
>     R> I'll bet I'm smarter than you think I am, Christoph Grein.



^ permalink raw reply	[flat|nested] 284+ messages in thread
* Re: += in ada
@ 2003-10-21  8:41 christoph.grein
  2003-10-22  5:00 ` Russ
  0 siblings, 1 reply; 284+ messages in thread
From: christoph.grein @ 2003-10-21  8:41 UTC (permalink / raw)
  To: comp.lang.ada

>                                                               ... Note
> that MyAda eliminates the semicolons, converts := and => to =, and
> uses == for equality testing (oh, gosh, that'll throw all those
> unwashed C/C++ masses for a loop!). I welcome any other challenges for
> MyAda. Here is the resulting MyAda code:
> 
> procedure P is
> 
>   procedure Russ (X: in Boolean) is begin null; end Russ
                                                ^
         Just curious why it kept this semicolon?
> 
>   X, Y: Boolean
> 
> begin
> 
>   Russ (X = Y)
>   Russ (X ==  Y)
> 
> end P
> 
> I'll bet I'm smarter than you think I am, Christoph Grein.



^ permalink raw reply	[flat|nested] 284+ messages in thread
* Re: += in Ada
@ 2003-10-21  8:40 Marius Amado Alves
  0 siblings, 0 replies; 284+ messages in thread
From: Marius Amado Alves @ 2003-10-21  8:40 UTC (permalink / raw)
  To: comp.lang.ada

On Tue, 2003-10-21 at 04:49, sk wrote:
> ... anyway, how does one actually see an AI ?
> 
> Everytime someone links to the AI's I always
> get stuck at a CVS log page offering "diff"'s
> and cannot get any further.

Click a version number, e.g. the latest.




^ permalink raw reply	[flat|nested] 284+ messages in thread
* Re: += in ada
@ 2003-10-20 10:42 christoph.grein
  2003-10-21  6:16 ` Russ
  0 siblings, 1 reply; 284+ messages in thread
From: christoph.grein @ 2003-10-20 10:42 UTC (permalink / raw)
  To: comp.lang.ada

> I realize that standard Ada is stuck with ":=", of course. However, I
> have developed a relatively simple pre-processor that effectively
> implements a dialect of Ada that uses "=". I call it "MyAda". I also
> have the inverse pre-processor, so I can go in both directions. With a
> few additional utilities, it should be possible for a member of an Ada
> devepment team to use MyAda without anyone else on the team ever even
> knowing. I realize that this is a long shot, but as I said, I am a bit
> obsessive/compulsive.

Russ,

Try YourAda on

procedure P is

  procedure Russ (X: in Boolean) is begin null; end Russ;

  X, Y: Boolean;

begin

  Russ (X => Y);
  Russ (X =  Y);

end P;

And please, do tell me the outcome.



^ permalink raw reply	[flat|nested] 284+ messages in thread
* RE: + in ada
@ 2003-10-17  8:58 Lionel.DRAGHI
  0 siblings, 0 replies; 284+ messages in thread
From: Lionel.DRAGHI @ 2003-10-17  8:58 UTC (permalink / raw)
  To: comp.lang.ada



| -----Message d'origine-----
| De: 18k11tm001@sneakemail.com [mailto:18k11tm001@sneakemail.com]
...
| > To understand "B :+ A", you need some programming background.
| > To understand "Add (A, To => B)", you just need english.
| 
| Baloney. If I had no programming background, I would wonder, "What are
| the parentheses for?" Then I would wonder, "Why is that arrow-like
| thing pointing from `To' to `B'"? After those questions were answered,
| I would think, "OK, so we're adding A to B, then what the heck are we
| doing with the result? Is it going into A or B or somewhere else
| altogether?"
Not at all. Or are you considering that people with no programming
background are also stupid?
Refer to Preben experience in a recent thread. 

| On the other hand, if you are a professional programmer, and it takes
| someone more than 30 seconds to explain what "B :+ A" means, then you
| are a full-fledged rockhead, and you should be doing manual labor
| rather than programming.
There is a form that you need to explain and a form with an obvious meaning.

You may have other point to justify this shortcut, but, again, not the
readability.

-- 
Lionel Draghi



^ permalink raw reply	[flat|nested] 284+ messages in thread
* RE: + in ada
@ 2003-10-16 15:55 Lionel.DRAGHI
  0 siblings, 0 replies; 284+ messages in thread
From: Lionel.DRAGHI @ 2003-10-16 15:55 UTC (permalink / raw)
  To: comp.lang.ada



| -----Message d'origine-----
| De: Hyman Rosen [mailto:hyrosen@mail.com]
...
| Lionel.DRAGHI@fr.thalesgroup.com wrote:
| > To understand "B :+ A", you need some programming background.
| > To understand "Add (A, To => B)", you just need english.
| 
| And Ada is meant to be a programming language for
| people without programming background?

No, and i did not say that. 

I just say that you will hardly gain readability by replacing a clear verb
with a cryptic smiley. 

Clear enough this time? :-)

-- 
Lionel Draghi




^ permalink raw reply	[flat|nested] 284+ messages in thread
* RE: + in ada
@ 2003-10-16  8:25 Lionel.DRAGHI
  2003-10-16 13:22 ` Hyman Rosen
  2003-10-16 16:13 ` Russ
  0 siblings, 2 replies; 284+ messages in thread
From: Lionel.DRAGHI @ 2003-10-16  8:25 UTC (permalink / raw)
  To: comp.lang.ada



| -----Message d'origine-----
| De: 18k11tm001@sneakemail.com
..
| And I say, if you think "Add
| (A, To => B)" is as clean and clear as "B :+ A", you don't get it. But
| that's just my opinion, of course.

To understand "B :+ A", you need some programming background.
To understand "Add (A, To => B)", you just need english.

Which one is more clear is pretty obvious. 

-- 
Lionel Draghi              http://swpat.ffii.org/index.fr.html 



^ permalink raw reply	[flat|nested] 284+ messages in thread
* Re: += in ada
@ 2003-10-01  8:54 christoph.grein
  2003-10-04 12:51 ` Georg Bauhaus
  0 siblings, 1 reply; 284+ messages in thread
From: christoph.grein @ 2003-10-01  8:54 UTC (permalink / raw)
  To: comp.lang.ada

> >>    count = count + 1
> >>
> >>The latter grates on my minimalist sensibilities like fingernails on a
> >>chalkboard
> 
> Surely, if you have minimalist sensibilties you would replace:
> 
> "count = count + 1"   with   "False"?

Depends on how "=" and "+" are defined ;-)



^ permalink raw reply	[flat|nested] 284+ messages in thread
* += in ada
@ 2003-09-25 16:25 Dmytry Lavrov
  2003-10-01  8:35 ` Peter Amey
  2003-10-01 14:06 ` Gautier
  0 siblings, 2 replies; 284+ messages in thread
From: Dmytry Lavrov @ 2003-09-25 16:25 UTC (permalink / raw)


Sorry,i can't post normal reply. It's "Re:is the writing on the wall for
ada"  is too big...


Russ wrote:
> 
> Jacob Sparre Andersen <sparre@crs4.it> wrote in message news:<3F7024F8.1000102@crs4.it>...
> > Russ wrote:
> > > Wes Groleau <groleau@freeshell.org> wrote in message news:<RbSdnT6kv7SrdPqiU-KYuQ@gbronline.com>...
> >
> > >>(Russ insists that A += 1 never needs temporaries
> > >>and that A := A + 1 always does.)
> >
> > Which as far as I know is not quite true.
> >
> > > That's not *quite* what I insist. What I insist is that, for
> > > vector/matrix operations, "+" is a *function* that must create a
> > > temporary vector/matrix and return it, and it must be *copied* to the
> > > lhs.
> >
> > I haven't got the LRM right here, but IIRC the compiler just has to
> > generate code that is _equivalent_ to that, i.e. code that gives the
> > same result.
> >
> > And at least for simple cases like matrix operations, it is possible to
> > make the compiler check if a temporary variable is needed or not.  We
> > can thus (at least in theory) leave it to the compiler to check if the
> > temporary variable is needed or not _and_ to consider which of the
> > solutions - with or without the temporary variable - is actually faster
> > on the hardware in question.
> >
> >  > On the other hand, "+=" is a *procedure* that does not
> > > necessarily need any temporaries because it can do its operations "in
> > > place". No temporaries, no extra copying.
> >
> > Yes.  But would you really like to have to mess with writing code that
> > you just as well could leave it to the compiler to generate _if_ it
> > actually would make a efficiency difference for the program?
> >
> > I prefer to leave as much work as possible to the compiler.
> >
> > > Someone else also claimed that a good Ada compiler can make "+" as
> > > efficient as "+=", but I don't see how that could be possible,
> > > considering that I could define "+" and "+=" to do anything I want.
> >
> > Remember that the compiler has access to the code for your "+" function
> > and can look at what it actually does.  This is simply a matter of
> > optimization.  And it is not really on an algorithmic level, so it
> > should be left to the compiler, unless you can prove that it is strictly
> > neccessary to improve the code beyond what you compiler manages.
> >
> > > Nothing in the language requires me to define "+" to actually do
> > > matrix addition. I could define it to write poetry if I wish.
> >
> > Yes.  But then the compiler will just notice that and optimize accordingly.
> >
> > > And let's not forget that a properly defined "+" should be able to
> > > handle sequential addition, such as A = B + C + D + E. No matter how
> > > you slice it, each of those additions needs a temporary.
> >
> > Assuming that we are discussing something nice like simple matrix
> > addition here, I don't see why.  If your hardware has an "add four
> > numbers" operation, you don't need any.  And in general should such an
> > operation be done on a per element basis, which would mean that one
> > would need one (if the operations are done sequetially) or two (if the
> > operations are done in parallel) registers in the CPU for storing
> > intermediate results.  But still: Leave this kind of optimization to the
> > compiler!
> 
> If the compiler can really do all that, then fine. But how many really
> can? Can gnat do that, for example? Or is this just one of those
> "maybe someday in the distant future," "pie in the sky" things?

If it's not done for integers as second(after constant precalc),
it's really strange.GNAT may not have it because of C.

Let's translate a:=a+b  to

mov eax,b
add a,eax
//optional checks:
jno @@noexcept
sub a,eax
 ---raise exception
@@noexcept:

> By the way, even if there is no difference in efficiency, I still
> prefer
> 
>     count += 1
> to
>     count = count + 1
> 
> The latter grates on my minimalist sensibilities like fingernails on a
> chalkboard, and I'll bet I'm not alone on this. As I said before, I'll
> bet the vast majority of C, C++, Java, Perl, and Python programmers
> use the first form. If this low-level deficiency is not corrected in
> Ada0x, that will be a big mistake.

Yes, OPERATION is needed,but it's does not mean that we really need "+="
operator.

I prefer build-in for build-in types
inc(count,1);   {like in many Pascal implementation}
to
count += 1
and to
count := count + 1

,because i really don't want to add new operators "+=","-=","*=",and
"/=" for divide(!!!;-), "\=" for a:=b/a ,and "!=" for factorial.

sin= for sine,sqrt= for squareroot,and juliafractal= for iteration of
julia fractal  . 


"procedure" notation should be used anywhere except where we need
"compatibility" with math notation.
There are no += operator in math,so we don't need operator,just
procedure(build-in for CPU-supported operations).

-- 
http://dmytrylavrov.narod.ru



^ permalink raw reply	[flat|nested] 284+ messages in thread

end of thread, other threads:[~2003-10-27 17:31 UTC | newest]

Thread overview: 284+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-13  9:22 += in ada christoph.grein
2003-10-13 18:38 ` Wes Groleau
2003-10-13 18:59   ` Robert I. Eachus
     [not found] <3F957DAD.2020801@myob.com>
2003-10-21 21:16 ` Alexandre E. Kopilovitch
     [not found] ` <nSp8Qb_KxF@vib.usr.pu.ru>
2003-10-21 21:40   ` sk
  -- strict thread matches above, loose matches on Subject: below --
2003-10-21 12:07 christoph.grein
2003-10-21 13:51 ` Preben Randhol
     [not found] <1066725615.2801.26.camel@localhost.localdomain>
2003-10-21 11:57 ` += in Ada sk
2003-10-21 10:03 += in ada christoph.grein
2003-10-21  8:53 christoph.grein
2003-10-21 13:48 ` Ole-Hjalmar Kristensen
2003-10-22  7:31   ` Russ
2003-10-22  8:02     ` Preben Randhol
2003-10-22 11:41       ` Stephane Richard
2003-10-22 15:17       ` Chad R. Meiners
2003-10-22 15:47         ` Preben Randhol
2003-10-22 15:07     ` Martin Dowie
2003-10-21  8:41 christoph.grein
2003-10-22  5:00 ` Russ
2003-10-21  8:40 += in Ada Marius Amado Alves
2003-10-20 10:42 += in ada christoph.grein
2003-10-21  6:16 ` Russ
2003-10-21  8:25   ` Ole-Hjalmar Kristensen
2003-10-17  8:58 + " Lionel.DRAGHI
2003-10-16 15:55 Lionel.DRAGHI
2003-10-16  8:25 Lionel.DRAGHI
2003-10-16 13:22 ` Hyman Rosen
2003-10-16 14:30   ` Vinzent 'Gadget' Hoefler
2003-10-16 16:13 ` Russ
2003-10-16 21:47   ` Georg Bauhaus
2003-10-17 20:03     ` Russ
2003-10-01  8:54 += " christoph.grein
2003-10-04 12:51 ` Georg Bauhaus
2003-09-25 16:25 Dmytry Lavrov
2003-10-01  8:35 ` Peter Amey
2003-10-01 12:38   ` Frank J. Lhota
2003-10-03 16:22     ` Isaac Gouy
2003-10-06 20:21       ` Russ
2003-10-06 22:47         ` (see below)
2003-10-04 20:17   ` Craig Carey
2003-10-06  7:36     ` Jean-Pierre Rosen
2003-10-06  8:13       ` Lutz Donnerhacke
2003-10-06 22:49       ` Wes Groleau
2003-10-01 14:06 ` Gautier
2003-10-02 12:26   ` Lutz Donnerhacke
2003-10-02 13:03     ` Preben Randhol
2003-10-02 13:36       ` Lutz Donnerhacke
2003-10-02 21:28         ` Keith Thompson
2003-10-07  0:41           ` Russ
2003-10-07 10:05             ` Dmytry Lavrov
2003-10-07 11:56               ` Lutz Donnerhacke
2003-10-07 14:02                 ` (see below)
2003-10-07 22:22                   ` Russ
2003-10-07 23:52                     ` (see below)
2003-10-08  6:08                     ` Preben Randhol
2003-10-09 19:07                       ` Russ
2003-10-09 19:42                         ` Vinzent 'Gadget' Hoefler
     [not found]                           ` <25oh51-uu2.ln1@beastie.ix.netcom.com>
2003-10-10  7:37                             ` Preben Randhol
2003-10-10 18:56                               ` Russ
2003-10-11  8:10                                 ` Preben Randhol
2003-10-11  8:30                                 ` Samuel Tardieu
2003-10-10 12:09                             ` Vinzent 'Gadget' Hoefler
2003-10-10  7:34                         ` Preben Randhol
2003-10-12  0:50                           ` Wes Groleau
2003-10-12  8:24                             ` Preben Randhol
2003-10-12 14:57                               ` Robert I. Eachus
2003-10-12 18:37                                 ` (see below)
2003-10-13  0:42                                   ` Robert I. Eachus
2003-10-13  8:32                                     ` Dmytry Lavrov
2003-10-13 19:18                                       ` Robert I. Eachus
2003-10-13 23:36                                     ` Alexandre E. Kopilovitch
2003-10-14  6:14                                       ` Vinzent 'Gadget' Hoefler
2003-10-14 15:19                                         ` Robert I. Eachus
2003-10-10 20:31                         ` Dmytry Lavrov
2003-10-12  8:23                           ` Dmytry Lavrov
2003-10-14 18:00                           ` Russ
2003-10-14 18:15                             ` Vinzent 'Gadget' Hoefler
2003-10-15 12:50                             ` Georg Bauhaus
2003-10-15 13:25                               ` Hyman Rosen
2003-10-15 14:04                                 ` Vinzent 'Gadget' Hoefler
2003-10-15 15:19                                   ` Hyman Rosen
2003-10-15 18:06                                     ` Vinzent 'Gadget' Hoefler
2003-10-15 18:53                                       ` Hyman Rosen
2003-10-15 19:34                                         ` Vinzent 'Gadget' Hoefler
2003-10-15 23:09                                         ` Alexandre E. Kopilovitch
2003-10-16  5:05                                     ` Russ
2003-10-16 12:07                                       ` Marin David Condic
2003-10-16 13:43                                       ` Hyman Rosen
2003-10-16 23:57                                         ` Robert I. Eachus
2003-10-17  6:22                                           ` Russ
2003-10-17  6:38                                             ` Preben Randhol
2003-10-17 15:48                                             ` Robert I. Eachus
2003-10-19  1:15                                               ` Russ
2003-10-19 16:04                                                 ` Robert I. Eachus
2003-10-19 23:59                                                   ` Russ
2003-10-20  5:24                                                     ` Chad R. Meiners
2003-10-20  5:52                                                       ` Robert I. Eachus
2003-10-20 12:40                                                         ` Marin David Condic
2003-10-20 14:36                                                           ` Preben Randhol
2003-10-21  0:23                                                           ` Wes Groleau
2003-10-21  3:46                                                             ` Hyman Rosen
2003-10-21  6:37                                                           ` Russ
2003-10-21 10:10                                                             ` Marius Amado Alves
2003-10-22  5:23                                                               ` Russ
2003-10-20 14:34                                                         ` Preben Randhol
2003-10-21  7:43                                                         ` Russ
2003-10-21 12:45                                                           ` Lutz Donnerhacke
2003-10-22  7:13                                                             ` Russ
2003-10-22  8:48                                                               ` Vinzent 'Gadget' Hoefler
2003-10-22  9:02                                                               ` Lutz Donnerhacke
2003-10-22 18:21                                                                 ` Russ
2003-10-22 19:10                                                                   ` Vinzent 'Gadget' Hoefler
2003-10-23  5:24                                                                     ` + " Russ
2003-10-22 19:16                                                                   ` += " sk
2003-10-22 19:13                                                                     ` Vinzent 'Gadget' Hoefler
2003-10-23  5:16                                                                     ` Russ
2003-10-23  5:45                                                                       ` sk
2003-10-22 21:22                                                                 ` Russ
2003-10-23  2:23                                                                   ` Wes Groleau
2003-10-22  9:46                                                               ` Preben Randhol
2003-10-22  8:01                                                             ` Russ
2003-10-21 13:38                                                           ` Robert I. Eachus
2003-10-22  7:24                                                             ` Russ
2003-10-22 19:50                                                               ` Robert I. Eachus
2003-10-23  5:34                                                                 ` Russ
2003-10-23 14:14                                                                   ` Robert I. Eachus
2003-10-24  9:15                                                                     ` Peter Hermann
2003-10-24 10:11                                                                       ` Marius Amado Alves
2003-10-26  7:35                                                                         ` Pascal Obry
2003-10-24 11:20                                                                       ` Marin David Condic
2003-10-25  3:14                                                                       ` Russ
2003-10-25  5:07                                                                     ` Russ
2003-10-19 23:19                                                 ` Robert A Duff
2003-10-20  6:16                                                   ` Russ
2003-10-20 14:31                                                     ` Preben Randhol
2003-10-20 17:10                                                     ` Robert I. Eachus
2003-10-20 17:53                                                       ` Hyman Rosen
2003-10-20 19:11                                                         ` Robert I. Eachus
2003-10-20 19:32                                                           ` Hyman Rosen
2003-10-20 23:24                                                           ` Alexandre E. Kopilovitch
2003-10-21  0:40                                                     ` Wes Groleau
2003-10-21  3:45                                                       ` Hyman Rosen
2003-10-21 12:07                                                         ` Preben Randhol
2003-10-21 12:18                                                           ` Marius Amado Alves
2003-10-21 12:45                                                         ` Marin David Condic
2003-10-21 14:46                                                           ` Robert I. Eachus
2003-10-21 17:54                                                             ` Chad R. Meiners
2003-10-21 20:23                                                               ` Robert I. Eachus
2003-10-22  0:18                                                             ` Wes Groleau
2003-10-22  4:07                                                               ` Robert I. Eachus
2003-10-22 20:41                                                                 ` Wes Groleau
2003-10-22 11:56                                                             ` Marin David Condic
2003-10-22  0:14                                                           ` Wes Groleau
2003-10-22  6:56                                                           ` Russ
2003-10-22  7:26                                                             ` Preben Randhol
2003-10-22 11:27                                                             ` Stephane Richard
2003-10-22 20:12                                                               ` Robert I. Eachus
2003-10-22 20:52                                                             ` Wes Groleau
     [not found]                                                         ` <emte61-d03.ln1@beastie.ix.netcom.com>
2003-10-21 12:57                                                           ` Hyman Rosen
2003-10-21  2:43                                                 ` Alexandre E. Kopilovitch
2003-10-21  9:39                                                   ` Stephane Richard
2003-10-19 22:26                                               ` Wes Groleau
2003-10-16  4:31                                   ` + " Russ
2003-10-16  8:57                                     ` += " Vinzent 'Gadget' Hoefler
2003-10-16 20:56                                     ` + " Georg Bauhaus
2003-10-16  4:04                               ` += " Russ
2003-10-16  8:57                                 ` Vinzent 'Gadget' Hoefler
2003-10-17  3:03                                 ` Wes Groleau
2003-10-17 11:46                                   ` Marin David Condic
2003-10-17 11:50                                     ` Preben Randhol
2003-10-17 12:40                                       ` sk
2003-10-17 12:48                                         ` Preben Randhol
2003-10-15 14:16                             ` Dmytry Lavrov
2003-10-16  5:40                               ` Russ
2003-10-16 12:45                                 ` Lutz Donnerhacke
2003-10-16 22:07                                   ` Russ
2003-10-17  9:10                                     ` Lutz Donnerhacke
2003-10-16 13:48                                 ` Dmytry Lavrov
2003-10-16 20:46                                 ` Georg Bauhaus
2003-10-17  2:37                                   ` Russ
2003-10-17  3:01                                     ` sk
2003-10-17  5:42                                       ` Russ
2003-10-17 11:26                                         ` sk
2003-10-17 20:24                                           ` Dmytry Lavrov
2003-10-17  3:52                                     ` Chad R. Meiners
2003-10-17  6:32                                     ` Preben Randhol
2003-10-17  8:48                                     ` Dmytry Lavrov
2003-10-16  1:25                             ` Chad R. Meiners
2003-10-19 23:50                               ` Robert A Duff
2003-10-20  5:52                                 ` Chad R. Meiners
2003-10-07 18:28                 ` Alexander Kopilovitch
2003-10-10 19:56                   ` Dmytry Lavrov
2003-10-14  9:52   ` Stuart Palin
2003-10-16  8:49     ` Russ
2003-10-16 12:46       ` Lutz Donnerhacke
2003-10-16 13:46         ` Hyman Rosen
2003-10-16 15:42           ` Mark A. Biggar
2003-10-16 16:48             ` Hyman Rosen
2003-10-17  0:26               ` Robert I. Eachus
2003-10-17  1:26                 ` Marin David Condic
2003-10-17  3:59                   ` Chad R. Meiners
2003-10-17 11:54                     ` Marin David Condic
2003-10-17 20:35                       ` Russ
2003-10-19 22:22                     ` Wes Groleau
2003-10-19  1:37                   ` Russ
2003-10-19  3:16                     ` sk
2003-10-19 14:10                     ` Preben Randhol
2003-10-19 14:29                     ` Marin David Condic
2003-10-20  2:47                       ` Russ
2003-10-20  3:03                         ` Vinzent 'Gadget' Hoefler
2003-10-20  5:47                         ` Chad R. Meiners
2003-10-20 12:56                           ` Marin David Condic
2003-10-20  6:19                         ` Ross Higson
2003-10-21 17:30                           ` Russ
2003-10-21 18:40                             ` sk
2003-10-22  7:35                               ` Russ
2003-10-21 23:28                             ` Ross Higson
2003-10-21 23:55                               ` Jerry Petrey
2003-10-22  7:35                             ` Preben Randhol
2003-10-20 16:30                         ` Martin Dowie
2003-10-20 17:05                           ` Hyman Rosen
2003-10-20 17:46                             ` Martin Dowie
2003-10-20 18:01                               ` Hyman Rosen
2003-10-21  0:57                           ` Wes Groleau
2003-10-21  1:46                             ` Stephane Richard
2003-10-21  3:38                             ` Hyman Rosen
2003-10-21  8:49                             ` Martin Dowie
2003-10-21  9:04                             ` Marius Amado Alves
2003-10-21 13:00                               ` Marin David Condic
2003-10-21 13:37                                 ` Marius Amado Alves
2003-10-21 14:50                                   ` Robert I. Eachus
2003-10-21 15:01                                     ` Stephane Richard
2003-10-21 15:03                                     ` Stephane Richard
2003-10-21 15:07                                     ` Vinzent 'Gadget' Hoefler
2003-10-21 15:13                                       ` Stephane Richard
2003-10-21 15:58                                       ` (see below)
2003-10-21 15:24                                     ` Dmitry A. Kazakov
2003-10-21 16:44                                     ` Marius Amado Alves
2003-10-22  7:32                                     ` Preben Randhol
2003-10-22  8:48                                       ` Vinzent 'Gadget' Hoefler
2003-10-22 20:24                                         ` Robert I. Eachus
2003-10-27 12:01                                           ` Vinzent 'Gadget' Hoefler
2003-10-27 17:31                                             ` Robert I. Eachus
2003-10-21 13:01                               ` Hyman Rosen
2003-10-21  4:49                           ` sk
2003-10-21 21:19                             ` Simon Wright
2003-10-22  4:37                               ` sk
2003-10-19 14:40                     ` chris
2003-10-19 15:12                     ` Stephane Richard
2003-10-19 16:26                     ` Robert I. Eachus
2003-10-20  2:02                       ` Hyman Rosen
2003-10-20  6:12                         ` Robert I. Eachus
2003-10-20 12:50                           ` Hyman Rosen
2003-10-20 17:53                             ` Robert I. Eachus
2003-10-20 18:03                               ` Hyman Rosen
2003-10-21  1:35                                 ` Marin David Condic
2003-10-21  3:05                             ` Alexandre E. Kopilovitch
2003-10-21  3:30                               ` Hyman Rosen
2003-10-21 13:22                                 ` Alexandre E. Kopilovitch
2003-10-21 15:02                                   ` Hyman Rosen
2003-10-19 21:09                     ` Dmytry Lavrov
2003-10-17 14:15                 ` Hyman Rosen
2003-10-17 14:40                   ` Lutz Donnerhacke
2003-10-17 15:40                     ` Hyman Rosen
2003-10-17 15:49                       ` Lutz Donnerhacke
2003-10-17 20:43                         ` Hyman Rosen
2003-10-17 16:02                       ` Preben Randhol
2003-10-17 16:06                         ` Preben Randhol
2003-10-19 22:36                         ` Wes Groleau
2003-10-18  0:08                   ` Russ
2003-10-18 10:31                     ` Georg Bauhaus
2003-10-20  5:35                   ` Chad R. Meiners
2003-10-20 13:00                     ` Hyman Rosen
2003-10-20 14:27                       ` (see below)
2003-10-20 15:58                         ` Chad R. Meiners
2003-10-16 21:53             ` Russ
2003-10-17  8:20           ` Lutz Donnerhacke
2003-10-17 14:21             ` Hyman Rosen
2003-10-17 14:42               ` Lutz Donnerhacke
2003-10-17 15:46                 ` Hyman Rosen
2003-10-17 15:35               ` Larry Kilgallen
2003-10-17 16:02               ` Robert I. Eachus
2003-10-17 17:20                 ` Chad R. Meiners
2003-10-16  8:57     ` Vinzent 'Gadget' Hoefler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox