# This is an empty template for configuring rtl_433. mqtt information will be
# automatically added. Create multiple files ending in '.conf.template' to
# manage multiple rtl_433 radios, being sure to set the 'device' setting. The
# device must be set before mqtt output lines.
# https://github.com/merbanan/rtl_433/blob/master/conf/rtl_433.example.conf
output mqtt://core-mosquitto:1883,user=homeassistant,pass=jnfdjnkdfjnkgfd,retain=1
report_meta time:iso:usec:tz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://raw.githubusercontent.com/recyclarr/recyclarr/master/schemas/config-schema.json | |
# A starter config to use with Recyclarr. Most values are set to "reasonable defaults". Update the | |
# values below as needed for your instance. You will be required to update the API Key and URL for | |
# each instance you want to use. | |
# | |
# Many optional settings have been omitted to keep this template simple. Note that there's no "one | |
# size fits all" configuration. Please refer to the guide to understand how to build the appropriate | |
# configuration based on your hardware setup and capabilities. | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get -y update | |
sudo apt-get -y install autoconf | |
sudo apt-get -y install build-essential libtool pkg-config \ | |
libasound2-dev libbluetooth-dev libdbus-1-dev \ | |
libglib2.0-dev libsbc-dev libdbus-glib-1-dev | |
git clone https://github.com/Arkq/bluez-alsa.git | |
cd bluez-alsa | |
autoreconf --install --force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Low moisture level detection & notification for all plant sensors | |
description: Regularly test all plant sensors with 'moisture' crossing | |
under their threshold. | |
domain: automation | |
input: | |
threshold: | |
name: Water warning level threshold | |
description: Water sensors below threshold are assumed to be low-Water (as | |
well as binary battery sensors with value 'on'). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default to PulseAudio | |
pcm.!default { | |
type pulse | |
hint { | |
show on | |
description "Default ALSA Output (Home Assistant PulseAudio Sound Server)" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
postgres: | |
ports: | |
- '5432:5432' | |
environment: | |
- POSTGRES_USER=mirror_db_user | |
- POSTGRES_PASSWORD=mirror_db_pass | |
volumes: | |
- ./mirror:/mirror |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# NEWLY ADDED BACKUP FUNCTIONALITY IS NOT FULLY TESTED YET, USE WITH CARE, ESPECIALLY DELETION | |
# Developed for DSM 6/7. Not tested on other versions. | |
# Steps to install | |
# Save this script in one of your shares | |
# Backup /usr/syno/share/nginx/ as follows: | |
# # cd /usr/syno/share/ | |
# # tar cvf ~/nginx.tar nginx | |
# Run this script as root |
-
Get into the unifios shell on your udm
unifi-os shell
-
Download udm-boot_1.0.5_all.deb and install it and go back to the UDM. The latest package will always be found at https://udm-boot.boostchicken.dev
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
synopkg stop pkgctl-SynoFinder | |
synopkg uninstall SynoFinder | |
synopkg stop pkgctl-ActiveInsight | |
synopkg uninstall ActiveInsight | |
synopkg stop pkgctl-HybrideShare | |
synopkg uninstall HybrideShare | |
synopkg stop pkgctl-ScsiTarget |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import requests | |
from datetime import datetime | |
# set environment variables | |
os.environ['USERNAME'] = 'python-demo' | |
os.environ['PASSWORD'] = 'claw30_bumps' | |
city = 'http://rachel.maykinmedia.nl/djangocase/city.csv' | |
hotel = 'http://rachel.maykinmedia.nl/djangocase/hotel.csv' |
NewerOlder