comp.lang.ada
 help / color / mirror / Atom feed
* Re: ADA and Pascal SUCK, C,C++, and Java are the only languages you need!!
  1997-11-11  0:00                 ` Dr E. Buxbaum
@ 1997-11-12  0:00 John Stevens
  1997-10-28  0:00 ` ADA SUCKS, C/C++/JAVA RULES!!!! John Black
                   ` (2 more replies)
  1 sibling, 3 replies; 595+ messages in thread
From: John Stevens @ 1997-11-12  0:00 UTC (permalink / raw)



On Tue, 11 Nov 1997 11:42:42 -0800, Dr E. Buxbaum <EB15@le.ac.uk> wrote:
>John Stevens wrote:
>> >If you have an Ada compiler
>> 
>> That *IF*, being the gotcha.
>> Has anybody ever successfully used Ada on a Linux box?
>
>I have not worked with it personally, but there is the Gnu Ada compiler
>(Gnat). So in theory you should be able to run Ada on any system which
>is supported by Gnu software, including Linux.

But as suggested, I've never gotten it to work under Linux.  If anybody
has, is the result "true" Ada (does the compiler compile any legal Ada
program) and if so, to what standard does it comply?

John S.




^ permalink raw reply	[flat|nested] 595+ messages in thread
* Re: ADA and Pascal SUCK, C,C++, and Java are the only languages you need!!
@ 1997-11-03  0:00 Marin David Condic, 561.796.8997, M/S 731-96
  0 siblings, 0 replies; 595+ messages in thread
From: Marin David Condic, 561.796.8997, M/S 731-96 @ 1997-11-03  0:00 UTC (permalink / raw)



John Black <nospam@NOSPAM.AMERICAN.EDU> writes:
>ADA and Pascal are two of the most useless inventions Man has ever
>wasted space on this planet with.  These languages are hard to learn,
>have zero applications, and people who only know these languages can
>only find jobs at Taco Bell!  Smart programmers spend their time
>learning only C, C++, and Java in that order.
>
    Does anybody remember a certain Right Reverend who used to lurk
    about this newsgroup from time to time. Is it possible that he's
    returned under a different guise? I guess I'll find out if my boss
    starts getting calls about what an asshole I am and there are
    public threats of lawsuits.

    Or maybe Mr. Black is just some graduate student's artificial
    intelligence experiment? So far, I'd only give it a grade of C-
    (C-- ?) since it hasn't exhibited much "intelligence" - artificial
    or otherwise.

Marin David Condic, Senior Computer Engineer     Voice:     561.796.8997
Pratt & Whitney GESP, M/S 731-96, P.O.B. 109600  Fax:       561.796.4669
West Palm Beach, FL, 33410-9600                  Internet:  CONDICMA@PWFL.COM
===============================================================================
    "Having an open mind is nothing. The object of opening the mind, as
    of opening the mouth, is to shut it again on something solid."
        --  G.K. Chesterton
===============================================================================




^ permalink raw reply	[flat|nested] 595+ messages in thread
* Re: ADA and Pascal SUCK, C,C++, and Java are the only languages you need!!
@ 1997-10-30  0:00 Marin David Condic, 561.796.8997, M/S 731-96
  0 siblings, 0 replies; 595+ messages in thread
From: Marin David Condic, 561.796.8997, M/S 731-96 @ 1997-10-30  0:00 UTC (permalink / raw)



Mike Copeland <mrcope@PRIMENET.COM> writes:
>  1. The portability issue.  C/C++ are basically portable across
>platforms, and this is an extremely important issue to corporate
>thinking.  It's more important to the executives/decision makers of most
>companies that their key applications can be moved to other vendor's
>hardware when financial issues force such switches, than to have
>implementation languages which their programmers like and find easy to
>learn.
    This seems to be misinformation. C was originally invented as a
    systems programming language and for years had no standard at all.
    Implementations varied quite a bit and many of the things that
    were legal to do (and frequently done) were notoriously
    non-portable. From practical experience in porting C programs
    (albeit, not in the last couple of years) I can attest to the fact
    that it is far more work than porting an equivalent Ada program.
    If anybody considers C (and by extension C++) to be "portable"
    then they ought to be extremely impressed with Ada since it is
    much more rigorous in its language definition and designed with
    portability as one of its major objectives.

>  2. Pascal and Ada (which is often called a highly enriched Pascal)
>weren't designed as application development vehicles - whereas C/C++
>were.  Pascal was invented as a teaching tool for structured and module
<snip>
    As stated above. C was developed as a systems programming language
    which has dramatically different requirements from an applications
    programming language. Arguably, C++ might have been oriented more
    towards applications, but it's roots in C means its dragging along
    many characteristics aimed at systems programming.

>   Ada, OTOH, was designed for implementation of secure and fail-safe
>systems for the Government.  It was based on Pascal concepts (very strong
>typing, modularity, consistency, etc.), but was taken much farther than
>was useful to the general world.  Learning Ada should be considered an
>educational experience, at best, because no one uses it.  And I agree
>it's very hard to learn and work with, even coming from a Pascal
>background.  Nonetheless, Ada provides some interesting and useful things
>for any serious programmer to think about and use in his/her work.
>
    I'd beg to differ on the "no one uses it" part of this statement.
    While it seems obvious that other languages may be more widely
    used than Ada, it is not as if there is no Ada programming going
    on in the real world. It is a non-trivial market and I don't
    expect it will disappear any time soon.

    Hard to learn? Sure - there's features in the language that deal
    with difficult concepts, such as multitasking/concurrency,
    numerical analysis, et cetera. When you deal with difficult
    concepts, you're going to find it difficult to learn. But I teach
    an "Intro to Ada" in-house course aimed at engineers with a
    familarity with other languages and it's not hard at all getting
    them up to speed with a Pascal-like subset of the features.

    The only area that gets difficult is teaching the use of the
    generic I/O packages. (Forces you to discuss generic instantiation
    early on and this always seems to be a difficult concept to get
    across until some experience with the language is gained.) Text_IO
    can be turgid, but by sticking to Put_Line and 'Image (EVERYTHING
    ought to have a 'Image attribute!!!) you can get folks rolling on
    basic terminal I/O without any more complication than trying to
    teach the "printf" calls (and all its variants) in C.

    The thing that bothers me about the "Hard To Learn" falacy is that
    when you dig into it a little you tend to discover that it is a
    variation of "It's not what I already know, so it's 'Hard To
    Learn'" or "I'm used to a language that has no advanced features
    so I find it 'Hard To Learn' a language that does." You can learn
    the Pascal-like subset of Ada with no more difficulty than you
    would experience learning Pascal - and all learning requires
    effort and therefore, by definition is not going to be easy. (If
    it were easy, everybody would do it.) When you've mastered the
    Pascal-like subset, you can gradually add on features just like
    you learned the more advanced, arcane, dark features of C. And no
    language design is *ever* going to make concepts like concurrency
    "simple" so you're going to have to bite the bullet and learn the
    theory behind the advanced features before the features themselves
    are going to make sense.

    Language wars are futile, like most wars are, so we shouldn't
    ought to start one. I don't mean to give the impression that
    there's something wrong with preferring one language over another.
    There's nothing wrong with saying "This is the language I know and
    am comfortable with, so that's what I use to get my job done." But
    in criticizing a language, there needs to be some emphasis on
    avoiding vague generalities or subjective judgments.

    MDC

Marin David Condic, Senior Computer Engineer     Voice:     561.796.8997
Pratt & Whitney GESP, M/S 731-96, P.O.B. 109600  Fax:       561.796.4669
West Palm Beach, FL, 33410-9600                  Internet:  CONDICMA@PWFL.COM
===============================================================================
    "Having an open mind is nothing. The object of opening the mind, as
    of opening the mouth, is to shut it again on something solid."
        --  G.K. Chesterton
===============================================================================




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

end of thread, other threads:[~1997-12-17  0:00 UTC | newest]

Thread overview: 595+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-11-12  0:00 ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! John Stevens
1997-10-28  0:00 ` ADA SUCKS, C/C++/JAVA RULES!!!! John Black
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` John Bode
1997-11-03  0:00     ` vonhend
1997-10-28  0:00   ` Adam Beneschan
1997-10-30  0:00     ` Shmuel (Seymour J.) Metz
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00     ` Steve Ropa
1997-10-28  0:00       ` Charles R. Lyttle
1997-10-28  0:00       ` Current Ada strengths - was " Robert S. White
1997-10-29  0:00         ` Steve Ropa
1997-10-30  0:00           ` Bob Horvath
     [not found]             ` <34591453.0@news.eznet.net>
1997-10-30  0:00               ` Bob Horvath
1997-10-31  0:00                 ` David A. Frantz
1997-10-31  0:00                 ` Steve Ropa
1997-10-31  0:00                 ` Kenneth W. Sodemann
1997-10-30  0:00             ` Steve Ropa
1997-10-30  0:00             ` Larry Kilgallen
1997-10-30  0:00               ` Kaz Kylheku
1997-10-30  0:00             ` Charles Hixson
1997-10-30  0:00             ` Derek A Benner
1997-10-31  0:00             ` Robert S. White
1997-10-31  0:00               ` Steve Ropa
1997-10-31  0:00               ` Shmuel (Seymour J.) Metz
1997-10-30  0:00       ` ADA work, C/C++/JAVA crashes!!!! Shmuel (Seymour J.) Metz
1997-10-30  0:00       ` ADA SUCKS, C/C++/JAVA RULES!!!! Kenneth W. Sodemann
1997-10-30  0:00     ` Kenneth W. Sodemann
1997-12-04  0:00     ` tbb03ar
1997-10-28  0:00   ` Shayne Flint
1997-10-28  0:00     ` Dennis Weldy
1997-10-29  0:00     ` Alan E & Carmel J Brain
1997-10-29  0:00       ` CodeRed
1997-10-30  0:00         ` Alan Brain
1997-10-28  0:00   ` John Black
1997-10-28  0:00     ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! John Black
1997-10-28  0:00       ` David A. Frantz
1997-10-29  0:00         ` Shombe Kroll
1997-10-29  0:00           ` John Black
1997-11-03  0:00             ` Olof Oberg
1997-10-29  0:00           ` Mike Copeland
1997-10-29  0:00           ` Nat Pryce
1997-10-29  0:00           ` John Bode
1997-10-30  0:00             ` Kaz Kylheku
1997-11-01  0:00             ` Gary A. Wiltshire
1997-10-31  0:00           ` Richard A. O'Keefe
1997-10-29  0:00         ` John Black
1997-10-29  0:00           ` Mike Copeland
1997-10-29  0:00             ` Kaz Kylheku
1997-10-30  0:00             ` ADA and Pascal work, C,C++, and Java are the only lheadaches " Shmuel (Seymour J.) Metz
1997-11-06  0:00               ` John Stevens
1997-11-06  0:00                 ` Samuel Tardieu
1997-11-07  0:00                   ` John Stevens
1997-11-06  0:00                     ` David  Weller
1997-11-06  0:00                     ` Charles R. Lyttle
1997-11-07  0:00                       ` John Stevens
1997-11-08  0:00                         ` Charles R. Lyttle
1997-11-08  0:00                           ` Mark Wilden
1997-11-08  0:00                         ` ADA ,Pascal, and Basic ROCK! C,C++, and Java are nothing " John Rickard
1997-10-30  0:00             ` ADA SUCKS, C/C++/JAVA RULES!!!! John Gluth
1997-10-31  0:00               ` Bernard J. Girardot
1997-11-04  0:00               ` Michael Stark
1997-10-30  0:00             ` Yet another stupid language war (was: ... the only languages you need!!) W. Wesley Groleau x4923
1997-10-30  0:00               ` Al Christians
     [not found]                 ` <01bce587$2efe61a0$8691440c@worldnet>
1997-10-31  0:00                   ` Jerry Sams
1997-10-31  0:00                     ` John Rickard
1997-11-02  0:00                       ` Jerry Sams
1997-10-31  0:00                     ` Shmuel (Seymour J.) Metz
1997-11-02  0:00                       ` Jerry Sams
1997-11-01  0:00                     ` Yet another stupid language war (was: ... the only langu Jerry van Dijk
1997-12-05  0:00                     ` Yet another stupid language war (was: ... the only languages you need!!) baddog
1997-10-30  0:00               ` Peter Seebach
1997-10-30  0:00                 ` Bob Horvath
1997-10-31  0:00                   ` Peter Seebach
1997-10-31  0:00                     ` Pat Rogers
1997-10-31  0:00                       ` Peter Seebach
1997-11-01  0:00                       ` Dr John Stockton
1997-11-02  0:00                         ` Simon Wright
1997-11-02  0:00                           ` Robert Dewar
1997-11-03  0:00                             ` Simon Wright
1997-11-03  0:00                         ` Richard A. O'Keefe
1997-10-31  0:00                     ` Bob Horvath
1997-11-01  0:00                       ` Peter Seebach
1997-10-31  0:00                   ` Ole-Hjalmar Kristensen FOU.TD/DELAB
1997-10-31  0:00                     ` Bob Horvath
1997-10-31  0:00                       ` Ed Falis
1997-10-31  0:00                     ` Shmuel (Seymour J.) Metz
1997-10-31  0:00                   ` Shmuel (Seymour J.) Metz
1997-11-04  0:00                   ` Christopher Eltschka
1997-11-04  0:00                   ` How big is an int? (was: Yet another stupid language war (was: ... the only languages you need!!)) Ted Lyngmo
1997-11-04  0:00                     ` Kaz Kylheku
1997-11-05  0:00                       ` nospam
1997-11-05  0:00                         ` Lawrence Kirby
1997-11-06  0:00                           ` R S Haigh
1997-11-06  0:00                           ` nospam
1997-11-05  0:00                         ` Kaz Kylheku
1997-11-06  0:00                           ` James S. Rogers
1997-11-06  0:00                             ` Kaz Kylheku
1997-11-05  0:00                         ` Peter Seebach
1997-11-05  0:00                           ` Kaz Kylheku
1997-11-06  0:00                             ` Lawrence Kirby
1997-11-06  0:00                               ` Kaz Kylheku
1997-11-07  0:00                                 ` Dan Pop
1997-11-09  0:00                                   ` Lawrence Kirby
1997-11-10  0:00                                     ` Dan Pop
1997-11-13  0:00                                       ` Lawrence Kirby
1997-11-13  0:00                                         ` Lawrence Kirby
1997-11-13  0:00                                           ` Boyd Roberts
1997-11-14  0:00                                             ` Jos De Laender
1997-11-15  0:00                                               ` Christopher Green
1997-11-19  0:00                                             ` Lawrence Kirby
1997-11-19  0:00                                               ` Alan E & Carmel J Brain
1997-11-19  0:00                                                 ` Shmuel (Seymour J.) Metz
1997-11-24  0:00                                                   ` Alan E & Carmel J Brain
1997-11-19  0:00                                                 ` Kaz Kylheku
1997-11-20  0:00                                                   ` Alan E & Carmel J Brain
1997-11-20  0:00                                                     ` Craig Franck
1997-11-21  0:00                                                       ` Alan E & Carmel J Brain
1997-11-21  0:00                                                         ` Kaz Kylheku
1997-11-23  0:00                                                           ` Alan E & Carmel J Brain
1997-11-21  0:00                                                         ` Robert Dewar
1997-11-21  0:00                                                           ` Ole-Hjalmar Kristensen FOU.TD/DELAB
1997-11-22  0:00                                                             ` Robert Dewar
1997-11-24  0:00                                                               ` Shmuel (Seymour J.) Metz
1997-11-21  0:00                                                           ` Jon S Anthony
1997-11-24  0:00                                                           ` Richard A. O'Keefe
1997-11-27  0:00                                                         ` Rakesh Malhotra
1997-11-27  0:00                                                         ` Rakesh Malhotra
1997-11-24  0:00                                                       ` Richard A. O'Keefe
1997-11-13  0:00                                         ` Dan Pop
1997-11-16  0:00                                           ` Lawrence Kirby
     [not found]                                             ` <danpop.879781536@news.cern.ch>
1997-11-19  0:00                                               ` Lawrence Kirby
1997-11-19  0:00                                                 ` Dan Pop
1997-11-06  0:00                             ` Peter Seebach
1997-11-06  0:00                               ` Kaz Kylheku
1997-11-06  0:00                                 ` Peter Seebach
1997-11-06  0:00                             ` Dan Pop
1997-11-07  0:00                               ` Mike McCarty
1997-11-07  0:00                                 ` Dan Pop
1997-11-07  0:00                                 ` Peter Seebach
1997-11-06  0:00                             ` Morris M. Keesan
1997-11-09  0:00                               ` Lawrence Kirby
1997-11-10  0:00                                 ` Dan Pop
1997-11-06  0:00                         ` Richard Kenner
1997-11-07  0:00                           ` Dan Pop
1997-11-07  0:00                             ` Paul F. Pearson
1997-11-08  0:00                               ` Dan Pop
     [not found]                               ` <danpop..879030933@news.cern.ch>
1997-11-09  0:00                                 ` Lawrence Kirby
1997-11-14  0:00                                   ` Morris M. Keesan
1997-11-07  0:00                         ` Boyd Roberts
1997-11-07  0:00                         ` Ole-Hjalmar Kristensen FOU.TD/DELAB
1997-11-04  0:00                     ` How big is an int? Richard Stamp
1997-11-04  0:00                     ` How big is an int? (was: Yet another stupid language war (was: ... the only languages you need!!)) Daniel Anderson
1997-11-04  0:00                       ` Lawrence Kirby
     [not found]                       ` <34666a87.96408197@pncnt.tecnomen.ie>
1997-11-04  0:00                         ` Peter Mayne
     [not found]                           ` <346a4ce9.154362161@pncnt.tecnomen.ie>
1997-11-05  0:00                             ` Ulric Eriksson
1997-11-05  0:00                           ` nospam
1997-11-05  0:00                             ` Ron Natalie
1997-11-05  0:00                           ` Dan Pop
1997-11-06  0:00                             ` Boyd Roberts
1997-11-09  0:00                               ` Peter Mayne
1997-11-06  0:00                             ` Peter Mayne
1997-11-05  0:00                         ` Corey Minyard
1997-11-04  0:00                       ` Marcelo Meira
1997-11-04  0:00                         ` Ron Natalie
1997-10-31  0:00                 ` Yet another stupid language war (was: ... the only languages you need!!) Timo Salmi
1997-10-31  0:00                 ` Dr E. Buxbaum
1997-10-31  0:00                   ` Peter Seebach
1997-11-01  0:00               ` Richard Curzon
1997-10-31  0:00                 ` Bob Horvath
1997-11-01  0:00                 ` Russ
1997-11-01  0:00                 ` Ken Deboy
1997-11-01  0:00                 ` Kaz Kylheku
1997-11-01  0:00                   ` Craig Franck
1997-11-03  0:00                 ` John G. Volan
1997-11-04  0:00                   ` Phosphor
1997-10-31  0:00             ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Alan E & Carmel J Brain
1997-10-30  0:00               ` Jon S Anthony
1997-10-31  0:00                 ` Craig Franck
1997-10-31  0:00                   ` Jon S Anthony
1997-11-01  0:00                     ` Lawrence Kirby
1997-11-01  0:00                     ` Porting Experiences (was Ada and Pascal etc ) Alan E & Carmel J Brain
1997-11-01  0:00                       ` Craig Franck
1997-11-03  0:00                         ` Jon S Anthony
1997-11-03  0:00                         ` Alan E & Carmel J Brain
1997-11-03  0:00                         ` Shmuel (Seymour J.) Metz
1997-11-03  0:00                           ` Kaz Kylheku
1997-11-04  0:00                             ` Shmuel (Seymour J.) Metz
1997-11-04  0:00                               ` Kaz Kylheku
1997-11-05  0:00                                 ` Shmuel (Seymour J.) Metz
1997-11-05  0:00                                 ` Boyd Roberts
1997-11-05  0:00                               ` Craig Franck
1997-11-05  0:00                                 ` Shmuel (Seymour J.) Metz
1997-11-06  0:00                                   ` Lawrence Kirby
1997-11-07  0:00                                     ` Boyd Roberts
1997-11-07  0:00                                       ` Shmuel (Seymour J.) Metz
1997-11-07  0:00                                         ` Peter Seebach
1997-11-07  0:00                                   ` Craig Franck
1997-11-07  0:00                                     ` Shmuel (Seymour J.) Metz
1997-11-08  0:00                                       ` Craig Franck
1997-11-08  0:00                                         ` Kaz Kylheku
1997-11-08  0:00                                           ` Vesa Karvonen
1997-11-10  0:00                                         ` Shmuel (Seymour J.) Metz
1997-11-11  0:00                                           ` Craig Franck
1997-11-12  0:00                                             ` Shmuel (Seymour J.) Metz
1997-11-14  0:00                                               ` Craig Franck
1997-11-24  0:00                                               ` Ralph Silverman
1997-11-09  0:00                                       ` Dennis Weldy
1997-11-10  0:00                                         ` Shmuel (Seymour J.) Metz
1997-11-10  0:00                                           ` Dennis Weldy
1997-11-12  0:00                                             ` Shmuel (Seymour J.) Metz
1997-11-14  0:00                                               ` Robert Munck
1997-11-04  0:00                             ` Pat Rogers
1997-11-04  0:00                               ` Kaz Kylheku
1997-11-05  0:00                             ` Samuel T. Harris
1997-11-05  0:00                               ` Kaz Kylheku
1997-11-06  0:00                                 ` Alan E & Carmel J Brain
1997-11-06  0:00                                   ` Kaz Kylheku
1997-11-06  0:00                                   ` Paul Campbell
1997-11-07  0:00                                 ` Samuel T. Harris
1997-11-13  0:00                               ` Steve Summit
1997-11-13  0:00                                 ` Samuel T. Harris
1997-11-04  0:00                           ` Lawrence Kirby
1997-11-04  0:00                             ` Shmuel (Seymour J.) Metz
1997-11-04  0:00                               ` Kaz Kylheku
1997-11-05  0:00                                 ` Chris Brand
1997-11-05  0:00                                   ` Dann Corbit
1997-11-05  0:00                                   ` Lawrence Kirby
1997-11-05  0:00                                   ` Kaz Kylheku
1997-11-05  0:00                                   ` Kaz Kylheku
1997-11-07  0:00                                 ` Boyd Roberts
1997-11-05  0:00                               ` James Youngman
1997-11-05  0:00                               ` Steve Summit
1997-11-05  0:00                               ` Lawrence Kirby
1997-11-05  0:00                               ` Craig Franck
     [not found]                           ` <63m3pt$t2d@bgtnsc02.worldnet.att.net>
1997-11-04  0:00                             ` Shmuel (Seymour J.) Metz
1997-11-05  0:00                               ` Craig Franck
1997-11-01  0:00                       ` Jon S Anthony
1997-10-31  0:00                   ` Porting (was ADA and Pascal etc) Alan E & Carmel J Brain
1997-10-31  0:00                     ` Kaz Kylheku
1997-10-31  0:00                       ` Shmuel (Seymour J.) Metz
1997-11-02  0:00                       ` Lawrence Kirby
1997-11-03  0:00                         ` Simon Wright
1997-11-04  0:00                           ` Peter Seebach
1997-11-09  0:00                             ` Simon Wright
1997-11-03  0:00                         ` Jon S Anthony
1997-11-04  0:00                         ` Mixing declarations and statements (Re: Porting (was ADA and Pascal etc)) �amonn McManus
1997-11-04  0:00                           ` Peter Seebach
1997-11-04  0:00                             ` s/w manual Nameir Ismeil
1997-11-04  0:00                             ` Mixing declarations and statements (Re: Porting (was ADA and Pascal etc)) Charles Hixson
1997-11-04  0:00                               ` Kaz Kylheku
1997-11-05  0:00                               ` Peter Seebach
1997-11-05  0:00                             ` �amonn McManus
1997-10-31  0:00                     ` Porting (was ADA and Pascal etc) Ole-Hjalmar Kristensen FOU.TD/DELAB
1997-11-01  0:00                       ` Alan E & Carmel J Brain
1997-10-31  0:00                     ` Peter Seebach
1997-10-31  0:00                       ` Matt Austern
1997-10-31  0:00                         ` Peter Seebach
1997-10-31  0:00                         ` Jon S Anthony
1997-11-01  0:00                         ` Alan E & Carmel J Brain
1997-11-01  0:00                         ` Kaz Kylheku
1997-11-01  0:00                       ` Alan E & Carmel J Brain
1997-11-01  0:00                         ` Peter Seebach
1997-11-04  0:00                 ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Rud Merriam
1997-10-30  0:00               ` Kaz Kylheku
1997-10-31  0:00                 ` Richard A. O'Keefe
1997-11-03  0:00                   ` Kaz Kylheku
1997-11-01  0:00                 ` Portability: C, C++, Ada Alan E & Carmel J Brain
1997-11-01  0:00                   ` Peter Seebach
1997-11-05  0:00                 ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! John Stevens
1997-11-05  0:00               ` John Stevens
1997-11-06  0:00                 ` Kaz Kylheku
1997-11-07  0:00                   ` Robert Dewar
1997-11-07  0:00                     ` Kaz Kylheku
1997-11-07  0:00                 ` Larry Elmore
1997-11-11  0:00                 ` Dr E. Buxbaum
1997-11-11  0:00                   ` Russ Lyttle
1997-11-12  0:00                   ` Marc Wachowitz
1997-10-29  0:00           ` ADA SUCKS, C/C++/JAVA RULES!!!! Dale Stanbrough
1997-10-29  0:00             ` Wasted words W. Wesley Groleau x4923
1997-10-30  0:00           ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Jon S Anthony
1997-10-31  0:00           ` Kaz Kylheku
1997-10-31  0:00             ` Steve Ropa
1997-10-29  0:00       ` Kaz Kylheku
1997-10-30  0:00         ` John Rickard
1997-10-29  0:00       ` Xu Yifeng
1997-10-30  0:00         ` Scott Baierl
1997-11-06  0:00           ` John Stevens
1997-11-06  0:00             ` Kaz Kylheku
1997-11-06  0:00             ` William & Melissa Thornton
     [not found]         ` <347067B8.46@lysator.liu.se>
1997-11-18  0:00           ` English SUCKS, Chinese is the only language " Chieh Cheng
1997-11-19  0:00             ` Shmuel (Seymour J.) Metz
1997-11-24  0:00               ` Richard A. O'Keefe
1997-11-18  0:00           ` Dr E. Buxbaum
1997-11-19  0:00             ` Shmuel (Seymour J.) Metz
1997-11-19  0:00               ` Kaz Kylheku
1997-11-19  0:00             ` Matt Corey
1997-11-19  0:00               ` Shmuel (Seymour J.) Metz
1997-11-19  0:00                 ` Kaz Kylheku
1997-11-20  0:00                   ` Mike Smith
1997-11-21  0:00                     ` David Weller
     [not found]                   ` <3474B3E4.67FA@gsg.eds.com>
1997-11-21  0:00                     ` Dennis Weldy
1997-11-24  0:00                       ` Shmuel (Seymour J.) Metz
1997-11-25  0:00                         ` Dennis Weldy
1997-11-25  0:00                         ` Peter Seebach
1997-11-25  0:00                 ` Martin M Dowie
     [not found]           ` <64qllr$c45@mtinsc03.worldnet.att.net>
1997-11-18  0:00             ` Davide Bionda
1997-11-18  0:00               ` Timo Salmi
1997-11-18  0:00               ` John Rickard
1997-11-18  0:00                 ` Jean-Sebastien Payette
1997-11-18  0:00                   ` Dennis Weldy
1997-11-18  0:00                     ` Jean-Sebastien Payette
1997-11-19  0:00                       ` Kaz Kylheku
1997-11-19  0:00                       ` Dennis Weldy
1997-11-19  0:00                     ` Chuck Adams
1997-11-19  0:00                       ` J. W. Rider
1997-11-24  0:00                         ` Richard A. O'Keefe
1997-11-19  0:00                     ` John Rickard
1997-11-19  0:00                       ` Jean-Sebastien Payette
1997-11-19  0:00                       ` Davide Bionda
1997-11-19  0:00                         ` John Rickard
1997-11-19  0:00                           ` Mike Smith
1997-11-19  0:00                             ` Your english sucks, mine is better John Rickard
1997-11-19  0:00                               ` Larry Elmore
     [not found]                               ` <01bcf537$c96b7380$0200000a@kld_mcs>
1997-11-20  0:00                                 ` system
1997-11-20  0:00                                 ` John Rickard
     [not found]                                   ` <652aes$63a$1@news01.micron.net>
1997-11-20  0:00                                     ` Dennis Weldy
1997-11-23  0:00                               ` Andrew Koenig
1997-11-23  0:00                                 ` Spaceman Spiff!
1997-11-23  0:00                                   ` Andrew Koenig
1997-11-23  0:00                                 ` Robert Dewar
1997-11-23  0:00                                   ` billg
1997-11-23  0:00                                     ` Richard Kenner
1997-11-23  0:00                                       ` billg
1997-11-24  0:00                                         ` Dennis Weldy
1997-11-24  0:00                                           ` billg
1997-11-24  0:00                                             ` Rob Eamon
1997-11-24  0:00                                               ` Kaz Kylheku
1997-11-24  0:00                                               ` billg
1997-11-24  0:00                                         ` Me
1997-11-24  0:00                                           ` Mark Wilden
1997-11-24  0:00                                           ` Matt Corey
1997-11-24  0:00                                           ` Timo Salmi
1997-11-24  0:00                                           ` Rob Eamon
1997-11-25  0:00                                           ` Leon Jones
1997-11-24  0:00                                             ` Larry Elmore
1997-11-25  0:00                                               ` billg
1997-11-29  0:00                                                 ` Larry Elmore
1997-11-29  0:00                                                   ` billg
     [not found]                                                     ` <65s1u8$8kj@netra.montana.edu>
1997-11-30  0:00                                                       ` Larry Elmore
1997-12-01  0:00                                                       ` billg
1997-11-25  0:00                                               ` Larry Elmore
1997-11-25  0:00                                                 ` billg
1997-11-26  0:00                                                   ` Craig Franck
1997-11-26  0:00                                                     ` billg
1997-11-24  0:00                                         ` Peter Seebach
1997-11-24  0:00                                         ` Larry Elmore
1997-11-25  0:00                                           ` billg
1997-11-29  0:00                                             ` Larry Elmore
1997-12-01  0:00                                               ` billg
1997-11-24  0:00                                         ` Richard Kenner
1997-11-24  0:00                                           ` Mark Wilden
1997-11-24  0:00                                             ` billg
1997-11-24  0:00                                             ` Matthew S. Whiting
1997-11-24  0:00                                           ` billg
1997-11-24  0:00                                             ` Larry Elmore
1997-11-24  0:00                                               ` billg
1997-11-24  0:00                                                 ` Larry Elmore
1997-11-25  0:00                                                   ` billg
1997-11-25  0:00                                               ` michael
1997-11-24  0:00                                                 ` billg
1997-11-27  0:00                                                   ` Paul Holden
1997-11-25  0:00                                             ` Craig Franck
1997-11-25  0:00                                             ` Dennis Weldy
1997-11-26  0:00                                               ` billg
1997-11-27  0:00                                                 ` Boyd Roberts
1997-11-28  0:00                                                   ` billg
1997-11-28  0:00                                                     ` Steven Read
1997-11-24  0:00                                     ` Peter Seebach
1997-11-24  0:00                                       ` Lawrence Kirby
1997-11-24  0:00                                     ` Andrew Koenig
1997-11-24  0:00                                       ` billg
1997-11-25  0:00                                         ` Dennis Weldy
1997-11-26  0:00                                           ` billg
1997-11-26  0:00                                             ` Peter Seebach
1997-11-28  0:00                                               ` billg
1997-11-28  0:00                                                 ` Peter Seebach
1997-12-01  0:00                                                   ` billg
1997-11-29  0:00                                                 ` Larry Elmore
1997-11-29  0:00                                                   ` billg
1997-11-30  0:00                                                     ` Larry Elmore
1997-12-01  0:00                                                       ` billg
1997-12-01  0:00                                                         ` billg
1997-12-01  0:00                                                     ` Billy Chambless
1997-12-02  0:00                                                     ` Wes Groleau
1997-12-02  0:00                                                       ` wjanik
1997-12-01  0:00                                                   ` billg
1997-11-26  0:00                                             ` Mark Wilden
1997-11-27  0:00                                               ` Craig Franck
1997-11-27  0:00                                                 ` Mark Wilden
1997-11-28  0:00                                                   ` Jobs (was: " Billy Chambless
1997-11-29  0:00                                                     ` Amy Williams
1997-12-02  0:00                                                 ` Employment ethics (was: Your english sucks, ....) Wes Groleau
1997-12-02  0:00                                                   ` Mark Wilden
1997-11-27  0:00                                               ` Your english sucks, mine is better Billy Chambless
1997-11-27  0:00                                                 ` Mark Wilden
1997-11-27  0:00                                                   ` Spaceman Spiff!
1997-11-28  0:00                                                   ` Your boss sucks, mine is better (was: " Billy Chambless
1997-11-28  0:00                                                     ` Mark Wilden
1997-11-28  0:00                                                       ` Peter Seebach
1997-11-28  0:00                                                         ` Mark Wilden
1997-12-01  0:00                                                         ` Shmuel (Seymour J.) Metz
1997-12-02  0:00                                                           ` Christian Bau
1997-12-01  0:00                                                     ` billg
1997-11-28  0:00                                                   ` Craig Franck
1997-11-27  0:00                                                     ` Mark Wilden
1997-11-28  0:00                                                       ` billg
1997-11-28  0:00                                                       ` John Hannon
1997-11-28  0:00                                                         ` Mark Wilden
1997-11-29  0:00                                                           ` Larry Elmore
1997-11-29  0:00                                                             ` Mark Wilden
1997-11-30  0:00                                                               ` Larry Elmore
1997-11-30  0:00                                                                 ` Mark Wilden
1997-11-30  0:00                                                                   ` Larry Elmore
1997-12-02  0:00                                                                     ` Mark Wilden
1997-11-29  0:00                                                             ` billg
1997-11-29  0:00                                                           ` Dennis Weldy
1997-12-01  0:00                                                           ` John Hannon
1997-11-28  0:00                                               ` billg
1997-11-29  0:00                                             ` Larry Elmore
1997-11-29  0:00                                               ` billg
1997-12-01  0:00                                               ` John English
1997-12-01  0:00                                                 ` Larry Elmore
1997-12-04  0:00                                                 ` Bob O
1997-11-26  0:00                                           ` News postings and job interviews (was: " Billy Chambless
1997-11-24  0:00                                 ` Richard A. O'Keefe
1997-11-27  0:00                                 ` Matt Osborne
1997-12-03  0:00                                 ` ANDREAS LEITNER
     [not found]                             ` <64vl4h$3qh@bgtn <34747E35.79AE@no_spam.ip.edu.com>
1997-11-20  0:00                               ` G Moore (was Re: Your english sucks, mine is better.) Kaz Kylheku
1997-11-21  0:00                                 ` Robert S. White
1997-11-21  0:00                                 ` Kevin Davis Sr.
     [not found]                             ` <64vl4h$3qh@bgtn <652aes$63a$1@news01.micron.net>
1997-11-23  0:00                               ` Your english sucks, mine is better John Winters
1997-11-19  0:00                     ` English SUCKS, Chinese is the only language you need!! system
1997-11-24  0:00                     ` Richard A. O'Keefe
1997-11-19  0:00                   ` Cynthia & Bill
1997-11-19  0:00                     ` tmt
1997-11-19  0:00                       ` Mark Wilden
1997-11-28  0:00                     ` Ingemar Ragnemalm
1997-11-29  0:00                       ` Danette & Murray Root
1997-12-02  0:00                       ` Morgan Palaeo Associates
1997-12-05  0:00                         ` R.E.Donais
1997-12-03  0:00                       ` Matt Corey
1997-11-19  0:00                   ` Kaz Kylheku
1997-11-21  0:00                   ` Jerry Sams
1997-11-18  0:00                 ` Billy Chambless
1997-11-18  0:00                 ` Chieh Cheng
1997-11-19  0:00                   ` John Rickard
     [not found]                     ` <01bcf51e$35e2a0c0$0200000a@kld_mcs>
1997-11-19  0:00                       ` John Rickard
1997-11-19  0:00                   ` Gary A. Wiltshire
1997-11-19  0:00                     ` Chieh Cheng
1997-11-20  0:00                       ` Mike Smith
1997-11-19  0:00                     ` Dennis Weldy
1997-11-19  0:00                       ` John Rickard
1997-11-21  0:00                         ` Dennis Weldy
1997-11-18  0:00                 ` Mark Wilden
1997-11-19  0:00                   ` Kaz Kylheku
1997-11-19  0:00                     ` system
1997-11-19  0:00                       ` Matt Corey
1997-11-29  0:00                         ` D. Ross
1997-11-29  0:00                           ` Spaceman Spiff
1997-11-29  0:00                           ` Mark Wilden
1997-12-02  0:00                             ` William Rapp
1997-11-19  0:00                       ` Kaz Kylheku
1997-11-20  0:00                         ` Boyd Roberts
1997-11-26  0:00                       ` michael j tobler
1997-11-19  0:00                     ` Mark Wilden
1997-12-17  0:00                       ` Jeffrey George
1997-12-17  0:00                         ` Mark Wilden
1997-11-27  0:00                     ` Denny
1997-11-19  0:00                   ` Les Hazlewood
1997-11-19  0:00                 ` Mike Smith
     [not found]               ` <64sql2$k0@ <YSQz$BJ98GA.158@news2.ingr.com>
1997-11-19  0:00                 ` John R. Reagan
     [not found]               ` <64sql2$k0@ <3473407e.17757163@lhc.nlm.nih.gov>
1997-11-20  0:00                 ` John R. Reagan
1997-11-18  0:00             ` JCore
1997-11-21  0:00               ` Jerry Sams
     [not found]               ` <01bcf51b$abcea520$0200000a@kld_mcs>
1997-11-19  0:00                 ` system
     [not found]                   ` <01bcf5c3$afbda340$0200000a@kld_mcs>
1997-11-20  0:00                     ` Craig Franck
1997-11-19  0:00                 ` Michael Rubenstein
1997-11-19  0:00                   ` Mark Wilden
1997-11-20  0:00                     ` Michael Rubenstein
1997-11-20  0:00                       ` Peter Seebach
1997-11-20  0:00                         ` Boyd Roberts
1997-11-20  0:00                           ` Larry Elmore
1997-11-20  0:00                         ` Joseph Santaniello
     [not found]                           ` <34746A05.49AA@mWilden.com>
1997-11-20  0:00                             ` system
1997-11-26  0:00                               ` Frans E. Boone
1997-11-26  0:00                                 ` CERVANTES OJEDA, Jorge
1997-11-26  0:00                                   ` Peter Seebach
1997-11-26  0:00                                   ` Kevin Edwards
1997-11-26  0:00                                 ` system
1997-11-27  0:00                                   ` Knochenhauer Bernd
1997-11-25  0:00                     ` Bob Bakh
1997-11-26  0:00                       ` macpar
1997-11-20  0:00                   ` Boyd Roberts
     [not found]                   ` <01bcf5c4$5916e8c0$0200000a@kld_mcs>
     [not found]                     ` <MPG.ede6533db8ead2b9896b3@news.mindspring.com>
1997-11-20  0:00                       ` Mark Wilden
1997-11-20  0:00                       ` Wei Jing Guo
1997-11-19  0:00                 ` John Rickard
1997-11-20  0:00                   ` Christer Gustavsson
1997-11-22  0:00                 ` Ncp268
1997-11-24  0:00                 ` Richard A. O'Keefe
1997-11-25  0:00                 ` chasjt
     [not found]             ` <34745A75.D22E132D@zeelandnet.nl>
1997-11-20  0:00               ` John Rickard
1997-11-19  0:00           ` Mike Smith
1997-10-29  0:00       ` ADA and Pascal SUCK, C,C++, and Java are the only languages " Timo Salmi
1997-10-30  0:00       ` Dr E. Buxbaum
1997-10-30  0:00         ` Steve Ropa
1997-10-30  0:00           ` Kaz Kylheku
1997-11-05  0:00             ` John Stevens
1997-11-06  0:00               ` Kaz Kylheku
1997-11-06  0:00                 ` Steve Ropa
1997-11-07  0:00                 ` Craig Franck
1997-10-30  0:00       ` NOSPAM_f93-eaa
1997-10-30  0:00         ` Ada, Pascal, Eiffel and others Alan Brain
1997-10-30  0:00           ` NOSPAM_f93-eaa
1997-10-30  0:00           ` tmt
1997-10-31  0:00           ` geldridg
1997-11-01  0:00             ` Alan E & Carmel J Brain
1997-10-30  0:00       ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Corey Barcus
1997-10-31  0:00         ` Scott A. Moore
1997-10-31  0:00           ` Shmuel (Seymour J.) Metz
1997-10-31  0:00             ` Scott A. Moore
1997-11-03  0:00               ` Shmuel (Seymour J.) Metz
1997-11-01  0:00             ` Timo Salmi
1997-10-31  0:00       ` Trolling Jerry van Dijk
1997-11-03  0:00         ` Trolling Ron Thompson
1997-11-01  0:00       ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Gary A. Wiltshire
     [not found]         ` <01bcea64$dd48dba0$bf0562cb@dialup.voyager.co.nz>
1997-11-07  0:00           ` Gary A. Wiltshire
1997-11-03  0:00       ` Christopher Eltschka
1997-10-28  0:00     ` ADA SUCKS, C/C++/JAVA RULES!!!! John Bode
1997-10-28  0:00     ` Dann Corbit
1997-10-29  0:00       ` Adam Beneschan
1997-10-29  0:00     ` BRIAN LANGENBERGER
1997-10-29  0:00     ` Philip Brashear
1997-10-30  0:00     ` Ed Muldoon
1997-10-30  0:00     ` Jon S Anthony
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` BRIAN LANGENBERGER
1997-10-28  0:00     ` Rob
1997-10-28  0:00     ` Tucker Taft
1997-10-29  0:00     ` Nope! was " JT (from Fritz)
1997-10-29  0:00       ` David A. Frantz
1997-10-29  0:00       ` Phlip C Plumlee
1997-10-30  0:00         ` Kaz Kylheku
1997-10-31  0:00       ` Alan E & Carmel J Brain
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-28  0:00   ` Rob Eamon
1997-10-28  0:00   ` Kenneth W. Sodemann
1997-10-31  0:00   ` Ken Mays
1997-10-31  0:00     ` Charles R. Lyttle
1997-11-01  0:00       ` NOSPAM_f93-eaa
1997-11-01  0:00         ` Charles R. Lyttle
1997-11-02  0:00           ` David A. Frantz
1997-11-08  0:00             ` Charles W. Johnson
1997-11-08  0:00               ` Charles R. Lyttle
1997-11-03  0:00           ` Nick Leaton
1997-11-06  0:00           ` John Stevens
1997-11-07  0:00             ` Boyd Roberts
1997-11-07  0:00               ` Kaz Kylheku
1997-11-10  0:00               ` Charles W. Kann
1997-11-10  0:00                 ` Jon S Anthony
1997-11-11  0:00                   ` Matt Kennel (Remove 'NOSPAM' to reply)
1997-11-11  0:00                     ` Charles W. Kann
1997-11-11  0:00                       ` Brian Rogoff
1997-11-11  0:00                       ` Jon S Anthony
1997-11-01  0:00   ` Flame bait count 146 (Re: ADA SUCKS, C/C++/JAVA RULES!!!!) Ken Garlington
1997-11-02  0:00     ` Marcus Agrippa
1997-11-02  0:00       ` Carsten Engelmann 
1997-11-02  0:00   ` ADA SUCKS, C/C++/JAVA RULES!!!! Supreme
1997-11-04  0:00     ` Alan E & Carmel J Brain
1997-11-04  0:00   ` Guest
1997-11-12  0:00 ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Samuel T. Harris
1997-11-12  0:00 ` Larry Elmore
1997-11-12  0:00   ` which languages suck Stanley R. Allen
1997-11-13  0:00     ` Larry Elmore
1997-11-14  0:00     ` Robert Munck
1997-11-14  0:00       ` Russ Lyttle
1997-11-14  0:00       ` Bjorn Vaggen Konestabo
1997-11-13  0:00   ` ADA and Pascal SUCK, C,C++, and Java are the only languages you need!! Jon S Anthony
1997-11-14  0:00     ` Craig Franck
  -- strict thread matches above, loose matches on Subject: below --
1997-11-03  0:00 Marin David Condic, 561.796.8997, M/S 731-96
1997-10-30  0:00 Marin David Condic, 561.796.8997, M/S 731-96

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