Join us

ContentUpdates and recent posts about SERP Clapper for Medium..
Link
@faun shared a link, 1 month, 3 weeks ago

v1.34: Introducing CPU Manager Static Policy Option for Uncore Cache Alignment

Kubernetes 1.34 bumps theCPU Manager uncore-cache alignment policyto beta. It’s aimed at nodes withsplit uncore cache architectures. The policy groups all a container’s CPUs under the same uncore cache—cutting latency and easing contention for workloads that hate waiting. System shift:Kubernetes kee..

v1.34: Introducing CPU Manager Static Policy Option for Uncore Cache Alignment
Link
@faun shared a link, 1 month, 3 weeks ago

v1.34: Service Account Token Integration for Image Pulls Graduates to Beta

Kubernetes v1.34 bumpsServiceAccount token integration for Kubelet Credential Providersto beta. That means image pulls can now ditch long-lived secrets for workload-scoped tokens. Cleaner, safer, and more locked down per ServiceAccount...

Link
@faun shared a link, 1 month, 3 weeks ago

v1.34: Pod Replacement Policy for Jobs Goes GA

ThePod replacement policyin Kubernetes v1.34 just hit GA. Jobs can now hold off on spinning up new Pods until the old ones arefullygone. No more duplicates per index. No more blowing through quotas or stalling schedulers—big win for workloads like ML training. System shift:This rewires how Jobs hand..

Link
@faun shared a link, 1 month, 3 weeks ago

Reduce Cloud Cross-Zone Data Transfer Costs with Kubernetes 1.33 trafficDistribution

Kubernetes 1.33 drops a new traffic policy that addszone-local routing. With it, kube-proxy now prefers endpoints in the same availability zone. Translation: less cross-AZ chatter, fewer surprise charges. On AWS, that can chop the usual $0.02/GB cross-AZ fee by up to 85%—especially in EKS clusters j..

Reduce Cloud Cross-Zone Data Transfer Costs with Kubernetes 1.33 trafficDistribution
Link
@faun shared a link, 1 month, 3 weeks ago

Scaling Kubernetes the Right Way: In-Depth Comparison of HPA, VPA, CA, Karpenter, and KEDA

A hands-on breakdown of Kubernetes autoscalers—HPA,VPA,Cluster Autoscaler,Karpenter, andKEDA—maps how each scales pods, nodes, and events. The hot pairing lately?Karpenterfor fast node spin-up, teamed withCloudPilot AIto wrangle Spot instances across 800+ compute types without melting costs...

Scaling Kubernetes the Right Way: In-Depth Comparison of HPA, VPA, CA, Karpenter, and KEDA
Link
@faun shared a link, 1 month, 3 weeks ago

v1.34: PSI Metrics for Graduates to Beta

Kubernetes v1.34 bumpsPressure Stall Information (PSI) metricsto Beta. Now kubelets expose kernel-level resource pressure—CPU, memory, and I/O—through the Summary API and Prometheus. Instead of just tracking how much a resource gets used, PSI shows how often workloads get throttled or blocked. That ..

Link
@faun shared a link, 1 month, 3 weeks ago

CNCF Elevates Metal3.io to Incubating Status for Bare-Metal Kubernetes

The CNCF just bumpedMetal3.ioup to incubating status. That’s a clear nod to rising demand forKubernetes-native bare-metal management. Metal3.io wires up physical servers as Kubernetes resources—no VMs in sight. It leans onIronicand theBare Metal Operatorto handle provisioning and lifecycle tasks lik..

Link
@anjali shared a link, 1 month, 4 weeks ago
Customer Marketing Manager, Last9

Kubernetes Monitoring Metrics That Improve Cluster Reliability

Understand Kubernetes monitoring metrics that help detect issues early, improve reliability, and keep your cluster performing at its best.

kubernetes_metrics
Story
@laura_garcia shared a post, 1 month, 4 weeks ago
Software Developer, RELIANOID

🚀 Strengthening Europe’s Cybersecurity in Space

Just in case you missed it last month: The European Space Agency (ESA) has launched its brand-new Cybersecurity Operations Center (C-SOC) to safeguard satellites, mission control systems, and digital assets against growing cyber threats. 🌍 In today’s space-driven world, initiatives like this — suppo..

ESA_Cybersecurity Operations Center
Story
@laura_garcia shared a post, 1 month, 4 weeks ago
Software Developer, RELIANOID

🔐 Cybersecurity Fundamentals: Defensive, Offensive & Hybrid Approaches 🔐

Cybersecurity isn’t just about deploying tools — it’s about knowing how and when to use the right strategies. Defensive security focuses on prevention with technologies like firewalls, antivirus, access control, and system hardening to reduce exposure. Offensive security takes the attacker’s perspec..

Cibersecurity concepts diagram RELIANOID
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