TLDR? You can find the code and a bunch of examples on GitHub at dps/rust-raytracer. Over the holiday break, I decided to learn Rust. Rust is a modern systems programming language which has a really interesting type system. The type system can catch broad classes of common programming mistakes – …
Writing and publishing a Python module in Rust
ENOSUCHBLOG Programming, philosophy, pedaling. Home Tags Series Favorites Archive Main Site Writing and publishing a Python module in Rust Aug 2, 2020 Tags: devblog, programming, python, rust This post is a quick walkthrough of how I wrote a Python library, procmaps, in nothing but Rust. It uses …
React with TypeScript Cheatsheet
Table of Contents:· How to type React props ∘ Creating a type alias for the props ∘ Typing optional props ∘ List of types for React component props · How to type React function components · How to type React hooks ∘ Typing useState hook ∘ Typing useEffect and useLayoutEffect hooks ∘ Typing useCon…