Tagged Questions
The periodically tag has no wiki summary.
9
votes
5answers
1k views
Recurring tasks in a Ruby On Rails application: Cron or other?
I am currently writing an application that pulls new information from RSS sources and has to update those RSS sources in a certain frequency. Currently I am pulling only when the user requests a feed ...
7
votes
3answers
447 views
How to perform actions periodically with Erlang's gen_server?
I want to start a gen_server that additionally, will perform one action every minute.
What is the best way to schedule that?
6
votes
3answers
4k views
eclipse autosave plugin
Im looking for plugin for eclipse that automatically saves files(so i dont have to use Ctrl+S). it could do it on focus lost or over some period of time. I think I saw something like that(I know IDEA ...
5
votes
3answers
358 views
c# windows service or just normal program? [closed]
Possible Duplicates:
windows service vs scheduled task
Windows Service Vs Simple Program
I'm trying to create a program that runs periodically (say every 5 minutes), or have the program ...
5
votes
7answers
2k views
How to make Subversion (or any program) perform periodic commits?
I want to configure my computer so that say every half an hour it automatically commits the program I am working on. I am using a svn repository so even if it was just a script that ran 'svn ci' every ...
3
votes
5answers
274 views
Run a C# Application periodically to update database
I would like to know whether it is possible to run a C# console or ASP.NET application periodically.
My purpose is to automatically do the following steps once a month:
1) Query a Source database.
...
3
votes
4answers
926 views
Licensing checker longevity of the “activated” status. How frequent is too much for the user?
SKIP TO THE BOLD PART if you don't want to read it all.
Hi, simple question here. I couldn't find it on the official documentation (don't you just love the Android help? :) ). I've also read about ...
3
votes
3answers
453 views
jQuery function to load Rails partial?
I have a jQuery function that updates my data ever few seconds.
But! It's not parsing the javascript it's loading. It just calls it appropriately every few seconds, and replaces my content with ...
3
votes
2answers
666 views
Periodic tasks inside WCF service hosted in IIS
We would like to have some periodic actions executed by our WCF service hosted in IIS. What is the best way to do this...Creating a timer doesn't look as a good solution. Creating a windows service ...
2
votes
5answers
84 views
Updating a database record every month
I need to update some user records in my database every month (specifically, give them credits that belong to their subscription), starting the day they sign up. I thought of doing it this way:
Once ...
2
votes
3answers
127 views
Rails: periodically_call_remote then redirect
I got to check some db values with a periodically_call_remote function.
Now I want to redirect if some values have already a certain state.
How to do this? redirect_to in the function does not seem ...
2
votes
1answer
215 views
How to play sounds periodically on Windows Phone 7?
With the new WP 7.1 they added Background Agent to play sound files from within your application, and TaskScheduler Agent to run tasks periodically.
However:
@1 I want to play sounds periodically ...
1
vote
1answer
40 views
Running task periodicaly(once a day/once a week)
I want to run some task(i.e. get my web site news page) periodically(once a week/ a day), even if my application is closed. Is it possible?
1
vote
2answers
17 views
Name for a function that depends on time passed?
I currently have a function updatePlayerData which has as input a player object and the time that has passed since the last call to the function, and performs actions like energy -= energyDecrease * ...
1
vote
1answer
74 views
how does mootools make periodical() work the same in all browsers?
If you use setInterval with some code, the speed is different in different browsers.
But with if i use the periodical() from mootools the speed is almost exactly the same, how does it do that? can ...
1
vote
3answers
139 views
Save data periodically during execution
I have a program which executes constantly and I need to save data every minute.
The program process data and every minute I want to save the value of a variable and do some statistical operations to ...
1
vote
2answers
209 views
Receive data from NSURLConnection periodically
may be this is a simple question but I could not get any example to work since I am a beginner to iphone development. Here is the issue:
I am using NSURLConnection to receive some data (in JSON) and ...
1
vote
2answers
616 views
Mootools periodical function and time rewind
I have some function taht is caller periodically:
var func = function() {
alert('Hello world!');
};
func.periodical(5000);
This function is also called with click event:
...
1
vote
1answer
287 views
Own params to PeriodicTask run() method in Celery
I am writing a small Django application and I should be able to create
for each model object its periodical task which will be executed with
a certain interval. I'm use for this a Celery application, ...
1
vote
1answer
894 views
Detect if a hudson build is manually or schedule (periodically) invoked
Ive set up deployment in hudson. SVN > Build > copy to production. I need to set up a schedule build to test for build error which is running every hour or so. What i dont want is the schedules builds ...
1
vote
2answers
153 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 ...
1
vote
2answers
263 views
Periodic Windows Server Based Processes
I have some custom programs I've written to do various maintenance/monitoring tasks that I run periodically (some every few minutes, some as little as once a day). Is it a better practice to run them ...
0
votes
4answers
45 views
How to send periodically data from client to server
A part of my program needs to simulate a GPS. So I am setting up a client-server connection. Where on server my main application would run and on client it would send the GPS string periodically after ...
0
votes
1answer
67 views
android : send sms periodically
I have to send sms periodically through my android application to a certain group of people (friends).The messages to be sent will be stored in a database in the application only
I have seen ...
0
votes
1answer
131 views
How to execute a background task periodically in Android?
I'm making an app that starts a Service that sends SMS message periodically under specific conditions. It all works, but I have problems to run the job (check conditions + message sending) ...
0
votes
1answer
41 views
How to delete files of a directory in a web server periodically?
I want to display a file upload demo in my website.
So I need to delete all the files in the uploads directory every one hour.
I am using a remotely hosted platform( linux).
I want to know how to ...
0
votes
0answers
155 views
how to change periodic timer task to a dynamic timer task
I am building a radio streaming application. I need to update the user interface according to the track change. I have the call back time, I need to know how to implement dynamic timer task to be ...
0
votes
2answers
92 views
Periodic Message in Thread
I have a activity (myActivity) and a thread (MyThread) , both with a handler which allow me to send message between the UI thread and myCustomThread.
Now i would like to call periodically (10sec) the ...
0
votes
1answer
33 views
AJAX periodical check until conditions are met
I have an application which communicates with mobile phone gate. User has to send SMS/Text to number and then needs to wait for confirmation.
I'd like to know how to check for response until user ...
0
votes
1answer
243 views
Unix script to kill a process after checking a condition several times and also run periodically
I want to write a unix shell script to run a command 3 times in every 80 seconds and write the every sequence in a different line in a text file. And also if the all results are 10 or more in a line I ...
0
votes
1answer
34 views
When you update a form, would save and replace text, or avoid updating the text?
I have a form in jQuery where I update all the images via a simple ajax call to reload the entire page. Unfortunately the captions are included in that form as well, and as I start writing, my ...
0
votes
2answers
111 views
Return only the new database items since last check in Rails
I'm fairly new to Ruby, and currently trying to implement an AJAX style commenting system.
When the user views a topic, all the current comments on that topic will be displayed.
The user can post a ...
0
votes
1answer
318 views
best way to run a periodic query in mysql
In my Rails application I have a separate process (BackgroundRb) to delete all transactions which are not successful and it must be run after every five minutes. But in BackgroundRb, it runs a ...
0
votes
8answers
951 views
Call function periodically in Java
we need run one function periodically in Java web application .
How to call function of some class periodically ?
Is there any way that call function when some event occured like high load in server ...
0
votes
3answers
79 views
Periodically testing of elements that are added to the DOM after pageload
I've got a page where you upload videos, those videos are then encoded (much like Youtube). The encoding part can take some time and I want to automatically show the user if encoding is done by ...
0
votes
3answers
518 views
Force periodically_call_remote to fire immediately
I have a
periodically_call_remote
that I want to fire right away (as if the code was present without the setTimeout) as well as call periodically. Is there a nice way to do this use PCR, or do I ...
0
votes
1answer
558 views
Mootools Periodical Problems
I am having trouble getting a class function to run periodically with mootools. It runs one fine, but then I get a function is undefined error. The related code can be seen here: ...
-1
votes
2answers
1k views
AJAX call like Facebook
I want to create a little social network (a little test).
How can i implements period ajax call like Facebook ?
I need to update news, status,...
How does it Facebook ?