Skip to content

Instantly share code, notes, and snippets.

View kenichi-shibata's full-sized avatar

Kenichi Shibata kenichi-shibata

View GitHub Profile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@kenichi-shibata
kenichi-shibata / jwtRS256.sh
Created September 27, 2021 14:21 — forked from ygotthilf/jwtRS256.sh
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: debug
name: debug
spec:
replicas: 1
selector:
matchLabels:
@kenichi-shibata
kenichi-shibata / purge-css-cloudflare.sh
Created January 24, 2021 15:50 — forked from patmigliaccio/purge-css-cloudflare.sh
Executes cURL to purge the cache on Cloudflare for a specified set or all files (requires config)
#!/bin/sh
# Author: Pat Migliaccio <[email protected]>
# License: MIT
EMAIL="<Acct_Email>"
ZONE="<Zone_ID>"
API_KEY="<API_Key>"
DATA="{ \"files\": [\"https://example.com/css/style.css\"] }"
@kenichi-shibata
kenichi-shibata / umbrella
Created January 21, 2021 22:04 — forked from mcguinness/umbrella
OpenDNS umbrella start/stop script for Mac OS X. This makes it easy to turn umbrella off temporarily, or get its status.
#!/usr/bin/env bash
# Quinn Comendant <[email protected]>
# https://gist.github.com/quinncomendant/3be731567e529415d5ee
# Since 25 Jan 2015
# Version 1.1
CMD=$1;
if [[ `id -u` = 0 ]]; then
@kenichi-shibata
kenichi-shibata / kubectl-multi-version-brews.md
Last active July 1, 2020 09:34 — forked from rdump/kubectl-multi-version-brews.md
kubectl multi-version brews (kubernetes-cli formula)

kubectl multi-version brews

We need to run multiple versions of kubectl for compatibility with various kubernetes clusters.

It's a bit easier to get and use multiple versions of kubectl using Homebrew than it is using Macports.

With brew, it's simple to:

  • Install a bunch of versions of kubectl (in the kubernetes-cli Formula)
  • Switch between them as needed
@kenichi-shibata
kenichi-shibata / jq-cheetsheet.md
Created May 26, 2020 16:57 — forked from olih/jq-cheetsheet.md
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@kenichi-shibata
kenichi-shibata / go_file_print.go
Created April 6, 2020 09:51 — forked from limboinf/go_file_print.go
golang print file content
//打印文件内容
package main
import (
"bufio"
"bytes"
"fmt"
"os"
"io"
"path/filepath"
@kenichi-shibata
kenichi-shibata / download.go
Created April 6, 2020 09:51 — forked from cnu/download.go
Download files in Go
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {
@kenichi-shibata
kenichi-shibata / download.go
Created April 6, 2020 09:51 — forked from cnu/download.go
Download files in Go
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func main() {