Skip to content

Instantly share code, notes, and snippets.

View kyanny's full-sized avatar

Kensuke Nagae kyanny

View GitHub Profile
@kyanny
kyanny / gist:227a6a5e54abf3a0db95b6160260dd5e
Last active May 2, 2024 15:36
Prevent "`winsize': Inappropriate ioctl for device (Errno::ENOTTY)" error with irb bundled with ruby 3.1.2 https://github.com/ruby/irb/pull/353
❯ ruby -v
ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x86_64-darwin21]
❯ irb -v
irb 1.4.1 (2021-12-25)
❯ echo n=1 | irb | cat
Switch to inspect mode.
n=1
/Users/kyanny/.rbenv/versions/3.1.2/lib/ruby/3.1.0/irb/input-method.rb:43:in `winsize': Inappropriate ioctl for device (Errno::ENOTTY)
@kyanny
kyanny / fib.exs
Created March 13, 2012 01:27
Elixir fibonacci #1
defmodule Fib do
def fib(0) do 0 end
def fib(1) do 1 end
def fib(n) do fib(n-1) + fib(n-2) end
end
IO.puts Fib.fib(10)
alias curlh="curl -s -L -D - -o /dev/null $@"
alias wgeth="wget -S -q -O /dev/null $@"
alias lwph="lwp-request -deS $@"
@kyanny
kyanny / setup-actions-runner-controller.md
Created April 26, 2022 10:28
How to setup actions-runner-controller for testing
# Usage: gq query.txt
gq() {
if [ ! -f $1 ]; then
echo "ERROR: No such file $1"
return
fi
local query=$(cat $1)
bash -xc "$(printf "gh api graphql -f query='%s'" "$query")"
}
@kyanny
kyanny / 01_base.t
Created February 9, 2010 14:32
JSTAPd study
use JSTAPd::Suite;
sub client_script {
return <<'DONE';
tests(6);
ok(1, 'ok 1');
ok(!0, 'ok 0');
is('test', 'test', 'is');
isnt('test', 'dev', 'isnt');
like('test', new RegExp('es'), 'like');
lcut() {
local input
if [ -p /dev/stdin ]; then
input=$(cat -)
else
input=$(cat $1)
shift
fi
echo $input | perl -slane '@pairs = /(\w+=?(?:"[^"]*"|[^\s]*))/g;
@keys = split /\s+/, $args;
#!/bin/bash
UUID=$(uuidgen)
WORKDIR="$HOME/Desktop/$UUID"
mkdir -p "$WORKDIR"
osascript -e 'activate application "Slack"'
sleep 0.5
i=0
#!/bin/bash
curl -sLO https://github.com/mike-engel/jwt-cli/releases/latest/download/jwt-linux.tar.gz
tar xzf jwt-linux.tar.gz
curl -sLO https://github.com/stedolan/jq/releases/latest/download/jq-linux64
mv jq-linux64 jq
chmod +x jq
app_id=157615
private_key_file=my-tiny-github-app.2021-12-09.private-key.pem
#!/bin/bash
host=$1
if [[ -z $host ]]; then
echo "Usage: bash $0 HOSTNAME"
exit 1
fi
echo | openssl s_client -servername $host -connect $host:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > certificate.crt