I hereby claim:
- I am walkure on github.
- I am walkure (https://keybase.io/walkure) on keybase.
- I have a public key ASAP0wUn4WWmpJG329WztmdG9GJFEzG9XsjKrK4sD2rFtgo
To claim this, I am signing this object:
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use utf8; | |
| use 5.014; | |
| use Encode; | |
| use JSON::PP qw/encode_json decode_json/; | |
| use Sys::Hostname; | |
| use IPC::Open2; |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use HTTP::Tiny; | |
| use Digest::MD5 'md5_hex'; | |
| my $prefix = 'cloudflare-origin'; | |
| updatelist('v4'); |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use HTTP::Tiny; | |
| my $prefix = 'cloudflare-origin'; | |
| die "ERR: requires one argument: output file path" unless scalar @ARGV == 1; |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use HTTP::Tiny; | |
| my $prefix = 'cloudflare-origin'; | |
| updatelist('v4'); |
| name: Show kustomized Application diff | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.yaml' | |
| - '**.yml' | |
| jobs: | |
| enumerate: | |
| name: Enumerate ArgoCD Applications |
| // Streamから一行読み込む関数 | |
| String readLine(Stream* s){ | |
| String ret; | |
| bool start = false; | |
| while(true){ | |
| int ch = s->read(); | |
| if(ch < 0){ | |
| return ret; | |
| } | |
| # home/end key | |
| bindkey "^[[H" beginning-of-line | |
| bindkey "^[[F" end-of-line | |
| # git | |
| autoload -Uz vcs_info | |
| setopt prompt_subst | |
| zstyle ':vcs_info:git:*' check-for-changes true | |
| zstyle ':vcs_info:git:*' stagedstr "%F{magenta}!" | |
| zstyle ':vcs_info:git:*' unstagedstr "%F{yellow}+" |
I hereby claim:
To claim this, I am signing this object:
| [alias] | |
| st = status | |
| co = checkout | |
| sw = switch | |
| br = branch | |
| cp = cherry-pick | |
| df = diff | |
| cm = commit -m | |
| unstage = reset -q HEAD -- | |
| uncommit = reset --mixed HEAD~ |
| #!/usr/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import imaplib | |
| from oauthlib.oauth2 import BackendApplicationClient | |
| import urllib.request | |
| import json | |
| import datetime |