Re: TeX and Pascal [was Re: The joy of FORTRAN]

Liste des GroupesRevenir à col misc 
Sujet : Re: TeX and Pascal [was Re: The joy of FORTRAN]
De : Pancho.Jones (at) *nospam* proton.me (Pancho)
Groupes : alt.folklore.computers comp.os.linux.misc
Date : 30. Sep 2024, 10:19:08
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vddqed$264fi$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12
User-Agent : Mozilla Thunderbird
On 9/29/24 07:50, The Natural Philosopher wrote:
On 29/09/2024 06:44, 186282@ud0s4.net wrote:
The only ones I came to HATE
   were LISP/PROLOG and ADA - the latter being SO fascist
   that, well, no WONDER govt projects take 20 years ....
Well yes, that what happens when you let computer scientists take over.
 I knew someone who ran a small company doing low level programming fir their custome hardware.
One day one of the coders said 'lets do the next one in C++'
So they did, and a year later realised that before you wrote C++ you have to sit down and write some or of spec to show what objects you are going to need to create etc etc.
I think of OO more as a design philosophy than a language feature. The early problem I saw with C++ was projects that implemented classes bottom up. If you saw they had written their own string class, you immediately knew the project was going to fail.
The basic idea behind this is that initially you need to have a good overall picture of what your application is going to do. You need to be able to split a project into separate parts, separate components. This effectively mapped to designing classes top down.
The failing projects would get programmers learning a new language trying to develop utility classes to make their life "easy". They would spend all their time doing this and hence the project would fail. It would also be difficult to on board new programmers, due to all the badly designed utility classes they needed to learn.
Of its self I thought C++ was a brilliant language, for its time.

In the same way I always write down a crude 'data dictionary' whenever I am implementing any sort of file based data system. And especially an SQL based one
 But they didn't. They tried to hack it and it was a disaster.
I hate OO.
 It is a compsci invention that doesn't map well onto an actually CPU which is a procedural beast.
 
It maps fine. Most optimisation is about efficient algorithms, not about shaving micro-seconds off a loop in a crap or naive algorithm.
Without high level concepts such as objects, it is very hard to implement more abstract, but more efficient algorithms. Caveat, I'm relatively bad with complexity. I'm very good with simplicity, but bad with complexity, I have sometimes wondered if there are different types of intelligence. I have worked with Cambridge types who claimed to be good with complexity.

 Most of its vaunted advantages can be attained by writing C in a structured way and others like operator overloading are just damned confusing.
>
Yes, I could implement OO designs in C, and I would if I had to, but I would be borrowing what I learnt from C++ and other OO languages.

I don't WANT to use the same syntax to add two strings together as to add two numbers.
 
Syntactic sugar can be nice, as long as it doesn't obscure what is really going on. Mainly I don't like it because it makes unfamiliar languages harder to understand.

I found that out in JavaScript where a comparison between a string  "1" and a number 1 failed on IE but worked on Firefox.
 I had found an 'undefined' gap in the language.
 In C you are absolutely aware at all times what type of object you are dealing with and if you move to another one it's via an explicit cast. Or if implicit, you normally get a compiler warning.
 
Oh, I can be unaware of what my code is really doing, in any language :-)

In C if you want to deallocate RAM you say so. It doesn't silently collect garbage under your feet and take a millisecond to do it
>
And you can deallocate RAM many times, or not at all. I have a friend interested in music and he won't touch garbage collection, but I rarely cared about non deterministic short pauses. The benefits of not doing all the janitor stuff with memory was huge.
I think even non garbage collection modern languages try to automate memory allocation and deallocation, ref counting, out of scope destructors etc. Being happy with garbage collection I never looked at it, but the ideas date back to (at least) the mid 1990s C++, Scott Meyers etc.

Javascript silently just does what it *thinks* you meant. And gets it wrong.
 In short there is a layer of uncertainty built into modern languages that attempt to map abstract compsci concepts into actual procedural code.
 Which is why C is probably still the most popular  language.
>
Only with old codgers.

 

Date Sujet#  Auteur
21 Sep 24 * Can't Avoid That Shit Rust - Even On Gentoo2188Farley Flud
21 Sep 24 +- Re: Can't Avoid That Shit Rust - Even On Gentoo1Farley Flud
24 Sep 24 `* Re: Can't Avoid That Shit Rust - Even On Gentoo2186186282@ud0s4.net
24 Sep 24  +* Re: Can't Avoid That Shit Rust - Even On Gentoo6Lawrence D'Oliveiro
24 Sep 24  i+* Re: Can't Avoid That Shit Rust - Even On Gentoo2Pancho
25 Sep 24  ii`- Re: Can't Avoid That Shit Rust - Even On Gentoo1186282@ud0s4.net
25 Sep 24  i`* Re: Can't Avoid That Shit Rust - Even On Gentoo3186282@ud0s4.net
25 Sep 24  i +- Re: Can't Avoid That Shit Rust - Even On Gentoo1Lawrence D'Oliveiro
25 Sep 24  i `- Re: Can't Avoid That Shit Rust - Even On Gentoo1rbowman
24 Sep 24  +* Re: Can't Avoid That Shit Rust - Even On Gentoo4D
25 Sep 24  i`* Re: Can't Avoid That Shit Rust - Even On Gentoo3186282@ud0s4.net
25 Sep 24  i `* Re: Can't Avoid That Shit Rust - Even On Gentoo2Lawrence D'Oliveiro
28 Sep 24  i  `- Re: Can't Avoid That Shit Rust - Even On Gentoo1186282@ud0s4.net
24 Sep 24  +* The joy of FORTRAN2127Lars Poulsen
24 Sep 24  i+* Re: The joy of FORTRAN265Sn!pe
24 Sep 24  ii+* Re: The joy of FORTRAN169The Natural Philosopher
24 Sep 24  iii+* Re: The joy of FORTRAN35Lawrence D'Oliveiro
25 Sep 24  iiii+* Re: The joy of FORTRAN22rbowman
25 Sep 24  iiiii+* Re: The joy of FORTRAN19Bob Eager
25 Sep 24  iiiiii+* Re: The joy of FORTRAN16rbowman
25 Sep 24  iiiiiii+* Re: The joy of FORTRAN13Bob Eager
27 Sep 24  iiiiiiii`* Re: The joy of FORTRAN12Peter Flass
27 Sep 24  iiiiiiii +- Re: The joy of FORTRAN1Niklas Karlsson
27 Sep 24  iiiiiiii +* Re: The joy of FORTRAN6R Daneel Olivaw
28 Sep 24  iiiiiiii i+* Re: The joy of FORTRAN3Gordon Henderson
28 Sep 24  iiiiiiii ii+- Re: The joy of FORTRAN1Peter Flass
28 Sep 24  iiiiiiii ii`- Re: The joy of FORTRAN1Bob Eager
28 Sep 24  iiiiiiii i+- Re: The joy of FORTRAN1Peter Flass
28 Sep 24  iiiiiiii i`- Re: The joy of FORTRAN1Lars Poulsen
27 Sep 24  iiiiiiii +- Re: The joy of FORTRAN1Bob Eager
28 Sep 24  iiiiiiii `* Re: The joy of FORTRAN3Lawrence D'Oliveiro
28 Sep 24  iiiiiiii  +- Re: The joy of FORTRAN1Peter Flass
30 Sep 24  iiiiiiii  `- Re: The joy of FORTRAN1Rich Alderson
25 Sep 24  iiiiiii`* Re: The joy of FORTRAN2Lynn Wheeler
25 Sep 24  iiiiiii `- Re: The joy of FORTRAN1Kerr-Mudd, John
25 Sep 24  iiiiii`* Re: The joy of FORTRAN2Chris Ahlstrom
25 Sep 24  iiiiii `- Re: The joy of FORTRAN1Bob Eager
27 Sep 24  iiiii`* Re: The joy of FORTRAN2Peter Flass
27 Sep 24  iiiii `- Re: The joy of FORTRAN1moi
25 Sep 24  iiii+* Re: The joy of FORTRAN3Lynn Wheeler
25 Sep 24  iiiii`* Re: The joy of FORTRAN2Lawrence D'Oliveiro
11 Oct 24  iiiii `- Re: The joy of FORTRAN1Bozo User
25 Sep 24  iiii+* Re: The joy of FORTRAN2Chris Ahlstrom
27 Sep 24  iiiii`- Re: The joy of FORTRAN1Peter Flass
25 Sep 24  iiii+- Re: The joy of FORTRAN1Chris Ahlstrom
25 Sep 24  iiii+- Re: The joy of FORTRAN1Kerr-Mudd, John
27 Sep 24  iiii+* Re: The joy of FORTRAN2Peter Flass
27 Sep 24  iiiii`- Re: The joy of FORTRAN1Dennis Boone
27 Sep 24  iiii`* Re: The joy of FORTRAN3Andy Walker
28 Sep 24  iiii +- Re: The joy of FORTRAN1Lawrence D'Oliveiro
28 Sep 24  iiii `- Re: The joy of FORTRAN1Peter Flass
24 Sep 24  iii+* Re: The joy of FORTRAN2Peter Flass
25 Sep 24  iiii`- Re: The joy of FORTRAN1Lawrence D'Oliveiro
24 Sep 24  iii+- Re: The joy of FORTRAN1Peter Flass
24 Sep 24  iii+- Re: The joy of FORTRAN1Peter Flass
25 Sep 24  iii+- Re: The joy of FORTRAN1rbowman
25 Sep 24  iii+* Re: The joy of FORTRAN124Woozy Song
25 Sep 24  iiii`* Re: The joy of FORTRAN123rbowman
25 Sep 24  iiii +* Re: The joy of FORTRAN3Lawrence D'Oliveiro
27 Sep 24  iiii i`* Re: The joy of FORTRAN2Peter Flass
30 Sep 24  iiii i `- Re: The joy of FORTRAN1Waldek Hebisch
25 Sep 24  iiii +* Re: The joy of FORTRAN37Chris Ahlstrom
25 Sep 24  iiii i+* Re: The joy of FORTRAN3R Daneel Olivaw
25 Sep 24  iiii ii`* Re: The joy of FORTRAN2Kerr-Mudd, John
25 Sep 24  iiii ii `- Re: The joy of FORTRAN1R Daneel Olivaw
25 Sep 24  iiii i+* Re: The joy of FORTRAN6Lynn Wheeler
26 Sep 24  iiii ii+- Re: The joy of FORTRAN1Pancho
26 Sep 24  iiii ii`* Re: The joy of FORTRAN4Lynn Wheeler
26 Sep 24  iiii ii `* Re: The joy of FORTRAN3Lawrence D'Oliveiro
26 Sep 24  iiii ii  `* Re: The joy of FORTRAN2rbowman
27 Sep 24  iiii ii   `- Re: The joy of FORTRAN1Lawrence D'Oliveiro
26 Sep 24  iiii i+* Re: The joy of FORTRAN3rbowman
26 Sep 24  iiii ii+- Re: The joy of FORTRAN1John Ames
26 Sep 24  iiii ii`- Re: The joy of FORTRAN1Lawrence D'Oliveiro
26 Sep 24  iiii i+* Re: The joy of FORTRAN19Pancho
26 Sep 24  iiii ii+* Re: The joy of FORTRAN16Lawrence D'Oliveiro
26 Sep 24  iiii iii`* Re: The joy of FORTRAN15Pancho
26 Sep 24  iiii iii `* Re: The joy of FORTRAN14Lawrence D'Oliveiro
27 Sep 24  iiii iii  `* Re: The joy of FORTRAN13Lars Poulsen
27 Sep 24  iiii iii   +* Re: The joy of FORTRAN7Lawrence D'Oliveiro
27 Sep 24  iiii iii   i`* Re: The joy of FORTRAN6Pancho
28 Sep 24  iiii iii   i `* Re: The joy of VAX5Lawrence D'Oliveiro
28 Sep 24  iiii iii   i  `* Re: The joy of VAX4Pancho
29 Sep 24  iiii iii   i   `* Re: The joy of VAX3Robert Marshall
29 Sep 24  iiii iii   i    +- Re: The joy of VAX1Bob Eager
29 Sep 24  iiii iii   i    `- Re: The joy of VAX1Peter Flass
28 Sep 24  iiii iii   `* The joy of VAX C5Lars Poulsen
28 Sep 24  iiii iii    +- Re: The joy of VAX C1The Natural Philosopher
29 Sep 24  iiii iii    +- Re: The joy of VAX C1rbowman
29 Sep 24  iiii iii    `* Re: The joy of VAX C2Peter Flass
30 Sep 24  iiii iii     `- Re: The joy of VAX C1Lawrence D'Oliveiro
27 Sep 24  iiii ii`* Re: The joy of FORTRAN2Peter Flass
27 Sep 24  iiii ii `- Re: The joy of FORTRAN1Lawrence D'Oliveiro
27 Sep 24  iiii i`* Re: The joy of FORTRAN5Peter Flass
27 Sep 24  iiii i +* Re: The joy of FORTRAN2Bob Eager
28 Sep 24  iiii i i`- Re: The joy of FORTRAN1Peter Flass
27 Sep 24  iiii i `* Re: The joy of FORTRAN2Lynn Wheeler
27 Sep 24  iiii i  `- Re: The joy of FORTRAN1Lynn Wheeler
25 Sep 24  iiii `* Re: The joy of FORTRAN82John Ames
25 Sep 24  iiii  +* Re: The joy of FORTRAN77Stefan Ram
25 Sep 24  iiii  i+* Re: The joy of FORTRAN2John Ames
25 Sep 24  iiii  i+* TeX and Pascal [was Re: The joy of FORTRAN]73Rich Alderson
25 Sep 24  iiii  i`- Re: The joy of FORTRAN1Lawrence D'Oliveiro
25 Sep 24  iiii  `* Re: The joy of FORTRAN4Lawrence D'Oliveiro
25 Sep 24  iii`* Re: The joy of FORTRAN4John Levine
24 Sep 24  ii+* Re: The joy of FORTRAN91rbowman
24 Sep 24  ii+* Re: The joy of FORTRAN2Lawrence D'Oliveiro
24 Sep 24  ii`* Re: The joy of FORTRAN2Bob Eager
24 Sep 24  i+* Re: The joy of FORTRAN5Bob Eager
24 Sep 24  i+- Re: The joy of FORTRAN1R Daneel Olivaw
24 Sep 24  i+- Re: The joy of FORTRAN1Peter Flass
25 Sep 24  i`* Re: The joy of FORTRAN1854186282@ud0s4.net
24 Sep 24  +* Re: Can't Avoid That Shit Rust - Even On Gentoo3rek2 hispagatos
24 Sep 24  +* Re: Can't Avoid That Shit Rust - Even On Gentoo2rbowman
24 Sep 24  +- Re: Can't Avoid That Shit Rust - Even On Gentoo1The Natural Philosopher
25 Sep 24  +* Re: Can't Avoid That Shit Rust - Even On Gentoo41rbowman
7 Oct 24  `- Re: Can't Avoid That Shit Rust - Even On Gentoo1Rich Alderson

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal