0
votes
0answers
38 views
GDI+ gif speed problem.
I am using C++ GDI+ to open a gif
however I find the frame interval is really strange.
It is different from played it by window's pic viewer.
The code I written is as follow.
pM …
0
votes
1answer
79 views
intersect time intervals and generating new ones depending on intersect-results
hi there,
i've got two tables with time intervals and some settings for each interval, eg
2009-01-01T06:00:00 2009-01-04T14:00:00 1 0
2009-01-04T22:00:00 2009-01-07T06:00:00 …
1
vote
2answers
26 views
css width interval
Ok, here's a problem I've never run into before. I would like to use CSS to specify that an elements width should always be in 10 pixel intervals. So, for example, if the width of …
1
vote
1answer
70 views
Oracle Date subtraction with SQLLDR
Hi,
I am trying to import NetBackup statistics into Oracle. One field I really want is ACTIVE START, but it isn't available from bpdbjobs -report. What is available is ACTIVEELAPS …
1
vote
2answers
110 views
Checking whether clearInterval has been called?
Given this code:
bob = setInterval(function, 1000);
clearInterval(bob);
Is there now a way to know if that interval has been cleared?
Currently, I keep track of this myself, by …
0
votes
2answers
98 views
How to get unix timestamp interval between two datetime values most efficiently in MySQL?
This way surely works,but it calls UNIX_TIMESTAMP 2 times:
mysql> select UNIX_TIMESTAMP(now()) - UNIX_TIMESTAMP('2009-09-23 22:07:42');
+--------------------------------------- …
4
votes
1answer
159 views
Create a jQuery special event for content changed
I'm trying to create a jQuery special event that triggers when the content that is bound, changes. My method is checking the content with a setInterval and check if the content has …
1
vote
4answers
278 views
jQuery DIV refresh
I'm using the simple jQuery DIV refresh code.
var refreshId = setInterval(function()
{
$('#refreshdash').load('dashboard.php?cache=');
}, 4000);
Right? Some guy infor …
1
vote
5answers
220 views
python time interval algorithm sum
Hello
Assume I have 2 time intervals,such as 16:30 - 20:00 AND 15:00 - 19:00, I need to find the total time between these two intervals so the result is 5 hours (I add both interva …
0
votes
2answers
113 views
C Programming How to find the time interval between events
Im using a handyboard and interactive c software and the task is to find the rpm of a lego motor in real time using an Infrared "Break Beam" Sensor on the wheel. I was thinking abo …
1
vote
4answers
99 views
MySQL - return only entries from the past X days
I'm working with a database that has date information stored as a Unix timestamp ( int(11) ) and what I want to do is only return entries from the past X days, the past 90 days for …
0
votes
1answer
88 views
How does one break out of a Set Interval in Action Script 2
p2 = setInterval(function ()
{
clearInterval(p2);
some code here;
}, waitTime)
I need to break out of this interval in a separate function.
This plays an array of SWF movies - th …
2
votes
6answers
181 views
Python: Mapping from intervals to values
Hi, I'm refactoring a function that, given a series of endpoints that implicitly define intervals, checks if a number is included in the interval, and then return a corresponding ( …
0
votes
1answer
482 views
Using Hibernate HQL to select records where two dates are within a specified interval
I'm trying to use HQL to find records where two date fields are within 1 month of each other.
Query query = session.createQuery("from com.ep.cqprojects.db.Projects "
+ "where …
1
vote
3answers
182 views
Union of intervals
I've got a class representing an interval. This class has two properties "start" and "end" of a comparable type. Now I'm searching for an efficient algorithm to take the union of a …
