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 python3 | |
| import socket | |
| import binascii | |
| AC_IP = "192.168.10.1" # Standard IP | |
| AC_PORT = 12414 | |
| TARGET_SSID = "" | |
| TARGET_PASSWORD = "" |
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
| <?php | |
| $host = $_ENV["DATABASE_ADDRESS"]; | |
| $database = $_ENV['MYSQL_DATABASE']; | |
| $user = $_ENV['MYSQL_USER']; | |
| $password = $_ENV['MYSQL_PASSWORD']; | |
| $table = $_ENV['DATABASE_TABLE']; | |
| $db = new mysqli($host, $user, $password, $database); | |
| if ($db->connect_errno) { |
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 node | |
| require(__dirname+"/processor-usage.js").startWatching(); | |
| var shouldRun = true; | |
| var desiredLoadFactor = .5; | |
| function blockCpuFor(ms) { | |
| var now = new Date().getTime(); | |
| var result = 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
| FROM php:7.2-apache | |
| ENV KOEL_DB_PASS=pass | |
| ARG KOEL_VERSION=v4.1.1 | |
| ARG MYSQL_ROOT_PASS=pass | |
| ARG DEPENDENCIES="\ | |
| build-essential \ |