I Have Tried Copilot Chat on ASP.NET Core and This Is What I Got

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 มิ.ย. 2023
  • Download the source code for this demo at Patreon: / copilot-chat-can-84932984
    Ever wondered how the newly introduced Copilot Chat, which is a part of the GitHub Copilot X suite, combines with its predecessor, the line-based GitHub Copilot, when designing complex features in an ASP.NET Core application? In this video, we have challenged these AI-powered tools to assist in the creation of one tricky feature that requires a bit of object-oriented design, on top of filling the methods with code.
    Discover how Copilot Chat, powered by GPT-4, can generate large portions of code in an interactive manner and observe the good-old line-based GitHub Copilot helping design a system of classes and interfaces.
    Although they can't fully replace a human developer when it comes to design, these tools can certainly speed up the coding process. Join us as we navigate the fascinating world of AI-assisted programming. By the end of this video, you'll have a solid understanding of when to use which tool and how it can aid in your software development journey.
    Thank you so much for watching! Please like, comment & share this video as it helps me a ton!! Don't forget to subscribe to my channel for more amazing videos and make sure to hit the bell icon to never miss any updates.🔥❤️
    ✅🔔 Become a patron ► / zoranhorvat
    ✅🔔 Subscribe ► / @zoran-horvat
    ⭐ Learn more from video courses:
    Beginning Object-oriented Programming with C# ► codinghelmet.com/go/beginning...
    ⭐ Collections and Generics in C# ► codinghelmet.com/go/collectio...
    ⭐ Making Your C# Code More Object-oriented ► codinghelmet.com/go/making-yo...
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    ⭐ CONNECT WITH ME 📱👨
    🌐Become a patron ► / zoranhorvat
    🌐Buy me a Coffee ► ko-fi.com/zoranhorvat
    🗳 Pluralsight Courses ► codinghelmet.com/go/pluralsight
    📸 Udemy Courses ► codinghelmet.com/go/udemy
    📸 Join me on Twitter ► / zoranh75
    🌐 Read my Articles ► codinghelmet.com/articles
    📸 Join me on LinkedIn ► / zoran-horvat
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    👨 About Me 👨
    Hi, I’m Zoran, I have more than 20 years of experience as a software developer, architect, team lead, and more. I have been programming in C# since its inception in the early 2000s. Since 2017 I have started publishing professional video courses at Pluralsight and Udemy and by this point, there are over 100 hours of the highest-quality videos you can watch on those platforms. On my TH-cam channel, you can find shorter video forms focused on clarifying practical issues in coding, design, and architecture of .NET applications.❤️
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    ⚡️RIGHT NOTICE:
    The Copyright Laws of the United States recognize a “fair use” of copyrighted content. Section 107 of the U.S. Copyright Act states: “Notwithstanding the provisions of sections 106 and 106A, the fair use of a copyrighted work, including such use by reproduction in copies or phono records or by any other means specified by that section, for purposes such as criticism, comment, news reporting, teaching (including multiple copies for classroom use), scholarship, or research, is not an infringement of copyright." This video and our youtube channel, in general, may contain certain copyrighted works that were not specifically authorized to be used by the copyright holder(s), but which we believe in good faith are protected by federal law and the Fair use doctrine for one or more of the reasons noted above.
    ⭐For copyright or any inquiries, please contact us at zh@codinghelmet.com
    #githubcopilot #csharp #vscode
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 4

  • @kyryllvlasiuk
    @kyryllvlasiuk ปีที่แล้ว

    OOP is same as OOD?

    • @dinotom1
      @dinotom1 ปีที่แล้ว

      Object Oriented Programming vs Object Oriented Design

    • @zoran-horvat
      @zoran-horvat  ปีที่แล้ว +6

      OOP is object-oriented programming and OOD is object-oriented design.
      The design operates at a higher level than programming. You can do the OOD even without writing a single line of code. The subject of OOD is the design of classes and their interactions, including implementation and inheritance. But OOD will not pay attention to whether a type is an interface or a class, for example, or whether a class implements some private methods.
      The OOP, on the other hand, will deal with implementation details, such as declaring classes and interfaces so that the code compiles in the first place; declaring virtual members; implementing encapsulation; implementing private members that are required to support the public members defined by the design, and so on.
      In practice, you would normally do both OOD and OOP at the same time. But it is important to understand the difference, like when you are just implementing a feature then you might be operating within premises of OOP alone, but if you recognize the missing abstraction and pull it out, then that part of work would be OOD, followed by OOP to implement it in code.