Re: The tragedy of SQL

From: Gavin Flower <GavinFlower(at)archidevsys(dot)co(dot)nz>
To: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: The tragedy of SQL
Date: 2021-09-14 22:53:38
Message-ID: bf51952b-d3bd-7dde-b500-264aa021c5c6@archidevsys.co.nz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 15/09/21 04:10, Michael Nolan wrote:
> I started programming in 1967, and over the last 50+ years I've
> programmed in more languages than I would want to list.  I spent a
> decade writing in FORTRAN on a GA 18/30 (essentially a clone of the
> IBM 1130) with limited memory space, so you had to write EFFICIENT
> code, something that is a bit of a lost art these days.  I also spent
> a decade writing in COBOL.
>
> I've not found many tasks that I couldn't find a way to write in
> whatever language I had available to write it in. There may be bad (or
> at least inefficient) languages, but there are lots of bad programmers.
> --
> Mike Nolan
> htfoot(at)gmail(dot)com

I remember programming in FORTRAN IV on an IBM 1130 at Auckland
University.  My first attempt to explore Pythagorean triples was written
in FORTRAN on that machine.  Finally had a useful program written in
Java about 30 years later.  There are 4 triples starting with 60 that
satisfy A*2 + B^2 + C^2 where A < B < C and the numbers are mutually
prime. I was able to handle values of A up to the size of long, so I got
some pretty big numbers for B & C.  Java's BigInteger class has its uses!

On the IBM 1130 it was faster to use X * X to find the square of a value
than to use the power notation (of which I've forgotten the syntax).

And for my many sins, I spent years programming in COBOL.

I've written code in over 30 languages.  Probably had most fun writing a
couple of trivial programs in ARM2/3 assembler -- all instructions
except one are conditional.

There is no one perfect language, despite what some people might insist!

Cheers,
Gavin

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Gavin Flower 2021-09-14 23:05:23 Re: The tragedy of SQL
Previous Message Peter J. Holzer 2021-09-14 22:30:43 Re: The tragedy of SQL