Skip to content

Articles

  • WordPress: Fastest Way to update all plugins using WP CLI

    Update all WordPress plugins using WP CLI. It’s a lot faster than the WP admin interface.

  • Solution: Waiting for another flutter command to release the startup lock…

    This happens when a flutter API task is half done and finishes prematurely. On a Mac, this should solve the problem This worked for me on Mac. On Windows, you can try the following This should work irrespective of the IDE or editor being opened on closed.

  • Solution to: zsh: command not found: flutter on macOS Catalina

    Since the recent update to Mac OS Catalina and forced update to zsh, I was having problem with a lot of my CLI tools, including flutter. The reason being, zsh uses ~/.zshrc and not ~/.bash_profile So to solve the problem, simply add your flutter path to ~/.zshrc like this export PATH=”$HOME/your_path/flutter/bin:$PATH” Change your_path to where… Read More »Solution to: zsh: command not found: flutter on macOS Catalina