Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
Story
@laura_garcia shared a post, 2 weeks, 6 days ago
Software Developer, RELIANOID

Secure Boot Advanced Targeting (SBAT): Scaling Boot Security 🔐

Discover how SBAT enhances Secure Boot by introducing a smarter way to handle vulnerabilities, reducing overhead, and ensuring your system's boot process stays secure. Learn how it works, how it addresses scalability, and why it's a game-changer for modern boot security across Linux and Windows envi..

KB-Secure Boot Advanced Targeting
 Activity
@cristofepascale started using tool AWS EKS , 2 weeks, 6 days ago.
 Activity
@3duardo_4ndrad3 started using tool Zabbix , 3 weeks ago.
 Activity
@3duardo_4ndrad3 started using tool AWS EKS , 3 weeks ago.
Story
@laura_garcia shared a post, 3 weeks ago
Software Developer, RELIANOID

Cyber Security & Cloud Expo Europe in Amsterdam

🔐 On 24–25 September 2025, RELIANOID will be at Cyber Security & Cloud Expo Europe in Amsterdam! Join us to explore how we enable secure, scalable, and Zero Trust–ready application delivery. 👉 https://www.relianoid.com/about-us/events/cyber-security-cloud-expo-2025/ #CyberSecurity#Cloud#ZeroTrust#De..

cybersecurity and cloud expo amsterdam event
Story
@laura_garcia shared a post, 3 weeks ago
Software Developer, RELIANOID

Cyber Security & Cloud Expo Europe in Amsterdam

🔐 On 24–25 September 2025, RELIANOID will be at Cyber Security & Cloud Expo Europe in Amsterdam! Join us to explore how we enable secure, scalable, and Zero Trust–ready application delivery. 👉 https://www.relianoid.com/about-us/events/cyber-security-cloud-expo-2025/ #CyberSecurity#Cloud#ZeroTrust#De..

cybersecurity and cloud expo amsterdam event
 Activity
@simon started using tool Docker Compose , 3 weeks ago.
Story
@laura_garcia shared a post, 3 weeks, 1 day ago
Software Developer, RELIANOID

🔐 Industrial networks face increasing complexity and evolving cyber threats.

To strengthen defenses, many organizations are moving beyond traditional segmentation and adopting microsegmentation — a strategy that creates independent, secure zones to better protect critical assets. We’ve prepared a clear diagram to illustrate how defense-in-depth and microsegmentation can be a..

Industrial Zero-Trust Micro-Segmentation
 Activity
@monroealex17 created an organization Cryptiecraft , 3 weeks, 1 day ago.
Link
@anjali shared a link, 3 weeks, 1 day ago
Customer Marketing Manager, Last9

What is Asynchronous Job Monitoring?

Know how asynchronous job monitoring tracks background tasks, ensuring they finish reliably, perform well, and stay visible at scale.

async_job_monitoring
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