Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
 Activity
@devopslinks added a new tool OWASP Dependency-Check , 1 week, 1 day ago.
 Activity
@varbear added a new tool pre-commit , 1 week, 1 day ago.
 Activity
@devopslinks added a new tool GitGuardian , 1 week, 1 day ago.
 Activity
@devopslinks added a new tool detect-secrets , 1 week, 1 day ago.
 Activity
@devopslinks added a new tool Gitleaks , 1 week, 1 day ago.
Course
@eon01 published a course, 1 week, 1 day ago
Founder, FAUN.dev

DevSecOps in Practice

TruffleHog Flask NeuVector detect-secrets pre-commit OWASP Dependency-Check Docker checkov Bandit Hadolint Grype KubeLinter Syft GitLab CI/CD Trivy Kubernetes

A Hands-On Guide to Operationalizing DevSecOps at Scale

DevSecOps in Practice
Story Trigma Inc Team
@tairascott shared a post, 1 week, 1 day ago
AI Expert and Consultant, Trigma

How Do Large Language Models (LLMs) Work? An In-Depth Look

Discover how Large Language Models work through a clear and human centered explanation. Learn about training, reasoning, and real world applications including Agentic AI development and LLM powered solutions from Trigma.

How do Large Language Models (LLMs) Work Banner
Story
@laura_garcia shared a post, 1 week, 1 day ago
Software Developer, RELIANOID

🔐 RELIANOID at Gartner IAM Summit 2025 | Dec 8–10, Grapevine, TX

We’re heading to the Gartner Identity & Access Management Summit to showcase how RELIANOID’s intelligent proxy and ADC platforms empower modern IAM: enhancing Zero Trust enforcement, adaptive access, and hybrid/multi-cloud security. Join us to explore AI-driven automation, ITDR, and identity governa..

Gartner Identity and Access Management Summit 2025 relianoid
Link
@varbear shared a link, 1 week, 1 day ago
FAUN.dev()

Why we're leaving serverless

Every millisecond matters in the critical path of API authentication. After two years of battling serverless limitations, the entire API stack was rebuilt to reduce end-to-end latency. The move from Cloudflare Workers to stateful Go servers resulted in a 6x performance improvement and simplified arc.. read more  

Why we're leaving serverless
Link
@varbear shared a link, 1 week, 1 day ago
FAUN.dev()

Confessions of a Software Developer: No More Self-Censorship

A mid-career dev hits pause after ten years in the game -realizing core skills likepolymorphism, SQL, and automated testingnever quite clicked. Leadership roles, shipping products, mentoring junior devs - none of it filled those gaps. They'd been writingC#/.NETfor a while too. Not out of love, just .. read more  

Confessions of a Software Developer: No More Self-Censorship
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