I've been posting tutorials mainly focused on music production. This one is from a new YouTube channel I'm starting focusing on computers and tech. This tutorial will show you how to check the weather from the command line via Linux and OS X terminals.
Would you like to see a how to on a specific topic? Let me know in the comments here or on YouTube.
https://wttr.in/
https://github.com/chubin/wttr.in
To retrieve the weather:
curl wttr.in
To add as an alias:
sudo vim .bashrc
alias wtr='curl wttr.in'
source .bashrc