Skip to content

Instantly share code, notes, and snippets.

View joelparkerhenderson's full-sized avatar

Joel Parker Henderson joelparkerhenderson

View GitHub Profile
@shawwn
shawwn / since2010.md
Created May 11, 2021 09:46
"What happened after 2010?"

This was a response to a Hacker News comment asking me what I've been up to since 2010. I'm posting it here since HN rejects it with "that comment is too long." I suppose that's fair, since this ended up being something of an autobiography.

--

What happened after 2010?

@ELLIOTTCABLE
ELLIOTTCABLE / lessf.sh
Last active March 10, 2025 12:52
Use `less +F` on multiple files merged into a single stream, just like `tail -f`
# lessf: `less +F` for multiple files, ala `tail -f`
#
# Usage:
# lessf file1.log file2.log ...
#
# - should work on dash, bash, and zsh;
# - works on macOS and the Linuxes I've tested it on;
# - requires the minimal tools that seem to be available nearly everywhere (`awk`, `mktemp`), and of course `less`
# - you may want `unbuffer` or `stdbuf` to avoid the 4kb of buffering (i.e. no output until enough loglines have been added.)
#