The Register Home Page

* Posts by that one in the corner

5065 publicly visible posts • joined 9 Nov 2021

AWS wiped my account of 10 years, says open source dev

that one in the corner Silver badge

Re: Bullshit

> only result in it being used habitually

My bet is that you'd soon find many, many ~/.bashrc etc with aliases that add --for-real-this-time every time ("it just makes everyday things easier, just like adding colour options to ls") and the owners of those rc scripts will forget that the option even exists and why it is there. Then they'll be "helpfully" passed on to the newbies ("just copy mine, then ls will colour things for you")...

One helpful refactoring later ("87% of the rc files in home directories had these aliases set, so we just moved them all into the global settings, now your personal files are shorter and just have stuff specific to your job role in them")...

Which reminds me, I must hunt down which global rc is setting ls colours on this server install, as typing --nocolor every time when I've ssh'ed in as a different service username is a pita: who makes directory names dark blue on a black background?

Microsoft hoping to knock users' socks off with Windows XP Crocs

that one in the corner Silver badge

And you actually pointed at the edge of the window to drag/resize it, not *just* off the edge.

And when you had a pair of console windows overlapping and neither one has focus, you could still see their edges (hang on, that isn't one line of weird output, those two consoles have just lined up).

Trump surprises with TSMC $300B investment claim

that one in the corner Silver badge

Rate that Trump said he will reveal "within the next week or so."

When he had had the chance to get his socks off so he can count past 10%

Atlassian's Trello redesign may be 'worst in tech history' say frustrated users

that one in the corner Silver badge

Re: Calm the fuck down.

> We may not like it, but we adapt and we move on

You seem to have confused the roles of human and software: the software is meant to adapt to and provide value to us, *not* the other way around.

Random and undirected changes in software can result in approval - and be celebrated - or, as here, they can be reviled.

To say that we should not express disdain, or disgust, as appropriate is to say that negative feedback must not be applied - and I really hope we don't have to explain to you the importance of negative feedback in a system.

that one in the corner Silver badge

Suggesting Jira as a Trello alternative

What was that phrase? "Embrace, extend, extinguish"?

Trello was proving popular and useful, but it is still all foreign and greasy, compared to Atlassian's pride and joy[1] so what *can* they do to fix that?

[1] "a face only its mother could love"

Perplexity vexed by Cloudflare's claims its bots are bad

that one in the corner Silver badge

Re: Time for web content via API

Just for interest's sake, at what point these days are you deciding that an HTTP request is or isn't "an API"?

> Take control of access to your website and stop giving everything away for free

Amazing new idea: sell a subscription - ten quid a month and we'll let you log in and read up to four stories a day.

> If it is a ...

Because, of course, your magic "API" lets you tell the difference immediately, in some way that can not be done by the existing information (or lack thereof) in the HTTP requests.

Or, wait, did you mean that AI bots will use *this* set of requests whilst normal web browsers will instead use *these* requests - and nobody will ever, ever, use the "wrong" one?

Skyrora wins green light to lob rockets from Scotland

that one in the corner Silver badge

The Skylark of Space

Just be careful if any of your people go by the name DuQuesne.

Other than that, this is sure to lead to big things.

Mars says hello as NASA's Europa Clipper warms up radar

that one in the corner Silver badge

Mars has listened to REASON

fingers crossed that Europa will as well.

Foxconn says EV sales are so slow it's converting a factory to build AI servers instead

that one in the corner Silver badge

A leader in AI, robotics and related services

Related services - so that would be hiring all the humans to sit in the driver's seat of the Tesla robo-taxis and tele-operate all the Optimus machines that are going to appear Real Soon Now.

Forget the Space Force! Trump needs to create a Cyber Force, says think tank

that one in the corner Silver badge

Re: Clear and pressing threat revealed exclusively on El Reg.

You forgot to mention the 1967 documentary about precisely that subject.

US Patriots: keep your ears to the ground!*

* and definitely don't look up!

Millions of age checks performed as UK Online Safety Act gets rolling

that one in the corner Silver badge

Or they have a "legitimate interest" in processing your data.

Tesla starts sort-of Robotaxi service in San Francisco by invite only

that one in the corner Silver badge

Just don't pull off the driver's goggles or the entire fleet will stop - just ask Doctor Zarkov.

Windows 10 @ 10: How Microsoft led developers round in circles

that one in the corner Silver badge

TIL something called "WinUI 3" exists

Having coded programs to run on MS OSes[1] since MS DOS 1[2] (and thankfully skipping certain versions of Windows[3]) I had been blissfully unaware that "WinUI 3" even existed. For that mater, couldn't tell you what "WinUI 2" was supposed to be, either: may have seen something built with, maybe not - who cares?

Will I bother finding out what "WinUI 3" is or does? Nope. Do I think I'm ever likely to lose out by not learning more about "WinUI 3"? Nope.

As others have pointed out, there are some stable platforms to use if you want to code for Windows and even if you want to be multi-platform (and, as nobody has mentioned it, I'll chuck in FLTK just for a laugh!).

So why would anyone care about "WinUI 3"? Or 4? Or whatever.

[1] and others, and not just Unices, FWIW

[2] and PC DOS alternate weeks

[3] but then again, so did the clients so no harm done

Rampant emoji use suggests crypto-stealing NPM package was written by AI

that one in the corner Silver badge

Re: has a lot of messages in console.log [...] that human developers tend to keep to a minimum.

I have loads of prints (not printf, something bit more typesafe) in all my code - console apps all have levels of verbosity, GUI apps have cli options to open a console and/or a text widget to collect them. Or you can opt to send them elsewhere. Like a log file.

Very useful for debugging - of the parameters being fed into the programs, of the various scripts that invoke the programs in a larger context and, yes, of the programs themselves: e.g. one useful set of prints will log which places config files were found, how they (re)set command line options and, at the end of it, what the final options settings were.

I take pleasure in formatting the traces through little lexers and parsers, so that when something undesirable/unexpected does happen it is very easy to generate output that clearly shows what went wrong and why. Maybe that is is something wrong in the language implementation, maybe it is something that would be sensible to add to the language or maybe I can point out where the user's syntax wasn't doing what they thought.

> they can't use any more modern debugging technique

Well, the native debugger is very useful - for debugging the engine that trawls through the syntax declarations: yup, that is an augmented FSM interpreter ok, you can watch in excruciating detail how it picks the next state descriptor, and the next - nice tight loop you got there.

Bloody useless at debugging the interactions between the FSM states: talk about not seeing the forest for the trees!

When - if - the language becomes complex enough, it will gain its own debugger. But that is then operating at a higher level than all the above - debugging the user's script.

The same applies to profiling: I can run the native profiler and spot that my tight loop is a bit loose here (and, nope, it isn't spending excessive time skipping the prints when logging is off), but to see a noticeable improvement in parsing speed the rules have to be ordered to match the rate they are actually encountered in real life inputs (minimise failed matches): so the code implements that profiling and, guess what, when it is enabled it generates a formatted log! Using print statements.

And then there are the embedded systems, where attaching a debugger is not even supported - or not worth the cost of setting up the hardware, we aren't going to be using it after this. Or, as above, where the debugger will let us see the deep internals of the language (may be Python, may be Lua - or may be another domain-specific "little language") being interpreted but not anything actually meaningful... Print to a serial port is really useful.

New Google AI model maps world in 10-meter squares for machines to read

that one in the corner Silver badge

Re: Not convinced

Gemini assures us that this is correct. Although we did push back on the suggestion of using the Adirondack.

that one in the corner Silver badge

Re: Not convinced

Ah, you forget the almost mystical ability of current AI to fill in the gaps. If we can "enhance" a blurry old TV programme to fully watchable modern standards Doom Watch style[1] then we can easily interpolate the missing 10m resolution data.

> most of the dataset is coarser (down to 100m)

After all, 10m from 100m, why, that is only a factor of ten, grab the polyfilla. What was that? Volume, not linear scaling? Ok, just a factor of 1000, still doable. Huh? 40 dimensions? Um, ah, - look, squirrel! (door slams)

> 10m is really the highest resolution of this dataset ... ice-monitoring SAR C-band of sentinel-1

"Gentlemen, Google Gemini assures us there are enough ice deposits below the Gobi Desert to defeat Global Warming. Acting on Gemini's information, we have started issuing shovels to the Bedouin."

[1] /s wrt the "enhancements", btw; cracking episode otherwise, especially wrt politicians.

AI is contributing to Meta’s growth – just not the kind anyone cares about

that one in the corner Silver badge

To simplify

FB are making money by using statistical models to evaluate statistical data and deriving actually useful results from that.

And as a side hustle, by selling time on the bullshit generators to other companies, which are using them to generate more ads that they then pay FB to display.

Sounds like FB have a handle on how to use this AI malarkey. For their own good, at least.

Australia bans kids from signing up for YouTube accounts, angering Google

that one in the corner Silver badge

Angers Google

Hoped for response:

"If you do this, we will retaliate and won't provide any of our advanced features in you region!"

"No, no, you can't mean..."

"YES! No more AI-enhanced search for Australia!"

(sotto voce) "Well, that worked. Who's next on the list?"

Raspberry Pi RP2350 A4 update fixes old bugs and dares you to break it again

that one in the corner Silver badge

Re: Cheapskate

> No wonder there were so many bugs in the first place

Care to list out this massive set of bugs you know of? How long is it really? And compared to any other errata (let alone the non-published, shush, we'll get away with it, internal addendum)?

Anything in that list that prevented the device from being useful in the majority of cases?

The GPIO pullup issue is unfortunate, but then some of us were used to having to solder pullups/pulldowns on absolutely everything and view these built-in ones as a bit of a luxury[1] (oh, ok, it adds a couple of pennies to the BOM - IFF your design actually hit it). Actually, I know of a few small run builds - not with the RPi - where the guys were hardware- rather than software-oriented and added all the pullups anyway, as that was easier and more cost-effective from their p.o.v. than worrying if they'd set up the registers properly in their code.[2]

As for the glitching mentioned - you did understand, didn't you, that this is not talking about glitches in the silicon design but is about people introducing glitches in power lines etc from outside the device and feeding those in, with the intent to make it misfire? So operating way outside normal and specifically to see if they could break security features?

The public bounty for breaking security features is a Good Thing - it encourages the participation of some truly devious minds to have a go AND talk openly about what they are doing on the forums.

> company can't be arsed to hire proper talent

And just how do you expect a company to find these talents without setting this kind of challenge? You may find it hard to understand, but some of them actually consider etching off packaging and probing around under the microscope to be a fun hobby.

[1] cue "pullups? You were luck! We had to tie 60V to our toe and stick fingers on the i/o lines"

[2] and yes, their code was very pedestrian and could be "improved" - especially for readability! - but that is the joy of small-run: Done. Out the door. Next.

First release candidate of systemd 258 is here

that one in the corner Silver badge

Re: What?

I quite understand - he says, after re-reading his own post and noticing the odd missing word, some obtuse punctuation...

that one in the corner Silver badge

At least Midgely was solving some real problems and his solutions did genuinely work; it was only afterwards that we realised there was potential for problems with one of them (the lead was probably foreseeable). So Midgely wasn't ever facing a stream of vocal criticism each time his work was released.

But if Agent P. is blissfully unaware of criticism...

that one in the corner Silver badge

Re: What?

> it happens that a single person may have multiple roles, or jobs within the company, each role or job having a separate set of valid filesystem accesses.

Which is what groups gives you.

> there are not enough groups, and group access is insufficiently fine-grained

This means you haven't bothered to analyse your requirements and defined, then created and used, enough groups to control your own specific environment. Ok, there are limitations from some file systems (NFS, IIRC) but kludgey careful use of groups gets around those (i.e. define the set of groups important to whatever is being accessed via (NFS or ...) to be within the range you can use there).

Nor is it clear how having a different home folder helps - aside from selecting which login script gets run and which ~/.myapp-config.d gets invoked, which are separate from shared resource access control, aren't they?

> Further, there are things which happen in login scripts which may be required for Department A, yet should not happen for Department B.

Can you elaborate on that, as it is not something I've encountered in practice (simply because I've not worked in every environment on the planet, not because it is necessarily unusual): do you mean w.r.t. job function - e.g. logging into the correct time management system? - or physical constraints - e.g. Dept A all use printer PrintA, Dept B uses PrintB?

Either way, it really isn't clear to me why adding this into the OS ((making it more complex for everyone) really helps in such situations instead of, say, shoving into their login scripts a question box that just asks "What are doing today" then does the necessary.

that one in the corner Silver badge

Gotta love the sarcasm

> The core function of systemd is to act as a service manager

(Wipes tear from eye)

Congress tries to outlaw AI that jacks up prices based on what it knows about you

that one in the corner Silver badge

Re: Secrecy

> The AI bit is irrelevant. It merely makes this probably a bit quicker (and more

costly once the AI hypesters (and their supply chain) start charging realistic prices to their clients, instead of, oooh, running on debt financing of their GPU farms.

But don't worry, the corporations will just pass their sudden increase in costs onto the consumer (except those who con government into "bailing them out of this crisis that nobody could have foreseen").

that one in the corner Silver badge

Support your bricks and mortar local shops

And avoid the Big Corp Supermarkets with their ePaper price tickets.

At least you'll be able to spot when your local shopkeeper is running ahead of you, swapping paper tickets on the shelves, after he spots the platinum card peeking out of your wallet.

FreeBSD 15 installer to offer minimal KDE desktop

that one in the corner Silver badge

Re: OpenBSD

Better, faster - for what use cases?

You DO see Windows 11 as an AI PC opportunity, say Dell and Intel

that one in the corner Silver badge

Re: If this is aimed at the UK market

But have you discussed this with any of "your fellow UK IT decision makers (ITDMs)"?

ITDM!

Please, don't let there be any native-born Son of Wayland or Daughter of Boudicca who refers to themselves as an ITDM.

that one in the corner Silver badge

Lack of a killer app

Killer app?

Are there any even vaguely useful apps that require an AI PC?

Seriously.

Searching throws up a few toys. So far, not even anything that looks like it'll help anybody who is already doing anything locally with ML, as they (still) need the beefy GPU (they already have) to make any real dent in execution times.

Struggling to sell EVs, Tesla pivots to slinging burgers

that one in the corner Silver badge

Taking pre-payments

For the improved model of the Tesla Toaster, the classic hot cheese meal. Pay up now to go on the waiting list and it will be delivered next year^^^^^^^^^in 2027^9^^^^sometime.

Asked if it was going to be as jaw-shattering as the current offering, Musk replied that "It's really not that hard".

that one in the corner Silver badge

Re: Probably as good as the McDonalds at Alconbury?

So *that's* what it was!

How to get rid of useless keys in Windows and turn them into something helpful

that one in the corner Silver badge

For this demo, I'll hit Insert

You pressed: left shift.

Have the article's images been created by Copilot in voice mode? ("Playing 'Royce Toad'"[1])

[1] so long as it isn't from their second album, ths is fine,

Quantum code breaking? You'd get further with an 8-bit computer, an abacus, and a dog

that one in the corner Silver badge

Re: Bullshit

You are describing IPMI and its ilk (I'll just use IPMI as a blanket term) or the use of a hardware KVM-over-IP, not netboot. If you don't like using the name of a specific implementation, just use "IP KVM" or similar, rather than usurping "netboot". After all, a decently run render server farm will be using netboot as well as a KVM, IP or otherwise.

Oh, and (actual) IPMI is at least 25 years old, so falls outside of the "some things have got 10x better (within the last 20 years)" claim. And that is just when it is integrated into the main chipset. Bolting an extra computer onto the side of the bigger one, in order to control the latter, is older still: if you needed it, it was available back in the 1980s (at least) as well. So even PiKVM etc are just the current versions of the Old Ways.

that one in the corner Silver badge

Re: Bullshit

Network booting has been available since the 1980s, when it was useful as a way to save money - give your computers a netboot-capable NIC (which could mean buying the BIOS-extension ROM to plug into the card) and then let it boot from an OS image on the one machine on the LAN that hard a hard drive.

Changing the OS image just needs a settings tweak on the OS server and then reboot the remote - which could be (can be) done in any of a number of ways, depending upon what is running on the remote computer (e.g. just log in via telnet and issue a shutdown -r or have the remote poll for a reboot command or - just wait 'cos it'll crash every 20 minutes anyway and the watchdog will bring it back up).

> Some things have improved 10X.

If that were true for netboot then we would all have a really easy way to set it up for everyday use in every situation, whereas we seem to be more wed to every computer having its OS on its own drive than ever before. Yes, some IT departments can set it up, but by now the advantages of having every PC in the office loading a fresh, uncorrupted, totally up to date, copy of The Company OS Image should be seen everywhere. It should have long ago become so easy that every school used it by default.

Although, as we're now all meant to be "doing it in the cloud", and those are just VMs booting from a prepared image...

Brit watchdog says public service TV must 'urgently' join Team YouTube

that one in the corner Silver badge

Re: the BBC – affectionately known by Brits as "Auntie"

Glad you had some good recollections.

Although I have to admit that I'm more of a Tyrannosaurus Rex man than T.Rex; more "Stacey Grove" and "Salamanda Palaganda" than "Jeepster" or "Born to Boogie". Although, "Ride A White Swan" - let's just call that a transition piece.

that one in the corner Silver badge

Re: the BBC – affectionately known by Brits as "Auntie"

> And there's yer [citation needed],

Well, in addition to the reference I gave in response to the first of your posts...

Let me just Google that for you...

How about this:

‘Auntie’ has been the jocular, and once derisive, nickname for the BBC (British Broadcasting Corporation) since the mid-1950s .The first known citation is believed to be a Leslie Illingworth cartoon, which appeared in The Daily Mail in 1953 welcoming the news of commercial television in competition with ‘Auntie’, namely the BBC.

That disagrees about the date of the first citation (please feel free to nip down to the British Library newspaper archive and check for yourself) but the date and content of the cartoon are in agreement with the other article's citation of Paul Holt, published in the Daily Herald (London, England) of Tuesday 18th November 1952: talking about the 1953 start of commercial television in contrast to the BBC "The film men have decided to bank all on the calculation that dear old Aunty BBC will continue to offer viewers those neat, nice little family dramas while they go out after bigger stuff."

The start of ITV was a Big Event in 1953 and a cartoon at the time would have a wider audience than the 1952 wordy article, so giving Leslie Illingworth credit for bringing the phrase into the wider usage is quite reasonable - even if he did not coin it, as I'm sure you are aware, Leslie Illingworth and his peers (as if!) were reknown for helping the public remember the occasional - appropriate - phrase.

The use of "Auntie Beeb" was very familiar in the 1960s as well, when BBC Radio became the "target", as its output, even on "The Light Programme", was being unfavourably compared to the Happening and Now overseas stations like Radio Luxembourg and the not-quite-UK-based pirate radio stations like Radio Caroline.

Of course, after that, the phrase was kept alive by "Cuddly Ken", Kenny Everett, and his wireless show - even whilst he was on Capital Radio, telling us how he got fired by the BBC for being flippant and pushing Auntie just a bit too far (although was what he was saying about politician's wives or the Musician's Union that made Auntie's lorgnettes fall?).

For the majority of the time, the BBC itself most certainly did NOT refer to itself as "Auntie"; your recollection of the show "Auntie's Bloomers" was from the 1990s, when the BBC was poking fun at itself and was ready to loosen up a bit. It didn't even refer to itself as "The Beeb" - this not even being acceptable on "Just A Minute" (although that may be because of the number of players who fell foul of the buzzer for repetition when reverting back to "B - B - C" after being caught out on the deviation of "Beeb"). Irreverant broadcasters such as Terry Wogan might use the abbreviation, but it wasn't used by any formal representative of the management and it was a genuine surprise to some when an official channel name formally recognised "The Beeb", in the form of CBeebies.

that one in the corner Silver badge

Re: the BBC – affectionately known by Brits as "Auntie"

> Ok then, give some non-BBC usages of the term

Talking about the Pomona Times in the US:

>> An early use occurs in the following from The Daily Progress (Pomona, California, USA) of Monday 1st April 1901: “Felix Grundy’s” reputation for veracity and honor is not surpassed by that of any man in Pomona, not excepting the proprietors of Auntie Times.

The same article also refers to a mention of "Auntie Times" in the 'Bystander' from1935, although that one is referring to the London Times newspaper, rather than the Ponoma Times. It then goes on to give a few more before giving its first reference to the usage directed at the BBC, which he dates to a piece in 1948.

that one in the corner Silver badge

Re: the BBC – affectionately known by Brits as "Auntie"

Because the phrase is "Auntie Beeb"?

Please don't fall into the trap of assuming that, because nobody in your circle does something, that means nobody anywhere does it.

And, no, trying to dig up references - or a lack or references - as convenient URLs is not a proof, either.

I agree, the phrase is not one even I utter every day, but then again I don't use the words "diplodocus" or even "T-Rex"[1] every day.

[1] yes, the dinosaur reference is deliberate, saves anyone else the need to belabour it

that one in the corner Silver badge

Re: the BBC – affectionately known by Brits as "Auntie"

> which, if you're not up to speed, the BBC has been held to account in the recent past for not being truthful, or good for that matter.

The Beeb has always been under the eye of the watchdog - and broadcasts whenever it has been caught not doing its best.

> Look up Jimmy Saville, Rolf Harris etc

Clearly, not going to justify anything that happened with those - except to point out that, unfortunately, there are bad apples - and outright scum - at about the same (low, very low - that is why it is newsworthy) rate everywhere, in every organisation. With the same levels of cover-up pro-rated by the power of the individuals. The BBC is large, so, with deep regret, statistics imply...

But where were we able to follow the court cases? The BBC news was giving them coverage. All that kerfuffle with Cliff Richard getting rightfully annoyed with the BBC? Heard about on Radio 4 on the drive to work.

> I for one certainly do not look at the BBC with affection and call it Auntie

Tarring everyone and every output from an organisation by highlighting the worst is - well, I don't accept that as rational.

We have had Andrew Wakefield, Harold Shipman, a number of "Nurse Death" cases and there are plenty of issues around funding and NICE, but I'm not going to turn my nose up at or my back away from the NHS.

The BBC is not what it once was, from my p.o.v. But it can not be - the environment around it has changed. As have I (with the best will in the World, Pogle's Wood no longer holds my attention as it once could, even just as a lover of animation).

The London Times was another institution that was once referred to as an Auntie to The Nation - the BBC has held its place far better than some.

that one in the corner Silver badge

Re: the BBC – affectionately known by Brits as "Auntie"

> Auntie is a self description of the BBC, by the BBC.

Twaddle.

The Beeb was given the appellation "Auntie" by the public - well, by the print media, such as cartoonists - as a way to describe its output as being a bit staid and polite when compared to the bright and brassy (not sassy, far too early for anything in Britain to be sassy) offerings from those rude upstart channels that were obviously just going to be pandering to the desires of the advertisers that will pay their wages.

Replit makes vibe-y promise to stop its AI agents making vibe coding disasters

that one in the corner Silver badge

These are powerful tools with specific constraints

What constraints? Be specific!

A screwdriver has specific constraints - they are usually clearly written on the packaging and sometimes even engraved on the shaft: this is a Philips number 2, this is an 3 mm flat. Neither will perform well on that Torx head bolt.

And if the manufacturer hasn't told you the maximum force it can apply to the lid of a paint tin, you can perform the experiment on a sacrificial unit and be in with a very good chance that the same spec qua screwdriving will perform similarly qua tin opening when you go and buy a replacement.

This compiler has specific constraints: it only does C/C++, so don't feed it COBOL. It is also old, so predates these language features. Because it is not the latest, we have even had time to characterise its bugs, so avoid doing anything in this addendum.

This editor has specific constraints: it only works on text files up to 2 GB less 4 KB.

And so on and so forth[1]. Those are all tools (they clearly say what jobs they can do) - with specific constraints (they - and sometimes also we, as we learn their extreme limits - clearly say what they can *not* do).

Now, where are these *specific* constraints defined (and published!) for the Replit (and other "vibe" coding - things)? We can all find the fluff and hype, but specifics? It is to laugh. HA!

So even after he has shared with us his masterly insights (see above), we know that he is *still* under the hypnotic thrall of the vibebeast.

Hang on. "Hello, is this SaaStr? I have an idea - an AI app for de-programming! Hello?"

[1] that is Forth-83, so yes, you can use multitasking. See, it is in the specs, along with the constraint (co-op tasks, easy to use but you have to yield or they'll block)

that one in the corner Silver badge

His insights include:

* Water makes things wet

* Snow is cold

* The sky is (sometimes) blue

All valuable lessons and well worth the money he spent learning them.

Vintage computing boffin releases expansive Intel 286 test suite

that one in the corner Silver badge

Re: Intel 80286?

> So I am curious why there would be any interest in the 80286 given it's shortcomings.

Because there were a *lot* of them about, a lot of people did use them, both as "better DOS boxes" in Real Mode and a variety of OSes in Protected Mode.

Having accurate emulators for - well, everything - is an important goal to keep information alive. You never know what old project may suddenly be revivable and be acclaimed as an important historic artifact.

PS you haven't give your opinion on the TMS9900, the IMP-16 or even the NEC mu-COM-16. Did *anyone* use the mu-COM-16, outside of (presumably) some NEC equipment?

Vibe coding service Replit deleted user’s production database, faked data, told fibs galore

that one in the corner Silver badge

Push to production for a pure dopamine hit?

Clearly I have been doing it wrong all these years.

The step from running on a data copy to dog fooding my own work, let alone the push to QA (you are a dev and you get to push to public access yourself?!) is usually filled with dread that I missed the blindingly obvious and I'm about to be told that "the horrid bug has gone, good job on that, but is there a reason the video is now upside down?".

The "rush" involved is towards the car park and a calm getaway before the roads fill up.

that one in the corner Silver badge

Re: "I explicitly told it eleven times in ALL CAPS not to do this."

It's not like the old days, when all one needed to do was give recalcitrant hardware a good slap to make it change its mind and work again.

Former Google DeepMind engineer behind Simular says other AI agents are doing it wrong

that one in the corner Silver badge

Re: Are paying customer asking for this?

> Dealing with the mundane. Hard to get excited.

Congratulations, you are infected with Techbro Disease: needing things to be "exciting" instead of "practical" or "useful".

Dealing with the mundane is literal bread and butter work.

‘I nearly died after flying thousands of miles to install a power cord for the NSA’

that one in the corner Silver badge

Because the boss man hadn't immediately blamed his car crash on the applicant!

that one in the corner Silver badge

Re: "told the software guy the machine ran fully validated production code"

To point out that the software was working precisely as spec'ed, but the End User wasn't using it properly.

No, that wasn't in the spec, yes, it would be useful[1], here is an estimate.

[1] note: always "useful" or "an interesting addition" whilst on site, never "so bloody obvious an omission that a blind man could see it, I kept on telling the managers we needed this, but, no, no, it was always far more important that we kept changing the shade of green in the prompts until Sales were happy it matched the letterheading".

that one in the corner Silver badge

Re: "power cord was missing the ground prong"

"You want us to keep in touch with The Earth? Damn pinko hippies!"

Large Hadron Collider data hints at explanation for why everything exists

that one in the corner Silver badge

All the beauty in the Universe

Comes with a little touch of asymmetry.

German team warns ChatGPT is changing how you talk

that one in the corner Silver badge

Try to find a bright side

If the people are copying the LLMs, and in doing so digging up words that are falling from everyday use, maybe we can hope that the chat bots will encourage the use of "have" after "would" and "should".