time

With python: intervals at x:00 repeat

How do I sched a repeat timer for 5 min intervals. Which fire at 00 seconds, then repeat at 00. Ok, not hard real-time but as close as possible with sys lags. Trying to avoid a build up in lags and get near 00. Lang: Python, OS: WinXP x64 System has 25ms resolution. Any code would be helpful, tia ...

R: Filling missing dates in a time series ???

Hello I have a zoo time series with missing days. In order to fill it and have a continuous series I do... I generate a chron date-time sequence from start to end. I merge my series with this one. I use na.locf to substitute NAs with las obsservation. I remove the syntetic chron sequence. Can I do same easier? Maybe with some index...

PHP time function giving wrong time?

On my website, I use the php time() function to display the time. A week ago I compared the time difference between the time returned by the time() function and the time on my computer(I use windows). The time difference was about a minute and 10 seconds but now I checked again and the time difference has grown to a minute and 50 seconds...

Optimising page processing by creating advanced SQL query

Hi there. I have this weird code on site. It gets all records (order by pozycja), then it creates some kind of stack and limits shown records to 10. However if there are over 200 records, it takes too long, because it's processing whole table, instead of 10. Values used: $int_ilosc_na_strone = 10; $liczba_wierszy = 200; Podzial_na_pod...

How do I measure time in C?

I want to find out for how long (approximately) some block of code executes. Something like this: startStopwatch(); // do some calculations stopStopwatch(); printf("%lf", timeMesuredInSeconds); How? ...

linq query lock issue (linq to sql)

I got a linq query time out exception. After a bit search online, using TransactionScope to make it 'nolock' gets my vote. However, after using the below code, i still get the same time out exception. Any help is appraicated, thanks in advance. IEnumerable<IGrouping<string, Log>> grps = logs.GroupBy(l => l.msg_shortdesc); using (var t =...

Rails Time inconsistencies with rspec

I'm working with Time in Rails and using the following code to set up the start date and end date of a project: start_date ||= Time.now end_date = start_date + goal_months.months I then clone the object and I'm writing rspec tests to confirm that the attributes match in the copy. The end dates match: original[end_date]: 2011-08-24 ...

Analyze SVN/GIT repos to determine how much work is actually done?

One of my clients is using an out-of-state programmer for a project. He can't really figure out how much work the programmer is actually doing, so he's afraid that money is potentially going down the drain. What I'm wondering, is it possible to use a SVN or GIT repository to calculate or estimate how much real work is actually being don...

c# time calculations

Hello, Does someone knows how to calculate the total hours between 2 times? For example if a worker clocks in at 8:00 and out at 16:00, I would like to know that in decimal it's 8.0 hours and it's 8:00 hours. I'm using C# framework 2.0. The variables that hold the in and out time are of type string. TY ...

change time to EST in php and store in mysql

I have a report which will give me the time field as $time='Wed, 25 Aug 2010 13:43:38 +0000'. I am currently storing this into my MySql DB exactly like this and generating a custom report with the same time. I am in EST time so i want to know how i can change the $time field to show it according to 'Wed, 25 Aug 2010 09:43:38 '. i want t...

Best way to manage date objects?

I have some date objects that are Date of the Date class, and others that are Time. The trouble is is that when I parse them to load them chronologically, they list first as the Times, followed by the Dates. This is the code that loads them : query.any_of do |any_of| any_of.with(:date).greater_than((params[:current_date] || Date...

Representing Time (not date and time) in C#

Hi, I'm developing an app that requires the notion of opening times (A bit like a shop) How best to represent these? They will be persisted in a DB later... So far I have the following class: public class OpeningTime { public DayOfWeek DayOfWeek { get; set; } public DateTime OpeningTime { get; set; } public DateTime Closin...

Best GMT time configuration by user | PHP

I was wondering how to do the best user configuration when the user sets his own GMT time, e.g. if a user was in the GMT+3 timezone and the user sets it via the UCP. What I've done was, every option in the drop-down menu: <select name="timezone"> ... <option value="-7200">GMT-2</option> <option value="-3600">GMT-1</option> ...

Writing php Time() to mysql using

I want to log the time that a user posted a message and display it in a Twitter like fashion. I found a function that does this but it does not work with mysqls Timestamp type. In the instructions it says that it uses the time()format to calculate it. How should I be writing the times to my Database in order for it to work??? This is...

Excel: VBA and refreshall ended message?

This is Excel 2003. I'd like to know how long it takes an external query to complete and then update a cell in my spreadsheet with that ET. I have the following, but it doesn't work because the ET is only as long as it takes to initiate the refresh: Sub Refresh() Dim StartTime, EndTime, ET StartTime = Timer ActiveWorkbook....

Programmatically managing a 'balance' of time (sick/vacation)

I'm using Python/Django, but this is more about the "data model" and how I interact with the information - I really just want to know if I'm crazy here. I'm working on a small app at my company (~55 employees) that will keep track of available Vacation/Sick time. Part of the purpose is to integrate "self-service" into our intranet, so ...

Is it possible to change the current time of a thread or jvm instance in java?

I want to test some class methods that contain logic dependent on the current time it is running. I'd like to set the thread/jvm/system time to a specific future date in the JUnit setup and run my tests. Also I would like this to be temporary. Has anyone done this before? I was thinking of something similar to TimeZone.setDefault(timezo...

Modify Time for simulation in c++

Hi everyone, i am writing a program which simulates an activity, i am wondering how to speed up time for the simulation, let say 1 hour in the real world is equal to 1 month in the program. thank you the program is actually similar to a restaurant simulation where you dont really know when customer come. let say we pick a random num...

how to get current time and then compare them using jquery .

this is my code: var currentTime = new Date() var month = currentTime.getMonth() + 1 var day = currentTime.getDate() var year = currentTime.getFullYear() var hours = currentTime.getHours() var minutes = currentTime.getMinutes() alert(minutes+"/"+hours+"/"+month + "/" + day + "/" + year) but , i think it hard to compare with two t...

"Hour:Minute" difference from two "Hour:Minute" strings

Simple, eh? -sigh- A function. Two string arguments ( I guess it doesn't matter the type). Returning a string which is the time difference between the arguments. Think about it as a counter at your local CS internet-caffe. function time_diff($start, $stop) { ... return $diff; } echo "Your time playing CS: " . time_diff('19:37'...