Search Articles

Search Results: INP

Your Code is Not Yours: The Professional Engineer's Guide to Code Ownership

Engineers often feel deep ownership over the codebases they build, but this emotional attachment can clash with business realities. This article explores the delicate balance between caring for your work and recognizing that ultimately, the code belongs to the company—and why that's not a bad thing.
Reinventing Terminal UIs: The Kitty Graphics Protocol and a New Era of Rich Text Interfaces

Reinventing Terminal UIs: The Kitty Graphics Protocol and a New Era of Rich Text Interfaces

The Kitty graphics protocol turns the terminal from a plain text sandbox into a canvas capable of rendering arbitrary pixel art, animations, and even full‑screen images. By offloading image decoding to the client and using lightweight escape sequences, developers can embed high‑fidelity graphics in any TUI tool, from file explorers to video players, without sacrificing performance or portability.
From Boxes to Bits: How a Rust Compiler Can Cut AST Memory by 70%

From Boxes to Bits: How a Rust Compiler Can Cut AST Memory by 70%

A deep dive into the evolution of abstract syntax tree representations in a toy Rust compiler, from naive boxed trees to a custom super‑flat layout. The article shows how string interning, pointer compression, bump allocation, and a carefully engineered node format can dramatically reduce memory usage and improve parsing throughput.

From Baseline to 420x Speedup: Mastering Median Filters for Arbitrary Data Types

Median filters are a cornerstone of computer vision, yet their computational demands can bottleneck even modern pipelines. This deep dive explores a progression of optimizations—from naive sorting to ordinal transforms and multithreading—that slash processing times by orders of magnitude for diverse data types like uint8, float, and double. Developers stand to gain dramatically in real-time imaging and AI workloads, where efficiency directly translates to innovation.
Lie Groups: The Geometry of Symmetry that Shapes Physics and Mathematics

Lie Groups: The Geometry of Symmetry that Shapes Physics and Mathematics

Lie groups merge group theory, geometry, and linear algebra to capture continuous symmetries that underpin modern physics and deep mathematical structures. From the rotation of a Frisbee to Noether’s theorem, these manifolds translate abstract algebra into tangible conservation laws and computational tools.