Disabled Firefox Context Menu Get link Facebook X Pinterest Email Other Apps - May 20, 2020 about:config dom.event.contextmenu.enabled set to true Read more
Copy local git branch Get link Facebook X Pinterest Email Other Apps - May 19, 2020 git branch copyOfMyBranch MyBranch git checkout copyOfMyBranch Read more
Allow multiple git flow hotfix branches to exist at the same time Get link Facebook X Pinterest Email Other Apps - May 19, 2020 git flow config multi-hotfix true or git config --add gitflow.multi-hotfix true Read more
Show all PHP errors Get link Facebook X Pinterest Email Other Apps - May 05, 2020 ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); Read more
Total Commander FTP connections list Get link Facebook X Pinterest Email Other Apps - April 30, 2020 Help - About Total Commander wcx_ftp.ini Read more
Get _id of document in Mongodb using PHP Get link Facebook X Pinterest Email Other Apps - April 30, 2020 $documentObject["_id"]->{'$id'} Read more
Delete Git branch Get link Facebook X Pinterest Email Other Apps - April 27, 2020 delete branch locally git branch -d localBranchName delete branch remotely git push origin --delete remoteBranchName Read more