class PubApi {
public:
virtual void doSomething() = 0;
static PubApi* Instance;
}
- Install dependencies required to build heimdall (https://github.com/Benjamin-Dobell/Heimdall/blob/master/.github/workflows/build.yml#L14)
- Now clone and compile heimdall with the patch from Benjamin-Dobell/Heimdall#478
cd /tmp
git clone https://github.com/Benjamin-Dobell/Heimdall.git
- Ensure that mailu runs on mysql as DB for easier SQL migrations
- Create temporary tables with the correct structure for mailu (remove where filter like
domain_id=4
oremail like "%@mydomain.com"
to dump all domains)
CREATE TABLE mailu_domain
select
cast(now() as date) as created_at,
null as updated_at,
'ispconfig_import' as comment,
domain as name,
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
Setting up pacman | |
gpg: /etc/pacman.d/gnupg/trustdb.gpg: trustdb created | |
gpg: no ultimately trusted keys found | |
gpg: starting migration from earlier GnuPG versions | |
gpg: porting secret keys from '/etc/pacman.d/gnupg/secring.gpg' to gpg-agent | |
gpg: migration succeeded | |
gpg: Generating pacman keyring master key... | |
gpg: key 23A3588614ECF09B marked as ultimately trusted | |
gpg: directory '/etc/pacman.d/gnupg/openpgp-revocs.d' created | |
gpg: revocation certificate stored as '/etc/pacman.d/gnupg/openpgp-revocs.d/EF87C38EA3C6A657AF54A36323A3588614ECF09B.rev' |
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
esphome: | |
name: badlichttest | |
platform: ESP8266 | |
board: d1_mini | |
wifi: | |
ssid: "wiot" | |
password: "****" | |
domain: .wyraz.de |
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
#!/usr/bin/env python3 | |
import aioesphomeapi | |
import asyncio | |
async def main(): | |
loop = asyncio.get_running_loop() | |
cli = aioesphomeapi.APIClient(loop, "HOST-OR-IP", 6053, "API-PASSWORD-OR_EMPTY") | |
await cli.connect(login=True) |
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
/** | |
* Ein ESP8622 NodeMCU Develompent Board, welches Sensorwerte via MQTT verschickt | |
* http://frightanic.com/iot/comparison-of-esp8266-nodemcu-development-boards/ | |
* | |
* Umbau eines W132 Windsensors von ELV | |
* | |
* - Abtrennen des 433 MHZ-Senders, welcher mit 3 Leitungen (Schwarz, Rot, Blau) an der Logik-Platine angeschlossen ist | |
* - Anschließen des ESP-8266 | |
* - Schwarz -> GND | |
* - Rot -> 3.3V |
How to build helm from sources without installing golang and other stuff to your system?
-
Checkout helm git clone https://github.com/helm/helm.git
-
Build golang binaries it on docker
cd helm
docker run -it -v $(pwd):/go/src/k8s.io/helm golang
apt-get update
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
/** | |
* LED PWM mit HomeWizard Funkschalter | |
* D3 - input - 433 MHZ Transmitter | |
* D7 - output Mosfet (led) | |
*/ | |
#include <smartio.h> | |
#include <smartio_homewizard.h> | |
Bus bus; |
I have created an easier, well documented version of this in my blog at https://blog.wyraz.de/linux/deploying-rancher-server-standalone-behind-traefik-with-lets-encrypt-for-both/
NewerOlder