Measuring the time it takes to perform an operation. Also, questions related to obtaining the current time, calculating on times, formatting and parsing times, etc.
0
votes
0answers
25 views
Select Both Sets of MIN and MAX Entries for Time Clock
I am trying to select, in one row, both the first and the last pair of Time Clock entries for each employee per day. Essentially, I am looking for the following output.
EmployeeID | ClockDateOnly ...
0
votes
1answer
42 views
Calling Maple in Unix-shell without shell time overwriting
I have a question: I want to time some calculations using the UNIX-time command and I figured out that Maple (I use version 16) on Ubuntu 12.04 LTS (and some other machines I tested, including Macs) ...
0
votes
3answers
38 views
How would I interpret time in an if/else PHP statement?
$currentTime = date("Hi");
if($currentTime > 0559 && $currentTime < 1401) {
// Stuff here
}
That's my current code, but the if statement seems to be running any time after ...
1
vote
0answers
51 views
How can I convert timezone of one City to another?
I want to convert timezone of one city to another, using Joda DateTime, the process is straight forward, but I have a problem.
I am referring to Joda Database and I am unable to locate specific ...
0
votes
2answers
84 views
Measure running time of C++ and CUDA code
I have a function look like this:
int doSomething() {
<C++ host code>
<CUDA device code>
<C++ host code>
<...>
}
I would like to measure the running time of ...
0
votes
1answer
45 views
Can't calculate correct difference between two timestamps
I am creating a WordPress plugin, and what I want it to do is store a UNIX timestamp in the database and then update the DB entry if an hour or more has elapsed.
Here is a code snippet from my ...
-1
votes
0answers
15 views
Is it possible to display the total time taken by an over file download on chrome or firefox? [closed]
I download several files through chrome or firefox, and I want to know how much time it takes to download each of these files.
I search for plugins or software to get this information and don't find ...
0
votes
3answers
40 views
Get hours between a unix time value and now
I'm using the Highcharts library to create some nice looking reports.
I have a collection of unix time values and I need to convert them to the amount of hours between that date and "Now".
series: ...
0
votes
2answers
30 views
Converting a difference of 2 24-hr times into time
Forgive me for my ignorance if its too easy and if its not the right place to post. I have 2 24 hours times strings as 1544 and 1458. Their difference should be 46 minutes but when I subtract them it ...
0
votes
0answers
25 views
Display two month calendar in Any+Time™ DatePicker/TimePicker
I'm using Any+Time™ DatePicker/TimePicker plugin for my site.
I like to show two months calendar when I click the date field. Currently, Any+Time™ DatePicker/TimePicker allows me to show only one ...
5
votes
2answers
76 views
Get breaks from a list of times
I have a list of work items. Each work item has a start and an end time.
So, basically it looks like this:
List<Work> works = new List<Work>();
works.Add(new Work(
new DateTime(2013, ...
4
votes
4answers
68 views
adding / subtracting time in JS
Lately I was playing with JS and I found something interesting. That is what I wrote into chrome console:
today = new Date()
-> Mon Apr 29 2013 13:06:01 GMT+0200 (CEST)
DAY = 1000 * 3600 * 24
...
0
votes
2answers
45 views
Searching a shorter way to display time in digital format?
Can this snippet been shorten, so that it still shows the current time
Like this: 08:24:09?
and not like this 8:24.9
My current Code:
this.lblClock = new System.Windows.Forms.Label();
...
0
votes
1answer
52 views
Java socket timed out error
We made a multiplayer game as a facebook application which uses php ve mysql connections thru java extension frequently to update logs and stuff. We can see CPU usage, memory, load, I/O values, Java ...
0
votes
0answers
27 views
Time series in R (and prediction) [migrated]
I have this data (vik):
Semana Pag5
1 1/2012 0.9613181
2 31/2012 0.9532129
3 32/2012 0.9676404
4 33/2012 0.9566747
5 34/2012 0.9656063
6 35/2012 0.9712099
7 36/2012 0.9770333
8 ...
0
votes
1answer
42 views
Select between two times and dates in SQL PHP
I am trying to find a way to select the row from database which the dates are between yesterday 5p.m. and today 4:59p.m.
The database are filled with orders and I am trying to make it display all the ...
2
votes
2answers
35 views
Need client-side time to mirror server-side time
I need client-side time to mirror server-side time. Are there any best practices around this?
I'm not sure how exactly I would go about making sure the two match.
Thanks!
1
vote
1answer
53 views
how to use lag function in the calculation in sas
I"m lost with lag function; Here below is what I'm trying to do.
data out;
set in;
by a;
y = 0.5 ;
y = lag(y) * ( 1 - x); end;
run;
"in" table only have X and sequence value A ,What I ...
-1
votes
3answers
184 views
Converting (YYYY-MM-DD-HH:MM:SS) date time
I want to convert a string like this "29-Apr-2013-15:59:02"
into something more usable.
The dashes can be easily replaced with spaces or other characters. This format would be ideal: "YYYYMMDD ...
0
votes
2answers
31 views
How can I create a subdirectory that is a datetime stamp of the format YYYMMDDHHMMSS?
How can I create a subdirectory using BASH shell that is a datetime stamp of the format YYYMMDDHHMMSS? I am using mkdir ~/$(printf "%s" `date +"%Y%m%d%H%M%S"`) but keep getting unprintable ...
2
votes
4answers
63 views
converting a list of times to total time [closed]
I have 3 lists, one for hours, one for minutes, and one for seconds. What I have done is create a function that will take 3 lists as input and calculate the total amount of time.
My issue is that the ...
0
votes
1answer
29 views
PHP strtotime with multiple variables
This is my PHP code:
$timestamp2 = strtotime('13:30 04/12/2013');
But, I want to put the these variables in this code:
$mi = mysql_real_escape_string($_POST['mi']);
$ho = ...
1
vote
1answer
65 views
Beginner javascript hour function
I am very new to javascript and would appreciate some help in understanding this problem.
I am trying to write a function that that checks if the current hour is between hourOne and hourTwo, this is ...
3
votes
1answer
198 views
C: How to print time difference in accuracy of milliseconds and nanoseconds?
I have this program which prints the time difference between 2 different instances, but it prints in accuracy of seconds. I want to print it in milliseconds and another in nanoseconds difference.
...
2
votes
2answers
56 views
converting start date to datetime as beginning of the day and end date to end of the day
Store PROCEDURE
--para--
@StartingDate DateTime = NULL,
@EndingDate DateTime = NULL
--condition --
dbo.callentry.CallDateTime BETWEEN ISNULL(@StartingDate,
...
0
votes
1answer
51 views
Getting String between Div with the help of Class Name
HTML is:
<div class="topheader-left common-txt" style="color: #ffffff;vertical-align:top;padding-top:3px">
Sunday, ...
1
vote
2answers
35 views
Convert string of UTC time to more readable format
I'm receiving a string containing date and time (in UTC format) for when something was created. The string looks like this: "Wed Mar 13 14:10:20 +0000 2013". Now, I need to convert that to a more ...
0
votes
2answers
43 views
Doing a Timed action without Interrupting the Main Thread
I have a Thread that needs to continuously run, however when a certain action is called, I want to wait 500ms, and then do another action, without interrupting the main Thread. Is there any way to do ...
0
votes
2answers
36 views
How do I count and group by time column per the last three months in mysql?
Hello I'm having trouble with my code. With mysql i'm trying to get a count of 'id' column in a purchases table based for the last 3 months..
So i want to count how many purchases made in the last ...
0
votes
1answer
25 views
Time in string format to using strftime
I am trying to change a time of an event I pulled from Facebook which comes in a hash with time as a string. eg:
"fbevents" =>
{
"event1" => "2013-04-27T08:00:00-0400"
"event2" => ...
-1
votes
2answers
66 views
Java - Flight Schedule [university's homework] [closed]
I'm supposed to program a flight schedule and ran into a little problem.
The user has to insert:
Departure Day (1 - 7, when 1 means the first day of the week and 7 the last day of the week).
...
0
votes
1answer
90 views
how to measure gpu vs cpu performance , with which time measuring functions?
what libraries or functions need to be used for rectified time measurement of those in terms of objective comparison? what also be a Caveat that is need to be considered for the sake of accurate ...
0
votes
1answer
24 views
Avoid Rounding Error on Double -> Date conversion
In my program, I receive strings that define a time stamp in milliseconds. Now I need to convert this to a proper date. The solution I found looks something like this:
String aTime = ...
0
votes
0answers
16 views
Time measurement in jocl with profilinginfo, strange behaviour
To measure the execution time of an Opencl - Kernel in jocl,
i use the following method:
private CLEventList startEvents;
private CLEvent startEvent;
In constructor i makte startEvents = new ...
0
votes
1answer
101 views
Get the time duration of an mp3 file in Seconds and MiliSeconds using java J2SE
I have successfuly played an mp3 file in java desktop app now what i want is to know that is it possible for me to get the total time duration of an mp3 file playing to be played.
So that i can manage ...
1
vote
2answers
54 views
Create query statement to output records within a ROLLING time interval
What I am attempting to do is create a SELECT statement searching for duplicate cell values within a rolling 30 minute window. From a table that records every alert sent out to the DBA team.
Here is ...
0
votes
1answer
60 views
Puzzle Solver - Determining what variables belong together based on given facts & constraints by calculating probabilities
Before I say anything else - the problem may look lengthy but it's actually just 1 problem in the core, that kind of gets repeated. I'm trying to create a "puzzle solver" that has to do with ...
0
votes
1answer
58 views
The accessing time of traversal a array via a constant length
I want to measure the speed of the cache (I asked a question about that), so I write this code:
#include<cstdio>
#include<ctime>
#include<windows.h>
const int mod = 100000007;
...
0
votes
2answers
58 views
php mysql storing just hours minutes seconds
I know a typical timestamp in any format readable or otherwise is always equivalent to a date time second day month year etc. However I want to be able to search by hours minutes seconds where the day ...
2
votes
1answer
51 views
Is it possible to connect desktop's date to microsoft excel?
I have this incubator for chicken eggs and I want to make an excel file where I can put the details of the eggs that I put in the incubator, like date of incubation and date of hatching, so I can ...
-2
votes
0answers
25 views
Wordpress plugin to show archive [closed]
Im searching for a wordpress plugin that shows a archive menu in each page in the following manner:
Today
Yesterday
This week
Last week
This month
Last month
Earlier
Does someone know if such a ...
0
votes
3answers
95 views
Remove time from a date/time string using jQuery
What is an efficient way to strip the time from this returned dataset using jQuery? I need the time to exist in the database because of ordering purposes however I need to display only the date.
...
0
votes
3answers
47 views
How to convert java time to date in oracle table?
I have table with column write_date type NUMBER.
I found that in that column saved Date.getTime();
Does exist Oracle function that can return me date like DDMMYYYY ?
Thanks
1
vote
1answer
22 views
How to determine Calendar timezone in Outlook
I've got this calendar time:
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN
BEGIN:VEVENT
UID:node-447@www.domain.com
DTSTAMP:20130426T133000Z
DTSTART:20130426T133000Z
...
2
votes
1answer
48 views
Grails: Intercepting the beginning of a request
I'd like to time an upload. Therefore, I'd like to know when a socket connection started for the request, and when it ended.
I looked at the beforeInterceptor and afterInterceptor, but I'm under the ...
1
vote
2answers
35 views
Time conversion returning null
My script:
$start = strtotime($color_date);
$end = strtotime($accessory_date);
$days_between = ceil(abs($end - $start) / 86400);
The $days_between result should be an integer, but it's returning ...
-3
votes
1answer
52 views
Improve R script efficency
I am trying to match two very big data (nsar & crsp) sets. My code works quite well but needs a lot of time. My procedure works the following way:
Try match via ticker (thereby controlling that ...
0
votes
1answer
60 views
Android: Measuring time spent on another app from current activity
I have an activity and using an intent I call a certain portion of another app. That is lets say my app A has an activity 1 from which I call activity 1 of app B which I have no control over using the ...
0
votes
3answers
59 views
Time Calculation Between two timestamps
I have two timestamps provided by time() and stored in database as varchar
now i want to calcultae the differenec between two times
one is 1366627990,
and the other one $time2=time();
i used a ...
-1
votes
2answers
53 views
Using time-stamp to retrieve the date and time separately. (mysql)
Is timestamp in mysql able to retrieve the date and time separately?





