Skip to content

Instantly share code, notes, and snippets.

View dendisuhubdy's full-sized avatar
🚀
at the speed of light

Dendi Suhubdy dendisuhubdy

🚀
at the speed of light
View GitHub Profile
@dendisuhubdy
dendisuhubdy / remove_cluster_proxmox.sh
Created June 5, 2020 04:17
Remove Cluster Proxmox
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
@banteg
banteg / model_flip_eth_a.py
Last active July 31, 2022 18:48
boilerplate makerdao auction keeper model using python
#!/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'})
We couldn’t find that file to show.
@banteg
banteg / deposit.py
Last active July 31, 2022 18:48
eth2 mass deposit for lighthouse
# 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
@dendisuhubdy
dendisuhubdy / grpc_asyncio.py
Created December 27, 2019 07:30 — forked from mmellison/grpc_asyncio.py
gRPC Servicer with Asyncio (Python 3.6+)
import asyncio
from concurrent import futures
import functools
import inspect
import threading
from grpc import _server
def _loop_mgr(loop: asyncio.AbstractEventLoop):

This is a work in progress, proceed with caution

Install Proxmox and a Ubuntu VM with Portainer to manage docker containers

Setup Proxmox

  1. Install Proxmox 6.X iso I selected 2 drives in Raid 1 mirror
  2. Console/SSH into Proxmox
  3. nano /etc/apt/sources.list
@nevrending
nevrending / pyjwt.md
Last active January 25, 2023 11:54
JWT Authentication in Python

Notice

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!

JWT on Python

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.

@BitProcessor
BitProcessor / k8s_delete_pods_ns.sh
Created October 9, 2019 18:15
K8S: delete pods in namespace (restart)
NS=
kubectl get pods -n $NS --no-headers -o custom-columns=":metadata.name" | xargs kubectl -n $NS delete pod
@BitProcessor
BitProcessor / k8s_delete_all_in_namespace.sh
Created October 8, 2019 12:36
K8S: delete all resources in a given namespace
NAMESPACE=replace-me
kubectl -n ${NAMESPACE} delete "$(kubectl api-resources --namespaced=true --verbs=delete -o name | tr "\n" "," | sed -e 's/,$//')" --all
@BitProcessor
BitProcessor / k8s_get_pods.sh
Created October 1, 2019 08:16
K8S: Get pod names
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