Category: API Software

4 July 2026
Chunked range reads with etcd RangeStream

etcd RangeStream is one of those changes that sounds minor until you watch a large read stop clogging memory on both ends of the RPC. I like it because it replaces one ugly pause with a series of smaller ones, which is usually the difference between a system being merely busy and being a nuisance.

Read more
27 June 2026
redeemPosition rounding turns fixed deposits noisy

A fixed deposit should not unlock more SEA just because the round counter shifts. The SEA settlement adapter let that line blur, and a flash-loan loop made the mistake expensive; once redemption follows round maths instead of settled balance, the numbers stop being polite.

Read more
14 June 2026
Cloudflare AI Gateway REST API logging and rate limiting

Cloudflare AI Gateway REST API logging and rate limiting is one of those setups that looks tidy until you test it properly. I spent enough time tripping over the default gateway behaviour to know the difference between a request that works and one that lands where you meant it to.

Read more
12 June 2026
Aggregated Discovery during API server upgrades

Kubernetes Mixed Version Proxy is one of those fixes that only matters when an upgrade goes sideways, which is exactly when I want it. Aggregated Discovery finally gives older API servers enough sight of their peers to stop turning a temporary gap into a false 404.

Read more
11 June 2026
Chunked gRPC range requests in etcd 3.7

etcd 3.7’s RangeStream makes large reads less painful, but it also clears out a lot of old v2 baggage, which is where upgrades tend to go wrong. I like the new read path; I do not trust any release that also expects your forgotten scripts to behave.

Read more
31 May 2026
Joining R2 Data Catalog tables in R2 SQL

Cloudflare R2 SQL JOINs are useful when the relationship matters more than a single table scan, but I still reach for them with a bit of caution. The syntax is easy enough; the awkward part is keeping the query readable once the tables start multiplying.

Read more
30 May 2026
Cloudflare Tunnel for local webhook previews

Cloudflare Tunnel is one of those tools I only appreciate after fighting without it. For local webhook previews, a stable hostname matters more than a tidy demo link, and once you need that fixed callback URL, the difference between a quick hack and something usable becomes obvious.

Read more
30 May 2026
Cloudflare Artifacts repo-scoped tokens in Wrangler CLI

Cloudflare Artifacts repo-scoped tokens are the bit worth caring about, because they keep Git access tied to one repository instead of a loose account-wide key. I like that. Narrow the boundary, test it properly, and you find the mistake before someone starts cloning things in anger.

Read more
29 May 2026
Subscribe to repository lifecycle events in Artifacts

Cloudflare Artifacts event subscriptions give you a clean way to react to repository changes without bolting on another watcher. I like that the split between lifecycle and activity events is blunt, because it keeps setup, pushes, and cleanup from tripping over each other.

Read more
22 September 2025
Build a Discord bot for image processing with Python

Unlock the potential of your Discord server with a simple Python bot for image processing. This guide covers everything from setup to external API integration, making bot creation effortless.

Read more
21 July 2025
Self-hosting APIs for better control and security

In today's data-driven world, self-hosting APIs offers organizations enhanced control and security over their digital assets, ensuring sensitive information stays protected.

Read more