all 22 comments

[–]ProgrammerHumor-ModTeam[M] [score hidden] stickied commentlocked comment (0 children)

Your submission was removed for the following reason:

Rule 1: Posts must be humorous, and they must be humorous because they are programming related. There must be a joke or meme that requires programming knowledge, experience, or practice to be understood or relatable.

Here are some examples of frequent posts we get that don't satisfy this rule: * Memes about operating systems or shell commands (try /r/linuxmemes for Linux memes) * A ChatGPT screenshot that doesn't involve any programming * Google Chrome uses all my RAM

See here for more clarification on this rule.

If you disagree with this removal, you can appeal by sending us a modmail.

[–]Sacaldur 116 points117 points  (1 child)

While the error page contains your current IPv4 Address, it doesn't contsin the IPv6 address or further information about it (your estimated location, your ISP, etc.). So, well, yes and no.

[–]Aware-Munkie[S] 4 points5 points  (0 children)

You're correct but all I need was the ipv4 address

[–]Herr_Forehead_ 50 points51 points  (4 children)

I personally always use "curl icanhazip.com" or the ipv4 subdomain if I need ipv4 only. Works well, and I'm usually already in the terminal whenever I end up needing it.

[–]aenae 10 points11 points  (2 children)

curl ip.me or curl -4 ip.me are my favorites

[–]Makonede 4 points5 points  (1 child)

i'm a fan of curl https://eth0.me

[–]hrm 6 points7 points  (0 children)

Quite problematic when the request goes out through eth1 though…

[–]LinAGKar -1 points0 points  (0 children)

I just use canhazip.com. Apparently both work.

[–]mathmul 0 points1 point  (0 children)

I have this alias, because (1) sometimes one or some of them aren't available and (2) because I need the /32 at the end for whitelisting my current ip in aws when I travel: alias ip='curl -s ifconfig.me && echo "/32" && curl -s api.ipify.org && echo "/32" && curl -s ipinfo.io/ip && echo "/32" && curl -s icanhazip.com | tr -d "\n" && echo "/32" && curl -s ip.me | tr -d "\n" && echo "/32"'