Tagged Questions
4
votes
2answers
57 views
Unbiased Time System C#
I am creating a reminder system for the software that we have. Currently I have the user give me the time they would like to be reminded and I store it in a database.
Then later, I have a service ...
2
votes
1answer
101 views
Get system date/time in Python after changing time zone
On my system, I have set the current time zone for my clock to "Kuala Lumpur, Singapore (UTC+08:00)", which puts my clock forward by eight hours (of course).
In python, I'm using the code to get the ...
1
vote
0answers
23 views
Set Android Timezone/time info from firmware
I'm working on a project with a no-name android box, and the default setting for the time zone is some place in China. I would like to arrange the firmware in such a way so I can set it to always go ...
1
vote
1answer
311 views
Ruby Time.new giving time zone offset of 14 minutes
When I create a time object in Ruby 1.9.2 with a date earlier than 1 September 1919, the time zone is set to +0014 rather than to the system zone (+0100) or UTC. Now that I discovered the problem ...
0
votes
4answers
49 views
Show different message to the hours | php
here is my code, where i make mistake? Btw my time ZONE is UTC + 2:00.
Thanks for answers in advance.
<?php
$current_time = date('H');
if ($current_time >18) {
echo "Good night";
...
0
votes
1answer
485 views
Get Time Zone abbreviation given GMT offset with Objective C
Is there a way to lookup a timezone abbreviation when only the temporal offset is known?
Example: Say i'm given the offset of GMT -5, i'd like to display the abbreviation of EST (assuming US) as ...