0 Language learning January 20, 2025 A Trip to Jupyter Lab A trip starts with a single step. Let's start a space trip to Python Analytics Galaxy
Language learning October 13, 2024 Amazing Learning Learning should be fun: sharing an experience teaching python
Machine learning June 9, 2024 Growing a (Decision) Tree Completing the creation of a classification decision tree in Rust
Language learning April 21, 2024 Embedding a (binary) Tree creating a tree which works in embedded devices
Language learning April 14, 2024 Climbing a (binary) Tree In this post I will show how to transform a recursive depth first traversal function into an iterator for a binary tree
Language learning March 31, 2024 Stacking bits I will show a very compact (memory efficient) and fast implementation of a binary stack, some Test Driven Design and success types
Language learning March 25, 2024 Prime Time An introduction to coroutines, typestate machine, phantom types, iterators and ownership issues
Language learning March 17, 2024 Growing a (sorting) tree In this post we will extend our binary tree using generics and trait constraint, and add a simple sorting algorithm based on depth first traverse.
Language learning March 16, 2024 Growing A (Binary) Tree in Rust An introduction to binary trees in rust