In this talk, we’ll go through some real-life examples of using Rust features like traits, newtype wrappers, generics, and macros for creating financial software. We’ll look at how regular application code can benefit from the features Rust provides.
Many people think of Rust primarily as a systems programming language focused on memory safety and high performance. All that is true, but there’s much more to the story. Rust is one of the best languages out there for writing strongly typed code: code that takes advantage of type level features to ensure certain classes of bugs cannot happen.
But Rust isn’t magic. Simply using a programming language does not bestow strong typing upon the code. You need to intentionally opt-in to using these features to get their full benefit.
In this talk, we’ll go through some real-life examples of using Rust features like traits, newtype wrappers, generics, and macros for creating financial software. We’ll look at how regular application code can benefit from the features Rust provides.
On top of that, we’ll see how the amazing serde library provides great data marshaling guarantees, and how we can leverage WASM compilation to get these benefits outside the server too.
I'd like to share what we've learned in the last 2 years, when building Iggy.rs message streaming infrastructure from the ground up.
Of course, choosing Rust is already improving your life as a programmer. But there’s always something we can still improve. So here’s a series of tips to save you time, typing, sanity or all of them.
This talk explores lessons learned while building a CRDT library with JSON semantics, aimed at application developers.
I applied PGO to many kinds of software, collected a lot of carefully hidden traps on my journey, and found multiple ways how to avoid them. In this talk, I want to share with you my experience.