Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
Discovery IconThat's all about @SERP Clapper for Medium — explore more posts below...
Story
@laura_garcia shared a post, 13 hours ago
Software Developer, RELIANOID

🌊 Load Balancing Smart Wave with RELIANOID — Built for Marine Telemetry

The Smart Wave platform is key for real-time telemetry from offshore buoys, vessels, and coastal stations. But how do you ensure it performs reliably — even over satellite links? We've published a new technical guide showing how to load balance Smart Wave using RELIANOID: ✅ MQTT & TCP ingestion for ..

Knowledge base_how to load balance SMART WAVE_blue economy
 Activity
@annie started using tool Kubernetes , 1 day, 6 hours ago.
 Activity
@annie started using tool Docker , 1 day, 6 hours ago.
Link
@faun shared a link, 1 day, 14 hours ago

What makes Claude Code so damn good (and how to recreate that magic in your agent)!?

Claude Code skips the multi-agent circus. One main loop. At most, one fork in the road. Everything runs through a flat message history, tracked by a tidy little to-do list. Over half its LLM calls? Outsourced to lighter, cheaper models likeclaude-3-5-haiku. Smart split: heavyweight reasoning when y..

What makes Claude Code so damn good (and how to recreate that magic in your agent)!?
Link
@faun shared a link, 1 day, 14 hours ago

Vibe Coding Will Break Your Enterprise

Tools likeReplitandLovableare fine for quick hacks. Not for enterprise. They can’t handle service integration, durable state, or transactions that don’t fall apart. What enterprises need: realagentic systems. These aren’t glorified code editors—they’re stateful, resilient operators. They juggle work..

Vibe Coding Will Break Your Enterprise
Link
@faun shared a link, 1 day, 14 hours ago

OpenAI eats jobs, then offers to help you find a new one

OpenAI just fired a shot across LinkedIn’s bow. Its new jobs platform—part ofOpenAI Academy—aims to certify AI skills, then plug users directly into hiring pipelines. Walmart's already on board. Market signal:OpenAI’s not just training people anymore. It's moving in on talent placement, pulling the ..

OpenAI eats jobs, then offers to help you find a new one
Link
@faun shared a link, 1 day, 14 hours ago

Closer to the Metal: Leaving Playwright for CDP

The Browser-Use crew ditched Playwright and went straight to the Chrome DevTools Protocol. Why? Speed. Way faster element scraping, screenshots, and async automation. They didn't stop there—cooked up a custom CDP Python client with strong type safety, an event-driven core, and real support for crash..

Closer to the Metal: Leaving Playwright for CDP
Link
@faun shared a link, 1 day, 14 hours ago

Top Tech Conferences & Events to Add to Your Calendar in 2025

Check out TechRepublic's events guide for a list of upcoming conferences, some of which are in-person and others that are virtual or hybrid. This list will be updated periodically to include new events and details...

Link
@faun shared a link, 1 day, 14 hours ago

Claude Code Ushers in a New Era of Agentic Programming

The rapid evolution of agentic coding is transforming software development, moving beyond traditional methods to intelligent, autonomous systems. Anthropic's Claude Code represents a significant leap in AI assistance for developers, shifting the paradigm from direct text manipulation to hands-off co..

Link
@faun shared a link, 1 day, 14 hours ago

How we migrated our Rush.js monorepo to Node type stripping

Calm gutted a 10-year-old Rush.js monorepo and came out faster, cleaner, and way less tangled. The team dropped transpilation, ditched source maps, and went all-in onNode type strippingwithnative ESM. Local dev sped up by 30–40%. CI jobs? 3–6 minutes faster. The overhaul hit everything: killed stubb..

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