Tagged Questions
The schedule tag has no wiki summary.
13
votes
4answers
3k views
How do you use FogBugz with an Agile methodology?
"Evidence-based scheduling" in FogBugz is interesting, but how do I use it w/ an Agile methodology?
11
votes
21answers
2k views
Is there a good web-based project management app with scheduling?
Ideally something as intuitive as basecamp, with good usability and accessibility.
The best I've seen is huddle.net but it's still weak in several areas.
Must have:
Projects - ability to add ...
8
votes
4answers
4k views
Schedule Controls for ASP.Net MVC
Are there any scheduling components, commercial or otherwise, for ASP.Net MVC? Our company currently uses the Infragistics WebSchedule controls, but they don't appear to support MVC.
Thanks!
...
7
votes
1answer
2k views
Identify and cancel an alarm send to an AlarmManager
If I use the AlarmManager to schedule an alarm (a PendintIntent which should be send), how can I identify that alarm later to cancel it? Can I cancel all alarms scheduled by my app?
7
votes
10answers
1k views
How do you estimate an agile project up front?
When working on fixed price software development projects, I frequently find myself having to estimate the total number of hours a project will take after the price is set, but before the work is ...
7
votes
15answers
765 views
How to handle unrealistic schedules?
How do you personally handle unrealistic schedules?
Currently I have a high workload (who doesn't) but I am still getting projects added to my list. I am trying to stay positive and motivated but ...
6
votes
3answers
365 views
SQLite statement to query for Recurring Calendar Events
I am designing a Calendar Application, which recurrence None, Daily, Weekly, Monthly & Yearly.
One of my requirements is that "No two events should be overlapping"
Name of the Table where I store ...
6
votes
3answers
864 views
Representing complex scheduled recurrence in a database
I have an interesting problem trying to represent complex schedule data in a database. As a guideline, I need to be able to represent the entirety of what the iCalendar -- ics -- format can represent, ...
5
votes
3answers
243 views
Running a Java method at a set time each day
I'm relatively new to Java and I've pick up a project to work on. However, I've run into a block. I need a method to run at a certain times throughout the day. I've done quite a bit of searching ...
5
votes
3answers
705 views
How do you schedule execution of a Windows Workflow?
I'd like to move my scheduled tasks into workflows so I can better monitor their execution. Currently I'm using a Window's scheduled task to call a web service that starts the process. Is there a ...
5
votes
2answers
526 views
How would one represent scheduled events in an RDBMS?
I have to store scheduled events, (like say class times, for example) that can be organized on a weekly, daily or monthly basis. Events can occur, say, every Monday and Wednesday, or every second ...
5
votes
5answers
1k views
Implementing a Release Schedule
The company I work for is trying to implement a release schedule and I want to get some constructive feedback from people that work in better structured environments than I am in.
We have one ...
3
votes
1answer
87 views
Different behaviour between scalar and parallel code
I'm wondering why the following code produces different results in its scalar and parallel variants:
#define N 10
double P[N][N];
// zero the matrix just to be sure...
for (int i=0; i<N; i++)
...
3
votes
1answer
95 views
Possible to change ejb parameter at runtime for @Schedule annotation?
Probably a silly question for someone with ejb experience...
I want to read and change the minute parameter dynamically for one of my EJB beans that uses the Java EE scheduler via the @Schedule ...
3
votes
6answers
386 views
Swap div visibility based on time / schedule
On my page I have two divs... one div I'd like to be visible from 10am to 6pm ( server time ).... and the other div for the remaining hours.
I tried a bunch of searches to find some sort of a ...
3
votes
2answers
608 views
Can the EJB 3.1 @Schedule be configured outside of the application code?
How can I configure a schedule intervals:
@Schedule(persistent=true, minute="*", second="*/5", hour="*")
outside of the application code?
How can I configure it in ejb-jar.xml?
Can I configure it ...
3
votes
4answers
493 views
Create a summary description of a schedule given a list of shifts
Assuming I have a list of shifts for an event (in the format start date/time, end date/time) - is there some sort of algorithm I could use to create a generalized summary of the schedule? It is quite ...
3
votes
3answers
179 views
What is the best way to make a schedule in MFC
I have a list of items that are each associated with a start and end time and date. What I want to do is, given a time and date range, display only the items that fall within that window, even ...
3
votes
3answers
604 views
How would you build this daily class schedule?
What I want to do is very simple but I'm trying to find the best or most elegant way to do this. The Rails application I'm building now will have a schedule of daily classes. For each class the fields ...
3
votes
1answer
322 views
Is there a known pattern for scheduling events programatically?
Does anyone have a known, solid solution for the scheduling of events (i.e. appointments, meetings, etc) within a system. I'm speaking here of "events" as tasks that need to be done on a one-time or ...
3
votes
11answers
2k views
Scheduled Tasks for Web Applications
What are the different approaches for creating scheduled tasks for web applications, with or without a separate web/desktop application?
2
votes
2answers
29 views
Disabling all schedules in Glassfish 3.1
How can I disable all schedulers (@Schedule annotated) in a project deploing on Glassfish 3.1 Maybe there are some config entries to do this? I have about 20 EJBs with schedulers in my project and if ...
2
votes
1answer
55 views
How to make @Schedule method to be called only once at a time
We are using the @Schedule EJB annotation to start a scheduled job do a delta SOLR import every x seconds. Of course we want to have as less timeshift in indexing as possible. Currently I try to do ...
2
votes
3answers
350 views
Have an EJB schedule tasks with “crontab syntax”
I am trying to figure out the possibilities I have to solve the following problem.
a) I want to have a database table that uses "crontab syntax" to schedule tasks, the structure would be something ...
2
votes
2answers
66 views
Any approach to show threads switch?
all, Is there any approach or tools to show the process of thread switch, that is, I can know at any specific time, the CPU is taken by which thread, as well as the time context switch costs, thanks
2
votes
5answers
332 views
How can I schedule an email to be sent at some point in the future in django?
I want to schedule an email to be sent to a user upon a specific action.
However, if the user takes another action I want to cancel that email and have it not send.
How would I do that in django or ...
2
votes
2answers
2k views
How to schedule my android app to do something every hour
I want my app to access database every hour and read next record from the table then update desctop widget and send notification. I know that there is AlarmManager which I can use to register my ...
2
votes
1answer
104 views
Scheduling events in a WSGI framework
I've written a Python app that reads a database of tasks, and schedule.enter()s those tasks at various intervals. Each task reschedules itself as it executes.
I'd like to integrate this app with a ...
2
votes
4answers
216 views
How to “make something” in a specific time and day of the week in java?
I have an application that needs to play some specifics audios(mp3) periodically. Let me give one example: Every Monday at 8:00am -> hello.mp3.
How can I do that in Java??
I´m trying using Calendar, ...
2
votes
4answers
667 views
how to schedule backup in sql server 2008?
how can I schedule daily backup at 9:00pm in SQL server 2008?
2
votes
0answers
184 views
Model for a Scheduling System
We have built a scheduling system to control our client's appointments. This
system is similar to the one used by Prometric to schedule an exam. The main
concerns are: guarantee that there is no ...
2
votes
1answer
612 views
Scheduling Script with PHP/MySQL - Help with Logic
I'm looking to develop a small script where users can insert their "schedule." However, I need some help determining the logic of how to create the DB structure and how to input the "time" of the ...
2
votes
2answers
1k views
How to do scheduled sending of email with django-mailer
I'm making a django app that needs to be able to make emails and then send these out at a given time. I was thinking i could use django-mailer to put things in que and then send it of. But even though ...
2
votes
4answers
267 views
Your Daily Schedule
I try to devote certain time everyday to learn new skills while also improve the older skills that I've gained. But, I'm not hitting the sweet spot where I learn what I want and get things done.
So, ...
2
votes
3answers
262 views
is there any cross platform process manager tool
I need a program that is able to launch a set of processes according to a schedule/configuration; the program would run in the background and restart the processes in case they crash.
There are ...
1
vote
1answer
13 views
Scheduled Export/Import for Dynamics CRM 2011
I don't know if this is the right place to ask but I give it a try. Does anyone know if there is a functionality in Dynamics CRM 2011 to create a schedule that does an automated XML Export of an ...
1
vote
3answers
179 views
Weekly repeating tasks emacs org-mode
I want to track habits using org-mode. For example, I want to do exercise 3 times every week. Is there a way to schedule 3 times a task every week irrespective of the date in org-mode?
1
vote
2answers
67 views
Schedule an event in c#?
I have an application that sends text messages through an online service. My users have suggested that I implement a feature of scheduling a message for a future date/time or a recurring message.
Is ...
1
vote
1answer
36 views
How to schedule in Windows shutdown of application?
In Windows XP are scheduled tasks. With them possible schedule to run some application.
I didn't found, but may be possible to shutdown some application by schedule?
Thanks.
1
vote
1answer
53 views
Wordpress: Scheduled category change (workflow). How to do?
I think it is a common case:I have three categories: Past, Current, Upcoming.
Now I write a post about next month's event. I put this post in Upcoming category.
What I want is a scheduled category ...
1
vote
2answers
96 views
how to cancel a timer's existing schedule
Currently I am using a timer to execute some function every interval time. However, later on when I want to change the interval of executing the function, I cannot cancel the previous schedule. how ...
1
vote
1answer
77 views
EJB stateless - Private members initialisation
I'm new to EJB and I'm facing my first problem. I'm trying to use an @Schedule method contained in a Stateless EJB. I'd like this method to use a private member variable which would be set at bean ...
1
vote
1answer
275 views
How to interrupt or stop currently running quartz job?
I have some tasks that are executed with the help of Quartz Jobs, but I need to stop some tasks by some condition in my code. I read that this can be sone via InterruptableJob. But i didn't understand ...
1
vote
4answers
78 views
schedule the creation of a html page from the server every 30 minutes
Can anyone tell me if this is possible and if so point me in the right direction on how to implement it!
Basically I have a panel on my website that's hitting the database and outputting the data to ...
1
vote
2answers
254 views
@Schedule annotated method not invoked in GlassFish 2.1 & EJB 3
In my Stateless bean, I have the following lines:
@Schedule(minute="*/2", hour="*")
public void doSomething() {}
I expect that this method would be called every 2 minutes but when I deploy it, ...
1
vote
2answers
178 views
IOS - Creating & Using Interval Specific Timers
I am a newbie IOS developer, but I have a good amount of experience in Android development. My question is regarding the creating and use of interval specific timers.
In android I could easily make ...
1
vote
2answers
1k views
How schedule build in jenkins?
How to schedule jenkin's build that it would be able to create only at specific hours everyday?
For example to start at 4 o'clock PM
0 16 1-7 * *
I understand that: 0 minutes, at 4 o'clock PM from ...
1
vote
1answer
158 views
Event Scheduler in PostgreSQL?
Is there a similar event scheduler from MySQL available in PostgreSQL?
1
vote
1answer
68 views
Quartz.NET Push forward/pull back time on a daily schedule
I've recently come across Quartz.net, and would like to know the best approach on setting up daily (weekday) tasks. So let's say a bunch of tasks needs to run daily from 2-5pm, and at times I'd like ...
1
vote
3answers
281 views
cocos2d schedule selector error
i have an error when scheduling a method. (to display how many star you get according to your score. i have addStar0 addStar1 addStar2 addStar3 methods)
[self schedule:@selector(addStar0) ...