fixes icon indicating copy to clipboard operation
fixes copied to clipboard

Some development things

Fixes

Mostly Technology related summaries, fixes, solutions and notes

fixes.co.za

Build Status

  • These are common problems and solutions, fixes and tips that I have gathered while trying to solve problems
  • The fixes are displayed as technical documentation using mkdocs and mkdocs-material
  • It is mainly a reference of common development problems and solutions I have come across to help others to fix similar problems.
  • There are also some interpretations and summaries of tech related documentation and books

Where to view Fixes

The whole collection of fixes can be viewed with your web browser at: http://fixes.co.za

Getting Started

python3 -m venv env
source env/bin/activate
mkdocs serve

Create / Update the index page

When making an update make sure to run:

python3 update_index.py

This updates the index page.

Install a pre-commit hook

Install a pre-commit hook:

sudo vim ./fixes/.git/hooks/pre-commit

and write:

#!/bin/sh
source ./env/bin/activate && python update_index.py