←back to thread

205 points diggan | 9 comments | | HN request time: 0s | source | bottom
Show context
ArneVogel ◴[] No.44473027[source]
I think this is the first time I have seen the .int tld used.
replies(2): >>44473047 #>>44480291 #
1. diggan ◴[] No.44473047[source]
It isn't super popular, no. I think the requirements are pretty strict if I remember correctly (edit: https://www.iana.org/domains/int/policy).

I think esa.int is probably one of the more popular .int domains on HN: https://news.ycombinator.com/from?site=esa.int

replies(4): >>44473144 #>>44473320 #>>44474201 #>>44474644 #
2. r721 ◴[] No.44473144[source]
interpol.int also comes to mind.
3. readthenotes1 ◴[] No.44473320[source]
It would have been better if the requirements also included the domain name had to start with a letter between I and N (inclusive).

But I guess this is what you get when these things get away from technologists.

replies(1): >>44473424 #
4. jfengel ◴[] No.44473424[source]
Ah, a Fortran joke. That's not just "technologists". That's old farts.

(In Fortran 66, variables didn't have to be declared. They would be integer if they began with I, J, K, L, M, or N. Otherwise it would be floating point [REAL, in Fortran parlance]. To this day it's why for loops usually use "i". With the bonus joke that God is real unless declared integer.)

replies(2): >>44475907 #>>44476051 #
5. lutoma ◴[] No.44474201[source]
Other notable .int domains:

• World Health Organization - https://who.int

• NATO - https://nato.int

• Council of Europe - https://coe.int

• Mercosur - https://mercosur.int

• African Union - https://au.int

• EFTA - https://efta.int

replies(1): >>44474321 #
6. dylan604 ◴[] No.44474321[source]
How long until an executive order is issued to block the .int TLD. Everything on that list goes against current US policies.
7. complex_pi ◴[] No.44474644[source]
In meteorology, you also have ecmwf.int (the European Center for Medium-Range Weather Forecasts).
8. spauldo ◴[] No.44475907{3}[source]
I think that's still the case, even in the latest FORTRAN standard. It's usually considered good practice to turn it off with IMPLICIT NONE.
9. mkl ◴[] No.44476051{3}[source]
Maths is the reason for loops use i. Fortran defines variables starting with those letters to be integers because maths has used those letters for iteration, counting, indexing, etc. for centuries. It was natural for a formula translating system to follow suit.