Posts

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);

Total Commander FTP connections list

Help - About Total Commander wcx_ftp.ini

Get _id of document in Mongodb using PHP

$documentObject["_id"]->{'$id'}

Delete Git branch

delete branch locally git branch -d localBranchName delete branch remotely git push origin --delete remoteBranchName