spumoni.hashnode.devA tmux-like terminal multiplexer for Windows, written in Rust.wtmux is a tmux-style terminal multiplexer designed for Windows.Written in Rust, it takes advantage of Windows ConPTY to offer a smooth and flexible user experience. ➡ GitHub: wtmux - A tmux-like terminal multiplexer for Windows, written in Rust. Fea...Jan 8·6 min read
spumoni.hashnode.dev"mdvim" — A Vim-style Markdown Editor That Runs Entirely in Your BrowserIntroduction What editor do you use when writing documents in Markdown? VS Code, Obsidian, Typora... there are many options, but for Vimmers, finding an editor with "properly working Vim keybindings" is surprisingly difficult. VS Code's Vim extension...Dec 20, 2025·16 min read
spumoni.hashnode.devFORTH Basic Master Level 5Conditional Branching Conditional branching is the mechanism that gives "decision-making" to FORTH programs. It evaluates values on the stack and selects different processing based on the results. In this lesson, we'll focus on the IF ELSE THEN synta...Dec 5, 2025·5 min read
spumoni.hashnode.devFORTH Basic Master Level 4Supplementary Lecture 1 1. Forth is Not a "Language" but a "Toolbox" Unlike general programming languages, Forth is not something you write by following existing grammar. It has a philosophy of creating vocabulary (words) tailored to your problem and...Dec 5, 2025·4 min read
spumoni.hashnode.devFORTH Basic Master Level 3Stack Operations The key to understanding FORTH lies in the fact that all computation and control is performed on a simple structure called the "stack." A stack is a mechanism where data is pushed in sequence (push), like stacking plates, and retriev...Dec 5, 2025·9 min read