Posts

Showing posts from May, 2020

Disabled Firefox Context Menu

about:config dom.event.contextmenu.enabled set to true

Copy local git branch

git branch copyOfMyBranch MyBranch git checkout copyOfMyBranch

Allow multiple git flow hotfix branches to exist at the same time

git flow config multi-hotfix true   or   git config --add gitflow.multi-hotfix true

Show all PHP errors

ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL);