Skip to content

Instantly share code, notes, and snippets.

View jverdeyen's full-sized avatar

Joeri Verdeyen jverdeyen

View GitHub Profile
@1ofeightbillion-hub
1ofeightbillion-hub / Home Server Guide: Proxmox + HAOS + Frigate + Coral TPU (Verified Working Build)
Last active January 1, 2026 06:07
Home Server Guide: Proxmox + HAOS + Frigate + Coral TPU (Verified Working Build)
# 🏡 Home Server Guide: Proxmox + HAOS + Frigate + Coral TPU
Please read my associated reddit post before proceeding.
https://www.reddit.com/r/homeassistant/comments/1orftfe/after_60_hours_of_trial_and_error_i_finally_got/
(Verified Working Build — Minimal First → Add Complexity Later)
This guide walks through building a reliable, low-maintenance **home-automation** and **NVR setup** using:
* **Proxmox VE** (host virtualization platform)
* **Home Assistant OS (HAOS)** in a VM
@krakazyabra
krakazyabra / create_template.sh
Created July 10, 2024 12:56
Proxmox create VM templates
#!/bin/bash
#Create template
#args:
# vm_id
# vm_name
# file name in the current directory
function template_exists() {
qm list | grep -w $1 &> /dev/null
@labboy0276
labboy0276 / docker-destroy-all.sh
Last active October 5, 2023 15:40
Purge all Docker Containers & Lando Cache
#!/bin/bash
echo 'Stopping Containers'
# Stop all containers
containers=`docker ps -a -q`
if [ -n "$containers" ] ; then
docker stop $containers
fi
echo 'Deleting Containers'
@BadmanBarista
BadmanBarista / README.md
Last active August 9, 2024 09:49
Theme to hide the blue paved cycleways or make them thinner on Wahoo Bolt v2

IMPORTANT: THE FILES IN THIS GIST NO-LONGER WORK WITH RECENT UPDATES TO THE BOLT FIRMWARE.

SEE THIS REPOSITORY FOR FILES THAT DO https://github.com/BadmanBarista/wahoo-vtm-themer

There are a number of links floating around for this gist, so I will leave it here so people can find the new repo.

NOTE: I've found that outside my city, there are some actual important paths that this hack will hide. So I've provided an alternative file vtm-elemnt-THIN.xml. This makes the blue cyclepaths really thin rather than removing them entirely, just use it instead and remove the -THIN from the name.

There are three versions of the vtm-elemnt.xml file:

  • vtml-elemnt-DEFAULT.xml is the default from the BoltApp.apk (version 12513)
@Intyre
Intyre / README.md
Last active May 9, 2024 08:52
Wahoo VTM Rendering theme

Wahoo VTM Map rendering

The Bolt2 uses the VTM rendering by default.

On the Other devices you can enable it by creating a file on the device with the name "cfg_BHomeActivity_VtmMaps" it will use the new rendering method. Another file with the name "cfg_MapPanZoom" enables panning and zooming on the map.

Custom themes

Create a new file in "maps/vtm-elemnt" with the name "vtm-elemnt.xml". You can copy the latest theme from https://gist.github.com/Intyre/7494d5c6c86b5bc60ce4d03b9cfce2df

@robhrt7
robhrt7 / MySQL_5-7_macOS.md
Last active December 23, 2025 00:39 — forked from nrollr/MySQL_macOS_Sierra.md
Install MySQL 5.7 on macOS using Homebrew

This is a fork of original gist https://gist.github.com/nrollr/3f57fc15ded7dddddcc4e82fe137b58e, with slight changes on pointing to 5.7 version branch, instead of 8 (latest default of MySQL in Hombrew).

Install MySQL 5.7 on macOS

This procedure explains how to install MySQL using Homebrew on macOS (Sierra 10.12 and up)

Install Homebrew

  • Installing Homebrew is effortless, open Terminal and enter :
    $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Note: Homebrew will download and install Command Line Tools for Xcode 8.0 as part of the installation process.
@anwas
anwas / multiple-php.txt
Last active December 14, 2023 11:03
[Multiple PHP versions on Ubuntu] #php #dev #ispconfig
## Add repository
### https://launchpad.net/%7Eondrej/+archive/ubuntu/php
### https://launchpad.net/~ondrej/+archive/ubuntu/apache2
sudo add-apt-repository ppa:ondrej/php
sudo add-apt-repository ppa:ondrej/apache2
sudo apt-get update
sudo apt-get dist-upgrade
@rhukster
rhukster / sphp.sh
Last active January 6, 2026 10:00
Easy Brew PHP version switching (Now moved to https://github.com/rhukster/sphp.sh)
#!/bin/bash
# Creator: Phil Cook
# Modified: Andy Miller
#
# >>> IMPORTANT: Moved to: https://github.com/rhukster/sphp.sh
# >>> Kept here for legacy purposes
#
osx_major_version=$(sw_vers -productVersion | cut -d. -f1)
osx_minor_version=$(sw_vers -productVersion | cut -d. -f2)
osx_patch_version=$(sw_vers -productVersion | cut -d. -f3)
@blackgate
blackgate / mbp2011-disable-amd-gpu.md
Last active June 11, 2025 10:32
Macbook Pro 2011 - Disable AMD GPU
@davidvasandani
davidvasandani / gist:e9508512d66825cbff7af2d57b69c0f2
Last active February 4, 2026 06:33
Learning How to Learn notes
Learning How To Learn
Module 1 - What is Learning
Focused/Diffuse Modes Thinking
- Obviously ‘focused’ is when you’re concentrating. Direct approach to solving familiar problems.
- Focused: thoughts move through nicely-paved road of familiar notions (neural pattern looks very tight and directed).
- encompasses rational, sequential, analytical approaches to thinking
- Diffuse: More of a search function neural pattern. Thoughts move widely. More of a broad/big-picture perspective trying to connect ideas from different places.
- We’re always either in focused or diffuse mode of thinking.