Reading List
GitHub Copilot explaining code and translating it from one language to another from Christian Heilmann RSS feed.
GitHub Copilot explaining code and translating it from one language to another
GitHub Copilot is already the dog’s bollocks, but I just installed the GitHub Labs extension and my jaw is still open. Code explanation This one allows you to highlight a piece of code and get explanations of what it does: For example: async function downloadZipFile(downloadUrl) { await fs.remove(‘out/edge’); const file = fs.createWriteStream(‘edge.zip’); https.get(downloadUrl, function(response) { […]