Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ad3319c
Rename Auth - 3: Implementing User Service.md to Auth - 3 Implementin…
himanshusaini0345 Oct 29, 2025
8a461ab
Rename Auth - 4: Implementing Authentication & Authorization with Spr…
himanshusaini0345 Oct 29, 2025
ffabcf6
Rename payment flow notes file
himanshusaini0345 Oct 29, 2025
36fdadd
Rename Integrating messaging queue : Kafka.md to Integrating messagin…
himanshusaini0345 Oct 29, 2025
f2c5a0d
Rename Intro to Version Control and Git: Commits, Merge, Rebase.md to…
himanshusaini0345 Oct 29, 2025
f936cb6
Rename Introduction to AWS: EC2, RDS.md to Introduction to AWS EC2, R…
himanshusaini0345 Oct 29, 2025
6c65ad8
Rename Spring Cloud: API GW, LB, Logging, Monitoring.md to Spring Clo…
himanshusaini0345 Oct 29, 2025
97b6c7b
Rename React-10 : Asynchronous Redux and Thunk-2.md to React-10 Asyn…
himanshusaini0345 Oct 29, 2025
94cc338
Rename React-11 : React Redux Interview Question 1.md to React-11 Re…
himanshusaini0345 Oct 29, 2025
8fe3854
Rename React-12: React Redux Interview Question 2.md to React-12 Reac…
himanshusaini0345 Oct 29, 2025
566d2fd
Rename React-4: IMDB Project- Part 1 (HTTP and useEffect).md to React…
himanshusaini0345 Oct 29, 2025
97a31ef
Rename React-5 : IMDB-Part 2 (Client side Routing and React Router).m…
himanshusaini0345 Oct 29, 2025
6f0bedd
Rename React-6: IMDB Part 3 (Pagination Sorting, Searching, filtering…
himanshusaini0345 Oct 29, 2025
52a5d08
Rename React-8: Prop drilling and State management.md to React-8 Prop…
himanshusaini0345 Oct 29, 2025
a15e0c6
Rename React-9 : Asynchronous Redux and Thunk.md to React-9 Asynchro…
himanshusaini0345 Oct 29, 2025
a0a5078
Rename FullStack-10: Project Part 6- (Book a Show).md to FullStack-10…
himanshusaini0345 Oct 29, 2025
5c73f69
Rename FullStack-11: Project Part 7- (Payment API and Deployment).md …
himanshusaini0345 Oct 29, 2025
60df54f
Rename FullStack-1: Intro to Backend Dev with Node.js & Express.md to…
himanshusaini0345 Oct 29, 2025
afbdde2
Rename FullStack-2: Introduction to Express.md to FullStack-2 Introdu…
himanshusaini0345 Oct 29, 2025
870bf88
Rename FullStack-3: Intro to MongoDB and Mongoose.md to FullStack-3 I…
himanshusaini0345 Oct 29, 2025
b987277
Rename FullStack-4: MVC Architecture and CRUD.md to FullStack-4 MVC A…
himanshusaini0345 Oct 29, 2025
392b112
Rename FullStack-5: Project Part 1- (Authentication & Authorization.m…
himanshusaini0345 Oct 29, 2025
dd6a11b
Rename FullStack-6: Project Part 2- (Creating User's & Admins Route).…
himanshusaini0345 Oct 29, 2025
26157e8
Rename FullStack-7: Project Part 3- (Implementing Theatre API).md to …
himanshusaini0345 Oct 29, 2025
e2a6228
Rename FullStack-8: Project Part 4- (Implementing Shows API).md to Fu…
himanshusaini0345 Oct 29, 2025
c19df42
Rename FullStack-9: Project Part 5- (Listing Data from DataBase).md t…
himanshusaini0345 Oct 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -405,4 +405,4 @@ if(status===STATUSES.LOADING){
if(status===STATUSES.ERROR){
return <h2>Something is wrong</h2>
}
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -640,4 +640,4 @@ const factorial = useMemo(() => factorialOf(number),[number])

After running the program, we see that even if we click on the re-render button the function is not called. It is only called when changing the values. The value that was already there is being memoized.

You can refer to this [article](https://dmitripavlutin.com/react-usememo-hook/) to understand useMemo Hook.
You can refer to this [article](https://dmitripavlutin.com/react-usememo-hook/) to understand useMemo Hook.
Original file line number Diff line number Diff line change
Expand Up @@ -449,4 +449,4 @@ const Cart = () => {
}

export default Cart
```
```
Original file line number Diff line number Diff line change
Expand Up @@ -244,4 +244,4 @@ Route handler for fetching all unique theaters that have shows of a specific mov
6. **Error Handling**:
- In case of an error during the process (e.g., database query error), it sends a JSON response indicating the failure with an error message.

This route essentially retrieves all theaters that are showing a particular movie on a specific date, eliminating duplicates, and presents the data in a structured format, making it easier for clients to work with unique theater information and associated show details.
This route essentially retrieves all theaters that are showing a particular movie on a specific date, eliminating duplicates, and presents the data in a structured format, making it easier for clients to work with unique theater information and associated show details.