Join us

ContentUpdates and recent posts about Rust..
Story
@jaziel-lopez shared a post, 1 year, 1 month ago
Thermofisher

First post ever: the importance of adapting to change

I'd like to start thank you for reading my first post on this platform. I truly appreciate your time.Since this is the first post I did not want to go technical at all and it should not be a large post. Most likely I want to express about the important of being able to cope with changes in our ..

Story
@ygnys shared a post, 1 year, 1 month ago
gitlive

Top 5 Git Tips & Tricks

Becoming a Git power-user is on the bucket list of every developer. Today we prepared 5 Git tips that will help you level up your workflow and bring you one step closer to Git mastery.

5-git-tips.png
Story
@thecloudpilot shared a post, 1 year, 1 month ago
Customer Engineer, Google Cloud Premier Partner

Istio Service Mesh 101

Learn the basics of Istio Service Mesh and gain hands-on experience.

Istio Service Mesh 101
Link
@checkmateq shared a link, 1 year, 1 month ago
Checkmate Global Technologies

Storage Classes and Object Life Cycle Management in Google Cloud Storage

Story
@sshnaidm shared a post, 1 year, 1 month ago
Principal Software Engineer, Red Hat

Ansible GPT — callback plugin with OpenAI for Ansible tasks and playbooks

ChatGPT GPT Ansible Python

Tutorial how to write your own Ansible Callback plugin and leverage OpenAI for Ansible code analysis.

OpenAI Ansible run
Story
@sshnaidm shared a post, 1 year, 1 month ago
Principal Software Engineer, Red Hat

Enhancing Ansible Lint with OpenAI: Writing Your Own Custom Rule

Analyze your Ansible code with Ansible lint and OpenAI/ChatGPT with your own rule.

openai-lintrule-demo.gif
Link
@register6291 shared a link, 1 year, 1 month ago

Organize Terragrunt configuration for production grade environment and deploy with Github Action

Organize Terragrunt configuration for production grade environment and deploy with Github Action
Link
@dumunari shared a link, 1 year, 1 month ago
Developer Master, CI&T

Crossplane: A brief introduction

Amazon Web Services Kubernetes Crossplane

As we have seen lately, Crossplane took over the world of Platform Engineering providing an absolutely easy and powerful way to build cloud native control planes.
But how does it work? How can I use it? What are the gains?
This brief post, which is created to be the initial one for a Crossplane series, aims to answer some basic questions for those who are still eager to use it.

Crossplane: A brief introduction
Link
@subashsasi shared a link, 1 year, 1 month ago
DevOps Engineer

Safeguarding Your AWS Environment: Important Security Considerations

Story
@javinpaul shared a post, 1 year, 1 month ago
Blogger, Programmer, Developer

Top 5 Features Every JavaScript Developer Should Learn

Hello Devs, if you are wondering what to learn in JavaScript to take your skills to the next level, then you have come to the right place. Earlier, I shared thebest JavaScript courses,websites, andbooks. In this article, I will share essential JavaScript features like arrow functions,let and const k..

ay5fsctgrgv67bg6anrp[1].png
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.