environment=env-0x3135
| # 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 |
| 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! πΏπΏ | |
| #!/bin/bash | |
| SHA256_HASH="5bb4faffc8b35e2702b2ffa78e982b979d7b66db29bd55b0c58de8fa745df661" | |
| for i in {1..1000} | |
| do | |
| echo "Looking into page: $i" | |
| curl "https://registry.hub.docker.com/v2/repositories/apache/superset/tags/?page=$i" \ | |
| | jq '.results[] | select(.["images"][]["digest"] == "sha256:'${SHA256_HASH}'")' |
| # 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-viewerOnce 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.
| # 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) |
| # 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 |