GitHub Copilot Labs
github.com
GitHub Copilot Labs
1–10 of 72 posts
Re: GitHub Copilot Labs
#2Re: GitHub Copilot Labs
#3Re: GitHub Copilot Labs
#4Re: GitHub Copilot Labs
#5This is impressive. Is it still beta and invite only?
copilot? i believe its open to anyone now. this feature? its a nightly build according to the post.
Re: GitHub Copilot Labs
#6Re: GitHub Copilot Labs
#7having used copilot for only a couple hours and found it annoying... this might be a but less obstructive. though contrary to the commenter the samples in that thread didnt seem all that great to me. ill try it out tho and since its in the sidebar itll hopefully be less distracting.
Re: GitHub Copilot Labs
#8Re: GitHub Copilot Labs
#9This only seems to be able to explain syntax, which seems pretty useless for anyone who isn't new to the language they're using. Am I missing something?
Re: GitHub Copilot Labs
#10Is this the same backend that is powering https://denigma.app ?
---
That was also the first time I had heard of denigma.app and their tagline of
We stress-tested it on the worst, most obscure code we could find. That's why we're confident it will work on your complex codebase.
gave me a good chuckle since just trivially modifying their example ... sort of worked
Given:
RUN apt-get update && exit 1 && apt-get install -y libnss3 libgtk-3-0 libx11-xcb1 libxss1 libasound2
It produced:- Next, apt-get is used to update the system and exit 1 is used to stop any further commands from running.
- Then libnss3, libgtk-3-0, libx11-xcb1, libxss1, and libasound2 are installed using apt-get.
For good fun, I tried another small edit
RUN exit 1 && apt-get update && apt-get install -y libnss3 libgtk-3-0 libx11-xcb1 libxss1 libasound2
With an even better explanation:- The code then runs an exit command and uses apt-get to update its package list before installing libnss3, libgtk-3-0, libx11-xcb1, libxss1, and asound2.