til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

What is my IP?

There are plenty of websites which can help you, but you can do get your public IP using the command line - my preferred way.

Examples using curl could be httpie or similar.

curl icanhazip.com
# IPv4
curl -4 icanhazip.com
# IPv6
curl -6 icanhazip.com

Resources and References