What's so hard about writing a Slack client in Rust? (rustmcb)
“I’ll just write a simple API wrapper for that. Give me two hours.” Does that sound oddly familiar? Don’t be fooled: writing an easy to use, idiomatic abstraction layer is a lot of work - in any...
View ArticleDiesel (rustmcb)
Better refuel before we get started, this is a “Choose Your Own Adventure” talk—where the audience decides into which rabbit hole(s) we go down. Writing an actual app? Sure! Type system excursions?...
View ArticleInline Assembly (rustmcb)
Rust's support for inline assembly is currently unstable. The talk will give an overview of the current unstable implementation in Rust, as well as inline assembly support available in other...
View ArticleCaches and You (rustmcb)
One of the great things about Rust is that it gives you a lot of control if you need it. Amongst other things it gives you control over memory. How big is your data structure really, and where should...
View ArticleAn introduction to 'Share Secrets Safely' (rustmcb)
‘Share Secrets Safely’ scratches a particular itch as it provides the tooling required to use GPG in teams with great user experience, while providing all tooling necessary to introduce said shared...
View Articlehyperjson (rustmcb)
During a recent Python Hackathon in Düsseldorf, Matthias somehow managed to sneak in some Rust code while writing a fast, safe Python module for encoding and decoding JSON. It passes (most of) the...
View ArticleA generalist's view of traits (rustmcb)
People coming from other languages can find a lot of familiar aspects in Rust’s traits: Traits are somewhat like interfaces, and also somewhat like type classes, and also like… classes? This talk will...
View ArticleFn traits (rustmcb)
This talk explains how you can use the Fn* traits to properly accept functions and closures as function parameters, and gives an overview of which closures implement which traits. about this event:...
View ArticleWayland + Rust (rustmcb)
I’ll take some time to explain what is Wayland and why it’s here to stay. Then, I’ll give a high level overview of the state of Rust on Wayland: how to write servers and clients, and how far along we...
View ArticleRust on FreeBSD (rustmcb)
FreeBSD: What is it? Rust on FreeBSD: State of the art. How to build a FreeBSD package for a Rust project. about this event: https://c3voc.de
View ArticleWASM in the wild (rustmcb)
2018 is the year of WebAssembly. But did you know, you can do more than “Web” with it? In this talk we’ll investigate how wasm allows substrate, the Rust blockchain framework that will run Polkadot, to...
View ArticleThe Cost of Zero Cost (rustmcb)
Rust promisses Zero-Cost Abstractions. In this talk we’ll look at ways to analyze generated code to determine their actual overhead. about this event: https://c3voc.de
View Article