Join us

ContentUpdates and recent posts about Pulumi..
Story Keploy Team Trending
@sancharini shared a post, 1 month, 1 week ago

Verification vs Validation Explained for Beginners in QA

Learn the difference between verification vs validation in QA. This beginner-friendly guide explains how both ensure software is built correctly and meets user expectations.

Verification vs Validation
Story
@laura_garcia shared a post, 1 month, 2 weeks ago
Software Developer, RELIANOID

🚗🔐 Automotive Cybersecurity: Connected Cars and a Vulnerable Supply Chain

We originally published this article back in November, but it remains highly relevant today. Sharing it again in case you missed it 👇 Connected cars are no longer just mechanical machines — they are computers on wheels, embedded in complex digital ecosystems. As shown in the “Supply Chain in the aut..

Supply-Chain-in-the-Automotive-Industry_RELIANOID
Story
@laura_garcia shared a post, 1 month, 2 weeks ago
Software Developer, RELIANOID

New Article: Emerging Cyber Threats Impacting Today’s Financial Ecosystem

Financial institutions continue to face rising cyber risks—not just from direct attacks, but from the vast networks of third-party suppliers that support their operations. Recent industry analyses reveal critical insights: Many essential vendors are far more important than organisations realise. ..

Story
@nelly96 shared a post, 1 month, 2 weeks ago
Marketing specialist, Winston AI

How Accurate Are AI Detectors? (What the Data Actually Shows in 2026)

Do you also wonder, “Are AI detectors accurate?” and think the answer is a simple yes or no? The problem lies in the expectation. AI detectors don’t work like switches. They assign a probability of the text being AI-generated. The job of an AI detector is to estimate the likelihood, not to give verdicts. 

how-accurate-are-AI-detectors
 Activity
@nelly96 added a new tool Winston AI , 1 month, 2 weeks ago.
Story
@laura_garcia shared a post, 1 month, 2 weeks ago
Software Developer, RELIANOID

🌍 In case you missed it

the $26 billion losses caused by global tech outages in 2025 highlight a hard truth — our digital infrastructure is more fragile than we’d like to believe. In this article, I dive into the real impact of these failures, the key lessons for businesses, and how RELIANOID actively contributes to preven..

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

RELIANOID aligned with ISO/IEC 15408 (Common Criteria) principles

At RELIANOID, security is not just a feature — it’s a design principle. Our load balancing platform and organizational controls are aligned with ISO/IEC 15408 (Common Criteria), the internationally recognized framework for evaluating IT security in government and critical infrastructure environments..

ISOIEC 15408 common criteria COMPLIANCE RELIANOID
Story
@laura_garcia shared a post, 1 month, 2 weeks ago
Software Developer, RELIANOID

Chicago Cybersecurity Conference 2026

Chicago, USA | Jan 29, 2026 A must-attend event for CISOs and security leaders tackling today’s cyber threats. Expert insights, executive panels, up to 10 CPEs — and meetRELIANOIDsupporting secure and resilient application delivery. #Cybersecurity #CISO #FutureCon #ChicagoEvents #InfoSec #RELIANO..

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

Replacing Protobuf with Rust to go 5 times faster

PgDog ditched Protobuf for raw C-to-Rust integration inpg_query.rs. The new setup usesbindgenand recursive FFI wrappers - no serialization, no handoffs. The payoff? Query parsing is 5× faster. Deparsing hit 10×. Evenpgbenchsaw a 25% bump across major ops... read more  

Replacing Protobuf with Rust to go 5 times faster
Link
@varbear shared a link, 1 month, 2 weeks ago
FAUN.dev()

A Social Filesystem

The AT Protocol flips social apps inside out. Instead of locking posts and profiles inside platform silos, it treats them as files -JSON-based records, stored in your own decentralized, app-neutral repo. Everything you do - posts, follows, likes - gets logged as a signed, timestampedrecordin your pe.. read more  

A Social Filesystem
Pulumi is an open-source infrastructure-as-code platform that allows you to define, deploy, and manage cloud resources using familiar general-purpose programming languages like Python, JavaScript, Go, and TypeScript.

Pulumi represents a major shift in the Infrastructure-as-Code (IaC) landscape by moving away from proprietary domain-specific languages (DSLs) and static configuration files like YAML or JSON. Instead, it leverages the power of standard programming languages, allowing engineers to use loops, functions, classes, and existing package managers to define their cloud environments. This means you can apply software engineering best practices—such as unit testing, modularity, and CI/CD integration—directly to your infrastructure setups on providers like AWS, Azure, Google Cloud, and Kubernetes.

The platform works by utilizing a "State" mechanism similar to Terraform, where it tracks the current deployment against your desired code. When you run a Pulumi program, it builds a resource graph to determine the most efficient way to provision or update your services. Because it uses real code, it provides superior IDE support, including auto-completion and type-checking, which significantly reduces the syntax errors and "trial-and-error" deployments common with text-based configuration tools.

Furthermore, Pulumi excels in hybrid and multi-cloud environments by providing a unified workflow for both infrastructure and application delivery. It bridges the gap between developers and platform engineers, as both can now speak the same language—literally.