Rust for Lunch
A lunchtime Rust meet-up
Rust for Lunch is an online-only Rust meet scheduled to fit into a lunch break.
The main part of each meet-up will be short enough to fit into a 1 hour lunch slot and the time is chosen to be a feasible lunch time.
The first meet-up will be scheduled around European and African midday and early afternoon.
2024-01-24
This is a placeholder for the third session of the Rust for Lunch meet-up.
We'd like to remind everyone that all participants (speakers, moderators, and attendees) must follow the Code of Conduct during the meetup.
- Meet-up call link: TBD
- Date: Wednesday, 24 January, 2024
- Time: 12:00 - 13:00 UTC
- 12:00 - 13:00 GMT (e.g. London, Bamako)
- 13:00 - 14:00 WAT/CET (e.g. Kinshasa, Berlin)
- 14:00 - 15:00 EET/CAT (e.g. Lviv, Cairo)
2023-11-28
The second session of the Rust for Lunch meetup. We'll have two talks, each with time for questions afterwards. There will be time for chatting and socializing after the talks.
We'd like to remind everyone that all participants (speakers, moderators, and attendees) must follow the Code of Conduct during the meetup.
- Meet-up call link: https://lecture.senfcall.de/hay-gmh-wox-mru (Senfcall)
- Date: Tuesday, 28 November, 2023
- Time: 12:00 - 13:00 UTC
- 12:00 - 13:00 GMT (e.g. London, Bamako)
- 13:00 - 14:00 WAT/CET (e.g. Kinshasa, Berlin)
- 14:00 - 15:00 EET/CAT (e.g. Lviv, Cairo)
Talk 1: Deterministic Execution Time Control for Arbitrary WASM
Speaker: Bohdan Ivashko (arriven)
Sometimes you may need to run an arbitrary wasm code while being able to impose limits on CPU and memory usage. While having precise memory limits is relatively easy, controlling the CPU limits in a reproducible way is a totally different can of worms (Spoiler: it's counting instructions, we'll have to count instructions, but we'll have to do it somewhat efficiently, and we'll do it by analyzing and modifying the original code).
Unfortunatebly the second talk for this meet-up has been cancelled. Instead, the first talk will run a bit longer.
2023-10-31
The first Rust for Lunch meetup. Join us online for a talk and questions afterwards.
This session won't be recorded or streamed.
We'd like to remind everyone that all participants (speakers, moderators, and attendees) must follow the Code of Conduct during the meetup.
- Meet-up call link: https://lecture.senfcall.de/hay-gmh-wox-mru (Senfcall)
- Date: Tuesday, 31 October, 2023
- Time: 12:00 - 13:00 UTC
- 12:00 - 13:00 GMT (e.g. London, Bamako)
- 13:00 - 14:00 WAT/CET (e.g. Kinshasa, Berlin)
- 14:00 - 15:00 EET/CAT (e.g. Lviv, Cairo)
Talk: Abusing the Type System for Fun and for Profit
Speaker: Conrad Ludgate
Are you absolutely sure that your payments are submitted at most once? Are you sure that your cryptographic library is used correctly? Are you sure that BTree is balanced? I'll explore some useful (and some goofy) ways to use the rust type system to get what you want.