Mostly Technology related summaries, fixes, solutions and notes
- Common problems and solutions, fixes, notes and tips gathered while trying to solve problems
- fixes are displayed as technical documentation using mkdocs and mkdocs-material
- Some interpretations and summaries of tech related documentation and books
The collection of fixes can be viewed with your web browser at: http://fixes.co.za
python3 -m venv env
source env/bin/activate
pip install -r requirements.txt
mkdocs serve
When making an update make sure to run:
python3 update_index.py
This updates the index page.
Install a pre-commit
hook:
sudo vim ./fixes/.git/hooks/pre-commit
and write:
#!/bin/sh
source ./env/bin/activate && python update_index.py