Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
 Activity
News FAUN.dev() Team Trending
@kaptain shared an update, 3 weeks, 1 day 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 weeks, 1 day 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, 3 weeks, 3 days 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 , 3 weeks, 3 days ago.
 Activity
@igorczechak221 started using tool Go , 3 weeks, 3 days ago.
Link
@anjali shared a link, 3 weeks, 3 days ago
Customer Marketing Manager, Last9

Observability vs. Visibility: What's the Difference?

Understand observability vs visibility: visibility shows current states, while observability uncovers why systems act the way they do.

hbase
Link
@anjali shared a link, 3 weeks, 3 days ago
Customer Marketing Manager, Last9

The Service Discovery Problem Every Developer Knows (But Pretends Doesn't Exist)

New services deploy faster than you can track them. Discover Services auto-discovers your entire architecture from traces—convention over configuration. No manual catalogs.

services
 Activity
@jeevisoftacademy started using tool kind , 3 weeks, 4 days ago.
 Activity
@jeevisoftacademy started using tool Jenkins , 3 weeks, 4 days 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