Tag rust in blog posts

Converting Excel Column Names to Numbers in Rust

When working with Excel files programmatically, converting column names (like “A”, “B”, “C”, …, “Z”, “AA”, “AB”, etc.) to their corresponding numeric values (0, 1, 2, …, 25, 26, 27, etc.) is a common task. Rust, with its performance, safety, and expressiveness, is an excellent choice for implementing such functionality.

Tag rust in projects

Injecting Humor into Sports Commentary

This weekend, I explored some cutting-edge web technologies to build a fun project called Sporty Banter.

LRU Memory Cache Library in Rust

in-memory-cache is a straightforward, yet powerful crate that delivers an easy-to-use in-memory cache solution with a Least Recently Used (LRU) eviction policy. This crate facilitates the efficient storage of key-value pairs, providing automatic eviction of the least recently accessed entries when the cache reaches its predefined capacity.