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.

Paradigms of Rust for the Go Developers

- 1 min read

Series: Talks

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.

Extracting Files from a Gzipped Tar Archive using Go

- 4 mins read

Series: 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.