Git Basics

Git Basics Slideshow

June 20, 2024 · 1 min · jonboh

intro2 Rust

intro2rust @ 42 Urduliz I went to 42 Urduliz Fundación Telefónica to give an introductory talk about Rust. Check the slides here and the source code During the Q&A, there were a couple of interesting discussions centered around the performance and initial complexity of a Rust project. How does C and Rust performance compare? Essentially, one should be able to get mostly the same performance for identical programs, in some cases the equivalence might not be obvious for a newcomer, as things like vector indexing in Rust will implicitly add a bound check that will make our program panic if we are out of bounds. In C, the bound check does not exist and will result in undefined behavior, a segfault etc… Doing microbenchmarking one can see this effects and conclude that C is obviously faster than Rust. However one could always use the unsafe get_unchecked interface of Vec to get the same performance. So in this case (as it is almost always the case), Rust forces you to acknowledge the danger and complexity head on. ...

May 20, 2024 · 2 min · jonboh

Declarative Data Pipelines

Slides

March 4, 2024 · 1 min · jonboh