Unix time, or POSIX time, is a system for describing points in time, defined as the number of seconds elapsed since midnight Coordinated Universal Time (UTC) of January 1, 1970, not counting leap seconds.
0
votes
1answer
57 views
java calculate pregnancy algorithm [duplicate]
hello I am trying to calculate how many days are left in a pregnancy term but I think my algorithm is incorrect
public int getDaysPregnantRemainder_new() {
GregorianCalendar calendar = new ...
5
votes
2answers
30 views
Conversion from miliseconds to Unix Timestamp from different times gives same result
I have two variables:
tempTimeRequests
timeLastUpdateRequests
Both are given in milliseconds since epoch.
I'm facing a bizarre behaviour from js:
the result I get for
alert(
...
1
vote
1answer
29 views
CScript:Timestamp since epoch in miliseconds?
I need to get the current time-stamp in mili-seconds since the Unix epoch.
I got
WScript.Echo DateDiff("s", "01/01/1970 00:00:00", Now())
from answer to this question:
Is there a way to get ...
0
votes
0answers
9 views
.NET return time since Unix Epoch
Hi I was wondering if there is a way to return time since Unix Epoch if given a normal date/time? I'm using a language based off of .NET, and have the date formatting options of .NET at my disposal. ...
0
votes
1answer
22 views
Postgres: how to convert from unix epoch to date?
The statement gives me the date and time.
How could I modify the statement so that it returns only the date?
SELECT to_timestamp( TRUNC( CAST( epoch_ms AS bigint ) / 1000 ) );
1
vote
3answers
71 views
Calculate how many hours since the epoch?
it's a simple question, but I'm nervous about how complicated the answer might be.
I want to know in my application, how many hours have passed since the epoch. More specifically, I want to know "how ...
2
votes
3answers
77 views
C++ time(NULL) gives inconsistent results
I have the following function to get the seconds since epoch for midnight of the present day.
long int midnight_time()
{
time_t t;
struct tm *local;
t = time(NULL);
struct tm timeinfo;
...
1
vote
3answers
57 views
json datetime to javascript datetime gets me wrong date
I am trying to convert datetime from the server in the form of JSON to something I can use in HighChart but I keep getting the wrong day.
var json = {"lastMinute":"2013-05-06 15:46:00"}; // GMT
var ...
0
votes
0answers
54 views
Pandas: convert csv file to epoch format time
I want to read a csv file with pandas (python), in which first col is a date in YYYYMMDD and second is a time in HHMMSS. Option parse_dates allow me to read the date only. I'd like to obtain another ...
1
vote
1answer
46 views
Bash convert epoch to date, showing wrong time
How come date is converting to wrong time?
result=$(ls /path/to/file/File.*)
#/path/to/file/File.1361234760790
currentIndexTime=${result##*.}
echo "$currentIndexTime"
#1361234760790
date ...
6
votes
2answers
68 views
Why is the ColdFusion epoch time one hour behind the javascript epoch time?
I am writing an application where I need to get the epoch time on the server side using ColdFusion 8 running on Windows Server 2008 and client side using javascript (testing in Google Chrome). The ...
0
votes
2answers
54 views
Converting Java Date to Epoch gives wrong result
I am converting java Date object to epoch using code :
String str = "" + date;
SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd HH:mm:ss.SSS");
Date formateDate = ...
4
votes
1answer
88 views
monetdb-timezone difference in epoch function output(converting int to datetime format)
Q1: I want to convert a unix timestamp (INT) to monetdb timestamp ('YYYY-MM-DD HH:MM:SS') format
but it is giving me the GMT time not my actual time.
When I do
select (epoch(cast(current_timestamp ...
0
votes
1answer
54 views
Incorrect epoch date in node.js using thrift
I seem to be getting a different epoch date value in node.js for a thrift object than what is stored in the mongo database and returned by the service
Thrift definition file (thrift v0.9.0), I have
...
-2
votes
2answers
169 views
Day month and year algorithm using Gettimeofday() in C [duplicate]
Im required as part of a lab to devise a way to calculate the current month day and year. I'll be using the gettimeofday() function which gives me the number of seconds since january 1 1970.
I know ...
0
votes
2answers
40 views
Epoch and wireshark capture
I have a .pkt sniffer capture. When I read each and every packet within the capture from my C application, I observe a radio header appended. The radio header contains the time in epoch for each and ...
0
votes
2answers
92 views
Convert epoch to Date
I want to get Today's date in epoch or milisecs, but with the time part set to start of today i.e. 24:00(midnight)
For example
At the moment time is 10-APR-2013 17:56:44.455 which in
mili-seconds ...
0
votes
1answer
57 views
Unix Timestamp -> Human readable error
I have followed guides, read many answers on this very website, but I cannot get a unix epoch time to render properly.
This is an example timestamp as taken from the JSON file output.json
...
0
votes
2answers
515 views
Raspberry Pi - Rainforest EMU-2 - Python - Read time from SCE smart meter
I am now to programming in Python and this is my first project. Any help would be appreciated.
I recently obtained a device from Rainforest that reads my electric meter. The unit has a USB port ...
2
votes
2answers
104 views
Time since epoch is -1
I am trying to get the number of seconds that have elapsed since epoch. The code:
long parseTime(string time) {
cout << "Time entered = " << time << endl;
long ...
0
votes
4answers
168 views
Perl script to convert logged datetimes to UNIX epoch timestamps
I have a log file (datetimes.log) consisting of hundreds of thousands of timestamps of the form:
YYYY-MM-DD HH:mm:ss
For example:
2013-03-28 06:43:51
2013-03-28 06:43:55
2013-03-28 06:44:03
...
5
votes
1answer
257 views
Epoch Seconds to Date Conversion on a Limited Embedded Device
I am trying to figure out the best way to convert from epoch seconds (since NTP epoch 1900-01-01 00:00) to a datetime string (MM/DD/YY,hh:mm:ss) without any libraries/modules/external functions, as ...
1
vote
4answers
158 views
subtracting two days from current date in epoch milliseconds java
I am trying to do something really simple. I am trying to subtract 2 days from the current day. I get the number of hours from the UI. So in this example, I get 48 hours from the UI. I am doing the ...
0
votes
1answer
70 views
How do I find the smallest epoch time that is in today (local timezone) with Perl?
Perl time function is great, but how do I find the smallest epoch value that's in today? Since epoch is in seconds I would imagine that there are many epoch values that will correspond to a given day. ...
0
votes
0answers
158 views
How to manage neural network with simple OR gate in MATLAB
I'm trying to run neural network with simple OR gate. Here is my example:
P = [0 0 1 1; 0 1 0 1];
T = [0 1 1 1];
net = newp([0 1; -2 2],1,'logsig');
Y = sim(net,P)
net.trainParam.epochs = 20;
while ...
0
votes
1answer
109 views
Algorithm with Epoch Time and days months years…C++
Hey guys so Im trying to create a timestamp with epoch time. So far the Hours minutes seconds and milliseconds have been no problem. however I am at a crossroads with what to do with figuring out the ...
0
votes
2answers
79 views
converting seconds from the Epoch into localtime
Suppose I have a few timestamps given as integers (seconds) from the Unix Epoch (1970-01-01 00:00:00Z).
How do I convert them into the proper date-time in the local timezone? I've been looking at the ...
-3
votes
4answers
132 views
How to convert a date YYYY-MM-DD to epoch in PHP [duplicate]
As per title: how to convert a string date (YYYY-MM-DD) to epoch (seconds since 01-01-1970) in PHP
1
vote
1answer
71 views
Formatting Date Using Google Charts and Epoch
I have an epoch 1362873600 and I only care about the date portion, not the time.
My goal is to get:
03/10/13
I'm doing the following:
var dateFormatter = new ...
0
votes
2answers
73 views
How to get the remained seconds until a specified time
I'd expect the following method to return the number of seconds remained until a specific time in future within the current day. e.g if current time is "19:00", GetRemainedSeconds("19:01") should ...
3
votes
1answer
83 views
Representing dates before epoch
We have a bespoke datetime C++ class which represents time in number of seconds passed since epoch. This is stored as int64. This class provides number of helper functions to read and write various ...
0
votes
1answer
36 views
Strange DateTime format
Please help me to figure out how to parse this strange date-time string with ruby:
"TimeStampUtc": "\/Date(1328696521000+0000)\/
"Date"=>"/Date(1365703200000+0100)/
1
vote
2answers
65 views
sql return dates where there are no results
I want to get a table of results showing the dates that X has entries
SELECT count(*),
date_column
FROM myTable
WHERE X
GROUP BY date_column
ORDER BY date_column DESC
This works, but I would ...
1
vote
3answers
163 views
sql statement, now - 6 months in unix/epoch time
my database is using an integer in epoch time for date in this table.
I want to do something like this:
select * from myTable where date_column > CURRENT_TIMESTAMP - 6 months
I'm not sure how to ...
0
votes
1answer
79 views
How to create a timestamp previous the epoch [closed]
I am trying to create a timestamp previous the epoch time,
for a registration form for the birthday fields, people were born before 1970 whom are alive, and I'm working to check if the time from ...
-1
votes
2answers
85 views
How to use EPOCH time in java?
I have to send a message with current time(EPOCH) of the system and which will be sending according to following details. also EPOCH time send in nano seconds.
field - current_time
type - UINT64
byte ...
0
votes
2answers
107 views
epoch conversion in python
While processing logfiles, I need to compare epoc and human-readable timestamps.
epoc=time.strftime("%d.%m.%Y %H:%M - %Z", time.localtime(1358252743927))
print epoc
and
...
1
vote
2answers
342 views
How do I get current time in milliseconds in Loadrunner?
I am looking for the equivalent of Java's System.currentTimeMillis() in Loadrunner. I could only find lr_save_datetime("%x%X", 0, "now"); which outputs in date and time format but not the time since ...
1
vote
3answers
106 views
Converting date to epoch time in clojure or jython
I am looking for formula to convert a date to epoch time in OpenRefine. I know GREL language doesn't support this but I wonder if clojure or jython does, and if so how?
I am not familiar with those ...
0
votes
0answers
40 views
How to select rows with an epoch time
I'm looking to select all users in my database with an epoch time of 1341100801 or less. Essentially I am pruning users based on their last login date.
Below is the query I've built so far, it ...
0
votes
6answers
81 views
date() function outputting wrong result - PHP
Here's what i did -:
Generated the UNIX_TIMESTAMP result in mysql. It came out
1360756718 seconds.
Since I am in GMT +5.30, got the number of seconds in 5 hrs and 30 mins. Result was 19800 seconds
...
0
votes
2answers
71 views
Triggering an MySql event scheduled in epoch time
How would I trigger a query, say, change a column state (boolean), to happen in certain epoch time using PHP?
I'm guessing it'd be something like, mysql query -> create event -> define alter
What'd ...
1
vote
2answers
167 views
Convert Epoch Time string to Time
I've been looking for a way to convert a string (in Epoch time) into a date.
Basically, I need to take this: 1360440555 (in string form) and make it into this: Feb 9 12:09 2013.
I've been looking ...
1
vote
1answer
138 views
Converting from an integer epoch time value to local time
I've been stuck on converting from an integer epoch time value to a local time.
I currently have the time since epoch stored in an integer variable, and I need a way to convert that to local time.
I ...
1
vote
1answer
341 views
How to convert Unix epoch time in sqlite
Could you help me convert Unix epoch time into format yyyy-mm-dd hh:mm:ss(24h) in sqlite?(GMT+7 is very appreciate).
Ex: from 1319017136629 to Wednesday, October 19, 2011 4:38:56 PM GMT+7
Many ...
0
votes
3answers
293 views
convert unix epoch time to human readable time
First I have an Unix epoch time 1270787111.
Then based on this website:
http://untangible.com/2009/01/covert-unix-epoch-dates-in-microsoft-excel-including-timezone-examples.html,
I convert the ...
0
votes
2answers
93 views
Need help to resolve the issue when converting epoch date to human readable format - Javascript
My java script application uses .net web service to get the data from back end. Everything works fine except for date / time conversion. I need to convert the epoch date returned by service to user's ...
-1
votes
1answer
327 views
Convert unix epoch timestamp to TSQL timestamp
I have found only one similar question but for MySQL.
I was working on a web service and had to query the database (MS SQL server). Since I couldn't get the right result I decided to test the query ...
2
votes
1answer
155 views
Converting Epoch time to an H:mm timestamp in PHP
This seems like there should be a very easy solution, however everything I'm trying is either giving me an error or the wrong result.
I'm pulling data from a MySQL table and the time is stored in the ...
2
votes
3answers
274 views
UTC time in ticks (since 01/01/0001 00:00:00)
I'm trying to integrate with a third party service that wants to know how many "UTC time in ticks (since 01/01/0001 00:00:00)" have passed.
What is a tick?
Assuming it's a second (and I don't know ...





