20 System Design Concepts Explained in 10 Minutes

Поділитися
Вставка
  • Опубліковано 21 лис 2024

КОМЕНТАРІ • 446

  • @anantprakashsingh8777
    @anantprakashsingh8777 Рік тому +130

    5:30 years and years of watching UA-cam videos and this has to be the most compelling way of asking for a sub yet, I would've subscribed had I not been subscribed already.

    • @MI5500
      @MI5500 Місяць тому

      He made a mistake. He showed the response body instead of the request body (payload) hence I'm not subscribing 😁

  • @yogeshputtaswamy8464
    @yogeshputtaswamy8464 Рік тому +725

    I love how the topics are connected to one another in a simple and neat way.

  • @avishkahettiarachchi8617
    @avishkahettiarachchi8617 Рік тому +525

    System design concepts explained in the video 👇
    1. Vertical scaling - refers to increasing the resources (such as CPU, memory, or storage) of a single machine to improve its performance or handle higher workloads.
    2. Horizontal scaling -adding more servers to a system to distribute the workload and increase overall capacity and performance.
    3. Load balancer - A load balancer is a network device or software that evenly distributes incoming network traffic across multiple servers or resources to optimize performance and ensure high availability.
    4. Content delivery networks - Content Delivery Networks (CDNs) are distributed networks of servers located geographically closer to end users, designed to deliver web content efficiently by caching and serving it from nearby locations
    5. Caching - Caching is the process of storing frequently accessed data or content in a temporary storage location (cache) to improve retrieval speed and reduce the need for repeated requests
    6. Internet Protocol Address - An IP address is a unique numerical label assigned to each device connected to a computer network
    7. TCP - TCP (Transmission Control Protocol) is a communication protocol that ensures reliable, connection-oriented transmission of data by dividing it into smaller packets, numbering them, and reassembling them at the receiving end.
    8. DNS - DNS (Domain Name System) is a decentralized naming system that translates human-readable domain names into IP addresses
    9. HTTP - HTTP (Hypertext Transfer Protocol) is a protocol that governs the communication between web browsers and servers, allowing for the retrieval and transfer of web pages and resources over the internet.
    10. REST - REST (Representational State Transfer) is an approach to designing web services that uses standard HTTP methods and URLs to facilitate communication between clients and servers.
    11. GraphQL - GraphQL is a query language for APIs that provides a flexible and efficient way for clients to request and retrieve data from servers by allowing them to specify exactly what data they need. Using single query it can fetch multiple resources without overfetching as well.
    12. gRPC - gRPC (Google Remote Procedure Call) is an open-source framework that enables efficient communication and interoperation between services by defining the interface and data contracts using Protocol Buffers and facilitating bi-directional streaming and error handling.
    13. web sockets - WebSockets is a communication protocol that provides full-duplex, real-time, and bidirectional communication between a client and a server over a single, long-lived connection.WebSockets can be used in applications such as chat systems or real-time collaboration tools, where instant and continuous data exchange between clients and servers is required.
    14. SQL - SQL (Structured Query Language) is a programming language used for managing and manipulating relational databases, allowing users to perform tasks such as querying data, defining database structure, and modifying data records. SQL is considered to use when fast retrieval of data is needed
    15. ACID compliance - ACID (Atomicity, Consistency, Isolation, Durability) compliance is a set of properties that ensure reliability and integrity in database transactions, guaranteeing that they are executed reliably, consistently, and without interference.
    16. NoSQL databases - NoSQL (Not Only SQL) databases are a class of databases that provide flexible, schema-less data models and horizontal scalability, making them suitable for handling large volumes of unstructured or semi-structured data.
    17. Sharding - Sharding is a technique in database management where data is horizontally divided and distributed across multiple servers or nodes to improve performance, scalability, and load balancing.
    18. Replication - Replication is the process of creating and maintaining identical copies of data across multiple servers or nodes, providing redundancy, fault tolerance, and improved data availability in distributed systems.
    19. CAP thoerem - The CAP theorem states that in a distributed system, it is impossible to simultaneously guarantee consistency, availability, and partition tolerance, and therefore, trade-offs must be made between these three properties.
    20. Message Queues - Kind of like databases because they have durable storage. They can be replicated for redunduncy or sharded for scalability. This can be used in task distribution and workload decoupling.

    • @Sanadtm
      @Sanadtm Рік тому +8

      Thanks Brother

    • @Jambajakumba
      @Jambajakumba Рік тому +4

      Thanks man! God bless you

    • @JazzEnrico
      @JazzEnrico Рік тому +2

      Thanks man :)

    • @kubrenh8976
      @kubrenh8976 Рік тому +3

      You fucking legend. I was going to make some notes. You saved me time. Cheers

    • @bithon5242
      @bithon5242 Рік тому +1

      HOLY BASED

  • @ankittayal8291
    @ankittayal8291 Рік тому +13

    Scaling- (because getting more users)
    Vertical scaling (add resources) - Increasing CPU,RAM
    Horizontal scaling (add replica) - Increasing number of machines
    - scale infinitely, Redundancy, Fault tolerance, don't need good machines
    load balancer (server known as reverse proxy) {directs incoming requests to the apporiate server using algorithms like Round Robin(balance traffic by cycling through pool of servers) Hashing( hashing incoming request ID) }
    Static content- Content Delivery Networks CDN (network of servers located all over the world) (copying files from origin server to CDN servers done by push or pull basis)
    Cashing - storing frequently accessed data to RAM
    IP - Internet Protocol Address Internet protocol suite (IP , TCP, UDP)
    DNS Domain name system - buy from DNS registrar , create DNS A record (IP address of my server)
    Application layer protocol - HTTP Hypertext Transfer Protocol (client server model){client initiates a request which includes 1.Request Header(Address of destination and client, metadata), 2.Request Body}
    API Paradigms (REST API, GraphQL, gRPC)
    REST Representational State Transfer (standardization around HTTP API making them Stateless and following Consisting Guidelines){successful request should include 200 OK code in its response header, bad req from client would return a 400 Bad Request code, Issue with server 500 Internal server error level code}
    GraphQL(single request aka query)(fetch multiple resources with single request, no over fetching)
    gRPC (RPC framework){server to server communication}
    gRCP web - Protocol Buffers(data is serialized in binary format {storage efficient}) - performance improvement compared to JSON (used by REST API)(human readable)
    web sockets - Bidirectional Communication
    SQL (Relational Database Management System like MySQL, PostgreSQL){Efficient Storage using data structures like B-Trees, Fast & Power Retrieval of data using SQL(Structured Query Language) queries since data is organized into rows and tables}(RDMS is ACID compliance(Atomicity{Every transcation is All or Nothing}, Consistency{foreing key and other constraints will always be enforced}, Isolation{different concurrent transcations wont interfere with each other}, Durability{data is stored on disk}))
    NoSQL(Non relational databases)(No consistency){consistency makes DBs harder to scale} (NO enforcing of foreign key constraints){break up DB and scale horizontally (sharding)} DynamoDB(key-value stores), MongoDB(Document Stores), neo4j(graph DBs)
    sharding done by shard key (range based sharding)(like ID of person)
    Replication-(read only copies) (Leader follower Replication){ (every write would be sent to leader who sends them to followers, every read can go to leader or follower) Leader-->(replication)-->follower} -
    (leader leader replication)Replica for every region - CAP theorem (to keep replicain sync)

    Message Queues (System receiving more data than it can process) durable storage and can be replicated for redundancy or sharded for scalability
    (Replication and sharding){ (read/write)Leader-->(replication)-->follower(read)}

  • @oleshko-g
    @oleshko-g Рік тому +29

    Oh. My. Gosh. This is THE most concise video about Systems design I’ve seen. All this fragmented things I’ve heard finally make sense together. Thank you 🙏

  • @sudiproy4413
    @sudiproy4413 Рік тому +62

    The best part is that I am already familiar with most of the concepts mentioned in the video. Still, I didn't realize it fell under the 'System Design' category since I am a self-taught backend developer.

    • @joaquin67
      @joaquin67 Рік тому +5

      Interesting. This just further proves that frontend and backend really do have a distinct divide. Client side and server side. Client side definitely focusing more on human interaction, server side focusing more on the "motor/engine" of an app.

    • @amcmillion3
      @amcmillion3 Рік тому +5

      @@joaquin67 Yea. I had it put to me perfectly by a senior on my team. Backend developers are really just data plumbers. We build all the underground plumbing for data to be moved around. Front end developers build the fancy sinks, toilets, showers, etc... that get the data from the plumbing.

    • @joaquin67
      @joaquin67 Рік тому +3

      @@amcmillion3 I always love hearing the house analogy further improved as both are equally important. For example, I wish I had more outlets in my apartment that was built in the 80s, and more cabinets for things. Likewise, I wish the plumbing in my 2nd restroom didn't have the hot/cold water temperatures reversed. Backend is the bridge between data and frontend, frontend provides interaction between backend and human. Unfortunately, the human is the only level in the stack that can't always be debugged lol

  • @maxlevelmedia7448
    @maxlevelmedia7448 Рік тому +1

    The elegance of his explanations is greatly overpowered by the hilarity of reading "range-based sharding." I thought sharding was bad enough when kept local

  • @jenithmehta9603
    @jenithmehta9603 10 місяців тому

    Hey, it was a good and interesting video. Thanks.
    Writing summary for my understanding.
    1. Horizontal scaling is better
    2. Load balancers are used to choose which server to interact with
    3. CDN are placed across the world, they help in faster delivery of static data.
    4. Rest API - standardization of api request
    5. Graphql - Ask only the data that required
    6. Storage - Relational(Sql), Non relational (mongo)
    7. Caching, message queues - Redis, Kafka

  • @kronk2294
    @kronk2294 16 днів тому

    This is one of the highest quality, most dense and seamless educational videos I've ever seen. Really smart, neetcode!

  • @KingstonFortune
    @KingstonFortune Рік тому +16

    CS590 Software Architecture summarized in 10 mins, awesome...this was definitely the most bulky course and you did way better than my professor in explaining

  • @meNoBatman
    @meNoBatman Рік тому +94

    Bowing down to this incredibly well made content. Thank you so much!

  • @ogpurpledaddy
    @ogpurpledaddy Рік тому +99

    Well done! Very digestible explanation with great motion graphics to help illustrate!

  • @aaroncohen6577
    @aaroncohen6577 Рік тому +9

    This is so well put together. So clear, concise and great graphics.

  • @DEBIEL918
    @DEBIEL918 8 місяців тому +1

    Amazing video! I hate how slow so many videos are and how much fluff they contain. You manage to explain these concepts in SUCH a simple way, which is a truly valuable and rare skill. Also +1 for the 5:29 subscribe button use case.

  • @rahulsbhatt
    @rahulsbhatt Рік тому +101

    Thank you for your hard work!

    • @Vikas_Kumar_Singh
      @Vikas_Kumar_Singh Рік тому +10

      @@sunset7456 thats much more than 5$ bro 4000/80 is 50 dollars

    • @Nischal.shetty02
      @Nischal.shetty02 Рік тому +24

      Bro just dropped 4k 💀

    • @dart_ariz604
      @dart_ariz604 Рік тому

      @@Nischal.shetty02 no bro actuallybri dropped class 4..😂😂

    • @Cringy69
      @Cringy69 6 місяців тому +10

      bhai....kitne ki package lagni hoti hai....aise 4k donate karne ke liye???

  • @vitalyl1327
    @vitalyl1327 Рік тому +26

    NoSQL is older than relational databases. All DBMSes were NoSQL prior to that Codd paper. All the flavours existed back then, in the late 60s - early 70s - document, hierarchical, graph-based.

    • @joeeeee8738
      @joeeeee8738 Рік тому

      Really? Wow I wouldn't have thought so!

  • @uwontlikeit
    @uwontlikeit 11 місяців тому +3

    Man I bought your lifetime subscription and I can say you have a talent to explain complex concepts in a simple language. You should expand your course to more areas - for example Cloud services (AWS, GCP, Azure...) - there are tons of content topics there and there are no content for those topics on youtube in terms of explaining as good as yours. You should do it bro!

  • @apipolaris
    @apipolaris Рік тому +3

    OMG tha was the most direct and simple way to explain a lot of important concepts! Every dev should watch this to understand more about the macro dev world

  • @wasiflatifhussain
    @wasiflatifhussain Рік тому +1

    The most creative way to ask people to subscribe! If I could, I would have subscribed 10 more times. Absolute genius!

  • @Techgether
    @Techgether 8 місяців тому

    Goes to show u really understand the concept when u can explain all the terms so well and easy to understand, all while making connections to each feature! 👍🏼

  • @GhazalVaughan
    @GhazalVaughan 4 місяці тому

    I loved the graphics and the way you tied everything together in one place.

  • @ravinders9221
    @ravinders9221 Рік тому +19

    Crisp & clear content. You were able to cover most of the important topics in just 10 min. Nice keep up the good work.

  • @zeeg1529
    @zeeg1529 Рік тому +8

    oh my god, i'm halfway through and i just had to stop watching and come here to comments to tell how much i love the video. the way it is structured and how easily and smoothly it takes us from concept to concept, never breaking the flow is just amazing. very well done! thank you SO SO MUCH for putting it out here!

  • @nahmevibestudio
    @nahmevibestudio 4 місяці тому +1

    I really like the way you pronounce ser-v-er. It slows down a bit which magically bring more order into the understanding.

  • @adarshchintada5600
    @adarshchintada5600 2 місяці тому

    I like how the topics are connected to one another in a simple way. Happy teacher's day🙌

  • @guhkunpatata3150
    @guhkunpatata3150 Рік тому +3

    i can see my years learning web in 10 minutes. very well made content and great explanation.

  • @jonobrien8848
    @jonobrien8848 Рік тому +7

    Should have mentioned queues back when you introduced horizontal scaling since you need it there and people would understand a fundamental use case more clearly.

  • @andrewkicha1628
    @andrewkicha1628 Рік тому +9

    Great job, I like how you balance between conciseness and covering just enough details so that people can further learn it if they are interested in a concept

  • @HikariSkript
    @HikariSkript Рік тому +43

    Very Useful content, I loved the Design pattern video also.
    Had an interview on Friday, They asked about the strategy pattern, I told them how to Make FilterStrategy. 🤣 The round was was supposed to be 1 hour long but ended in half hour. I answered almost all questions. But there is no response from them.

    • @sunithaarganurkar7486
      @sunithaarganurkar7486 Рік тому +1

      Where did you get filter strategy video in this channel?

    • @HikariSkript
      @HikariSkript Рік тому +2

      @@sunithaarganurkar7486 Search for neetcode design pattern, watch the video, he will explain with code. Pause the video to have better understanding.

    • @spooder5022
      @spooder5022 Рік тому

      how did it go?

    • @spooder5022
      @spooder5022 Рік тому

      did you hear back?

    • @HikariSkript
      @HikariSkript Рік тому +10

      @@spooder5022
      Hi, I got the response and cleared all rounds, there was a round with VP after that. The HR is delaying the offer tho, He said he will give the offer last Monday. I called again and again. No response.
      Meanwhile I got an offer from an Ad Tech company. The process was very smooth interactive interviews. Its giving 30% hike.
      The above one is a Data Science AI company.
      I am very confused should I pressurize the other company for offer or go with ad tech.

  • @marshall3900
    @marshall3900 8 місяців тому

    omg bro this is so much better than all other vids about system interview that I have seen

  • @fcurdi
    @fcurdi Місяць тому

    This is truly awesome. A great recap/overview!

  • @abeebraheem1489
    @abeebraheem1489 11 місяців тому

    This is the best short video I have ever seen about the system design. Keep up the good work.

  • @vijaymohanreddy2869
    @vijaymohanreddy2869 Рік тому

    Explained in simple and graphical way., that’s awesome!!

  • @AnandSadasivan
    @AnandSadasivan Рік тому +3

    Best ever! Compact and interesting intro to system design concepts!!! Excellent!

  • @cineclassicshub
    @cineclassicshub Рік тому +7

    So much information in 11 minutes. Thank you for making it happen. Very helpful.

  • @sivan2878
    @sivan2878 Рік тому +1

    Awesome summary, I was actually looking for it.

  • @shantanuSkulkarni
    @shantanuSkulkarni Рік тому

    05:32 It was the most intuitive way of getting subscribed.

  • @Casanovajosh
    @Casanovajosh Рік тому

    Most valuable 10 mins was spend! No second was wasted. kudo to you!

  • @Srishti9015
    @Srishti9015 Рік тому

    Great video, this is exactly what i was looking for to prepare for my interview tomorrow. Thanks!

  • @Xaoticex
    @Xaoticex 10 місяців тому

    I keep coming back to this, you need more content like this.

  • @javabeanz8549
    @javabeanz8549 3 місяці тому

    Nice video, just one complaint. Buying domain is from a Domain Registrar, and while they can host your DNS for your domain, that isn't a requirement. For example, our customers have different registrars, but the DNS servers are with the hosting provider that we use, since they have a nice integration for adding their servers to their DNS records, without the chance of mistyping the IP address. And some of the hosting providers give you a much easier to use interface, than some of the registrars. I have over 25 years of experience with DNS servers, and initially, I had to hand edit the records in text files, so I really enjoy the interface provided by some of the hosting providers.

  • @mahdijamil6473
    @mahdijamil6473 7 місяців тому

    3:45 It's called segmant because we are on transport layer. You use tcp/ip model so I think both packet or segment are the same

  • @UAFMeyer
    @UAFMeyer 10 місяців тому

    5:09 to be more precise, the request includes 3 parts: request line, request header and request body. Same for response, it includes 3 parts: status line, response header and response body

    • @NeetCode
      @NeetCode  10 місяців тому +1

      Good catch

    • @UAFMeyer
      @UAFMeyer 10 місяців тому

      @@NeetCode thanks 😊

  • @vishaldesaiVMD
    @vishaldesaiVMD Рік тому

    Wow! This video is impressively well-crafted, managing to be both concise and thorough simultaneously.

  • @anujapuranik2000
    @anujapuranik2000 Рік тому

    This video is the best to just brush up the topics . Thankyou for making this very easy to understand!!!

  • @dead_holicx3127
    @dead_holicx3127 4 місяці тому

    This was like a flashback of software developers journey ❤

  • @edh9500
    @edh9500 Рік тому

    Wow! That took so much knowledge to create such simplicity. Thank you.

  • @dan_le_brown
    @dan_le_brown Рік тому

    The last part summed it up perfectly!

  • @doctorrusty6494
    @doctorrusty6494 Рік тому +3

    Very good summary of different but related concepts. I wish there were videos like this when I was starting as a Junior Dev 😯

  • @arrowb
    @arrowb Рік тому

    Bro this video must be on Netflix ! what a informative and interesting video ! damn

  • @philippezevenberg1332
    @philippezevenberg1332 Рік тому +1

    CDN'S are so polite, would highly recommend one.

  • @subramanianchenniappan4059
    @subramanianchenniappan4059 11 місяців тому

    I work as a java tech lead in a startup . This will help for next interview

  • @SimulacrumOfFate
    @SimulacrumOfFate 10 днів тому

    Solid gold. I laughed out loud at the Russell Westbrook inclusion. Love it.

  • @erickshaffer6615
    @erickshaffer6615 Рік тому

    Good review to make sure I still know my basics

  • @AndroidHutOfficial
    @AndroidHutOfficial 3 місяці тому

    Good thing I know almost all concepts and implemented few of them as well

  • @xcoda
    @xcoda Рік тому +1

    I really loved all the concepts. I'm a front-end heavy full stack developer wanting to upskill in the backend department. These pointers are really helpful. Could anyone point me in the right direction to learn more advanced topics on database designs and it's efficiency?

  • @kishankalariya9086
    @kishankalariya9086 11 місяців тому

    One of the best videos I see for system design

  • @sakarienuh6293
    @sakarienuh6293 Рік тому

    bro no wonder the name of ur channel is neet because the video i've just watched is so neat really. this is the first time visiting ur channel and i hope i find many more amazing video like this one. Thank u

  • @kannaiyand2707
    @kannaiyand2707 3 місяці тому

    Thanks for summarising in quick time

  • @atift5465
    @atift5465 Рік тому +1

    This is an AMAZING Systems Design video covering all the key components and explaining them very well.

  • @chemsss8582
    @chemsss8582 Рік тому

    This is the best system design video i have watched!!

  • @prakhardeep60
    @prakhardeep60 Місяць тому

    hey i love the way topic more understandable for beginner, thanks 💛

  • @saijithendragonji5901
    @saijithendragonji5901 Рік тому

    one of the finest videos ever watched...

  • @SandVision03
    @SandVision03 Рік тому

    Clear, concise and precise

  • @shivthedev
    @shivthedev Рік тому

    This is pure gold for beginners! 🙂

  • @sagaravhad5198
    @sagaravhad5198 Рік тому

    The connection is really helpful. thanks!!

  • @EdwinManual
    @EdwinManual Рік тому +40

    I had to unsubscribe neetcode but I was able to see the network request.

  • @sunnyday12131
    @sunnyday12131 Рік тому

    so far the only tech youtuber I have followed whom sticks to tech topics rather than to just film “how to crack the leetcode in 3 months” or “what a day looks like as a sde”😂

  • @Adham-gh1pg
    @Adham-gh1pg Рік тому

    The most clever way to get someone to subscribe

  • @user-zhai08ju
    @user-zhai08ju Рік тому +289

    I was following your example, but I had to unsubscribe to see the request.

  • @2pacgamer
    @2pacgamer 2 місяці тому

    Bro this video is so much priceless ! It is one of the best or The best I have ever watched ! I learned so much on some specific points. This one should be given to any Junior learner or even Experience dev as well. So glad this one came on my feed.
    Amazing work Sir !!

  • @tonyz2203
    @tonyz2203 Рік тому

    Thanks for the video. Crystal clear.

  • @uchungnguyen1474
    @uchungnguyen1474 Рік тому

    This is just gold! Thank you!

  • @colinrickels201
    @colinrickels201 3 місяці тому +1

    really cool the way he intertwined these concepts. Also this is the first time ive heard database replication referred to as "leader adn follower". Come on now lol its master and slave instances.

  • @abhisheksaraf6434
    @abhisheksaraf6434 3 місяці тому

    Nicely explained...loved each & every bit of it..!

  • @djolf
    @djolf Рік тому

    Knowing these doesn't make you a senior developer, but every senior developer should know every one of these...

  • @mrsbootsworkouts
    @mrsbootsworkouts Рік тому +1

    Thank you so much, very helpful!

  • @qianli555
    @qianli555 Рік тому

    I have a system design interview 3pm today and it's 12pm, so I'm looking into this video.

  • @PrafulPrasad
    @PrafulPrasad 4 місяці тому

    This entire video is worth years of engineering knowledge

  • @Kevin509wisdom
    @Kevin509wisdom 11 місяців тому

    Different concepts are well arranged. It makes super easy to understand them. Do you have more deep explainations?

  • @krishnajha1
    @krishnajha1 Рік тому

    Very quick and linked information.

  • @oluwagbengakosoko9014
    @oluwagbengakosoko9014 7 місяців тому

    Wow! One of the best videos on UA-cam

  • @ayeshatahir8570
    @ayeshatahir8570 2 місяці тому

    hey could you add videos focusing on securing the system , and handling payments in your system design course on neetcode.. thankssss

  • @great-knowlage
    @great-knowlage 6 місяців тому

    this explanation is just perfect 🤝🤝

  • @Alim-yo3sc
    @Alim-yo3sc Рік тому

    Nice and simple... Thank you!

  • @smtp_yurzx
    @smtp_yurzx Рік тому

    Amazing, this is why I follow you!

  • @anamshaikh5010
    @anamshaikh5010 Рік тому

    I loved your video just in the first 48 seconds
    Subscribed already!!! Keep it up!!

  • @InfoBuzz1130
    @InfoBuzz1130 Рік тому

    very well explained and easy to understand . thanks

  • @Aidan-WW
    @Aidan-WW Місяць тому

    absolutely amazing video!

  • @vjnvisakh
    @vjnvisakh Місяць тому +1

    well prepared

  • @minciNashu
    @minciNashu Рік тому +14

    My experience with AWS interviews was that no matter how much system design you practice, in the end they're gonna want previous experience with cloud and backend, not just theory. Unless you're applying for a junior role.

    • @garrettfiorito4482
      @garrettfiorito4482 Рік тому +9

      junior roles are scarce nowadays they want intermediate at least

    • @gabrielaudette4591
      @gabrielaudette4591 Рік тому +1

      Don't mean to be rude but, who asked ?

    • @garrettfiorito4482
      @garrettfiorito4482 Рік тому +21

      @@gabrielaudette4591 Anyone with code interview experience should feel comfortable sharing their experiences don’t be a dick lol

    • @benraby5775
      @benraby5775 Рік тому +4

      @@gabrielaudette4591ironically being incredibly rude in the process

    • @fackyoutube8452
      @fackyoutube8452 Рік тому

      @@garrettfiorito4482 how do you get experience to intermediate if you can’t get experience as a junior? Do you just look for unpaid internships? Sounds unproductive, prob need to know someone who already works there for connections.

  • @towatch
    @towatch Місяць тому

    Very informative! Thanks

  • @naranyala_dev
    @naranyala_dev Рік тому

    thank you NeetCode, enjoy the show

  • @hotatetaho9564
    @hotatetaho9564 8 місяців тому +1

    5:27 Smoothest subscribe bait ever!

  • @yuridesideri7144
    @yuridesideri7144 Рік тому

    You're truly awesome bro

  • @michabajerski7360
    @michabajerski7360 Рік тому

    Brief, great video. I love this!

  • @libin4403
    @libin4403 Рік тому

    Excellent content mate !

  • @jamalhaider1617
    @jamalhaider1617 Рік тому

    Wow man you did a great explanation in very short time.

  • @Herve-t5y
    @Herve-t5y 26 днів тому

    This is great! Good job!

  • @ajayraikar4694
    @ajayraikar4694 Рік тому

    Simple & Clear👌🏻