GitHub Copilot: God-like code assistant

I am sure that many friends don't know what Copilot is, especially those who are beginners in computers. Let me popularize it here!

insert image description here

GitHub Copilot is an AI-based code completion tool jointly developed by GitHub and OpenAI.

GitHub and OpenAI must be clear to everyone. The former is the world's largest dating site, no, an open source site; the latter is the parent company of ChatGPT.

Copilot can be directly integrated in the Visual Studio Code editor or in Intellij IDEA. Help programmers write code faster and easier.

Copilot can understand your code intent and automatically provide code suggestions, which can help you write new code, or help you understand and modify existing code.

A picture is worth a thousand words, just upload it!

Intellij IDEA opens the source code of Technology School. When I type the comment "Start", then Copilot will directly SpringApplication.run(QuickForumApplication.class, args);generate . Isn't it super convenient? Super smart!

I just gave a very simple example, it can also understand more complex business and requirements.

For example, if I type one on the front-end page 复制粘贴图片, it can generate such a long string of codes for me.

If you are a novice who likes programming very much but is a little afraid, you can use Copilot to program!

Copilot can not only help write code, but also write documents.

We switch to the readme document, and when I press enter under the project introduction, it can associate "Project Features".

Then press the enter key, it can be associated with "new technology stack: adopt mainstream Internet technology architecture, including Spring Boot, MyBatis-Plus, MySQL, Redis, ElasticSearch, MongoDB, Docker, RabbitMQ, etc."

You can go and experience it.

It is also fully capable under Visual Studio Code.

Of course, Lu Xun once said, "It is better to have no books than to believe in books" (dog dog dog), Copilot is a generative intelligent AI, it will sometimes give you nonsense and nonsense, you need to have the ability to discriminate.

There is an open class on Geek xx about Copilot, free of charge, the blogger is an independent developer Gu Siwei who I like very much

I won't post the link, friends who like it can search it, it's a very nice course.

After learning, you will be able to master the capabilities and usage details of Copilot.

The above, I hope to help you.

Guess you like

Origin blog.csdn.net/qing_gee/article/details/130714874