Questions tagged [timeslots]
71 questions
8
votes
1 answer
Linux Kernel: Targeted Latency vs Minimum Granularity
In context of CFS Scheduler of Linux Kernel what are the most important differences between Targeted Latency and Minimum Granularity.
Or how do we define Targeted Latency and Minimum Granularity.
Mathematical explanation is highly appreciated.

Ace
- 1,501
- 4
- 30
- 49
6
votes
4 answers
Building an appointment booking system in Rails
I am looking to build an appointment booking app with the following characteristics:
- Users can be service providers or buyers
- Service providers set their availabilities (but can only set their availabilities at a maximum of 6 months ahead)
-…

Karim
- 1,303
- 1
- 14
- 23
6
votes
3 answers
Worker/Timeslot permutation/constraint filtering algorithm
Hope you can help me out with this guys. It's not help with work -- it's for a charity of very hard working volunteers, who could really use a less confusing/annoying timetable system than what they currently have.
If anyone knows of a good…

Lee B
- 2,137
- 12
- 16
6
votes
5 answers
Hover effect on one cell of agendaWeek + fullcalendar
Hi I am using FullCalendar by Adam Shaw (http://arshaw.com/fullcalendar/). I am using a month and agendaWeek view. I want to put in an hover effect when the user is hovering over a date in month view or a timeslot in agendaWeek view. I tried to…

Tripping
- 919
- 4
- 18
- 36
3
votes
0 answers
How to show time based event in Calendar - Flutter
I'm creating an app for Grounds in which you can book a ground from a time slot.
I have to create UI like the below image
From the top right corner, the user picks a time range and It'll show only those dates available in the calendar below.
The…

Ravin Laheri
- 801
- 3
- 11
3
votes
2 answers
How to disabled time slots according to service time?
All i want, to calculate time-slots-list according to my business-hours and block or disable those time-slots which booked by appointments.
I have done these things with my problem, stuck on last task, mention below.
My Service Duration = 60min.
My…

hari maliya
- 660
- 8
- 21
2
votes
2 answers
A Data Structure to represent bookable timeslots
What suggestions do people have for a timeslot data structure?
I have a number of activities and I'm planning to display them in a datagrid with days as columns and timeslots as rows. This suggests to me a timeslot data structure with 5 properties…

David A Gibson
- 2,013
- 5
- 35
- 60
2
votes
1 answer
Javascript - Timeslots handling by removing service duration
I am new to this forum, and I came here because my brains are exploding but I really would like to achieve building an booking system application. The Following is my story:
I am working with the following data:
An Array with timeslots which have 5…

Hanake Basema
- 23
- 2
2
votes
2 answers
Check availability of time with time slots in php
I want to show shop availability status with every half an hour using Php and mysql,
For that i tried with following code which creating time slots for me
$duration="30";
$start="10:00AM";
$end="07:00PM";
$start = new DateTime($start);
…

amit
- 1
- 1
- 18
- 28
2
votes
1 answer
how to find free time slot of a day if busy slots are given in nodejs
For example clinic working hours on specific date are as follow:
var workingStartTime = 2018-05-12T08:00:00.000Z;
var workingEndTime = 2018-05-12T22:00:00.000Z;
Doctor's already scheduled appointments on the same date are as follow:
var busySlots…

Jitendra
- 3,135
- 2
- 26
- 42
2
votes
2 answers
How to disable the booked time slots from a list of business hour time slots
Friends,
I' working Appointment booking Project, Details are as follows:
Business hour starts from 9:00 to 7:00 with default duration of 30mins. So, Slots start like (9:00, 9:30, 10:00.... 7:00).
Here, to show the available slots, I'm using the…

Haavali
- 221
- 1
- 4
- 15
2
votes
2 answers
FullCalendar jQuery! Can I Select Only one timeslots by clicking?
In the Calendar "FullCalendar" made by http://arshaw.com/fullcalendar/
I need the user can only select one timeslots by clicking in agendaWeek view mode!

Morris Sosa Diaz
- 45
- 6
1
vote
1 answer
Finding the nearest free time slot from now if free slots in some working days are given
I have a function that takes an array of objects, where each object contains a 'day' key (representing the day of the week) and an 'freeSlots' key (representing an array of available time slots as strings in 'h:mm a' format). The function aims to…

Aimal Khan
- 13
- 3
1
vote
0 answers
JS array of time slots based on opening hours
I am writing an order ahead application that allows the user to select a pick up time from a select box.
This pickup time must be in intervals of x number of minutes i.e. every 20 minutes.
It needs to take into account business opening hours i.e.…

chinds
- 1,761
- 4
- 28
- 54
1
vote
1 answer
Based on the current time create a slot for 30 minutes time interval using Python
I have to create a two slot based on the current time assume that current time is 11:25 so based on the current time i have to create two slot for 30 minutes of time period which suppose to be 11:00 to 11:30 and another one is 11:30 to 12:00 and…

Shahid Shaikh
- 41
- 4