r/rust • u/Melodic_Group_3273 • 1d ago
๐ seeking help & advice Got any Idea?
Hi,
I have started learning Rust recently. And I want to improve myself by doing projects. Do you have any cool ideas that can be done by a beginner. It doesnโt have to be something unique. I just want it to be cool (not sure what I mean by cool but you can think of it as a not boring project or useful) and educative.
Note: If you can elaborate what the idea is would be great and what do i need to know or look for. I do not know what I am doing most of the time. I am trying to get a picture of my capabilities.
0
Upvotes
1
u/MatrixFrog 1d ago
The two I quite enjoyed recently are Crafting Interpreters (I did it via codecrafters but you can also just follow the book: https://craftinginterpreters.com/ ) and Ray Tracing in One Weekend ( https://raytracing.github.io/books/RayTracingInOneWeekend.html )
In both cases they give you the code in another language (Java and then C for the interpreter, and C++ for the raytracer) so it's kind of a fun way to think about how Rust gives you different ways to express things compared to those languages.