Tag: #metaprogramming
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 2 posts
Dart Macros, One and a Half Years After Cancellation — Did the Three Promises Actually Ship?
Macros were the feature the Dart team pushed hardest at Google I/O 2024, and on January 29, 2025 they were officially canceled. Not because the feature was bad, but because the compile-time cost of semantic introspection
2026-07-17 · 11 min read #flutter#dart#macros#code-generation#metaprogrammingRust Macros: Declarative vs Procedural (derive)
Rust macros are a metaprogramming tool that generates code at compile time. This post distinguishes pattern-based declarative macros (macrorules!) from procedural macros (derive, attribute, function-like) that receive co
2026-06-26 · 10 min read #rust#macros#metaprogramming