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
0
votes
1 answer
Run periodic job while a condition is satisfied?
I'm using the following code to make a job run every time there is available internet. What I want in addition is, after the service is triggered (due to available connection) I want that service to continue running g periodically (every 30 seconds)…

student93
- 307
- 2
- 12
0
votes
2 answers
later.js every nth weekday of every month
I am using later.js (meteor package, voidale:later-js-tz@1.1.9) to schedule events, using the later.parse.text() parser.
I can schedule weekly events on a given weekday with no problem, with strings like 'at 11:00 on Monday'.
But I get parse errors…

David Hawley
- 1
- 1
0
votes
1 answer
Recurring events in FullCalendar dow property
I've some events that i load from a database. All events are intializied with dow : ' ', since i don't want the events to recur on a specific day unless told so. My events are defined from external events which data are sent to the database when…

jones
- 585
- 3
- 10
- 30
0
votes
1 answer
Android google calendar deleting future instances of recurring event
I'm trying to delete future instances of a google calendar recurring (repeated) event pro-grammatically using content resolver.
And to do this i have updated the rRule of the event , so for example if want to delete future instances of an event…

user2469133
- 1,940
- 3
- 21
- 33
0
votes
2 answers
Fullcalendar: on recurring events I don't want to display certain dates
I am using fullcalendar as a booking agenda. I use recurring events to display the regulare availability of doctors.
It happens though that a doctor might not be available just for a certain date:
Example: Dr Smith works every monday from 1000 to…

Fabrizio La Racca
- 65
- 2
- 7
0
votes
2 answers
An efficient way to store monthly recurring data that does not change frequently?
I'm trying to find an efficient way to store monthly recurring data that does not change frequently.
class Fund < ApplicationRecord
has_many :factsheets
end
class Factsheet < ApplicationRecord
belongs_to :fund
end
A Fund will have a new…

user2990181
- 13
- 1
- 5
0
votes
1 answer
Is there a canonical way for storing data to assist in calculating when a recurring operation should next take place?
I am writing a utility to configure when certain reports are going to be automatically generated.
The next piece will be some background task (probably a Windows Service) that will poll the database to know when to execute these recurring…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
2 answers
Hangfire - How does it handle last couple of days of the month?
I have a UI where users select on which day of each month they want to receive an email. What happens if they select the 31st? How does Hangfire handle the days which have only 30 day or february?
Thank you!

AlesSvetina
- 403
- 3
- 6
- 19
0
votes
0 answers
How to do recurring event using fullCalendar in node.js and mysql
I am creating a scheduling website based on fullcalendar plugin.
We have a requirement to create recurring events. Events will be repeated on weekly or daily basis.
Following is an example of an event that we are trying to achieve
Event Name: Weekly…

Waqar Ahmed
- 1
- 1
0
votes
1 answer
DDay iCal RecurrenceId
I am actually using the Telerik kendo scheduler, instead of an iCal file, but I need to display an occurrence list in a manner other than the schedulers agenda list and the mappings between the schedule object and an ical object are similar so I…

Chris
- 476
- 1
- 9
- 17
0
votes
1 answer
Rails timezone changes when increasing timestamp
I am trying to create recurring events with based on a gap in the timestamp and experiencing what seems to be odd behavior: if I continue to increase a timestamp by a weekly gap (604800 seconds), Rails seems to change the timezone on me.
t =…

Steph Rose
- 2,126
- 3
- 23
- 35
0
votes
0 answers
Add recurring event with identical information except the date is 1 week later
I have searched and tried a variety of solutions but don't seem to be getting this. I have an event which happens every week on the same day of the week. I want to be able to add it to the MySQL database so that the same exact info goes in for 16…

GlobalVillage
- 3
- 1
- 3
0
votes
1 answer
FullCalendar recurring events array
I'm working on a recurring events backend for fullcalendar, and I've run into a strange problem.
My events are calculated on a page called events.php. The calendar is displayed on index.php and calls the events from events.php. My function on…

Jason Brown
- 3
- 3
0
votes
1 answer
Create recurring Google Calendar events from Google Sheets only on weekdays
The following code below works perfectly. However, I now need to have recurring events to appear only during the weekdays (M-F).
If for example I set up a recurring meeting on 9/2/2014, future meetings will eventually fall on a weekend.
How can…

Arsene de Conde
- 41
- 3
- 10
0
votes
1 answer
How to retrieve all events from Google Calendar API, using JavaScript
Reading Google API documentation, it was very easy to retrieve events in a calendar, but I realized that there are a few exceptions:
1- Recurrent events: There are a bunch of questions regarding retrieving these evens in other posts. The solution…

1man
- 5,216
- 7
- 42
- 56