Posts
using wine
by danaukes
```bash sudo apt update sudo apt install -y wine64 sudo apt install -y wine64-development wine64-tools wine64-preloader sudo ...
Working with pdfs from the command line
by danaukes
Merge pdfs from Bash
sudo apt install -y pdftk
pdftk file1.pdf file2.pdf cat output mergedfile.pdf
from ...
Markdown Cheat Sheet
by danaukes
Derived from https://towardsdatascience.com/the-ultimate-markdown-cheat-sheet-3d3976b31a0
Headings
There are few options to create headings. We can use Markdown or ...
Mattermost Details
by danaukes
git clone https://github.com/mattermost/docker cd docker cp env.example .env mkdir -p ./volumes/app/mattermost/{config,data,logs,plugins,client/plugins,bleve-indexes} sudo chown -R 2000:2000 ...
mkdocs info
by danaukes
Python environment
```bash sudo apt install -y git python3-pip python3-venv python3 -m venv ~/envs/mkdocs . envs/mkdocs/bin/activate pip install \ mkdocs ...