BIOS: EC-ARB20A-1.15-T01
Proxmox VE: 7.3-1
| #!/bin/bash | |
| if [ "$(whoami)" != "root" ]; then | |
| echo "Run script as ROOT please. (sudo !!)" | |
| exit | |
| fi | |
| apt-get update -y | |
| apt-get install -t stretch -y php7.0-soap | |
| apt-get autoremove -y |
| EMSCRIPTEN_HOME = ~/Documents/inbox/emscripten | |
| PROJECT = myproject | |
| SOURCES = $(wildcard *.cc) $(wildcard *.c) | |
| OBJECTS = $(patsubst %.cc,%.o,$(patsubst %.c,%.o,$(SOURCES))) | |
| set-native: | |
| $(eval CXX := clang -x c++) | |
| $(eval CC := clang) | |
| $(eval CPPFLAGS := -g -O2 -DHAS_TR1) |
| #include <iostream> | |
| #include <fstream> | |
| #include <string> | |
| #ifdef EMSCRIPTEN | |
| #include <emscripten/emscripten.h> | |
| #endif | |
| namespace | |
| { |
| #include <iostream> | |
| #include <vector> | |
| #include <type_traits> | |
| #include <tuple> | |
| namespace sfinae | |
| { | |
| using success = std::true_type; | |
| using fail = std::false_type; |
| #include <chrono> | |
| #include <string> | |
| #include <sstream> | |
| #include <vector> | |
| #include <iostream> | |
| std::string to_string(const int i) | |
| { | |
| std::stringstream ss; | |
| ss << i; |
| import { Store } from "pullstate"; | |
| import { LocalStorage } from "@gt/gt-frontend/build/localStorage/LocalStorage"; | |
| import { get, pick, set } from "lodash"; | |
| interface IStoreWithValues<S> { | |
| key: string; | |
| store: Store<S>; | |
| values?: Array<keyof S>; | |
| deepValues?: string[]; | |
| } |
| /** | |
| * A type-safe high-order-component creator | |
| * that injects a prop named a given string, | |
| * with a type inferred by a given hook's | |
| * return value. | |
| * | |
| * Ex: | |
| * const Component = ({ name }) => { | |
| * return <>Hello {name}</>; | |
| * }; |
| //Script was produced by Dsetzer original can be found at https://gist.github.com/dsetzer | |
| //In the script panel in Bustabit create a new script. Copy the script below and paste it in to the script window on bustabit. | |
| //Please note this version will only give you past results and not future results. | |
| //The script has a save to file option, but this has never worked for me. | |
| var config = { | |
| span: { label: 'Previous Games', type: 'number', value: '100' }, | |
| outh: { label: 'Include Hashes', type: 'checkbox', value: false }, | |
| ocsv: { label: 'Download CSV', type: 'checkbox', value: true} | |
| }; |
| { | |
| "hosts": ["unix:///var/run/docker.sock", "tcp://0.0.0.0:2375"], | |
| "registry-mirrors": [], | |
| "insecure-registries": [ | |
| "172.16.197.20:5000" | |
| ] | |
| } |
BIOS: EC-ARB20A-1.15-T01
Proxmox VE: 7.3-1