Inside Ruby’s JSON Library: Complete Deep Dive

May 18, 2026 Introduction This tutorial explores the internals of the JSON library used by entity ["software","Ruby","CRuby interpreter"]. The archive contains: Native C parser implementation Native C generator implementation SIMD optimizations Floating-point conversion algorithms Buffer management infrastructure Ruby wrapper APIs JSON additions for Ruby core classes Build system integration Repository structure: json/ ├── parser/ │ … Continue reading Inside Ruby’s JSON Library: Complete Deep Dive

Exploring Ruby’s Shorthand Syntax: Simplify Arrays, Strings, and More

December 18, 2024 Ruby is renowned for its expressive and concise syntax, and one standout feature is its shorthand notations for creating arrays, strings, symbols, and more. If you're a Ruby developer looking to write cleaner and more readable code, understanding these shorthands like %w, %q, %i, and others is essential. Here’s a deep dive … Continue reading Exploring Ruby’s Shorthand Syntax: Simplify Arrays, Strings, and More