Posts

Showing posts from March, 2024

Preserve bash history in multiple terminal windows

Add the following to your  ~/.bashrc : # Avoid duplicates HISTCONTROL=ignoredups:erasedups # When the shell exits, append to the history file instead of overwriting it shopt -s histappend # After each command, append to the history file and reread it PROMPT_COMMAND= " ${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'} history -a; history -c; history -r"

Open source Zapier alternative

https://automatisch.io/?ref=openalternative

Docker "ERROR: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network"

Docker may be at its maximum of created networks. The command  docker network prune  can be used to remove all networks not used by at least one container. docker network ls Remove unused docker network

Maven Lifecycle

https://www.scaler.com/topics/maven-lifecycle/