Noah Rivera's articles

  • Sniffing API Calls in Ruby

    Sniffing API Calls in Ruby

    When debugging integration issues or reverse-engineering third-party gems, you need to see what's actually hitting the wire. Ruby offers several approaches for…

    programming
  • Rust Pattern: The Newtype Wrapper

    Rust Pattern: The Newtype Wrapper

    Rust's newtype pattern wraps a value in a distinct type to enforce invariants, improve API clarity, and add type safety with zero runtime cost.

    programming
  • Understanding JavaScript Closures

    Understanding JavaScript Closures

    An in-depth look at closures in JavaScript and their applications.

    programming