82 questions
0
votes
1
answer
363
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
186
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
34
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 ...
0
votes
0
answers
38
views
Usage of CBOR tag 27 (major type 6)
As per specification supplied with the tag registration, one supposed to use a string as type identifier. However, the specification seems to allow a great degree of freedom wrt how to use the tag.
...
-1
votes
1
answer
111
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
465
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
235
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 ...
0
votes
0
answers
225
views
Is there any REST API where I can get IANA Timezone releases updates?
I have been searching for it, however I have only found a paid Microsoft one.
I need to know when a new version is released and the only source of that information seems to be this non restful url ...
2
votes
2
answers
720
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
54
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
0
answers
53
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
163
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
199
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
1k
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
283
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 ...