time-format Questions

4

Solved

Do you know how I can convert this to a strtotime, or a similar type of value to pass into the DateTime object? The date I have: Mon, 12 Dec 2011 21:17:52 +0000 What I've tried: $time = substr...
Aldon asked 20/8, 2012 at 13:25

3

Solved

I tried on google but I did not found the solution. In Django admin side, I'm displaying start date and end date with time. But time is in 24 hr format and I want to display it in 12 hr format cla...
Gallego asked 30/1, 2018 at 5:6

4

Solved

I have a decimal value in minutes with the value 3361 and need to convert in hours and present in this format: 56:01:00 I tried this code: $scope.myTime = new Date(1970, 0, 1).setMinutes(3361); ...
Gaudy asked 23/3, 2017 at 17:39

2

Solved

I have a column in R on my dataset with values that have been converted into what I believe is a time decimal fraction based on days. I have been using this site as a reference: http://www.ca...
Eats asked 30/1, 2017 at 17:7

2

Solved

I am using Go with logrus, however I found the time field is always formatted in local time. How can I change the time to UTC time for logrus? Thanks
Heliozoan asked 9/11, 2016 at 8:3

3

Solved

when i store the output of history command via ssh in a file i get something like this ssh -i private_key user@ip 'export HISTFILE=~/.bash_history; export HISTTIMEFORMAT="%D-%T "; set -o history; ...
Florina asked 19/5, 2012 at 12:58

5

Solved

In my app I have an option to pause execution for a certain amount of time. I want to show the time when the execution will resume, including seconds, and I want the time string to be formatted acc...
Envoy asked 12/4, 2013 at 21:57

3

Solved

I would like to convert var delta = TimeSpan.FromSeconds(10); to string like 00:00:01 I try this delta.ToString(@"0:\\hh\\:mm\\:ss", System.Globalization.CultureInfo.InvariantCulture); ...
Oblate asked 9/7, 2016 at 19:43

5

Solved

I'm using an API to call a date from a post. Dates are returned in ISO 8601 format : 2015-11-09T10:46:15.097Z I want my dates to be formatted like this : 09/11/2015 Then, later, I want...
Frodine asked 9/3, 2016 at 13:50

2

Solved

How can I convert 2012-01-18T11:45:00+01:00 (ISO 8601) to 1326883500 (unixtimestamp) in PHP?
Cohn asked 18/1, 2012 at 10:48

2

Solved

I have an app using an NSTimer at centisecond (0.01 second) update intervals to display a running stopwatch in String Format as 00:00.00 (mm:ss.SS). (Basically cloning the iOS built-in stopwatch to...
Ami asked 13/7, 2015 at 4:19

1

Solved

I'm trying to understand what the bytes from the timestamp set on my DB mean. How do they get computed to generate the more readable date? I'm using the below query to get the data that I need: S...
Profession asked 31/7, 2015 at 9:5

2

Solved

Despite the fact that in http://<jenkins server>/systemInfo the user.timezone property value meets my actual time zone I still have 12-hour clock format. I would like to have 24-hour clock...
Tenaculum asked 3/7, 2014 at 20:59

3

Solved

My requirement is to display date on webpage in hh:mm format. But, it should not display zero before the hour value if it is a 1-digit number. For example - It should be displayed as : 11:30 AM, 9...
Berni asked 7/11, 2014 at 18:35

1

I'm trying to print out various fields from a PCAP containing HTTP traffic. One of the columns should be the timestamp in the ISO 8601 format (YYYY-MM-DD hhmmss). Also, if anyone has a full list o...
Shipboard asked 17/9, 2013 at 13:38

2

Solved

I'm writing an application in Django and using several TimeFields in a model. I only want to work with the time format hh:mm (not hh:mm:ss or hh p.m./a.m. or other things). I have set the django se...
Rostock asked 11/10, 2011 at 16:43

40

Solved

I noticed that JavaScript's new Date() function is very smart in accepting dates in several formats. Xmas95 = new Date("25 Dec, 1995 23:15:00") Xmas95 = new Date("2009 06 12,12:52:39") Xmas95 = ne...
Glabella asked 29/6, 2009 at 5:44

1

Solved

I have a series of duration that range up to 118 hours in a format like so "118:34:42" where 118 is hours, 34 is minutes, and 42 is seconds. Output should be a number of seconds. I would like to c...
Teach asked 21/12, 2012 at 6:14

5

Solved

Is there a CPAN module that can convert a number of seconds to a human-readable English description of the interval? secToEng( 125 ); # => 2 min 5 sec secToEng( 129_600 ); # => 1 day 12 h ...
Norward asked 25/9, 2011 at 13:6

5

Solved

I'm attempting to format dates for a French customer. I need to format Times as shown in the following examples... 06:00 -> 6 h 08:45 -> 8 h 45 10:30 -> 10 h 30 15:00 -> 15 h 17:22 -> 17 h 22 18:...
Ampulla asked 8/10, 2010 at 19:54

1

Solved

In a Ruby 1.9 program, I want to format the current time like Thu 1:51 PM. What format code should I use for the hour of the day (1 in this example)? Time.now.strftime '%a %I:%M %p' #=> "Thu 01...
Erving asked 28/6, 2012 at 18:18

3

Solved

I am working on simple application to show the time in different formate. To show the time I am displaying ISO country code using this ISO code. Can I able to change time in that ISO country format...
Bobbette asked 22/6, 2011 at 10:36

9

Solved

I'm importing data from another system to MySQL, its a CSV file. The "Date" field however contains cryptic of 3-digit time entries, here's a random sample set: > 540 > 780 > 620 > 965 ...
Nazario asked 29/10, 2008 at 15:57

© 2022 - 2024 — McMap. All rights reserved.