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/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 |
#!/usr/bin/ruby | |
require 'net/imap' | |
require 'oauth2' | |
IMAP_SERV = 'imap.gmail.com' | |
IMAP_PORT = 993 | |
IMAP_SSL = true | |
folder = ARGV[0] || 'INBOX' | |
user = 'GMailアドレス' | |
pass = "XOAuth2 Refresh Token" |