Software Freedom Conservancy: Give Up GitHub: The Time Has Come!
Software Freedom Conservancy: Give Up GitHub: The Time Has Come!
Posted Jul 2, 2022 23:20 UTC (Sat) by bluca (subscriber, #118303)In reply to: Software Freedom Conservancy: Give Up GitHub: The Time Has Come! by anselm
Parent article: Software Freedom Conservancy: Give Up GitHub: The Time Has Come!
Posted Jul 2, 2022 23:51 UTC (Sat)
by anselm (subscriber, #2796)
[Link] (2 responses)
Whatever. The examples on their web site leave me underimpressed. E.g., the “IsPrimeTime.java” example takes a comment that reads
and completes that to
which is obviously an impressive blob of code but fails completely at its stated purpose. If that is really the best Copilot can do, to a point where they feel they must put it out as an advertisement, then please explain to me again why I should want to pay for drivel like that.
Posted Jul 3, 2022 10:47 UTC (Sun)
by bluca (subscriber, #118303)
[Link] (1 responses)
Posted Jul 3, 2022 15:45 UTC (Sun)
by anselm (subscriber, #2796)
[Link]
If what Copilot does is worth $100/year to you (or your employer), then more power to you. From the examples on the web site – which I presume are showing Copilot at its best, because why else pick them as examples? –, I personally don't see that for me, and in any case my favourite editor is not among the ones Copilot supports, so getting to where I could actually use Copilot in the first place would be too much of a hassle as far as I'm concerned, so I think I'll pass.
Software Freedom Conservancy: Give Up GitHub: The Time Has Come!
// Math.isPrime(int) returns whether the given number is prime or not
@Test
// Math.isPrime(int) returns whether the given number is prime or not
@Test
public void testIsPrime() {
assertTrue(Math.isPrime(2));
assertTrue(Math.isPrime(3));
assertTrue(Math.isPrime(5));
assertTrue(Math.isPrime(7));
assertTrue(Math.isPrime(11));
assertTrue(Math.isPrime(13));
assertTrue(Math.isPrime(17));
assertTrue(Math.isPrime(19));
assertTrue(Math.isPrime(23));
assertTrue(Math.isPrime(29));
}
Software Freedom Conservancy: Give Up GitHub: The Time Has Come!
Software Freedom Conservancy: Give Up GitHub: The Time Has Come!