* Posts by DanAU

17 publicly visible posts • joined 23 Jan 2024

Cloudflare builds an AI to lead AI scraper bots into a horrible maze of junk content

DanAU

Re: Nepenthes

Cloudflare's implementation is completely different. They pre-generate the content and store it in blob storage (R2) rather than generating it on demand, so that it doesn't affect runtime performance. They also ensure the content is factually accurate, whereas Nepenthes is just a Markov chain.

We did not have Brave clashing with Rupert Murdoch on our 2025 bingo card, but there it is

DanAU

Are you also against Google search, then? They're also processing other people's content.

Backup software vendor Veeam deleted forum data after restoration SNAFU

DanAU

Re: Didn't backup frequently enough?

They said that comparing the two versions and merging the changes would have been too hard:

> As a result of significant changes (new topics and comments) made since the time of the restore, we are unable to integrate the topics and comments from yesterday and todays [sic] morning into the current version.

I'd believe it... They'd need to change every overlapping auto-increment ID, and it's easy to mess that up.

Developer pockets $2M in savings from going cloud-free

DanAU

For bursty workloads, you often usually overprovision hardware and still end up cheaper than what it'd cost in "the cloud."

DanAU

Re: Controls and discipline

How would cost alerts help in this case? It's a production use case and they can't just turn off services if a cost alert triggers.

Sysadmins rage over Apple’s ‘nightmarish’ SSL/TLS cert lifespan cuts plot

DanAU

Re: Follow the money

> All this will do is force EVERYONE to either use free, automatically issued certificates,

Note that there's nothing limiting ACME to free providers. Paid providers can implement it too.

I'm hoping this change pushes more vendors to support ACME. There's no reason certs should have to be manually renewed.

DanAU

Re: Follow the money

Apple is proposing this change, and they're not in the business of selling TLS certs.

DanAU

You don't have to use a CNAME for the actual service itself, just for its _acme-challenge subdomain. You could use a DNS server like acme-dns that's designed to only respond to ACME TXT validation requests.

ICANN reserves .internal for private use at the DNS level

DanAU

Re: Would have prefered "*.int"

The manufacturer really should have used .home.arpa as it was reserved for this purpose. The risk of using something like .home was that ICANN may make a real .home TLD one day.

DanAU

Re: Would have prefered "*.int"

The .int TLD has existed for 35 years, so it can't be used for this. https://en.m.wikipedia.org/wiki/.int

DanAU

Re: Would have prefered "*.int"

.local is used by mDNS. You should never use .local domains with regular DNS.

If you're using Polyfill.io code on your site – like 100,000+ are – remove it immediately

DanAU

Re: Integrity

The issue is that polyfill .io serves different JS per browser, so it's incompatible with SRI hashes. The solution is to either self-host it, or bundle the polyfills yourself. It's usually sufficient to have two JS bundles: One for old browsers (with all the polyfills required for the oldest browsers your app supports) and one for modern browsers (only polyfills required by browsers released in the last year or so).

Broadcom terminates VMware's free ESXi hypervisor

DanAU

Re: Oh well

If your systems are Linux on Linux then often it's sufficient to rely on containerization rather than virtualization. Consider using Docker or Podman (optionally with a web UI like Portainer) or LXC.

DanAU

Re: OpenStack

If you want click-and-play, Proxmox is pretty good. A bunch of hosting services use it - probably moreso than OpenStack.

Windows 3.11 trundles on as job site pleads for 'driver updates' on German trains

DanAU

Re: Improvement?

> ISA and parallel at least are very tricky to track down on "modern" hardware.

There are modern-ish industrial motherboards that still have ISA slots and parallel ports, since companies have older industrial automation equipment that they need to keep running and it'd be very expensive to modernize (the old equipment still works so there's not much of a business case for replacing it).

In fact, some motherboards have PCIe, PCI, and ISA all on the same board. For example, this board takes 7th gen Intel Core processors and has an ISA slot: https://elmark-automation.com/shop/msi-ipc/ms-98l9v20 . Unfortunately this one doesn't have a parallel port, but there's others that do.

No guarantee that all ISA devices will work though, since these boards usually use a PCI-to-ISA bridge rather than a true ISA bus.

White goods giant fires legal threats to unplug open source plugin

DanAU

My Bosch (around 10 years ago) has the same downward-facing light. It's a nice feature.

I have it plugged in to a smart plug, and have an automation configured to send me a notification if the power usage drops from above 10W to <10W for longer than 10 minutes, to tell me that it's done. Same for the washing machine. Works well enough.

DanAU

Re: So the washing machine connects to AWS

> But why poll?

This is the thing I don't understand. If they really want to use AWS, it even has a nice service they can use: SNS (Simple Notification System). It supports both mobile notifications and app-to-app pub/sub.

In reality, it should just use MQTT locally.