Live data from Hacker News

GitHub Copilot Labs

github.com

1–10 of 72 posts

Re: GitHub Copilot Labs

#6
having 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

#7
post #6

having 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.

quick test is actually a bit impressive.

Re: GitHub Copilot Labs

#8
I made the first comment on that issue: tbh it does work better than expected on intentionally bad code, but not perfect. It could be useful to speed up documentation though.

Re: GitHub Copilot Labs

#9
What's the use-case for this? Hopefully not for commenting code.

This 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

#10
post #4

Is this the same backend that is powering https://denigma.app ?

Almost certainly not

---

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.

Post reply on HN