Sujet : Re: TeX and Pascal [was Re: The joy of FORTRAN]
De : tnp (at) *nospam* invalid.invalid (The Natural Philosopher)
Groupes : alt.folklore.computers comp.os.linux.miscDate : 01. Oct 2024, 16:14:37
Autres entêtes
Organisation : A little, after lunch
Message-ID : <vdh3ku$2path$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
User-Agent : Mozilla Thunderbird
On 01/10/2024 15:57, Pancho wrote:
In essence just because you can do something clever, doesn't mean you should.
That is what I loathed about compscis. As practising software engineers we specialised in 'good clean workmanlike well documented and structured code'.
Our job was to get the puter to do its job in the most understandable and maintainable way.
Not to impress people with the elegance complexity and incomprehensibility of our REGEX statements.
If all we had was vi and a C compiler, that's what we used.
And knowing that
p=(x>y?3:2);
produced identical assembler to:
if (x>y)
p=3;
else
p=2;
there was a strong temptation to use the latter as being sufficiently simple for the time serving amateurs whose failure to complete the project was why we we employed at all...
We weren't employed to be clever. We were employed to write working code. And document it.
-- The theory of Communism may be summed up in one sentence: Abolish all private property.Karl Marx