Local gitdevgithowto2019.12.02Define a repo somewhere in your file system with a bare init
mkdir -p /somewhere/repo/test_project cd /somewhere/repo/test_project git init --bare Now create a local folder for your work with init onlyRead moreVS Code loses Go autocompletion on Linuxbugdevgolinux2018.03.27On my Linux, just after upgrading Go to version 1.9, I lost autompletion functionality in VS Code.
:vscode_completion_not_working
This tip did not work for me.Read moreDocker from scratch, Go and Multipart uploadconsoledevdockergohowtominimalscratchubuntu2018.01.26To reduce docker container size we can built the image from scratch instead of using bloated images, like debian or worse ubuntu.Read moreDon't forget master infos in your MySQL dumpdevhowtomysql2017.02.20I tried to resync a slave MySQL after it disconnected from the master. But the binary log was already deleted on master, so the only solution was to restore from the last backup.Read moreMySQL import from csvdevhowtomysql2016.10.12To import a local CSV file into MySQL, use the syntax below :
LOAD DATA LOW_PRIORITY LOCAL INFILE '/path/tofile.csv' INTO TABLE database.Read moreMySQL export to csvdevhowtomysql2016.10.12To export a mysql results in CSV format, use the syntax below :
SELECT field1, field2, ... FROM table WHERE condition INTO OUTFILE '/tmp/toto.Read moreAllow invalid date in MySQLdevmysql2016.05.23Just in case you absolutely have to insert a date in MySQL that does’nt exist, eg 2014-02-30, you can run MySQL server in a special mode that authorizes such dates :Read moreGit delete remote branch/tagdevgit2015.01.07As of Git v1.7.0, you can delete a remote branch using :
git push origin --delete <branchName> And you can do exactly the same with a tagRead moreGIT - stop tracking filesdevgit2014.11.28If you have some files that you need to have in your repo but don’t need to have updates, git allows it :Read more