Skip to content

Instantly share code, notes, and snippets.

View fooock's full-sized avatar
🤖
as a service

Hello fooock

🤖
as a service
  • Mempool
View GitHub Profile
@evanscottgray
evanscottgray / docker_kill.sh
Last active November 7, 2023 03:40
kill all docker containers at once...
docker ps | awk {' print $1 '} | tail -n+2 > tmp.txt; for line in $(cat tmp.txt); do docker kill $line; done; rm tmp.txt
@Kixunil
Kixunil / efficient_reusable_taproot_addresses.md
Last active April 14, 2023 22:07
Efficient reusable Taproot addresses

Reusable taproot addresses

Abstract

This document proposes a new scheme to avoid address reuse while retaining some of the convenience of address reuse, keeping recoverability purely from Bitcoin time chain and avoiding visible fingerprint. The scheme has negligible average overhead.

Motivation

@santisaez
santisaez / kubernetes-digitalocean.tf
Created March 6, 2019 21:06
Example Terraform code to deploy a Kubernetes cluster at DigitalOcean
// Create a Kubernetes cluster in DigitalOcean
resource "digitalocean_kubernetes_cluster" "prueba" {
name = "prueba"
region = "lon1"
version = "1.11.7-do.3"
node_pool {
name = "prueba-pool"
size = "s-1vcpu-2gb"
node_count = 1