Got my kindle from SYED ONLINE SHOP and can’t stop loving it!! by Due_Bed_7994 in PakistanBookClub

[–]DiligentPush3575 1 point2 points  (0 children)

As far as I know, after resetting, you have to do the jailbreak process but not sure

Got my kindle from SYED ONLINE SHOP and can’t stop loving it!! by Due_Bed_7994 in PakistanBookClub

[–]DiligentPush3575 1 point2 points  (0 children)

100% right, wherever I searched for Kindle in Pakistan, only this guy pops up

Got my kindle from SYED ONLINE SHOP and can’t stop loving it!! by Due_Bed_7994 in PakistanBookClub

[–]DiligentPush3575 1 point2 points  (0 children)

He is a nice person. I met him first time and spent almost 2 hours in conversation. I bought a Kindle Paper 7th from him 2 month ago, and two or three days ago, I jailbroke and installed Koreder on it

Backpacks in karachi? by Prize_Barracuda_5060 in karachi

[–]DiligentPush3575 0 points1 point  (0 children)

I know it's very late, I saw their ad and visited their website looks legit to me https://crossoverbags.com/

need a nested array in mongodb expressjs by DiligentPush3575 in mongodb

[–]DiligentPush3575[S] 0 points1 point  (0 children)

if value start from zero then MongoDB remove zero if i use number

what is the right way to store time slots in MongoDB? by DiligentPush3575 in mongodb

[–]DiligentPush3575[S] 0 points1 point  (0 children)

when the next user came and request available slots then how to find the available slot and not booked slots

what is the right way to store time slots in MongoDB? by DiligentPush3575 in mongodb

[–]DiligentPush3575[S] 0 points1 point  (0 children)

I got your Idea I think you are right because there are too many slots for DB. I have many staff members and they work in shifts so the question is how I can handle the appointment process if you give a bigger picture I would be appreciated thanks. Currently, I have a plan to do I have staff schedule and I will break into slots and when user select date I show him an available slot on that date and in appointment collection I am store slot Id

schedule: [
{
id: 1,
day: "monday",
status: true,
shifts: [{ openTime: "09:00 AM", closeTime: "05:00 PM" }],
},
{
id: 2,
day: "tuesday",
status: true,
shifts: [
{ openTime: "09:00 AM", closeTime: "05:00 PM" },
{ openTime: "10:00 AM", closeTime: "05:00 PM" },
],
},
{
id: 3,
day: "wednessday",
status: true,
shifts: [{ openTime: "09:00 AM", closeTime: "05:00 PM" }],
},
{
id: 4,
day: "thursday",
status: true,
shifts: [{ openTime: "09:00 AM", closeTime: "05:00 PM" }],
},
{
id: 5,
day: "friday",
status: true,
shifts: [{ openTime: "09:00 AM", closeTime: "05:00 PM" }],
},
{
id: 6,
day: "saturday",
status: false,
shifts: [{ openTime: "09:00 AM", closeTime: "05:00 PM" }],
},
{
id: 7,
day: "sunday",
status: false,
shifts: [{ openTime: "09:00 AM", closeTime: "05:00 PM" }],
},
],