├── .github └── workflows │ └── main.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CNAME ├── README.md ├── _config.yml ├── _layouts └── default-invalid.html ├── _sass ├── fonts.scss ├── jekyll-theme-minimal.scss └── rouge-github.scss ├── assets └── css │ └── style.scss ├── header.md ├── header_title.md ├── how-tos ├── Activate an Nginx Web Server on a Raspberry Pi or any Linux.md ├── Add New User on Pi or Linux.md ├── Change Hostname on Linux.md ├── Configure PI User for Ansible.md ├── Create a Minimal Web Application with Nginx, Python, Flask & Raspberry Pi.md ├── Docker & Docker Compose on Raspberry Pi.md ├── Flash Hypriot as your Pi OS.md ├── Get IP Address or Hostname.md ├── Get PI Stats.md ├── Graceful-ish Updates of A Docker Compose Service via Git.md ├── Gunicorn & Supervisor.md ├── List Network Devices on Windows with nmap.md ├── List Network Devices on macOS and Linux with nmap.md ├── Mange Pi with Ansible.md ├── Mount SATA on Turing PI.md ├── Nginx Load Balancing & Backup Service in Docker Compose.md ├── README.md ├── SSH to Host without Password.md ├── Setup Git & Version Control on your Pi Server.md ├── Supervisor as a Background Service Manager.md ├── Upgrade Docker.md ├── User Group Permissions.md └── index.md ├── index.md ├── links.py ├── piawesome.code-workspace ├── requirements.txt └── shell-scripts ├── gphoto2-updater.md ├── gphoto2-updater.sh ├── header.md ├── serup-face-recognition.md ├── setup-face-recognition.sh ├── setup-opencv.md └── setup-opencv.sh /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | www.piawesome.com -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/default-invalid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/_layouts/default-invalid.html -------------------------------------------------------------------------------- /_sass/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/_sass/fonts.scss -------------------------------------------------------------------------------- /_sass/jekyll-theme-minimal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/_sass/jekyll-theme-minimal.scss -------------------------------------------------------------------------------- /_sass/rouge-github.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/_sass/rouge-github.scss -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "{{ site.theme }}"; -------------------------------------------------------------------------------- /header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/header.md -------------------------------------------------------------------------------- /header_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/header_title.md -------------------------------------------------------------------------------- /how-tos/Activate an Nginx Web Server on a Raspberry Pi or any Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Activate an Nginx Web Server on a Raspberry Pi or any Linux.md -------------------------------------------------------------------------------- /how-tos/Add New User on Pi or Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Add New User on Pi or Linux.md -------------------------------------------------------------------------------- /how-tos/Change Hostname on Linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Change Hostname on Linux.md -------------------------------------------------------------------------------- /how-tos/Configure PI User for Ansible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Configure PI User for Ansible.md -------------------------------------------------------------------------------- /how-tos/Create a Minimal Web Application with Nginx, Python, Flask & Raspberry Pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Create a Minimal Web Application with Nginx, Python, Flask & Raspberry Pi.md -------------------------------------------------------------------------------- /how-tos/Docker & Docker Compose on Raspberry Pi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Docker & Docker Compose on Raspberry Pi.md -------------------------------------------------------------------------------- /how-tos/Flash Hypriot as your Pi OS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Flash Hypriot as your Pi OS.md -------------------------------------------------------------------------------- /how-tos/Get IP Address or Hostname.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Get IP Address or Hostname.md -------------------------------------------------------------------------------- /how-tos/Get PI Stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Get PI Stats.md -------------------------------------------------------------------------------- /how-tos/Graceful-ish Updates of A Docker Compose Service via Git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Graceful-ish Updates of A Docker Compose Service via Git.md -------------------------------------------------------------------------------- /how-tos/Gunicorn & Supervisor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Gunicorn & Supervisor.md -------------------------------------------------------------------------------- /how-tos/List Network Devices on Windows with nmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/List Network Devices on Windows with nmap.md -------------------------------------------------------------------------------- /how-tos/List Network Devices on macOS and Linux with nmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/List Network Devices on macOS and Linux with nmap.md -------------------------------------------------------------------------------- /how-tos/Mange Pi with Ansible.md: -------------------------------------------------------------------------------- 1 | # Manage Pi with Ansible 2 | 3 | Coming soon. -------------------------------------------------------------------------------- /how-tos/Mount SATA on Turing PI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Mount SATA on Turing PI.md -------------------------------------------------------------------------------- /how-tos/Nginx Load Balancing & Backup Service in Docker Compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Nginx Load Balancing & Backup Service in Docker Compose.md -------------------------------------------------------------------------------- /how-tos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/README.md -------------------------------------------------------------------------------- /how-tos/SSH to Host without Password.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/SSH to Host without Password.md -------------------------------------------------------------------------------- /how-tos/Setup Git & Version Control on your Pi Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Setup Git & Version Control on your Pi Server.md -------------------------------------------------------------------------------- /how-tos/Supervisor as a Background Service Manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Supervisor as a Background Service Manager.md -------------------------------------------------------------------------------- /how-tos/Upgrade Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/Upgrade Docker.md -------------------------------------------------------------------------------- /how-tos/User Group Permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/User Group Permissions.md -------------------------------------------------------------------------------- /how-tos/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/how-tos/index.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/index.md -------------------------------------------------------------------------------- /links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/links.py -------------------------------------------------------------------------------- /piawesome.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/piawesome.code-workspace -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pre-commit -------------------------------------------------------------------------------- /shell-scripts/gphoto2-updater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/shell-scripts/gphoto2-updater.md -------------------------------------------------------------------------------- /shell-scripts/gphoto2-updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/shell-scripts/gphoto2-updater.sh -------------------------------------------------------------------------------- /shell-scripts/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/shell-scripts/header.md -------------------------------------------------------------------------------- /shell-scripts/serup-face-recognition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/shell-scripts/serup-face-recognition.md -------------------------------------------------------------------------------- /shell-scripts/setup-face-recognition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/shell-scripts/setup-face-recognition.sh -------------------------------------------------------------------------------- /shell-scripts/setup-opencv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/shell-scripts/setup-opencv.md -------------------------------------------------------------------------------- /shell-scripts/setup-opencv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/Pi-Awesome/HEAD/shell-scripts/setup-opencv.sh --------------------------------------------------------------------------------