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:51 UTC (Sat) by anselm (subscriber, #2796)In reply to: Software Freedom Conservancy: Give Up GitHub: The Time Has Come! by bluca
Parent article: Software Freedom Conservancy: Give Up GitHub: The Time Has Come!
Whatever. The examples on their web site leave me underimpressed. E.g., the “IsPrimeTime.java” example takes a comment that reads
// Math.isPrime(int) returns whether the given number is prime or not @Test
and completes that to
// 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));
}
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.