Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
Link
@anjali shared a link, 1 month ago
Customer Marketing Manager, Last9

Use Telegraf Without the Prometheus Complexity

Collect metrics with Telegraf without running Prometheus. No scraping, no TSDB tuning, just clean, push-based telemetry to your backend.

telegraf
Story
@laura_garcia shared a post, 1 month ago
Software Developer, RELIANOID

🌐 DNS for Load Balancing

Looking for a simple, scalable way to distribute traffic across multiple servers? In our latest post, we explore howDNS-based load balancingworks, including: 📌 Techniques like Round Robin, Weighted, and Dynamic DNS 📌 Using DNS for failover and backup configurations 📌 Key benefits: performance, high ..

Story
@laura_garcia shared a post, 1 month ago
Software Developer, RELIANOID

🛡️ Creating a DR Environment for RELIANOID Load Balancer Clusters in Azure

Is your load balancer cluster ready for a disaster recovery scenario? Our latest 3-minute read explains how to replicate RELIANOID Load Balancer nodes to Azure usingAzure Site Recovery, covering: ✅ Infrastructure & replication setup ✅ Manual license activation for DR ✅ Failover and failback strategi..

Knowledge base Creating a DR environment for relianoid cluster using Azure Site Recovery Service
Story
@viktoriia-yarosh shared a post, 1 month ago
Freshcode

How Clojure shapes teams and products. Part 2

Curious how Clojure shapes teams and products beyond the hype? Tune into episodes 5–10 of “Clojure in Product. Would you do it again?” to hear leaders from startups to enterprises share real stories on scaling, tackling complexity, and building sustainable, high-impact software with smaller, focused teams. Discover why Clojure isn’t just a language – it’s a game-changing approach to development. Listen now and see what thoughtful tech choices can do for your business!

img (4)
Story
@laura_garcia shared a post, 1 month ago
Software Developer, RELIANOID

🚨 Cyberattack on Qantas highlights growing threats to aviation

Up to 6 million customers affected via a third-party breach – allegedly linked to Scattered Spider, a group known for social engineering and supply chain attacks. 🔍 The lesson? The weakest link is often outside the organization. ✈️ At RELIANOID, we help airlines and critical services stay protected ..

Blog quantas breach Aviation Cyber Risks and Need for Proactive Defense
Link
@faun shared a link, 1 month ago

Asynchrony is not Concurrency

Asynchronyisn't a twin toConcurrencyin Zig. It juggles async tasks without leaning on multi-threading, letting sync and async mingle harmoniously. Concurrency craves overlap, but Zig's savvy. When resources get stingy, it smartly reverts tasks to synchronous, dodging drama like deadlocks or sudden c..

Asynchrony is not Concurrency
Link
@faun shared a link, 1 month ago

“A Programmer Who Reads Is Worth Two”: Tech Books for Summer 2025

Crafting an LLM from the ground up? Dive intoSebastian Raschka’s guide. It tackles everything: data wrangling to toeing the ethical line. Seasoned ML pros will nod in approval. Craving a sharp take on AI’s charming deceptions?Narayanan & Kapoor's"AI Snake Oil" spills the beans on marketing myths wit..

“A Programmer Who Reads Is Worth Two”: Tech Books for Summer 2025
Link
@faun shared a link, 1 month ago

10 Unspoken NestJS Secrets for Production at Scale

UnlockNestJSspeed by steering clear of full module preloads. This trick slashes cold start drags, cutting first request delays by up to10 seconds...

Link
@faun shared a link, 1 month ago

Understand CPU Branch Instructions Better

Branch prediction matters. Why? About a quarter of instructions are branches, and modern CPUs nail an accuracyabove 90%. Yet, those often-pesky branches can choke CPUs, stalling instruction flow. So, take a wrench to yourif-else logic. Trim indirect branches whenever you can—your CPU will thank you...

Link
@faun shared a link, 1 month ago

Exhausted man defeats AI model in world coding championship

A weary-eyed Polish coder,Przemysław Dębiak, bested an OpenAI model in a grueling 10-hour face-off, reminiscent ofJohn Henry’sepic duel against the steam-powered behemoth...

Exhausted man defeats AI model in world coding championship
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