Skip to main content

Mirth and Misc

Introduction

These either dont fit in any other category or are just for fun.

*fetch Scripts

Nerdfetch
curl -fsSL https://raw.githubusercontent.com/ThatOneCalculator/NerdFetch/main/nerdfetch | bash
Screenfetch
curl -fsSL https://raw.githubusercontent.com/KittyKatt/screenFetch/master/screenfetch-dev | bash

Dad (Bad?) Jokes

curl https://icanhazdadjoke.com

Dictionary

curl 'dict.org/d:<word-to-look-up>'

DNS

curl -L http://edns.ip-api.com

IP Address

curl -s getipaddr.net
curl -s ifconfig.me

QR Code

curl qrenco.de/<data-to-convert-to-qr>
<command> | curl -F-=\<- qrenco.de

News

curl getnews.tech/<topic>

Superfluous Animations

Emoji Race
curl node-web-console.glitch.me
Nyan Cat
curl ascii.live/nyan
Nyan Cat in Full Color
curl poptart.spinda.net
Party Parrot
curl parrot.live
Run, Forrest, Run
curl ascii.live/forrest
Search and Display GIFs
curl gif.xyzzy.run
What could this be, Richard?
curl -sL https://raw.githubusercontent.com/keroserene/rickrollrc/master/roll.sh | bash

Notes:
Ctrl+C to Quit

Random Number

curl "https://www.random.org/integers/?num=1&min=1&max=100&col=1&base=10&format=plain&rnd=new"

Stopwatch

time read

Notes:
Ctrl+D to Stop

Watch ASCII Star Wars

The original uses telnet, which we do not encourage:
telnet towel.blinkenlights.nl
Instead a trick of accessing TCP/UDP via bash can be used:
bash -c 'cat < /dev/tcp/towel.blinkenlights.nl/23'

Or a fork made for bash on gitlab using either curl or wget:

curl -s https://gitlab.com/cscs/starshell/-/raw/main/starshell/starshell | bash
wget -qO- https://gitlab.com/cscs/starshell/-/raw/main/starshell/starshell | bash -s

Notes:
Ctrl+S to Pause
Ctrl+Q to Resume
Ctrl+C to Quit

Weather

wttr.in
curl wttr.in
METAR from specified ICAO
curl https://tgftp.nws.noaa.gov/data/observations/metar/stations/KAAO.TXT

Notes and Warnings

  • Remember to avoid sharing personal information.
  • Please do not abuse these services. They are made freely available so let's not knock a good thing.
  • More details, including options, privacy clauses, and further stipulations, can be found at each project host.