Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
Link
@faun shared a link, 2 days, 1 hour 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, 2 days, 1 hour 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, 2 days, 1 hour 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..

Link
@faun shared a link, 2 days, 1 hour ago

Redis to acquire Decodable

Redis is buyingDecodable, the real-time streaming startup, to crank up itsRedis Data Integration (RDI)and beef up real-time data ingestion. Decodable’s stack lands in Redis Cloud first, syncing outside data into Redis fast enough to feed hungry AI agents real context. What's really happening:Redis i..

Redis to acquire Decodable
Link
@faun shared a link, 2 days, 1 hour ago

The Programming Skills You Need for Today's Data Roles

New tutorials dig into usingLabel Studio + Dockerto tighten up object detection pipelines—and how to squeeze more out ofRabbitMQ + Celerywithout breaking your queue (or your spirit). Other writeups get into the weeds with LLM monitoring,Bayesian hyperparameter search, and Google’s freshly droppedLan..

The Programming Skills You Need for Today's Data Roles
Link
@faun shared a link, 2 days, 1 hour ago

Why I Ditched Docker for Podman (And You Should Too)

Older container technologies like Docker have been prone to security vulnerabilities, such as CVE-2019-5736 and CVE-2022-0847, which allowed for potential host system compromise. Podman changes the game by eliminating the need for a persistent background service like the Docker daemon, enhancing sec..

Link
@faun shared a link, 2 days, 1 hour ago

My Own DNS Server At Home

RunningBIND on Fedora with Podmanputs you in the driver’s seat—local DNS, full zone control, and no third-party middlemen. It handles staticforward/reverse zonesacross multiple IPv4 subnets, skips the mess of dynamic updates, and plugs into your router as a recursiveforwarding resolver. Call it a se..

My Own DNS Server At Home
Link
@faun shared a link, 2 days, 2 hours ago

Le Chat now integrates with 20+ enterprise platforms—powered by MCP—and remembers what matters with Memories.

Le Chat now includes20+ secure, MCP-based connectorsfor tools like GitHub, Snowflake, Stripe, and Jira. That means in-chat search, summaries, and actions—straight from enterprise systems. Developers can plug in their owncustom MCP connectors, and run Le Chat wherever it fits: on-prem, private cloud..

Le Chat now integrates with 20+ enterprise platforms—powered by MCP—and remembers what matters with Memories.
Link
@faun shared a link, 2 days, 2 hours ago

OpenAI to launch its first AI chip in 2026 with Broadcom, FT reports

OpenAI’s firstin-house AI chipis nearly out of the oven. It’s headed for fabrication atTSMCand built to handle OpenAI’s own workloads—no outside sales, according to theFinancial Times. Why it matters:Big AI shops are going vertical. Custom silicon means tighter control over runtime, reliability, an..

OpenAI to launch its first AI chip in 2026 with Broadcom, FT reports
Link
@faun shared a link, 2 days, 2 hours ago

Why language models hallucinate

OpenAI sheds light on the persistence ofhallucinationsin language models due to evaluation methods favoring guessing over honesty, requiring a shift towards rewarding uncertainty acknowledgment. High model accuracy does not equate to the eradication of hallucinations, as some questions are inherentl..

Why language models hallucinate
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