I hereby claim:
- I am ingcr3at1on on github.
- I am ingcr3at1on (https://keybase.io/ingcr3at1on) on keybase.
- I have a public key ASB40_Hnv7V-dkNq0UoyA2_unmUm919Vx1nOAcK7P-bwOgo
To claim this, I am signing this object:
| apiVersion: cert-manager.io/v1alpha2 | |
| kind: ClusterIssuer | |
| metadata: | |
| name: letsencrypt-prod | |
| namespace: cert-manager | |
| spec: | |
| acme: | |
| server: https://acme-v02.api.letsencrypt.org/directory | |
| email: <your email> |
| package internal | |
| import ( | |
| "context" | |
| "encoding/json" | |
| "fmt" | |
| "net/http" | |
| "os" | |
| "golang.org/x/oauth2" |
| package main | |
| import ( | |
| "bytes" | |
| "flag" | |
| "fmt" | |
| "os" | |
| "os/exec" | |
| "strconv" | |
| "strings" |
I hereby claim:
To claim this, I am signing this object:
| package stringsplus | |
| import ( | |
| "strings" | |
| ) | |
| // SplitX works similarly to strings.SplitN except instead of splitting into | |
| // a given number of strings it splits on the given index of the split string. | |
| func SplitX(s, sep string, x int) []string { | |
| return splitX(s, sep, 0, x) |
| #!/bin/sh | |
| sudo apt-get update | |
| sudo apt-get -y install python-software-properties | |
| sudo add-apt-repository -y ppa:bitcoin/bitcoin | |
| sudo apt-get update | |
| sudo apt-get -y install \ | |
| build-essential \ | |
| git \ | |
| libboost-all-dev \ |
| # Put this after quick fixes. | |
| ifdef RECOVERY_DEVICE_USES_CUSTPACK | |
| LOCAL_CFLAGS += -DRECOVERY_DEVICE_USES_CUSTPACK=true | |
| endif |