Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
 Activity
@wilfriedkoffi013-jpg started using tool Python , 1 week, 5 days ago.
 Activity
@wilfriedkoffi013-jpg started using tool CakePHP , 1 week, 5 days ago.
Link
@faun shared a link, 1 week, 5 days ago

The Future is NOT Self-Hosted

A dev spun up a full self-hosted cloud on a refit workstation—Immich,Calibre-web,Audiobookshelf, andJellyfinall running smoothly onProxmox,Docker, andTailscale. Custom NAS, the works. Cool demo. But it hits a wall: self-hosting’s fine for hobbyists, not scaling. One person can’t out-infra Google. ..

The Future is NOT Self-Hosted
Link
@faun shared a link, 1 week, 5 days ago

Vibe code is legacy code

"Vibe coding"—Karpathy's label for cranking out AI-assisted code at warp speed—lets devs skip the deep dive. It works for quick hacks and throwaway prototypes. But ship that stuff to prod? Cue thetechnical debt...

Link
@faun shared a link, 1 week, 5 days ago

4 Ways I am Encouraging My 4 Year Old Child to Help Learn Coding and Use Computer

GCompris, CodeMonkey, Microbit, and Raspberry Pi kits aren’t just toys. They’re a full tech ladder for tiny humans. Start with GCompris to get little fingers clicking. Add CodeMonkey for block logic basics. Then toss in Microbit or an Elecrow kit, and suddenly code makes LEDs blink and buzzers buzz...

4 Ways I am Encouraging My 4 Year Old Child to Help Learn Coding and Use Computer
Link
@faun shared a link, 1 week, 5 days ago

Myth Or Reality: Will AI Replace Computer Programmers?

Generative AI tools likeGPT-4oandClaude Sonnetnow handle the grunt work—fixing bugs, cranking out code, writing docs—with scary accuracy. Amazon and Anthropic are already hinting at hiring fewer engineers. But the jobs aren’t vanishing; they’re mutating...

Myth Or Reality: Will AI Replace Computer Programmers?
Link
@faun shared a link, 1 week, 5 days ago

Next Gen Data Processing at Massive Scale At Pinterest With Moka

Pinterest kicked its creaky Hadoop system to the curb and embraced Moka, a shiny Kubernetes +*AWS EKS platform, to crank up scalability and security.* Graviton ARM EC2 instances, Spark Operator, and Apache YuniKorn unleashed a performance beast and sliced costs.They wrestled with memory monsters and..

Link
@faun shared a link, 1 week, 5 days ago

Best Linux distro for developers of 2025

TechRadar rounds up the best Linux distros for devs.Manjarodelivers Arch power without the pain.DebianandUbuntu LTShold steady for those who put uptime over edge.Fedorakeeps the new stuff flowing. Solusrolls with a tight curation hand—smooth updates, no chaos.Mocaccinoaims at Gentoo lovers who want..

Link
@faun shared a link, 1 week, 5 days ago

Worktrees: Git's best kept secret (and why you should use them)

Git worktrees have been around since 2015, but few devs use them like they could. They let you work on multiple branches at once—each in its own directory—without the usual stash-switch-stash-repeat dance. The real power move? Pair them with abare repo. That gives you a clean, central base where ea..

Link
@faun shared a link, 1 week, 5 days ago

MCP Security Issues Threatening AI Infrastructure

Docker just dropped theMCP ToolkitandMCP Gateway, tightening up the Model Context Protocol with serious armor. We're talking six major server-side holes patched—OAuth RCE, command injection, leaked creds—plugged. How? With container-wrapped isolation, real-time network filters, first-class OAuth ha..

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