This article introduces posh, an experimental Rust graphics library aimed at enhancing the type-safety, composability, and overall experience of graphics programming. The post covers the fundamental concepts of posh, showcases examples, discusses related ... (more…)
Read more »
Never fight the borrow checker again! Contribute to zyedidia/transmute development by creating an account on GitHub. (more…)
Read more »
Every time I go back to Rust, I have to figure out how the module system works again. Here are some of my notes comparing it to Python’s module system. (more…)
Read more »
3D Reconstruction for all. Contribute to ArthurBrussee/brush development by creating an account on GitHub. (more…)
Read more »
Error handling in Rust is very different if you’re coming from other languages. In languages like Java, JS, Python etc, you usually throw exceptions and return successful values. In Rust, you return something called a Result. (more…)
Read more »