Plan and done for August-27-2017
What will I learn today?
I am moving towards application to Microsoft LEAP program - http://www.industryexplorers.com/applicants. What should I do to fit better? My deadline is 15 September 2017.
Done
-
How to terminate (stop, interrupt) Chrome session without closing tab? Go to
Menu → More Tools → Task Manager
find the task hanging, press End process button.
From here - https://stackoverflow.com/a/27261978/2255031.
-
How to calculate number of unique words in a file with *nix shell
cat someFileName.txt | tr ' ' '\n' | sort | uniq -c | awk '{print $2": "$1}'and you've got your numbers.