Simple pagination in Rust
In this post we will briefely desribe a simple way to do pagination in Rust, with a bonus wiring for Axum and Askama
Pattern matching in Rust
In this brief post we explore pattern matching in Rust with the aim to impress you with its coolness. Also a showcase of elegance.
Dynamic vs Static Dispatch in Rust
Dynamic vs Static Dispatch in Rust - A brief explanation and comparison
Remix route modal with Framer Motion
Building a modal with a route and enter and exit animations using Remix and Framer Motion (and a bit of Tailwindcss)
Implement a keyboard shortcuts handler in typescript
In this post we'll look at a way to write your own keyboard shortcuts handler (similar to hotkeys.js), that will capture user input and execute callbacks, as needed