tagged [time]
How to get current time and date in C++?
How to get current time and date in C++? Is there a cross-platform way to get the current date and time in C++?
- Modified
- 16 Jun at 20:35
Difference between Big-O and Little-O Notation
Difference between Big-O and Little-O Notation What is the difference between notation `O(n)` and notation `o(n)`?
- Modified
- 30 Jan at 13:47
Convert seconds to Hour:Minute:Second
Convert seconds to Hour:Minute:Second I need to convert seconds to "Hour:Minute:Second". For example: "685" converted to "00:11:25" How can I achieve this?
What is a plain English explanation of "Big O" notation?
What is a plain English explanation of "Big O" notation? I'd prefer as little formal definition as possible and simple mathematics.
- Modified
- 22 Jul at 15:40
In Python, how to display current time in readable format
In Python, how to display current time in readable format How can I display the current time as: in Python. Thanks.
using C# for real time applications
using C# for real time applications Can C# be used for developing a real-time application that involves taking input from web cam continuously and processing the input?
How do you display JavaScript datetime in 12 hour AM/PM format?
How do you display JavaScript datetime in 12 hour AM/PM format? How do you display a JavaScript datetime object in the 12 hour format (AM/PM)?
- Modified
- 22 Oct at 17:2
What does this format mean T00:00:00.000Z?
What does this format mean T00:00:00.000Z? Can someone, please, explain this type of format in javascript And how to parse it?
- Modified
- 26 Aug at 18:26
How to format date and time in Android?
How to format date and time in Android? How to format correctly according to the device configuration date and time when having a year, month, day, hour and minute?
- Modified
- 27 Nov at 07:54
Convert LocalDateTime to LocalDateTime in UTC
Convert LocalDateTime to LocalDateTime in UTC Convert LocalDateTime to LocalDateTime in UTC. I searched over net. But did not get a solution
How can I String.Format a TimeSpan object with a custom format in .NET?
How can I String.Format a TimeSpan object with a custom format in .NET? What is the recommended way of formatting `TimeSpan` objects into a string with a custom format?
- Modified
- 18 Oct at 12:45
How do you convert epoch time in C#?
How do you convert epoch time in C#? How do you convert Unix [epoch time](http://en.wikipedia.org/wiki/Unix_time) into real time in C#? (Epoch beginning 1/1/1970)
How to get only time from date-time C#
How to get only time from date-time C# Suppose I have the value 6/22/2009 10:00:00 AM. How do I get only 10:00 Am from this date time.
How to print time in format: 2009‐08‐10 18:17:54.811
How to print time in format: 2009‐08‐10 18:17:54.811 What's the best method to print out time in C in the format `2009‐08‐10 18:17:54.811`?
How do I convert datetime to ISO 8601 in PHP
How do I convert datetime to ISO 8601 in PHP How do I convert my time from `2010-12-30 23:21:46` to ISO 8601 date format? (-_-;)
- Modified
- 1 May at 21:24
How to increase maximum execution time in php
How to increase maximum execution time in php I want to increase in php , not by changing `php.ini` file. I want to Increase it from my php file. Is this possible?
- Modified
- 28 Aug at 14:0
Get month name from Date
Get month name from Date How can I generate the name of the month (e.g: Oct/October) from this date object in JavaScript?
- Modified
- 10 May at 16:24
How can FileInfo.LastWriteTime be earlier than FileInfo.CreationTime?
How can FileInfo.LastWriteTime be earlier than FileInfo.CreationTime? I was debugging some code today and noticed one of my `FileInfo` objects had its `LastWriteTime` earlier than its `CreationTime` t...
How to convert milliseconds into human readable form?
How to convert milliseconds into human readable form? I need to convert an arbitrary amount of milliseconds into Days, Hours, Minutes Second. For example: 10 Days, 5 hours, 13 minutes, 1 second.
- Modified
- 20 Feb at 19:11
What is the best way to measure execution time of a function?
What is the best way to measure execution time of a function? Obviously I can do and `DateTime.Now.After` - `DateTime.Now.Before` but there must be something more sophisticated. Any tips appreciated.
- Modified
- 19 Dec at 13:10
Time complexity of nested for-loop
Time complexity of nested for-loop I need to calculate the time complexity of the following code: ``` for (i = 1; i
- Modified
- 13 Nov at 17:59
How to convert date to timestamp?
How to convert date to timestamp? I want to convert date to timestamp, my input is `26-02-2012`. I used It says NaN.. Can any one tell how to convert this?
- Modified
- 24 Sep at 21:35
How do I measure execution time of a command on the Windows command line?
How do I measure execution time of a command on the Windows command line? Is there a built-in way to measure execution time of a command on the Windows command line?
- Modified
- 14 Mar at 18:36
How to measure time in milliseconds using ANSI C?
How to measure time in milliseconds using ANSI C? Using only ANSI C, is there any way to measure time with milliseconds precision or more? I was browsing time.h but I only found second precision funct...
- Modified
- 4 May at 21:56