Being aesthetically displeased with jpeg artifacts on @TfTHacker's avatar, I found similar image, spent half an hour in GIMP and got a decent hi-res version:
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
const source = 'Math.clamp(1, 2, 3)'; | |
const config = { | |
presets: [ | |
[ | |
'@babel/preset-env', | |
{ | |
'modules': false, | |
'corejs': '3.18.0', | |
'useBuiltIns': 'usage', | |
'shippedProposals': true, |
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
key:"string value" | |
int_key:22 |
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
PAGE=0 | |
while true; do | |
PAGE=$(($PAGE + 1)) | |
REPOS=$(curl -s -H "Authorization: token $GITHUB_TOKEN" "https://api.github.com/user/repos?visibility=all&page=$PAGE" | jq -r '.[].ssh_url') | |
if [ -z "$REPOS" ]; then | |
break; | |
fi | |
for REPO in $REPOS; do | |
git clone --no-checkout "$REPO" | |
done |
OlderNewer