code that is executed in consecutive cycles such as every frame of a graphics engine, or each clock cycle of a circuit, or simply code that is executed whenever an often event is triggered
Questions tagged [recurring-events]
139 questions
2
votes
2 answers
How can an iOS app run a function in the background in a recurring manner (i.e. once an hour)?
On devices which support multitasking, I'd like my iOS app to run a function in the 'background' when the app is not running (i.e. it's suspended). I know that iOS supports running tasks in the background, but I'm not sure how to make the function…

Jason
- 14,517
- 25
- 92
- 153
2
votes
1 answer
Ical4j. RFC5545. Calculate event occurrences with exclusion
I check ical4j library. At time I need calculate event occurrences. Useful example to calculate is here. I try to add exclusion
VEvent event = new ContentBuilder().vevent {
dtstart('20101113', parameters: parameters() {value('DATE')})
…

Sergii
- 7,044
- 14
- 58
- 116
2
votes
2 answers
"Uncaught TypeError: Cannot read property 'clone' of undefined" when adding recurring events to database
For some reason I'm getting ""Uncaught TypeError: Cannot read property 'clone' of undefined" when I'm trying to update the calendar with a recent set of recurring event using $('#calendar').fullCalendar('updateEvent',events[i]); in the sucess call…

jones
- 585
- 3
- 10
- 30
2
votes
2 answers
How to delete a single event from a recurring set using ical programmatically?
I have created a recurring ical event, on 10,11th Please see below, and I want to delete 10th event so I used MEthod: Cancel, but as the UID is same both the records are getting deleted. How to delete only one record, should I use any other value…

viveik10
- 81
- 9
2
votes
2 answers
Add recurring event for 2 years
I want to add a recurring event in the calendar programatically., i.e directly without using intent.
I user the following ::
ContentResolver cr = cordova.getActivity().getContentResolver();
ContentValues values = new ContentValues();
…

Bhavna
- 836
- 2
- 6
- 19
2
votes
2 answers
PHP DateInterval select days of week every x weeks
I've written some code for entering recurring events. The trickiest part is a user can create an event and have it repeat on selected days of the week ever x weeks.
For example, the user can select Mon,Wed,Fri and have it repeat every 3 weeks.
Easy…

AdamP
- 73
- 1
- 8
2
votes
1 answer
Paypal and recurring payments notifications
I've been fighting with paypal's documentation for a few days and I have several doubts about how it could fit my needs.
In the site we are developing, we need to handle subscriptions, and we are going to sell items. In order to bill those items…

Anne
- 189
- 1
- 4
- 16
2
votes
1 answer
What is the "String eventArg" parameter in Martin Fowler's recurring events paper?
I'm trying to code an implementation of Martin Fowler's recurring event calendar found here and I understand most of it but in all of his abstract classes he passed a string named eventArgs as a parameter.
For example:
class Schedule {
public…

Gazillion
- 4,822
- 11
- 42
- 59
2
votes
1 answer
how to parse Google Calendar Feed including recurring Events in .net
I need to parse the Recurring Event value from the Google Calendar. I am able to parse rest of the values except Recurring object value. Following is the code I am trying to pull the events from Google Calendar in my asp.net MVC (C#)…

Prasad
- 58,881
- 64
- 151
- 199
1
vote
0 answers
how to delete a series of events from recurring set using ics file?
Im trying to delete a series of dates like google or zoom does ("delete this and following occurrences") but cant seem to delete them all
here is the code I'm using to do so
RECURRENCE-ID;RANGE=THISANDFUTURE;TZID=America/New_York:20230221T100000Z
I…

Rohan Tapiyawala
- 21
- 8
1
vote
1 answer
weekly event select into file with different filenames depending on the variables(MariaDB)
I've always been a silent reader here until now.
Now I would like to ask for your expertise and post my ver first question here.
I have to achieve the following task on a weekly basis in my MariaDB via Events:
Every Week on Saturday night at…

K_Urahara
- 9
- 2
1
vote
0 answers
Bi-annual events created using Graph API/SDK missing first instance
When I create the following event using the graph SDK, the first instance of the recurring event isn't created until May 4th, 2021:
var tmpEvent = new Microsoft.Graph.Event
{
Start = new Microsoft.Graph.DateTimeTimeZone
…

Spencer Gray
- 111
- 5
1
vote
0 answers
403 Forbidden rateLimitExceeded while below Google Calendar quota
Intro
I merge resources-calendar, using syncToken and struggles with 403 rateLimitExceeded.
Background
Old application. It pairs and sync/merge calendars. Has done so for years.
Issue lies with a few old calendars. They have previously had other…

Niklas Ternvall
- 510
- 1
- 3
- 19
1
vote
0 answers
How to manage event ID when updating recurring events
I am getting every 5 minutes all changes that happened on my google calendar:
res = service.events().list(calendarId='primary', showDeleted=True,
maxResults=1000, singleEvents=True,
…

Jérémy
- 111
- 6
1
vote
1 answer
How to convert my data to counting process format with start stop times for interval truncation in R?
I would like to model a recurrent event with subjects that move in and out of risk over the course of the observation period of the study.
I have data on the out-of-risk periods (start and end dates) where the subject cannot experience the event.
I…

shitshimugi
- 11
- 3