Generated Sep 5, 2026, 3:00 PM — new uploads from your subscribed channels, each with a short summary so you know what it's about before you click play.
A rapid tour of ten lesser-known JavaScript features, from optional chaining to structured clone, each shown with a one-line before/after example. Optional chaining (?.) avoids manual null checks on nested objects. structuredClone() replaces the old JSON.parse(JSON.stringify()) deep-clone hack. Array.at(-1) reads the last element without .length - 1. Object.groupBy() buckets array items by a key function in one call.
Explains containers vs. virtual machines and runs through the core docker build/run/ps commands in under two minutes. Containers share the host kernel, so they start in milliseconds instead of minutes. A Dockerfile defines the image; docker run creates a container from it. docker ps / docker logs are the two commands used most for day-to-day debugging.
A rundown of VSCode, Zed, and Neovim tried over a month, concluding that modal editing speed wins once muscle memory kicks in. Zed's performance impressed but plugin ecosystem is still too thin for daily driving. VSCode's remote-SSH extension is the main reason it's still recommended for beginners. Neovim's LSP setup takes an afternoon but pays off within a week.