- Видео 69
- Просмотров 753 235
Sourav Singh Diaries
Индия
Добавлен 7 июл 2013
🌍💻 I am a software engineer working at Amazon, previously worked at Disney+Hotstar. Welcome to Sourav Singh Diaries 🪄
I will use this platform to share my tech journey, my software engineering experiences and for some fun, I will also share interactions with people so that everyone can learn from them. People coming from different life experiences, perspectives, career paths, financial backgrounds. It's so exciting if we can learn and grow from these perspectives. To start with, we will tap into the lives of people in Bangalore (The Startup hub of India)
You've found your digital home. Expect engaging vlogs, episodes and tutorials.
Subscribe now to become part of my journey #saurav_singh_diaries
Book an appointment for career consultations : topmate.io/sourav_singh11
For Business queries / Reach out : singhsourav206@gmail.com
LinkedIn : www.linkedin.com/in/sourav-singh-6b57b5101/
Instagram : sourav_singh_diaries
I will use this platform to share my tech journey, my software engineering experiences and for some fun, I will also share interactions with people so that everyone can learn from them. People coming from different life experiences, perspectives, career paths, financial backgrounds. It's so exciting if we can learn and grow from these perspectives. To start with, we will tap into the lives of people in Bangalore (The Startup hub of India)
You've found your digital home. Expect engaging vlogs, episodes and tutorials.
Subscribe now to become part of my journey #saurav_singh_diaries
Book an appointment for career consultations : topmate.io/sourav_singh11
For Business queries / Reach out : singhsourav206@gmail.com
LinkedIn : www.linkedin.com/in/sourav-singh-6b57b5101/
Instagram : sourav_singh_diaries
Lesson 3 : Breadth First Search in Javascript | Graph | Intuition to Code | BFS Traversal
Welcome back to our series on graph algorithms!
In this lesson, we dive deep into the Breadth First Search (BFS) algorithm, a fundamental technique for traversing graphs and trees. Whether you’re preparing for coding interviews or looking to enhance your problem-solving skills, understanding BFS is crucial !
00:00 Intro
00:52 What is BFS traversal / Levels
04:10 Intuition 1 behind using Queue
05: 47 Intuition 2
07:05 Algorithm Dry Run
10:20 Pseudo Code
14:12 Live Code in Javascript
20:05 What's next
🌍💻 I am a software engineer working at Amazon, previously worked at Disney+Hotstar with an overall experience of around 7 years. Welcome to Sourav Singh Diaries 🪄
Connect :
LinkedIn : www.linkedin.com/i...
In this lesson, we dive deep into the Breadth First Search (BFS) algorithm, a fundamental technique for traversing graphs and trees. Whether you’re preparing for coding interviews or looking to enhance your problem-solving skills, understanding BFS is crucial !
00:00 Intro
00:52 What is BFS traversal / Levels
04:10 Intuition 1 behind using Queue
05: 47 Intuition 2
07:05 Algorithm Dry Run
10:20 Pseudo Code
14:12 Live Code in Javascript
20:05 What's next
🌍💻 I am a software engineer working at Amazon, previously worked at Disney+Hotstar with an overall experience of around 7 years. Welcome to Sourav Singh Diaries 🪄
Connect :
LinkedIn : www.linkedin.com/i...
Просмотров: 218
Видео
Lesson 2 : Graph Database vs In-memory graphs | Why do we learn graph data structure ?
Просмотров 145Месяц назад
Welcome to Lesson 2 of our Graph Data Structures series! 🎓 In this video, we explore some differences between using a Graph Database and managing In-Memory Graphs in your applications. We'll also dive into why mastering graph data structures is crucial for modern software development. What you'll learn: - Graph Databases: What are they? - In-Memory Graphs - The pros and cons of using graph data...
Lesson 1 : Graphs Representation in JavaScript | Adjacency List and Matrix | Concept | Live Code
Просмотров 394Месяц назад
Welcome to Lesson 1 of our Graph Data Structures series! 🚀 In this video, we dive into the fundamentals of graph representation in JavaScript. We'll cover two popular approaches for representing graphs: Adjacency Lists and Adjacency Matrices. What you'll learn: The basics of graphs and how they're used in computer science. The difference between adjacency lists and adjacency matrices. Step-by-s...
From 3 LPA to 60+ LPA! Cognizant to Uber 🚀 | How he cracked the tough tech interview at Uber ?
Просмотров 6 тыс.Месяц назад
In this episode, I sit down with my friend, a software engineer now working at Uber, to discuss his inspiring journey from a service-based company (Cognizant) to landing a coveted role at one of the top tech giants, Uber. He shares how he went from earning ₹3 LPA to an big ₹60 LPA! We talk about the strategies he used, the mindset shifts, and how he cracked the interview process at a Tier 1 pro...
How to get a Tech Job in this Tough Market ! Winner Mentality 🔥 | My Resume, Cold DMs
Просмотров 1,7 тыс.2 месяца назад
In this video, I share my resumes, cold DMs, and some underrated advice I’ve learned along the way. If you’re a someone looking to break into competitive tech roles, this video is for you ! I'll also dive into the current job market, how to stand out even when opportunities are tough, and tips to keep a winner's mentality throughout the process. 💡 What You’ll Learn: Where to build resumes Cold ...
Facebook's first contribution to Browser API | Event loop fix | Deep Frontend Series | Episode-1
Просмотров 1,2 тыс.2 месяца назад
Welcome to the first episode of the Deep Frontend Series! 🎉 In this video, we explore Meta's (then Facebook's) first ever contribution to the browser ecosystem with the isInputPending API, designed to improve responsiveness to user input. The time it takes for an interaction to go from the user input event (such as clicking a button or typing in a box) that triggered it to being completely rend...
Master the Famous 2-Sum Problem in JavaScript | Asked in Amazon, Google | Visualize and Live Code
Просмотров 5703 месяца назад
The Two Sum problem solved in Javascript. You will be able to visualise and live code couple of variations of the problem. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. 00:0...
How to traverse DOM tree 🔥 | Meta Interview Question | Big frontend dev | DSA in Javascript
Просмотров 1,1 тыс.3 месяца назад
This problem will help you understand how DOM Tree traversal can be done. The variation and the same problem has been asked in Meta. Question : Given two same DOM tree A, B, and an Element a in A, find the corresponding Element b in B. By corresponding, we mean a and b have the same relative position to their DOM tree root. Question practice link on bigfrontend dev : bigfrontend.dev/problem/fin...
How to create Event Emitter in JS | Asked in Meta, Microsoft | JS Coding | DSA in JavaScript
Просмотров 1,2 тыс.3 месяца назад
Event Emitter Problem Link : bigfrontend.dev/problem/create-an-Event-Emitter (Big Frontend Dev) In this video, we Live code the solution for creating an Event Emitter Class. This problem was asked in interviews at Microsoft, Meta, Tiktok, Flipkart and is a good example of how data structures can be used to solve a problem in JS. const emitter = new Emitter() It should support event subscribing....
How to create Linked List in Javascript | DSA in Javascript Series
Просмотров 6133 месяца назад
Linked List in Javascript | Lesson 2 | DSA in Javascript Series Welcome to the second lesson in DSA in Javascript Series In this video we cover how to write / implement Linked List in Javascript. 00:00 Intro to LinkedList 01:50 Code I am releasing the DSA series in parts and all videos will be part of a playlist : 1. Initial few videos will strengthen your fundamentals on how to build common da...
Arrays in Javascript (1D and 2D) | DSA in Javascript Series
Просмотров 9903 месяца назад
Arrays in Javascript (1D and 2D) | DSA in Javascript | Lesson 1 Welcome to the first lesson in DSA in Javascript Series In this video we cover how to write 1D and 2D Arrays in Javascript. I am releasing the DSA series in parts and all videos will be part of a playlist : 1. Initial few videos will strengthen your fundamentals on how to build common data structures like Array (1D, 2D), Linked Lis...
An *Eventful* Day in Life of Software Engineer at Amazon in Bangalore #amazon #bangalore
Просмотров 3 тыс.3 месяца назад
Day in Life of Software Engineer at Amazon in Bangalore A small video on how a life of a software engineer looks like. Software engineer vlog Amazon software engineer vlog Connect : LinkedIn : www.linkedin.com/in/sourav-singh-6b57b5101/ Instagram : sourav_singh_diaries For career consultations : topmate.io/sourav_singh11 For business queries : singhsourav206@gmail.com
Biggest Tech Outage | Basics explained | Microsoft | Crowdstrike
Просмотров 7634 месяца назад
Biggest outage in World. A faulty software update causes havoc worldwide for airlines, hospitals and governments. The update caused technological havoc worldwide on Friday, grounding flights, knocking down some financial companies and news outlets, and disrupting hospitals, small businesses and government offices. 00:00 What Happened 00:40 Who's behind - Crowdstrike 01:55 Falcon Sensor and it's...
How I cracked Frontend Engineer Interviews at Amazon, Disney+ Hotstar, Swiggy and more
Просмотров 112 тыс.4 месяца назад
This video takes you through the strategy I followed to prepare for frontend engineer interviews at Amazon, Swiggy, Disney Hotstar and many more startup companies. 00:00 Intro 00:44 Javascript Concepts 02:52 Data Structures Algo 04:08 Web Optimisation 05:41 Browser, HTML, CSS 08:00 Golden Resource 10:00 Frontend System Design 11:04 Project Round 13:36 How to use these Resources 14:15 Outro Conn...
How Much Do Youngsters Spend in Bangalore? | Lifestyle & Expenses Revealed | Part-1
Просмотров 36 тыс.4 месяца назад
How Much Do Youngsters Spend in Bangalore? | Lifestyle & Expenses Revealed | Part-1
From Engineer to Actor, Director, Content Creator | Bangalore | Passion to Profession
Просмотров 3,9 тыс.4 месяца назад
From Engineer to Actor, Director, Content Creator | Bangalore | Passion to Profession
Asking strangers their Salary and Profession in Bangalore - Part 1
Просмотров 263 тыс.5 месяцев назад
Asking strangers their Salary and Profession in Bangalore - Part 1
People’s opinion on Bangalore | What Do You Like About Living in #bangalore ?
Просмотров 16 тыс.5 месяцев назад
People’s opinion on Bangalore | What Do You Like About Living in #bangalore ?
Unlimited Mango Meal in Malleshwaram | Closes after May month #malleshwaram #bangalore #mangomela
Просмотров 3,3 тыс.5 месяцев назад
Unlimited Mango Meal in Malleshwaram | Closes after May month #malleshwaram #bangalore #mangomela
Asking strangers their RENT in Bangalore | MG Road Edition
Просмотров 221 тыс.5 месяцев назад
Asking strangers their RENT in Bangalore | MG Road Edition
Exploring HSR LAYOUT BENGALURU | Vada Pao | Misal Pao | Chaitini x Gavran Misal #hsrlayout #vadapav
Просмотров 3,5 тыс.6 месяцев назад
Exploring HSR LAYOUT BENGALURU | Vada Pao | Misal Pao | Chaitini x Gavran Misal #hsrlayout #vadapav
Famous 4AM Biryani in Hoskote - Mani Dum Biryani - Full Video #hoskote #hoskotebiryani
Просмотров 6246 месяцев назад
Famous 4AM Biryani in Hoskote - Mani Dum Biryani - Full Video #hoskote #hoskotebiryani
Exploring Phoenix Mall of Asia | Asia's Largest Mall | Bangalore | India | Vlog | 4K | Walking Tour
Просмотров 1 тыс.6 месяцев назад
Exploring Phoenix Mall of Asia | Asia's Largest Mall | Bangalore | India | Vlog | 4K | Walking Tour
Early Morning Cricket 🏏 🔥 | Bangalore | Mini Vlog | Sunday | Aaj milwata hoon kuch dosto se
Просмотров 4336 месяцев назад
Early Morning Cricket 🏏 🔥 | Bangalore | Mini Vlog | Sunday | Aaj milwata hoon kuch dosto se
How I optimised the payment page at Disney+ Hotstar | Cumulative Layout Shift 🔥
Просмотров 5 тыс.8 месяцев назад
How I optimised the payment page at Disney Hotstar | Cumulative Layout Shift 🔥
Concurrency fundamentals Every Programmer MUST Know | Threads, Processes, and Parallelism
Просмотров 3538 месяцев назад
Concurrency fundamentals Every Programmer MUST Know | Threads, Processes, and Parallelism
Discover the Magic of Dubai | 4K | Follow your fire | #dubai Travel Music #dubaivlog #burjkhalifa
Просмотров 4289 месяцев назад
Discover the Magic of Dubai | 4K | Follow your fire | #dubai Travel Music #dubaivlog #burjkhalifa
The Snow Tripping #snow #trip #musicshorts
Просмотров 1502 года назад
The Snow Tripping #snow #trip #musicshorts
Auto Retry Network calls - using Javascript 🔥 #javascript #javascripttutorial #javascriptengineer
Просмотров 4,3 тыс.3 года назад
Auto Retry Network calls - using Javascript 🔥 #javascript #javascripttutorial #javascriptengineer
Why do Seasons occur on Earth ? 🔥| Solstices #season #solstice #wintersolstice
Просмотров 1593 года назад
Why do Seasons occur on Earth ? 🔥| Solstices #season #solstice #wintersolstice
where are MBA? i was curious for that
Whats the purpose of the video? Rent will naturalky be a function of a demand - supply equation, the location , the faclities etc. No rocket science that.
Thx man ,that's called worthy 🙌
That drone engineer sounds more honest.
I got an offer from opentext paying 15k per month I didnt accept the offer, but would I survive in this much amount if I would have taken the offer ? only for living , food and travel is free by the company??
With due respect, the issue is that such videos end up making people believe that’s how mucn people really make and landlords have increased rent like crazy and 60-70 % salary is also paid towards rent and they hardly save. They are many factors including shares, bonuses which are in the ctc but paid only a small percentage. Only a handful get paid truly high and they are bound to perform in cut throat competition else the salary is only short lived like the job..
22k-27k is nothing 😭me paying 55k pm for 2bhk 😢
People who asking questions and answering does not have manners to reveal the salary in public. It's completely unethical. Gen Z = Unethical
I just moved to Bengalore last month. And I am feeling like turuuuu gareeb... 🥹
Subscribd...
How can you pay 50k rent MCA graduates still not getting that much salary 😂😂😅
this is literally depressing, if you do it for more than 4 days a week
Entry Level in Salesforce 30-40LPA???? 🤣 That guy is definatley on drungs!!
Which month were u there bro?
January
The fact that i earn more than the guy and spend 4.5k on rent lel . Its better to spend the remaining on emi for a house 😂 Then again its all wfh for me and im only bangalore for the weather lel .
Mujhe kyu nahi milte aap MG road pe 😭
Sare aamer hai ya bas mai hi gareeb hu😢
I too stay in bangalore but Noone asks me like that .Why ?
Data engineer 5 lpa😂😂😂a big lie data jobs starts from 15lpa
You are very down to earth man, thanks a lot!
To all the people in the video, i am fresher placed in xyz company and got 85 LPA fixed + stocks 2Cr. Now tell me how that feels to you 😂😂😂😂😂😂😂😂😅
To all the people in the video, i am fresher placed in xyz company and got 85 LPA fixed + stocks 2Cr. Now tell me how that feels to you 😂😂😂😂😂😂😂😂😊😊
Civil engineering crying in corner 😅
Girls are honest.mostly. some boys are real show offs.
Only two people in this whole video are real !!!
Lol😂
Nice❤
I wanted to know your opinion over the future requirements for frontend roles, as many people hype AI and generally degrade frontend roles. What do you think about this? As I've just joined one service based company, I made few basic frontend projects in college and liked doing them at that time, That is why I was looking for direction to learn. I was looking for a video to help me start my own learning. Found your content straightforward and very helpful.
Glad to know it helped. First of all, Yes almost all of the programming not just frontend, is being learnt by an AI assistant. But there is large parts of work in big tech where AI can be just a pair programmer for some snippets of code, without knowing any of custom business logic. So programming and software development including frontend is still very relevant and we all look for very talented individuals who can solve UI challenges for Web, and even other platforms like Living room devices iOS android etc.
Hey Sourav, What tool do you use to edit your videos ??
Bro people with 3, 4, 5, 6, 7, 8 LPA too exist in bangalore. Not all tom and harry exist with high lackage. Reality is different. 😢
Software Engineer of service based companies in Bangalore don't make that much like tcs, Infosys,wipro etc etc earn 3-4lpa what u showed was teir 1 colleges students getting minimum 5-6 lpa as fresherers
Hey Sourav, How do you add colourful texts and youtube channel pics in between your videos ? Can you please suggest some ways and tools to do it ?
Hey Sourav, Your voice is really coming clearly over here. Can you please tell me what kind of collar mic 🎤 🎙️ are you using ? And how do you do the editing of your videos ??
Hey Sourav, The video is made in an amazing way. Sourav, to add this music, have you taken any music rights ? Because usually on adding any music, we get copyright !!
Lol they have to pay income tax tho
Sir I am confused a lot. Currently learning React and understanding it well but can build my own logic. Can I do DSA with Java or javascript cause companies only ask with Cpp Java. Pls tell me me sir how can I build my logic in coding
I would say irrespective of it, you should learn Java. And since you are learning React, Learn JS. When it comes to doing DSA, Use any of them, it doesnt matter much. Your logic building will come with practice, doesnt matter which language you use. I suggest people to learn Java anyways as it teaches lot about OOPS, even JS uses OOPS but as you said some companies do ask Java. So try to master both. Use any of them in DSA
Thank you so much for the content please keep going
Even alternate medical doctors get very low salary after 10 years of study.
10:53
Keep going
i'm interested for frontend role please can you tell me should i really need to learn trees and graphs for frontend interview to crack coding round or just linear dsa with dp is enough? I have strong understanding of frontend libraries and animation tools
Linear dsa enough h for 3 to 5 lpa startups and from where u learn html and css and have you made any project using html and css only?? or just learn basics and moved to js and frameworks as I am also learning html and css .. please reply 🙏
Amazon me work life balance kesa hai? I think frontend specific role pe to jada on call issues nhi hote hoge?
I have a good resume but still not getting interviews
As a recruiter I can vouch for all of their salaries. They are telling the truth. FYI Walmart pays good amount of stocks so their overall salaries are high always.
Clear and concise information 🙏🏼
Core of this is : A service can fetch the part of Google maps from Graph Database and then run the shortest path algo locally in memory. Why can’t the Graph database directly run the algo on itself ? • Latency: Fetching data from a database can introduce latency, especially for large datasets. When performing real-time computations like shortest path queries, the delay from network calls to the database can slow down the user experience. In-memory processing can significantly reduce response times. • Query Complexity: While graph databases are optimized for certain queries, more complex operations (like multi-hop queries, or those involving additional constraints) may require multiple interactions with the database, increasing overall execution time.
Oops sharing
@@anjalii1102 discord.gg/KFC4YsyQ
Assignment: What changes will you make in code if we assume the input given is for Undirected Graph ? Hint : You will have to assume edge : [a,b] is undirected edge. So your matrix or list should add entry for (b,a) edge as well.
Thanks for this content Really appreciate ❤
Glad you like it
Bhaiya i ma in first year of college and have less marks in 10 and 12 so I will only be shortlist for service based company but I wanted to work hard and get in good company. How can I achieve it please give me guidance.
Your 10th and 12th results would mean nothing. So work hard and develop skills that can actually get you a job