Github Copilot — Developer's other half.
Emmanuel Nwanochie
·
2022-04-16
·
1 min read
Originally published on Medium
How fascinating it is to start a line of code, and the next line(s) is completed by Artificial Intelligence. How cool does that sound?

Github and Open AI created the Github copilot as a helper and a colleague for every developer. It is powered by GPT-3 and capable of writing code automatically. I discovered Copilot a few months back and it has been wonderful, having it suggest blocks of code has really helped me to speed up the development process. Just write in a descriptive function name or comment and it suggests to you automatically the next block of code(s).
There is this really cool video on youtube by fireship.io that summaries it and also talks about controversies surrounding the copilot.
More articles
The Layers of a Network Request: nginx stream vs HTTP Proxying
Two backends terminating their own TLS meant I needed end-to-end TLS passthrough, not termination at the proxy — which sent me into the layers of a network request and onto nginx's Layer 4 stream module.
Building CaricatureCam: Real-Time Face Warping in the Browser
How I built a browser-based app that applies real-time facial caricature effects to your webcam at 30+ FPS — entirely on-device, using MediaPipe, React, and a pluggable effects architecture.
Automating Linux User Creation with Bash Scripts
Introduction Managing users on a Linux system can be a repetitive and error-prone task, especially when dealing with a large number of users. Automating this…