Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
47 views

I need to store some store hours that exist in different time zones and may be interacted with in different timezones through an admin portal where it will display store time and local time. I know ...
NoxSicarius's user avatar
Best practices
0 votes
3 replies
135 views

I am using XYZ geoLocation IP details provider API and it giving output in below format { "ipAddress": "66.XXX.YY.XXX", "network": "66.XXX.YY.Z/AB", ...
Chethan's user avatar
  • 312
1 vote
0 answers
38 views

I have a Django API that returns self signedup users in a given date range. The AuditLog model stores timestamp with DateTimeField(default=timezone.now) and USE_TZ=True. Locally, the date filter works ...
Manish Shrestha's user avatar
3 votes
1 answer
127 views

I'm working on a project where I need to get the current timezone of a device in IANA format in a Unity App for iOS and Android. I have so far tried using TimeZoneInfo which doesn't give the timezone ...
Josiah Allen-Litchmore's user avatar
1 vote
1 answer
58 views

In a SELECT statement I want to convert .NET ticks to a datetime and display in Central Time. I don't want the timestamp+offset that "AT TIME ZONE 'Central Standard Time'" gives, I just want ...
Sam Clark's user avatar
1 vote
0 answers
88 views

Microsoft's Robocopy program has these two options: /FFT :: assume FAT File Times (2-second granularity). /DST :: compensate for one-hour DST time differences. What is the exact algorithm that ...
mcu's user avatar
  • 3,610
0 votes
1 answer
109 views

I am trying to set a time zone for a Google spreadsheet programmatically. function setTimezone() { const name = 'test'; const file = getFileByName(name); const ss = SpreadsheetApp.open(file); ...
Martin Roller's user avatar
3 votes
0 answers
224 views

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 ...
Augustine Calvino's user avatar
1 vote
0 answers
29 views

I'm testing GridDB Community Edition 5.3 (Linux container via Docker Desktop on macOS 14.4, Apple M1). When I insert rows with millisecond timestamps into a time-series container, and query using a ...
Panuganti Jayanth Kumar's user avatar
0 votes
1 answer
93 views

I'm using dbt cloud to generate snapshots to track SCD on a table, uing the check strategy (as I don't have an updated_at column in my source table) - this works well, and every change captures a new ...
Aamit's user avatar
  • 221
0 votes
0 answers
73 views

I'm having trouble to configure my node environment to use the same timezone as my docker container. FROM node:20-alpine WORKDIR /app RUN apk add --no-cache chromium openssl tzdata ENV TZ=America/...
Timóteo Stifft's user avatar
0 votes
1 answer
92 views

As title said, I'm looking for a simple way to get the canonical name of a timezone when providing a timezone name. For example Asia/Calcutta is the backward liked name of Asia/Kolkata. I'd expect ...
Junn Sorran's user avatar
0 votes
1 answer
100 views

So, I'm working with Laravel. My project is set to the TIMEZONE: UTC. When I consume my project's API on a Flutter mobile application, for example, I convert the dates received from the server in UTC ...
Hyacinthe Njimbong's user avatar
3 votes
1 answer
134 views

We are currently exploring showing timestamps with time zone to our users and decided to go with the Intl.DateTimeFormat option timeZoneName: "shortOffset" but we now noticed that the value ...
jansepke's user avatar
  • 2,011
0 votes
1 answer
85 views

Intl.supportedValuesOf('timeZone') Above code will give list of all time zone in en-US like below ["Africa/Abidjan", "Africa/Accra" , "Africa/Addis_Ababa", ...] Is ...
Prakash Gupta's user avatar
0 votes
0 answers
53 views

I'm using Chartkick 5.1.4 with Rails and code like the following in my view: <%= line_chart( charts_data_last_1_hour_path, :refresh => 60, ..., :library => { :scales =...
user502052's user avatar
  • 15.3k
2 votes
1 answer
66 views

A little example: $ python Python 3.13.2 (main, Feb 5 2025, 08:05:21) [GCC 14.2.1 20250128] on linux Type "help", "copyright", "credits" or "license" for more ...
ctmbl's user avatar
  • 23
0 votes
1 answer
229 views

Since the last update in tzdata previous week (2025b - March 22, 2025), a new timezone named America/Coyhaique was introduced. However, BigQuery still doesn't support it and produces an error when ...
Diego Queiroz's user avatar
-1 votes
2 answers
93 views

For example, at 10:30 PM Thursday, Eastern Time (ET) is 2:30 AM Friday, Universal Time (UTC) My Api server is in EST time zone, so now I want to accept all the request until 11:59 PM EST time, but the ...
KshanStag's user avatar
1 vote
1 answer
58 views

I have a crash report and I can’t figure out how to fix it, probably the main issue is that it's the first time I receive a crash report so I‘m not that expert on using it! (…so please, be kind!) ...
Matte.Car's user avatar
  • 2,041
1 vote
2 answers
89 views

I have a column in my postgres table which stores the time at which row is inserted or modified in the database. I need to rely on current_timestamp method However it generates in session timezone and ...
yatharth govil's user avatar
1 vote
1 answer
59 views

Throughout the world there isn't a consensus what a workweek should be. Western-centric world seems to define it as 5x2 (5 workdays, 2 weekend days), but they define their own "start of week"...
Dragas's user avatar
  • 1,278
0 votes
0 answers
44 views

I am working on Laravel 11 app. I am using yajra/datatables and datetimes in the db are correct but however when yajra/datatables displays them in the frontend they are an hour behind? I've been ...
Petar Vasilev's user avatar
1 vote
0 answers
114 views

I have a Java 17 record with a field: @Field("enrollment_date") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "dd-MM-yyyy", timezone = "UTC" ) LocalDate ...
Stewart's user avatar
  • 18.8k
0 votes
1 answer
44 views

I downloaded custom glibc and then compiled using g++ dt.cpp -std=c++11 -Wl,-rpath "/opt/glibc-2.28/lib", but it gives seg fault #include <iostream> ...
cryptickey's user avatar

1
2 3 4 5
252