I hereby claim:
- I am diversario on github.
- I am diversario (https://keybase.io/diversario) on keybase.
- I have a public key whose fingerprint is 550E 6997 3442 4812 1ED3 D22D 2764 461E CA81 0541
To claim this, I am signing this object:
| --- | |
| apiVersion: v1 | |
| kind: Namespace | |
| metadata: | |
| name: host-network | |
| labels: | |
| name: host-network | |
| --- | |
| apiVersion: v1 | |
| kind: Pod |
| provider "google-beta" { | |
| project = "${var.project_id}" | |
| region = "${var.region}" | |
| credentials = "${file("~/.gcloud/my-project-terraform.json")}" | |
| } | |
| variable "project_id" { | |
| default = "my-project" | |
| description = "GCP project ID" | |
| } |
| '{ InputSourceKind = "Keyboard Layout"; "KeyboardLayout ID" = 0; "KeyboardLayout Name" = "U.S."; }' '{ InputSourceKind = "Keyboard Layout"; "KeyboardLayout ID" = 19458; "KeyboardLayout Name" = RussianWin; }' '{ "Bundle ID" = "com.apple.CharacterPaletteIM"; InputSourceKind = "Non Keyboard Input Method"; }' '{ "Bundle ID" = "com.apple.KeyboardViewer"; InputSourceKind = "Non Keyboard Input Method"; }' '{ "Bundle ID" = "com.apple.50onPaletteIM"; InputSourceKind = "Non Keyboard Input Method"; }' '{ "Bundle ID" = "com.apple.inputmethod.TCIM"; "Input Mode" = "com.apple.inputmethod.TCIM.Pinyin"; InputSourceKind = "Input Mode"; }' '{ "Bundle ID" = "com.apple.inputmethod.TCIM"; InputSourceKind = "Keyboard Input Method"; }' '{ "Bundle ID" = "com.apple.inputmethod.ChineseHandwriting"; InputSourceKind = "Non Keyboard Input Method"; }' '{ "Bundle ID" = "com.apple.inputmethod.EmojiFunctionRowItem"; InputSourceKind = "Non Keyboard Input Method"; }' |
| # get all evicted pods in the cluster | |
| kubectl get pod --all-namespaces --field-selector status.phase=Failed --show-all -o json | jq -r '.items[] | select(.status.reason == "Evicted") | "\(.metadata.namespace)/\(.metadata.name)"' |
| yq -Mrj ' .envVars as $e | $e | keys | .[] | "-e \(.)=\($e[.]) "' deployment/values.yaml | |
| function envvars() { | |
| local selector=$1; shift | |
| local files=($@) | |
| if [[ -z $files ]]; then | |
| files="${selector}" | |
| selector=".envVars" | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| class MyNode: SKSpriteNode { | |
| // init et al | |
| deinit { | |
| print("MyNode \(name) destroyed.") | |
| } | |
| } |
| let SCREEN_SCALE = UIScreen.mainScreen().scale | |
| private let FAKE_PX_TO_M_RATIO: CGFloat = 80 | |
| let IMPULSE = sqrt( | |
| UIScreen.mainScreen().bounds.width * | |
| SCREEN_SCALE * SCREEN_SCALE / | |
| FAKE_PX_TO_M_RATIO | |
| ) * sqrt(SCREEN_SCALE) * 1.45 |
| import UIKit | |
| class ViewController: UIViewController { | |
| let tapGestureRecognizer: UITapGestureRecognizer! // make a variable to hold the recognizer | |
| @IBOutlet weak var girImage: UIImageView! // add an outlet for your image view | |
| override func viewDidLoad() { | |
| super.viewDidLoad() | |
| class Shared { | |
| static var data: Int! | |
| } |