0
votes
0answers
7 views
Figuring out the next scheduled date for a recurrence rule using Ical4J?
I have a project in which i am allowing users to enter an event of recurrent type and get the details of the recurrence from him. So far in the research I am thinking of using ICal4J for reading and …
3
votes
6answers
404 views
How would you store possibly recurring times?
I need to store whether something happens once, daily, weekdays, weekly, some days of the week, some days of the month, which may be numerical or symbolic, like first Monday of each month, and so on.
…
24
votes
10answers
2k views
What’s the best way to model recurring events in a calendar application?
I'm building a group calendar application that needs to support recurring events, but all the solutions I've come up with to handle these events seem like a hack. I can limit how far ahead one can …
0
votes
2answers
239 views
Recursion Tree, Solving Recurrence Equations
As far as I know There are 4 ways to solve recurrence equations :
1- Recursion trees
2- Substitution
3 - Iteration
4 - Derivative
We are asked to use Substitution, which we will need to guess a …
-1
votes
1answer
444 views
PHP Calendar Recurrence Logic
Before the answers start coming (which I know they will) I know that there are a million projects out there that have done this already. Having said that what I am trying to do is create an online …
2
votes
3answers
238 views
How to determine the height of a recursion tree from a recurrence relation?
How does one go about determining the height of a recursion tree, built when dealing with recurrence run-times? How does it differ from determining the height of a regular tree?
edit: sorry, i …
0
votes
0answers
84 views
Limitations of the Akra-Bazzi Method
What kind of recurrence problems cannot be solved by the Akra-Bazzi method?
What will happen if no such value of p is found for which a_i (b_i)^p=1 ?
Will the Akra-Bazzi method fail in that case?
0
votes
4answers
158 views
Recurrence Relation
Why is the recurrence relation of recursive factorial algorithm this?
T(n)=1 for n=0
T(n)=1+T(n-1) for n>0
Why is it not this?
T(n)=1 for n=0
T(n)=n*T(n-1) for n>0
Putting values of n i.e …
7
votes
2answers
664 views
Relational Schema for Fowler’s Temporal Expressions
Martin Fowler defines an elegant object model for the scheduling of recurring tasks here, which maps to OO code very nicely. Mapping this to a relational database schema for persistence, however, is …
0
votes
1answer
135 views
Recurrence Rule +vCalendar
Recurrence Rule:
This property is identified by the property name RRULE. This property defines a rule or repeating pattern for a recurring vCalendar entity, based on the Basic Recurrence Rule Grammar …
0
votes
3answers
70 views
Recurring dates on dates that do not exist
When giving the option for something to reoccur every certain amount of time how should I treat times that don't reoccur on every interval?
For example what should happen to birthday reminders for …
2
votes
5answers
425 views
How to know when Big O is Logarithmic?
My question arises from the post "Plain English Explanation of Big O". I don't know the exact meaning for logarithmic complexity. I know that I can make a regression between the time and the number of …
2
votes
3answers
138 views
detecting conflicts in recurring events
Hello all
I'm writing a calendar application that needs to check for conflicts
between recurring entries. Each Entry object has a recurrences() method
which returns an array of ranges - each range …
1
vote
2answers
168 views
What is the best way to specify execution time of recurring jobs or tasks?
I am looking for a way of efficiently specifying a recurring job execution time without having to write an explicit execution time to a datastore. In other words, rather than saying 'job x next runs …
2
votes
4answers
273 views
Recurrence rule definition (RFC2445) question
Hi,
I'm using Google's RFC2445 implementation (http://code.google.com/p/google-rfc-2445/) for recurrence rules. If I define a MONTHLY recurrence starting on the 30th of January, months with less than …
