Compiler from scratch: lexer parser type inference https://sudonull.com/compiler-from-scratch-lexer-parser-type-inference
Experience creating a compiler for my own language: from lexer to LLVM IR. Handling generics, lambdas, linking. For middle/senior developers. Learn approaches without deep knowledge.
Compiled vs Interpreted Languages: Key Differences https://sudonull.com/compiled-vs-interpreted-languages-key-differences
What is the difference between compiled and interpreted languages? Learn performance, use cases, and how to choose the right language for your project. Full comparison guide.
C Compiler in constexpr C++ https://sudonull.com/c-compiler-in-constexpr-c
Implementation of a compile-time compiler for a C subset in C++. Bypassing constexpr limitations, function bindings, bytecode generation. For middle/senior C++ developers.
TypeScript 6.0: new compiler and features https://sudonull.com/typescript-6-0-new-compiler-and-features
TypeScript 6.0 prepares for tsgo compiler: #/ imports, Temporal API, Map upsert. tsconfig changes for speed. Detailed breakdown for developers.
Solod: Go without GC with compilation to C https://sudonull.com/solod-go-without-gc-with-compilation-to-c
Solod is a subset of Go with manual memory management, compiles to C11. Benchmarks, features, integration with C. Ideal for systems programming. Learn more.