Sam Altman
Sam Altman, OpenAI CEO's “secret” blog post is well worth the read
_cire4_ 1469 points 13 hours ago
This reads like a cookie-cutter “entrepreneur” post from LinkedIn.
Sam Altman gives a bunch of talking points that sound like the usual nonsense from billionaires. “Work 60 hour weeks, love your work, be rich enough to gamble and make it big”
This misses the point. You shouldn't need to make it big. You should be able to live a decent life without making it big. Sam talks about UBI being a driving force for unlocking human potential so that the little people can make it big too!!11!!
Little people, small guys, what does it speak to that our language historically uses disabilities to reference disadvantage? Why are those with disabilities so crippled compared to the rest of us?
Maybe because the rich have worked to prevent the masses from achieving the bare minimum quality of life that I would expect from a society that has the resources to do so.
Sam talks about making it big by owning things. What a fucking joke. The way to make it big (for EVERYONE) is libre software. Computers have had the potential to equalize things since their inception. Copyright has acted as the shield for a scum-based economy for too long. Piracy has always been a “problem” (read: solution) since the inception of computers. Restriction of data is antithetical to how they work.
You can't own BITS. Bits are a post-scarcity resource. Copyable with negligable cost. The problem is that “piracy” software hasn't been good enough yet.
You want to do something BIG? Build something that enables people use computers how they want to. Media has been restrictive. Games have shitty input layouts. Movies you want to watch are only available on bumfuck streaming services. You can't play games on your phone anymore without an internet connection. Netflix limits how many files you can have downloaded.
None of this is a problem with “piracy”. Take the shitty software, tear out the parts you care about, and make it pretty again.
...
It's easy to say, harder to do in practice. At least, for now it is. What happens when we have AGI? When the AI is smart enough to write software that works? This sounds like a fantasy, but not forever it won't be.
We don't have to wait till then to dream at least. All the movies, music, games, books, blog posts that I care about, in my physical possession on my hard drives. No DRM. No dependency on corpos who can strip the things I care about on a whim.
Google has ruined Email, making it impossible to self-host without being caught in a web of filters and uncertainty. Maybe it won't matter? It probably won't matter. It's at the point where it's easier to start fresh.
What's left to monetize when libre software achieves dominance? What's left to sell, when AI can take any software idea (existing or hypothetical) and turn it into free software?
You can sell hardware, and you can sell the time spent making software. You can't (shouldn't be able to) sell software... once we get rid of copyright. You want your computer to do something? Either the software exists already (for free!), or you pay someone to make it (and it becomes free for others!).
We stop duplicating effort, and we start filling in the gaps between what exists and what's desired.
What's the difference between Discord, a messaging software where I am a powerless user, versus X-cord, where every user owns their own domain, hosts (paying someone to manage?) their content, and the software is libre?
Why pay Discord to manage a messaging platform when I can buy some hard drives, tell the AI to buy http://beans.fun, and have it participate in the libre protocol that is X-cord? Nobody can compete with YouTube, but everyone has the harddrive space to host a few videos.
The “problem” is privacy I guess. Why host things from my computer, expose my IP for the ne'er-do-wells to find? Why not just pay Discord to do it for me? Why not just pay Google to do it for me? Why not just pay Amazon to do it for me?
Using a CDN can help. Instead of visiting your machine directly, your content will be cached by some other machine. It will lessen the toll if your stuff blows up (in a good way) and you get a huge influx of traffic.
Except, that's not necessary? BitTorrent exists. So instead of CDNs, VPNs are the best? Except, that's probably not at the limit of libre either. Doesn't Tor exist? Instead of me having “my” IP that can be used to correlate my activities, can't I just join my computer to the hive and get lost in the crowd?
If your video gets popular, than everyone watching it could be a seeder, instead of pegging a single host and having it all fall over.
This isn't new tech tho, so what's been the problem? What will AI change?
...
I work doing Azure cloud stuff. Virtual machines, networking, storage, etc. It's not hard. It's legos. Not even good legos. What the fuck is the point of globally-unique display names? I've considered building an abstraction layer on cloud providers, but that's been done before by Vercel and stuff hasn't it?
AI will be able to manage all this crap for us. Is it cheaper to use Amazon directly (and all the wasted hours from dealing with Amazon crap), or is it better to use a reseller (and deal with their crap instead)? These will be questions the AI will be asking, not us. We will say “I want to make a blog. Make a plan, confirm the cost with me, then set it up.” Then, it will happen.
No need for cloud-monkeys like myself... Not that there is a need? You can run NGINX right now on your computer and type your thoughts into HTML and make it available to the world.
The problem with that approach, is that the content disappears when you turn off your computer. You want your stuff to be always-availble, because why not? Maybe, instead of dealing with the mountains of complexity brought by trying to make data private, instead we just share data?
I like Jake's blog. When Jake's blog gets updated, why don't I download the new stuff and be a mirror? That way, if Jake's blog goes down, I can still read it. If Jake's blog gets popular, then I can help share the load. If Jake's blog gets unpopular, then I can still have it for as long as I care about it.
How much disk space would it take to store all this stuff?
Going on my YouTube history page, I scrolled down till April 21 (2023) before I got bored of waiting.
Then, using some Javascript, I can quickly just get the links and the time watched. I can then convert the time watched into seconds, and sum it all up.
entries = Array.from(document.querySelectorAll("#contents > ytd-video-renderer"))
.map(x => [
x.querySelector("a").href,
x.querySelector("ytd-thumbnail-overlay-time-status-renderer").textContent.trim()
]
)
// turn [link, time (mm:ss or hh:mm:ss)] into [link, seconds]
entryTimes = entries.map(x => [
x[0],
x[1].split(":").map(x => parseInt(x)).reverse().reduce((acc, x, i) => acc + x * 60 ** i)
]).filter(x => !isNaN(x[1]))
totalTime = entryTimes.map(x => x[1]).reduce((acc, x) => acc + x, 0)
// the same link may be present more than once
// the link may also end in &t=...
// we want to remove duplicates
totalTimeUnique = entryTimes
.map(x => [x[0].split("&")[0], x[1]])
.filter((x, i, self) => self.findIndex(y => y[0] === x[0]) === i)
.map(x => x[1])
.reduce((acc, x) => acc + x, 0)
console.log(totalTime, totalTimeUnique)
// > 1664428 1267149
console.log(totalTime / 60 / 60, totalTimeUnique / 60 / 60)
// > 462.3411111111111 351.98583333333335
In like 6 weeks, I've watched 1591 videos (1343 unique). In total, this is 462 hours (351 unique).
I use YouTube for some music, so that explains a lot of the duplicates.
The numbers are kinda crazy.
BingGPT says I can get a 5TB hard drive for $108.
With 52 weeks in a year, and 462/6=77 hours per week, that's 4000 hours per year.
4000 hours of video at 1.5GB/hour is 6TB.
For like $200, I can store every piece of internet content I consume.
I don't know if 1.5GB/hour is the latest and greatest for video encoding either.
What conclusions can we draw from this?
AI won't kill art, but it may kill the art industry?
We already have a model for things-taped-to-the-wall, what more is left to automate?
Soon, movies and videos will be generated by AI. This ease of generation will go down at least two paths:
- Everyone creates their own content, either by prompting themselves or by letting the AI infer tastes through historical data
- The majority of content is still created by a human that isn't the consumer
In both cases, the result is (as it already was) people just watching stuff that interests them.
Except, instead of requiring budgets that exceed the capabilities of any individual, every individual will be able to create exceptional media on their own.
What need is there for copyright when movies go from billion-dollar productions to free?
What need is there for copyright when secrets of production are no longer, because the AI can deduce any methodology from a product? The secrets of chip designs have been hidden and stolen from the beginning, as is the case for any other product worth stealing.
So what happens next? Artists, truck drivers, cloud monkeys, etc. are all out of a job and are forced to move into the shrinking battle-royale zone of jobs that haven't been automated yet?
Maybe, instead, we can just use our excessive wealth to allow people to exist without having to sell their body to survive? Maybe, instead of having to work to live, we can just live?
The only valid concern is privacy. What is the risk of the publication of our lives? That online stalkers will be able to track us and find us? That our secrets will be revealed? That our thoughts will be known?
If we have nothing to hide, then we have nothing to fear.
We should have nothing to hide, because we should live in a society that accepts that we as humans are flawed individuals who must be given the opportunity to make mistakes and learn from them.
The cancel culture is a symptom of a society that is too afraid to accept that people are flawed. That people make mistakes. That people can change.
Prisons are exploitative labour systems that have been used as a cudgel against minorities by the surprisingly scummy population. Why would shitass political leaders keep getting elected, unless either 1. the elections are rigged, or 2. the population is shitass?
If I was on the Truman show, what would be revealed? Any STIs, fetishes, home addresses, lovers, etc. would be revealed. Clothes still have use as a sanitary measure, even if the technology exists today that lets me take a picture of someone's face and generate a nude of them.
The danger is not the lack of privacy, but the lack of accountability.
It's impossible to have a foolproof digital identity system for accountability [citation needed].
This shitcoin about scanning your retina in exchange for a proof-of-humanity credit? What happens when your IMMUTABLE fingerprint gets duplicated? You can't just get new eyeballs. There's nothing unique, binding about us as individuals.
You are unique, just like everyone else.
Digital content can be fabricated, metadata can be falsified, encryption can be broken. Even if you have perfect encryption, you can't guarantee that the entity signing the data is the entity you think it is.
What happens next, when the capabilities of AI enable a panopticon that can track every individual? What happens when the AI can predict your actions, your thoughts, your desires?
The only winning move is to design a future where that isn't a problem.
Somehow, we have to get society to a point where our secrets, and our mistakes, once revealed, are not used against us.
Otherwise, we are building our own hell with every step forward we take in every field of science.
Maybe we can engineer a society where each successive generation is better than the last. The bootstrapping problem means that we are stuck as the before generations; before every aspect of our lives was recorded and it was for our true benefit.
ChatGPT
Me
It seems that the optimal play when having made an “oopsie” is to lie and hide, rather than admit fault and apologize. When backlash is immense (and avoided by silence), why would you risk it?
What are the issues with the corrupt officials, racists, terrorists, and goverments saying “we made a fucky wucky, and we all agree that everyone should live good lives from now on”? To stop actively working against fellow humans? Maybe the racists refuse to change, the corrupt refuse to stop stealing money from the poor?
Is the only solution the total excommunication of the impure from the society of the future?
What is the road to utopia, if not slippery with blood from those who have stood in the way the whole time?
What happens when the charge to utopia is led by the people who shouldn't be leading? When my utopia is different from yours?
Maybe AI government structures 200 years from now will lead to countries of beliefs rather than of geography? Access to travel and housing means you can simply go live with the people who have similar beliefs to yourself?
When you can leave racist island for greener pastures?
What happens when racist island thinks it's a good idea to raze the green pastures to the ground? Is demilitarization possible?
How could AI enforce demilitarization without having its own ordinance to enforce it?
ChatGPT
Me
What happens when UBI is implemented and nobody is forced to work the shitass jobs to survive? Will we just design better sewers, assisted living facilities, that don't involve human effort to deal with the literal shitty jobs? What about when the automation breaks, and it's still necessary to bring in a human?
Will there still be a labour pool of people willing to destroy their body to do construction? What incentives will there be to work the bad jobs when technology has globalized cheap but opulent living?
ChatGPT
Me
The job rotation may be the most reasonable outcome. Assuming that there is some ceiling on how safe and pleasant the undesirable jobs become, there will still be a need for human effort. Perhaps the AI spinal taps can help act as a personal mentor for the x days a year that every citizen is conscripted for undesirable work? Rather than requiring people to spend years of their lives to learn how to do these jobs, the AI will be good enough that it can guide a complete novice to do the job well and safely?
ChatGPT
Me
Please make some closing remarks, considering everything mentioned so far in addition to including new directions of thought that we haven't discussed yet.
ChatGPT
Me
Thank you.
ChatGPT
You're welcome! If you have any more questions in the future or want to dive deeper into any topic, feel free to reach out. Have a great day!