Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
Link
@varbear shared a link, 1 week, 4 days ago
FAUN.dev()

How to Get Developers in Your Team to Contribute to Your Test Automation

A fresh blog post dives into how to get devs pulling their weight ontest automation- not as extra credit, but as part of shipping code. The playbook: tie automation work straight to thedefinition of done, clear up who owns what, and stop pretending delivery pressure is a mystery. The big idea? Most .. read more  

How to Get Developers in Your Team to Contribute to Your Test Automation
Link
@varbear shared a link, 1 week, 4 days ago
FAUN.dev()

Building Mac Farm: Running 2000+ iOS Pipelines Daily

At Trendyol, they runover 2,000 iOSpipelines daily across130 Mac machines, executing50,000+ unit testsand10,000+ UI testsfor their iOS apps. The team initiated a mobile CI transformation to address the challenges of scale and performance as their team grew and AI usage increased. They built a macOS .. read more  

Link
@kaptain shared a link, 1 week, 4 days ago
FAUN.dev()

In-place Pod resizing in Kubernetes: How it works and how to use it

Kubernetes 1.33 and 1.34 takein-place Pod resource updatesfrom beta to battle-ready. You can now tweak CPU and memory on the fly - no Pod restarts needed. It's on by default. What’s new: memory downsizing with guardrails, kubelet metrics that actually tell you what’s going on, and smarter retries th.. read more  

In-place Pod resizing in Kubernetes: How it works and how to use it
Link
@kaptain shared a link, 1 week, 4 days ago
FAUN.dev()

KubeCon North America 2025 Recap: Federation and

HAProxy just droppedUniversal Mesh, a fresh spin on service mesh design. Forget the per-service sidecars - this model plants high-speed gateways at the network edges instead. Result? Lighter by 30–50% on resources, easier to upgrade, and way less hassle routing traffic across Kubernetes, VMs, and cl.. read more  

KubeCon North America 2025 Recap: Federation and
Link
@kaptain shared a link, 1 week, 4 days ago
FAUN.dev()

Ingress NGINX Is Retiring. Here’s Your Path Forward with HAProxy

TheIngress NGINX projectis riding off into the sunset by March 2026. Time to pick a new horse. One strong contender: theHAProxy Kubernetes Ingress Controller. It matches feature-for-feature, comes with deeper observability, and reloads configs without taking your cluster offline. HAProxy’s not stopp.. read more  

Ingress NGINX Is Retiring. Here’s Your Path Forward with HAProxy
Link
@kaptain shared a link, 1 week, 4 days ago
FAUN.dev()

Developers don’t care about Kubernetes clusters

Most cloud-native tools obsess over clusters. Not developers. That means poor support for things like promoting code between environments or deploying by feature - not just by repo. The author pushes for a better way: platforms that hide the Kubernetes mess and tame CI/CD. Think feature-driven deplo.. read more  

Developers don’t care about Kubernetes clusters
Link
@kaptain shared a link, 1 week, 4 days ago
FAUN.dev()

udwall: A Tool for Making UFW and Docker Play Nice With Each Other

Hexmos droppedudwall, a declarative firewall manager that finally makesUFWandDockerplay nice. Docker’s notorious for bulldozing past UFW rules via iptables. udwall patches that hole. It syncs rules across both, auto-reconciles changes, backs up configs, and plugs cleanly intoAnsible. No more duct-ta.. read more  

udwall: A Tool for Making UFW and Docker Play Nice With Each Other
Link
@kaptain shared a link, 1 week, 4 days ago
FAUN.dev()

You Want Microservices—But Do You Need Them?

Amazon Prime Video ditched its pricey microservices maze and rebuilt as asingle-process monolith, cutting ops costs by 90%. No big press release. Just results. Same move from Twilio Segment. And Shopify. Both pulled their tangled systems back intomodular monoliths- cleaner, faster, easier to test, a.. read more  

You Want Microservices—But Do You Need Them?
Link
@kaptain shared a link, 1 week, 4 days ago
FAUN.dev()

Kubernetes Configuration Good Practices

Stripped down and sharp, the blog lays out Kubernetes config best practices: keep YAML manifests in version control, use Deployments (not raw Pods), and label like you mean it - semantically, not just alphabet soup. It digs into sneaky pain points too, like how YAML mangles booleans (yes≠true), and .. read more  

Link
@kaptain shared a link, 1 week, 4 days ago
FAUN.dev()

The Grafana trust problem

Grafana’s been busy clearing the shelves.Grafana Agent,Agent Flow, andOnCall? All deprecated. The replacement:Grafana Alloy- a one-stop observability agent that handles logs, metrics, traces, and OTEL without flinching. Meanwhile,Mimir 3.0ships with a Kafka-powered ingestion pipeline. More scalabili.. read more  

Did you know you can clap for someone’s content up to 50 times on Medium?

Well, you can.

And to protect you from carpal tunnel syndrome, I packaged that behavior into a little extension for Chrome.

It works like this:

https://www.youtube.com/watch?v=oN3soEz-5Z4

Open up your developer tools (right-click & choose inspect)

Then, navigate to the “console”:

And if you have a bunch of caca (that’s Spanish for đŸ’©) in your Console you can click the little đŸš« icon to clear it:

Then:

copy the JavaScript code below
paste it into the Console area
press the Return key

and spread the clap!

(Scroll up to the top of this article before you press enter if you want to see it in action)

let clapButton = document.querySelector('button[data-testid="headerClapButton"]');
if (clapButton) {
const events = ['mousedown', 'mouseup', 'click'];

async function performClap() {
for (let i = 0; i < 50; i++) {
events.forEach(eventType => {
let event = new MouseEvent(eventType, {
'view': window,
'bubbles': true,
'cancelable': true
});
clapButton.dispatchEvent(event);
});
await new Promise(resolve => setTimeout(resolve, 10)); // Introducing a 10ms delay between claps
}
console.log("+50 Claps! Now, go join the SERP community!");
}

performClap();
} else {
console.log("Clap button not found!");
}

Want the extension?

I submitted the extension to the Chrome app store and it’s pending approval as of this writing


But if you’re too excited to sit around when you could be clappin’ it up — you’re welcome to grab the bootleg here:

👉 https://serp.ly/@serp/serp-clapper-medium