82 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
3
votes
0
answers
291
views
How to get canonical IANA timezone ids in javascript
How would I get a list containing only and all canonical IANA time zone ids in javascript?
While I fully intend to support all IANA time zone ids in my application, when users select a timezone, I ...
3
votes
1
answer
215
views
How does Java handle the timezone database? [closed]
I know that IANA keeps a timezone database (tzdata) that is used by several systems. But Java seems to have its own mechanics to handle timezones.
How does it work?
0
votes
1
answer
749
views
Method to convert Windows time zones to IANA time zone database in PowerShell
I wasn't able to find a good method for converting windows time zones to the IANA format I needed. This method isn't perfect but it gets the job done for my purposes.
First you need to get the ...
2
votes
1
answer
339
views
Is there a list of IANA time zone to ISO Country Code and Region Code mappings?
Im looking to map IANA time zones to ISO country codes + region codes (where applicable). Is there some resource that has this mapping available for consumption? A c# package would be fantastic
I saw ...
0
votes
0
answers
35
views
Inserting IANA TLD file into SQL Database in C# (File too long)
I want to insert the TLDs of the IANA file (https://data.iana.org/TLD/tlds-alpha-by-domain.txt) into a column of a SQL table via C#, but it is too long.
Column is defined as NVARCHAR(MAX) datatype.
It ...
-1
votes
1
answer
145
views
What the minimum length of Internationalized TLDs?
An usual top-level domain (TLD) has a minimum length of 2 characters. Is this rule applies to Internationalized TLDs too (like .中国 .مصر .भारत)?
I'm writing a Regex to validate email.
3
votes
1
answer
794
views
Is the list of IANA timezones stable?
IANA provides a list of timezones on https://www.iana.org/time-zones with their time shift. There are frequent updates.
=> are only the time shifts updates, or can their be new timezones / ...
0
votes
1
answer
309
views
What regions does TimeZoneInfo.TryConvertWindowsIdToIanaId support?
I am trying to get all Iana time zones on a .net8 application. I can't use any open-source packages, so I am stuck with pulling DotNetIds out of the Windows registry. Right now, I am iterating through ...
2
votes
2
answers
793
views
TimeZoneInfo.TryConvertIanaIdToWindowsId returns only False in .NET 6 Azure function
My app stores user time zone selection as IANA Time Zone Id values. It calculates local user times by converting these to Windows Time Zone Id values and using TimeZoneInfo methods to calculate times. ...
1
vote
0
answers
58
views
Is there a convention or rule used to name AAA interface in 3GPP?
Appologize if this has been answered.
I'm looking for what Gx, Gy, Cx interface stands for or What does single character mean.
Is there a convention or rule used to name AAA interface in 3GPP?
It ...
1
vote
1
answer
75
views
How to normalize semantically same language tags? [cldr]
I am currently browsing the cldr-common-42 database and I find the use of language tags a bit confusing.
For example, the tag ar-EG is used for translations in Egyptian Arabic. However, when looking ...
3
votes
0
answers
178
views
Are all combinations of language codes and regions in the language-subtag-registry valid?
RFC 5646 (https://www.rfc-editor.org/rfc/rfc5646.html) and IANA language subtag registry (https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry) describe and list the ...
0
votes
0
answers
250
views
Why would using a port number in the Dynamic Ports range be unsuitable for an application?
As stated by IANA when one wants to register a port number and a service name in the User Ports range, one of the requirements from RFC 6335 section 8.1.2 is to have a reason:
"...why using a ...
1
vote
1
answer
2k
views
How to get current IANA Timezone Database version in Golang?
I need to store datetime records with IANA database current version used (2022g for example). How could I get it with Go?
I tried to search this on standard "time" package, but it seems that ...
1
vote
1
answer
318
views
none IANA time zone - usage still possible?
I need to use time zone strings like this:
CET-1CEST,M3.5.0,M10.5.0/3
CET-1CEST-2,M3.5.0/02:00:00,M10.5.0/03:00:00
But the go time pkg is using the IANA Time Zone database e.g.: Europe/Paris
Is there ...