• Re: naughty Pascal

    From Bobbie Sellers@bliss-sf4ever@dslextreme.com to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 15:39:18 2026
    From Newsgroup: alt.folklore.computers



    On 1/10/26 11:44, rbowman wrote:
    On Sat, 10 Jan 2026 07:42:47 -0700, Peter Flass wrote:


    It did if you lived in Doggerland, or used to walk from Australia to
    Indonesia.

    https://en.wikipedia.org/wiki/Stone_Spring

    The rest of the trilogy, 'Bronze Summer' and 'Iron Winter', are okay but
    the focus moves from Doggerland.

    When Doggerland is submerged and the people have to leave it it seems
    totally logical that the focus would change to ancientry. Remember Doggerland
    was prehistoric so I cannot even say ancienty history but whatever
    the author
    according to his education can imagine of those times.

    Worthwhile book in 'Stone Spring' in my ever so humble opinion

    Bliss

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Bobbie Sellers@bliss-sf4ever@dslextreme.com to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 15:50:28 2026
    From Newsgroup: alt.folklore.computers



    On 1/10/26 10:23, Scott Lurndal wrote:
    The Natural Philosopher <tnp@invalid.invalid> writes:
    On 09/01/2026 21:24, John Ames wrote:
    On 9 Jan 2026 20:36:38 GMT
    rbowman <bowman@montana.com> wrote:

    That *is* an intriguing question - AFAIK the evidence we have is
    scant, but it's certainly a fascinating notion. Dunno if we'll ever
    get any solid answers, but you gotta wonder...

    Heyerdahl was disliked by the academics but he had an embarrassing
    habit of building boats and going places that shouldn't have been
    reachable in their theories.

    Certainly can't accuse him of not putting his money where his mouth was. >>>
    Before Doggerland sank anybody could wander over without having to
    build a coracle.

    It's truly amazing how much of the world was walkable in the Ice Age;
    doesn't explain *every* place humans ended up (it's absolutely mind-
    boggling to consider how far back the Pacific islands were settled,)
    but it absolutely made a whole lotta places readily accessible for a
    good long while. Makes you wonder, too, how many of the various quasi-
    Atlantean legends in northwest Europe are really mutated folk memory
    from a *staggeringly* long time ago...

    Yes.

    125m of sea level rise in a few thousand years...and a global
    temperature rise of
    up to 10-#C

    Odd how that didn't 'destroy the planet'...

    Apples are not equal to oranges.

    Don't worry about the planet. With or without life on it Earth
    will take care of itself just as does Venus or Mercury. The risk is
    to the last few hundred years of human progress(?). We might
    manage to revert to barbarism if the temperature does not go too
    high for our systems by which I mean the whole means by which
    your body maintains homeostasis which includes food systems,
    medical systems, transport systems. I suspect without clear
    evidence that we may hit another bottleneck and suffer large
    losses of population and genetic diversity human and otherwise.

    bliss - always the cheery optimist...

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 23:56:52 2026
    From Newsgroup: alt.folklore.computers

    On Sat, 10 Jan 2026 13:03:06 -0700, Peter Flass wrote:

    On 1/10/26 12:44, rbowman wrote:
    On Sat, 10 Jan 2026 07:42:47 -0700, Peter Flass wrote:


    It did if you lived in Doggerland, or used to walk from Australia to
    Indonesia.

    https://en.wikipedia.org/wiki/Stone_Spring

    The rest of the trilogy, 'Bronze Summer' and 'Iron Winter', are okay
    but the focus moves from Doggerland.

    I love a nice upbeat story.

    I don't know about upbeat but we are here. Our ancestors survived global warming, ice ages, plagues, wars, and all sorts of other problems, at
    least long enough to breed and pass on the genes.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 00:02:22 2026
    From Newsgroup: alt.folklore.computers

    On Sat, 10 Jan 2026 20:52:12 -0000 (UTC), Lawrence DrCOOliveiro wrote:

    On Sat, 10 Jan 2026 19:39:05 GMT, Charlie Gibbs wrote:

    I like to be a little more explicit, so I say "#ifdef DELETE_THIS".

    We have version control nowadays. You can actually delete stuff from
    your source, and trust to the version history to keep a record of what
    used to be there.

    It's getting hard to cover your tracks. We used Subversion and 'svn blame'
    was useful. If you were more polite you could use 'svn praise'.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Nuno Silva@nunojsilva@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 00:27:20 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-10, Lawrence DrCOOliveiro wrote:

    On Sat, 10 Jan 2026 19:39:05 GMT, Charlie Gibbs wrote:

    In fact, to work both ways, my code is still full of constructs like
    this:

    #ifdef PROTOTYPE
    int foo(char *bar, BOOL baz)
    #else
    int foo(bar, baz) char *bar; BOOL baz;
    #endif

    What a pain-in-the-bum way of writing things.

    K&R C is gone, people. Let it go.

    People should have the choice of writing that way if they want. And you
    always have the choice of not reading it.


    (If this sounds too harsh to somebody: I wrote this because of how
    Lawrence repeatedly mentioned "choice" as a way to dismiss criticism in
    other threads in comp.os.linux.misc.)
    --
    Nuno Silva
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From antispam@antispam@fricas.org (Waldek Hebisch) to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 01:32:19 2026
    From Newsgroup: alt.folklore.computers

    In alt.folklore.computers Charlie Gibbs <cgibbs@kltpzyxm.invalid> wrote:
    On 2026-01-09, c186282 <c186282@nnada.net> wrote:

    'C' has added a few nicey-nice things, but not TOO much.
    You can (I do) stick pretty much to K&R and everything
    still works fine.

    I think of my style as "K&R plus prototypes". In fact, to
    work both ways, my code is still full of constructs like this:

    #ifdef PROTOTYPE
    int foo(char *bar, BOOL baz)
    #else
    int foo(bar, baz) char *bar; BOOL baz;
    #endif

    I almost never used non-prototype form for my own code. I kept
    it in "public" code for benefits of HP-UX users (which was
    delivered with K&R compiler and ANSI way payed-for extra).
    I got rid of most of such stuff about 18 years ago. I probably
    still have some codes that I fetched from the net which use
    old form, but I doubt if it is present in code that I use.
    --
    Waldek Hebisch
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 20:51:00 2026
    From Newsgroup: alt.folklore.computers

    On 1/9/26 15:32, rbowman wrote:
    On Fri, 9 Jan 2026 10:00:20 +0000, The Natural Philosopher wrote:

    On 09/01/2026 04:13, John Ames wrote:
    They do now - but they had a different character once upon a time.
    England used to be a bunch of Celts and a handful of Roman expats 't
    It was other people before that. too. Celts are late invaders from the
    broinze age.

    Before Doggerland sank anybody could wander over without having to build a coracle.

    Correct. However it mostly sank about 12,000 years
    ago when all the ice melted. Even the Beaker People
    had to float over to England.

    Stick to my estimation that England perhaps ranks
    as the "most invaded" country ever :-)

    Original pop ? Who the fuck knows ?

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From John Ames@commodorejohn@gmail.com to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 18:41:15 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 00:27:20 +0000
    Nuno Silva <nunojsilva@invalid.invalid> wrote:

    People should have the choice of writing that way if they want. And
    you always have the choice of not reading it.

    (If this sounds too harsh to somebody: I wrote this because of how
    Lawrence repeatedly mentioned "choice" as a way to dismiss criticism
    in other threads in comp.os.linux.misc.)

    While I appreciate the zing, I do have to opine for the record that K&R function definitions really are something best left buried with K&R C.
    I'm willing to write in ANSI C for the sake of whatever random weirdo
    wants to try building something of mine on an old proprietary *nix, but
    man I am *not* going any farther back than that.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 20:03:27 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 18:51, c186282 wrote:
    On 1/9/26 15:32, rbowman wrote:
    On Fri, 9 Jan 2026 10:00:20 +0000, The Natural Philosopher wrote:

    On 09/01/2026 04:13, John Ames wrote:
    They do now - but they had a different character once upon a time.
    England used to be a bunch of Celts and a handful of Roman expats 't
    It was other people before that. too. Celts are late invaders from the
    broinze age.

    Before Doggerland sank anybody could wander over without having to
    build a
    coracle.

    -a Correct. However it mostly sank about 12,000 years
    -a ago when all the ice melted. Even the Beaker People
    -a had to float over to England.

    -a Stick to my estimation that England perhaps ranks
    -a as the "most invaded" country ever-a :-)

    -a Original pop ? Who the fuck knows ?


    People just kept heading west, and when they got to England they had to
    stop.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 20:06:34 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 19:41, John Ames wrote:
    On Sun, 11 Jan 2026 00:27:20 +0000
    Nuno Silva <nunojsilva@invalid.invalid> wrote:

    People should have the choice of writing that way if they want. And
    you always have the choice of not reading it.

    (If this sounds too harsh to somebody: I wrote this because of how
    Lawrence repeatedly mentioned "choice" as a way to dismiss criticism
    in other threads in comp.os.linux.misc.)

    While I appreciate the zing, I do have to opine for the record that K&R function definitions really are something best left buried with K&R C.
    I'm willing to write in ANSI C for the sake of whatever random weirdo
    wants to try building something of mine on an old proprietary *nix, but
    man I am *not* going any farther back than that.


    It's never good to foreclose your options. One of my goals for Iron
    Spring PL/I is compatibility with the widest base of code possible. It
    can compile and run IBM PL/I(F) code from 1965. The newer stuff is
    better, but rewriting something that works is a pain.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 22:31:58 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 22:03, Peter Flass wrote:
    On 1/10/26 18:51, c186282 wrote:
    On 1/9/26 15:32, rbowman wrote:
    On Fri, 9 Jan 2026 10:00:20 +0000, The Natural Philosopher wrote:

    On 09/01/2026 04:13, John Ames wrote:
    They do now - but they had a different character once upon a time.
    England used to be a bunch of Celts and a handful of Roman expats 't
    It was other people before that. too. Celts are late invaders from the >>>> broinze age.

    Before Doggerland sank anybody could wander over without having to
    build a
    coracle.

    -a-a Correct. However it mostly sank about 12,000 years
    -a-a ago when all the ice melted. Even the Beaker People
    -a-a had to float over to England.

    -a-a Stick to my estimation that England perhaps ranks
    -a-a as the "most invaded" country ever-a :-)

    -a-a Original pop ? Who the fuck knows ?


    People just kept heading west, and when they got to England they had to stop.

    Well, a few got to Ireland ...

    Then, enough whiskey, they didn't have the
    strength to go on :-)

    OK, *some* tried to go EAST ... but the
    proto-Chinese killed them.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 22:44:58 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 22:06, Peter Flass wrote:
    On 1/10/26 19:41, John Ames wrote:
    On Sun, 11 Jan 2026 00:27:20 +0000
    Nuno Silva <nunojsilva@invalid.invalid> wrote:

    People should have the choice of writing that way if they want. And
    you always have the choice of not reading it.

    (If this sounds too harsh to somebody: I wrote this because of how
    Lawrence repeatedly mentioned "choice" as a way to dismiss criticism
    in other threads in comp.os.linux.misc.)

    While I appreciate the zing, I do have to opine for the record that K&R
    function definitions really are something best left buried with K&R C.
    I'm willing to write in ANSI C for the sake of whatever random weirdo
    wants to try building something of mine on an old proprietary *nix, but
    man I am *not* going any farther back than that.


    It's never good to foreclose your options. One of my goals for Iron
    Spring PL/I is compatibility with the widest base of code possible. It
    can compile and run IBM PL/I(F) code from 1965. The newer stuff is
    better, but rewriting something that works is a pain.

    You got Iron Spring to run properly ?

    Cool.

    And yea, why re-invent the wheel ?

    FORTRAN ... a near ZILLION libs/functions
    writ by serious pros for engineering and
    scientific needs. It's all there, tested
    over and over. Why try to re-do it in 'C'
    or Python ??? Just use FORTRAN.

    My complaint with PL/I is the kind of dated
    60s syntax ... however it COULD do most anything.
    I remember when it was promoted as "The Lang To
    Replace All Others" ....

    Turned out to be Python instead.

    Just downloaded a COBOL IDE ... I'd looked at it
    some years ago and it wasn't bad. Now, because of
    the stuff here, I just *have* to write some COBOL
    again :-)

    Of course the AIs are replacing 'programmers'. It
    will soon become like, well, becoming expert with
    medieval/ancient musical instruments. The pointy-
    haired bosses won't hire you - just TRUST the AI
    to make good, secure, apps they 'describe'.

    Disaster - but nobody will admit it.

    And the pointy-haired bosses ... any probs are
    SOMEONE ELSE'S FAULT ... perfect !

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 22:48:48 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 18:50, Bobbie Sellers wrote:


    On 1/10/26 10:23, Scott Lurndal wrote:
    The Natural Philosopher <tnp@invalid.invalid> writes:
    On 09/01/2026 21:24, John Ames wrote:
    On 9 Jan 2026 20:36:38 GMT
    rbowman <bowman@montana.com> wrote:

    That *is* an intriguing question - AFAIK the evidence we have is
    scant, but it's certainly a fascinating notion. Dunno if we'll ever >>>>>> get any solid answers, but you gotta wonder...

    Heyerdahl was disliked by the academics but he had an embarrassing
    habit of building boats and going places that shouldn't have been
    reachable in their theories.

    Certainly can't accuse him of not putting his money where his mouth
    was.

    Before Doggerland sank anybody could wander over without having to
    build a coracle.

    It's truly amazing how much of the world was walkable in the Ice Age;
    doesn't explain *every* place humans ended up (it's absolutely mind-
    boggling to consider how far back the Pacific islands were settled,)
    but it absolutely made a whole lotta places readily accessible for a
    good long while. Makes you wonder, too, how many of the various quasi- >>>> Atlantean legends in northwest Europe are really mutated folk memory
    from a *staggeringly* long time ago...

    Yes.

    125m of sea level rise in a few-a thousand years...and a global
    temperature rise of
    up to 10-#C

    Odd how that didn't 'destroy the planet'...

    Apples are not equal to oranges.

    -a-a-a-aDon't worry about the planet.-a With or without life on it Earth will take care of itself just as does Venus or Mercury.-a The risk is
    to the last few hundred years of human progress(?). We might
    manage to revert to barbarism if the temperature does not go too
    high for our systems by which I mean the whole means by which
    your body maintains homeostasis which includes food systems,
    medical systems, transport systems.-a I suspect without clear
    evidence that we may hit another bottleneck and suffer large
    losses of population and genetic diversity human and otherwise.

    The global climate has never gone "too hot" over
    the past BILLION years.

    However the "warm zone" has sometimes expanded to
    reach the poles.

    And sometimes contracted so there's icebergs at
    the equator.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Charlie Gibbs@cgibbs@kltpzyxm.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 03:50:23 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-11, Peter Flass <Peter@Iron-Spring.com> wrote:

    On 1/10/26 19:41, John Ames wrote:

    On Sun, 11 Jan 2026 00:27:20 +0000
    Nuno Silva <nunojsilva@invalid.invalid> wrote:

    People should have the choice of writing that way if they want. And
    you always have the choice of not reading it.

    (If this sounds too harsh to somebody: I wrote this because of how
    Lawrence repeatedly mentioned "choice" as a way to dismiss criticism
    in other threads in comp.os.linux.misc.)

    While I appreciate the zing, I do have to opine for the record that K&R
    function definitions really are something best left buried with K&R C.
    I'm willing to write in ANSI C for the sake of whatever random weirdo
    wants to try building something of mine on an old proprietary *nix, but
    man I am *not* going any farther back than that.

    It's never good to foreclose your options. One of my goals for Iron
    Spring PL/I is compatibility with the widest base of code possible. It
    can compile and run IBM PL/I(F) code from 1965. The newer stuff is
    better, but rewriting something that works is a pain.

    Thanks, Peter. At the time I came up with this scheme, my programs had
    to run on an ancient version of SCO UNIX, as well as Windows and Linux.

    My code tends to be like an ATV: it might not be pretty,
    but it'll go anywhere.
    --
    /~\ Charlie Gibbs | Growth for the sake of
    \ / <cgibbs@kltpzyxm.invalid> | growth is the ideology
    X I'm really at ac.dekanfrus | of the cancer cell.
    / \ if you read it the right way. | -- Edward Abbey
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 05:39:59 2026
    From Newsgroup: alt.folklore.computers

    On Sat, 10 Jan 2026 20:03:27 -0700, Peter Flass wrote:

    On 1/10/26 18:51, c186282 wrote:
    On 1/9/26 15:32, rbowman wrote:
    On Fri, 9 Jan 2026 10:00:20 +0000, The Natural Philosopher wrote:

    On 09/01/2026 04:13, John Ames wrote:
    They do now - but they had a different character once upon a time.
    England used to be a bunch of Celts and a handful of Roman expats 't
    It was other people before that. too. Celts are late invaders from
    the broinze age.

    Before Doggerland sank anybody could wander over without having to
    build a coracle.

    -a Correct. However it mostly sank about 12,000 years ago when all the
    -a ice melted. Even the Beaker People had to float over to England.

    -a Stick to my estimation that England perhaps ranks as the "most
    -a invaded" country ever-a :-)

    -a Original pop ? Who the fuck knows ?


    People just kept heading west, and when they got to England they had to
    stop.

    https://www.goodreads.com/book/show/2150867.Westviking https://en.wikipedia.org/wiki/The_Farfarers

    No, you just build a boat. Mowat has been accused of having a vivid imagination particularly for 'Never Cry Wolf' but he does point out that
    by island hopping in the Hebrides and Faroes before heading for Iceland
    you are only out if sight of land for a couple of days, assuming you don't
    get blown off course.

    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of
    the reasons for the abandonment of Greenland along with climate change was
    an irrational reluctance of the Norse to eat fish. Excuse me? He bases
    that on the lack of fish bones in the middens. I've never had it but I
    think the process of producing h|ikarl might dissolve the bones.




    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 01:17:20 2026
    From Newsgroup: alt.folklore.computers

    On 1/11/26 00:39, rbowman wrote:
    On Sat, 10 Jan 2026 20:03:27 -0700, Peter Flass wrote:

    On 1/10/26 18:51, c186282 wrote:
    On 1/9/26 15:32, rbowman wrote:
    On Fri, 9 Jan 2026 10:00:20 +0000, The Natural Philosopher wrote:

    On 09/01/2026 04:13, John Ames wrote:
    They do now - but they had a different character once upon a time. >>>>>> England used to be a bunch of Celts and a handful of Roman expats 't >>>>> It was other people before that. too. Celts are late invaders from
    the broinze age.

    Before Doggerland sank anybody could wander over without having to
    build a coracle.

    -a Correct. However it mostly sank about 12,000 years ago when all the >>> -a ice melted. Even the Beaker People had to float over to England.

    -a Stick to my estimation that England perhaps ranks as the "most
    -a invaded" country ever-a :-)

    -a Original pop ? Who the fuck knows ?


    People just kept heading west, and when they got to England they had to
    stop.

    https://www.goodreads.com/book/show/2150867.Westviking https://en.wikipedia.org/wiki/The_Farfarers

    No, you just build a boat. Mowat has been accused of having a vivid imagination particularly for 'Never Cry Wolf' but he does point out that
    by island hopping in the Hebrides and Faroes before heading for Iceland
    you are only out if sight of land for a couple of days, assuming you don't get blown off course.

    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of the reasons for the abandonment of Greenland along with climate change was
    an irrational reluctance of the Norse to eat fish. Excuse me? He bases
    that on the lack of fish bones in the middens. I've never had it but I
    think the process of producing h|ikarl might dissolve the bones.

    From what I've read, even the Neanderthals knew how
    to build at least crude boats - pushed out onto some
    of the Greek islands.

    So yea, modern humans carried on the practice. It got
    them to England and beyond. Well, SOME of them ...
    the death rate would have been rather high for any
    long voyage.

    Building GOOD, large-ish, properly steerable boats ...
    THAT took much longer than expected. Seems easy now,
    but for whatever reasons the ancients had a hard time
    of it.

    England ... NOT too far. Even crap boats would do it.
    The Beaker People completely infiltrated the existing
    English pop about 4400bc - but they'd HAVE to have
    floated there. Clearly their boats were 'adequate',
    and there'd have been a LOT of them.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 01:52:02 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 21:41, John Ames wrote:
    On Sun, 11 Jan 2026 00:27:20 +0000
    Nuno Silva <nunojsilva@invalid.invalid> wrote:

    People should have the choice of writing that way if they want. And
    you always have the choice of not reading it.

    (If this sounds too harsh to somebody: I wrote this because of how
    Lawrence repeatedly mentioned "choice" as a way to dismiss criticism
    in other threads in comp.os.linux.misc.)

    While I appreciate the zing, I do have to opine for the record that K&R function definitions really are something best left buried with K&R C.
    I'm willing to write in ANSI C for the sake of whatever random weirdo
    wants to try building something of mine on an old proprietary *nix, but
    man I am *not* going any farther back than that.

    Look ... nobody is going to be 'writing' much
    of ANYTHING within five years. The "AI" will do
    it all - probably led by the pointy-haired bosses
    who can't find their ass even with a spy sat.

    And Win/Lin/IX ... I think they're going to go
    away as well. It'll all just be thin clients
    plugged into the leading AI engines. No more
    operating systems.

    Maybe PIs ... maybe.

    "Programming" is going to be like those who learn
    to play ancient Greek musical instruments ... an
    interesting, but obsolete, old art. "AI" for worse
    or worser, will be IT. Many TRILLIONS of dollars
    invested in this - it is GOING to be The Future
    whether we like it or not.

    Just sayin'

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 02:00:37 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 15:50, Lawrence DrCOOliveiro wrote:
    On 10 Jan 2026 14:40:30 GMT, St|-phane CARPENTIER wrote:

    Le 08-01-2026, Lawrence DrCOOliveiro <ldo@nz.invalid> a |-crit-a:

    On Wed, 7 Jan 2026 19:21:09 -0700, Peter Flass wrote:

    FORTRAN and COBOL are still around, but I don't thinks anyone from
    the 70s would recognize them.

    COBOL is still COBOL. Fortran has evolved somewhat,
    post-Fortran-77.

    Is it really still the same COBOL?

    I imagine itrCOs still backward-compatible.

    MAYBE, sometimes ....

    There's a favorite word in computerdom ... "depricated".

    My point being that the new stuff added to Fortran changes the
    language out of all recognition (e.g. free-format source, user-defined
    types, type parameters, CONTAINS), whereas the same is not true of
    COBOL.

    FORTRAN is not remotely what it was.

    In some ways that makes it better/easier.

    But it's NOT the same.

    COBOL however became less used, and thus got kind
    of frozen in time. Kind of like "Latin".

    There are a few other useful langs that are kind of
    in the same boat as COBOL.

    FORTRAN ... it remains 'important', esp in academic
    and professional circles. Can NOT beat all the
    engineering/physics libs/functions writ for FORTRAN
    over the years ... a solution for EVERYTHING complex.
    It's not "popular" like Python ... but it's NOT going
    to go away anytime soon. A 'niche' lang, but it's an
    important niche.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From John Ames@commodorejohn@gmail.com to comp.os.linux.misc,alt.folklore.computers on Sat Jan 10 23:34:32 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 01:52:02 -0500
    c186282 <c186282@nnada.net> wrote:

    Look ... nobody is going to be 'writing' much of ANYTHING within five
    years. The "AI" will do it all - probably led by the pointy-haired
    bosses who can't find their ass even with a spy sat.

    The "AI" bubble isn't going to *last* another five years, full stop.
    Frankly, I'll be shocked if it makes it to '28, if that.

    You're not wrong that the PHBs would *love* to have a Magic Genie
    Friend who answers their poorly-specified and unreasonable demands
    without question, even if it doesn't actually *work* - but the current
    trend of "throw as much raw compute at the same moronic Markov-chain
    solution as possible, and somehow scrounge up more training data than
    THE ENTIRE INTERNET" will collapse under its own weight *long* before
    we ever get there.

    Why? There plain-and-simple *isn't the money for it* - global VC funds
    are draining at a staggering rate and the needle is inching closer and
    closer to *empty,* and major financial backers have finally started to
    go "wait, what if throwing infinite money at a thing that doesn't work
    *isn't* a sound investment strategy...?" And meanwhile, the morons at
    the major "AI" startups are continuing on with their moronic strategy,
    so that they continually need fresh injections of *even more money than
    they asked for last time.* PHBs will double down on a bad bet every
    time, but even *they* only have so many hundreds of billions to throw
    around willy-nilly.

    I'd strongly encourage you to check out Ed Zitron on this point: https://www.wheresyoured.at/the-enshittifinancial-crisis/#blue-owl-in-a-coal-mine
    It's looking a helluva lot like the "pop" has *already started* - one
    of the easiest partners in the funding business is looking at new "AI" datacenter deals (which they're already up to their *eyeballs* in) and
    going "um, no thanks." That's a "Jurassic Park" ripple-in-the-glass
    moment, right there.

    In ten years, this will be the stupidest, most expensive fiasco of a
    footnote in the history of the tech industry, and more than likely the harbinger of a global financial disaster - but it *won't* be the End Of Knowledge Work that the PHBs keep fantasizing it will.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 02:50:59 2026
    From Newsgroup: alt.folklore.computers

    On 1/11/26 02:34, John Ames wrote:
    On Sun, 11 Jan 2026 01:52:02 -0500
    c186282 <c186282@nnada.net> wrote:

    Look ... nobody is going to be 'writing' much of ANYTHING within five
    years. The "AI" will do it all - probably led by the pointy-haired
    bosses who can't find their ass even with a spy sat.

    The "AI" bubble isn't going to *last* another five years, full stop.
    Frankly, I'll be shocked if it makes it to '28, if that.

    Don't confuse the "bubble" - which IS doomed - with
    the tech.

    Expect maybe just TWO big AI providers to survive.
    CHAT will be one of them.

    You're not wrong that the PHBs would *love* to have a Magic Genie
    Friend who answers their poorly-specified and unreasonable demands
    without question, even if it doesn't actually *work* - but the current
    trend of "throw as much raw compute at the same moronic Markov-chain
    solution as possible, and somehow scrounge up more training data than
    THE ENTIRE INTERNET" will collapse under its own weight *long* before
    we ever get there.


    This is what I'm saying ... a LOT of stuff IS going
    to implode once AI starts writing everything.

    But, nobody CARES ... the AI shit is WAY too HOT
    for anyone to THINK.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Kettlewell@invalid@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:00:25 2026
    From Newsgroup: alt.folklore.computers

    c186282 <c186282@nnada.net> writes:
    From what I've read, even the Neanderthals knew how
    to build at least crude boats - pushed out onto some
    of the Greek islands.

    So yea, modern humans carried on the practice. It got
    them to England and beyond. Well, SOME of them ...
    the death rate would have been rather high for any
    long voyage.

    Building GOOD, large-ish, properly steerable boats ...
    THAT took much longer than expected. Seems easy now,
    but for whatever reasons the ancients had a hard time
    of it.

    England ... NOT too far. Even crap boats would do it.
    The Beaker People completely infiltrated the existing
    English pop about 4400bc - but they'd HAVE to have

    Nearer 2400BC.

    floated there. Clearly their boats were 'adequate',
    and there'd have been a LOT of them.

    Or a small number who consistently outcompeted the autochthonous
    population; IIRC they had multiple technological advantages e.g. bronze
    and the steppe package.
    --
    https://www.greenend.org.uk/rjk/
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:01:23 2026
    From Newsgroup: alt.folklore.computers

    On 10/01/2026 14:42, Peter Flass wrote:
    On 1/10/26 03:27, The Natural Philosopher wrote:

    Odd how that didn't 'destroy the planet'...



    It did if you lived in Doggerland, or used to walk from Australia to Indonesia.
    No it didn't. It destroyed doggerland. And as for walking to australia,
    well who honestly would want to?
    --
    Ideas are more powerful than guns. We would not let our enemies have
    guns, why should we let them have ideas?

    Josef Stalin

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:02:51 2026
    From Newsgroup: alt.folklore.computers

    On 10/01/2026 23:56, rbowman wrote:
    Our ancestors survived global warming, ice ages, plagues, wars, and
    all sorts of other problems, at least long enough to breed and pass
    on the genes.

    And they managed without feeling guilty about it. mostly.
    --
    It is the folly of too many to mistake the echo of a London coffee-house
    for the voice of the kingdom.

    Jonathan Swift


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:05:32 2026
    From Newsgroup: alt.folklore.computers

    On 10/01/2026 23:39, Bobbie Sellers wrote:


    On 1/10/26 11:44, rbowman wrote:
    On Sat, 10 Jan 2026 07:42:47 -0700, Peter Flass wrote:


    It did if you lived in Doggerland, or used to walk from Australia
    to Indonesia.

    https://en.wikipedia.org/wiki/Stone_Spring

    The rest of the trilogy, 'Bronze Summer' and 'Iron Winter', are
    okay but the focus moves from Doggerland.

    When Doggerland is submerged and the people have to leave it it
    seems totally logical that the focus would change to ancientry.
    Remember Doggerland was prehistoric so I cannot even say ancienty
    history but whatever the author according to his education can
    imagine of those times.

    Depends on your definition of prehistoric. Or ancient history.

    Archaelogy has brought mots of human 'prehistory' into the class of
    'fairly well known history'

    Worthwhile book in 'Stone Spring' in my ever so humble opinion

    Bliss

    --
    "Fanaticism consists in redoubling your effort when you have
    forgotten your aim."

    George Santayana

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:07:47 2026
    From Newsgroup: alt.folklore.computers

    On 10/01/2026 18:23, Scott Lurndal wrote:
    Odd how that didn't 'destroy the planet'...
    Apples are not equal to oranges.

    What a meaningless statement.
    And neither are seagulls steam engine.
    Your point being?
    --
    "Nature does not give up the winter because people dislike the cold."

    rCo Confucius

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:17:06 2026
    From Newsgroup: alt.folklore.computers

    On 10/01/2026 23:50, Bobbie Sellers wrote:

    -a-a-a-aDon't worry about the planet.-a With or without life on it Earth will take care of itself just as does Venus or Mercury.-a The risk is
    to the last few hundred years of human progress(?). We might
    manage to revert to barbarism if the temperature does not go too
    high for our systems by which I mean the whole means by which
    your body maintains homeostasis which includes food systems,
    medical systems, transport systems.-a I suspect without clear
    evidence that we may hit another bottleneck and suffer large
    losses of population and genetic diversity human and otherwise.

    Oh it wont get that bad.

    For real climate change you need a 1000 year volcanic eruption, or a a
    small asteroid hitting.

    This is just normal variation in an ice age interstadial.

    Of course people are going to die in large numbers, with or without
    climate change. We have build a technology based life support system
    governed by people who think of technologists as beneath contempt. Or dangerous. And are busy convincing the people that this is so.

    That is an unstable configuration.


    -a-a-a-abliss - always the cheery optimist...

    Yes, you are. The truth is far far worse.

    It wont be climate change that brings down the West, it will be
    renewable energy. Or a pandemic that some political demagogue claims is
    not real, so there is no need to get vaccinated...or simply invasion by
    people who don't give a shit for western values and think being nice
    means being weak., And turn out to be right.
    --
    "Nature does not give up the winter because people dislike the cold."

    rCo Confucius

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:19:45 2026
    From Newsgroup: alt.folklore.computers

    On 11/01/2026 03:48, c186282 wrote:
    The global climate has never gone "too hot" over
    -a the past BILLION years.

    -a However the "warm zone" has sometimes expanded to
    -a reach the poles.

    -a And sometimes contracted so there's icebergs at
    -a the equator.

    Yes. And in every case species that could not adapt died.

    As could be the case with homo liberalensis self righteus.

    We will probably see how well the city folk do without electricity...
    --
    The lifetime of any political organisation is about three years before
    its been subverted by the people it tried to warn you about.

    Anon.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:21:12 2026
    From Newsgroup: alt.folklore.computers

    On 10/01/2026 19:39, Charlie Gibbs wrote:
    On 2026-01-09, c186282 <c186282@nnada.net> wrote:

    'C' has added a few nicey-nice things, but not TOO much.
    You can (I do) stick pretty much to K&R and everything
    still works fine.

    I think of my style as "K&R plus prototypes". In fact, to
    work both ways, my code is still full of constructs like this:

    #ifdef PROTOTYPE
    int foo(char *bar, BOOL baz)
    #else
    int foo(bar, baz) char *bar; BOOL baz;
    #endif



    I write whichever way my compilers' defaults accept things.
    --
    All political activity makes complete sense once the proposition that
    all government is basically a self-legalising protection racket, is
    fully understood.


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:26:50 2026
    From Newsgroup: alt.folklore.computers

    On 11/01/2026 01:51, c186282 wrote:
    Stick to my estimation that England perhaps ranks
    -a as the "most invaded" country ever-a EfOe

    Yes, until 1066, after which it became the least.

    Nothing like having a navy comprised of pirates.
    --
    "When a true genius appears in the world, you may know him by this sign,
    that the dunces are all in confederacy against him."

    Jonathan Swift.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:29:53 2026
    From Newsgroup: alt.folklore.computers

    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of the reasons for the abandonment of Greenland along with climate change was
    an irrational reluctance of the Norse to eat fish. Excuse me? He bases
    that on the lack of fish bones in the middens. I've never had it but I
    think the process of producing h|ikarl might dissolve the bones.

    They are probably so hungry they ate the bones as well..

    The 'Norse' grew up on fish. One visit to sweden or Denmark will show
    1001 ways to prepare 'herring'

    A lot less pork chicken and beef on the menu.
    --
    rCLIdeas are inherently conservative. They yield not to the attack of
    other ideas but to the massive onslaught of circumstance"

    - John K Galbraith


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 11:47:17 2026
    From Newsgroup: alt.folklore.computers

    On 11/01/2026 06:17, c186282 wrote:
    From what I've read, even the Neanderthals knew how
    -a to build at least crude boats - pushed out onto some
    -a of the Greek islands.

    Those my well have not been islands, then. The Mediterranean was empty
    at the 'end' of the last ice age.

    But we know from stories and archaeology that the Greeks had
    sophisticated vessels mostly rowed by slaves by the end of the Bronze age.

    In fact England may house the earliest remains of a sea going boat from
    1500BC made of oak planks sewn together with Yew ...

    ...and as has been mentioned canoes and coracles go back even further
    than that.

    Not sure if Neanderthals had seagoing boats, but using a long to make a
    raft is basic tech.

    Since almost all of the tech back then was made of wood, we don't often
    find its remains.

    -a So yea, modern humans carried on the practice. It got
    -a them to England and beyond. Well, SOME of them ...
    -a the death rate would have been rather high for any
    -a long voyage.

    -a Building GOOD, large-ish, properly steerable boats ...
    -a THAT took much longer than expected. Seems easy now,
    -a but for whatever reasons the ancients had a hard time
    -a of it.

    Depends how far you go back.
    Greeks had coastal vessels around 2500BC for sure.

    -a England ... NOT too far. Even crap boats would do it.
    -a The Beaker People completely infiltrated the existing
    -a English pop about 4400bc - but they'd HAVE to have
    -a floated there. Clearly their boats were 'adequate',
    -a and there'd have been a LOT of them.

    Not necessarily. The 'English' channel was not sea until very late on.

    Although it went before Doggerland did.


    And even today illegal migration using craft no one describes as
    seaworthy is taking place across the Channel.
    --
    The theory of Communism may be summed up in one sentence: Abolish all
    private property.

    Karl Marx


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Harold Stevens@wookie@aspen.localdomain to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 05:55:12 2026
    From Newsgroup: alt.folklore.computers

    In <36F8R.627474$3Sk8.623325@fx46.iad> Charlie Gibbs:

    [Snip...]

    My code tends to be like an ATV: it might not be pretty,
    but it'll go anywhere.

    +1

    Some of the hottest flamewars I've seen in comp.lang.fortran bascially
    involved yelling about deprecated syntax embedded in ancient numerical
    code (EISPACK, BLAS etc) used in production dating back to the 1960's,

    It's very similar to the Wayland mob deciding what's best for users.

    Greybeard quants like me operated on 3 simple maxims:

    1. Anything that works is better than anything that doesn't.
    2. If if ain't broke, don't fix it.
    3. If it breaks, don't ignore it.
    --
    Regards, Weird (Harold Stevens) * IMPORTANT EMAIL INFO FOLLOWS *
    Pardon any bogus email addresses (wookie) in place for spambots.
    Really, it's (wyrd) at att, dotted with net. * DO NOT SPAM IT. *
    I toss (404) GoogleGroup (404 http://twovoyagers.com/improve-usenet.org/).
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Pancho@Pancho.Jones@protonmail.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 14:18:10 2026
    From Newsgroup: alt.folklore.computers

    On 1/11/26 11:55, Harold Stevens wrote:


    1. Anything that works is better than anything that doesn't.

    I think there exists a lot of code which makes the world a worse place,
    and hence it would be better if it didn't work.




    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 07:40:37 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 20:44, c186282 wrote:
    On 1/10/26 22:06, Peter Flass wrote:
    On 1/10/26 19:41, John Ames wrote:
    On Sun, 11 Jan 2026 00:27:20 +0000
    Nuno Silva <nunojsilva@invalid.invalid> wrote:

    People should have the choice of writing that way if they want. And
    you always have the choice of not reading it.

    (If this sounds too harsh to somebody: I wrote this because of how
    Lawrence repeatedly mentioned "choice" as a way to dismiss criticism
    in other threads in comp.os.linux.misc.)

    While I appreciate the zing, I do have to opine for the record that K&R
    function definitions really are something best left buried with K&R C.
    I'm willing to write in ANSI C for the sake of whatever random weirdo
    wants to try building something of mine on an old proprietary *nix, but
    man I am *not* going any farther back than that.


    It's never good to foreclose your options. One of my goals for Iron
    Spring PL/I is compatibility with the widest base of code possible. It
    can compile and run IBM PL/I(F) code from 1965. The newer stuff is
    better, but rewriting something that works is a pain.

    -a You got Iron Spring to run properly ?

    FSVO "properly". There are still features I'm working on, but it's "good enough" to compile itself and its run-time library. I have some users
    giving it a good work-out.



    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 07:43:11 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 22:39, rbowman wrote:
    On Sat, 10 Jan 2026 20:03:27 -0700, Peter Flass wrote:

    On 1/10/26 18:51, c186282 wrote:
    On 1/9/26 15:32, rbowman wrote:
    On Fri, 9 Jan 2026 10:00:20 +0000, The Natural Philosopher wrote:

    On 09/01/2026 04:13, John Ames wrote:
    They do now - but they had a different character once upon a time. >>>>>> England used to be a bunch of Celts and a handful of Roman expats 't >>>>> It was other people before that. too. Celts are late invaders from
    the broinze age.

    Before Doggerland sank anybody could wander over without having to
    build a coracle.

    -a Correct. However it mostly sank about 12,000 years ago when all the >>> -a ice melted. Even the Beaker People had to float over to England.

    -a Stick to my estimation that England perhaps ranks as the "most
    -a invaded" country ever-a :-)

    -a Original pop ? Who the fuck knows ?


    People just kept heading west, and when they got to England they had to
    stop.

    https://www.goodreads.com/book/show/2150867.Westviking https://en.wikipedia.org/wiki/The_Farfarers

    No, you just build a boat. Mowat has been accused of having a vivid imagination particularly for 'Never Cry Wolf' but he does point out that
    by island hopping in the Hebrides and Faroes before heading for Iceland
    you are only out if sight of land for a couple of days, assuming you don't get blown off course.

    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of the reasons for the abandonment of Greenland along with climate change was
    an irrational reluctance of the Norse to eat fish. Excuse me? He bases
    that on the lack of fish bones in the middens. I've never had it but I
    think the process of producing h|ikarl might dissolve the bones.


    Still a sad story. I think the last Norse in Greenland were reduced to
    eating their dogs. Inbreeding got to them, too.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 07:48:14 2026
    From Newsgroup: alt.folklore.computers

    On 1/10/26 23:52, c186282 wrote:
    On 1/10/26 21:41, John Ames wrote:
    On Sun, 11 Jan 2026 00:27:20 +0000
    Nuno Silva <nunojsilva@invalid.invalid> wrote:

    People should have the choice of writing that way if they want. And
    you always have the choice of not reading it.

    (If this sounds too harsh to somebody: I wrote this because of how
    Lawrence repeatedly mentioned "choice" as a way to dismiss criticism
    in other threads in comp.os.linux.misc.)

    While I appreciate the zing, I do have to opine for the record that K&R
    function definitions really are something best left buried with K&R C.
    I'm willing to write in ANSI C for the sake of whatever random weirdo
    wants to try building something of mine on an old proprietary *nix, but
    man I am *not* going any farther back than that.

    -a Look ... nobody is going to be 'writing' much
    -a of ANYTHING within five years. The "AI" will do
    -a it all - probably led by the pointy-haired bosses
    -a who can't find their ass even with a spy sat.

    -a And Win/Lin/IX ... I think they're going to go
    -a away as well. It'll all just be thin clients
    -a plugged into the leading AI engines. No more
    -a operating systems.

    -a Maybe PIs ... maybe.

    -a "Programming" is going to be like those who learn
    -a to play ancient Greek musical instruments ... an
    -a interesting, but obsolete, old art. "AI" for worse
    -a or worser, will be IT. Many TRILLIONS of dollars
    -a invested in this - it is GOING to be The Future
    -a whether we like it or not.

    -a Just sayin'


    I've seen this before. Remember 4GLs like MarkIV, et.al. that were going
    to make programming so simple that even a PHB could do it? I haven't
    heard much about them lately.

    Any AI-generated code is going to need a long hard look from a real
    programmer before going into production. Often it's harder to pick up someone's (or something's) code and verify and fix it than it is to
    write something from scratch where you understand how every part of it
    works.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From =?UTF-8?Q?St=C3=A9phane?= CARPENTIER@sc@fiat-linux.fr to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 14:55:01 2026
    From Newsgroup: alt.folklore.computers

    Le 11-01-2026, John Ames <commodorejohn@gmail.com> a |-crit-a:
    On Sun, 11 Jan 2026 01:52:02 -0500
    c186282 <c186282@nnada.net> wrote:

    Look ... nobody is going to be 'writing' much of ANYTHING within five
    years. The "AI" will do it all - probably led by the pointy-haired
    bosses who can't find their ass even with a spy sat.

    The "AI" bubble isn't going to *last* another five years, full stop.
    Frankly, I'll be shocked if it makes it to '28, if that.

    The AI bubble which must be considered (I mean: a lot of people has a
    lot of understanding of that term) is that big companies will stop
    to invest always more money on it. That doesn't mean the data centers
    will stop to work, it means that new data centers will stop to be build.
    At least at such increasing speed. It doesn't mean that actual GPU will
    cease to work. It means that big companies will stop to buy so many GPU.

    So, globally, everything that has already be done will stay. And new
    things will improve at a slower pace. The AI is there and will stay
    there for a long time. When the AI bubble will burst, its impact will
    be more on the global economy than on its usage.

    That's why the companies invest so much. Because the one which will
    have the lead at the time of the burst expects to keep that lead for a
    long time. Not because they are stupid and can't predict the obvious.

    The AI is there, like it or not, you have to live with it. The fact that
    you or I like it or not is irrelevant. Like when Platon was criticizing
    writing system because people stopped to learn by heart, the writing
    system was there, stay through the ages and revolutionised things. There
    are some things like farming, writing, electricity that changed
    everything on the human way of life. And the AI is one one them. There
    is no going back. I'm not saying that it's good or bad, I'm saying that
    it's the evolution (not progress because progress is good by definition)
    and one can't do anything but live with it.
    --
    Si vous avez du temps |a perdre :
    https://scarpet42.gitlab.io
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Andreas Eder@a_eder_muc@web.de to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 17:00:55 2026
    From Newsgroup: alt.folklore.computers

    On So 11 Jan 2026 at 14:18, Pancho wrote:

    On 1/11/26 11:55, Harold Stevens wrote:

    1. Anything that works is better than anything that doesn't.

    I think there exists a lot of code which makes the world a worse
    place, and hence it would be better if it didn't work.

    It doesn't. It is called Windows. :-)

    'Andreas
    --
    ceterum censeo redmondinem esse delendam
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 16:44:55 2026
    From Newsgroup: alt.folklore.computers

    rbowman <bowman@montana.com> writes:
    On Sat, 10 Jan 2026 20:03:27 -0700, Peter Flass wrote:



    People just kept heading west, and when they got to England they had to
    stop.



    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of >the reasons for the abandonment of Greenland along with climate change was >an irrational reluctance of the Norse to eat fish. Excuse me? He bases
    that on the lack of fish bones in the middens. I've never had it but I
    think the process of producing h|ikarl might dissolve the bones.

    One word. Lutefisk.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 16:47:51 2026
    From Newsgroup: alt.folklore.computers

    The Natural Philosopher <tnp@invalid.invalid> writes:
    On 10/01/2026 18:23, Scott Lurndal wrote:
    Odd how that didn't 'destroy the planet'...
    Apples are not equal to oranges.

    What a meaningless statement.

    Not in the context of the portion of the post you
    so conveniently deleted.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Charlie Gibbs@cgibbs@kltpzyxm.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 16:55:32 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-11, c186282 <c186282@nnada.net> wrote:

    FORTRAN ... it remains 'important', esp in academic
    and professional circles. Can NOT beat all the
    engineering/physics libs/functions writ for FORTRAN
    over the years ... a solution for EVERYTHING complex.
    It's not "popular" like Python ... but it's NOT going
    to go away anytime soon. A 'niche' lang, but it's an
    important niche.

    I always liked Stan Kelly-Bootle's entry on FORTRAN
    in his "Devil's DP Dictionary":

    "FORTRAN n. [Acronym for FORmula TRANslating system.]
    One of the earliest languages of any real height, level-wise, developed
    out of Speedcoding by Backus and Ziller for the IBM 704 in the mid 1950s
    in order to boost the sale of 80-column cards to engineers.
    In spite of regular improvements (including a recent option called 'STRUCTURE'), it remains popular among engineers but despised elsewhere.
    Many rivals, with the benefit of hindsight, have crossed swords with
    the old workhorse! Yet FORTRAN gallops on, warts and all, more
    transportable than syphilis, fired by a bottomless pit of working
    subprograms. Lacking the compact power of APL, the intellectually
    satisfying elegance of ALGOL 68, the didactic incision of Pascal,
    and the spurned universality of PL/I, FORTRAN survives, nay,
    flourishes, thanks to a superior investmental inertia."
    --
    /~\ Charlie Gibbs | Growth for the sake of
    \ / <cgibbs@kltpzyxm.invalid> | growth is the ideology
    X I'm really at ac.dekanfrus | of the cancer cell.
    / \ if you read it the right way. | -- Edward Abbey
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Niklas Karlsson@nikke.karlsson@gmail.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 17:44:56 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of >> the reasons for the abandonment of Greenland along with climate change was >> an irrational reluctance of the Norse to eat fish. Excuse me? He bases
    that on the lack of fish bones in the middens. I've never had it but I
    think the process of producing h|ikarl might dissolve the bones.

    They are probably so hungry they ate the bones as well..

    The 'Norse' grew up on fish. One visit to sweden or Denmark will show
    1001 ways to prepare 'herring'

    A lot less pork chicken and beef on the menu.

    You exaggerate. Sure, fish is _a_ cornerstone in our cuisine, but only
    one. I would not say there is a _lot_ less pork, chicken and beef.
    Personally I don't eat fish very often, and neither do most people I
    know.

    Niklas
    --
    Today's product of a disturbed mind: The image of an acoustic coupler
    fitted with ball gags.
    -- Steve VanDevender in asr
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 19:44:27 2026
    From Newsgroup: alt.folklore.computers

    On 11/01/2026 16:47, Scott Lurndal wrote:
    The Natural Philosopher <tnp@invalid.invalid> writes:
    On 10/01/2026 18:23, Scott Lurndal wrote:
    Odd how that didn't 'destroy the planet'...
    Apples are not equal to oranges.

    What a meaningless statement.

    Not in the context of the portion of the post you
    so conveniently deleted.

    yes in the context of the bit of post you haven't bothered to repost
    --
    "I am inclined to tell the truth and dislike people who lie consistently.
    This makes me unfit for the company of people of a Left persuasion, and
    all women"

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 19:46:28 2026
    From Newsgroup: alt.folklore.computers

    On 11/01/2026 17:44, Niklas Karlsson wrote:
    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of >>> the reasons for the abandonment of Greenland along with climate change was >>> an irrational reluctance of the Norse to eat fish. Excuse me? He bases
    that on the lack of fish bones in the middens. I've never had it but I
    think the process of producing h|ikarl might dissolve the bones.

    They are probably so hungry they ate the bones as well..

    The 'Norse' grew up on fish. One visit to sweden or Denmark will show
    1001 ways to prepare 'herring'

    A lot less pork chicken and beef on the menu.

    You exaggerate. Sure, fish is _a_ cornerstone in our cuisine, but only
    one. I would not say there is a _lot_ less pork, chicken and beef.
    Personally I don't eat fish very often, and neither do most people I
    know.

    Niklas

    Well the point being that Norse nations are well able to survive on fish
    if they have to.
    --
    Civilization exists by geological consent, subject to change without notice.
    rCo Will Durant

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Niklas Karlsson@nikke.karlsson@gmail.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 20:23:56 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 17:44, Niklas Karlsson wrote:
    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of >>>> the reasons for the abandonment of Greenland along with climate change was >>>> an irrational reluctance of the Norse to eat fish. Excuse me? He bases >>>> that on the lack of fish bones in the middens. I've never had it but I >>>> think the process of producing h|ikarl might dissolve the bones.

    They are probably so hungry they ate the bones as well..

    The 'Norse' grew up on fish. One visit to sweden or Denmark will show
    1001 ways to prepare 'herring'

    A lot less pork chicken and beef on the menu.

    You exaggerate. Sure, fish is _a_ cornerstone in our cuisine, but only
    one. I would not say there is a _lot_ less pork, chicken and beef.
    Personally I don't eat fish very often, and neither do most people I
    know.

    Niklas

    Well the point being that Norse nations are well able to survive on fish
    if they have to.

    That I'll agree with... though I'm not sure how sustainable the level of fishing would be that we'd have to do if fish and maybe shellfish were
    our only protein.

    Niklas
    --
    Some ships are designed to sink; others require our assistance.
    -- submariner saying
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Lawrence =?iso-8859-13?q?D=FFOliveiro?=@ldo@nz.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 20:24:12 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 16:55:32 GMT, Charlie Gibbs wrote:

    "FORTRAN ... remains popular among engineers but despised elsewhere."

    Considering its enduring popularity among the supercomputing crowd,
    IrCOd say that assessment is a bit out of date.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 20:30:05 2026
    From Newsgroup: alt.folklore.computers

    On 11/01/2026 20:23, Niklas Karlsson wrote:
    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 17:44, Niklas Karlsson wrote:
    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of
    the reasons for the abandonment of Greenland along with climate change was
    an irrational reluctance of the Norse to eat fish. Excuse me? He bases >>>>> that on the lack of fish bones in the middens. I've never had it but I >>>>> think the process of producing h|ikarl might dissolve the bones.

    They are probably so hungry they ate the bones as well..

    The 'Norse' grew up on fish. One visit to sweden or Denmark will show
    1001 ways to prepare 'herring'

    A lot less pork chicken and beef on the menu.

    You exaggerate. Sure, fish is _a_ cornerstone in our cuisine, but only
    one. I would not say there is a _lot_ less pork, chicken and beef.
    Personally I don't eat fish very often, and neither do most people I
    know.

    Niklas

    Well the point being that Norse nations are well able to survive on fish
    if they have to.

    That I'll agree with... though I'm not sure how sustainable the level of fishing would be that we'd have to do if fish and maybe shellfish were
    our only protein.

    The Norse greenlanders were never huge in number and the natives knew
    how to fish.

    I suspect the Norse said 'fuck this lets go home' and abandoned
    greenland as being not worth the effort.



    Niklas
    --
    "It is an established fact to 97% confidence limits that left wing conspirators see right wing conspiracies everywhere"

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 20:44:50 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 05:55:12 -0600, Harold Stevens wrote:

    Greybeard quants like me operated on 3 simple maxims:

    1. Anything that works is better than anything that doesn't.
    2. If if ain't broke, don't fix it.
    3. If it breaks, don't ignore it.

    Those go way beyond programming...

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 20:57:33 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 11:29:53 +0000, The Natural Philosopher wrote:

    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims that one
    of the reasons for the abandonment of Greenland along with climate
    change was an irrational reluctance of the Norse to eat fish. Excuse
    me? He bases that on the lack of fish bones in the middens. I've never
    had it but I think the process of producing h|ikarl might dissolve the
    bones.

    They are probably so hungry they ate the bones as well..

    We used to have fried smelts, fins, tail, and scales, usually without the head. This isn't the best area for seafood but the only ones I've seen in
    the market lately were marked as bait.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Niklas Karlsson@nikke.karlsson@gmail.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 21:17:16 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 20:23, Niklas Karlsson wrote:
    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:

    Well the point being that Norse nations are well able to survive on fish >>> if they have to.

    That I'll agree with... though I'm not sure how sustainable the level of
    fishing would be that we'd have to do if fish and maybe shellfish were
    our only protein.

    The Norse greenlanders were never huge in number and the natives knew
    how to fish.

    Oh, certainly. Greenland back in the day was a whole other story than if
    we tried that today. Of course, at least some fish can be farmed, though
    there are concerns about whether that stuff is actually healthy eating.

    I suspect the Norse said 'fuck this lets go home' and abandoned
    greenland as being not worth the effort.

    Seems likely.

    Niklas
    --
    I defy anyone to find a mountain whereupon the dew is this particular
    colour, and then return to tell me about it. And no fair wearing
    rad-suits for the journey.
    -- Carl Jacobs
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 21:31:33 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 02:00:37 -0500, c186282 wrote:

    FORTRAN ... it remains 'important', esp in academic and professional
    circles. Can NOT beat all the engineering/physics libs/functions writ
    for FORTRAN over the years ... a solution for EVERYTHING complex.
    It's not "popular" like Python ... but it's NOT going to go away
    anytime soon. A 'niche' lang, but it's an important niche.

    https://geodesy.noaa.gov/PC_PROD/SPCS83/

    The new tool uses Java. The download zip has 28 .for files. Just for
    kicks, substituting 'f77' for 'c:\G77\bin\g77' and running make produces
    the original spcs83 in all its glory.

    There is a trove of Fortran code available from NOAA and related agencies.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 21:34:29 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 16:44:55 GMT, Scott Lurndal wrote:

    rbowman <bowman@montana.com> writes:
    On Sat, 10 Jan 2026 20:03:27 -0700, Peter Flass wrote:



    People just kept heading west, and when they got to England they had
    to stop.



    He tells a plausible story. In 'Collapse' Jared Diamond claims that one
    of the reasons for the abandonment of Greenland along with climate
    change was an irrational reluctance of the Norse to eat fish. Excuse me?
    He bases that on the lack of fish bones in the middens. I've never had
    it but I think the process of producing h|ikarl might dissolve the bones.

    One word. Lutefisk.

    Butter, lots of butter. Big problem if the cows died off and there was no butter. It shows up around here at Christmas time. I've been told by knowledgeable people Norwegians in the US eat lutefisk and Norwegians in Norway eat frozen pizza.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 21:35:20 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 11:26:50 +0000, The Natural Philosopher wrote:

    On 11/01/2026 01:51, c186282 wrote:
    Stick to my estimation that England perhaps ranks
    -a as the "most invaded" country ever-a EfOe

    Yes, until 1066, after which it became the least.

    Nothing like having a navy comprised of pirates.

    And a merchant class comprised of pirates... Wasn't there a Monty Python sketch about that?
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Niklas Karlsson@nikke.karlsson@gmail.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 21:38:00 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-11, rbowman <bowman@montana.com> wrote:
    On Sun, 11 Jan 2026 16:44:55 GMT, Scott Lurndal wrote:

    rbowman <bowman@montana.com> writes:
    On Sat, 10 Jan 2026 20:03:27 -0700, Peter Flass wrote:



    People just kept heading west, and when they got to England they had
    to stop.



    He tells a plausible story. In 'Collapse' Jared Diamond claims that one >>>of the reasons for the abandonment of Greenland along with climate
    change was an irrational reluctance of the Norse to eat fish. Excuse me? >>>He bases that on the lack of fish bones in the middens. I've never had
    it but I think the process of producing h|ikarl might dissolve the bones.

    One word. Lutefisk.

    Butter, lots of butter. Big problem if the cows died off and there was no butter. It shows up around here at Christmas time. I've been told by knowledgeable people Norwegians in the US eat lutefisk and Norwegians in Norway eat frozen pizza.

    I am not that familiar with that aspect of our neighbors, but I can
    believe it. We have lutfisk (yes, we spell it without the E) and I
    certainly don't care for it. Fortunately, very rarely has anyone
    attempted to serve it to me.

    Niklas
    --
    Lithospheric flight paths typically result in extremely high drag
    coefficients, often quite a bit in excess of design parameters.
    -- Rick Dickinson
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 21:49:49 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 11:05:32 +0000, The Natural Philosopher wrote:

    Archaelogy has brought mots of human 'prehistory' into the class of
    'fairly well known history'

    With caveats. There have been many moments of 'oops, that stuff is a hell
    of a lot older than we thought it was.' Even Chris Stringer had to change
    his story although the popular conception is lagging.

    https://en.wikipedia.org/wiki/Milford_H._Wolpoff

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 17:58:31 2026
    From Newsgroup: alt.folklore.computers

    On 1/11/26 15:23, Niklas Karlsson wrote:
    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 17:44, Niklas Karlsson wrote:
    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims that one of
    the reasons for the abandonment of Greenland along with climate change was
    an irrational reluctance of the Norse to eat fish. Excuse me? He bases >>>>> that on the lack of fish bones in the middens. I've never had it but I >>>>> think the process of producing h|ikarl might dissolve the bones.

    They are probably so hungry they ate the bones as well..

    The 'Norse' grew up on fish. One visit to sweden or Denmark will show
    1001 ways to prepare 'herring'

    A lot less pork chicken and beef on the menu.

    You exaggerate. Sure, fish is _a_ cornerstone in our cuisine, but only
    one. I would not say there is a _lot_ less pork, chicken and beef.
    Personally I don't eat fish very often, and neither do most people I
    know.

    Niklas

    Well the point being that Norse nations are well able to survive on fish
    if they have to.

    That I'll agree with... though I'm not sure how sustainable the level of fishing would be that we'd have to do if fish and maybe shellfish were
    our only protein.

    Many stocks of fish are already depleted or nearly so,
    and that's just at CURRENT levels of consumption. The
    "bounty of the sea" is NOT unlimited, not at all.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 18:00:32 2026
    From Newsgroup: alt.folklore.computers

    On 1/11/26 15:24, Lawrence DrCOOliveiro wrote:
    On Sun, 11 Jan 2026 16:55:32 GMT, Charlie Gibbs wrote:

    "FORTRAN ... remains popular among engineers but despised elsewhere."

    Considering its enduring popularity among the supercomputing crowd,
    IrCOd say that assessment is a bit out of date.

    There's no reason to "despise" FORTRAN anyhow.
    It's a pretty straight-forwards sort of lang
    with an emphasis on numerical calx but in no
    way limited to that sphere.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 18:05:03 2026
    From Newsgroup: alt.folklore.computers

    On 1/11/26 15:30, The Natural Philosopher wrote:
    On 11/01/2026 20:23, Niklas Karlsson wrote:
    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 17:44, Niklas Karlsson wrote:
    On 2026-01-11, The Natural Philosopher <tnp@invalid.invalid> wrote:
    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims
    that one of
    the reasons for the abandonment of Greenland along with climate
    change was
    an irrational reluctance of the Norse to eat fish. Excuse me? He
    bases
    that on the lack of fish bones in the middens. I've never had it
    but I
    think the process of producing h|ikarl might dissolve the bones.

    They are probably so hungry they ate the bones as well..

    The 'Norse' grew up on fish. One visit to sweden or Denmark will show >>>>> 1001 ways to prepare 'herring'

    A lot less pork chicken and beef on the menu.

    You exaggerate. Sure, fish is _a_ cornerstone in our cuisine, but only >>>> one. I would not say there is a _lot_ less pork, chicken and beef.
    Personally I don't eat fish very often, and neither do most people I
    know.

    Niklas

    Well the point being that Norse nations are well able to survive on fish >>> if they have to.

    That I'll agree with... though I'm not sure how sustainable the level of
    fishing would be that we'd have to do if fish and maybe shellfish were
    our only protein.
    The Norse greenlanders were never huge in number and the natives knew
    how to fish.

    I suspect the Norse said 'fuck this lets go home' and abandoned
    greenland as being not worth the effort.

    On his way to America in the latter 1800s, Grandpa DID
    visit Greenland to see if there were any opportunities.
    Let's just say he caught the next boat west :-)

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 00:47:29 2026
    From Newsgroup: alt.folklore.computers

    rbowman <bowman@montana.com> writes:
    On Sun, 11 Jan 2026 16:44:55 GMT, Scott Lurndal wrote:

    rbowman <bowman@montana.com> writes:
    On Sat, 10 Jan 2026 20:03:27 -0700, Peter Flass wrote:



    People just kept heading west, and when they got to England they had
    to stop.



    He tells a plausible story. In 'Collapse' Jared Diamond claims that one >>>of the reasons for the abandonment of Greenland along with climate
    change was an irrational reluctance of the Norse to eat fish. Excuse me? >>>He bases that on the lack of fish bones in the middens. I've never had
    it but I think the process of producing h|ikarl might dissolve the bones.

    One word. Lutefisk.

    Butter, lots of butter. Big problem if the cows died off and there was no >butter. It shows up around here at Christmas time. I've been told by >knowledgeable people Norwegians in the US eat lutefisk and Norwegians in >Norway eat frozen pizza.


    http://linuxmafia.com/humour/power-of-lutefisk.html

    The only good thing about lutefisk is that it is generally
    accompanied by meatballs and mashed potatoes (and lefse).
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sun Jan 11 21:19:07 2026
    From Newsgroup: alt.folklore.computers

    On 1/11/26 16:49, rbowman wrote:
    On Sun, 11 Jan 2026 11:05:32 +0000, The Natural Philosopher wrote:

    Archaelogy has brought mots of human 'prehistory' into the class of
    'fairly well known history'

    With caveats. There have been many moments of 'oops, that stuff is a hell
    of a lot older than we thought it was.' Even Chris Stringer had to change
    his story although the popular conception is lagging.

    https://en.wikipedia.org/wiki/Milford_H._Wolpoff

    Let's say "history" is an "ongoing project".

    There's more digging than ever, more and better
    dating techniques. The picture will continue to
    evolve for quite awhile.

    Alas, >10,000 years, nobody seemed to have any sort
    of good writing system. Some cute pictures and a few
    obscure hieroglyphs but little else. We've looked
    in caves, dug though lots of dirt, nada. This limits
    the detail in which we can see our past.

    "Humans" seem to date back 300,000 years ... and
    a few really close cousins go back much further.
    But detailed records ... we're screwed. It is
    suggested that written language was essentially
    invented by Sumerian BUREAUCRATS charged with
    keeping detailed records of laws, biz transactions
    and such. Writing was a product of civ SIZE and
    complexity. Smaller/looser groups didn't need it.
    Indeed wide literacy was not even seen in western
    civ until the 1800s.

    Alas without detailed records we may find old THINGS,
    but what they MEANT, their context, is forever lost.
    That's just half a view of 'history'.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From antispam@antispam@fricas.org (Waldek Hebisch) to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 02:42:42 2026
    From Newsgroup: alt.folklore.computers

    In alt.folklore.computers St|-phane CARPENTIER <sc@fiat-linux.fr> wrote:
    Le 11-01-2026, John Ames <commodorejohn@gmail.com> a |-crit-a:
    On Sun, 11 Jan 2026 01:52:02 -0500
    c186282 <c186282@nnada.net> wrote:

    Look ... nobody is going to be 'writing' much of ANYTHING within five
    years. The "AI" will do it all - probably led by the pointy-haired
    bosses who can't find their ass even with a spy sat.

    The "AI" bubble isn't going to *last* another five years, full stop.
    Frankly, I'll be shocked if it makes it to '28, if that.

    The AI bubble which must be considered (I mean: a lot of people has a
    lot of understanding of that term) is that big companies will stop
    to invest always more money on it. That doesn't mean the data centers
    will stop to work, it means that new data centers will stop to be build.
    At least at such increasing speed. It doesn't mean that actual GPU will
    cease to work. It means that big companies will stop to buy so many GPU.

    So, globally, everything that has already be done will stay. And new
    things will improve at a slower pace. The AI is there and will stay
    there for a long time. When the AI bubble will burst, its impact will
    be more on the global economy than on its usage.

    That's why the companies invest so much. Because the one which will
    have the lead at the time of the burst expects to keep that lead for a
    long time. Not because they are stupid and can't predict the obvious.

    The AI is there, like it or not, you have to live with it. The fact that
    you or I like it or not is irrelevant. Like when Platon was criticizing writing system because people stopped to learn by heart, the writing
    system was there, stay through the ages and revolutionised things. There
    are some things like farming, writing, electricity that changed
    everything on the human way of life. And the AI is one one them. There
    is no going back. I'm not saying that it's good or bad, I'm saying that
    it's the evolution (not progress because progress is good by definition)
    and one can't do anything but live with it.

    I think you miss the point. First, a lot was promised and there
    is still hope that big thing will be delivered. So, active players
    may win really big, that is why money still flows in.

    Now, concerning burst: AFAIK AI companies use investment money to
    cover cost of operation (whole or in significant part). If there
    is burst, they will have to stop operating literally closing
    their datacenters. Basically only things that generate profits
    or possibly some research by companies that have other sources of
    income and still want to continue research. But that would be
    at much lower scale than currently.

    Now, concerning 'AI is there', there was significant progress in
    some areas like machine translation. "Creative writers" may be
    concerned. But there were attempts to replace a lot of professionals,
    notably programmers. Examples indicate that "AI" can create
    small, trival pieces of code but does not really work for
    bigger and more complex things. To be useful for programming "AI"
    and way it is used must be significantly improved. It is possible
    that slower, gradual improvement will lead to "useful AI".
    But it is also possible that alternative approaches, currently
    underfunded due to AI race, will progress and be used insted
    of "AI".

    Let me say that I am an AI fan and that eventually we will have
    useful AI. But current trend seem to be fundamentally wrong.
    I mean, educated young person got maybe 20 years exposure to
    learning materials. Assuming reading 10 hours daily at 10 cps
    we get about 2.6 GB of learning material. Beside reading there
    is speach, smell, touch and visual innformation. Speach has
    similar speed as reading, smell and touch seem to be lower
    bandwidth. Theoretially visual tract has huge bandwidth, but
    blind people seem to be as inteligent as others, so visual
    part is likely to be noncritcal for general inteligence (as
    oposed to some sepcific visial tasks). So 2.6 GB looks like
    very generous estimate on amount of training material needed
    for human-level inteligence. Yet current AI uses vastly bigger
    training sets giving much lower performance. I have heard
    from neural network specialist that current network training
    algorithms are vastly more efficient than traing going on
    in brain (or rather vastly more efficient than our current
    idea of what is going on inside brain). Yet computational
    cost of AI training seem to approach estimated peak compute
    power of human brain times time needed for learning.

    So, it looks that for general AI we are missing something
    important. For applications ANN apparently struggle with
    tasks that have easy algorithmic solution. So natural way
    forward with applications seem to be via hybrid approaches.
    But AI crowd seem to prefer pure ANN solutions and tries
    to brute-force problems using more compute power.
    --
    Waldek Hebisch
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 03:47:03 2026
    From Newsgroup: alt.folklore.computers

    On Sun, 11 Jan 2026 17:58:31 -0500, c186282 wrote:

    Many stocks of fish are already depleted or nearly so,
    and that's just at CURRENT levels of consumption. The "bounty of the
    sea" is NOT unlimited, not at all.

    Some of the species I see in the market would have been classified as cat
    food 60 years ago.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 04:10:10 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 00:47:29 GMT, Scott Lurndal wrote:


    http://linuxmafia.com/humour/power-of-lutefisk.html

    The only good thing about lutefisk is that it is generally accompanied
    by meatballs and mashed potatoes (and lefse).

    Is isn't that bad. That's not to say it's good. It's blandly neutral. One
    of the local Lutheran churches had it for the entree for their
    sm||rg|Nsbord, to mix metaphors or something. The meatballs, herring, and other edibles were on the bord. Meatballs are too colorful to be served
    with lutefisk.

    They did have gjetost, which makes up for it. The stuff is dangerous
    though.

    https://www.newsinenglish.no/2013/01/22/burning-brown-cheese-closes-
    tunnel/

    The Ski Queen brand must not be the real thing. It doesn't burn.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 11:49:24 2026
    From Newsgroup: alt.folklore.computers

    On 11/01/2026 20:44, rbowman wrote:
    On Sun, 11 Jan 2026 05:55:12 -0600, Harold Stevens wrote:

    Greybeard quants like me operated on 3 simple maxims:

    1. Anything that works is better than anything that doesn't.
    2. If if ain't broke, don't fix it.
    3. If it breaks, don't ignore it.

    Those go way beyond programming...

    Part of the 'philosophy of engineering'.

    Perhaps the most fundamental one, after 'an engineer is someone who can
    do for five bob what any damn fool can do for a quid' is

    'In the construction of mechanisms, complexity should not be multiplied
    beyond that necessary to achieve the defined objective'

    Ockham's Laser...
    --
    Canada is all right really, though not for the whole weekend.

    "Saki"

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 11:50:10 2026
    From Newsgroup: alt.folklore.computers

    On 11/01/2026 20:57, rbowman wrote:
    On Sun, 11 Jan 2026 11:29:53 +0000, The Natural Philosopher wrote:

    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims that one
    of the reasons for the abandonment of Greenland along with climate
    change was an irrational reluctance of the Norse to eat fish. Excuse
    me? He bases that on the lack of fish bones in the middens. I've never
    had it but I think the process of producing h|ikarl might dissolve the
    bones.

    They are probably so hungry they ate the bones as well..

    We used to have fried smelts, fins, tail, and scales, usually without the head. This isn't the best area for seafood but the only ones I've seen in the market lately were marked as bait.

    In the UK 'whitebait' are fried fish eaten whole...
    --
    Canada is all right really, though not for the whole weekend.

    "Saki"

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 11:57:25 2026
    From Newsgroup: alt.folklore.computers

    ...
    On 11/01/2026 21:35, rbowman wrote:
    On Sun, 11 Jan 2026 11:26:50 +0000, The Natural Philosopher wrote:

    On 11/01/2026 01:51, c186282 wrote:
    Stick to my estimation that England perhaps ranks
    -a as the "most invaded" country ever-a EfOe

    Yes, until 1066, after which it became the least.

    Nothing like having a navy comprised of pirates.

    And a merchant class comprised of pirates... Wasn't there a Monty Python sketch about that?

    Dunno. There is a Trumpian experiment ongoing to see exactly where that
    leads, of course...

    In the end, we developed democracy. The amount of loot the war winners
    gained was always less than they spent on defeating the opposition.

    Probably the USA will end up doing the same.

    After having explored all the other alternatives.

    Elizabeth I is quoted as saying 'war is such a chancy thing' or similar.
    --
    New Socialism consists essentially in being seen to have your heart in
    the right place whilst your head is in the clouds and your hand is in
    someone else's pocket.


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 07:45:11 2026
    From Newsgroup: alt.folklore.computers

    On 1/11/26 19:19, c186282 wrote:


    -a Alas without detailed records we may find old THINGS,
    -a but what they MEANT, their context, is forever lost.
    -a That's just half a view of 'history'.


    "It's a ritual object."

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Carlos E.R.@robin_listas@es.invalid to comp.os.linux.misc,alt.folklore.computers,alt.unix.geeks on Mon Jan 12 15:44:56 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-07 23:49, rbowman wrote:
    On Wed, 7 Jan 2026 13:30:14 +0100, Carlos E.R. wrote:

    On 2026-01-06 19:57, Charlie Gibbs wrote:
    On 2026-01-06, Lars Poulsen <lars@beagle-ears.com> wrote:

    On 2026-01-06, Carlos E.R. <robin_listas@es.invalid> wrote:

    My C teacher said it was a mistake to use C as an all purpose
    language, like for userland applications. Using C is the cause of
    many bugs that a proper language would catch.

    That was around 1991.

    He knew. He participated in some study tasked by the Canadian
    government to study C compilers, but he could not talk about what
    they wrote.

    What language(s) did he suggest instead?

    I don't remember if he did. Maybe he told samples, but I think he mostly
    told us of quirks of the language, things that were errors, but that the
    compiler did not signal, so that we being aware we would write correct C
    code.

    It is possible that current C compilers signal many more problems that
    back then, but not runtime errors.

    gcc has become pickier. That isn't always a welcome thing when working
    with legacy code and requires a search of the compiler options to get it
    to shut up about such horrible heresies as assuming a function returns an int.

    If the code were mine, I would correct the code. Even back then, I did
    not take the assumption that a function would return an integer :-D

    I wrote explicit prototypes in the header file. :-)


    If the code is not mine, I would use the compiler options instead.
    Unless I got paid to maintain that code, then I would correct the code.
    --
    Cheers, Carlos.
    ESEfc-Efc+, EUEfc-Efc|;
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 07:50:24 2026
    From Newsgroup: alt.folklore.computers

    On 1/11/26 19:42, Waldek Hebisch wrote:


    Now, concerning 'AI is there', there was significant progress in
    some areas like machine translation. "Creative writers" may be
    concerned. But there were attempts to replace a lot of professionals, notably programmers. Examples indicate that "AI" can create
    small, trival pieces of code but does not really work for
    bigger and more complex things. To be useful for programming "AI"
    and way it is used must be significantly improved.

    I know this is kind of niche, but just for kicks I asked ChatGPT to
    generate a PL/I version of a structure. I have to say I'm surprised that
    it even knew what PL/I is, but I was more surprised that it
    "hallucinated" some non-existent syntax. I thought it had to be me, but
    I researched it and couldn't find it in any compiler or dialect.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 07:52:46 2026
    From Newsgroup: alt.folklore.computers

    On 1/12/26 04:49, The Natural Philosopher wrote:
    On 11/01/2026 20:44, rbowman wrote:
    On Sun, 11 Jan 2026 05:55:12 -0600, Harold Stevens wrote:

    Greybeard quants like me operated on 3 simple maxims:

    1. Anything that works is better than anything that doesn't.
    2. If if ain't broke, don't fix it.
    3. If it breaks, don't ignore it.

    Those go way beyond programming...

    Part of the 'philosophy of engineering'.

    Perhaps the most fundamental one, after 'an engineer is someone who can
    do for five bob what any damn fool can do for a quid' is

    'In the construction of mechanisms, complexity should not be multiplied beyond that necessary to achieve the defined objective'

    Ockham's Laser...


    Now if only computer people could follow this rule. Our rule seems to be
    "why not add just this one more feature"
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 15:44:40 2026
    From Newsgroup: alt.folklore.computers

    rbowman <bowman@montana.com> writes:
    On Mon, 12 Jan 2026 00:47:29 GMT, Scott Lurndal wrote:


    http://linuxmafia.com/humour/power-of-lutefisk.html

    The only good thing about lutefisk is that it is generally accompanied
    by meatballs and mashed potatoes (and lefse).

    Is isn't that bad. That's not to say it's good.

    It's blandly neutral.

    He says as the gelatinous fishy slime slides down his throat :-)

    We had it twice a year for decades. Yes, butter helps to mask
    the the flavor, but nothing masks the consistency (or lack thereof).

    Desert (Rommegrot) was good, if not particularly healthy:

    https://www.cheaprecipeblog.com/2015/04/rommegrot-norwegian-cream-pudding/ --- Synchronet 3.21a-Linux NewsLink 1.2
  • From John Ames@commodorejohn@gmail.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 08:11:36 2026
    From Newsgroup: alt.folklore.computers

    On 11 Jan 2026 21:38:00 GMT
    Niklas Karlsson <nikke.karlsson@gmail.com> wrote:

    Butter, lots of butter. Big problem if the cows died off and there
    was no butter. It shows up around here at Christmas time. I've
    been told by knowledgeable people Norwegians in the US eat lutefisk
    and Norwegians in Norway eat frozen pizza.

    I am not that familiar with that aspect of our neighbors, but I can
    believe it. We have lutfisk (yes, we spell it without the E) and I
    certainly don't care for it. Fortunately, very rarely has anyone
    attempted to serve it to me.

    It's Considered Traditional among the older generations of Norwegian- Americans, to the point where you can find it in the grocery store in
    the northern Midwest. Have never tried it myself, but I've seen (and
    smelled) it at family gatherings.

    Now krumkake, *that's* a slice of the Old Country I can get behind.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From John Ames@commodorejohn@gmail.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 08:25:30 2026
    From Newsgroup: alt.folklore.computers

    On 12 Jan 2026 04:10:10 GMT
    rbowman <bowman@montana.com> wrote:

    They did have gjetost, which makes up for it. The stuff is dangerous though.

    https://www.newsinenglish.no/2013/01/22/burning-brown-cheese-closes-
    tunnel/

    The Ski Queen brand must not be the real thing. It doesn't burn.

    Gosh, I'd forgotten about gjetost. Need to get some of that again.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Charlie Gibbs@cgibbs@kltpzyxm.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 17:03:19 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-12, Peter Flass <Peter@Iron-Spring.com> wrote:

    On 1/12/26 04:49, The Natural Philosopher wrote:

    On 11/01/2026 20:44, rbowman wrote:

    On Sun, 11 Jan 2026 05:55:12 -0600, Harold Stevens wrote:

    Greybeard quants like me operated on 3 simple maxims:

    1. Anything that works is better than anything that doesn't.
    2. If if ain't broke, don't fix it.
    3. If it breaks, don't ignore it.

    Those go way beyond programming...

    Part of the 'philosophy of engineering'.

    Perhaps the most fundamental one, after 'an engineer is someone who can
    do for five bob what any damn fool can do for a quid' is

    'In the construction of mechanisms, complexity should not be multiplied
    beyond that necessary to achieve the defined objective'

    Ockham's Laser...

    :-)

    Now if only computer people could follow this rule. Our rule seems to be "why not add just this one more feature"

    To be fair, I'm sure a lot of computer people are doing this
    under duress, being ordered by the marketroids (who have the
    ear of management) to add yet another shiny thing.

    Perfection is achieved, not when there
    is nothing more to add, but when there
    is nothing left to take away.
    -- Antoine de Saint Exup|-ry

    Simplify, simplify.
    -- Henry David Thoreau
    --
    /~\ Charlie Gibbs | Growth for the sake of
    \ / <cgibbs@kltpzyxm.invalid> | growth is the ideology
    X I'm really at ac.dekanfrus | of the cancer cell.
    / \ if you read it the right way. | -- Edward Abbey
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From John Ames@commodorejohn@gmail.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 09:14:56 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 02:42:42 -0000 (UTC)
    antispam@fricas.org (Waldek Hebisch) wrote:

    Now, concerning burst: AFAIK AI companies use investment money to
    cover cost of operation (whole or in significant part). If there
    is burst, they will have to stop operating literally closing
    their datacenters. Basically only things that generate profits
    or possibly some research by companies that have other sources of
    income and still want to continue research. But that would be
    at much lower scale than currently.

    This is the key point on which the "but the tech will remain!" argument founders. It's not just that research will stop being funded, but that
    it costs so much just to *run* that the only thing keeping the lights
    on is regular infusions of billions in investor cash - and, in OpenAI's
    case, generous subsidies on raw compute from M$.

    Once *that* dries up, they're either going to have to magically become
    orders of magnitude more efficient (which they've showed *absolutely*
    no aptitude for - and China had a good laugh pantsing our tech sector
    on that score last spring, but it's sounding post-fact like their gains
    were, um, not as impressive as they'dve liked everyone to think) or
    price to reflect the *real* cost of operations - and if they can only
    get a fraction of their userbase to pay $200/mo. for a Magical Chatbot
    Friend, good freakin' luck squeezing any more blood from *that* turnip.

    The much likelier scenario is that when the funding stops flowing in
    and the business plan fails to advance from "???" to "profit!" things
    will just...*stop.*

    Obviously, it'll still be *possible* to write this kind of software and
    run it in a slower, more limited context on stock hardware (high-end
    GPUs will be going *real* cheap for a while, but they also cost so much
    to run and require so much infrastructure that it's questionable how cost-effective it'll be to reuse them,) and possibly the tech will find
    its niche in certain fields (as "expert systems" did after the first
    "AI winter,") but the economics of doing "generative AI" at global
    scale are simply *insane,* and the current offerings in their present
    form simply will not survive once taken off VC life support.

    (Again, I'll recommend Ed Zitron on this, who has written *extensively*
    about it over the past couple years, and has done a lot to break down
    how much it actually *costs* - https://www.wheresyoured.at/oai_docs/ )

    But there were attempts to replace a lot of professionals,
    notably programmers. Examples indicate that "AI" can create
    small, trival pieces of code but does not really work for
    bigger and more complex things. To be useful for programming "AI"
    and way it is used must be significantly improved. It is possible
    that slower, gradual improvement will lead to "useful AI".
    But it is also possible that alternative approaches, currently
    underfunded due to AI race, will progress and be used insted
    of "AI".

    [...]

    So, it looks that for general AI we are missing something
    important. For applications ANN apparently struggle with
    tasks that have easy algorithmic solution. So natural way
    forward with applications seem to be via hybrid approaches.
    But AI crowd seem to prefer pure ANN solutions and tries
    to brute-force problems using more compute power.

    Exactly. It's entirely possible that programming twenty years from now
    will look very different from programming today, and there *may* come a
    point where we "crack" using ML techniques for software development in
    a productive, reliable way - but it's *not* gonna come from the current
    crop of clowns, nor through burning infinite money on throwing *MOAR COMPUTE!!!1one* at the same stupid "solution."

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 18:22:41 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 08:25:30 -0800, John Ames wrote:

    On 12 Jan 2026 04:10:10 GMT rbowman <bowman@montana.com> wrote:

    They did have gjetost, which makes up for it. The stuff is dangerous
    though.

    https://www.newsinenglish.no/2013/01/22/burning-brown-cheese-closes-
    tunnel/

    The Ski Queen brand must not be the real thing. It doesn't burn.

    Gosh, I'd forgotten about gjetost. Need to get some of that again.

    It comes and goes in the markets around here but I can usually find it. I
    ran into it in the '60s at a smorgasbord restaurant on Cape Cod of all
    places. My first question was "What is this stuff and where can I get it?"
    It doesn't come across as 'cheese' if you don't know the backstory.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 18:31:17 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 11:50:10 +0000, The Natural Philosopher wrote:

    On 11/01/2026 20:57, rbowman wrote:
    On Sun, 11 Jan 2026 11:29:53 +0000, The Natural Philosopher wrote:

    On 11/01/2026 05:39, rbowman wrote:
    He tells a plausible story. In 'Collapse' Jared Diamond claims that
    one of the reasons for the abandonment of Greenland along with
    climate change was an irrational reluctance of the Norse to eat fish.
    Excuse me? He bases that on the lack of fish bones in the middens.
    I've never had it but I think the process of producing h|ikarl might
    dissolve the bones.

    They are probably so hungry they ate the bones as well..

    We used to have fried smelts, fins, tail, and scales, usually without
    the head. This isn't the best area for seafood but the only ones I've
    seen in the market lately were marked as bait.

    In the UK 'whitebait' are fried fish eaten whole...

    According to wiki, that any little fish you can fry up so smelts would qualify. That's a little vague too. The ones we got were ocean fish that
    would run up the rivers to spawn in the spring.

    Some species are protected, particularly in California. Like the snail
    darter people who would rather use the water for something else don't have much interest in protecting smelt habitat.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 18:35:29 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 07:45:11 -0700, Peter Flass wrote:

    On 1/11/26 19:19, c186282 wrote:


    -a Alas without detailed records we may find old THINGS,
    -a but what they MEANT, their context, is forever lost. That's just
    -a half a view of 'history'.


    "It's a ritual object."

    I've heard some fascinating explanations for the petroglyphs in the US
    west. My personal explanation is the tribe sent bored teenagers up to a lookout where lacking cellphones they chipped away at the rocks.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 18:45:21 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 08:11:36 -0800, John Ames wrote:

    On 11 Jan 2026 21:38:00 GMT Niklas Karlsson <nikke.karlsson@gmail.com>
    wrote:

    Butter, lots of butter. Big problem if the cows died off and there
    was no butter. It shows up around here at Christmas time. I've been
    told by knowledgeable people Norwegians in the US eat lutefisk and
    Norwegians in Norway eat frozen pizza.

    I am not that familiar with that aspect of our neighbors, but I can
    believe it. We have lutfisk (yes, we spell it without the E) and I
    certainly don't care for it. Fortunately, very rarely has anyone
    attempted to serve it to me.

    It's Considered Traditional among the older generations of Norwegian- Americans, to the point where you can find it in the grocery store in
    the northern Midwest. Have never tried it myself, but I've seen (and
    smelled) it at family gatherings.

    Now krumkake, *that's* a slice of the Ol d Country I can get behind.

    It appears in the grocery stores here around Christmas.

    https://www.sofn.com/norwegian_culture/recipe_box/ baked_goods_breads_and_desserts/rosettes/

    The local Sons of Norway lodge has a booth at the fair where they sell 'vikings' and rosettes. The rosettes are good. The vikings are deep fried mystery meat on a stick sort of like a corndog. They're okay. The problem
    is there is usually a long line.

    https://www.sofnmissoula.com/

    A friend who was active in a Norway based church told me a lot of the Sons
    are really German. It's a nice clubhouse so why build your own when you
    can invade Norway?
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 18:52:56 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 15:44:40 GMT, Scott Lurndal wrote:

    rbowman <bowman@montana.com> writes:
    On Mon, 12 Jan 2026 00:47:29 GMT, Scott Lurndal wrote:


    http://linuxmafia.com/humour/power-of-lutefisk.html

    The only good thing about lutefisk is that it is generally accompanied
    by meatballs and mashed potatoes (and lefse).

    Is isn't that bad. That's not to say it's good.

    It's blandly neutral.

    He says as the gelatinous fishy slime slides down his throat :-)

    We had it twice a year for decades. Yes, butter helps to mask
    the the flavor, but nothing masks the consistency (or lack thereof).

    Desert (Rommegrot) was good, if not particularly healthy:

    https://www.cheaprecipeblog.com/2015/04/rommegrot-norwegian-cream-
    pudding/

    That's not bad but the melted butter improves it too. It fits in with the basic Norwegian cuisine requirement -- if it's white it's right.

    Don't mind me -- Norwegians fill the role around here that Poles or other groups have in other places.

    Q. How do you tell a levelheaded Norwegian?
    A. The snus runs out of both sides of his mouth.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers,alt.unix.geeks on Mon Jan 12 18:57:22 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 15:44:56 +0100, Carlos E.R. wrote:


    If the code is not mine, I would use the compiler options instead.
    Unless I got paid to maintain that code, then I would correct the code.

    When you have a few hundred thousand lines of legacy code you choose your battles. Fixing emergent bugs and adding new functionality trumps hunting
    down stuff the most recent gcc whines about if there is a handy compiler
    flag.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 19:52:39 2026
    From Newsgroup: alt.folklore.computers

    rbowman <bowman@montana.com> writes:
    On Mon, 12 Jan 2026 08:11:36 -0800, John Ames wrote:



    A friend who was active in a Norway based church told me a lot of the Sons >are really German. It's a nice clubhouse so why build your own when you
    can invade Norway?

    Small village where my father grew up had two churches. A norwegian
    lutheran church and a german lutheran church (ALC and Wisconson Synod,
    IIRC). Never the twain shall meet.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Lawrence =?iso-8859-13?q?D=FFOliveiro?=@ldo@nz.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 19:56:45 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 07:52:46 -0700, Peter Flass wrote:

    Now if only computer people could follow this rule. Our rule seems
    to be "why not add just this one more feature"

    We follow EinsteinrCOs rule: rCLthings should be as complicated as they
    need to be, but no more.rCY
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Lawrence =?iso-8859-13?q?D=FFOliveiro?=@ldo@nz.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 19:57:26 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 17:03:19 GMT, Charlie Gibbs wrote:

    To be fair, I'm sure a lot of computer people are doing this under
    duress, being ordered by the marketroids (who have the ear of
    management) to add yet another shiny thing.

    ArenrCOt you glad the Free Software world isnrCOt driven by marketroids?
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Lawrence =?iso-8859-13?q?D=FFOliveiro?=@ldo@nz.invalid to comp.os.linux.misc,alt.folklore.computers,alt.unix.geeks on Mon Jan 12 19:59:30 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 15:44:56 +0100, Carlos E.R. wrote:

    If the code were mine, I would correct the code. Even back then, I
    did not take the assumption that a function would return an integer
    :-D

    ThatrCOs why they call it rCLtechnical debtrCY. And yes, like any debt, it incurs interest -- compound interest, even ...
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 20:05:05 2026
    From Newsgroup: alt.folklore.computers

    Lawrence =?iso-8859-13?q?D=FFOliveiro?= <ldo@nz.invalid> writes:
    On Mon, 12 Jan 2026 17:03:19 GMT, Charlie Gibbs wrote:

    To be fair, I'm sure a lot of computer people are doing this under
    duress, being ordered by the marketroids (who have the ear of
    management) to add yet another shiny thing.

    ArenrCOt you glad the Free Software world isnrCOt driven by marketroids?

    It's not?

    AI Overview
    https://upload.wikimedia.org/wikipedia/commons/e/e2/Eric_S_Raymond_portrait.jpg

    Eric S. Raymond (ESR), the well-known open-source advocate, began charging
    speaking fees for corporate events in 1999 but waives fees for schools and
    user groups; however, specific current fee amounts aren't publicly listed,
    requiring direct contact with booking agents or his website, though general
    estimates for similar speakers suggest fees could range from thousands to
    tens of thousands depending on the event and his involvement.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 13:12:02 2026
    From Newsgroup: alt.folklore.computers

    On 1/12/26 10:14, John Ames wrote:
    if they can only
    get a fraction of their userbase to pay $200/mo. for a Magical Chatbot Friend, good freakin' luck squeezing any more blood from *that* turnip.


    Make it a s*xbot, and all the incels will pay to imagine they have a girlfriend.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Niklas Karlsson@nikke.karlsson@gmail.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 20:16:39 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-12, Scott Lurndal <scott@slp53.sl.home> wrote:
    Lawrence =?iso-8859-13?q?D=FFOliveiro?= <ldo@nz.invalid> writes:

    ArenrCOt you glad the Free Software world isnrCOt driven by marketroids?

    It's not?

    AI Overview
    https://upload.wikimedia.org/wikipedia/commons/e/e2/Eric_S_Raymond_portrait.jpg

    Eric S. Raymond (ESR), the well-known open-source advocate, began charging
    speaking fees for corporate events in 1999 but waives fees for schools and
    user groups; however, specific current fee amounts aren't publicly listed,
    requiring direct contact with booking agents or his website, though general
    estimates for similar speakers suggest fees could range from thousands to
    tens of thousands depending on the event and his involvement.

    Was ESR ever nearly as influential as he tried to make it look, though?
    OK, so he got speaking fees (unclear how often or how much), but did he
    have much effect on actual FOSS projects?

    Niklas
    --
    This year's Corporate Technology Expo was no different than the ones for years previous. [...] The scene was a three-hour, seemingly unending procession of PowerPoint slides with enough laser pointers to take down an incoming ICBM.
    -- http://thedailywtf.com/Articles/MUMPS-Madness.aspx --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 13:15:53 2026
    From Newsgroup: alt.folklore.computers

    On 1/12/26 11:45, rbowman wrote:
    On Mon, 12 Jan 2026 08:11:36 -0800, John Ames wrote:

    On 11 Jan 2026 21:38:00 GMT Niklas Karlsson <nikke.karlsson@gmail.com>
    wrote:

    Butter, lots of butter. Big problem if the cows died off and there
    was no butter. It shows up around here at Christmas time. I've been
    told by knowledgeable people Norwegians in the US eat lutefisk and
    Norwegians in Norway eat frozen pizza.

    I am not that familiar with that aspect of our neighbors, but I can
    believe it. We have lutfisk (yes, we spell it without the E) and I
    certainly don't care for it. Fortunately, very rarely has anyone
    attempted to serve it to me.

    It's Considered Traditional among the older generations of Norwegian-
    Americans, to the point where you can find it in the grocery store in
    the northern Midwest. Have never tried it myself, but I've seen (and
    smelled) it at family gatherings.

    Now krumkake, *that's* a slice of the Ol d Country I can get behind.

    It appears in the grocery stores here around Christmas.

    https://www.sofn.com/norwegian_culture/recipe_box/ baked_goods_breads_and_desserts/rosettes/

    The local Sons of Norway lodge has a booth at the fair where they sell 'vikings' and rosettes. The rosettes are good. The vikings are deep fried mystery meat on a stick sort of like a corndog. They're okay. The problem
    is there is usually a long line.

    https://www.sofnmissoula.com/

    A friend who was active in a Norway based church told me a lot of the Sons are really German. It's a nice clubhouse so why build your own when you
    can invade Norway?

    Garrison Keillor had a nice take on Norwegians vs. Germans in Lake Woebegone --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 20:46:55 2026
    From Newsgroup: alt.folklore.computers

    On 12/01/2026 15:44, Scott Lurndal wrote:
    He says as the gelatinous fishy slime slides down his throat EfOe

    We had it twice a year for decades. Yes, butter helps to mask
    the the flavor, but nothing masks the consistency (or lack thereof).

    Oysters: "like swallowing someone else's cold snot"
    --
    "When a true genius appears in the world, you may know him by this sign,
    that the dunces are all in confederacy against him."

    Jonathan Swift.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Harold Stevens@wookie@aspen.localdomain to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 14:48:17 2026
    From Newsgroup: alt.folklore.computers

    In <10k3kii$2k2m7$1@dont-email.me> Peter Flass:
    On 1/12/26 10:14, John Ames wrote:
    if they can only
    get a fraction of their userbase to pay $200/mo. for a Magical Chatbot
    Friend, good freakin' luck squeezing any more blood from *that* turnip.


    Make it a s*xbot, and all the incels will pay to imagine they have a girlfriend.

    LOL!!! Beats hell outta reuseable inflatable plastic dolls, hidden
    in the basement in grandad's empty Vietnam ammo box.

    "No self-respecting woman wants to date you? SIGN UP FOR AIGRLLL!"

    IIRC, it was pay-to-view online porn sites in the late 1990's that
    drove initial development of secure consumer online payment apps.
    --
    Regards, Weird (Harold Stevens) * IMPORTANT EMAIL INFO FOLLOWS *
    Pardon any bogus email addresses (wookie) in place for spambots.
    Really, it's (wyrd) at att, dotted with net. * DO NOT SPAM IT. *
    I toss (404) GoogleGroup (404 http://twovoyagers.com/improve-usenet.org/).
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Richard Kettlewell@invalid@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 20:52:04 2026
    From Newsgroup: alt.folklore.computers

    rbowman <bowman@montana.com> writes:
    On Mon, 12 Jan 2026 07:45:11 -0700, Peter Flass wrote:
    On 1/11/26 19:19, c186282 wrote:


    -a Alas without detailed records we may find old THINGS,
    -a but what they MEANT, their context, is forever lost. That's just
    -a half a view of 'history'.


    "It's a ritual object."

    I've heard some fascinating explanations for the petroglyphs in the US
    west. My personal explanation is the tribe sent bored teenagers up to a lookout where lacking cellphones they chipped away at the rocks.

    You may not be that far off. Have a read of _The Nature Of Paelolithic
    Art_ (R. Dale Guthrie) - itrCOs not short but if yourCOre interested in that sort of thing, itrCOd be time well spent.

    https://press.uchicago.edu/Misc/Chicago/311260.html has a copy of the introduction.
    --
    https://www.greenend.org.uk/rjk/
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 20:58:16 2026
    From Newsgroup: alt.folklore.computers

    On 12/01/2026 20:52, Richard Kettlewell wrote:
    rbowman <bowman@montana.com> writes:
    On Mon, 12 Jan 2026 07:45:11 -0700, Peter Flass wrote:
    On 1/11/26 19:19, c186282 wrote:


    -a Alas without detailed records we may find old THINGS,
    -a but what they MEANT, their context, is forever lost. That's just
    -a half a view of 'history'.


    "It's a ritual object."

    I've heard some fascinating explanations for the petroglyphs in the US
    west. My personal explanation is the tribe sent bored teenagers up to a
    lookout where lacking cellphones they chipped away at the rocks.

    You may not be that far off. Have a read of _The Nature Of Paelolithic
    Art_ (R. Dale Guthrie) - itrCOs not short but if yourCOre interested in that sort of thing, itrCOd be time well spent.

    https://press.uchicago.edu/Misc/Chicago/311260.html has a copy of the introduction.

    Like the Norse graffiti at Maes Howe that says something like
    'Hagars wife is a good fuck'

    Concerning graffiti, nothing changes...
    --
    I would rather have questions that cannot be answered...
    ...than to have answers that cannot be questioned

    Richard Feynman



    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From John Ames@commodorejohn@gmail.com to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 14:26:49 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 20:52:04 +0000
    Richard Kettlewell <invalid@invalid.invalid> wrote:
    Alas without detailed records we may find old THINGS, but what
    they MEANT, their context, is forever lost. That's just half a
    view of 'history'.

    "It's a ritual object."

    I've heard some fascinating explanations for the petroglyphs in the
    US west. My personal explanation is the tribe sent bored teenagers
    up to a lookout where lacking cellphones they chipped away at the
    rocks.

    You may not be that far off. Have a read of _The Nature Of Paelolithic
    Art_ (R. Dale Guthrie) - itrCOs not short but if yourCOre interested in
    that sort of thing, itrCOd be time well spent.
    Oh, now *that* looks like a good read. Many thanks, will definitely
    have to give it a look. I like his attitude, from the introduction;
    I've long been of the opinion that paleoarcheology is as susceptible as
    any field to the human tendency to view other places and times through
    the lens of the observer's own preconceptions, and that the common view
    of prehistoric society as a scattering of isolated tribes organized in
    an authoritarian brute hierarchy probably says as much or more about
    what vices people today want to excuse as Just Human Nature and/or
    believe that they personally have Evolved Beyond as it does about any
    realities of the ancient world.
    And the corresponding assumption that the beginnings of art *must* have
    had a ritual function, and that ritual itself must've been administered
    by a Designated Authority, are pretty telling. The second at least is a *possibility* whose reality is simply inconclusive because the evidence
    is so scarce this far on, but the first should be *obvious* nonsense to
    anyone who's ever amused themselves by doodling on a Post-It, let alone
    people with a deep passion for creative expression.
    (I strongly suspect that this belief correlates nicely with the type of
    people who think of art as an object of Social Utility, the production
    of which is best left to Qualified Practicioners who can fulfill the
    needs of Society - as defined, inevitably, by the people who hold these opinions, and their proxies - without introducing any pesky *personal*
    quirks or Irregular Points Of View...)
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 18:10:45 2026
    From Newsgroup: alt.folklore.computers

    On 1/12/26 15:15, Peter Flass wrote:
    On 1/12/26 11:45, rbowman wrote:
    On Mon, 12 Jan 2026 08:11:36 -0800, John Ames wrote:

    On 11 Jan 2026 21:38:00 GMT Niklas Karlsson <nikke.karlsson@gmail.com>
    wrote:

    Butter, lots of butter.-a Big problem if the cows died off and there >>>>> was no butter.-a It shows up around here at Christmas time. I've been >>>>> told by knowledgeable people Norwegians in the US eat lutefisk and
    Norwegians in Norway eat frozen pizza.

    I am not that familiar with that aspect of our neighbors, but I can
    believe it. We have lutfisk (yes, we spell it without the E) and I
    certainly don't care for it. Fortunately, very rarely has anyone
    attempted to serve it to me.

    It's Considered Traditional among the older generations of Norwegian-
    Americans, to the point where you can find it in the grocery store in
    the northern Midwest. Have never tried it myself, but I've seen (and
    smelled) it at family gatherings.

    Now krumkake, *that's* a slice of the Ol d Country I can get behind.

    It appears in the grocery stores here around Christmas.

    https://www.sofn.com/norwegian_culture/recipe_box/
    baked_goods_breads_and_desserts/rosettes/

    The local Sons of Norway lodge has a booth at the fair where they sell
    'vikings' and rosettes. The rosettes are good. The vikings are deep fried
    mystery meat on a stick sort of like a corndog. They're okay. The problem
    is there is usually a long line.

    https://www.sofnmissoula.com/

    A friend who was active in a Norway based church told me a lot of the
    Sons
    are really German. It's a nice clubhouse so why build your own when you
    can invade Norway?

    Garrison Keillor had a nice take on Norwegians vs. Germans in Lake
    Woebegone


    What ... that Norwegians don't have a sense of
    humor while Germans THINK they do ? :-)

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 18:12:38 2026
    From Newsgroup: alt.folklore.computers

    On 1/12/26 15:46, The Natural Philosopher wrote:
    On 12/01/2026 15:44, Scott Lurndal wrote:
    -a-a He says as the gelatinous fishy slime slides down his throat EfOe

    -a-a We had it twice a year for decades.-a Yes, butter helps to mask
    the the flavor, but nothing masks the consistency (or lack thereof).

    Oysters: "like swallowing someone else's cold snot"

    They're awful .....

    Oh, are nothing but slimy nasty fish to be found
    in the North Sea ???

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 18:17:25 2026
    From Newsgroup: alt.folklore.computers

    On 1/12/26 15:52, Richard Kettlewell wrote:
    rbowman <bowman@montana.com> writes:
    On Mon, 12 Jan 2026 07:45:11 -0700, Peter Flass wrote:
    On 1/11/26 19:19, c186282 wrote:


    -a Alas without detailed records we may find old THINGS,
    -a but what they MEANT, their context, is forever lost. That's just
    -a half a view of 'history'.


    "It's a ritual object."

    I've heard some fascinating explanations for the petroglyphs in the US
    west. My personal explanation is the tribe sent bored teenagers up to a
    lookout where lacking cellphones they chipped away at the rocks.

    You may not be that far off. Have a read of _The Nature Of Paelolithic
    Art_ (R. Dale Guthrie) - itrCOs not short but if yourCOre interested in that sort of thing, itrCOd be time well spent.

    https://press.uchicago.edu/Misc/Chicago/311260.html has a copy of the introduction.

    I tend to agree ... most petroglyphs DO look
    like things bored kiddies would scrawl. Lacking
    spray-paint, well, you use what you have.

    And the "ritual objects", most likely jokes,
    or dildos. :-)

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Charlie Gibbs@cgibbs@kltpzyxm.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 23:41:02 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-12, rbowman <bowman@montana.com> wrote:

    On Sun, 11 Jan 2026 17:58:31 -0500, c186282 wrote:

    Many stocks of fish are already depleted or nearly so,
    and that's just at CURRENT levels of consumption. The "bounty of the
    sea" is NOT unlimited, not at all.

    Some of the species I see in the market would have been classified as cat food 60 years ago.

    I've heard this described as "eating our way down the food chain".
    --
    /~\ Charlie Gibbs | Growth for the sake of
    \ / <cgibbs@kltpzyxm.invalid> | growth is the ideology
    X I'm really at ac.dekanfrus | of the cancer cell.
    / \ if you read it the right way. | -- Edward Abbey
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Charlie Gibbs@cgibbs@kltpzyxm.invalid to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 23:41:03 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-12, The Natural Philosopher <tnp@invalid.invalid> wrote:

    On 11/01/2026 21:35, rbowman wrote:

    On Sun, 11 Jan 2026 11:26:50 +0000, The Natural Philosopher wrote:

    On 11/01/2026 01:51, c186282 wrote:

    Stick to my estimation that England perhaps ranks
    -a as the "most invaded" country ever-a EfOe

    Yes, until 1066, after which it became the least.

    Nothing like having a navy comprised of pirates.

    And a merchant class comprised of pirates... Wasn't there a Monty Python
    sketch about that?

    Well, there was the Crimson Permanent Assurance...

    It's fun to charter an accountant
    And sail the wild accountanseas...

    Not to mention the Long John Silver Impersonation Society.

    Dunno. There is a Trumpian experiment ongoing to see exactly where that leads, of course...

    There could be a new army unit with distinctive uniforms:
    eye patches, peg legs, etc. Yo-ho-ho and a barrel of oil...

    In the end, we developed democracy. The amount of loot the war winners gained was always less than they spent on defeating the opposition.

    Probably the USA will end up doing the same.

    After having explored all the other alternatives.

    On the other hand, this coming July 4 sounds like an appropriate time
    to wind up the Great Experiment. Two hundred and fifty years to the day...

    Elizabeth I is quoted as saying 'war is such a chancy thing' or similar.

    Perhaps, but it's so much _fun_ (if you're into that sort of thing).
    --
    /~\ Charlie Gibbs | Growth for the sake of
    \ / <cgibbs@kltpzyxm.invalid> | growth is the ideology
    X I'm really at ac.dekanfrus | of the cancer cell.
    / \ if you read it the right way. | -- Edward Abbey
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Charlie Gibbs@cgibbs@kltpzyxm.invalid to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 00:24:02 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-12, Lawrence DrCOOliveiro <ldo@nz.invalid> wrote:

    On Mon, 12 Jan 2026 07:52:46 -0700, Peter Flass wrote:

    Now if only computer people could follow this rule. Our rule seems
    to be "why not add just this one more feature"

    We follow EinsteinrCOs rule: rCLthings should be as complicated as they
    need to be, but no more.rCY

    s/complicated/simple/
    --
    /~\ Charlie Gibbs | Growth for the sake of
    \ / <cgibbs@kltpzyxm.invalid> | growth is the ideology
    X I'm really at ac.dekanfrus | of the cancer cell.
    / \ if you read it the right way. | -- Edward Abbey
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Lawrence =?iso-8859-13?q?D=FFOliveiro?=@ldo@nz.invalid to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 00:36:47 2026
    From Newsgroup: alt.folklore.computers

    On Tue, 13 Jan 2026 00:24:02 GMT, Charlie Gibbs wrote:

    On 2026-01-12, Lawrence DrCOOliveiro <ldo@nz.invalid> wrote:

    On Mon, 12 Jan 2026 07:52:46 -0700, Peter Flass wrote:

    Now if only computer people could follow this rule. Our rule seems
    to be "why not add just this one more feature"

    We follow EinsteinrCOs rule: rCLthings should be as complicated as they
    need to be, but no more.rCY

    s/complicated/simple/

    Really?? The man who brought Riemann tensors into physics?
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 22:58:32 2026
    From Newsgroup: alt.folklore.computers

    On 1/12/26 18:41, Charlie Gibbs wrote:
    On 2026-01-12, rbowman <bowman@montana.com> wrote:

    On Sun, 11 Jan 2026 17:58:31 -0500, c186282 wrote:

    Many stocks of fish are already depleted or nearly so,
    and that's just at CURRENT levels of consumption. The "bounty of the >>> sea" is NOT unlimited, not at all.

    Some of the species I see in the market would have been classified as cat
    food 60 years ago.

    I've heard this described as "eating our way down the food chain".

    Pretty much true, alas.

    Good stuff gets replaced by OK stuff, replaced
    by SHIT stuff .....

    Global markets totally destroy whole species
    of fish, then hype a 'replacement'.

    Japan is one of the worse players - they consume
    a LOT of fish, whales too. A big blue-fin Tuna
    fetches well into five figures now - and giant
    factory fisher ships net EVERYTHING.

    And again, this is just CURRENT consumption levels.

    I eat fish once in a while. Either canned tuna or
    Mrs. Paul's Fish Sticks. Alas putting the 'oil'
    down my kitchen drain means lots of visits by
    the plumber and his roto-tool - so it's mostly
    the fish sticks nowadays :-)

    Didja realize that basically NOTHING dissolves
    olive oil ? Even hard-core detergents. I'd have
    to put alcohol or acetone down my drain - which
    is NOT a great idea.

    Put it into the trash - it'd attract ten species
    of roving animals ... that fish smell is infinitely
    attractive. Don't think the garbage service would be
    very friendly to a 50 pound concrete brick on top
    of my trash bin .........

    Oh well, at least I *have* food. Some don't.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Mon Jan 12 23:04:35 2026
    From Newsgroup: alt.folklore.computers

    On 1/12/26 19:36, Lawrence DrCOOliveiro wrote:
    On Tue, 13 Jan 2026 00:24:02 GMT, Charlie Gibbs wrote:

    On 2026-01-12, Lawrence DrCOOliveiro <ldo@nz.invalid> wrote:

    On Mon, 12 Jan 2026 07:52:46 -0700, Peter Flass wrote:

    Now if only computer people could follow this rule. Our rule seems
    to be "why not add just this one more feature"

    We follow EinsteinrCOs rule: rCLthings should be as complicated as they
    need to be, but no more.rCY

    s/complicated/simple/

    Really?? The man who brought Riemann tensors into physics?

    Well, really, it HAD to be that complicated just
    to be 'clear' ........

    Even worse now, QM and 'strings' and such.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 04:31:00 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 19:57:26 -0000 (UTC), Lawrence DrCOOliveiro wrote:

    On Mon, 12 Jan 2026 17:03:19 GMT, Charlie Gibbs wrote:

    To be fair, I'm sure a lot of computer people are doing this under
    duress, being ordered by the marketroids (who have the ear of
    management) to add yet another shiny thing.

    ArenrCOt you glad the Free Software world isnrCOt driven by marketroids?

    Are you sure of that? They might not have an office and title.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 04:46:25 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 20:05:05 GMT, Scott Lurndal wrote:

    Lawrence =?iso-8859-13?q?D=FFOliveiro?= <ldo@nz.invalid> writes:
    On Mon, 12 Jan 2026 17:03:19 GMT, Charlie Gibbs wrote:

    To be fair, I'm sure a lot of computer people are doing this under
    duress, being ordered by the marketroids (who have the ear of
    management) to add yet another shiny thing.

    ArenrCOt you glad the Free Software world isnrCOt driven by marketroids?

    It's not?

    AI Overview
    https://upload.wikimedia.org/wikipedia/commons/e/e2/
    Eric_S_Raymond_portrait.jpg

    Eric S. Raymond (ESR), the well-known open-source advocate, began
    charging speaking fees for corporate events in 1999 but waives fees
    for schools and user groups; however, specific current fee amounts
    aren't publicly listed, requiring direct contact with booking agents
    or his website, though general estimates for similar speakers suggest
    fees could range from thousands to tens of thousands depending on the
    event and his involvement.


    He's not supposed to make a living. That is 26 year old news anyway. Even
    the photo is from 2004. I don't see anything about speaking on his website although there is some interesting material.

    http://www.catb.org/~esr/guns/

    He has pissed a lot of people off, including the Stalin, er, Stallman worshipers.



    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 05:01:17 2026
    From Newsgroup: alt.folklore.computers

    On 12 Jan 2026 20:16:39 GMT, Niklas Karlsson wrote:

    On 2026-01-12, Scott Lurndal <scott@slp53.sl.home> wrote:
    Lawrence =?iso-8859-13?q?D=FFOliveiro?= <ldo@nz.invalid> writes:

    ArenrCOt you glad the Free Software world isnrCOt driven by marketroids?

    It's not?

    AI Overview
    https://upload.wikimedia.org/wikipedia/commons/e/e2/ Eric_S_Raymond_portrait.jpg

    Eric S. Raymond (ESR), the well-known open-source advocate, began
    charging speaking fees for corporate events in 1999 but waives fees
    for schools and user groups; however, specific current fee amounts
    aren't publicly listed, requiring direct contact with booking agents
    or his website, though general estimates for similar speakers
    suggest fees could range from thousands to tens of thousands
    depending on the event and his involvement.

    Was ESR ever nearly as influential as he tried to make it look, though?
    OK, so he got speaking fees (unclear how often or how much), but did he
    have much effect on actual FOSS projects?

    It's hard to say how much effect he himself had but if you go back to 'The Cathedral and the Bazaar' the bazaar is doing very well these days.

    https://dotnet.microsoft.com/en-us/platform/open-source

    Do you think Microsoft would get involved with a GPL project? How many
    other FOSS projects use the MIT, Apache, Zero Clause BSD, or other
    permissive licenses?

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 05:22:40 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 19:52:39 GMT, Scott Lurndal wrote:

    rbowman <bowman@montana.com> writes:
    On Mon, 12 Jan 2026 08:11:36 -0800, John Ames wrote:



    A friend who was active in a Norway based church told me a lot of the
    Sons are really German. It's a nice clubhouse so why build your own when >>you can invade Norway?

    Small village where my father grew up had two churches. A norwegian lutheran church and a german lutheran church (ALC and Wisconson Synod,
    IIRC). Never the twain shall meet.

    No kidding. I was interested in the food, not the theology, but Immanuel Lutheran is ECLA. First Lutheran, about a mile away, is Missouri Synod. I think the Missouri folks consider the ELCA folks to be baby-raping, communistic, apostates. Both the pastor and assistant pastor at Immanuel
    are women and that's a non-starter for LCMS.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 00:37:52 2026
    From Newsgroup: alt.folklore.computers

    On 1/13/26 00:22, rbowman wrote:
    On Mon, 12 Jan 2026 19:52:39 GMT, Scott Lurndal wrote:

    rbowman <bowman@montana.com> writes:
    On Mon, 12 Jan 2026 08:11:36 -0800, John Ames wrote:



    A friend who was active in a Norway based church told me a lot of the
    Sons are really German. It's a nice clubhouse so why build your own when >>> you can invade Norway?

    Small village where my father grew up had two churches. A norwegian
    lutheran church and a german lutheran church (ALC and Wisconson Synod,
    IIRC). Never the twain shall meet.

    No kidding. I was interested in the food, not the theology, but Immanuel Lutheran is ECLA. First Lutheran, about a mile away, is Missouri Synod. I think the Missouri folks consider the ELCA folks to be baby-raping, communistic, apostates. Both the pastor and assistant pastor at Immanuel
    are women and that's a non-starter for LCMS.

    AMAZING how TINY ideological diffs can be
    turned into MAJOR, kill 'em all, rifts :-)

    Nothing historically UNUSUAL about this alas.
    Micro-factionalization is COMMON ... and "They"
    are always the ENEMY.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 05:40:02 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 22:58:32 -0500, c186282 wrote:

    Put it into the trash - it'd attract ten species of roving animals
    ... that fish smell is infinitely attractive. Don't think the garbage
    service would be very friendly to a 50 pound concrete brick on top of
    my trash bin .........

    You do realize there is water packed tuna? I drain it into the cat's bowl
    and it's gone long before the trash panda gets wind of it. I do get
    sardines in oil and after I get the fish out the can goes on the deck. Not
    as popular as tuna juice but community cats will eat almost anything.

    Except Blue Buffalo. The cats wouldn't eat it. The raccoon wouldn't eat
    it. The skunk managed to choke it down.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 05:50:17 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 18:12:38 -0500, c186282 wrote:


    Oh, are nothing but slimy nasty fish to be found in the North Sea ???

    https://en.wikipedia.org/wiki/List_of_fishes_of_the_North_Sea

    Anything edible is vulnerable or endangered, even the eels.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 05:56:56 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 20:52:04 +0000, Richard Kettlewell wrote:

    rbowman <bowman@montana.com> writes:
    On Mon, 12 Jan 2026 07:45:11 -0700, Peter Flass wrote:
    On 1/11/26 19:19, c186282 wrote:


    -a Alas without detailed records we may find old THINGS,
    -a but what they MEANT, their context, is forever lost. That's just
    -a half a view of 'history'.


    "It's a ritual object."

    I've heard some fascinating explanations for the petroglyphs in the US
    west. My personal explanation is the tribe sent bored teenagers up to a
    lookout where lacking cellphones they chipped away at the rocks.

    You may not be that far off. Have a read of _The Nature Of Paelolithic
    Art_ (R. Dale Guthrie) - itrCOs not short but if yourCOre interested in that sort of thing, itrCOd be time well spent.

    https://press.uchicago.edu/Misc/Chicago/311260.html has a copy of the introduction.

    'sniggers and giggles'. Okay. Some of the Venus figurines definitely look like the work of a horny teenager without the benefit of AI.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 06:03:15 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 20:58:16 +0000, The Natural Philosopher wrote:

    Like the Norse graffiti at Maes Howe that says something like 'Hagars
    wife is a good fuck'

    Concerning graffiti, nothing changes...

    Then there is the one at the Hagia Sophia in Istanbul 'Halfdan was here'
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 06:26:28 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 18:17:25 -0500, c186282 wrote:


    I tend to agree ... most petroglyphs DO look like things bored
    kiddies would scrawl. Lacking spray-paint, well, you use what you
    have.

    https://www.ancientartarchive.org/handprints-universal-symbol-humanity/

    https://www.youtube.com/watch?v=4I49uteH-EA

    I've had an informal interest in experimental archaeology. If you say to yourself "I'm here in this environment, how do I make a living?" some of
    the theories of armchair archaeologists don't make sense.

    The hard part is viewing the scene with fresh eyes. I know how to make a figure 4 trap or deadfall. Do I have to assume Ogg never figured it out?
    I've ground corn with a mano and metate. Can I assume an early human
    wouldn't have figured out rubbing hard seeds between two rocks didn't make them easier to eat?



    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Niklas Karlsson@nikke.karlsson@gmail.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 06:31:43 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-13, rbowman <bowman@montana.com> wrote:

    Do you think Microsoft would get involved with a GPL project?

    They already have, including the Linux kernel. If one is to believe
    Wikipedia, their first real run-in with the GPL was in 1998.

    https://en.wikipedia.org/wiki/Microsoft_and_open_source#1990s

    How many other FOSS projects use the MIT, Apache, Zero Clause BSD, or
    other permissive licenses?

    I don't know offhand, but I've always been under the impression the
    licenses you mentioned are all relatively widespread.

    Niklas
    --
    "Abendessen" ("evening meal")
    ITYM "meal eaten whilst trying to figure out why the damn program keeps crashing"
    -- Kai Henningsen and Cael in asr
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 06:32:29 2026
    From Newsgroup: alt.folklore.computers

    On Mon, 12 Jan 2026 23:41:03 GMT, Charlie Gibbs wrote:

    On the other hand, this coming July 4 sounds like an appropriate time to
    wind up the Great Experiment. Two hundred and fifty years to the day...

    April 19th of last year would have been better.

    https://en.wikipedia.org/wiki/Samuel_Whittemore

    My hero. I'm a little better armed than he.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 08:09:31 2026
    From Newsgroup: alt.folklore.computers

    On 13 Jan 2026 06:31:43 GMT, Niklas Karlsson wrote:


    How many other FOSS projects use the MIT, Apache, Zero Clause BSD, or
    other permissive licenses?

    I don't know offhand, but I've always been under the impression the
    licenses you mentioned are all relatively widespread.

    Precisely. Raymond's argument was restrictive licenses would deter FOSS development.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 08:18:16 2026
    From Newsgroup: alt.folklore.computers

    On Tue, 13 Jan 2026 00:37:52 -0500, c186282 wrote:

    AMAZING how TINY ideological diffs can be turned into MAJOR, kill 'em
    all, rifts

    Are you familiar with the iota problem? Not the biblical use but
    homoousios and homoiousios.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 09:23:50 2026
    From Newsgroup: alt.folklore.computers

    On 12/01/2026 23:12, c186282 wrote:
    On 1/12/26 15:46, The Natural Philosopher wrote:
    On 12/01/2026 15:44, Scott Lurndal wrote:
    -a-a He says as the gelatinous fishy slime slides down his throat EfOe

    -a-a We had it twice a year for decades.-a Yes, butter helps to mask
    the the flavor, but nothing masks the consistency (or lack thereof).

    Oysters: "like swallowing someone else's cold snot"

    -a They're awful .....

    -a Oh, are nothing but slimy nasty fish to be found
    -a in the North Sea ???

    I am exceptionally fond of smoked mackerel.
    And of course plenty of white fish in the north sea. Or were till we
    joined the EU.
    Halibut, cod, haddock etc..

    ...and salmon here and there.
    --
    "It is an established fact to 97% confidence limits that left wing conspirators see right wing conspiracies everywhere"

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 09:26:12 2026
    From Newsgroup: alt.folklore.computers

    On 13/01/2026 06:26, rbowman wrote:
    On Mon, 12 Jan 2026 18:17:25 -0500, c186282 wrote:


    I tend to agree ... most petroglyphs DO look like things bored
    kiddies would scrawl. Lacking spray-paint, well, you use what you
    have.

    https://www.ancientartarchive.org/handprints-universal-symbol-humanity/

    https://www.youtube.com/watch?v=4I49uteH-EA

    I've had an informal interest in experimental archaeology. If you say to yourself "I'm here in this environment, how do I make a living?" some of
    the theories of armchair archaeologists don't make sense.

    The hard part is viewing the scene with fresh eyes. I know how to make a figure 4 trap or deadfall. Do I have to assume Ogg never figured it out?
    I've ground corn with a mano and metate. Can I assume an early human
    wouldn't have figured out rubbing hard seeds between two rocks didn't make them easier to eat?


    I suspect early man was a lot smarter than we think. What probably held
    him back was language. If you cant express complex concepts even to
    yourself, its tough.



    --
    In todays liberal progressive conflict-free education system, everyone
    gets full Marx.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Harold Stevens@wookie@aspen.localdomain to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 04:35:43 2026
    From Newsgroup: alt.folklore.computers

    In <jEf9R.2212580$Pf33.1251031@fx18.iad> Charlie Gibbs:

    [Snip...}

    Perhaps, but it's so much _fun_ (if you're into that sort of thing).

    There's always at least one lunatic who insists the war partying
    fun go on indefinitely ...

    The Smell of Napalm In the Morning (Apocalypse Now) https://www.youtube.com/watch?v=k26hmRbDQFw

    It's an Egg (Catch-22)
    https://www.youtube.com/watch?v=g0UV6ug96c0
    --
    Regards, Weird (Harold Stevens) * IMPORTANT EMAIL INFO FOLLOWS *
    Pardon any bogus email addresses (wookie) in place for spambots.
    Really, it's (wyrd) at att, dotted with net. * DO NOT SPAM IT. *
    I toss (404) GoogleGroup (404 http://twovoyagers.com/improve-usenet.org/).
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Chris Ahlstrom@OFeem1987@teleworm.us to comp.os.linux.misc,alt.folklore.computers,alt.unix.geeks on Tue Jan 13 06:13:51 2026
    From Newsgroup: alt.folklore.computers

    Carlos E.R. wrote this post by blinking in Morse code:

    On 2026-01-07 23:49, rbowman wrote:

    On 2026-01-06 19:57, Charlie Gibbs wrote:

    <snip>

    It is possible that current C compilers signal many more problems that
    back then, but not runtime errors.

    Gcc will tag things that could cause a run-time error, such as
    parameters that don't match the specifiers in a printf() call.

    gcc has become pickier. That isn't always a welcome thing when working
    with legacy code and requires a search of the compiler options to get it
    to shut up about such horrible heresies as assuming a function returns an
    int.

    I periodically also build projects using clang. Clang and gcc each
    catch some problems that the other does not catch.

    If the code were mine, I would correct the code. Even back then, I did
    not take the assumption that a function would return an integer :-D

    I wrote explicit prototypes in the header file. :-)

    If the code is not mine, I would use the compiler options instead.
    Unless I got paid to maintain that code, then I would correct the code.

    Don't fix what ain't broke, you might break it [1] :-D

    [1] I'm speaking from experience.
    --
    You can observe a lot just by watching. -- Yogi Berra
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Niklas Karlsson@nikke.karlsson@gmail.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 14:21:45 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-13, rbowman <bowman@montana.com> wrote:
    On 13 Jan 2026 06:31:43 GMT, Niklas Karlsson wrote:

    How many other FOSS projects use the MIT, Apache, Zero Clause BSD, or
    other permissive licenses?

    I don't know offhand, but I've always been under the impression the
    licenses you mentioned are all relatively widespread.

    Precisely. Raymond's argument was restrictive licenses would deter FOSS development.

    Fair enough, but to go back to where this subthread came from, does that
    make him a marketroid? Or just an advocate, maybe agitator if you're
    feeling dramatic?

    "Marketroid" makes me think of something rather more pernicious than
    just copyleft vs. copycenter (to reference the Jargon File, speaking of
    ESR).

    Niklas
    --
    In Python, I'd model the CSV row as a class with a method that deserialised an array-of-string, with appropriate validation and coercion to a known static type. And then I'd get half way through before going "fuck it" and finishing it off in Perl. -- Peter Corlett
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 07:41:46 2026
    From Newsgroup: alt.folklore.computers

    On 1/12/26 22:40, rbowman wrote:
    On Mon, 12 Jan 2026 22:58:32 -0500, c186282 wrote:

    Put it into the trash - it'd attract ten species of roving animals
    ... that fish smell is infinitely attractive. Don't think the garbage
    service would be very friendly to a 50 pound concrete brick on top of
    my trash bin .........

    You do realize there is water packed tuna?

    We buy the single-serve envelopes, with basically no liquid. Nothing
    really tastes as good as tuna in olive oil, though.

    I drain it into the cat's bowl
    and it's gone long before the trash panda gets wind of it. I do get
    sardines in oil and after I get the fish out the can goes on the deck. Not
    as popular as tuna juice but community cats will eat almost anything.

    Except Blue Buffalo. The cats wouldn't eat it. The raccoon wouldn't eat
    it. The skunk managed to choke it down.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 12:38:24 2026
    From Newsgroup: alt.folklore.computers

    On 1/13/26 00:40, rbowman wrote:
    On Mon, 12 Jan 2026 22:58:32 -0500, c186282 wrote:

    Put it into the trash - it'd attract ten species of roving animals
    ... that fish smell is infinitely attractive. Don't think the garbage
    service would be very friendly to a 50 pound concrete brick on top of
    my trash bin .........

    You do realize there is water packed tuna?
    Yes, and I have some. It's all I used to eat. Then
    I tried yellowfin in oil .... much yummier !


    I drain it into the cat's bowl
    and it's gone long before the trash panda gets wind of it. I do get
    sardines in oil and after I get the fish out the can goes on the deck. Not
    as popular as tuna juice but community cats will eat almost anything.

    Except Blue Buffalo. The cats wouldn't eat it. The raccoon wouldn't eat
    it. The skunk managed to choke it down.

    I haven't seen the 'raccoon test' mentioned
    in their ads ... I wonder why ?

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 12:41:52 2026
    From Newsgroup: alt.folklore.computers

    On 1/13/26 00:50, rbowman wrote:
    On Mon, 12 Jan 2026 18:12:38 -0500, c186282 wrote:


    Oh, are nothing but slimy nasty fish to be found in the North Sea ???

    https://en.wikipedia.org/wiki/List_of_fishes_of_the_North_Sea

    Anything edible is vulnerable or endangered, even the eels.

    Clearly somebody really REALLY liked fish
    there in the past :-)

    I wonder if they can transplant some N.Atlantic
    species ?

    Assuming there's anything for THEM to eat ...

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 12:45:14 2026
    From Newsgroup: alt.folklore.computers

    On 1/13/26 01:03, rbowman wrote:
    On Mon, 12 Jan 2026 20:58:16 +0000, The Natural Philosopher wrote:

    Like the Norse graffiti at Maes Howe that says something like 'Hagars
    wife is a good fuck'

    Concerning graffiti, nothing changes...

    Then there is the one at the Hagia Sophia in Istanbul 'Halfdan was here'

    They've found it in the nooks and crannies
    of the Great Pyramid, where Pharaoh couldn't
    see :-)

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 17:54:52 2026
    From Newsgroup: alt.folklore.computers

    On 13 Jan 2026 14:21:45 GMT, Niklas Karlsson wrote:

    On 2026-01-13, rbowman <bowman@montana.com> wrote:
    On 13 Jan 2026 06:31:43 GMT, Niklas Karlsson wrote:

    How many other FOSS projects use the MIT, Apache, Zero Clause BSD, or
    other permissive licenses?

    I don't know offhand, but I've always been under the impression the
    licenses you mentioned are all relatively widespread.

    Precisely. Raymond's argument was restrictive licenses would deter FOSS
    development.

    Fair enough, but to go back to where this subthread came from, does that
    make him a marketroid? Or just an advocate, maybe agitator if you're
    feeling dramatic?

    "Marketroid" makes me think of something rather more pernicious than
    just copyleft vs. copycenter (to reference the Jargon File, speaking of
    ESR).

    Niklas

    I see no reason to call him a 'marketroid', whatever that might be.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 18:00:03 2026
    From Newsgroup: alt.folklore.computers

    On Tue, 13 Jan 2026 12:38:24 -0500, c186282 wrote:

    Except Blue Buffalo. The cats wouldn't eat it. The raccoon wouldn't eat
    it. The skunk managed to choke it down.

    I haven't seen the 'raccoon test' mentioned in their ads ... I wonder
    why ?

    I see their ads, I think on Netflix, with dogs. I get a chuckle but then
    dogs like to roll in shit. Blue has had recalls and isn't spoken of too highly. I didn't do any prior research, saw it at CostCo, and thought the
    cats might like a switch from Friskies. No go.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 18:17:16 2026
    From Newsgroup: alt.folklore.computers

    On Tue, 13 Jan 2026 12:41:52 -0500, c186282 wrote:

    On 1/13/26 00:50, rbowman wrote:
    On Mon, 12 Jan 2026 18:12:38 -0500, c186282 wrote:


    Oh, are nothing but slimy nasty fish to be found in the North Sea
    ???

    https://en.wikipedia.org/wiki/List_of_fishes_of_the_North_Sea

    Anything edible is vulnerable or endangered, even the eels.

    Clearly somebody really REALLY liked fish there in the past :-)

    I wonder if they can transplant some N.Atlantic species ?

    Assuming there's anything for THEM to eat ...

    I think cod, flounder, haddock, and halibut are about fished out in the
    North Atlantic too. Maybe even sardines.

    https://www.islandinstitute.org/working-waterfront/27423/

    'Maine' sardines come from Latvia. I visited a sardine factory in the
    '70s. The whole chain was fascinating. The fish were caught in weirs. The boats would vacuum them up with chutes that were lined with hardware cloth that mostly descaled them. The scales were sold to make pearlescent
    buttons.

    Once delivered, the fish were dumped on an under/over conveyor. Women
    sitting at tables along the line would scoop them up, cut them to fit the
    cans with kitchen shears, and stack the filled cans. The heads and anthing else they trimmed went back onto the other conveyor belt. That was sold
    back to the lobstermen as gurry.

    Everything but the squeal, indeed.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers,alt.unix.geeks on Tue Jan 13 18:22:20 2026
    From Newsgroup: alt.folklore.computers

    On Tue, 13 Jan 2026 06:13:51 -0500, Chris Ahlstrom wrote:

    Don't fix what ain't broke, you might break it [1] :-D

    [1] I'm speaking from experience.

    No kidding. I fixed an obvious bug and it didn't go over well with the
    sites. They had found the bug and exploited it to assign the same unit to
    two or more calls at once. There was the possibility of system instability that would require a support person to untangle it but it *usually*
    worked.


    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Chris Ahlstrom@OFeem1987@teleworm.us to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 14:29:06 2026
    From Newsgroup: alt.folklore.computers

    rbowman wrote this post by blinking in Morse code:

    On Tue, 13 Jan 2026 12:38:24 -0500, c186282 wrote:

    Except Blue Buffalo. The cats wouldn't eat it. The raccoon wouldn't eat
    it. The skunk managed to choke it down.

    I haven't seen the 'raccoon test' mentioned in their ads ... I wonder
    why ?

    I see their ads, I think on Netflix, with dogs. I get a chuckle but then dogs like to roll in shit. Blue has had recalls and isn't spoken of too highly. I didn't do any prior research, saw it at CostCo, and thought the cats might like a switch from Friskies. No go.

    Maybe they don't like propylene glycol.

    My remaining old cat has gotten really finicky lately. It's gotta
    be Sheba with turkey chunks.

    When he gets hungry, he has an annoying meow. I made a
    notification sound of it for my phone.

    To get your attention, he finds objects to claw at, rug corners to
    flip up and down ("flop... flop... flop"), and things like TV
    remotes to knock to the floor. In bed, he comes up to your ear
    canal and starts licking, sometimes puncturing nose or arm with
    his claw.

    <https://i.etsystatic.com/11398216/r/il/ed564e/5346410883/il_794xN.5346410883_rona.jpg>

    The cat is an asshole.

    At least he hasn't knocked the TV over yet.
    --
    The judge fined the jaywalker fifty dollars and told him if he was caught again, he would be thrown in jail. Fine today, cooler tomorrow.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 19:34:24 2026
    From Newsgroup: alt.folklore.computers

    rbowman <bowman@montana.com> writes:
    On Tue, 13 Jan 2026 12:38:24 -0500, c186282 wrote:

    Except Blue Buffalo. The cats wouldn't eat it. The raccoon wouldn't eat
    it. The skunk managed to choke it down.

    I haven't seen the 'raccoon test' mentioned in their ads ... I wonder
    why ?

    I see their ads, I think on Netflix, with dogs. I get a chuckle but then >dogs like to roll in shit.

    I wouldn't say that they like it. It's more of a hunting instinct
    to mask their scent when upwind of prey.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Tue Jan 13 22:41:07 2026
    From Newsgroup: alt.folklore.computers

    rbowman <bowman@montana.com> writes:
    On Tue, 13 Jan 2026 12:41:52 -0500, c186282 wrote:

    On 1/13/26 00:50, rbowman wrote:
    On Mon, 12 Jan 2026 18:12:38 -0500, c186282 wrote:


    Oh, are nothing but slimy nasty fish to be found in the North Sea
    ???

    https://en.wikipedia.org/wiki/List_of_fishes_of_the_North_Sea

    Anything edible is vulnerable or endangered, even the eels.

    Clearly somebody really REALLY liked fish there in the past :-)

    I wonder if they can transplant some N.Atlantic species ?

    Assuming there's anything for THEM to eat ...

    I think cod, flounder, haddock, and halibut are about fished out in the >North Atlantic too. Maybe even sardines.

    https://www.islandinstitute.org/working-waterfront/27423/

    'Maine' sardines come from Latvia. I visited a sardine factory in the

    I still visit a Sardine factory occasionally.

    <https://www.sardinefactory.com/>

    Unfortunately, the west coast actual sardine stocks were rather famously exhausted in the late 1950's. As documented in _Cannery Row_.

    50 years later, they had mostly returned, but even absent commercial
    fishing, the numbers started to decrease in 2019.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Wed Jan 14 00:42:34 2026
    From Newsgroup: alt.folklore.computers

    On Tue, 13 Jan 2026 14:29:06 -0500, Chris Ahlstrom wrote:

    To get your attention, he finds objects to claw at, rug corners to flip
    up and down ("flop... flop... flop"), and things like TV remotes to
    knock to the floor. In bed, he comes up to your ear canal and starts
    licking, sometimes puncturing nose or arm with his claw.

    The cat with house privileges is an old, arthritic Persian who mostly
    curls up in the warmest place she can find. Jumping up on stuff is a
    distant memory of her girlhood, although there is a low chair she
    sometimes will get up on.

    She makes a vocalization that isn't exactly a meow. If she has eye contact
    she just pantomimes it. For a while I was going to get my hearing tested
    but one of the other cats does meow. afaik her hearing is okay although
    she is not fond of flutes or tin whistles. About the only downside is she snores.

    One of the other cats has been getting a little chunky. I was on a website today that said a house cat that's 13 pounds or more is obese. I just
    weighed her and she's 13 even. Now to figure out how to put her on a diet without shorting the others.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Wed Jan 14 00:49:55 2026
    From Newsgroup: alt.folklore.computers

    On Tue, 13 Jan 2026 19:34:24 GMT, Scott Lurndal wrote:

    rbowman <bowman@montana.com> writes:
    On Tue, 13 Jan 2026 12:38:24 -0500, c186282 wrote:

    Except Blue Buffalo. The cats wouldn't eat it. The raccoon wouldn't
    eat it. The skunk managed to choke it down.

    I haven't seen the 'raccoon test' mentioned in their ads ... I
    wonder why ?

    I see their ads, I think on Netflix, with dogs. I get a chuckle but then >>dogs like to roll in shit.

    I wouldn't say that they like it. It's more of a hunting instinct to
    mask their scent when upwind of prey.

    My mother was into gardens and had a good size rose garden. The Federal
    Dam on the Hudson has a lot of fish kill so my father brought some home
    and they buried them around the rosebush roots. The family German Shepherd dutifully dug up all those glorious rotten fish.

    The dog had a hard life. He had to change his name to Police Dog during
    the war. He was gone by the time I was born but his teeth marks in the
    kitchen door lived on.



    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From rbowman@bowman@montana.com to comp.os.linux.misc,alt.folklore.computers on Wed Jan 14 01:01:56 2026
    From Newsgroup: alt.folklore.computers

    On Tue, 13 Jan 2026 22:41:07 GMT, Scott Lurndal wrote:

    I still visit a Sardine factory occasionally.

    <https://www.sardinefactory.com/>

    Trust me, the one I went to didn't look like that.

    Unfortunately, the west coast actual sardine stocks were rather famously exhausted in the late 1950's. As documented in _Cannery Row_.

    50 years later, they had mostly returned, but even absent commercial
    fishing, the numbers started to decrease in 2019.

    I liked Steinbeck's novels. When I finally made it to Monterey I wasn't
    all that impressed. The interesting people from 'Tortilla Flat' and
    'Cannery Row' were long gone, priced out by gentrification.



    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Peter Flass@Peter@Iron-Spring.com to comp.os.linux.misc,alt.folklore.computers on Wed Jan 14 07:27:35 2026
    From Newsgroup: alt.folklore.computers

    On 1/13/26 12:29, Chris Ahlstrom wrote:
    rbowman wrote this post by blinking in Morse code:

    On Tue, 13 Jan 2026 12:38:24 -0500, c186282 wrote:

    Except Blue Buffalo. The cats wouldn't eat it. The raccoon wouldn't eat >>>> it. The skunk managed to choke it down.

    I haven't seen the 'raccoon test' mentioned in their ads ... I wonder >>> why ?

    I see their ads, I think on Netflix, with dogs. I get a chuckle but then
    dogs like to roll in shit. Blue has had recalls and isn't spoken of too
    highly. I didn't do any prior research, saw it at CostCo, and thought the
    cats might like a switch from Friskies. No go.

    Maybe they don't like propylene glycol.

    My remaining old cat has gotten really finicky lately. It's gotta
    be Sheba with turkey chunks.

    When he gets hungry, he has an annoying meow. I made a
    notification sound of it for my phone.

    To get your attention, he finds objects to claw at, rug corners to
    flip up and down ("flop... flop... flop"), and things like TV
    remotes to knock to the floor. In bed, he comes up to your ear
    canal and starts licking, sometimes puncturing nose or arm with
    his claw.

    <https://i.etsystatic.com/11398216/r/il/ed564e/5346410883/il_794xN.5346410883_rona.jpg>

    The cat is an asshole.

    At least he hasn't knocked the TV over yet.


    You're lucky. Our cat (RIP) did that, and totaled it. One thing you can
    say for CRTs is that cats couldn't knock them down.
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Fri Jan 16 21:40:24 2026
    From Newsgroup: alt.folklore.computers

    rbowman <bowman@montana.com> writes:
    On Tue, 13 Jan 2026 22:41:07 GMT, Scott Lurndal wrote:

    I still visit a Sardine factory occasionally.

    <https://www.sardinefactory.com/>

    Trust me, the one I went to didn't look like that.

    Unfortunately, the west coast actual sardine stocks were rather famously
    exhausted in the late 1950's. As documented in _Cannery Row_.

    50 years later, they had mostly returned, but even absent commercial
    fishing, the numbers started to decrease in 2019.

    I liked Steinbeck's novels. When I finally made it to Monterey I wasn't
    all that impressed.

    That all depends on your expectations. We often drive
    down on a Sunday morning just to walk the old rail line from the
    antique mall to Lover's point or the John Denver memorial.

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Daniel@me@sc1f1dan.com to comp.os.linux.misc,alt.folklore.computers on Sun Jan 18 12:30:20 2026
    From Newsgroup: alt.folklore.computers

    scott@slp53.sl.home (Scott Lurndal) writes:

    rbowman <bowman@montana.com> writes:
    On Tue, 13 Jan 2026 22:41:07 GMT, Scott Lurndal wrote:

    I still visit a Sardine factory occasionally.

    <https://www.sardinefactory.com/>

    Trust me, the one I went to didn't look like that.

    Unfortunately, the west coast actual sardine stocks were rather famously >>> exhausted in the late 1950's. As documented in _Cannery Row_.

    50 years later, they had mostly returned, but even absent commercial
    fishing, the numbers started to decrease in 2019.

    I liked Steinbeck's novels. When I finally made it to Monterey I wasn't >>all that impressed.

    That all depends on your expectations. We often drive
    down on a Sunday morning just to walk the old rail line from the
    antique mall to Lover's point or the John Denver memorial.

    I proposed to my wife at lover's point. Ahh memories.

    D
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From c186282@c186282@nnada.net to comp.os.linux.misc,alt.folklore.computers on Sun Jan 18 21:08:41 2026
    From Newsgroup: alt.folklore.computers

    On 1/18/26 15:30, Daniel wrote:
    scott@slp53.sl.home (Scott Lurndal) writes:

    rbowman <bowman@montana.com> writes:
    On Tue, 13 Jan 2026 22:41:07 GMT, Scott Lurndal wrote:

    I still visit a Sardine factory occasionally.

    <https://www.sardinefactory.com/>

    Trust me, the one I went to didn't look like that.

    Unfortunately, the west coast actual sardine stocks were rather famously >>>> exhausted in the late 1950's. As documented in _Cannery Row_.

    50 years later, they had mostly returned, but even absent commercial
    fishing, the numbers started to decrease in 2019.

    I liked Steinbeck's novels. When I finally made it to Monterey I wasn't
    all that impressed.

    That all depends on your expectations. We often drive
    down on a Sunday morning just to walk the old rail line from the
    antique mall to Lover's point or the John Denver memorial.

    I proposed to my wife at lover's point. Ahh memories.


    There's a "John Denver Memorial" ???

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From scott@scott@slp53.sl.home (Scott Lurndal) to comp.os.linux.misc,alt.folklore.computers on Mon Jan 19 16:22:12 2026
    From Newsgroup: alt.folklore.computers

    c186282 <c186282@nnada.net> writes:
    On 1/18/26 15:30, Daniel wrote:
    scott@slp53.sl.home (Scott Lurndal) writes:

    rbowman <bowman@montana.com> writes:
    On Tue, 13 Jan 2026 22:41:07 GMT, Scott Lurndal wrote:

    I still visit a Sardine factory occasionally.

    <https://www.sardinefactory.com/>

    Trust me, the one I went to didn't look like that.

    Unfortunately, the west coast actual sardine stocks were rather famously >>>>> exhausted in the late 1950's. As documented in _Cannery Row_.

    50 years later, they had mostly returned, but even absent commercial >>>>> fishing, the numbers started to decrease in 2019.

    I liked Steinbeck's novels. When I finally made it to Monterey I wasn't >>>> all that impressed.

    That all depends on your expectations. We often drive
    down on a Sunday morning just to walk the old rail line from the
    antique mall to Lover's point or the John Denver memorial.

    I proposed to my wife at lover's point. Ahh memories.


    There's a "John Denver Memorial" ???


    He crashed his plane just off the Pacific Grove coast.

    https://en.wikipedia.org/wiki/John_Denver#Death
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Carlos E.R.@robin_listas@es.invalid to comp.os.linux.misc,alt.folklore.computers on Tue Jan 20 14:26:03 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-11 12:05, The Natural Philosopher wrote:
    On 10/01/2026 23:39, Bobbie Sellers wrote:


    On 1/10/26 11:44, rbowman wrote:
    On Sat, 10 Jan 2026 07:42:47 -0700, Peter Flass wrote:


    It did if you lived in Doggerland, or used to walk from Australia
    to Indonesia.

    https://en.wikipedia.org/wiki/Stone_Spring

    The rest of the trilogy, 'Bronze Summer' and 'Iron Winter', are
    okay but the focus moves from Doggerland.

    When Doggerland is submerged and the people have to leave it it
    seems totally logical that the focus would change to ancientry.
    Remember Doggerland was prehistoric so I cannot even say ancienty
    history but whatever the author according to his education can
    imagine of those times.

    Depends on your definition of prehistoric. Or ancient history.

    Archaelogy has brought mots of human 'prehistory' into the class of
    'fairly well known history'

    History is defined by being written.
    --
    Cheers, Carlos.
    ESEfc-Efc+, EUEfc-Efc|;
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From The Natural Philosopher@tnp@invalid.invalid to comp.os.linux.misc,alt.folklore.computers on Tue Jan 20 13:29:34 2026
    From Newsgroup: alt.folklore.computers

    On 20/01/2026 13:26, Carlos E.R. wrote:

    History is defined by being written.


    Not in English.
    --
    "Socialist governments traditionally do make a financial mess. They
    always run out of other people's money. It's quite a characteristic of them"

    Margaret Thatcher

    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Carlos E.R.@robin_listas@es.invalid to comp.os.linux.misc,alt.folklore.computers,alt.unix.geeks on Tue Jan 20 14:53:14 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-13 04:58, c186282 wrote:
    -a I eat fish once in a while. Either canned tuna or
    -a Mrs. Paul's Fish Sticks. Alas putting the 'oil'
    -a down my kitchen drain means lots of visits by
    -a the plumber and his roto-tool - so it's mostly
    -a the fish sticks nowadays-a EfOe

    It is supposedly forbidden to pour oil down the drain.

    Here we just pour it in bottles or whatever and take them to the
    recycling site. Then it is converted into diesel for cars and trucks.

    And you can fry things in olive oil for maybe 25 times (depending on the temperature).
    --
    Cheers, Carlos.
    ESEfc-Efc+, EUEfc-Efc|;
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Carlos E.R.@robin_listas@es.invalid to comp.os.linux.misc,alt.folklore.computers,alt.unix.geeks on Tue Jan 20 14:58:02 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-13 06:40, rbowman wrote:
    On Mon, 12 Jan 2026 22:58:32 -0500, c186282 wrote:

    Put it into the trash - it'd attract ten species of roving animals
    ... that fish smell is infinitely attractive. Don't think the garbage
    service would be very friendly to a 50 pound concrete brick on top of
    my trash bin .........

    I simply wipe the tin with toilet paper. Then either throw the paper in
    the dustbin, or burn it. I like burning it.


    You do realize there is water packed tuna? I drain it into the cat's bowl
    and it's gone long before the trash panda gets wind of it. I do get
    sardines in oil and after I get the fish out the can goes on the deck. Not
    as popular as tuna juice but community cats will eat almost anything.

    Except Blue Buffalo. The cats wouldn't eat it. The raccoon wouldn't eat
    it. The skunk managed to choke it down.
    --
    Cheers, Carlos.
    ESEfc-Efc+, EUEfc-Efc|;
    --- Synchronet 3.21a-Linux NewsLink 1.2
  • From Carlos E.R.@robin_listas@es.invalid to comp.os.linux.misc,alt.folklore.computers on Tue Jan 20 15:38:13 2026
    From Newsgroup: alt.folklore.computers

    On 2026-01-13 11:35, Harold Stevens wrote:
    In <jEf9R.2212580$Pf33.1251031@fx18.iad> Charlie Gibbs:

    [Snip...}

    Perhaps, but it's so much _fun_ (if you're into that sort of thing).

    There's always at least one lunatic who insists the war partying
    fun go on indefinitely ...

    The Smell of Napalm In the Morning (Apocalypse Now) https://www.youtube.com/watch?v=k26hmRbDQFw

    Video unavailable
    The uploader has not made this video available in your country


    It's an Egg (Catch-22)
    https://www.youtube.com/watch?v=g0UV6ug96c0


    :-)
    --
    Cheers, Carlos.
    ESEfc-Efc+, EUEfc-Efc|;
    --- Synchronet 3.21a-Linux NewsLink 1.2