Dataclasses Are More Literal Than I Expected
Sometimes a language feature that looks like sophisticated metaprogramming is implemented by generating ordinary source code and letting the language execute it.
Sometimes a language feature that looks like sophisticated metaprogramming is implemented by generating ordinary source code and letting the language execute it.
A closer look at UUIDs beyond the familiar 128-bit identifier. From how different versions are generated to what those differences actually mean for, this is an exploration of what we're really choosing when we reach for a UUID.
Persistent data structures aren't efficient because they copy less data. They're efficient because recursion lets them avoid copying almost all of it.
Introduction I was working on some intergation task for one of the analytics services and the long and short of it is that there was some interop invovlved between the .Nety Eco system (C# and F#)...
A deep dive on where the cost lies at when serving llm models.
Introduction Portfolio optimization has come a long way since Harry Markowitz introduced his groundbreaking mean-variance model in 1952.His model gave investors something powerful: a way to mathem...
As backend engineers, we often obsess over read performance. Caching strategies, query plans, indexes, pagination all the usual suspects. But every once in a while, a system reminds you of an uncom...
Introduction I stumbled across last month’s TidyTuesday analytical challenge featuring Netflix data, and curiosity got the better of me what exactly are we watching, and what patterns lie beneath ...
The Binomial Model Lets begin with the one Period Model: Model Description Time is denoted by 𝑡 and by definition we have two points in time $t=0(today)$, $t=1(tomorrow)$. In the model we have ...
Introduction This post was originally published on the Innova official blog. we are back at it with Linear Algebra,In of data science, engineering, and applied mathematics,least squares problems ...