Join us

ContentUpdates and recent posts about Rust..
Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

Make Before Break - Faster Scaling Mechanics for ClickHouse Cloud

ClickHouse Clouddecided to shake up the status quo with a gutsyMake-Before-Breakapproach. They chopped vertical scaling delays by dynamically adding capacity without sending your data to the void. This ballet involves managing multipleStatefulSetswith the grace of a lion tamer, maintaining both agil.. read more  

Make Before Break - Faster Scaling Mechanics for ClickHouse Cloud
Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

I built a Pi‑powered Kubernetes cluster — was it worth it?

ARaspberry Pi 5nestled in a shoebox rack, spinning its wheels with "real" Kubernetes. It sips a dainty 10W but stumbles over hiccups like ARM64 chart voids and single-lane PCIe NVMe antics. Though NVMe drives rocket from 90MB/s to 350MB/s, reeling in those image pulls, thermal throttling and x86-exc.. read more  

I built a Pi‑powered Kubernetes cluster — was it worth it?
Link
@anjali shared a link, 1 year, 1 month ago
Customer Marketing Manager, Last9

GDPR Log Management: A Practical Guide for Engineers

Learn how to manage logs under GDPR—handle personal data, set retention rules, and stay compliant without losing observability.

gdpr
Link
@anjali shared a link, 1 year, 1 month ago
Customer Marketing Manager, Last9

Ubuntu var log messages: A Complete Guide for System Admins

A complete guide to Ubuntu's /var/log/messages—your go-to log file for system events, errors, and troubleshooting insights.

log
Story
@laura_garcia shared a post, 1 year, 1 month ago
Software Developer, RELIANOID

RELIANOID AT RSA CONFERENCE

- RELIANOID is heading to San Francisco! April 28 – May 1, 2025 | RSA Conference™ | Moscone Center We’re excited to announce that RELIANOID will be taking part inRSAC™ 2025— one of the world’s most influential cybersecurity conferences. This event gathers security professionals, thought leaders, and..

rsa conference 2025 san francisco RELIANOID
Story
@laura_garcia shared a post, 1 year, 1 month ago
Software Developer, RELIANOID

Looking to maximize uptime and ensure uninterrupted service for your applications?

In high-availability environments, Floating IPs are a game changer — and RELIANOID makes implementing them simple and reliable. A floating IP allows seamless failover between servers, keeping your applications online even if a node goes down. Whether you're managing a web app, an enterprise system, ..

Floating IP Address
Link
@anjali shared a link, 1 year, 1 month ago
Customer Marketing Manager, Last9

APM Observability: A Practical Guide for DevOps and SREs

A no-fluff guide to APM observability for DevOps and SREs—tools, tips, and what actually matters when keeping systems healthy.

application
Link
@anjali shared a link, 1 year, 1 month ago
Customer Marketing Manager, Last9

Getting Started with Prometheus Metrics Endpoints

Learn how to get started with Prometheus metrics endpoints to collect, expose, and query critical data for better system monitoring.

windows
Link
@anjali shared a link, 1 year, 1 month ago
Customer Marketing Manager, Last9

Database Monitoring Metrics: What to Track & Why It Matters

Not all database metrics are created equal. Learn which ones to track, why they matter, and how they help you stay ahead of performance issues.

CDN
Link
@faun shared a link, 1 year, 1 month ago
FAUN.dev()

Introducing the Llama 4 herd in Azure AI Foundry and Azure Databricks

Llama 4 Scouton Azure AI Foundry doesn’t just sit around; it dives into its massive 10 million token context like it's born for deep dives and endless document wrangling. Meanwhile,Llama 4 Mavericktakes multilingual, multimodal chat conversations where few dare to go. Its Mixture of Experts architec.. read more  

Introducing the Llama 4 herd in Azure AI Foundry and Azure Databricks
Rust is a systems programming language originally developed at Mozilla and now stewarded by the Rust Foundation. It is designed to enable developers to build fast, reliable, and secure software by preventing entire classes of bugs at compile time. Rust achieves this through its ownership model, which enforces strict rules around memory access, lifetimes, and mutability, eliminating common issues such as null pointer dereferences, use-after-free errors, and data races.

Unlike traditional systems languages such as C and C++, Rust provides strong safety guarantees while maintaining low-level control and predictable performance. Its zero-cost abstractions allow developers to write expressive, high-level code that compiles down to efficient machine instructions. Rust’s type system and concurrency model make it especially well suited for multithreaded and security-critical software.

Rust is widely used across domains including operating systems, browsers, networking infrastructure, cryptography, blockchain, and embedded systems. It has also gained strong adoption in large-scale production environments due to its excellent tooling, package ecosystem (Cargo and crates.io), and emphasis on long-term maintainability. Today, Rust is recognized as a leading language for building safe, high-performance infrastructure software.