2025
June 16 Using sed to extract a patch from a file While running the OpenAI Codex CLI locally, I came across a sed command that prints specific lines from a file. The agent often uses this command to output a portion of a file: sed -n '12,15p' <filename> This prints lines 12 through 15 of <filename>. March 29 dotGo 2014 - John Graham-Cumming - I came for the easy concurrency I stayed for the easy composition I had to watch this twice to fully appreciate it. John Graham-Cumming crams a 40-minute talk into 14 minutes. First, he shows how Go’s basic types and stdlib make writing a DNS lookup program quite trivial. Then he walks through how he generalized it with a simple interface. The code can be found here. ...