Categories: "*nix"
Proxmox
April 3rd, 2026I'm moving a number of my physical machines to Proxmox virtual machines. Here are some notes on the process.
There are a number of community scripts for Proxmox located here: https://community-scripts.org/
After installing the Proxmox software, run the PVE Post Install script here: https://community-scripts.org/scripts/post-pve-install. This will set up a number of things such as the enabling the correct repositories and disabling the nag screen.
I'm going to run Pi-Hole in a LXC container via this script here: https://community-scripts.org/scripts/pihole
AI Notes
December 26th, 2025Editors
AI Coding on steroids! Auto Claude (Free & Opensource)
Cursor Tutorial for Beginners (AI Code Editor)
Master Cursor in 50 Minutes with Cursor's Head of AI Education (2025) | Lee Robinson
Using Cursor + Claude to Make Full-Stack SaaS Apps
Using Claude’s chat search and memory to build on previous context
Claude Usage
CLI
To install CLI AI:
- Open terminal
- For Gemini, run 'npm install -g @google/gemini-cli' and use gemini to run
- For Claude Code, run 'npm install -g @anthropic-ai/claude-code' and use claude to run
Miscellaneous
You've Been Using AI the Hard Way (Use This Instead)
Authors and Book Series
October 25th, 2025Here are some links to my favorite author's books, similar authors and other book related material.
Books by Authors
Piers Anthony Books In Order
Terry Brooks Books In Order
Jim Butcher Books In Order
David Eddings Books In Order
Terry Goodkind Books In Order
Brian McClellan Books In Order
Brent Weeks Books In Order
How to have dd with a progress bar
September 28th, 2025Option 1:
dd if=/path/to/input of=/path/to/output status=progress
Option 2:
dd if=/path/to/input | pv | dd of=/path/to/output
