• Quadruple-filtered the batch of oat milk today. Made an ok difference. Each time removes a bit of the suspension. Also added 6 pitted dates. Not the biggest change for half a gallon of milk. Gonna save the dates for the next round of protein bars: pecan butter, tahini, oats, dates, protein powder.
    • Really interesting story about Nick Diaz’ life: https://www.mmafighting.com/2015/9/14/9327767/nick-diaz-opens-old-wounds-on-a-dark-day-in-his-career. Didn’t graduate middle school, been fighting all his life. Biggest motivation was his girlfriend killing herself in high school. Now suspended for 5 years for having marijuana in his system. Frustrated that he can’t be there for his brother.
    • Bought round-trip flight to the bay for the tough mudder, oct 4-7. 15k miles and $11 in fees.
    • Significant rework on a lot of vim shortcuts, mostly.
      • Use on full tmux terminal for vim, and have vim handle the grid between panes for editing multiple files at once. This allows you to copy between files easily. Then keep other grids in tmux for different shell contexts, like python, bash, psql, git, logs, etc.
      • tmux:
        • ctrl-a then c to create tab
        • ctrl-a then n to move to next tab
        • ctrl-a then p to move to previous tab
        • ctrl-a then – to split window horizontally
        • ctrl-a then to split window vertically
        • ctrl-a then arrow to move windows
        • ctrl-a then x to close window, or tab if no more windows (confirm with y)
      • vim:
        • ctrl-w then c to create tab (with filetree explorer)
        • ctrl-w then n to move to next tab
        • ctrl-w then p to move to previous tab
        • ctrl-w then – to split window horizontally (with filetree explorer)
        • ctrl-w then to split window vertically (with filetree explorer)
        • ctrl-w then arrow to move windows
        • ctrl-w then x to close window, or tab if no more windows
      • ctags
        • ctrl-] to jump to def
        • ctrl-t to jump back
        • ctrl- to open def in new vim tab
      • There’s no great way to maximize the current window in vim, like ctrl-a then z does in tmux.
    • Good UFC card. Pereira is one of the craziest fighters I have ever seen. So much capoeira. He did a straight backflip on a downed opponent.
    • Supercontest.
      • Finished updating the core modules for the new db and model structure. Now just need to test with the live app.
      • Removed the read/commit from excel from source. This was a one-team use to pull from petty’s old data. If I need to reference it again, I can scrape the vcs archives. Nominally it won’t be needed ever again.