Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
News FAUN.dev() Team Trending
@kala shared an update, 2 weeks, 4 days ago
FAUN.dev

Anthropic unveils three infrastructure bugs behind Claude's performance issues

Anthropic resolves infrastructure bugs affecting Claude AI performance, revises processes to prevent future disruptions across AWS, NVIDIA, and Google platforms.

News FAUN.dev() Team Trending
@kala shared an update, 2 weeks, 4 days ago
FAUN.dev

ChatGPT Launches Interactive Apps with New Apps SDK Preview

ChatGPT

ChatGPT introduces an app ecosystem with an Apps SDK Preview, enabling developers to create interactive applications integrated into conversations, initially available to non-EU users with partners like Booking.com and Spotify.

News FAUN.dev() Team Trending
@kala shared an update, 2 weeks, 4 days ago
FAUN.dev

Google DeepMind Launches Gemini 2.5 Model for Enhanced API Performance

Google DeepMind releases Gemini 2.5 model, enhancing API performance for browser and mobile tasks with lower latency and improved UI interaction.

News FAUN.dev() Team Trending
@kala shared an update, 2 weeks, 4 days ago
FAUN.dev

Anthropic Launches Petri: Open-Source Tool for AI Safety Audits

Anthropic introduces Petri, an open-source tool for automating AI safety audits, revealing risky behaviors in leading language models.

News FAUN.dev() Team Trending
@devopslinks shared an update, 2 weeks, 4 days ago
FAUN.dev

Qovery Secures $13M Series A to Boost DevOps Automation Platform

Kubernetes

Qovery raises $13M Series A to enhance its DevOps automation platform, addressing the DevOps engineer shortage and supporting regional expansion and AI-driven development.

Story
@laura_garcia shared a post, 2 weeks, 4 days ago
Software Developer, RELIANOID

Japan’s new Active Cyberdefence Law

Japan’s new Active Cyberdefence Law (ACD) is redefining how the nation tackles cyber threats — shifting from a defensive stance to a proactive cybersecurity strategy. Key measures include: ⚙ Authority to neutralize hostile servers đŸ€ Closer public–private collaboration 📱 Mandatory breach reporting A..

Japan's Active Cyberdefence Law
Story
@laura_garcia shared a post, 2 weeks, 5 days ago
Software Developer, RELIANOID

Asia Hits 50% IPv6 Capability — A Global Milestone

- Asia has reached a major internet milestone: 50% of its systems are now IPv6 capable, positioning the region as a global leader in IPv6 user adoption. - Why this matters: - India (78.1%) and China (810M users) are driving this growth. - Historical IPv4 scarcity in Asia helped fuel early IPv6 inves..

Blog Asia reaches 50 percent IPv6 capability
Story
@laura_garcia shared a post, 2 weeks, 6 days ago
Software Developer, RELIANOID

🚀 RELIANOID is heading to it-sa Expo&Congress 2025!

📍 Nuremberg, Germany | October 7–9, 2025 🔒 Europe’s largest IT security event with 900+ exhibitors, expert talks & global networking. We’ll be there to showcase how RELIANOID helps businesses stay ahead of evolving cyber threats. 👉 See you in Nuremberg! Send us a DM to make an appointment. #itSa2025..

itsa nuremberg
Link
@faun shared a link, 3 weeks ago

Privacy for subdomains: the solution

A two-container setup using **acme.sh** gets Let's Encrypt certs running on a Synology NAS—thanks, Docker. No built-in Certbot support? No problem. Cloudflare DNS API token handles auth. Scheduled tasks handle renewal...

Privacy for subdomains: the solution
Link
@faun shared a link, 3 weeks ago

Organize your Slack channels by “How Often”, not “What” - Aggressively Paraphrasing Me

One dev rewired their Slack setup by **engagement frequency**—not subject. Channels got sorted into tiers like “Read Now” and “Read Hourly,” cutting through noise and saving brainpower. It riffs off the **Eisenhower Matrix**, letting priorities shift with projects, not burn people out...

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