Concept && Coding - by Shrayansh

Software Engineer with 9+ Year of Experience and i love sharing knowledge with others too.
This channel has following content:

Access Member only videos: youtube.com/channel/UCDJ2HAZ_hW-DMJj_U0zN38w/join

👉 Low Level Design (LLD) from Basics to Advanced: youtube.com/playlist?list=PL6W8uoQQ2c61X_9e6Net0Wd…

👉 High Level Design (HLD) from Basics to Advanced: youtube.com/playlist?list=PL6W8uoQQ2c63W58rpNFDwdr…

👉 JAVA Basics to Advanced: youtube.com/playlist?list=PL6W8uoQQ2c63f469AyV78np…

👉 Spring boot: youtube.com/playlist?list=PL6W8uoQQ2c60g6_fcjDCLHS…

Hope you will find the content useful.

DISCLAIMER: All videos are based on my learning and my personal experience working as a Software Engineer. I might be wrong or have different perceptive for some topics, so please feel free to validate it through books or other resources.


Concept && Coding - by Shrayansh

Which Use case will work properly and which one will show error:

UseCase:1
--------------------
String day = "Monday";

int count = switch(day) {
case "Monday", "Friday" -> 6;
case "Tuesday" -> 7;
case "Wednesday" -> 9;
}

System.out.println(count);

UseCase:2
------------------
String day = "Monday";

switch(day) {
case "Monday", "Friday" -> System.out.println(6);
case "Tuesday" -> System.out.println(7);
case "Wednesday" -> System.out.println(9);
}

Covered the mystery of Java 14+ Switch enhancements in depth: https://youtu.be/blb1guXuVxA

20 hours ago (edited) | [YT] | 4

Concept && Coding - by Shrayansh

What all problems exist in classic Switch statement.
Covered all the problems and also how Java 14 Switch enhancements overcome those.

Hope you will find it interesting:
https://youtu.be/blb1guXuVxA

1 day ago | [YT] | 15

Concept && Coding - by Shrayansh

HTTP request flow within API Gateway

6 days ago | [YT] | 114

Concept && Coding - by Shrayansh

Latest Microservice topic "API Gateway and its Implementation in Distributed Microservice" is live, hope you will find it really helpful.

https://youtu.be/qCCIk5vkqyY

1 week ago | [YT] | 29