Learn Git Branching
A nice game to learn git. https://learngitbranching.js.org/
A nice game to learn git. https://learngitbranching.js.org/
[youtube &w=560&h=315] (Together) We will go our way (Together) We will leave someday (Together) Your hand in my hands (Together) We will make our plans (Together) We will fly so high (Together) Tell all our friends goodbye (Together) We will start life new (Together) This is what we’ll do ...
[youtube &w=560&h=315] http://cinephilia.net/36403 Very interesting film.
Nice post: https://medium.com/@benjaminhardy/2-quotes-that-will-reshape-your-approach-to-life-194ce05586fd
Ref: https://www.tomsguide.com/us/best-mobile-network,review-2942.html
I didn’t know there is so much math behind searching for a plane ticket… http://www.demarcken.org/carl/papers/ITA-software-travel-complexity/ITA-software-travel-complexity.pdf
Using python virtual env wrapper is very beneficial, especially when you have many python projects using different python versions. It would be a disaster if we just blindly pip install all project modules into our global site-packages. There will definitely be package conflicts later on. Using a virtual environment will keep your python modules stored separately per environment, thus avoiding many issues mentioned above. To install virtualenvwrapper, just do pip install virtualenvwrapper. Or follow this doc. ...
Highly recommend this Docker Tutorial Series written by Romin Irani. Some content is outdated, but the tutorial posts are very easy to understand. https://rominirani.com/docker-tutorial-series-a7e6ff90a023
If you try to run pip install and got this error OSError: [Errno 13] Permission denied: ‘/Library/Python/2.7/site-packages/, perhaps you don’t have permission to that folder. Try: [code] sudo chown -R $USER /Library/Python/2.7 [/code]
Just to add more to my previous command prompt setting post. These two links will help you construct your command prompt PS1 string: http://ezprompt.net/ http://bashrcgenerator.com/ And if you use git a lot, this following setting will show your current git branch name in your command prompt. Thanks to this post. parse_git_branch() { git branch 2> /dev/null | sed -e ‘/^[^*]/d’ -e ’s/* \(.*\)/ (\1)/’ } export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ " So my complete prompt setting .bash_profile lines are: ...