Join us

ContentUpdates and recent posts about k3d..
Story
@laura_garcia shared a post, 1 month, 2 weeks ago
Software Developer, RELIANOID

🔐 RELIANOID Load Balancer – Security Contributions

At RELIANOID, we actively and selflessly contribute to improving global cybersecurity, staying true to our open-source spirit. 🤝 We maintain close collaborations with security platforms, forums, and threat-intelligence communities, sharing our expertise to help strengthen protection across the Inter..

abuseipdb contributor relianoid
Story
@laura_garcia shared a post, 1 month, 2 weeks ago
Software Developer, RELIANOID

📍 RELIANOID at Bett UK 2026

We’re excited to take part in Bett UK 2026, the world’s leading EdTech event, bringing together educators, innovators, and decision-makers shaping the future of education. 🗓 January 21–23, 2026 📍 London, United Kingdom Join us to discover how RELIANOID enables secure, scalable, and highly available ..

bett_uk_event_london_2026_relianoid
Story
@laura_garcia shared a post, 1 month, 2 weeks ago
Software Developer, RELIANOID

🚀 If you’re building AI systems, reliability is no longer optional

Many teams are rushing to adopt AI, but few are asking the most critical question: 👉 What happens when AI fails? Back in December, we published an article that remains more relevant than ever: AI is redefining Site Reliability Engineering (SRE). Why? Because AI inference workloads introduce new reli..

 Activity
@aleonrangel gave 🐾 to Difference between Agile and Scrum , 1 month, 2 weeks ago.
 Activity
@aleonrangel gave 🐾 to Difference between Agile and Scrum , 1 month, 2 weeks ago.
Story
@laura_garcia shared a post, 1 month, 2 weeks ago
Software Developer, RELIANOID

🔐 Reminder: Azure MFA Enforcement Is Now in Place

Some time ago, Microsoft announced and enforced mandatory multifactor authentication (MFA) for all Azure tenants performing resource management actions. 👉 This marked a clear turning point: MFA is no longer optional — it’s a requirement. At RELIANOID, we shared how this change reinforces the need to..

Link
@varbear shared a link, 1 month, 2 weeks ago
FAUN.dev()

How to build internal developer tools with a small team

A fresh way to think about internal dev tooling: three axes,width(new features),depth(polish and stability), andpreparation(future-ready architecture). Instead of treating tradeoffs as binary, the model maps them as vectors in a shared space. Less tug-of-war. More informed roadmap moves... read more  

How to build internal developer tools with a small team
Link
@varbear shared a link, 1 month, 2 weeks ago
FAUN.dev()

The Mac Malware of 2025 👾

The 2025 macOS malware scene leveled up hard. Thinkmodular infostealers, built for stealth, slipping in with staged loaders, encrypted configs, and slick social engineering - fake updates, bogus job interviews, even sketchy terminal promos like “ClickFix.” Attackers leaned onAppleScript,JXA, andGo-b.. read more  

The Mac Malware of 2025 👾
Link
@varbear shared a link, 1 month, 2 weeks ago
FAUN.dev()

Web development is fun again

A seasoned dev takes a hard look at today’s messy full-stack reality: scattered tools, niche deep-dives, and burnout baked into the job. ButAI coding assistantsflipped the script. They help offload overhead, mimic pro-level workflows, and sanity-check the code. Now this dev moves across frontend and.. read more  

Web development is fun again
Link
@varbear shared a link, 1 month, 2 weeks ago
FAUN.dev()

How Browsers Work

An interactive open-source guide breaks down browser internals with slick, step-through models coveringDNS resolution,TCP handshakes, andHTML parsing. It walks through the browser'ssequential pipeline- from URL to DOM - blending protocol deep-dives with hands-on visuals you can poke at... read more  

k3d is an open-source utility designed to simplify running Kubernetes locally by wrapping K3s (Rancher’s lightweight Kubernetes distribution) inside Docker containers. Instead of creating virtual machines, k3d uses Docker as the execution layer, allowing developers to spin up multi-node Kubernetes clusters in seconds using minimal system resources.

k3d is especially popular for local development, CI pipelines, demos, and testing Kubernetes-native applications. It supports advanced setups such as multi-node clusters, load balancers, custom container registries, port mappings, and volume mounts, while remaining easy to tear down and recreate.

Because it uses K3s, k3d inherits a simplified control plane, bundled components, and reduced memory footprint compared to full Kubernetes distributions. This makes it ideal for developers who want a realistic Kubernetes environment without the overhead of tools like Minikube or full VM-based clusters.

k3d integrates cleanly with common Kubernetes workflows and tools such as kubectl, Helm, Skaffold, and Argo CD. It is frequently used to validate manifests, test Helm charts, and simulate production-like environments locally before deploying to cloud or on-prem clusters.