141 questions
0
votes
1
answer
39
views
Run MySQL event within specific time each day with specific interval
I have the following event_scheduler-
CREATE EVENT my_schedule
ON SCHEDULE EVERY 1 MINUTE
STARTS CURRENT_TIMESTAMP
ENDS CURRENT_TIMESTAMP + INTERVAL 40 DAY
DO
BEGIN
-----
END
It works ...
1
vote
3
answers
63
views
How to delete repeated rows for specific values?
This is my first question here, so I apologize in advance if I'm doing it wrong. I have a dataset with 20,000 observations and a dummy variable (0, 1). I want to delete rows with repeated values, but ...
0
votes
0
answers
27
views
Recurring Events displaying for multiple weeks in google calendar using ics file
I have this ics file content
BEGIN:VCALENDAR
PRODID:-//Google Inc//Google Calendar 70.9054//EN
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:REQUEST
BEGIN:VTIMEZONE
TZID:Asia/Calcutta
BEGIN:STANDARD
TZNAME:...
0
votes
1
answer
282
views
I'd like to cancel a single event from recurring events using the Microsoft Graph API
I have created a recurring event from December 3rd to 6th using the graph API, which repeats daily. I'd like to cancel a single event on December 4th. How can I achieve this? I fetched the event ID ...
0
votes
1
answer
739
views
Where are the deleted occurrences?
I have a recurring event, repeated 5 days in a row, of which:
the occurrence on 16/3 was modified (caption and times)
the occurrence on 18/3 was modified (caption, to distinguish it), then deleted
...
0
votes
2
answers
68
views
Formula to calculate how hours correlate to fixed interval maintenance schedule
I have a database driven vb.net program that records the number of hours a piece of equipment has operated each day. This is a totalizer number that always increases for the life of the equipment, ...
1
vote
0
answers
346
views
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;...
0
votes
1
answer
338
views
JavaScript RRule - how to get "all the dates for Monday, Tuesday and Friday of 3rd week of every month for 10 counts starting from any certain date"
Hi dear stackoverflow community people, need your help in a problem.
I am using rrule JavaScript lib to generate event dates for calendar. Below is the example condition for which I want event dates.
...
0
votes
0
answers
203
views
Pagination with recurrence events
I have an Task entity. It could be repeated like Google Calendar. I add rrule column to store iCal RFC5545 format. And using https://github.com/tplaner/When third party library to parse the recurrence ...
1
vote
1
answer
52
views
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 ...
0
votes
1
answer
412
views
Recurring for month and week in Flutter
I am trying to create a feature where I can transfer money by scheduling, so for that, I need a recurring option for the month and weak, And the problem that I face is, that if a user chooses the 31st ...
2
votes
0
answers
182
views
How to find conflicts in FullCalendar with rrule plugin?
I am using the FullCalendar Library and I use the rrule plugin the show recurring events.
I assume this question can be more generic, but these are the tools that I am using.
When I add a new event, ...
0
votes
1
answer
625
views
ICS to uppdate this and future in recurring calendar event
I am trying to programmatically create icalendar events by creating an ICS file and sending them via email to the attendees. I want to be able to create a recurring event, which works fine.
Now I also ...
-1
votes
1
answer
1k
views
How can I schedule a recurring task to run at specific intervals in C#?
I would like to set up a task to execute at regular intervals, such as every hour, in C#. How can I accomplish this?
Update:
Thank you for the assistance. After conducting some research, I discovered ...
0
votes
0
answers
397
views
Full Calender Delete an event which is in recurring sequence
I have a complex scenario in which i want to implement. I am using Full Calendar v4.4.0 and for showing recurring events i am using rrule plugin. I am loading events from mysql. I am succesfull in ...
0
votes
2
answers
50
views
Paypal monthly recurring
I need an auto monthly recurring tick yes on PayPal donation. Please help me with this.
Check out this image
0
votes
1
answer
597
views
Python Creating Recurrence Events
Im unable to create recurrence python events after every user defined hour in a day. Recurrence only returns me 1 event not after every defined hour.
e.g If I want to create a job of cleaning after ...
1
vote
0
answers
196
views
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
{
...
2
votes
0
answers
649
views
Error when create event series in Salesforce with REST API
I tried to create event series in Salesforce with Rest API but got error:
[{'errorCode': 'INVALID_FIELD_FOR_INSERT_UPDATE', 'fields':
['Recurrence2PatternStartDate', 'Recurrence2PatternTimeZone',
...
0
votes
1
answer
249
views
Rails recurring_select gem week start
I'm using recurring_select gem in my Rails project but can't find a way to specify week_start param, so that Monday would appear first while choosing the weekly schedule. Is there a way to do this?
...
0
votes
2
answers
970
views
Create Recurring All Day Calendar Event from List of Dates in Google Sheet
I have a list of dates in column A (starting at A2) paired with text for a title in column B (starting at B2). I have my calendar ID listed in cell E2.
I would like to send this data to Google ...
1
vote
0
answers
311
views
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 ...
3
votes
0
answers
351
views
Recurring event search that supports pagination (in Elasticsearch)
I need to implement a feature where there's an event schedule page. Initially, the first 20 events are shown starting from today. When the user scrolls down to the bottom, the next 20 events are ...
1
vote
0
answers
129
views
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, ...
5
votes
1
answer
162
views
SharePoint Recurring Events Are Random?
Note: This question is similar to an existing, unanswered question (CAML OrderBy for SharePoint Recurring Calendar Event).
How can I use the Lists.asmx web service to retrieve recurring events that ...
0
votes
1
answer
291
views
DHTMLX Scheduler recurring year events - Problems with rec_type
I'm trying to add a recurring event in my Database using dhtmlx scheduler. I'm using a full customized Lightbox with my own fields. Daily, weekly and monthly Events will be added perfectly to the ...
-1
votes
2
answers
3k
views
Implement RRule using javascript rrule.min.js
I am trying to include the library https://github.com/jakubroztocil/rrule to my webpage.
But I recieve the error: Uncaught SyntaxError: Unexpected token {
I have tried with
<!DOCTYPE html>...
0
votes
0
answers
52
views
How to replace recurring by day specific event in fullcalendar?
I have set user's availability by recurring event for every Sunday that user is not available. If the user provides data for specific Sunday that he/she is available for particular Sunday than how can ...
0
votes
2
answers
466
views
FullCalendar V4 - How to account for shorter months in a recurring event series?
I'm using FullCalendar v4-alpha-3 with the RRule plugin to generate recurring events. It works as expected with only one problem: how do I modify a recurring event to account for months with fewer ...
0
votes
2
answers
422
views
Expected payments by day given start and end date
I'm trying to create a SQL view that gives me the expected amount to be received by calendar day for recurring transactions. I have a table containing recurring commitments data, with the following ...
0
votes
2
answers
366
views
Is there a way to create a rrule for recurrent events that only fall into weekdays?
I am trying to user google calendar api to schedule events,
they have different recurrency types
type1: weekly
type2: every 14 days
type3: every 28 days
type4: every 42 days
type5: every 56 days
...
1
vote
1
answer
964
views
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) ...
0
votes
1
answer
233
views
Google calendar How to edit recurring event through php api?
How to update instance of recurring event using php api
and perform following.
1.This only
2.This and following
3.All Events
For Weekly recurring events.
Also Can u help for how to make , DOES NOT ...
0
votes
0
answers
1k
views
How can I check if there are conflicts for recurring events using Apps Script?
I would like to write a Google Apps Script that will check if there are any conflicts for a recurring events before I send it to Google Calendar from a Google Sheet.
I am able to check on the first ...
1
vote
1
answer
45
views
recurring action: starttime and subsequent frequency formatting convention
I am building a service where users will be able to register a payment-plan that initiates at any given date and recurs at any given frequency. For the sake of generalisation, I consider this to be a ...
0
votes
1
answer
438
views
Generating rrules based on certain timezones
Let's say I have a user of my application set a recurring event. His timezone is America/Denver, so I store that along with an rrule that determines when the recurrences happen.
This works assuming ...
24
votes
3
answers
15k
views
Recurring Events Database Model
I've being searching for a solution for recurring events, so far I've found two approaches:
First approach:
Create an instance for each event, so if the user has a daily event for one year, it would ...
0
votes
2
answers
552
views
Rails 5.1, recurring events that user can create
I'm looking for a solution so my users would be able to create recurring events. For example lets say that a user wants to add a post every month on a specific date. Every month on that date a new ...
0
votes
1
answer
724
views
dhtmlx scheduler for recurring events
I am trying to add recurring events in calendar using dhtmlx scheduler.
var data = {
start_date: "2017-12-03 10:00:00",
end_date: "2019-12-22 10:00:00",
...
0
votes
0
answers
421
views
Javascript date math, weekly recurring events
I'm just wondering if anyone can point me in the right direction.
I have an array of events
var event = [
'Event1',
'Event2',
'Event3'
]
As well as a start_date
start_date = '11/10/17'
...
0
votes
1
answer
1k
views
Handling recurring tasks in Rails
I've been trying to build a customised to-do app with a possibility to add recurring tasks.
My first approach was to use recurring_select on the front and ice_cube logic in the back. I managed to ...
0
votes
0
answers
419
views
Wrong date of recurring events are added in google calendar
When I add an recurring event from one timezone, the UNTIL date shows correctly but the events shown are wrong
For example,
{
"end":
{ "dateTime": "2017-09-26T22:10:00", "timeZone": "...
1
vote
2
answers
4k
views
Fullcalendar Repeating Events
I am using fullcalendar, and want to repeat an event once in month (on monday) form August to November. I have been able to repeat the event , but the event repeats four times in a month on each ...
0
votes
1
answer
508
views
Android Calendar: Recurring event is continuing for all the month but I need to repeat it on certain dates in every month
I'm loading both recurring event and one-time events to the calendar. One-time event is working fine but in recurring event the events are continuing to the next days, I had given recurrence rule as
...
1
vote
1
answer
625
views
Ical4j. RFC5545. Calculate event occurrences, duration hack
I check ical4j library. At time I need calculate event occurrences. Useful example to calculate is here. I try to shift start date and end date. In original start date is 20101113 - 2010 November, ...
2
votes
1
answer
604
views
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('...
1
vote
1
answer
4k
views
Recurring event in FullCalendar
So I have spent the past 2 weeks trying to figure this out and tried all other previously proposed answers. I'm still not able to get it right.
I'm trying to setup a calendar where the recurring ...
-1
votes
1
answer
1k
views
Find Date Range Of First, Second, Third & Fourth Week In A Month
[enter image description here][1]I'm in a situation where i need to find date range of First, Second, Third & Fourth Week (i.e we can say Nth week) in a month. Its a booking website where i want ...
1
vote
0
answers
176
views
Java - Weekly recurring calendar countdown
I'm trying to make a countdown timer that will reset weekly (Mondays at 10am eastern). I've found something similar to what I'm looking for, but it doesn't reset itself; it goes into the negative. Can ...
0
votes
1
answer
46
views
can I search for events based on time in neo4j?
I am using the neography gem hosted by GrapheneDB.
I need to send out recurring events.
What I did with my previous DB is check if object[:next_occurrence] is < TimeDate.now
I don't see how I ...