Earlier quoted context omitted.
> Also feels kind of icky to train on open source projects and then charge for the output. "open source is great, except when it's used in a way I don't like"
Yes. It is completely valid, understandable, and reasonable to have a variety of different feelings and views about how specific code and specific licenses are used. This is particularly the case when we see the emergence of new technologies that use it in different ways. Different people may have a wide variety of equally valid views about how it is incorporated into that system. There's nothing inconsistent, confus…
GitHub Copilot is generally available
121–130 of 796 posts
Re: GitHub Copilot is generally available
#122I've enjoyed using it for free, but not sure it's worth the $10/mo yet. When it works great, it's a nice-to-have for speeding up development but has yet to give me anything I wouldn't be able to just write myself. And when I wish it would give me the answer to something I don't know how to do, it spits out something very wrong. Also feels kind of icky to train on open source projects and then charge for the output.
> has yet to give me anything I wouldn't be able to just write myself Sure it has: Time. In terms of economics it's really simple: Does Copilot free up more than 10$ worth of your time per month? If the product works at all as I understand it (I haven't tried), the answer should be a resounding "yes, and then some" for pretty much any SE, given the current market rates. If the answer is no (for example because it pro…
Re: GitHub Copilot is generally available
#123My unpopular take: most comments here are super entitled. To paraphrase: "sure it's minblowing and the biggest productivity gain in years, but I want it FREE". Yes. You got used to it being free. And now it's not. But $10/mo is a steal. It's more than fair and far, far less than they could get. And no. They don't owe you anything. In fact, they probably host your code (often free), and less directly provide your IDE…
Microsoft is selling AI services based on training data they don't own and didn't acquire rights to, nobody writing the licenses of the code it's using had the opportunity to address this kind of code use without license, attribution, or consent. (and the training data is a huge part of the value of an AI product)
Re: GitHub Copilot is generally available
#124Earlier quoted context omitted.
This is curious - I maintain 2 projects with 2k cumulative stars, and I was able to claim the free access. Wonder what the metric is? Maybe creation date has something to do with it?
If you want to check if you qualify: https://github.com/github-copilot/free_signup
Re: GitHub Copilot is generally available
#125I hope I never again have to work on a codebase/language where copilot would be worth subscribing to.
Re: GitHub Copilot is generally available
#126I've enjoyed using it for free, but not sure it's worth the $10/mo yet. When it works great, it's a nice-to-have for speeding up development but has yet to give me anything I wouldn't be able to just write myself. And when I wish it would give me the answer to something I don't know how to do, it spits out something very wrong. Also feels kind of icky to train on open source projects and then charge for the output.
How can it help you to speed up development but not be worth 10$/month. Your hourly rate can’t be that low.
Re: GitHub Copilot is generally available
#127Are there any plans for GitHub Copilot to ship an API? I think it would be interesting to set it up w/ my side project https://codeamigo.dev
Re: GitHub Copilot is generally available
#128I've enjoyed using it for free, but not sure it's worth the $10/mo yet. When it works great, it's a nice-to-have for speeding up development but has yet to give me anything I wouldn't be able to just write myself. And when I wish it would give me the answer to something I don't know how to do, it spits out something very wrong. Also feels kind of icky to train on open source projects and then charge for the output.
Re: GitHub Copilot is generally available
#129Nice. Not even halfway through my CS degree and my would've been future job has already been automated. Thanks GitHub!
Re: GitHub Copilot is generally available
#130Earlier quoted context omitted.
> suggest patterns in the same codebase that you're working Sometimes, with variable results. I think I've only observed it guess patterns from the current directory > Does copilot work for shell scripts? Yes, it gave me this earlier today while editing my .zshrc: # kill a process on a given port killport() { lsof -i :$1 | awk 'NR!=1 {print $2}' | xargs kill }
Can't wait for someone to integrate this into a shell. Does anyone know if such a project exists?