The video is meant for beginners, who are just getting started with the Rust
programming language.
In this video, we first explore cargo (the build system and package manager for
Rust) and then build a simple guessing game. On our way, we talk about
immutability, enums, match expressions, and Result in Rust.
The very first live stream on Rust Hours.
We started from zero to building a very small CLI application.
The stream aims to help everyone learn Rust with a “follow along” approach.
The talk delves into 3 key paradigms - Go’s CSP model for concurrency, Rust’s
data race prevention through ownership and borrowing, and Rust’s opt-in
shared memory model.
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.
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.
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.