My collection of notes and code snippets
Notes
October 18, 2024
Fonts to try
- IBM plex mono
October 11, 2024
Mdbook
https://github.com/cococolanosugar/mdbook-auto-gen-summary
can be used to generate auto summary
October 10, 2024
Move window to left monitor
Windows + Shift + Left Arrow
September 16, 2024
Update node packages
npm install -g npm-check-updates
September 16, 2024
Use python 2.7 in npm
wget https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz
sudo tar xzf Python-2.7.9.tgz
cd Python-2.7.9
sudo ./configure --enable-optimizations
sudo make altinstall
npm install --python=python2.7