2790 shaares
Raison pour ne pas faire confiance en microsoft
Confirmed
More explanation: https://unix.stackexchange.com/questions/405783/why-does-man-print-gimme-gimme-gimme-at-0030
Shell command to test on other timezone: ( export TZ=Asia/Tokyo; while :; do date; man; sleep 30; done )
about:config?filter=privacy.firstparty.isolate
privacy.firstparty.isolate = true
privacy.firstparty.isolate.restrict_opener_access = true
Set user name and email on a project
git config user.name "ikipatang"
git config user.email "contact@ikipatang.com"
Re-set user name and email on every commit (need to be executed on each branch)
git filter-branch -f --env-filter \
"GIT_AUTHOR_NAME='ikipatang'; GIT_AUTHOR_EMAIL='contact@ikipatang.com'; \
GIT_COMMITTER_NAME='ikipatang'; GIT_COMMITTER_EMAIL='contact@ikipatang.com';" HEAD