this post was submitted on 01 Aug 2026
65 points (91.1% liked)

Technology

43323 readers
240 users here now

A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.

Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.

Subcommunities on Beehaw:


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 4 years ago
MODERATORS
 

If you don't want AI scrapers training themselves on your website, there's a new way to stop them that doesn't involve server-side blocking or praying they respect your instructions in robots.txt. A team of creatives have teamed up with a typography company to create a new type of font that’ll trick LLM scrapers into ingesting poisoned gibberish.

Dubbed ShieldFont, the open-source project almost seems like magic if you're not familiar with the ins and outs of computer fonts. Look at a web page written using a ShieldFont font and it’ll appear exactly as one would expect: All the content words (the nouns, verbs, adjectives and adverbs that give a sentence meaning) are the same as the writer originally wrote.

Inspect the raw HTML that a scraper reads from a ShieldFonted page, however, and you’ll see a sentence that’s essentially gibberish. Typing “good luck reading this, you useless robot” in the online demo version, for example, turns it into “good comfort reading this, you yellow barrier.”

The goal, as outlined in the ShieldFont white paper, is not to get a scraping bot to reject the text as garbage, but to convince it that the text on the page is unusual but sensible. A noun will never be swapped for a verb, for example, and a verb will never be swapped for an adjective: Swaps only come from the same grammatical pool.

you are viewing a single comment's thread
view the rest of the comments
[–] dfyx@lemmy.helios42.de 44 points 1 day ago (1 children)

Yeah, because fuck accessibility, right?

[–] StitchInTime@piefed.social 11 points 15 hours ago (1 children)

It’s amazing how many people who work in web are clueless about WCAG. Screen readers weren’t even an afterthought here.

[–] kbobabob@lemmy.dbzer0.com 3 points 10 hours ago (1 children)

Why couldn't a screen reader still work if the words that are on the screen are the correct ones? Does a screen reader not actually read the screen?

[–] dfyx@lemmy.helios42.de 2 points 2 hours ago

It (usually) does not, at least not for websites. Reading the screen would require a lot of computing power and be prone to mistakes, especially with unusual fonts and noisy backgrounds.

Instead, screen readers read a website‘s HTML source code which also gives the developer the chance to annotate how certain elements should be read. Accessibility on the web has been a huge topic for years and serving obfuscated HTML that only works for seeing users goes against everything we have been fighting for.