The localtime tag has no wiki summary.
1
vote
1answer
14 views
python localtime import time
My question is to obtain hours according to the message. But I only
get the starting time because? time.sleep is to simulate the time of
incoming messages. Why not give for different time schedules?
...
1
vote
0answers
18 views
Showing date and time by visitor's computer time zone
I want my wordpress posts and comment date and time to be converted to visitors computer time zone. That way user should know what exact time post or comment was created by his local time.
I know ...
1
vote
2answers
99 views
Globally convert UTC DateTimes to user specified local DateTimes
I am storing all the DateTime fields as UTC time. When a user requests a web page, I would like to take his preferred local timezone (and not the local timezone of the server machine) and ...
0
votes
2answers
91 views
Convert US-Style DateTime to local time
How do I convert US-style DateTime such as 5/1/2012 3:38:27 PM returned from the server to user's local time? I am developing for windows phone.
I've tried
DateTime localTime = ...
0
votes
1answer
61 views
How to convert server time to local time using Joda?
I'm developing application for mobile phone. So, after publish application will be ready for all users around the world. I need to adjust server time with local time of user. I thought maybe Joda (the ...
0
votes
0answers
15 views
Files modifying time not matching to time installed on my PC
When I'm trying to modify some files on my PC, modifying time not matching to time installed on my PC. Why? What should I change to achieve the correct match?
0
votes
2answers
87 views
How to check a file like this
I take backups on my db every day , The file names will be like shown below
AWDRT.0.db2inst1.NODE0000.CATN0000.20130312095740.001
AWDRT.0.db2inst1.NODE0000.CATN0000.20130313100330.001
...
0
votes
1answer
37 views
c99 problems with pointers and localtime_r
I am assigning one variable to hold the current time:
struct tm *cur = malloc (sizeof (cur));
time_t t = time (NULL);
localtime_r (&t, cur);
I then print the year. It is correct. Next I enter a ...
0
votes
2answers
88 views
Calendar function crashes when invoking 'localtime_s'
I'm trying to make a callendar, so I use time_t and localtime_s to store the time and date info and then store it in individual members of the Calendar class:
void Callendar::Initialize()
{
...
2
votes
1answer
395 views
How to Convert UTC Date To Local time Zone in MySql Select Query
I am using this Where Condition in One Of my query with MySql Database.My Problem is that i have one displaytime column in my table but that table column shows the data in UTC Time.and i want to ...
0
votes
2answers
1k views
localtime vs localtime_s and appropriate input arguments
time_t rawtime;
struct tm * timeinfo;
time ( &rawtime );
timeinfo = localtime ( &rawtime );
This returns: warning C4996: 'localtime': This function or variable may be unsafe. Consider using ...
0
votes
1answer
200 views
JodaTime - Adding/Subtracting Hours and minutes to time, only minutes are being added/subtracted correctly?
In a bit of a problem. I have a onClick that when clicked will get the current time and add a certain number of hours and minutes. The code below is what I have and it currently sends the data to ...
3
votes
4answers
201 views
Perl Past Date How To?
I have a perl script that is getting the current time coming through in a but I am also looking to get the date 45 days prior to the current time as well. Here is what I have:
*already tried using ...
1
vote
2answers
163 views
C - error storing time_t variable in a struct [time.h]
I'm working on building a process scheduler that follows the FIFO algorithm. I've written all the code and it is working, except for the part of the report. Here an example of how the report is coming ...
0
votes
4answers
101 views
compare javascript time with php time
I'm working on a restaurant site and I have specific ordering hours. How do I compare a preset time-range with the current visitor's time?
Also I need to set this preset time-range through a form.
...
0
votes
2answers
114 views
localtime() gets it wrong, says date = September 31
I am making a calendar program. The 'expand repeating events' code is giving me no end of trouble. I am expanding events by using mktime() to get a 'pure' time value, then adding the repeat delta (in ...
3
votes
3answers
143 views
How can I get start of month in epoch form from random epoch timestamp in Perl?
I get some times from a database and I am trying to store them by month, using the epoch form.
So I could have some random times like:
1354120744
1328978360
1297388332
and for each one I want to ...
5
votes
1answer
177 views
How to configure IIS7 Advanced Logging rollover by local time?
How to configure IIS7 Advanced Logging rollover by local time?
In options I set daily schedule (see picture http://gyazo.com/05843b6e29d51f21ee7ed2d6aa4d5157). But IIS create new log file using UTC ...
-1
votes
1answer
249 views
Timestamps are showing server time, not local time
I have a website where users(in different timezones) can create new records in a database, and i currently have each record being recorded with a timestamp of the time it was created... I am in EST ...
2
votes
3answers
399 views
Perl epoch time before 1970 formating
I have problem formating and dealing with dates before the epoch 1/1/1970 in Perl, dates comes back as negative integer:
my $time=timelocal(0, 0, 0, 1, 1, 1969);
print "$time\n";
$theTime = ...
0
votes
2answers
148 views
Issue with using ctime to advance a given date to next calendar date
I wrote the following piece of code to advance the input date to the following calendar date. This works well when tested in a dummy source file compiled with g++ 4.1.2
However, when running the ...
3
votes
3answers
369 views
How to go back months in Perl taking account of different days in month?
I was wondering if there is an in-built Perl function that adjusts the date if you take a month from it. E.g. if date is the 31st, it will adjust to be the end of the previous month if it doesn't have ...
0
votes
1answer
134 views
Find UTC Time for ALL USA TimeZone for below Times using C#.net
How can i find UTC time for all these TimeZone for all these hours
8 Am (in UTC for all USA Time Zones)
5 PM (in UTC for all USA Time Zones)
10 PM (in UTC for all USA Time Zones)
USA Time Zones
...
0
votes
3answers
318 views
Any specific reason why localtime throws warning with struct tm* & stat* , in linux ?
I have this simple code (part of a project) :
void displayFileProperties(struct stat* file,char* outputProperties , char * path)
{
struct tm* time;
// code
// code
...
0
votes
1answer
139 views
Library calls for converting timestruc_t to text or struct tm
I was writing a quick utility to dump out some of the details of the stat structure but hit an issue as the time attributes of stat seem to be of type timestruc_t which on my platform seems to be two ...
1
vote
2answers
854 views
PHP getting local date and time
How to get the local date and time in PHP.For example my timezone is Asia/Kolkata.
My application has to add the date in my time zone to the database.I know the time can be found by adding 5.30 hrs to ...
0
votes
1answer
215 views
Data Binding DateTime to a label->text converts the value to local time
I am working in C++ .net. I have a custom control that shows the contents of a dataBase with a bindingsource in between. I use labels in the control to bind the text property to the data in the ...
0
votes
1answer
150 views
Are UTC and local time interchangeable in a location that has day light savings?
I know we should store time in UTC in our databases, but I'm having a hard time to get support from my team to adopt this because of the followings:
we never deal with internaltional time stamps
we ...
1
vote
1answer
198 views
Is there a signal safe alternative to localtime_r()?
We've got some code to do crawl the stack, and it's very handy to be able to dump the current time when we do so. Unfortunately, while the localtime_r() function is reentrant, it is not signal safe, ...
0
votes
5answers
969 views
Java, How to change GMT time to local time?
Server sends me time like this:
2012-06-08 17:00:00 +0100
I need to change it like HH:MM based on local time. For example this time is what time at Japan, India, US and etc.
How can I do this? ...
3
votes
1answer
243 views
How to convert time.gmtime()-like tuple to UNIX time?
time.mktime is said to be the reverse of time.localtime.
Where is the reverse of time.gmtime? It is needed to convert the result of email.utils.parsedate to normal UNIX time.
The only approximation ...
0
votes
3answers
311 views
stat() returns error
I have to know the modification date of some files in a folder. It works, but not with all types of files.
For example it works with .c, .txt, but it doesn't work with other types such .mp4, .jpg and ...
0
votes
1answer
912 views
Time zone and BST woes in Europe/London
I am really struggling with my hwclock since the UK changed to British Summer Time (BST) last weekend on my Centos 5.8 KVM guest.
Here's some command outputs..
[root@host ~]# TZ=Europe/London ...
0
votes
2answers
113 views
localtime.js not working on elements created after ajax
I am using localtime.js sucessfully on my app but now that ive started to use ajax
the elements created with ajax does not have the formatting that the plugin localtime does for me on my normal non ...
1
vote
2answers
390 views
Perl localtime error
I get the epoch time at February 28th 2009,
then add to it the number of seconds in a week.
But then I get March 4th instead of March 7th. Why?
The following is the code:
#!/usr/bin/perl
use ...
1
vote
1answer
226 views
localtime() and gmtime() seem to be mucking up my input stream C++/C
I'm having problems converting from unix epoch time to a character array. I know how to do it and the conversion is happening correctly but after I make a call to gmtime() or localtime(), all input ...
0
votes
2answers
153 views
localtime alternative that won't overwrite the supplied struct
Essentially, what I'm trying to do is to check the last access time of a file and compare it with a string. Here's the relevant block:
struct stat file;
char timeStr[ 100 ];
stat(nodes.at(0), ...
0
votes
2answers
548 views
c++ localtime when changing timezone
I have a setup working using localtime() to get a tm with the local times represented in it. And that is all good.
However, if I change timezone while the application is running, it does not notice ...
2
votes
1answer
348 views
fprintf doesn't print const char * to file
I have a simple log function that needs to print the current date and time. I'm doing it inside a function that returns a char *. When I try to set this char * into fprintf(), it doesn't print me the ...
0
votes
1answer
567 views
Javascript GMT string convert to Local Time
$(function() {
$('#datepicker').datepick({
multiSelect: 999,
monthsToShow: 3,
minDate: new Date(),
maxDate: '+1y',
showTrigger: '#calImg',
...
2
votes
3answers
710 views
how to extract timezone from localtime()
I'm using the following code to print the current time.
use Getopt::Long;
use Time::Local;
sub gettime
{
my $t = time();
my ($sec,$mn,$hr,$mday,$mon,$yr,@left, $dstr);
...
1
vote
0answers
257 views
Timezone conversions for DateTime in Ruby 1.8.6
(Stuck in Ruby 1.8.6 land)
Until recently I was using Time to parse UTC dates and print them in a local timezone
dt = Time.parse("20111225080000Z")
puts dt.localtime
Sun Dec 25 21:00:00 +1300 2011
...
2
votes
2answers
448 views
Is there a way to change TimeZone for a request in C# (ASP.NET MVC3)?
Is here a way to change timezone setting for a request, for example, at Application_AcquireRequestState
then for the whole request, no matter when I use Datetime.ToLocalTime (or new Datetime() etc), ...
9
votes
3answers
1k views
C++: how to get the actual time with time and localtime?
I'm looking for a way to save the time in a HH::MM::SS fashion in C++. I saw here that they are many solutions and after a little research I opted for time and localtime. However, it seems like the ...
0
votes
0answers
163 views
get system time using a func that does not calls malloc internally
in glibc malloc i am trying to maintain a time stamp per allocation. There is a separate hash table which i have created in glibc itself stores this timestamp entries. The format of the timestamp is ...
2
votes
1answer
1k views
UTC Time to GMT+2 in AS3
I'm having a problem. Using the Date() functions AS3 provides natively, I'm converting UTC time to local machine time.
The problem I have is this, look at month and hour.
2011-10-07 18:45:00 -> ...
38
votes
9answers
3k views
Get the Olson TZ name for the local timezone?
How do I get the Olson timezone name (such as Australia/Sydney) corresponding to the value given by C's localtime call?
This is the value overridden via TZ, by symlinking /etc/localtime, or setting a ...
1
vote
1answer
1k views
Get local time from UTC datetime in ActionScript 3
Does AS3 have a way of converting a datetime variable into local time?
0
votes
1answer
88 views
Java (Processing Environment) will not provide me with the local time
I'm trying to get the epoc time adjusted for the local timezone (i.e. GMT-7, but it displays GMT). I'm fairly sure this should work, but it's not...
Calendar localTime = new ...
0
votes
2answers
2k views
Perl: How to convert a unix timestamp+timezone into local time
the basic question is in the header: I have a unix timestamp and a timezone, e.g. "America/Caracas" and I would like to convert it to the timezone's local time.
Searching through stackoverflow, I ...

