Blog

Insights and articles on Rust πŸ¦€, AI and live tool development.

Showing 6 of 60 articles β€’ Page 1 of 10

πŸ“Œ Why Rust?
rustApril 10, 2025

GC Pauses and Latency: The Hidden Cost of High-Level Languages

Java, Python, and JavaScript offer convenience, but garbage collection introduces unpredictable latency. Explore how runtime memory management affects performance in real systems.

rustApril 11, 2025

C Gives You Control, But at What Cost?

C avoids garbage collection and gives manual memory control, but opens the door to dangerous bugs. Explore real-world memory issues and why they matter.

rustApril 12, 2025

Rust: Memory Safety Without Garbage Collection

Rust gives you the performance of C with memory safety enforced at compile time. Learn how ownership and borrowing eliminate entire bug classes.

πŸ—“ Latest articles
azureSeptember 5, 2026

Following a Correlation ID Through Log Analytics Without Writing KQL

A Log Analytics workspace holds the answer to where your integration flow stopped. Getting it out normally means a KQL query per table and knowing which column ties the steps together. It does not have to.

azureSeptember 5, 2026

Your Logic Apps Are a Graph, and the Azure Portal Only Shows You a List

Past a dozen workflows, an Azure Logic Apps estate stops being a list and becomes a graph connected by Service Bus queues and Event Grid topics. Here is why the portal cannot show you that graph, and what to do about it.

azureSeptember 5, 2026

How Far Did That Order Get? Tracing a Correlation ID Across Cosmos DB

A customer says their order never arrived. You have a correlation id and an Azure Cosmos DB account with more containers than anyone remembers. Here is why the empty results matter more than the full ones.

gitSeptember 5, 2026

AI Commit Messages Without Handing Over Your Git History

AI git tooling tends to come in two shapes: a text box you copy out of, or an agent that runs commands and tells you afterwards. There is a third option, and it comes down to where the approval sits.

azureMay 29, 2026

AIS Runner: A Desktop GUI for Local Azure Logic Apps Standard Development

AIS Runner is a Dioxus-based desktop app for local Azure Logic Apps Standard development β€” manage, run, debug, and compare workflows without leaving your dev environment.

rustApril 14, 2026

What is `clamp` in Rust, and when should you use it?

What clamp does, why it panics on a swapped min and max, and how it differs from the saturating arithmetic it gets confused with.