error
GIT: Fatal Ambiguous …
While rare, you might run into an error when using Git version control that your branch name and a filename are the same. The error happens when you attempt to run a git command using the conflicting name. Error: fatal: ambiguous argument ‘branch_name’: both revision and filename As an …
Puppeteer Max Timeout …
I’ve been using Puppeteer a lot recently for automated testing and more often for web scraping. Often times though I’ve run into a timeout error where I’ve exceeded the default 30000ms timeout when requesting a new page in the headless Chrome browser. This is really common for …
Docker Compose Exited …
Docker Compose is a great tool for orchestrating docker containers within an environment, especially for local development. A common error is: <service name> exited with code 0. Which is usually seen when a container stops immediately. The fix: Add stdin_open: true and tty: true to each …