This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
./all-files.txt | |
./sub1 | |
./sub1/foo.toml | |
./sub1/foo.json | |
./sub1/bar.json | |
./sub1/foo.yaml | |
./sub1/sub2 | |
./sub1/sub2/foo.blarg | |
./sub1/sub2/blarg.yamllllll |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python2 | |
# <bitbar.title>Escaped-Py2</bitbar.title> | |
# <bitbar.version>v0.0.1</bitbar.version> | |
# <bitbar.author.github>ianfoo</bitbar.author.github> | |
# <bitbar.desc>Echo escaped chars to stdout</bitbar.desc> | |
print("py2: :zzz: P\xe5 tide \xe5 logge av") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ xbar-install/xbar-main/app/build/darwin/desktop/xbar ; exit; | |
fatal error: unexpected signal during runtime execution | |
[signal SIGSEGV: segmentation violation code=0x1 addr=0x44 pc=0x7fff68704e05] | |
runtime stack: | |
runtime.throw(0x44ba531, 0x2a) | |
/usr/local/go/src/runtime/panic.go:1117 +0x72 | |
runtime.sigpanic() | |
/usr/local/go/src/runtime/signal_unix.go:718 +0x2ef |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -eEuo pipefail | |
# Prep source code | |
unzip xbar-main.zip | |
git clone https://github.com/wailsapp/wails.git | |
# Install lastest wails prerelease | |
cd wails |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Drop this in your path and make it executable to install the latest | |
# macOS version of Go from golang.org/dl. | |
set -Eeuo pipefail | |
go-get-latest-version-httpie () { | |
http -F golang.org/VERSION m==text | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"io" | |
"math/rand" | |
"time" | |
"github.com/sirupsen/logrus" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ianbook% | |
ianbook% http -h :3030 s==50 | |
HTTP/1.1 200 OK | |
Content-Length: 0 | |
Date: Sun, 10 Nov 2019 10:33:32 GMT | |
ianbook% http -h :3030 s==200 | |
http: error: ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response')) while doing GET request to URL: http://localhost:3030/?s=200 | |
ianbook% http -h :3030 s==20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bobjects: | |
limit: 100 | |
foo: | |
blatz: quux |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"bobjects" = { | |
"limit" = 100 | |
} | |
"foo" = { | |
"blatz" = "quux" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
minikube start --extra-config=apiserver.runtime-config=apps/v1beta1=true,apps/v1beta2=true,extensions/v1beta1/daemonsets=true,extensions/v1beta1/deployments=true,extensions/v1beta1/replicasets=true,extensions/v1beta1/networkpolicies=true,extensions/v1beta1/podsecuritypolicies=true |