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
| 0.0.0.0 zen.yandex.ru | |
| 0.0.0.0 www.yandex.ru | |
| 0.0.0.0 yandex.ru | |
| 0.0.0.0 yandex.org | |
| 0.0.0.0 yandex.net | |
| 0.0.0.0 yandex.net.ru | |
| 0.0.0.0 yandex.com.ru | |
| 0.0.0.0 yandex.ua | |
| 0.0.0.0 yandex.com.ua | |
| 0.0.0.0 yandex.by |
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
| { | |
| "swagger": "2.0", | |
| "info": { | |
| "title": "Untitled Paw Document", | |
| "version": "v0.0.0" | |
| }, | |
| "host": "cloudsieb.timetrackenterprise.com", | |
| "schemes": [ | |
| "https" | |
| ], |
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: Climate Alert | |
| description: Notification | |
| domain: automation | |
| input: | |
| climate: | |
| name: Climate Entity | |
| selector: | |
| entity: | |
| domain: climate |
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
| #include "EspMQTTClient.h" | |
| #define PIN_RED 23 // GIOP23 | |
| #define PIN_GREEN 22 // GIOP22 | |
| #define PIN_BLUE 21 // GIOP21 | |
| EspMQTTClient client( | |
| "MY_WIFI_SSID", | |
| "MY_WIFI_PASSWORD", | |
| "MY_BROKER_IP / HOSTNAME", |
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
| void onConnectionEstablished() { | |
| client.subscribe("zigbee2mqtt/Box Button", [](const String& payload) { | |
| blink(); | |
| }) | |
| } |
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
| docker pull louislam/uptime-kuma:1 | |
| docker stop uptime-kuma | |
| docker rm uptime-kuma | |
| docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1 |
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
| docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1 |
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
| version: '3.7' | |
| # Any top-level key starting with x- in a Docker Compose file will be | |
| # ignored | |
| x-backend: &backend # yaml anchor definition | |
| image: ${APP_IMAGE}:${APP_TAG} | |
| volumes: | |
| - media_root:/app/media | |
| environment: | |
| # PAPERMERGE__<section>__<variable> | |
| - PAPERMERGE__MAIN__SECRET_KEY=${SECRET_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
| { | |
| /** | |
| * Better Defaults | |
| **/ | |
| "editor.copyWithSyntaxHighlighting": false, | |
| "editor.quickSuggestions": { | |
| "strings": true | |
| }, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "workbench.editor.enablePreview": false, |
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
| cloudSettings |