Join us

ContentUpdates and recent posts about Pulumi..
Story
@laura_garcia shared a post, 4ย months ago
Software Developer, RELIANOID

๐Ÿ” Cybertech Global TLV 2026 | Tel Aviv

January 26โ€“28, 2026 One of the worldโ€™s leading cybersecurity events is back! Cybertech Global brings together global cyber leaders, innovators, and decision-makers at the heart of Israelโ€™s tech ecosystem. ๐Ÿ‘‰ RELIANOID will be there supporting secure, resilient digital infrastructures. #CybertechTL..

cybertech_global_tel_aviv_2026_relianoid
Story
@sancharini shared a post, 4ย months ago

Black Box Testing Strategies for Modern Web Applications

Explore effective black box testing strategies for modern web applications. Learn how to validate user workflows, APIs, asynchronous behavior, and security while minimizing flaky tests.

Black Box Testing Strategies for Modern Web Applications
Story Keploy Team
@sancharini shared a post, 4ย months ago

How to Combine Monkey Testing With Structured Test Automation?

Explore a practical approach to combining monkey testing with structured test automation, including smart test design, observability, and risk-based execution.

How to Combine Monkey Testing With Structured Test Automation?
Story
@idjuric660 shared a post, 4ย months ago
Technical Content Writer, Mailtrap

5 Best Email API for Node.js Developers Tested & Compared

The best email APIs for Node.js developers are Mailtrap, Mailgun, SendGrid, Amazon SES, and Postmark. I tested each by building a demo application and integrating all services to find which provides the best SDK. Read on for complete results. Node.js email API comparison SDK quality SDK โ€˜qualityโ€™ co..

Story
@laura_garcia shared a post, 4ย months ago
Software Developer, RELIANOID

๐ŸŽ‰ ๐—ช๐—ฒ ๐——๐—ถ๐—ฑ ๐—œ๐˜ โ€” ๐Ÿญ,๐Ÿณ๐Ÿฌ๐Ÿฌ+ ๐—™๐—ผ๐—น๐—น๐—ผ๐˜„๐—ฒ๐—ฟ๐˜€ ๐—ผ๐—ป ๐—Ÿ๐—ถ๐—ป๐—ธ๐—ฒ๐—ฑ๐—œ๐—ป! ๐Ÿš€

Big news from the RELIANOID team! Weโ€™ve just crossed ๐Ÿญ,๐Ÿณ๐Ÿฌ๐Ÿฌ ๐—ณ๐—ผ๐—น๐—น๐—ผ๐˜„๐—ฒ๐—ฟ๐˜€ on LinkedIn, and we couldnโ€™t be more grateful ๐Ÿ™Œ This community is growing thanks to you โ€” our partners, customers, tech enthusiasts, and cybersecurity professionals who follow our journey in application delivery, security, and high..

1700 followers relianoid linkedin
Link Xygeni Team
@mashka shared a link, 4ย months ago
Paid Acquisition and Growth Marketing, xygeni

When AI Became Part of the Attack Surface

AI is now a core execution layer in software delivery. In 2025, attackers exploited automation, trusted pipelines, and AI-generated code instead of vulnerabilities. This report explains why traditional AppSec signals failed and what must change in 2026.

New AppSec Attack Trends for 2026 - Promo Redes (3)
Story
@viktoriiagolovtseva shared a post, 4ย months ago

How to Plan a Product Release in Jira

From the Release Hub and backlog management to automated release notes, Jira has plenty of tools to help you plan your next release. In this blog post, we explain how to use these tools effectively for different release types. You will also get practical tips for extending the native Jira release planning capabilities with additional apps. Letโ€™s dive in!

Zrzut ekranu 2026-01-20 123937
Link
@varbear shared a link, 4ย months, 1ย week ago
FAUN.dev()

An Honest Review of Go

Go gets big props for its built-in concurrency model withgoroutinesandchannels, which make lightweight, scalable parallelism easy and ergonomic. The author criticizes Go's type system for lacking things likeenums, closed type sets, and tuples, making certain patterns awkward compared with Rust's ric.. read more ย 

Link
@varbear shared a link, 4ย months, 1ย week ago
FAUN.dev()

How Github monopoly is destroying the open source ecosystem

Out of 238 student open source contributions over seven years, 237 landed onGitHub- even though they were told to look elsewhere. One short-lived GitHub IP block brought everything to a standstill. No commits. No reviews. Just silence. Turns out, a single platform holds the keys to a whole ecosystem.. read more ย 

How Github monopoly is destroying the open source ecosystem
Link
@varbear shared a link, 4ย months, 1ย week ago
FAUN.dev()

Reversing YouTube's "Most Replayed" Graph

An engineer cracked open YouTubeโ€™s โ€œmost replayedโ€ heatmap. Turns out it runs onsampled view frequency arrays, client-sidenormalization, andSVG renderingstitched together withCubic Bรฉzier splinesfor that smooth, snappy curve. Behind the scenes, playback gets logged with adifference array + prefix su.. read more ย 

Reversing YouTube's "Most Replayed" Graph
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.