Yes, this beautiful thing:
Home Assistant introduces the Energy Dashboard here.
https://www.consuwijzer.nl/doe-uw-melding-bij-acm-consuwijzer | |
Signify heeft aangekondigd het gebruik van een account (login/password) af te dwingen voor het gebruik van de app, zoals deze hoort bij hun Philips Hue lampen (Zigbee). | |
Zonder account kunnen lampen en hub straks - ook lokaal - naar verwachting niet meer bediend of geinstalleerd worden via andere wijze (dan schakelaar). | |
De aangevoerde reden is volgens Signify "veiligheid". Dit speelt bij lokaal gebruik echter geheel geen rol en is een drogreden. | |
Het altijd afdwingen van een inlog is daarmee niet nodig; daarnaast kan Signify functionaliteiten fors gaan veranderen, zoals de software van lampen en hub aanpassen die inloggen vereist, waar dit nu niet het geval is. | |
Deze actie van Signify komt feitelijk neer op gijzeling, het onnodig overdragen van gebruiks/gebruikersgegevens (tbv marketing) en onrechtmatig eenzijdig veranderen van functionaliteit ná aankoop van het/de product(en). | |
Als consument kun je hier niets tegen doen, het wordt als een voldon |
Yes, this beautiful thing:
Home Assistant introduces the Energy Dashboard here.
#!/bin/ash | |
# | |
# Author: Bart Koppers | |
# License: GPL v3 - https://www.gnu.org/licenses/gpl-3.0.html | |
# | |
# Purpose: | |
# - easy & safe relocation of Synology packages to a different volume | |
# Relies on: | |
# - synoservice, the SynoService Tool Help (Version 25426), | |
# see CLI Administrator Guide for Synology NAS |
alias: Notify op warmste moment van dag | |
description: Melding sturen op warmste moment van de dag | |
trigger: | |
- platform: state | |
id: max-temp-of-the-day-reached | |
to: 'on' | |
#from: 'off' | |
entity_id: binary_sensor.time_max_temperature_reached | |
action: | |
- service: notify.notify |
alias: Notify op koudste moment van dag | |
description: Melding sturen op koudste moment van de dag | |
trigger: | |
- platform: state | |
id: max-temp-of-the-day-reached | |
to: 'on' | |
entity_id: binary_sensor.time_min_temperature_reached | |
action: | |
- service: notify.notify | |
data: |
################## | |
# Templates BJK # ==> https://www.home-assistant.io/integrations/template/ | |
################## | |
template: | |
- binary_sensor: | |
- name: "Time Max Temperature Reached" # time_max_temperature_reached | |
state: > | |
{{ as_timestamp(now())|timestamp_custom('%H:%M')|string() | |
== states('sensor.time_max_temperature')|string() }} | |
- name: "Time Min Temperature Reached" # time_min_temperature_reached |
# SCRAP/UNFINISHED | |
#Source: | |
#Comment on https://crosstalksolutions.com/definitive-guide-to-hosted-unifi-2021/ | |
#By Binky | |
#Using info here: https://ryan.lovelett.me/posts/letsencrypt-cockpit/ | |
#I created the file: /etc/letsencrypt/renewal-hooks/post/001-restart-cockpit.sh | |
#With the provided contents, changing ‘$FQDN’ with my FQDN for the instance and removing the ‘chown’ statement: | |
# ——————————————————————————– |
## Trafik Multi Network Deployment | |
1. Create Traefik network | |
` # docker network create --driver=bridge --attachable --internal=false traefik ` | |
2. Edit `traefik2/docker-compose.yml` | |
- Change ACME email | |
- Change --providers.docker.network=traefik value if you created different network then `traefik` |
# docker network create nextcloud | |
NOTES: | |
1. [email protected] | |
2. TRUSTED_PROXIES values based on your 'nexcloud network' | |
3. remove traefik.http.middlewares.nextcloud.headers.contentSecurityPolicy and | |
traefik.http.middlewares.nextcloud.headers.customFrameOptionsValue if you don't want to allow iframe your domain | |
3 | |
# cat docker-compose.yml |
#!/bin/ash | |
# https://bit.ly/3ja5CGi | |
# read https://xpenology.com/forum/topic/28183-running-623-on-esxi-synoboot-is-broken-fix-available/ | |
# *Problem* | |
# - In a VM that you want to upgrade to 6.2.3 | |
# - You get unexplained checsum-errors | |
# *Solution* | |
# copy this script (FixSynoboot.sh) to /usr/local/etc/rc.d | |
# chmod 0755 /usr/local/etc/rc.d/FixSynoboot.sh | |
# |