Artemijs
Artemijs Pavlovs

Artemijs Pavlovs

Follow
homeGo SeriesRust SeriesDevOps Tooling SeriesBraindumpNeoVim

Rust: Handling code with Result, Option and panic!

Sep 22, 20235 min read 2 views

Option In Rust, Option<T> is used in scenarios where there might not be a result to return. Here, T represents the data type of the data when a value...

Rust: Handling code with Result, Option and panic!

Rust: structs

Aug 25, 20233 min read 11 views

In Rust, an entire instance of a struct must be mutable; the language doesn't permit marking only specific fields as mutable. By constructing a new...

Rust: structs

Rust: enums

Aug 24, 20232 min read 9 views

Enumerations Enumerations, commonly referred to as enums, are a powerful and expressive feature in the Rust programming language. They allow you to...

Rust: enums

Software Development has made a full cycle

Jun 27, 20236 min read 17 views

The first software engineers did it the right way · Disclaimer My articles are targeting organizations that are far bigger than one development team....

Software Development has made a full cycle

Please don't make Platform Engineering the new buzzword

Jun 7, 20235 min read 519 views

After reading my new favorite article on the internet, "DevOps is Bullshit", three times from top to bottom, and having a good laugh, the reality hit...

Please don't make Platform Engineering the new buzzword

Rust: ownership

Jun 1, 20234 min read 21 views

Best Video Material [YouTube] 300 seconds of Rust - 5. Rust Ownership System Best Text Material The Rust Programming Language Comprehensive Rust:...

Rust: ownership