peoj

peoj

How can I determine the current timezone of the local system (e.g. Etc/UTC)?

This approach would work for me, but seems like I must be missing a built-in API of some sort!

Showing Posts 1 to 10

outlog

outlog

of a client? or the server? (btw imho your server should always run in utc)

peoj

peoj OP

The local system where the elixir app is currently being run, so "server’ I guess.

Agreed but I can’t make that assumption.

outlog

outlog

app logic can/should be in a way that the server timezone is irrelevant.. aka always Start with DateTime.utc_now() or similar in the logic and go from there..

anyways, maybe something like

iex(20)> :calendar.time_difference(:calendar.universal_time, :calendar.local_time  )
{0, {2, 0, 0}}

(I’m utc+2 currently)

pretty sure elixir doesn’t expose it.. since it’s a very bad path to venture down of.. time is hard enough as it is..

peoj

peoj OP

Thanks for the help, that works nicely for the offset.

I understand the difficulties inherent in timezones in some applications. For the purposes of my app I still need to know the current timezone and offset of the system.

lud

lud

As a workaround you could call System.cmd("date", ["+%Z"]) or compare the output of System.cmd("date", ["+%H:%M:%S"]) with DateTime.utc_now() but that does not seem very reliable.

ericgray

ericgray

Why not just use the function in the Stackoverflow article

def get_timezone() do
  {zone, result} = System.cmd("date", ["+%Z"])
  if result == 0, do: String.trim(zone)
end

If you compare it with DateTime.utc_now() you would need to get the offset.

lud

lud

Well it seems that I read the topic not from the beginning. I completely overlooked the first post, sorry.

That being said, "+%Z" gives "CEST" on my machine, that is not very useful as it still requires to have a timezone database of some sort. And if you have one, I bet there is a function in the library that would give you your current timezone anyway.

ericgray

ericgray

Right didn’t realize he needed the offset. The only thing that comes to mind is Tzdata database. Elixir School has a nice article on how to use it. The only problem with this approach is you have to pass in the name of the zone, i.e. “America/Chicago”.

If there was some kind of way you could use System.cmd("date", ["+%Z"] to get the time zone and pass that in I think it would work.

billposters

billposters

The host OS, and packages available are going to determine what TZ info you can get from the system directly. For example, on Debian you can cat /etc/timezone and get Europe/London but it’s not guaranteed that the timezone packages will be installed on the host.

If you don’t control the host (and packages installed) then realistically you’re only going to be able to resolve the offset, not the named TZ e.g. “Etc/0” not “Europe/London” because there are more named TZ aliases in an offset, meaning it’s not a 1-1 relationship.

cmo

cmo

Use Timex’s Timezone.local()?

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
webofbits
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself. My main conc...
#ai
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews