-
Ensure a docker-compose.yml file exists inside a
codimddirectory. -
Put the restore.sh script near it.
-
Follow the script below:
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
| .snowflakes-container { | |
| overflow: hidden; | |
| filter: drop-shadow(0 0 10px #65b2e4); | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0 | |
| } |
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
| .lightrope { | |
| text-align: center; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| position: absolute; | |
| z-index: 9999; | |
| margin: -17px 0 0 0; | |
| padding: 0; | |
| pointer-events: none; | |
| width: 100%; |
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
| # Update: | |
| # I am moving this script back to its original home as part of the AzuraCast repository: | |
| # https://github.com/AzuraCast/radio-video-stream | |
| # -- | |
| # See updated instructions there. |
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
| devices: ({ | |
| name: "MX Anywhere 3"; | |
| hiresscroll: { | |
| hires: true; | |
| invert: false; | |
| target: false; | |
| up: { | |
| mode: "Axis"; | |
| axis: "REL_WHEEL_HI_RES"; |
Alle Daten die man benötigt sind schon im Station-Response drinnen. In diesem Beispiel nehmen wir einfach die Daten daraus und wiederholen den Aufruf alle 1,5 Sekunden um aktuell zu bleiben.
Das Beispiel besteht aus zwei Dateien. Einem HTML-File namens index.html. Dieses definiert nur eine sehr grobe Grundstruktur in der die Daten dargestellt werden. Das zweite File heißt azura_beispiel.js und definiert die Logik, die die Daten abruft und darstellt.
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
| #!/usr/bin/env bash | |
| ### Bash Environment Setup | |
| # http://redsymbol.net/articles/unofficial-bash-strict-mode/ | |
| # https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html | |
| # set -o xtrace | |
| set -o errexit | |
| set -o errtrace | |
| set -o nounset | |
| set -o pipefail |
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
| set nocompatible | |
| set number | |
| " show invisible characters: | |
| set list | |
| set listchars=tab:▸\ ,eol:¬ | |
| set listchars+=trail:˙ | |
| " allow buffer changes without saving: |
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
| #!/bin/sh | |
| # Nagios shoutcast plug-in | |
| # By Juliano Jeziorny (djkadu@gmail.com) | |
| # Rev 0.1 | |
| # 23/11/2010 | |
| # ********************************************************* | |
| # Modified and adapted for Shoutcast 2 to parse xml stats | |
| # and detect unconnected source | |
| # Rev 0.2 by Keijo D. Putt | |
| # 07-Dec-2017 |
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 "znc/main.h" | |
| #include "znc/User.h" | |
| #include "znc/Nick.h" | |
| #include "znc/Modules.h" | |
| #include "znc/Chan.h" | |
| #include "znc/IRCNetwork.h" | |
| #include <string.h> | |
| using std::pair; | |
| using std::map; |
NewerOlder