Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
 Activity
@klodnitsky started using tool Jenkins , 1 week, 2 days ago.
 Activity
@klodnitsky started using tool Grafana Loki , 1 week, 2 days ago.
 Activity
@klodnitsky started using tool Grafana , 1 week, 2 days ago.
 Activity
@klodnitsky started using tool GitHub Actions , 1 week, 2 days ago.
 Activity
@kkz7777 gave 🐾 to 🚀 RELIANOID is heading to Washington, DC! , 1 week, 2 days ago.
Story Trending
@laura_garcia shared a post, 1 week, 2 days ago
Software Developer, RELIANOID

🚀 RELIANOID is heading to Washington, DC!

From September 9–12, 2025, we’ll be at the 16th Billington CyberSecurity Summit — the premier government cybersecurity event gathering 2,500+ leaders and innovators to shape the future of AI, Zero Trust, cloud security, and critical infrastructure protection. Meet our team and discover how RELIANOID..

billington cybersecurity summit washington event
Story Trending
@idjuric660 shared a post, 1 week, 3 days ago
Technical Content Writer, Mailtrap

Send emails with v0 and Mailtrap

Vercel Mailtrap.io

Learn how to integrate Mailtrap with your v0 application to send transactional emails and manage contacts without writing complex code.

Link
@faun shared a link, 1 week, 3 days ago

We Needed Better Cloud Storage for Python so We Built Obstore

Obstoreis a new stateless object store that skips fsspec-style caching and keeps its API tight and predictable across S3, GCS, and Azure. Sync and async both work. Under the hood? Fast, zero-copy Rust–Python interop. And on small concurrent async GETs, it reportedly crushes S3FS with up to9x better ..

We Needed Better Cloud Storage for Python so We Built Obstore
Link
@faun shared a link, 1 week, 3 days ago

How Salesforce Delivers Reliable, Low-Latency AI Inference

Salesforce’s AI Metadata Service (AIMS) just got a serious speed boost. They rolled out a multi-layer cache—L1 on the client, L2 on the server—and cut inference latency from 400ms to under 1ms. That’s over 98% faster. But it’s not just about speed anymore. L2 keeps responses flowing even when the b..

How Salesforce Delivers Reliable, Low-Latency AI Inference
Link
@faun shared a link, 1 week, 3 days ago

Open Source is one person

New data from ecosyste.ms drops a hard truth:almost 60% of 11.8M open source projects are solo acts. Even among NPM packages topping 1M monthly downloads, about half still rest on one pair of hands. The world runs on open source. But the scaffolding seems shakier than anyone wants to admit—millions..

Open Source is one person
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