environment=env-0x3135
πΊπ¦
This file contains hidden or 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
# Trying to do a PID for the daikin | |
# | |
# This is a WIP prototype. Only heating was tested. | |
# Using log.error because I can't seem to be able to find how to read other log levels. | |
from random import choices | |
ENABLED = True # Disabled if False. If true, the PID takes over when the Daikin is on. | |
target_temp = 22.5 |
This file contains hidden or 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: Bathroom Humidity Exhaust Fan | |
description: > | |
# πΏ Bathroom Humidity Exhaust Fan | |
**Version: 2.6** | |
Step into the future of freshness - customize it your way and experience the convenience of automated humidity control! πΏπΏ | |
This file contains hidden or 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
# explicitly define host-ip mappings | |
address=/myapp.local/172.16.1.2 | |
# dnsmasq entries are always wildcard entries, so this maps both myapp.local and *.myapp.local | |
# (yes, it's fine for this to be your entire dnsmasq config. the defaults are pretty sensible) |
-
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager brew install virt-viewer
-
Once that's installed should be able make a call
remote-viewer
with a pve-spice.vv file downloaded from proxmox web interface
Find the proper driver at the NVidia website.
Note: Make sure to select "Linux 64-bit" as your OS
Hit the "Search" button.
This file contains hidden or 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
# Generate new CSR and private key | |
openssl req -out CSR.csr -new -newkey rsa:2048 -nodes -keyout privateKey.key | |
# Generate new self-signed certificate | |
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout privateKey.key -out certificate.crt | |
# Generate a new CSR from existing private key | |
openssl req -out CSR.csr -key privateKey.key -new | |
# Generate new CSR from certificate (must have private key) |
This file contains hidden or 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
# SMA Speedwire interpreter | |
# | |
# This little script interprets SMA's speedwire as multicasted from the Sunny Home Manager 2 | |
# and will print out the energy flow total, and for each phase | |
import socket | |
import struct | |
MULTICAST_IP = "239.12.255.254" | |
MULTICAST_PORT = 9522 |
Note: This gist may be outdated, thanks to all contributors in comments.
adb
is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
Don't hesitate to read comments, there is useful tips, thanks guys for this !
NewerOlder