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 | |
| # bootstrap.sh — full machine bootstrap for thetanil/resto | |
| # | |
| # Usage (store this in your password manager with real values): | |
| # GH_TOKEN=ghp_xxxx VAULT_PASS=hunter2 bash <(curl -LsSf https://gist.githubusercontent.com/thetanil/REPLACE_WITH_GIST_ID/raw/bootstrap.sh) | |
| # | |
| # GH_TOKEN — fine-grained GitHub token with read-only access to thetanil/resto | |
| # VAULT_PASS — ansible-vault password; written to ~/.vaultpass (chmod 600) | |
| set -euo 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
| 104.104.77.88 | |
| 142.251.33.202 | |
| 13.209.152.196 | |
| 35.80.127.232 | |
| ngfts.lege.com | |
| ngfts.lge.com | |
| lge.com | |
| us.ad.lgsmartad.com | |
| de.ad.lgsmartad.com | |
| lgad.cjpowercast.com |
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
| local top = [[ | |
| <!DOCTYPE html> | |
| <html lang=en> | |
| <head> | |
| <link rel="icon" href="data:;base64,iVBORw0KGgo="> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta name="description" content="description"> | |
| <style> |
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/python3 | |
| __author__ = "Andrey Zamaraev (a5kin)" | |
| import math | |
| import random | |
| import cairo | |
| import numpy as np |