Sam Altman told an audience at a Federal Reserve conference that AI will eliminate entire categories of jobs, specifically singling out customer support as a job AI will take over. He also argued ChatGPT is already better than doctors at diagnosing most ailments while he personally may be a “dinosaur” for not wanting to fully entrust his health to AI without any humans in the loop. https://www.theguardian.com/technology/2025/jul/22/openai-sam-altman-congress-ai-jobs
@b0rk I have a large collection of Git aliases: https://github.com/booch/config_files/blob/master/git/aliases
I use ~25 on a daily basis. Many pure shortcuts: br = branch, st = status, di = diff. Others are shortcuts for options: pohf = push origin HEAD --force-with-lease, staged = diff --staged. I don't have to remember the options if I'm on my own computer. I use another ~25 less often. They're mostly the latter type: uncommit = reset --soft HEAD^, unstage = reset HEAD --. Most of the rest are for pairing with other people.