Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
Link
@faun shared a link, 3 days, 4 hours ago

Why Rancher's Founders Pivoted From Kubernetes to Agentic AI

Obot.ai just dropped out of stealth with $35M in seed and a big swing: it’s building a control plane for agentic AI, anchored on the now-standard **Model Context Protocol (MCP)**. Its **MCP Gateway** handles registry, secure proxying, RBAC, and observability for MCP servers. Think API gateway, but ..

Why Rancher's Founders Pivoted From Kubernetes to Agentic AI
Story FAUN.dev Team
@eon01 shared a post, 3 days, 5 hours ago
Founder, FAUN.dev

Data-Driven Developer Journalism: Announcing FAUN.dev News, a Smarter Way to Read Developer News

We launched a new news experience at FAUN.dev that uses advanced retrieval to deliver context-rich, insightful news for developers.

FAUN.dev Developer Journalism
News FAUN.dev Team Trending
@varbear shared an update, 3 days, 6 hours ago
FAUN.dev

Perplexity AI's Comet Browser Launches Globally, Free for All Users

Perplexity AI launches the Comet browser globally, offering it for free to enhance internet usage with features like the Comet Assistant and Background Assistants, aiming to foster curiosity and productivity.

News FAUN.dev Team Trending
@kala shared an update, 3 days, 7 hours ago
FAUN.dev

Microsoft Shifts to In-House AI Chips, Reducing Nvidia, AMD Reliance

Microsoft is advancing its strategy to predominantly use its own AI data center chips, such as the Azure Maia AI Accelerator and Cobalt CPU, to reduce reliance on Nvidia and AMD, while addressing compute capacity shortages and enhancing system efficiency, according to CTO Kevin Scott.

 Activity
News FAUN.dev Team
@kaptain shared an update, 3 days, 7 hours ago
FAUN.dev

Akuity Launches AI Tools to Boost Kubernetes Management Efficiency

Argo

Akuity introduces AI-driven features to improve Kubernetes management, enhancing stability, security, and scalability while automating issue detection and resolution.

News FAUN.dev Team Trending
@devopslinks shared an update, 3 days, 7 hours ago
FAUN.dev

Red Hat GitLab Breach: 570GB Data Stolen by Crimson Collective

GitLab

A security breach in Red Hat's consulting GitLab instance led to the theft of 570GB of data by the "Crimson Collective," impacting around 800 organizations across multiple sectors.

Story
@laura_garcia shared a post, 5 days, 5 hours ago
Software Developer, RELIANOID

🌍 RELIANOID at World Telemedia Marbella 2025

📍 Marbella, Spain | 📅 October 5–7, 2025 We’re excited to join World Telemedia 2025, the leading event to monetise and trade traffic, minutes, and messages with global industry leaders. This is where 700+ delegates, 277+ companies, and 95% C-Level attendees come together to shape the future of teleme..

World Telemedia Marbella RELIANOID 2025
 Activity
@igorczechak221 started using tool Rust , 5 days, 7 hours ago.
 Activity
@igorczechak221 started using tool Go , 5 days, 7 hours ago.
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