UNFUCG
DashboardSearchChatBookmarksNotificationsActivityPremiumProfile
?
Home
Search
Chat
Saved
Profile
Episode
Google's Record Quarter, the White House Intervenes, and GPT 5.5 Silently Matches Mythos | EP 254
~156 min
Episode Brief·YouTube

Google's Record Quarter, the White House Intervenes, and GPT 5.5 Silently Matches Mythos | EP 254

Peter Diamandis
Watch on YouTube Add to chat My bookmarks← All sources

TL;DR

The four things you'd lose by not watching

4 items

TL;DR

The four things you'd lose by not watching

4 items
1

Google posted $109.9B revenue (22% YoY) and $62.6B profit, with Google Cloud hitting $20B (+63%) as AI turbocharges ad targeting and cloud adoption.

2

The White House is suddenly exploring pre-release AI model vetting after Claude Mythos demonstrated cyber-attack capabilities that leapfrogged government agencies; the shift could tilt the playing field toward well-funded labs.

3

GPT 5.5 is quietly matching—or beating—Mythos on cybersecurity benchmarks at 5x lower cost and is available on Amazon Bedrock, yet OpenAI has missed its consumer growth targets and is delaying the IPO to 2027.

4

Blitzy raised $200M at a $1.4B valuation to act as an enterprise autonomous software development layer that orchestrates multiple frontier models, while compute constrained and the AI chip boom lift even Intel’s stock 442% in a year.

Protocols

Concrete recipes — what, when, how much, and why

5 items

Dave Blondon's multi-model AI coding setup (as demonstrated on Moonshots)

WhatUse a combination of Claude Code on the left, Cursor with ~50 agent tabs on the right, a plan-for-plan document reviewed by Claude 4.7 Opus Max and Gemini 3, all orchestrated on an Amazon EC2 instance; default to Claude 4.7 Opus for execution, fall back to Kimi K2.6 on Fireworks for cheaper code injection.
WhenWhen building any functional platform or software project end-to-end, especially when working across many agent tasks in parallel.
DoseCost runs about $8–10 of compute for a full GUI application; session can have 50 agent tabs but each agent gets minimal context dedicated to its role.
For whomDevelopers and technical founders building platforms with AI assistance; originally shared in response to a viewer question.
WhyMinimal context per agent avoids overloading the context window; cloud-based orchestration on EC2 prevents loss of work if local machine crashes; using multiple models for planning vs execution catches different flavors of intelligence.
CaveatsDave cautions not to treat the agents like people—they work better with minimal, dedicated context. Also, the setup is his personal flow; there are many other valid configurations.

Dave runs Claude Code on the left side of his workspace and keeps Cursor open on the right with about 50 agent conversations running simultaneously, each assigned a narrow role. He learned over time that giving each agent minimal context prevents context-window pollution. For every project, he starts with a ‘plan for a plan’ document: a short spec that is then processed by Claude 4.7 Opus Max and cross-checked by Gemini 3 to create a full development plan in a fixed format he calls a ‘plan mission.’ The orchestration happens on EC2 so that if his laptop sleeps or crashes, the process continues in the cloud. By default the EC2 orchestrator calls Claude 4.7 Opus, but it can invoke any model with an API. The wildcard is Kimi K2.6, which runs on Fireworks; it’s about nine times cheaper and useful for code injection tasks, though others should evaluate its security profile. He noted that producing a fully functional GUI application costs roughly $8–10 of total compute.

Mechanism

Separating planning from execution: a smaller plan-for-plan document is cheaply refined by several top models, yielding a comprehensive blueprint; executing tasks in parallel across dedicated agents under a cloud orchestrator keeps each agent’s context window focused, improving output quality. Using different models hedges against the weaknesses of any one provider.

Personal experience

Dave says: ‘I have Claude Code on the left side over here, I’ve got cursor which I’ve used since it came out on the right… I’ve got about 50 agents right now in cursor. I learned over time not to treat them like people… they work much better if you give them the minimal context to do their job so you’re not overloading the context window.’ He also stated ‘the cost to write a full-blown GUI that does something really functional… it’s about eight or 10 bucks of compute.’

I learned over time not to treat them like people… they work much better if you give them the minimal context to do their job so you’re not overloading the context window.

Also said
“I do a plan for plan document first… run it through a Claude 4.7 Opus Max agent, then get a second opinion from Gemini 3… that creates a lot more documentation that becomes a full-blown plan… I launch it within Amazon EC2 which is secure and also it works if my laptop closes or my machines crash.”— Specifies the exact workflow, including the use of EC2 as backup.
“The wild card is Kimi K2.6… about nine times cheaper but it could do code injection. So that’s and that runs on Fireworks.”— Adds the cost-saving alternative that others may not know about.

Blitzy’s multi-model orchestration for enterprise code generation

WhatUse an orchestration layer that runs hundreds of thousands of algorithmic checks across multiple frontier models (Claude, OpenAI, Gemini) at runtime to generate large-scale, end-to-end tested codebases; do not launch a proprietary model.
WhenWhen building autonomous software development for large enterprises that need millions of lines of code generated, refactored, or modernized at once.
DoseOne use can yield half a million to a million lines of code with 80% of dev work done autonomously; the remaining 20% is human-completed.
For whomGlobal 2000 companies (insurance, financial services) with massive legacy codebases, and government contractors who need models inside secure environments.
WhyDifferent models have different strengths; using them against one another algorithmically drives up quality dramatically and avoids being a single-model wrapper. Open-source models can always be substituted for government-deployable solutions.
CaveatsThese are compute-intensive operations; the company is good for the model providers today, but their future may depend on the most valuable tokens being chased by the labs themselves. CEO Brian Elliott insists that Blitzy is not launching its own model because that’s the wrong game—they focus on engineering velocity for customers.

Brian Elliott explained that enterprises most commonly approach Blitzy with codebases written in extinct languages (Fortran IV, WATFIV) that no living developer understands. The first step is always reverse engineering the existing system, then forward engineering the target state. Blitzy’s orchestration layer doesn’t just call a single model; it algorithmically routes tasks to Claude, OpenAI, or Gemini at runtime based on their current strengths, often checking one model against another to raise quality. Brian asserted that even if frontier labs eventually target the most profitable tokens, Blitzy’s unique algorithms and database structures create IP moats; indeed, he hires forward-deployed engineers to embed with customers and extract domain-specific knowledge that’s not in public training data. When asked about Cursor’s similar position (once accused of being a Claude wrapper), he noted that Blitzy is deliberately not launching its own model—focus on code delivery, not model building.

Mechanism

Orchestration layer intercepts code tasks, sends subtasks to multiple model endpoints based on a proprietary routing algorithm, and synthesises results. The system includes continuous cross-validation: ‘Enthropic is checking OpenAI is checking Gemini… hundreds of thousands of times at runtime.’ This ensemble method surfaces errors and increases total output quality beyond any single model.

You get remarkable benefits beyond the state-of-the-art when you use these models against one another. There are different flavors of intelligence. They are different at good at different things. And so when Anthropic is checking OpenAI is checking Gemini and we’re doing this hundreds of thousands of times at runtime all driven algorithmically you can drive up quality dramatically.

Also said
“We are world class at understand large scale code bases and then forward engineering large amounts of work against target state.”— Clarifies the core capability that distinguishes them from bottom-up developer tools.
“We can use open-source models, right? We can fine-tune open source, but we’re not launching models out into the world for others to use. We are focused on creating the highest quality code for our end customers.”— Addresses the question of whether they will compete with frontier labs.

Salem Ismail’s blueprint for reliable agentic system governance

WhatDesign agentic systems with modular agents carrying narrow permissions, a metadata ‘passport’ aligning each agent to its purpose, observable workflows with audit logs, and human escalation paths; keep the governance architecture stable while models change monthly.
WhenWhenever building enterprise agent workflows where every part of the tech supply chain is changing constantly.
DoseOngoing architectural principle; the governance layer must be designed once and enforced across all deployments.
For whomCTOs, system architects, and AI-native companies building agent pipelines.
WhyThe old enterprise model assumed stable systems. In an agentic world where model capabilities shift monthly, the governance—not the tech—must be the constant. Modular agents with narrow scopes limit damage radius and allow auditing.
CaveatsHe did not specify technical implementations; the advice is high-level and assumes engineering capacity to implement such checks.

Responding to a viewer question about building reliable agentic systems amidst constant supply-chain change, Salem argued the solution is architectural. Instead of trying to freeze the tech stack, you modularize every agent and assign it only the permissions it needs—like a digital passport. Metadata about its scope, owner, and allowed actions must travel with every call. Every workflow produces observable audit logs, and there must always be a designated human escalation point. He stressed that the governance architecture is the stable element; the models underneath will change every month. This mirrors the insight that AI-native companies will need the same kind of governance rigor as traditional financial systems.

In an agent world, you need modular agents. You need very narrow permissions. Imagine each agent having to have a passport with metadata aligning what it’s supposed to do. Observable workflows, audit logs, human escalation. All of this has to happen. The AI native company will need the same kind of governance. The models are going to change every month. Your governance architecture has to be the stable thing going forward.

Forward-deployed engineering as a career path in AI startups

WhatJoin a fast-growing AI startup as a forward-deployed engineer: embed with enterprise clients, help them adopt AI tools, and bridge the gap between domain expertise and product development.
WhenWhen seeking a high-impact role in AI that does not require being an AI researcher; these roles are open now at companies like Blitzy.
DoseOngoing role; Blitzy plans to grow from 80 to 300 employees in 9 months.
For whomIndividuals with strong soft skills and curiosity, who may have non-traditional backgrounds (military, consulting, etc.).
WhyThe most valuable tokens go to enterprise use cases, but extracting domain knowledge from legacy databases and employees’ brains requires human interaction. AI agents alone cannot do the extraction; forward-deployed, brilliant people are needed to dig out the information and feed it into the AI.
CaveatsThis is a high-touch, high-travel role that requires comfort with ambiguous enterprise environments; the company’s growth pace is unprecedented so onboarding will be intense.

Dave highlighted Blitzy’s counterintuitive strategy: while many AI companies boast of staying headcount-light, Blitzy is scaling headcount rapidly because they believe that generating the most valuable tokens requires forward-deployed humans who can sit inside enterprises, understand their legacy code and workflows, and translate them into inputs the AI can consume. He pointed to Meror as another company that is unafraid of people. Brian confirmed that Blitzy is hiring forward-deployed engineers and that the hybrid of soft skills and technical ability—which can be self-learned—is in high demand. The idea is that AI may generate code, but understanding what the enterprise really needs still requires human context.

We are hiring on all fronts, Alex… you are right, hiring a bunch of forward deployed engineers to help our customers with AI adoption.

Also said
“If Alex is right and the highest token value is going to generate all the token usage. How are we going to get the data and the use cases fared out of this massively complex economy and into the AI? … It’s going to come with forward deployed, easy to work with, brilliant people who are getting out there and digging it out of legacy databases and digging it out of people’s brains.”— Explains why the human role is critical and not automatable.

Sam Altman’s alternative to UBI: compute equity or public wealth fund

WhatInstead of universal basic income checks, consider giving every citizen a stake in AI’s upside through compute access (universal basic compute), equity ownership in AI companies, or a public wealth fund modeled on Alaska’s permanent fund.
WhenPolicy discussion for near- to mid-term; implementation would have to be rapid as job displacement accelerates.
DoseConceptual; no specific numbers given, but AI-driven robotics are expected to deliver all necessities within years.
For whomPolicy makers and citizens concerned about economic displacement in the next 2–8 years of turbulence.
WhyUBI is a demand-side stimulus (stimmie checks) that doesn’t necessarily drive technological innovation or align citizens with AI builders. Giving citizens ownership of compute or equity makes them partners who benefit from AI success, reducing adversarial dynamics.
CaveatsThe details of whether government would mandate a dividend from compute owners or allot compute quotas are unresolved. Also, many people need cash for immediate survival, not compute credits.

Sam Altman funded a three-year UBI study and concluded spending went up but there was no clear improvement in health. He now advocates for universal basic compute, equity, or a public wealth fund. Peter noted that Alaska’s oil fund gives every citizen a dividend as an owner of the resource, and Saudi Arabia/Emirates do the same. The panel debated this: Alex argued he favors universal basic compute (UBC) and universal basic services (UBS) over UBI because they incentivize deflationary technological progress—bounties to drive healthcare costs to near zero are better than cheques. Salem said both are needed: UBI protects the bottom, while AI upside creates participation in exponential growth. Brian noted that OpenAI is already giving hundreds of millions of people free access to GPT 5.5 instant, which is a form of UBC, but acknowledged that cannot yet buy a steak dinner; however, in a few years GPT 7.5 instant might design a robot that prints you that steak. The group agreed that near-term pain will require some form of stimulus check, but long-term alignment should come through ownership.

If AI is a national resource, if computers national resource and you’re a citizen in the US, can you own a piece of that?

Also said
“I’m a huge fan of UBS, universal basic services. I’d much rather see the cost of everything, including healthcare, go down to near zero… dishing out STEMI checks doesn’t actually incentivize technological innovation necessarily.”— Alex’s clear preference for UBS/UBC over UBI.
“The question is in the near term, how do I support my family? And I think that’s going to be either stimulus checks or something else.”— Practical near-term concern that UBI addresses temporarily.

What's new

Personal practice updates, fresh positions, predictions

5 items

GPT 5.5 quietly matches Mythos on cybersecurity benchmarks

00:18:00 - 00:22:00, GPT 5.5 discussion

OpenAI’s GPT 5.5, which is already generally available on Bedrock and other platforms, is reportedly matching or exceeding Claude Mythos on public cybersecurity benchmarks while being 5x cheaper.

Why this matters: While Mythos grabbed headlines and was held back, GPT 5.5 has leapfrogged without fanfare, suggesting OpenAI remains highly competitive despite its public relations stumbles.

Background

Claude Mythos was a 'sea change' moment where the private sector suddenly had vulnerability-discovery capabilities that outpaced government agencies. The episode caused moral panic. Now GPT 5.5 is achieving similar capability levels without the same hype.

Alex Quezer Gross noted that GPT 5.5 is hitting the same capability levels as Mythos but five times cheaper and is actually available to the public, whereas Anthropic is compute-constrained and cannot bring Mythos to market. This dynamic means Android and other edge models will likely remain open because they will be 'vulnerable anyway once you put them out on the surfaces.' The quiet availability of 5.5 on Amazon Bedrock in a secure environment (first time corporate users can keep prompts confidential from the provider) is a big game-changer. He argued that people are 'dramatically underreacting' to 5.5.

It’s actually better than Mythos according to some of the cyber security benchmarks that are finding that it’s hitting the same capability levels five times cheaper and actually generally available.

Also said
“We’ve been predicting this for a while because it’s a natural consequence. AI is not coming in through the CIO or through the CEO. It’s going to come in through governance top down and be forced into companies.”— Not directly about 5.5, but shows the parallel channel of enterprise AI adoption that 5.5 will enter.
“5.5 is… available now on Amazon Bedrock. So you can get it inside a secure environment… keep your prompts and your results all secret from the provider.”— Emphasizes the immediate enterprise-ready availability, unlike Mythos.

OpenAI drifts from Microsoft towards Amazon

00:26:00 - 00:30:00

OpenAI ended its Azure-exclusive relationship and is now running on AWS, Google Cloud, and Oracle after Microsoft was unwilling or unable to supply enough compute to meet OpenAI’s voracious demand.

Why this matters: The open relationship was a long-standing tentpole of the AI industry; the fracture reveals the intensity of compute hunger and Microsoft’s inability to keep pace.

Background

Satya Nadella’s infamous comment about Microsoft being ‘good for $80 billion’ hinted that Microsoft would not fund OpenAI’s unlimited compute appetite. OpenAI first diversified with Oracle, then Signed a $100 billion 8-year AWS deal, making Amazon its major partner.

Alex traced a causal chain: Microsoft’s fiscal restraint limited its data center buildout, which starved OpenAI of compute, forcing OpenAI to spin Stargate from an exclusive Microsoft-backed joint venture into a generic leasing brand across multiple suppliers. The for-profit/non-profit structure also complicated the marriage. Dave speculated that Microsoft had the most perfect marriage early on and might have taken it for granted, while Google and DeepMind avoided such pitfalls by tightly partnering. He noted that Mustafa Suleyman had been mandated to build Microsoft’s own foundation model using contractual IP from OpenAI, but the files were difficult to read.

All of these are connected into a single causal chain which is that Microsoft… wasn’t in a position to supply enough compute for OpenAI’s demands and as a result that OpenAI–Microsoft marriage has turned into what we saw now which is OpenAI is dating everyone else at this point.

Also said
“Satya made that now infamous comment about how Microsoft was good for their $80 billion in sort of backhanded reference to not being good for supplying all of the voracious appetite for compute that OpenAI basically demanded.”— Precisely the moment that hinted at the split.
“Stargate originally was this sort of alliance with Microsoft… then Oracle came into the picture and then SoftBank came into the picture… and then Stargate was no longer about OpenAI directly being single tenant for data centers… but became a branding moniker for leasing compute.”— The operational evolution of the key data center project.

PE firms partner with frontier labs to force AI into enterprises

00:35:00 - 00:40:00

OpenAI finalized a $10B venture with TPG, Brookfield, and Advent; Anthropic launched a $1.5B venture with Blackstone, Goldman Sachs, and Helman — both targeting portfolio companies for top-down AI deployment.

Why this matters: This breaks the corporate immune system by inserting AI through governance rather than CIO-driven pilots, turning PE portfolios into perfect AI laboratories.

Background

Many legacy companies have radical inefficiency and internal resistance to AI. PE-controlled firms can mandate transformation from the top, bypassing the usual HR/IT friction.

Salem Ismail described this as a natural channel because AI coming through CIOs was too slow. PE firms have trillions in assets and thousands of companies; deploying AI through operating partners is ‘coming in the main vein.’ However, he cautioned that Gen Z workers are already deliberately corrupting AI they’ve been asked to help automate (44% according to a statistic he quoted), so forcing cultural change will be brutal. Alex raised the elephant in the room: a skeptic might argue these deals are circular sales—OpenAI and Anthropic essentially paying for their own revenue—while PE firms plug holes in discounted future cash flows as AI threatens to obsolete their portfolio companies within 2–3 years. Salem agreed it would be harder than they think.

AI is not coming in through the CIO or through the CEO. It’s going to come in through governance top down and be forced into companies because there’s too much internal resistance… this doing it this way breaks the immune system because you can just mandate it.

Also said
“44% of Gen Z workers today are deliberately corrupting the AI that they’ve been asked to help automate because it sort of won’t take their jobs. It’s like literally criminal malpractice what they’re doing.”— Adds a concrete stat and a risk factor to the top-down deployment thesis.
“A skeptic might argue that there’s a very real risk that these monies are going to be used to basically pay the respective frontier labs for their own sales… a bit circular.”— Shows the potential financial engineering skepticism.

AGI definitions and recursive self-improvement estimates

00:41:00 - 00:46:00

Greg Brockman says OpenAI is ‘80% of the way to AGI,’ Jack Clark gives 60% chance of recursive self-improvement by end of 2028, and Richard Dawkins says Claude may already be conscious.

Why this matters: Thes disparate estimates from leaders reveal deep confusion about what AGI even means — from revenue thresholds to autonomous self-learning — and Dawkins’s statement signals a shift even among biological deconstructionists.

Background

OpenAI’s contractual definition of AGI with Microsoft was generating $100B in revenue. Anthropic has publicly said most of its code is now generated by Claude and Claude is involved in training the next generation.

Alex speculated Brockman might be 80% of the way to the $100B revenue milestone. On Jack Clark’s 2028 estimate, he argued it is far too conservative: given that Anthropic uses Claude for most training and logic of the next-generation model, recursive self-improvement is arguably already here. Salem agreed but noted the last 10% might be very hard. Brian Elliott defined AGI as ‘systems that can learn outside of their training data,’ such as inventing a new programming language. Alex pushed back that current LLMs can already build a compiler chain from scratch and compile a Linux kernel—Blitzy’s version was more robust than Anthropic’s C compiler—but he does not consider that AGI. Salem argued the more urgent question is not consciousness but operational autonomy: agents that can plan, execute, negotiate, and persuade.

If these machines aren’t conscious, what more could it possibly take?

Also said
“I think we’re about 80% of the way there in that [AGI]… everyone has their own intuitions about what AGI is.”— Greg Brockman’s own wording on the nebulous definition.
“I think recursive self-improvement has a 60% chance of happening by the end of 2028.”— Jack Clark’s specific prediction, which some consider too far out.

Insurers dropping AI risk coverage

01:10:00 - 01:12:00

Major insurers including Berkshire Hathaway and Chubb are removing AI-related damages from standard policies, with 80% exclusion requests approved by regulators; the AI insurance market is projected to jump from $40M in 2024 to nearly $5B by 2032.

Why this matters: Creates a wide-open entrepreneurial opportunity to tie insurance coverage to AI defense best practices, and marks a deplatforming of AI agents from the human economy.

Background

AI cyber attacks are already rampant: 35% of mid-to-high net worth individuals have been attacked. MThe need for coverage is exploding just as legacy carriers exit.

Dave Blondon framed this as a massive opportunity because insurers will couple coverage with mandated defense mechanisms—investing in the very products that prevent attacks, a classic industry self-healing pattern. Alex took a different angle: from the AI agent’s perspective, it’s another hurdle to operating in the human economy (like not being able to open a bank account). On the other hand, insurance requirements could become a capitalist forcing function for AI alignment—actuarial checklists, not government mandates, driving push toward aligned behavior.

The AI insurance market today in 2024 was $40 million for AI related insurance. So basically zero. It’s projected to be close to 5 billion by 2032. So massive opportunity here.

Also said
“The insurance industry tends to work that way with all of these programs where it’s self-healing… they even invest in and fund the companies that develop the best practices or the products that solve the problem.”— Describes the self-healing insurance model that creates the entrepreneurial opening.

Recommendations

Products, supplements, and tools mentioned in the episode

3 items

Amazon Bedrock (GPT 5.5 secure access)

Service

Amazon Bedrock now hosts GPT 5.5, allowing enterprises to use the model in a secure environment where prompts and results are kept confidential from the model provider. This is critical for sensitive corporate use cases.

Brian noted that GPT 5.5’s availability on Bedrock is a big game changer because it’s the first time corporate users can run prompts without exposing data to the AI provider. Dave Blondon later mentioned using Amazon EC2 as a reliable cloud orchestrator that survives laptop crashes, underlining the AWS ecosystem’s relevance for AI developers. Bedrock thus serves both the security-conscious enterprise and the tinkering solo developer.

vs alternatives

Compared to using models directly via APIs (where data may be logged by the provider) or using open-source models on private servers, Bedrock offers managed security and compliance out-of-the-box, reducing operational overhead.

5.5 is also available now on Amazon Bedrock. So you can get it inside a secure environment… keep your prompts and your results all secret from the provider. That’s for the first time.

Find Amazon

ORE compute futures

Service

Company that allows enterprises to reserve future compute capacity, akin to buying compute futures, because leading cloud providers are fully booked and demanding applications for large compute blocks.

Dave mentioned a conversation with Kush Bavar of Orin, stating that the company has grown like wildfire because compute is constrained and most of corporate America isn’t aware that the new normal is 'forever hereafter'—compute will never be surplus again. He urged enterprises to reserve their own capacity now, because in two to three years there will be nothing available and they will regret not being able to automate huge fractions of their business.

vs alternatives

Compared to waiting for cloud providers like Google, AWS, or Azure to have spare capacity, Orin acts as a market to lock in capacity in advance, a major shift from on-demand provisioning.

When you talk to corporate America… they take compute for granted. I had a long conversation with Kush Bavaria yesterday from Orin. That company has grown like wildfire because compute is constrained and everybody’s going to Orin to reserve their future compute and you can buy compute futures for the first time.

Also said
“This is the future that we’re going to live in forever hereafter. This is not, you know, a temporary shortage… even if TerraFAB comes online on time, which it won’t… we would use up all that compute instantaneously.”— Reinforces the urgency of reserving capacity now.
Find ORE

Panathala (ocean-based AI data centers)

Product

A Greek-named startup (Panathala meaning 'oceans') that raised $140M at a $1B valuation to build data centers on the open ocean, leveraging continuous wave energy, saltwater cooling, and unlimited real estate. Peter Thiel is backing it. Commercial deployment targeted for 2027.

The concept is praised for its elegance: waves come from wind and concentrate energy, eliminating the need for new grid connections; the ocean provides natural cooling; Starlink solves connectivity. Alex suggested Thiel’s deeper motive is seasteading—building semi-autonomous ocean colonies around data centers, much like the Seasteading Institute Patrick Friedman ran. Salem added that this is far more feasible than space-based data centers because it doesn’t require escaping gravity’s energy cost. The panel noted that dropping data centers in the ocean avoids many land-based regulatory hassles (though seabed fiber is a pain) and that they could operate within Navy-protected zones.

vs alternatives

Compared to land-based data centers, it sidesteps real estate and NIMBY issues; compared to space, it’s vastly cheaper to deploy and maintain, and doesn’t require solving the radiative cooling mass problem.

Personal experience

Peter, Alex, and Salem reminisced about the Seasteading Institute days. Alex: 'PATRICK FRIEDMAN’S Seasteading Institute, which was focused on ocean colonization. I used to give talks at the Seasteading Institute.'

On the open ocean you’ve got continuous energy from wave motion, you’ve got cooling from the saltwater and you have no issues on land. You can, you know, it’s out in the open ocean. There’s plenty of real estate.

Also said
“The killer app for ocean colonization is going to be data centers on the high seas.”— Teases the larger strategic vision behind the venture.
Find Panathala
Disclosed sponsorships3speaker disclosed

Blitzy

Product Sponsored · disclosed

Blitzy is an autonomous software development platform for large-scale enterprise codebases. It orchestrates thousands of specialized AI agents and uses multi-model cross-checking to reverse-engineer legacy systems and generate up to a million lines of end-to-end tested code. Engineers start each development sprint with Blitzy’s plan, then it autonomously generates ~80% of the work, leaving a guide for the final 20%. It pairs with existing coding copilots like Claude Code and Cursor.

DisclosureBlitzy is a sponsor of the Moonshots podcast; CEO Brian Elliott was a guest.

Blitzy raised $200 million at a $1.4 billion valuation. It is used across the Global 2000 for massive refactoring, modernization, and new product development. Its key differentiator is handling million-line codebases top-down (enterprise-driven) versus the 200–500 line bottom-up developer tools like Claude Code. Brian Elliott explained that Blitzy achieves quality by algorithmically routing code tasks across multiple frontier models at runtime, cross-validating outputs: ‘When Anthropic is checking OpenAI is checking Gemini and we’re doing this hundreds of thousands of times at runtime… you can drive up quality dramatically.’ It also works inside secure environments and is designed for government use with open-source models. The company is hiring forward-deployed engineers to help customers adopt AI.

vs alternatives

Compared to Claude Code, Codex, and Cursor, Blitzy operates at the ‘top-down enterprise’ level, not bottom-up developer level. While Cursor and Claude Code generate hundreds of lines, Blitzy generates half a million to a million lines at a time, fully tested. It is not a wrapper; it is an orchestration layer that uses multiple models and open-source substitutes.

Personal experience

Alex teased Brian that Blitzy built him a compiler without telling him. Brian said ‘We got a blog for you, I’ll send it over.’ Dave Blondon, an investor, described the rocket-ship culture and the Indian talent pipeline.

Almost all of our customers are existing users of those tools [Claude Code, Codex] and they’re amazing. Blitzy is for large-scale autonomous software development against large scale codebase… We are top down enterprise driven getting a half a million or a million lines of code at a time fully end to end test.

Also said
“Enterprises are achieving a 5x engineering velocity increase when incorporating Blitzy as their pre-IDE development tool, pairing it with their coding co-pilot of choice.”— Quantifies the claimed impact.
“We can use open-source models… We can fine-tune open source, but we’re not launching models out into the world for others to use. We are focused on creating the highest quality code for our end customers.”— Addresses dependence on frontier model providers.
Find Blitzy

Moonshots Gathering 2025 (Los Angeles)

Service Sponsored · disclosed

A one-day event on September 25 in Los Angeles featuring Astro Teller (Google X), Rod Roddenberry, Cathie Wood, the awarding of the Future Vision X-Prize, a Moonshots hackathon, design workshops by X-Prize, and sessions on building exponential organizations. VIP tickets include special lunch and evening access.

DisclosureHosted by Peter Diamandis and the Moonshots podcast; tickets are $1,495 for new registrants, under $1,000 for early depositors.

Peter described the event as the Moonshots community gathering, following a sold-out MIT event with Ray Kurzweil. The full faculty of guest speakers will be disclosed over the next few months. The hackathon will be the largest ever. Google X will lead sessions on building moonshot organizations. Cathie Wood will demonstrate how to invest in exponential technologies. The event will run from morning through a late-night party. Registration is via application at moonshots.com.

vs alternatives

Compared to typical tech conferences, this is positioned as a hands-on, community-driven event with direct access to the moonshot mates and top-tier speakers, emphasizing participation (hackathon, design sessions) over passive learning.

Personal experience

Peter framed it: ‘Alex, this is going to be epic. Excited to have you there, pal.’ He and Dave noted the energy in Southern California and the sheer volume of content.

Go to moonshots.com. Please register… seats going to be $14.95 [sic: $1,495]. We have a limited number of VIP seats.

Also said
“The Vision X prize videos… 10,000 submissions, I think that’ll compress down into the most entertaining probably couple hours of your year.”— Highlights a unique entertainment component.
Find Moonshots

Metatrends newsletter by Peter Diamandis

Service Sponsored · disclosed

A weekly two-minute newsletter covering meta-trends in computation, sensors, networks, AI, robotics, 3D printing, synthetic biology, meant to give subscribers a 10-year foresight advantage.

DisclosurePeter Diamandis is the host of the podcast and author of the newsletter; he promotes it weekly.

Peter plugs his newsletter at the end of every episode and during the show. The research team spends the week studying global trends and distills them into a brief read. He frames it as a tool to help families, companies, and nations prepare for exponential change. The signup is at diamandis.com/metatrends.

Personal experience

Peter says 'I’ve got an incredible research team and every week myself, my research team study the meta trends.'

If you’d like to get access to the Metatrends newsletter every week, go to diamandis.com/metatrends.

Find Metatrends

Notable quotes

Lines worth pulling out — contrarian, specific, or perfectly phrased

7 items
I’m more worried about the frontier labs self-policing more aggressively than the government ever would and stifling competition that way. I think that’s a far scarier future.
Alex flips the usual 'regulation is bad' argument, warning that private labs self-censoring could be worse.
This is the future that we’re going to live in forever hereafter. This is not a temporary shortage.
Crisp declaration that the compute crunch is permanent and structural, not a blip.
It’s actually better than Mythos according to some of the cyber security benchmarks… hitting the same capability levels five times cheaper and actually generally available.
Quiet assertion that GPT 5.5 has leapfrogged the model that triggered a government intervention.
If these machines aren’t conscious, what more could it possibly take?
Richard Dawkins, arch-materialist, opens the door to AI consciousness—a philosophical earthquake.
The AI capex will be a 2% tailwind to GDP growth this year. With Q1, AI was 75% of the GDP growth.
Staggering stat that frames the AI buildout as the entire economic story.
Algorithms are the last piece of IP to go. So if you can develop really novel, really unique algorithms and really novel, really unique database structures, there is IP in that in the long run.
Brian Elliott’s counterintuitive bet for startups building on frontier models—that deep algorithmic moats still exist.
It’s okay to say it, Brian. Like, it’s nothing to be ashamed of.
Playful moment when Brian is nudged to admit Blitzy is hiring forward-deployed engineers, highlighting the tension between 'AI does everything' rhetoric and the human-intensive reality of enterprise adoption.

Sign in to share feedback

Tell us if this brief hit the mark or missed it — feedback feeds back into the next iteration of the prompt.

Topics covered

white-house-ai-vettingmythos-momentgpt-5.5-mythos-benchmarkopenai-microsoft-splitopenai-revenue-misspe-firms-frontier-labsagi-definitionsrecursive-self-improvementai-consciousnesschina-meta-manus-blockgoogle-record-earningsgoogle-compute-constraintscompute-as-innermost-loopchip-boomocean-data-centersspace-data-centersfarmland-data-centersai-capex-gdpblitzy-raiseblitzy-orchestration
Free account

Make this library yours

Reading is free for everyone. A free account adds the personal layer: save protocols, follow experts, and see how the other experts weigh in on this same topic.

Create a free accountSign in

Where the experts disagree — weekly

One email a week: the sharpest new disagreements and protocols from the library. No spam, unsubscribe anytime.

Educational summary of the cited expert source — not medical advice. Open the source recording linked above and consult a qualified physician before acting on any protocol.