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 | |
# vps-check.sh — Quick, human-readable health/config snapshot for Ubuntu VPS | |
# Usage: ./vps-check.sh [--no-color] [--quick] | |
# --no-color : disable ANSI colors | |
# --quick : skip slower checks (upgradeable packages, external IP) | |
set -euo pipefail | |
# ------------------------------- Styling ------------------------------------ | |
USE_COLOR=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
// | |
// Modified code & fixed variable name, from Elliott Kember's Fast Gradient in Soulmate | |
// https://editor.soulmatelights.com/gallery/988-fast-gradient | |
// | |
#include <FastLED.h> | |
#define NUM_LEDS 192 | |
#define kMatrixHeight 24 | |
#define kMatrixWidth 8 |