[Round 96856] [UTC Offsets Series / UTC-5:00] Coordinates of the camera at 0:11 within 30 meters?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Maximus125
πŸ“…︎ Jun 03 2021
🚨︎ report
[Round 97783] [UTC Offsets Series / UTC-2:00] Coordinates of this cool guy?
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Maximus125
πŸ“…︎ Jun 22 2021
🚨︎ report
[Round 97953] [UTC Offsets Series / UTC + 3:30] Coordinates of this drifting car within 30 meters?
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Maximus125
πŸ“…︎ Jun 26 2021
🚨︎ report
[Round 97951] [UTC Offsets Series / UTC + 03:00] Coordinates of this google maps pin?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Maximus125
πŸ“…︎ Jun 26 2021
🚨︎ report
[Round 97859] [UTC Offsets Series / UTC + 02:00] Coordinates of the structure on the right?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Maximus125
πŸ“…︎ Jun 24 2021
🚨︎ report
[Round 97441] [UTC Offsets Series / UTC-3:30] Coordinates of this photosphere?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Maximus125
πŸ“…︎ Jun 16 2021
🚨︎ report
LrptImageProcessor for map overlay of Meteor M2 Satellite U only need Monocrom data + .stat files (You have to adjust UTC offset for your nation ) Can process old passes reddit.com/gallery/o88y8j
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/HellYORK
πŸ“…︎ Jun 26 2021
🚨︎ report
[Round 96790] [UTC Offsets Series / UTC-09:00] Coordinates of this building?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Maximus125
πŸ“…︎ Jun 02 2021
🚨︎ report
[Round 96257] [UTC Offsets Series / UTC-11:00] Coordinates of the camera within 20 meters? What is it called? Who designed the building?
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Maximus125
πŸ“…︎ May 22 2021
🚨︎ report
[Round 96834] [UTC Offsets Series / UTC-08:00] Coordinates of this gas station? What is the episode number, season number, and name of this show?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Maximus125
πŸ“…︎ Jun 02 2021
🚨︎ report
I think ALL tourney organizers should give us starting times in UTC, many problems (as seen in this tweet) are SOOO EASY to circumvent by using UTC. (You just have to remember your own offset to UTC, e.g. -8 for PST, +1 for CET). twitter.com/TSM_ImperialH…
πŸ‘︎ 114
πŸ’¬︎
πŸ‘€︎ u/warriortyr
πŸ“…︎ Nov 19 2020
🚨︎ report
Using an ambiguous "Central Time" time zone with no specified offset, instead of the universal UTC time zone.
πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/Liggliluff
πŸ“…︎ Dec 16 2020
🚨︎ report
[TOTD 2020-10-10] Which of these time zones is not offset from UTC by a non-whole number of hours?

Which of these time zones is not offset from UTC by a non-whole number of hours?

1 point

Multiple choice

  • A: India Standard Time
  • B: Newfoundland Standard Time
  • C: Arabia Standard Time
  • D: Nepal Standard Time

Submitted by u/orangevg

#0433 - October 10, 2020 - Theme: Potpourri

JOIN OUR DISCORD! discord.gg/X592eNS

We are always looking for staff members! Apply here!

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/orangevg
πŸ“…︎ Oct 10 2020
🚨︎ report
Mysteries of Moment.js's UTC offset its-akash.hashnode.dev/my…
πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/Own_Idea
πŸ“…︎ Dec 11 2020
🚨︎ report
Writing a timezone bot, how could I properly define UTC offsets?

Hello, I'm not very experienced with JavaScript, I've been working with it on and off for a little less than a year with help from a friend.

I'm trying to create a timezone bot that displays current times in various areas, it is still very early in development as I work on crucial parts of it.
Currently everything is split into various constants, including the UTC offset value.
However, I noticed, in the arrangement I wrote this, it will just add the offset to the end of the hours instead of adding or subtracting from the hours.

const time = new Date();
let hoursUTC;
const minutesUTC = (time.getUTCMinutes() < 10 ? '0' : '') + time.getUTCMinutes();
const UTCOffset = (5);
let finalTime;

// time
    const timeFormat = true; // false = 24 hours format | true = 12 hours format (add AM + PM)
    let AMPM;


if (timeFormat === true) {
    hoursUTC = time.getUTCHours();
    AMPM = (hoursUTC >= 12 ? 'PM' : 'AM');
    finalTime = ((`${hoursUTC}` + `${UTCOffset}`) + ':' + `${minutesUTC}` + `${AMPM}`);
    console.log(finalTime);
}

I've messed with various ideas, but ultimately haven't gotten anywhere with it.
I appreciate any help I can get

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/Oxiriarkana
πŸ“…︎ Nov 01 2020
🚨︎ report
How do I get an offset from local time to utc?

Hi!

I know there are crates like chrono and time and there are some things available from std. But, how do I get the actual number of seconds/minutes/hours from local time to utc in rust? I want an actual value, not an abstraction like chrono does.

Anyone?

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/MrVectorHC
πŸ“…︎ Sep 28 2020
🚨︎ report
Mysteries of Moment.js's UTC offset its-akash.hashnode.dev/my…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Own_Idea
πŸ“…︎ Dec 11 2020
🚨︎ report
TIL India has used 3 time zones in the past - Bombay, Madras and Calcutta, with Madras time zone (being in between the other two) used by the railways all around the country. Neither of them had the arbitrary UTC+X(.5) time offset. The present day IST is closest to the Madras time. en.wikipedia.org/wiki/Tim…
πŸ‘︎ 16
πŸ’¬︎
πŸ‘€︎ u/RealityCheck18
πŸ“…︎ Jul 16 2020
🚨︎ report
TIL of Amsterdam Time, UTC +00:20 and used from 1909 until the Nazis invaded in 1940. That made the Netherlands 20 minutes ahead of London. The reason for this offset was that it was centered on the mean solar time of the tower of the Westerkerk Church in Amsterdam and not on Greenwich Mean Time. en.wikipedia.org/wiki/UTC…
πŸ‘︎ 25
πŸ’¬︎
πŸ‘€︎ u/SFinTX
πŸ“…︎ Aug 27 2020
🚨︎ report
Hello r/Rust! What use cases do/might you have for getting the system's UTC offset directly?

Hello! Author of the time crate here. I'm looking to add the ability to obtain the local UTC offset. However, I'm having a hard time thinking of use cases to get access to that info directly. The only instance I can think it would be relevant is for display/formatting. Pretty much every other case, it would be more idiomatic to perform all calculations using UTC.

If you have a use case, speak up! Now's your chance. I could very well be missing something obvious. If there isn't a convincing use case to access the offset directly, there won't be a method for it. Of course, it would still be possible to hack your way around it, but that's not really the point.

[Shameless plug: feel free to help out if you're familiar with OS APIs. Safety checks are always appreciated ☺]

Edit: I've seen enough between here and on the user's forum to confidently say that the API will be exposed!

πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/theZcuber
πŸ“…︎ Jan 28 2020
🚨︎ report
(TIL) The time in China follows a single standard time offset of UTC+08:00 (eight hours ahead of Coordinated Universal Time), despite China spanning five geographical time zones. en.wikipedia.org/wiki/Tim…
πŸ‘︎ 22
πŸ’¬︎
πŸ‘€︎ u/mattstl314
πŸ“…︎ Sep 20 2019
🚨︎ report
Getting datetime from local time and utc offset columns

There are 3 columns - City, Time and UTCOffset in my csv. I need to combine the Time and UTCOffset to generate a timezone aware column as the Time column can have any timezone. For eg.

City       Time              UTCOffset 
Boston     30/08/2019 12:30     -5 
Tucson     08/08/2019 16:45     -7 
SanDiego   16/08/2019 09:30     -7

I need my output to be:

City       Time 
Boston     30/08/2019 12:30:00-05:00 
Tucson     08/08/2019 16:45:00-07:00 
SanDiego   16/08/2019 09:30:00-07:00

Thinking of doing a string cast but that does not look good. Help me r/Python

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/pi600
πŸ“…︎ Nov 05 2019
🚨︎ report
Seeking assistance: Implement a function returning the local UTC offset (time crate, PRs accepted) github.com/time-rs/time/i…
πŸ‘︎ 17
πŸ’¬︎
πŸ‘€︎ u/theZcuber
πŸ“…︎ Jan 18 2020
🚨︎ report
UTC offset Tug of War

Increment the count by the UTC offset, in hours, of the timezone you are currently in. For example, if you are in London, increment by 1 (due to BST), in LA increment by -7, and in Newfoundland increment by -2.5.

Get is at Β±600

πŸ‘︎ 16
πŸ’¬︎
πŸ‘€︎ u/elyisgreat
πŸ“…︎ Aug 06 2017
🚨︎ report
UTC Offset Tug of War | -600

Continued from here.

Thanks /u/nicholas818 for the assist!

Description of this count:

> Increment the count by the UTC offset, in hours, of the timezone you are currently in. For example, if you are in London, increment by 1 (due to BST), in LA increment by -7, and in Newfoundland increment by -2.5.

The next get is at 0 or -1,200.

πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/DemonBurritoCat
πŸ“…︎ Aug 08 2017
🚨︎ report
The time in China follows a single standard time offset of UTC+08:00 (eight hours ahead of Coordinated Universal Time), despite China spanning five geographical time zones en.wikipedia.org/wiki/Tim…
πŸ‘︎ 207
πŸ’¬︎
πŸ‘€︎ u/zaphodi
πŸ“…︎ Jan 29 2018
🚨︎ report
Could the entire world just use UTC? So rather than different timezones having offsets, instead the generally accepted times of when things happen each day move, such as midday in New York being 4pm, with the working day being 1pm to 9pm?
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Skeeter1020
πŸ“…︎ Aug 04 2018
🚨︎ report
[Poll] We'd like to match your time zone more accurately - what is your UTC offset?

For some time now I've been wondering just how close to the mark we're getting when we post for Feedback Friday and Screenshot Saturday. I haven't received much feedback at all regarding how accurate our scale of time is for everybody's schedule. I'd like to take a moment for the subreddit to quickly check their UTC offset so we can coordinate together on a timezone that will benefit the majority of users here.

We've been using UTC+-00:00 for the longest time and maybe we've got the right figure the first go around, but it can't hurt to check. This certainly won't benefit everybody, but I'd like to take a poll regardless and see if there's any minor tweaking we need to do. For example, if you are in the western United States (as I am), you should have already come to expect that Feedback Friday and Screenshot Saturday come almost an entire day early. If this is also feeling a tad early for those of you that are across the pond, maybe we can push this forward a bit and it'll work out for everybody.

If you would like to participate and anonymously submit your timezone's UTC offset, please feel free to do so.


Here is an instructional image with awesome red squiggly arrows (if that suits your fancy):


Or better yet, a text version that is a lot less convoluted:

  1. Head over to Time & Date - Worldclock.
  2. Enter your location and click Search.
  3. Make note of your UTC offset (it's in the light green Time Zone box just slightly down the page).
  4. Submit your time at the Straw Poll (pay attention to the + or - sign!).

(When entering your location - if you do not see a Time Zone box, you aren't being specific enough!)


Thank you to everybody who participates in helping us constantly improve the subreddit!

πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/hypnozizziz
πŸ“…︎ May 05 2018
🚨︎ report
Can someone explain UTC offset to me (x-post r/sysadmin)

Doing some troubleshooting on a device located in E/T and I checked last boot via wmic. I understand the first part of the string (date/time) but can't figure out the part after the decimal (see below).

20170203060212.134337-300

πŸ‘︎ 31
πŸ’¬︎
πŸ‘€︎ u/delliott8990
πŸ“…︎ Feb 03 2017
🚨︎ report
TIL that 'Dublin Mean Time' is a timezone (no longer used) with a 25 minute and 21 second offset from UTC en.wikipedia.org/wiki/UTC…
πŸ‘︎ 65
πŸ’¬︎
πŸ‘€︎ u/kvisle
πŸ“…︎ Aug 19 2014
🚨︎ report
GvG Time Spreadsheet with UTC offset

https://docs.google.com/spreadsheets/d/1gIfNfYmIKI4R5wYjEQcyN_QIQ4WS8HcnQlvcDr0nswQ/edit#gid=0

I was looking for the territories that went up for contest during Australian prime-time and made this sheet along the way (there's only one btw feelsbad).

Go File > Make a copy and modify the value in the UTC offset cell with your city's UTC offset.

It's for the Royal Continent only right now but I'm happy to do Outlands if people want it.

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/sdrenAO
πŸ“…︎ Aug 24 2017
🚨︎ report
TIL that there are half hour time zones. Some places in the world (Like the entirety of India) offset their time by 30 minutes from UTC timeanddate.com/time/time…
πŸ‘︎ 23
πŸ’¬︎
πŸ‘€︎ u/azaffino
πŸ“…︎ Jul 05 2014
🚨︎ report
TIL the time zone for Chatham Island, 520mi East of Christchurch, is UTC+12:45. It is one of only three time zones with a 45-minute offset from UTC en.wikipedia.org/wiki/Cha…
πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/iamgigglz
πŸ“…︎ Oct 21 2016
🚨︎ report
UTC offset tug ignoring war | -1202.5

Continued from here

Thanks /u/DemonBurritoCat for the assist!
Description of this count:
>Increment the count by the UTC offset, in hours, of the timezone you are currently in. For example, if you are in London, increment by 1 (due to BST), in LA increment by -7, and in Newfoundland increment by -2.5.

The next get is at -600 or -2000.

πŸ‘︎ 12
πŸ’¬︎
πŸ‘€︎ u/elyisgreat
πŸ“…︎ Sep 06 2017
🚨︎ report
UTC Offset "Tug of War" | 5.5

Continued from here.

Thanks to /u/empires-fall for the run!

I'm not quite sure where the gets should be at... someone help me out here?

πŸ‘︎ 16
πŸ’¬︎
πŸ‘€︎ u/TheNitromeFan
πŸ“…︎ Sep 25 2017
🚨︎ report
Can someone explain UTC offset to me?

Doing some troubleshooting on a device located in E/T and I checked last boot via wmic. I understand the first part of the string (date/time) but can't figure out the part after the decimal (see below).

20170203060212.134337-300

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/delliott8990
πŸ“…︎ Feb 03 2017
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.