This file contains 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
systemctl stop pve-cluster | |
pmxcfs -l | |
rm -f /etc/pve/cluster.conf /etc/pve/corosync.conf | |
rm -f /etc/cluster/cluster.conf /etc/corosync/corosync.conf | |
rm /var/lib/pve-cluster/corosync.authkey | |
systemctl stop pve-cluster | |
rm /var/lib/pve-cluster/.pmxcfs.lockfile | |
systemctl start pve-cluster | |
systemctl restart pvedaemon | |
systemctl restart pveproxy |
This file contains 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 python | |
import os | |
import sys | |
import json | |
import requests | |
discount = 0.15 | |
def get_price(): | |
resp = requests.get('https://api.coingecko.com/api/v3/simple/price', params={'ids': 'ethereum', 'vs_currencies': 'usd'}) |
This file contains 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
# 1. generate keys with `lighthouse account validator new random N` | |
# 2. run `python deposit.py`, it skips the ones already deposited and deposits the rest | |
import json | |
import sys | |
from pathlib import Path | |
from getpass import getpass | |
from eth_utils import encode_hex, decode_hex | |
from web3 import Web3 | |
from web3.middleware import construct_sign_and_send_raw_middleware |
This file contains 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
import asyncio | |
from concurrent import futures | |
import functools | |
import inspect | |
import threading | |
from grpc import _server | |
def _loop_mgr(loop: asyncio.AbstractEventLoop): |
Originally did this research during my work for Bitwyre. I'm now open-sourcing this and hope this helps anyone who finds it, please let me know by commenting if this did help you!
The access_token
produced by Auth Server (a token grant OAuth2.0) is actually a JWT token itself, but is using a different length and algorithm than your typical JWT.
It is using RS256
rather that the common HS256
algo.
This file contains 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
NS= | |
kubectl get pods -n $NS --no-headers -o custom-columns=":metadata.name" | xargs kubectl -n $NS delete pod |
This file contains 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
NAMESPACE=replace-me | |
kubectl -n ${NAMESPACE} delete "$(kubectl api-resources --namespaced=true --verbs=delete -o name | tr "\n" "," | sed -e 's/,$//')" --all |
This file contains 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
kubectl get pods --no-headers -o custom-columns=":metadata.name" | |
#kubectl get pods --template '{{range .items}}{{.metadata.name}}{{"\n"}}{{end}}' | |
#kubectl get pods -o=name |