Tagged Questions

1
vote
3answers
51 views

How can I check if SQL server is alive?

I have a method to check and make sure my SQL server is online, which I use in some connection sensitive parts of my code. Although it works fine, I notice it takes upto 20ms to run, and I was …
0
votes
1answer
52 views

How to create a heart rate monitor using iPhone sdk? [closed]

Possible Duplicate: detecting heartbeat peakpower using iphone sdk? I've seen some application that detect your heart rate or pulse rate through mic/earphone does someone knows how to …
1
vote
1answer
78 views

what is peak and average power of heart pulse. [closed]

hi i want to know what is peak and average power of heart pulse if i recorded heart pulse in a sound file. Thanks
-2
votes
2answers
53 views

detecting heartbeat peakpower using iphone sdk?

Hello all, i want to detect heart rate using iphone sdk does someone knows any method for calculating heartbeat rate?
0
votes
1answer
41 views

What are your opinions of DRBD/Heartbeat for replication and failover for the Firebird RDBMS?

I am researching the possibility of using Firebird for a project. However, one potential problem is replication and failover, or rather, lack of a (subjective) "good" solution. There are several …
0
votes
3answers
206 views

setTimeOut() is not working with AJAX

In my application i want to send something to the server after some time. I have implemented it using AJAX. But it works for the first time but not doing it recursively. I have used setTimeOut() for …
1
vote
5answers
307 views

Creating a “Heartbeat” or Windows-Service-Like functionality in Asp.Net

I've heard Jeff and Joel discuss on a podcast what they called a "Heartbeat" which essentially is creating something that acts similar to running a windows service in an website. I was hoping to get …
0
votes
6answers
486 views

How can I guarantee a “stay alive” heartbeat is sent?

We have an RMI client application written in Java which needs to send periodic "stay alive" messages to a server application. We have implemented this as a separate heartbeat thread, which sends the …
3
votes
4answers
622 views

What is the best way to implement a heartbeat in C++ to check for socket connectivity?

Hey gang. I have just written a client and server in C++ using sys/socket. I need to handle a situation where the client is still active but the server is down. One suggested way to do this is to …
1
vote
2answers
108 views

Polling a webpage periodically

I have a website where I need to poll a webpage in every minute or so. The page on the server will perform different task. I am trying to use Windows Scheduled Tasks, but that cannot be set to run in …