Advent of Code 2023 - Day 1
Related
More from mattrighetti
Query builders and ORMs have been around for as long as I can remember, each serving different purposes. ORMs, for example, allow you to focus on application logic without worrying about SQL or database intricacies. However, this convenience comes at a cost—using an ORM almost always means losing control over what’s happening in your database....
Askama implements a template rendering engine based on Jinja. It generates Rust code from your templates at compile time based on a user-defined struct to hold the template’s context.
Lately I’ve been working on Ulry, after tiressly trying to make Next.js work for me, I realised it wasn’t the right fit (I’m not alone). I decided to make a U-turn and go all in with Rust and SSR.
The other day I working on a side project of mine and I stumbled upon a bug in my code that I couldn’t immediately figure out how to solve.
If you’ve ever worked on some kind of project you definitley have encountered the need to declare some environment variables for it.