Can AI Support Learning Without Taking It Away?

A student asked me about using AI code review in team development training for an existing project. Tools such as Gemini Code Assist and CodeRabbit may find problems that people miss and reduce the burden of review. They may also give newcomers a chance to discover problems they would not notice on their own. But does it count as training if they simply run the commands and apply the changes suggested by AI? AI review can improve the code. Does the person who wrote it improve as well? ...

Posted: 2026-07-16, Updated: 2026-08-10 · 101ta28

Using GPG Signing When Working with Codex

Codex and GPG Signing In my usual Git workflow, I sign commits with GPG. There is no deep reason for it, but I like seeing Verified in the GitHub commit history. git config --global commit.gpgsign true This setting itself is fine, but I ran into a small issue when asking Codex to handle Git work. When creating a commit, GPG needs the passphrase, and signing fails at that point. At first, I committed by canceling the signing step, but it felt wrong, so I decided to fix it. ...

Posted: 2026-06-25, Updated: 2026-08-10 · 101ta28