Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
Story Trending
@laura_garcia shared a post, 2 weeks ago
Software Developer, RELIANOID

🔒 How can you improve the high availability and performance of your firewalls?

We're sharing a diagram on Firewall Load Balancing, along with a link to our technical article that explains how it works, its benefits, and best practices. 👉https://www.relianoid.com/resources/knowledge-base/misc/what-is-firewall-load-balancing-fwlb/ #FirewallLoadBalancing#HighAvailability#NetworkS..

diagrama firewall load balancing RELIANOID
Story Trending
@idjuric660 shared a post, 2 weeks ago
Technical Content Writer, Mailtrap

How to Send Emails in VS Code with Mailtrap MCP Server

Besides having an AI editor to help you develop projects, VS Code can now also generate and send emails in your stead. To do this, you simply need to integrate VS Code withMailtrap MCPand you’ll be able to send emails with a single prompt. And yes, this works for both Windows and macOS. First, we’ll..

 Activity
@wooch started using tool Kubernetes , 2 weeks, 1 day ago.
 Activity
@wooch started using tool Azure Pipelines , 2 weeks, 1 day ago.
 Activity
@ep_cloudengineer started using tool Google Cloud Platform , 2 weeks, 1 day ago.
 Activity
@ep_cloudengineer started using tool Azure , 2 weeks, 1 day ago.
 Activity
@ep_cloudengineer started using tool Amazon Web Services , 2 weeks, 1 day ago.
 Activity
@ep_cloudengineer started using tool Terragrunt , 2 weeks, 1 day ago.
 Activity
@ep_cloudengineer started using tool Terraform , 2 weeks, 1 day ago.
 Activity
@ep_cloudengineer started using tool OpenTofu , 2 weeks, 1 day ago.
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