Skip to content

Instantly share code, notes, and snippets.

@sheepla
Last active December 30, 2023 06:17
Show Gist options
  • Save sheepla/e01a2ff6df7c4b862ac258b72d23986d to your computer and use it in GitHub Desktop.
Save sheepla/e01a2ff6df7c4b862ac258b72d23986d to your computer and use it in GitHub Desktop.
心が疲れたときにランダムなネコチャンの画像が表示されるHTMLを生成して癒やされるやつ
curl -sL "https://api.thecatapi.com/v1/images/search?limit=10" |
jq ".[].url" |
xargs printf "<img src=%s>\n" > index.html
<img src=https://cdn2.thecatapi.com/images/1it.jpg>
<img src=https://cdn2.thecatapi.com/images/3ll.jpg>
<img src=https://cdn2.thecatapi.com/images/4et.jpg>
<img src=https://cdn2.thecatapi.com/images/53g.jpg>
<img src=https://cdn2.thecatapi.com/images/93m.jpg>
<img src=https://cdn2.thecatapi.com/images/9kg.jpg>
<img src=https://cdn2.thecatapi.com/images/djn.jpg>
<img src=https://cdn2.thecatapi.com/images/MTYyNjg3Ng.jpg>
<img src=https://cdn2.thecatapi.com/images/MTY4NTkzNA.jpg>
<img src=https://cdn2.thecatapi.com/images/aWVfoSN_K.jpg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment