Rust Hours – Cargo, Immutability, Match Expressions, Result
Rust Hours – Getting Started with Rust (live coding)
Paradigms of Rust for the Go Developers
Extracting Files from a Gzipped Tar Archive using Go
Learn how to work with gzipped tar archives in Go. This guide walks you through a Go program that extracts and prints file contents from a .tgz file—ideal for managing compressed data. We’ll also show you how to create a .tgz archive to test the program.
Secure Your Kubernetes Applications with Self-Signed Certificates
This concise guide outlines how to secure Kubernetes applications by generating and deploying self-signed certificates using OpenSSL. It details the steps from creating your own certificate to configuring Kubernetes secrets and Ingress resources for SSL encryption.
Running a Compiled Python Script from C# Applications
This article will guide you through running a compiled Python script
(.pyc
file) from a C# application, leveraging the capabilities of both languages.
Building a Rust Command-Line Utility - wc-rs
Delving into Rust’s capabilities, this post guides you through the process of
crafting a command-line utility, wc-rs
, mirroring the functionality of the
classic wc
tool with a modern twist.
Raspberry Pi - Blinking an LED with Rust
In this blog post, we will learn how to make an LED blink with Rust on Raspberry Pi.
How to load dynamic libraries in Rust?
In this blog post, we will learn how we can load dynamic libraries in Rust.