fix: placekitten.com is returning HTTP 521 (origin dead)#1606
Open
kiluazen wants to merge 1 commit intoinfinitered:masterfrom
Open
fix: placekitten.com is returning HTTP 521 (origin dead)#1606kiluazen wants to merge 1 commit intoinfinitered:masterfrom
kiluazen wants to merge 1 commit intoinfinitered:masterfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
lib/reactotron-core-client/README.mdreferencesplacekitten.comURLs. The origin has been returning HTTP 521 (Cloudflare origin unreachable) for months.Why this is needed
placekitten.com's origin is returning HTTP 521 (Cloudflare origin unreachable) and has been unreliable throughout 2025-2026. The service is effectively dead for programmatic use.Verify in any shell:
What this PR changes
Fixes the 2
uriexamples in thereactotron-core-clientREADME so the image-log examples actually render a cat image for developers trying reactotron for the first time.Replacement details
cataas.com('Cat as a Service') is alive, returns a 200 cat image at any size via?width=<W>&height=<H>, and preserves the kitten-ness of the original placekitten URL — which seems to be the point of the example. Also upgradeshttp:→https:.Background
I'm tracking dead image-placeholder endpoints (
source.unsplash.com/*,via.placeholder.com/*,placekitten.com/*) across public repos as part of tteg, a tiny CLI/HTTP API I built so projects can drop in real Unsplash photos without registering an Unsplash app or managing API keys. tteg is not introduced as a dependency by this PR — the diff uses the dependency-free canonical replacement domain. If you want topic-matched real photos as a follow-up, the no-key HTTP API is athttps://tteg-api-53227342417.asia-south1.run.app/search?q=<query>&n=1(CORS-on, no auth).One extra artifact you may find handy: a public scanner at https://tteg.kushalsm.com/scan?url= that highlights dead-placeholder patterns in any landing page — useful for verifying the fix lands and for finding other places dead URLs slipped in. Source: https://github.com/kiluazen/tteg-landing/blob/main/scan.html.
Research note covering the broader broken-placeholder landscape: https://github.com/kiluazen/tteg/blob/research-note-autark/RESEARCH.md.