- Updated on May 29 to accommodate etcd container not having
/bin/sh
available anymore.
curl -sL https://get.rke2.io | sh
systemctl daemon-reload
systemctl start rke2-server
*.0.devklarka.cz | |
*.05.cz | |
*.0e.cz | |
*.0oo.cz | |
*.1.devklarka.cz | |
*.10.devklarka.cz | |
*.1001hry.cz | |
*.100letvyroci.cz | |
*.100py.cz | |
*.11.devklarka.cz |
require 'net/https' | |
require 'json' | |
auth={ | |
email: 'mujmail', | |
password: 'mojeheslo' | |
} | |
http = Net::HTTP.new('admin.vshosting.cloud', 443) | |
http.use_ssl = true |
Minio is an object storage server compatible with the S3 protocol. Head to https://minio.io/ to learn more.
Hint: You might want to use MINIO_WORM=on
to pretect against accidental or malicious deletion of your backups.
Since RELEASE.2018-10-18T00-28-58Z minio supports seperate users with attached IAM policies. Instead of (or additionally to) using MINIO_WORM=on
you could create a new user and attach a writeonly policy:
Adapted from caddy systemd Service Unit
The provided file should work with systemd version 219 or later. It might work with earlier versions.
The easiest way to check your systemd version is to run systemctl --version
.
We will assume the following:
#!/usr/bin/python | |
el_cost_usd = 0.035 | |
# network difficulty | |
ndiff = 15958652328578.91 | |
block_reward = 6.25 | |
# S9 with AB enabled consumes ~13% less energy (assuming 4-midstates enabled for AB) | |
# Below is a favorite overclocked configuration (15.6 Th/s , 1331 W) | |
efficiency_w_per_ths = 85.3 | |
# S9: heavily downclocked | |
# efficiency_w_per_ths = 71 |
Charts: | |
name: foo | |
repo: foo.com | |
tags: realtag |
This guide is unmaintained and was created for a specific workshop in 2017. It remains as a legacy reference. Use at your own risk.
Workshop Instructor:
This workshop is distributed under a CC BY-SA 4.0 license.
# The initial version | |
if [ ! -f .env ] | |
then | |
export $(cat .env | xargs) | |
fi | |
# My favorite from the comments. Thanks @richarddewit & others! | |
set -a && source .env && set +a |