Skip to content

Instantly share code, notes, and snippets.

View komura-c's full-sized avatar
:shipit:

Yuki Ishii komura-c

:shipit:
View GitHub Profile
curl -v -H "Authorization: token <your token>" https://api.github.com/user/issues
@komura-c
komura-c / gist:1f8d904e7951ef03a83cd157451d57da
Created November 29, 2021 06:02
Mac、5GB以上のフォルダをリストアップ
sudo du -g -x -d 5 / | awk '$1 >= 5{print}'
find . -name "node_modules" -maxdepth 3 -ok rm -r {} \;
@komura-c
komura-c / gist:bccd3ece3df34447a9536fc64341fc73
Last active November 27, 2021 17:55
CurlでBotのレスポンスタイム計測
curl --user-agent "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" -s -o /dev/null -w "%{time_starttransfer}\n%{time_total}\n"