Coworker: ...and the IP address are compared with a string match.
Me: grinning manically
Coworker: Why are you looking at me like that?
Me: Open up a terminal and type ping 4.2.514 and hit enter.
Coworker: ...what's the fourth number?
Me: grin widens Just hit enter.
Coworker: WTF!?

@ryanc

`ping 8.8.2056`

WTF how am just finding out about this today?

@pikesley @ryanc what. How?!

@uastronomer @ryanc

I mean... 2056 is 8*256 + 8, the maths makes sense, but WTFFFFFF?

@pikesley @ryanc Oh.... oh okay, I see!

WOW!

'cos a standard format IPv4 address is technically a 4 digit base256 number, so this is all just base conversions gone screwy 🤣🤣🤣

@pikesley @ryanc Still geeking out about this hour later!

@uastronomer @ryanc

```
>>> IP="185.53.178.54"
>>> sum(int(n) * pow(256, index) for index, n in enumerate(reversed(IP.split("."))))
3107303990
```

Thought about this all over lunchtime