Questions tagged [recurring-events]

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

139 questions
0
votes
1 answer

Generate recurring events in fullcalendar from a fixed timeslots list

I have a list of doctors and patients, whom have fixed schedules during several months (long treatments) as you can see in the image: So Clarice will have an appointment with Dr. Fenwick every Monday from 09:00 to 10:00 until the schedule is…
Enrique
  • 1,015
  • 4
  • 27
  • 54
0
votes
0 answers

Trim the ID column of a recurring event to just display the start date in my calculated field

I want to create a calculated column to trim the value in the ID column of a recurring event. Non-recurring event ID 7 Recurring Event ID 6.0.2014-06-06T18:00:00Z Notice the date of this recurring event is 2014-06-06. That is what I need and then…
rhonda
  • 1
  • 1
0
votes
1 answer

Invalid Timezone for Recurring event on Google Calendar API V3

i'm trying to manipulate somme specific things with google events, i can add, delete, get all events and put colors on events, But i Have a problem , each time i ty to insert a recurring event , i get not valid timezone message and i don't know how…
0
votes
3 answers

Output most repeated value in PHP

So I have an array, that goes a bit like: $concat=array("DARK HORSE,KATY PERRY", "DARK HORSE,KATY PERRY", "WHEN IT RAINS,PARAMORE", "LITHIUM,NIRVANA") //$concat = song and artist together separated by a comma And I need to output the value that…
0
votes
1 answer

Understanding Google Calender recurring events

I have got Google calender recurring events like that: a:1:{i:0;s:61:"RRULE:FREQ=WEEKLY;UNTIL=20130618T132500Z;BYDAY=MO,TU,WE,TH,FR";} or a:1:{i:0;s:49:"RRULE:FREQ=WEEKLY;UNTIL=20131123T210000Z;BYDAY=SA";} I found the a lot of information on…
user3183660
  • 663
  • 1
  • 5
  • 7
0
votes
0 answers

Efficient recurring tasks in celery?

I have ~250,000 recurring tasks each day; about a fifth of which might be updated with different scheduled datetimes each day. Can this be done efficiently in Celery? - I am worried about this from celery's beat.py: def tick(self): …
A T
  • 13,008
  • 21
  • 97
  • 158
0
votes
1 answer

what is the best to read calendar event instance for specific date period for a specific calendar?

I am trying to read all instances of events for a specific calendar and a specific period. Here is my problem. (1) I read all instances of events for the specific period, then I query an event for each event instance to see if the event instance…
0
votes
1 answer

How recurring events in google calendar work

I try realize two ways sync app with google calendar. I didn't find reasonable description how recurrence events work. Are they physically duplicated (have own IDs) within main event? Google calendar API (listEvents) return only main event with…
tomasr
  • 485
  • 1
  • 8
  • 24
0
votes
0 answers

Maintaining flexibility and avoiding redundancy in recurring events DB tables

In my database, I have two tables that are dedicated to handling recurring events. An 'Events' table currently store names, descriptions, locations, start time and end time of events. Another table, 'Episodes', takes the parent Event id as…
sundfjord
  • 33
  • 2
  • 5
0
votes
1 answer

Creating recurring events mysql fullcalendar

I'm using FullCalendar to create a calendar for my project. The calendar is working, but I want to create an option to add recurring events. I will create the form for the user to add the event, though how should I create the recurring events? For…
0
votes
1 answer

PHP MYSQL event sheduler like Musicteacherhelper.com

I have search over php mysql recurring events but didnt find anything exactly like i want. I want to develop event sheduler in php mysql in which user add reccuring events based on daily,weekly,montly,yearly patterns using html form which is stored…
0
votes
1 answer

Run function at specific time on iOS?

I want my iPhone application to run a function at a time that the user sets and can change. The function fetches an xml file, parses it, and sends a notification to the user if necessary. How do I schedule the function to run at a specific time/day?…
Neel
  • 597
  • 6
  • 19
0
votes
1 answer

SharePoint 2010 Expand recurrences CAML Query exceeding list view threshold

Trying to get event items from a list, I issue a CAML query that only returns a small number of items (about 17). When I set the List View Threshold at 10000 everything works fine, but when I set the LVT at 5000, I get a "Exceeded List View…
Alex Ziskind
  • 140
  • 1
  • 12
0
votes
2 answers

Gem for Recurring schedule with durations

I am working on building an Asset Tracker. In my application I have 'Assets' which user checks out for a period say Wed 8a.m to Friday 8 a.m. Now I want this to be made recurring as well. So a recurring reservation every week from Wed 8 to Friday 8…
Nitish Upreti
  • 6,312
  • 9
  • 50
  • 92
-1
votes
1 answer

How can I schedule a recurring task to run at specific intervals in C#?

I need to schedule a task to run at a fixed interval of time. How can I do that for example every hour in C#? Update: Thanks for the help, after I have done some research I found out that I can do recurring jobs by using Hangfire. No Windows Service…
1 2 3
9
10