Claude Code has a new option:
“Yes, clear context and auto-accept edits.”
Hope this means less token usage.
Claude Code has a new option:
“Yes, clear context and auto-accept edits.”
Hope this means less token usage.
Okay, so I got access to Claude Cowork now.
No idea what to do with it. 😀
Anyone have a good use case for it?
The way I understand it is that it’s a desktop version of Claude Code.
Daily reminder: AI confidently hallucinates false info.
Asked Claude about a WP-CLI one-time login command (like drush uli).
It invented “wp user generate-login-link”, which doesn’t exist.
I tried it multiple times before realising.

Had a surprising moment with Cursor.
I asked a simple question about a command, and its AI agent, with “auto run” enabled, decided to install Docker via Homebrew without any confirmation!
While powerful, this highlights a potential pitfall of AI tools that can execute commands. It made changes to my local setup that I didn’t want.
Ivan’s top tip: Be mindful of settings like “auto run” and “auto fix errors” in Cursor.
Have you had any similar experiences in the past?
I’ve decided not to renew GitHub Copilot because there are other AI coding tools to explore.
Looking forward to testing out:
Which AI coding assistants are you using? 💻
Just discovered you can star a repository and add it to a list on GitHub. Great feature!
Just click on the down arrow on the “starred” button and add the repo to a list.
On the weekend I spent time learning about Gatsby. For people who don’t know, Gatsby is a React based site generator.
Usually, when I try and learn new tech, I often avoid the official documentation and look for videos on YouTube or a free course. This is a bad habit of mine because most projects have proper documentation these days.
However, the Gatsby documentation is outstanding, especially the tutorials. So if you want to learn how to use it, then I’d start with the “Gatsby.js Tutorials” section and work your way through it.
In a recent project, I needed to add a file which was in a folder that was ignored using the .gitignore file.
Now I could edit the .gitignore file, commit the file, then edit the .gitignore again. But this seemed like a cumbersome way to do it.
Luckily I found that the git-add command has a --force option.
-f --force Allow adding otherwise ignored files.
For example:
git add --force ignored-file.php
Enjoy.
$ zip -r drupal.zip html
This zips all files and directories.
Here is an example of import sql files from ssh.
$ mysql -uUserHere -pPasswordHere -hlocalhost PutYourUserHere_databaseName < database.sql
$ mysql -u username -p dbname < data.sql