The uphill struggle for freedom
Sunday, April 17, 2022
Comments on 'Predicting Developers’ Negative Feelings about Code Review' article
›
Link to publication: https://research.google/pubs/pub49023/ > modern code review provides many benefits ..., including finding defect...
Monday, February 15, 2021
How to fix time in name of files from Google camera application from UTC to localtime
›
copy all files in test folder # to rename all jpeg jhead -nPXL_%Y%m%d_%H%M%S *.jpg # do only mp4 as jpeg is better to be done by jhead exif...
Friday, May 15, 2020
How to pass "diff wall" caused by reformatting or bulk change
›
Digging git history in terminal https://medium.com/@drdmason/git-blame-all-the-way-back-62957f8407 Digging git history in Github ...
Friday, February 7, 2020
My actions of mac setup from scratch
›
1) remap "End" key if key board is long https://apple.stackexchange.com/a/16137 2) Show path and statis bar Open finder, in ...
Friday, November 8, 2019
How to list all changed files between two branches that does not have common ancestor
›
If tree is like this: Same tree you can see by(if you do not have gitk): git log --all --graph to get a all files: $ (git diff --name-...
Tuesday, November 5, 2019
How to keep release branch commits in history but do not keep branch
›
Command: git merge --no-ff -s "ours" release-branch Removal of branch label from git tree: git branch -D release-branch It w...
Tuesday, October 22, 2019
move log file with timestamp prefix
›
mv server.log server.log.before.$(date '+%Y%m%d%H%M%S')
›
Home
View web version