Don't wanna be here? Send us removal request.
Link
Amazing tutorial on Jekyll. Here’s another link for general reference: https://jekyllrb.com/docs/ Should finish set up by this week (hopefully tmr)
0 notes
Text
Bash Script - tbc
1. var=whatever:no spaces, RHS is a string/array of strings?
2. ‘’ won’t interpolate; “” will -> see echo ‘$1′ and echo “$1″
3. TBC
0 notes
Text
Pip inside Anaconda
Inside Anaconda: packages are downloaded and stored and shared in ~/anaconda3/pkgs where each env have their own bin (soft links to actual copies). If you want to use a certain package, ‘which CMD’ will give you the nearest found on path (use python: import sys -> sys.path).
In a word, if you haven’t installed pip in current env, pip links to the base pip: all pkgs you install here with pip install will be in the global directory (seen by root but not by current env and any env else). So when you try to use it here, it will report module not found (still, you can use pip because pip is invoked the same way which is invoked: it will search for the first same name executable on $PATH -> since all envs overlaps with root in $PATH, pip is still available)
https://jakevdp.github.io/blog/2016/08/25/conda-myths-and-misconceptions/
0 notes
Link
python tricks
also, defaultdict: https://www.accelebrate.com/blog/using-defaultdict-python/
0 notes
Link
Jupyter Notebook -> Slides :)
Also, running nb in background: https://medium.com/@jim901127/running-jupyter-notebook-in-the-background-b6e950c4b7ee
0 notes
Link
Somehow my vs code is not installed in the /Applications/ so straightforward alias code=‘open Visual\ Studio\ Code.app’ doesn’t work. Used method #2 to locate it (I still can’t use find properly’) and voila! Other methods include adding to $PATH and adding to .bash_profile. Will look more into when digging the Mac structure.
0 notes
Photo
Git/GitHub Tricks: Branching/Merging, Pull Requests, and INTERNALS. #Review# in the future ;)
0 notes
Link
Remove Bluetooth files works☑️
Shift+Option reveals a special menu that also works☑️
0 notes