Greg Stoll Greg is a software engineer with over 20 years of experience in the industry. He enjoys working on projects in his spare time and enjoys writing about them!

Stories by Greg Stoll

A Guide To Cross Compilation In Rust

A guide to cross-compilation in Rust

Dev

Learn how to get set up in Rust for cross-compilation and what makes cross-compiling such a handy capability in various scenarios.

Greg Stoll
May 25, 2023 ⋅ 6 min read
Optimizing Rust Code With Llvm

Optimizing Rust code with LLVM: A detailed breakdown

Dev

Let’s dive into how you can use LLVM with Rust to generate the fastest code possible with a detailed example!

Greg Stoll
May 3, 2023 ⋅ 6 min read
Using BufRead For Faster Rust I/O Speed

Using BufRead for faster Rust I/O speed

Dev

Optimize your code’s performance by using the BufReader class in Rust and buffering input/output.

Greg Stoll
Apr 13, 2023 ⋅ 5 min read
Web Scraping With Rust

Web scraping with Rust

Dev

Let’s explore how to write a web scraper with with Rust. We’ll look at some helpful Rust tools and important principles to keep in mind.

Greg Stoll
Jul 26, 2022 ⋅ 8 min read
Pathfinding In Rust A Tutorial With Examples

Pathfinding in Rust: A tutorial with examples

Dev

Let’s take a look at some options for pathfinding in Rust using breadth-first search, Dijkstra’s algorithm, and the A* search algorithm.

Greg Stoll
Jul 1, 2022 ⋅ 5 min read
Guide To Using Arenas In Rust

Guide to using arenas in Rust

Dev

Learn how to use arenas in Rust to improve the performance of memory allocation and deallocation to run your code faster.

Greg Stoll
May 16, 2022 ⋅ 5 min read
Understanding Rust Option Results Enums

Understanding Rust Option and Result enums

Dev

Learn about one of these Rust’s convenient functionalities, enums, and how to use the Option and Result types.

Greg Stoll
Apr 1, 2022 ⋅ 5 min read