RustMisc
Various small programs in Rust
althreat
A shoot'em up in Rust using SDL.
aoc2022
My take at the Advent of Code 2022.
aoc2023
My take at the Advent of Code 2023.
aoc2024
My take at the Advent of Code 2024.
bevy
A look into Bevy ECS game engine.
bmp
A parser for BMP files. This was just to play with nom crate but boy this was a deep rabbit hole.
evolution
Simulating evolution and competition between species.
fractal_tree
Drawing a fractal tree.
guess
The famous guessing game. Practice your binary search skills.
hello_world
Well, prints 'Hello, world !'
hexminesweeper
The classical mine sweeper revisited in an hex tiled world.
humanshader
Human shader was a very cool project that used humans to compute a simple 3D image. This is the implementation of the algorithm in Rust.
lissajous
Drawing lissajous curves.
minesweeper
The classical mine sweeper in Rust.
model
A model of a rust directory with unit tests (in the code itself, allowed to test private functions) and integration tests (in tests subdirectory, only able to test public interface).
neuralnet_mnist
A neural network coded from scratch in Rust to classify digits from the MNIST dataset.
project_euler
My take at Project Euler.
snake
A snake game
tictactoe
The classical tic-tac-toe.
triminesweeper
The classical mine sweeper revisited in a world of triangles.
ttf
A parser for TTF files. This was just to understand how font works and playing with drawing Bezier curves.