System Design for Beginners Course

  Рет қаралды 1,350,784

freeCodeCamp.org

freeCodeCamp.org

Күн бұрын

Пікірлер: 349
@TheEvolvingEngineer
@TheEvolvingEngineer 2 жыл бұрын
I am not even a software engineer but the way he started explaining things make so much sense to me and made me stick to the video till the very end. Gaurav knows who make it engaging. Kudos to FCC and Gaurav!!
@sailendrapamidi
@sailendrapamidi Жыл бұрын
Exactly my thoughts.
@magicmedia7950
@magicmedia7950 Жыл бұрын
That is what system design is all about. It's meant to be understood by the layman. Surprisingly the most important part of programming is not in writing the code rather it's solving a problem using logical sequence that captures everything problem solution(system design). If you are not good at this then programming may not be for you!
@illuminatidaylight8566
@illuminatidaylight8566 Жыл бұрын
I want to get placed as a software Engineer so for this should i learn system design ?? Is this video good for a starter ?
@tazzyw
@tazzyw Жыл бұрын
@@magicmedia7950 well said
@mma-dost
@mma-dost 10 ай бұрын
sorry for the late reply but learn system design at the start may be interesting for starting but you need to learn how to write code and make good projects.@@illuminatidaylight8566
@potatocoder5090
@potatocoder5090 2 жыл бұрын
FreeCodeCamp is amazing! Only yesterday, I was learning Assembly Programming with ARM for beginners on this channel, and today there's a system design course already waiting for me! Thank you Gaurav for creating such a thorough resource for free and FreeCodeCamp for bringing it to millions of learners like me :)
@KejriwalBhakt
@KejriwalBhakt 2 жыл бұрын
Just to let others know, Gaurav has started his own startup and is being helped by the startup cell of Maharashtra state to smoothen out the process.
@rachitshukla7111
@rachitshukla7111 2 жыл бұрын
Context?
@ankitrawat06
@ankitrawat06 2 жыл бұрын
​@@rachitshukla7111 koi context nhi h bas likhna h
@rachitshukla7111
@rachitshukla7111 2 жыл бұрын
@@ankitrawat06 😂😂😂😂😂😂😂
@neowantsword
@neowantsword 2 жыл бұрын
Thanks bro😌🙏
@thranduillord001
@thranduillord001 10 ай бұрын
kejru to pakda gaya bhai
@derp-x3j
@derp-x3j 3 ай бұрын
"The next step is to convert these requirements into classes and objects. This is where things usually go wrong." exactly what brought me to this video
@Sandeep-zd6dq
@Sandeep-zd6dq 2 жыл бұрын
Now I will start my system design journey with this course.
@tolufindsyourhome
@tolufindsyourhome 2 жыл бұрын
Thanks Gaurav, Glad to have you here. I worked on many case studies of your classes and has tremendously helped in getting my system design skill to an advance user over the last few months.
@IshanSasanka-ui8lc
@IshanSasanka-ui8lc 5 ай бұрын
This course introduces system design concepts for building large-scale distributed systems, covering design patterns, data modeling, and implementation considerations. It includes a case study on designing a live streaming video app. Highlights: 00:00 This course provides a detailed introduction to system design for beginners, focusing on engineering design patterns for building large-scale distributed systems and converting business requirements into technical solutions. -Large scale distributed systems involve handling high data volumes and user traffic, requiring servers distributed globally for performance and fault tolerance. -Design patterns are essential practices used by engineers to solve common problems efficiently, like distributing content to millions of users through a publisher-subscriber model. -Engineers convert business requirements into technical solutions by defining data structures, endpoints for data manipulation, and ensuring system reliability, scalability, and maintainability. 09:06 Designing a system requires considering extensibility, testing, and scalability. Testing the design before coding is crucial for system reliability and user satisfaction. -Importance of testing system design before coding for reliability and scalability. -Considerations for live streaming system design, including requirements like video processing, user interactions, and scalability. -Challenges in system design, such as failure scenarios, feature requests, and balancing front-end UI design with backend system design. 17:07 The video discusses designing backend APIs for real-time querying, including getting video frames and posting comments, and the database structure needed to support these functionalities. -Designing backend APIs for real-time querying and returning video frames based on device type and offset. -Implementing APIs for posting comments and manipulating data in the server. -Discussing the database structure for storing comments, users, and videos to support the defined APIs. 25:16 The video discusses the difference between stateful and stateless protocols, highlighting how stateless protocols like HTTP benefit by simplifying client code and making the network more efficient. It also explains the importance of choosing appropriate network protocols and database solutions based on system requirements. -Stateless protocols like HTTP simplify client code and make the network more efficient by avoiding duplicate requests, benefiting system performance. -Choosing the right network protocols, such as TCP for reliability or UDP for real-time efficiency, is crucial for effective video transmission and system design. -Selecting suitable database solutions, like NoSQL for scalability in handling complex data structures, plays a vital role in meeting system requirements and optimizing performance. 33:19 Highly reliable network and efficient camera are crucial for live video streaming. Different resolutions and formats are needed to cater to various devices and user preferences. -Importance of network reliability and protocol for live video streaming. RTMP protocol ensures data integrity during video transmission. -Significance of transforming raw video footage into different resolutions and formats to meet user device requirements. Considerations for resolution preferences and customer feedback. -Utilizing the map reduce design pattern to process and convert raw video data efficiently. Exploring the use of different servers and compression techniques in the conversion process. 41:25 System design for large-scale distributed systems involves considerations like performance, cost, and engineering effort. Utilizing CDN solutions and well-tested tools from cloud providers can optimize system performance and cost-effectiveness. -Importance of utilizing CDN solutions and cloud provider tools for optimizing system performance and cost-effectiveness in large-scale distributed systems. -Challenges and considerations in system design, including authentication for content delivery through CDNs and the trade-offs between cost and performance. -The significance of low-level design in system architecture, focusing on interactions between system components, network calls, and data handling. 49:30 Low-level design requirements like concurrency, latency, and throughput impact code writing. Use case diagrams help identify user needs. Fulfilling user requirements leads to happy customers, crucial for engineers. -Understanding low-level design requirements such as concurrency, latency, and throughput is essential for writing efficient code. -Utilizing use case diagrams to identify and fulfill user needs is crucial for ensuring customer satisfaction and success as an engineer. -Translating user requirements into classes and objects is a key step in the design process, ensuring clear APIs and efficient implementation. 57:38 Understanding the difference between 'play' and 'get video frame' APIs is crucial for designing efficient video playback systems. Consider user behavior and business use cases when merging similar APIs to streamline maintenance and improve user experience. -Differentiating between user actions like 'play' and 'get video frame' is essential for optimizing video playback functionality and enhancing user engagement. -Considering the business use cases and user behavior helps in merging APIs effectively to reduce maintenance overhead and improve overall user experience. -Designing class diagrams for video-related systems involves defining states, behaviors, and operations for entities like videos, users, and video consumption services. 1:06:10 Understanding the sequence diagram is crucial for defining the sequence of actions in a system. Authentication plays a key role in interactions between users and video services, impacting network calls and efficiency. -Importance of sequence diagram in defining actions and interactions within a system for clarity and structure. -Significance of authentication in user-video service interactions, affecting network calls and operational efficiency. 1:13:45 The video discusses defining states and behaviors of objects, emphasizing the importance of handling timestamps accurately in class diagrams and code for video-related applications. -Importance of accurately handling timestamps in class diagrams and code for video applications. Emphasizing fixing discrepancies in both places for better documentation and functionality. -Addressing the need to handle exceptions and avoid magic constants like 'plus 10' for frame time, suggesting using constants for flexibility and easy maintenance. -Discussing the variability in frame times based on video content quality and suggesting defining frame time as an object property for each frame rather than a class property. 1:21:50 The video discusses creating a database, defining classes, and manipulating data through APIs to simplify code and enable reuse in system design. It emphasizes abstracting data into objects for different use cases. -Creating a database and defining classes are crucial steps in system design to support data manipulation and API exposure for code simplification and reuse. -Abstracting data into objects with distinct state and behavior facilitates efficient data manipulation and code simplification for various use cases in system design. -The video suggests exploring free resources on design patterns and system basics before considering advanced paid sections to enhance system design knowledge. Generated by sider.ai
@debmalyamitra353
@debmalyamitra353 2 жыл бұрын
Yup Gourav Sen, the OG of system design, no surprises there!!
@horacinis
@horacinis 2 жыл бұрын
Gaurav Sen***
@ankush8270
@ankush8270 10 ай бұрын
​@@horacinisGaurav Senpai😅
@marvelousadesina4673
@marvelousadesina4673 2 жыл бұрын
Big thanks to everyone at FCC for their efforts in making these videos
@alfazjikani7022
@alfazjikani7022 Жыл бұрын
Thanks!
@jamialhasan9203
@jamialhasan9203 10 ай бұрын
Teaching something simple thing in complex way dose not really mean learning system design, rather knowing philosophy behind a system or process is more important.
@tusharys9404
@tusharys9404 9 ай бұрын
I agree to this
@aldrinseanpereira140
@aldrinseanpereira140 2 жыл бұрын
Gaurav hats off to your wonderful course!
@juffler463
@juffler463 2 жыл бұрын
I know all this but I was doubting my self that, Is my way of system design is right. Now I am more confident thanks 🙂
@IsxaaqAcademy
@IsxaaqAcademy 2 жыл бұрын
I typed it on the search box, and you have uploaded it 5 hrs ago, Delightful!
@chauvoluuhuong7485
@chauvoluuhuong7485 2 жыл бұрын
For me, it is not about SQL or noSQL It is more about: - Is it cheap? is it scaleable? at this stage of the project can I utilize my available resource? - Do we need schemaless/no schemaless, usually because of shameless, the database needs to take more space for storing and is slower at execution. Like dynamic-typed langue vs typed language. - Can I make relationship ? (typically the NoSQL is considered weak relationship, BUT YOU CAN STILL MAKE RELATIONSHIP. PLUS, BECAUSE OF SCHEMALESS YOU CAN EMBED DOCUMENT FOR MAKING THE RELATIONSHIP AND MAKING THE QUERY FASTER WITHOUT JOINING ACROSS TABLES ) - How about its built-in function? it is usually better if you make the computation on the database instead of pulling it down to the server and computing and of course, you don't have to re-develop that function - The last one, of course, which type of database is more familiar to my team
@domisPL_01
@domisPL_01 2 жыл бұрын
i believe you mean "schemas" , not "schemaless"?
@nobytes2
@nobytes2 Жыл бұрын
In terms of databases you really only have a few types, NoSQL, SQL, and in-memory. The brand of the db is almost irrelevant any decent engineer should know how to work with any of them.
@jibbscat5146
@jibbscat5146 5 ай бұрын
What about graph db
@theeddytor3490
@theeddytor3490 5 ай бұрын
AWWW you sweet summer child. :) - former accenture HOD.
@maxfrischdev
@maxfrischdev 5 ай бұрын
If a course starts with "hellou ewerywone!" I at least know that he put in the effort and worked damn hard to make it! Cheers! (For the trolls, this is not racist but actually respecting and valuing the creator and effort! I have been to India.) Thanks Gaurav, great intro! 🤘🏻😎
@mrsbootsworkouts
@mrsbootsworkouts Жыл бұрын
I really liked this course. it includes not just the patterns, but also connects it to the process of distilling Business Needs as an engineer. Thank you for sharing this course! Excellent point about testing the design, especially for large complex systems.
@borisv8766
@borisv8766 8 ай бұрын
Great video. 1:18:43 - if going with variable frame length, then, if a frame is extended with absolute start position attribute, it becomes possible to do binary search within frames array for timestamp, instead of linear iterations ( O(log n) vs O(n) ). With fixed frame length even better, instead of iterations just divide timestamp by frame length, and we have a frame index in O(1).
@mikedelta658
@mikedelta658 2 жыл бұрын
Thank you, the one and only Gaurav Sen!!! From Ethiopia
@gkcs
@gkcs 2 жыл бұрын
Thank you!
@MD.PoragSarkar
@MD.PoragSarkar 9 күн бұрын
Cool... just felt it right here... 1:19:10 How it feels to be an engineer & not just a coder :) Awesome...
@rajeevsinha2670
@rajeevsinha2670 2 жыл бұрын
One of the best videos i have where it explains all nuances of system design from front end to back end, how APIs work, DB, network, protocols etc. 👏👍
@illuminatidaylight8566
@illuminatidaylight8566 Жыл бұрын
I want to get placed as a software Engineer so do I have to learn system design ? Should I watch this course ?
@khyatichaudhary4083
@khyatichaudhary4083 Жыл бұрын
​@@illuminatidaylight8566This course is not sufficient. Yes,you need to study.
@illuminatidaylight8566
@illuminatidaylight8566 Жыл бұрын
​@@khyatichaudhary4083thank you for replying 😊 So do you have the idea about the sufficient ones ??
@fabio.1
@fabio.1 Жыл бұрын
👀
@michaelwarren8354
@michaelwarren8354 Жыл бұрын
"You want your features to be extensible. For this, you have to take out your engineering crystal ball, and gaze deeply into it..." 😂🤣
@divyanshupandey4041
@divyanshupandey4041 2 жыл бұрын
best gaurav sen system design video ever
@yashukumar4713
@yashukumar4713 Жыл бұрын
Prerequisites for understanding the concepts is some sort of APIs Knowledgs, Networking Protocol, Database System. Just need basic concepsts.
@Tridib_Tinkel
@Tridib_Tinkel Жыл бұрын
Most precious gift for the web developers!
@priyan8004
@priyan8004 Жыл бұрын
Who knew the power of free knowledge ! Thanks man for all the effort.
@chrismachabee3128
@chrismachabee3128 6 ай бұрын
You talked a little fast, but wow, you sure a happy happy person dispensing your knowledge and I for one grateful. I'm taking an AWS Machine Learning course and getting to seee some nuts and bolts was absolutely great. That was a lot of work and you know it like the back of your hand. You you don't have a company yet? I have OPENAI ChatGPT, and you remind of the guy the Sam Altman, knows everything about how it works. really good job. Thank you.
@sathvikvutukuri9179
@sathvikvutukuri9179 2 жыл бұрын
Oscar award for Best system designer.
@jhonsen9842
@jhonsen9842 2 жыл бұрын
He is Gaurav. The God Of System Design.
@rustam-z
@rustam-z 2 жыл бұрын
Nice short introduction to system design! Nice job Gaurav!
@NoNTr1v1aL
@NoNTr1v1aL 2 жыл бұрын
Nice Microservices reference! 😂
@umeralam4668
@umeralam4668 5 ай бұрын
Wonderful, I am just a passionate newbie who jumped in the field of programming a while ago I learned the languages and the tools now, I had to make my final project which is going to be a full stack project, but I was really confused that how you can create a well-functioning Application and thanks to Gaurav Son that I got to see the clear path of creating an application .... ( :
@lewismuriungi4564
@lewismuriungi4564 Жыл бұрын
Just started the video, so far so good, should be the first step when thinking of creating software
@王冠信-o1c
@王冠信-o1c 2 жыл бұрын
This course is decent! I learned this course in my degree, and it cost 3500 USD. Huges thanks to Gaurav Sen and freeCodeCamp.
@amankumarjha8155
@amankumarjha8155 2 жыл бұрын
The knowledge and versatility of Gaurav is just amazing, I m stunn
@jmbert0
@jmbert0 2 жыл бұрын
You posted this at the perfect time thank you
@adrianbitsinnie1537
@adrianbitsinnie1537 2 жыл бұрын
For Real!! I didn't notice it was posted 7 hours ago but it is such perfect timing for me
@yogeshwarbarai9686
@yogeshwarbarai9686 4 ай бұрын
This channel never fails to provide free knowledge
@alexmagnitov7324
@alexmagnitov7324 2 жыл бұрын
Please, do something about architectures like layered, event-driven, etc. To a newbie like me it’s really complicated to build highly responsive projects.
@gkcs
@gkcs Жыл бұрын
I have a video on event driven architectures on my channel.
@prashlovessamosa
@prashlovessamosa 2 жыл бұрын
Already learnt form this legend
@akumarsingh85
@akumarsingh85 2 жыл бұрын
Wow just what I was looking for this year!!
@akhzarnazir
@akhzarnazir 9 ай бұрын
Thanks Gaurav, Salam from Lahore, Pakistan
@umehmoses8118
@umehmoses8118 Жыл бұрын
This is wonderful. Much love from Nigeria
@kidoo1567
@kidoo1567 2 ай бұрын
Requirements (most important first) , then think of the object for feature, endpoints,outage proofing, extensibility (easy to change) , test
@askholia
@askholia Жыл бұрын
A fantastic resource for any newer software engineers.
@PrantikNoor
@PrantikNoor 2 жыл бұрын
Thanks for this course. It will help to design my project better.
@SatyaUpendra
@SatyaUpendra Жыл бұрын
Good to see @gkcs here
@johnroca338
@johnroca338 2 жыл бұрын
Wowow! Super informative! Better than I had in my school!
@mllenessmarie
@mllenessmarie Жыл бұрын
Holy cow, is that Galactus? Great easter egg, guys!
@cemunlu9552
@cemunlu9552 2 жыл бұрын
i have exam about information systems and this contains the subject thankss!!!
@sherwinmontanez5481
@sherwinmontanez5481 Жыл бұрын
Kudos to this man!😊😊😊 I learn a lot in your system design course. It's a good video to watch in 2024
@utsavnangalia7580
@utsavnangalia7580 Жыл бұрын
Great Tutorial, videos like these really make a difference. Thank you for the efforts Gaurav and the team at FCC.
@achiver
@achiver 2 жыл бұрын
Really I wait for that course so long
@aammssaamm
@aammssaamm 2 жыл бұрын
Try reading books. 😂
@focus_seeker
@focus_seeker 11 ай бұрын
THE OG OF SYSTEM DESIGN
@borisv8766
@borisv8766 8 ай бұрын
Excellent walkthrough! Nitpicking: at 33:37 RTMP must be arrow-connected to the "video" table, not to the "user".
@noahhradek5426
@noahhradek5426 2 жыл бұрын
thank you for this. System design is on interviews and there are very few resources.
@gkcs
@gkcs 2 жыл бұрын
You can also try InterviewReady for system design interviews.
@Srishti9015
@Srishti9015 Жыл бұрын
I am still going through the video, but just wanted to say thanks so much for making content like this. It's so well thought out and articulated. I am a mid-level engineer and I have a rough, abstract understanding of most of these concepts but I need the nitty gritty to be reinforced so that I can talk about it confidently. You covered exactly that in your example. Thanks Gaurav and thanks freecodecamp for another video that hits the nail on the head
@visheshgupta4990
@visheshgupta4990 Жыл бұрын
Thankyou so Much , This is a very informative video , this videos takes us on a journey where we think deeply which we never thought before , How in detail a engineer thinks about every aspect from making a call for next 10 seconds video frame , and all the various parts to make sure for a user the complete experience is so smooth and he never bother about it ... Thankyou so Much it is a great video to start learning about system design , It is interesting and Informative 🔥🔥
@shiwamsinha7076
@shiwamsinha7076 Жыл бұрын
very fruitful video
@JackSparrow-tv3mo
@JackSparrow-tv3mo 2 жыл бұрын
Love u , searching this topics from long time.
@CodeSnap01
@CodeSnap01 2 жыл бұрын
gaurav is an inspiration to many
@aceintheblackhole
@aceintheblackhole Жыл бұрын
i like the idea of Brad Pitt posting on LinkedIn :D great course, thank you ;)
@irfanadamm5819
@irfanadamm5819 Жыл бұрын
great for viewing from ux designer point of view
@zohebahmed6733
@zohebahmed6733 2 жыл бұрын
Nothing much to say, Just happy to see Gaurav Sen :3
@theobaldigberaese4572
@theobaldigberaese4572 2 жыл бұрын
Great work ✅
@jelonidas7772
@jelonidas7772 2 жыл бұрын
I've been waiting for that! thx FCC!
@jochenruland1537
@jochenruland1537 7 ай бұрын
Very helpful video - thank you a lot!
@founder8372
@founder8372 2 жыл бұрын
Excellent course, thank you! I really wish though that the audio quality was better
@EvilTim1911
@EvilTim1911 2 жыл бұрын
I'm hearing slack notifications in the background and it gave me a panic attack because it's Friday night as I'm watching this
@anishkoirala8532
@anishkoirala8532 Ай бұрын
Providing video notes(if there are any ) would be great to revise it later.
@thetrainoflife8327
@thetrainoflife8327 Ай бұрын
Nice Explanation !! Thanks
@harsh9558
@harsh9558 Жыл бұрын
Awesome video! Really enjoyed through the video
@dustinbruce
@dustinbruce Жыл бұрын
When he said 'if this sounds exciting to you' I had to laugh a little. I'm the only person in my life remotely interested in software engineering. My fiance is a CNA getting her RN. My dad owns a welding business. Her stepdad and brother both weld, so all in all I am the only person I know interested in it, and I get really excited about different software engineering related things, and I always feel like the oddball out. So it's nice to know other people get excited about it as well xD
@AllenLSY
@AllenLSY 2 жыл бұрын
Gaurav? That's a person for interview. Interview is quite different than real system design.
@egbolives123
@egbolives123 Жыл бұрын
This was a very educative course! highly recommended
@arnoldbhebhe
@arnoldbhebhe 2 жыл бұрын
Hi @gkcs! Thank you for the amazing content. Your videos have been super helpful in helping me understand system design!
@gkcs
@gkcs 2 жыл бұрын
Thank you!
@arnoldbhebhe
@arnoldbhebhe 2 жыл бұрын
@@gkcs you're welcome! Do you have any project recommendations that can help with mastering these skills?
@JoeyJiao
@JoeyJiao Жыл бұрын
Liked it. Very informative in an easy-to-understand way!
@shloksuman8164
@shloksuman8164 2 жыл бұрын
Pretty well summed up by him , helpful for beginners like me
@TheJohndward01
@TheJohndward01 2 жыл бұрын
This is an amazing tutorial, thank you FCC!
@nbme-answers
@nbme-answers 2 жыл бұрын
the content like 👑💎 but the audio like 😭😭
@chrisrockscode1202
@chrisrockscode1202 11 ай бұрын
Yeah I totally could have used this video last year when I was deep into my capstone project, except I was trying to figure out all this stuff with my team trying to come up with a very similar program, our conversations were very similar to everything in this video… we weren’t able actually make a viable product tho, this would have been a great help… we were missing some of the late video processing parts that were very complex to get implemented and working
@dandandan01
@dandandan01 2 жыл бұрын
5:46 got me good
@gkcs
@gkcs 2 жыл бұрын
Yes!
@Mouni_MahendraNath
@Mouni_MahendraNath 2 жыл бұрын
Thank you so much ❤😂🎉👏🙏🏻🤔🤝👌👍
@polarbear986
@polarbear986 Жыл бұрын
The tutor is amazing
@joseantoniojose7933
@joseantoniojose7933 Жыл бұрын
Thanks a helpful and intersting video of all these systems topics... Very good...
@nikkis8102
@nikkis8102 Жыл бұрын
Hands down the best system design course ever. Thanks so much!!!!
@lemonjuice6177
@lemonjuice6177 Жыл бұрын
Bro this is nuts
@ivanfoofoo
@ivanfoofoo Жыл бұрын
What's nuts? xD
@kush501
@kush501 2 жыл бұрын
Thanks you sir!!!
@Mari_Selalu_Berbuat_Kebaikan
@Mari_Selalu_Berbuat_Kebaikan Жыл бұрын
Let's always do alot of good ❤️
@i_am_dumb1070
@i_am_dumb1070 Жыл бұрын
I am thinking of making a basic video sharing and streaming platform for personal projection and this really helped me a lot thankyou
@pavanrayudu5
@pavanrayudu5 Жыл бұрын
great tutorial for beginners
@artyomnomnom
@artyomnomnom 2 жыл бұрын
It would be great having subtitles for such important topic
@lishingchan1075
@lishingchan1075 11 ай бұрын
thanks for this video! I am a PM and would like to understand how developers work. Would you have a recommendation on the time taken for each stage: api design, database design, protocol before implementation?
@Lost1nTranslation
@Lost1nTranslation 2 жыл бұрын
Thank you!
@shubhamsingh-gb5zh
@shubhamsingh-gb5zh 2 жыл бұрын
Very good explanation
@cankoban
@cankoban 2 жыл бұрын
Finally 🎉
@techwithbube
@techwithbube Жыл бұрын
Awesome content. I really enjoyed this
@sohamvishwas6795
@sohamvishwas6795 2 жыл бұрын
Thank you :)
@TheMorningSmoke
@TheMorningSmoke 8 ай бұрын
Ii dont think the course is made for Beginners. Ive been working as a mobile app developer for 4 years now but I dont know all these protocols you are talking about as well as db architectures. I think we need more explanation on what are the options to choose from and why you ve chosen a particular solution Overall thank you for the course and your precious time.
@NguyenHuy-et8wy
@NguyenHuy-et8wy 6 ай бұрын
Awesome content but the audio is not good quality unfortunately... hope the courses will have better audio quality next time!
@jatinnandwani6678
@jatinnandwani6678 2 жыл бұрын
Thanks so much
@vimalalwaysrocks
@vimalalwaysrocks Жыл бұрын
1:18:47.. isnt the timestamp condition inverted? Shouldn't it be if (frames[i].timestamp >= timestamp && frames[i].timestamp + Frame.frameTime < timestamp)? Great tutorial btw
System Design Interview: Design Ticketmaster w/ a Ex-Meta Staff Engineer
58:39
Hello Interview - SWE Interview Preparation
Рет қаралды 200 М.
Google system design interview: Design Spotify (with ex-Google EM)
42:13
IGotAnOffer: Engineering
Рет қаралды 1,2 МЛН
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
AI Overview 4Eevery1
1:25:36
Digital Academy
Рет қаралды 27
APIs for Beginners - How to use an API (Full Course / Tutorial)
2:19:33
freeCodeCamp.org
Рет қаралды 4,5 МЛН
Jeff Dean: AI will Reshape Chip Design - NeurIPS 2024
43:53
GradientSpills
Рет қаралды 6 М.
Vue.js Course for Beginners [2021 Tutorial]
3:39:56
freeCodeCamp.org
Рет қаралды 1,3 МЛН
Intro to Java Programming - Course for Absolute Beginners
3:48:25
freeCodeCamp.org
Рет қаралды 3,7 МЛН
WEB & HTTP
32:03
Dr. P. Getzi Jeba
Рет қаралды 55
Design Twitter - System Design Interview
26:16
NeetCode
Рет қаралды 557 М.
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН