https://arxiv.org/pdf/2404.14372
I'll note that having countless superintelligences handy will accelerate problem-solving e.g. dystopia.
A couple of possibilities spring to mind. Likelier that Karen lied, but maybe the 512 page fax changed the system.
You mean, Karen lied?
I'm old. Back in the olden days - the 1900s - 2-ton cars were not lightweight, the so-called heavy Chevys.
Writing is used to defraud people, to propagandize them, to steal their intellectual property and livelihoods, to systematically deny their health insurance claims, to dangerously misinform them (e.g. illegitimate legal…
Small? GPLv3 is ~5644 words, and not particularly long for a license.
Sturgeon's Law predates LLMs by decades: 90% of everything is crap.
Fair use?
No, it isn't, wealth is good. More readily creating and delivering value is good.
Planning is very useful even though things never go according to plan, honest.
Sitting on a Swiss ball hurts me less than a chair. For the first few days it even enforced perfect posture, but that effect went away pretty quickly.
Fixed goals and flexible tactics, I say. PG comes along and says it much better...
N = 100000 prime = [False, True] * (N // 2) primes = [] for i in range(3, N, 2): if prime[i]: primes.append(i) k = i ** 2 while k < N: prime[k] = False k += i * 2 useful = [ str(i) for i in primes ] # Enter your clues…
Or 5.
Nice solver! I did optimize the sieve a little... N = 100000 primes = [False, True] * N // 2 for i in range(3, N, 2): if primes[i]: k = i ** 2 while k < N: primes[k] = False k += i * 2
https://arxiv.org/pdf/2404.14372
I'll note that having countless superintelligences handy will accelerate problem-solving e.g. dystopia.
A couple of possibilities spring to mind. Likelier that Karen lied, but maybe the 512 page fax changed the system.
You mean, Karen lied?
I'm old. Back in the olden days - the 1900s - 2-ton cars were not lightweight, the so-called heavy Chevys.
Writing is used to defraud people, to propagandize them, to steal their intellectual property and livelihoods, to systematically deny their health insurance claims, to dangerously misinform them (e.g. illegitimate legal…
Small? GPLv3 is ~5644 words, and not particularly long for a license.
Sturgeon's Law predates LLMs by decades: 90% of everything is crap.
Fair use?
No, it isn't, wealth is good. More readily creating and delivering value is good.
Planning is very useful even though things never go according to plan, honest.
Sitting on a Swiss ball hurts me less than a chair. For the first few days it even enforced perfect posture, but that effect went away pretty quickly.
Fixed goals and flexible tactics, I say. PG comes along and says it much better...
N = 100000 prime = [False, True] * (N // 2) primes = [] for i in range(3, N, 2): if prime[i]: primes.append(i) k = i ** 2 while k < N: prime[k] = False k += i * 2 useful = [ str(i) for i in primes ] # Enter your clues…
Or 5.
Nice solver! I did optimize the sieve a little... N = 100000 primes = [False, True] * N // 2 for i in range(3, N, 2): if primes[i]: k = i ** 2 while k < N: primes[k] = False k += i * 2