The high stakes of reputation management When a dispute moves from a private exchange to the court of public opinion, the financial and reputational stakes skyrocket. We see this play out vividly in the ongoing clash between content creator Reckless Ben and franchise brand Bricks and Minifigs. It is a classic study in crisis mismanagement. A brand’s narrative must align with verifiable facts. When a company claims it tried to return inventory but private email correspondence proves the opposite, public trust vanishes. Prudent asset protection requires transparency, not groundless media campaigns. Strategic escalation in negotiations Successful wealth and business management relies heavily on strategic positioning. Reckless Ben describes his approach as a game of chess, letting the other party dictate the tempo of escalation. He starts polite. He matches their energy level. In business disputes, matching an adversary's aggression can sometimes prevent them from gaining an unfair advantage. However, from a capital preservation perspective, de-escalation remains the most cost-effective path. Stubbornness in business negotiations rarely yields profitable returns. The compound interest of relentless effort True capability is rarely an innate asset; it is a cultivated one. Long-term success, whether in high-wire slacklining or wealth accumulation, relies on sheer persistence. Talent is frequently a myth we construct to excuse our own lack of discipline. Reckless Ben shares how he began as the least naturally gifted athlete in his peer group, yet ultimately became the top slackliner in America through focused, continuous effort. In financial planning, we see the same principle: compounding effort and consistent, disciplined practices outperform sporadic bursts of genius every single time.
ElevenLabs
Companies
Jun 2025 • 1 videos
Steady coverage of ElevenLabs. The Riding Unicorns Podcast contributed to 1 videos from 1 sources.
Jan 2026 • 1 videos
Steady coverage of ElevenLabs. Laravel contributed to 1 videos from 1 sources.
Feb 2026 • 4 videos
High activity month for ElevenLabs. TechCrunch, 20VC with Harry Stebbings, and Laravel among the most active voices, with 4 videos across 3 sources.
Apr 2026 • 1 videos
Steady coverage of ElevenLabs. 20VC with Harry Stebbings contributed to 1 videos from 1 sources.
May 2026 • 1 videos
Steady coverage of ElevenLabs. AI Engineer contributed to 1 videos from 1 sources.
Jun 2026 • 1 videos
Steady coverage of ElevenLabs. AI Engineer contributed to 1 videos from 1 sources.
Jul 2026 • 2 videos
High activity month for ElevenLabs. AI Engineer and The Iced Coffee Hour Clips among the most active voices, with 2 videos across 2 sources.
- 5 days ago
- Jul 8, 2026
- Jun 1, 2026
- May 9, 2026
- Apr 11, 2026
The 20x Base Salary Standard In the high-stakes world of hyper-growth SaaS, traditional compensation models are often too soft to drive generational results. ElevenLabs has shattered the industry standard—where 6x to 10x base salary is the norm—by implementing a staggering 20x quota. If a sales representative earns a $100,000 base, they are expected to deliver $2 million in revenue. This isn't just a stretch goal; it is the baseline for survival. This aggressive framework ensures that every hire is not just a contributor but a high-octane engine for growth. By setting the bar at "level 11," the organization filters for individuals who thrive under pressure and possess the product expertise required to close complex deals. Public Accountability and Pipeline Rigor Transparency is the ultimate forcing mechanism. Monthly pipeline reviews at ElevenLabs are held in front of the entire team, discarding the conventional wisdom of "praise in public, criticize in private." Carles Reina maintains that shaming underperformance publicly is necessary to maintain a high-performance culture. During these ninety-minute sessions, leaders drill into specific deals to expose inflated numbers or stagnation. This honesty prevents the "lucky" rep from becoming complacent and warns others that results without a solid pipeline are temporary. By exposing blockers and identifying why deals slip, the team creates a collective intelligence that accelerates the entire organization. The Art of Negative Forecasting Predictability is more valuable than optimism when dealing with boards and investors. Reina advocates for a "negative as possible" forecasting strategy. If a deal has a potential value of $500,000, it is reported as $24,000. Underestimating the pipeline forces the sales team to work twice as hard to ensure they hit their year-end targets, effectively eliminating the risk of over-promising and under-delivering. Inflated pipelines are the fastest way to lose credibility with Venture Capital partners; extreme conservatism ensures that every surprise is a positive one. Cultivating a Remote Outbound Machine Building a sales culture remotely requires an obsession with activity. At ElevenLabs, the focus has shifted from relying on 90% inbound leads to a 50/50 split with outbound efforts. Reina, acting as the "SDR in chief," leads by example, outbounding CEOs globally and staying on the road 75% of the time. This relentless focus on outbound ensures the company never dies due to a dry pipeline. The message is clear: if you are sitting in an office doing only virtual meetings, you are doing it wrong. High-growth sales demand presence, energy, and a ruthless commitment to the hunt.
Feb 15, 2026Overview: The Unified AI Strategy for Laravel Building AI features often feels like a fragmented journey. Developers usually jump between specialized APIs for text, separate services for images, and complex libraries for audio transcription. The Laravel AI SDK changes this by providing a unified, first-party toolkit that handles the heavy lifting of AI integration. It treats AI as a core application concern, much like how Laravel handles databases or queues. By abstracting the differences between providers like OpenAI, Anthropic, and Gemini, it allows you to write cleaner, more maintainable code that isn't locked into a single vendor's API. Taylor Otwell designed the SDK to feel "Laravel-esque." This means leaning into conventions like class-based agents, fluent API chains, and deep integration with the existing Laravel ecosystem. Whether you need to summarize an issue in a project management tool, generate realistic speech via ElevenLabs, or perform semantic search on a mountain of PDFs, the SDK provides the scaffolding to do it efficiently. It moves AI from being an experimental add-on to a standard part of the modern developer's workflow. Prerequisites and Environment Setup Before you begin building, ensure you have a standard Laravel environment ready. You should be comfortable with PHP, Composer, and basic Laravel concepts like controllers and service providers. You will also need API keys from at least one AI provider. While the SDK supports local models via Ollama, production applications typically require keys for OpenAI or Anthropic. To get started, install the package via Composer: ```bash composer require laravel/ai ``` After installation, publish the configuration and migrations: ```bash php artisan vendor:publish --tag="ai-config" php artisan vendor:publish --tag="ai-migrations" php artisan migrate ``` The configuration file (`config/ai.php`) allows you to define your default providers. You can set different defaults for different modalities—for instance, using Claude for text and DALL-E for images. This flexibility is a core strength of the SDK. Key Libraries & Tools * **Laravel AI SDK**: The primary toolkit for interacting with LLMs, image generators, and audio services. * **Prism**: A community package by TJ Miller that serves as the query builder layer for the SDK's text generation. * **ElevenLabs**: Integrated for high-quality text-to-speech capabilities. * **Ollama**: Enables running local models for development and testing without incurring API costs. * **Laravel Boost**: A local MCP server that provides AI agents with context about your specific Laravel codebase. * **PostgreSQL with PGVector**: Used for storing and searching vector embeddings locally. Code Walkthrough: Implementing Agents and Tools 1. Creating an Agent The Agent class is the heart of the SDK. It encapsulates the identity of your AI. Instead of passing long strings of instructions in every controller, you define them once in a reusable class. You can generate one using the Artisan command: ```bash php artisan make:agent SalesCoachAgent ``` In the generated class, you define the system prompt and the models to use. The `instructions` method is where you set the "personality" and guardrails for the agent. ```php namespace App\Agents; use Laravel\AI\Agent; class SalesCoachAgent extends Agent { public function instructions(): string { return "You are an expert sales coach. Analyze the provided transcript and offer three actionable improvements."; } } ``` 2. Using Structured Output One of the most powerful features is getting the AI to return data in a specific format rather than a messy string. The SDK uses a JSON Schema builder to ensure the model follows your rules. This makes it possible to save AI responses directly into your database without fragile regex parsing. ```php use App\Agents\SalesCoachAgent; use Laravel\AI\Schema; $agent = new SalesCoachAgent(); $response = $agent->predict( prompt: "Analyze the call from yesterday.", schema: Schema::object([ 'sentiment' => Schema::string()->description('Overall tone of the customer'), 'score' => Schema::integer()->description('Score from 1-10'), 'follow_up_needed' => Schema::boolean(), ]) ); // Access data directly as an array echo $response['sentiment']; ``` 3. Integrating Tools (Function Calling) Tools allow your AI to actually *do* things. You can give an agent the ability to search the web, fetch a URL, or even query your own database. The SDK comes with several provider tools built-in, but you can also write your own custom tools by extending the `Tool` class and implementing a `handle` method. ```php use Laravel\AI\Tools\WebSearch; class ResearcherAgent extends Agent { public function tools(): array { return [ new WebSearch(), ]; } } ``` When you prompt this agent, it will realize it needs more info, call the `WebSearch` tool, and then use the results to finish its answer. This turns a static LLM into a dynamic assistant. Syntax Notes: Attributes and Traits The Laravel AI SDK makes heavy use of PHP attributes to simplify configuration. These attributes allow you to stay updated with the latest model advancements without changing your code logic. * **`#[UseCheapestModel]`**: Instructs the SDK to use the most cost-effective model for a specific provider (e.g., GPT-4o-mini or Claude Haiku). This is perfect for simple tasks like summarization. * **`#[UseSmartestModel]`**: Forces the use of the flagship model (e.g., Claude 3.7 Sonnet) for tasks requiring high reasoning capabilities. * **`RemembersConversations` trait**: Adding this to your agent automatically manages database storage for chat history, ensuring the AI remembers previous messages without you manually passing a growing array of context. Practical Examples: The 'Larvis' Workflow A practical application of this tech is building a voice-enabled assistant like "Larvis." The workflow demonstrates the multi-modal nature of the SDK: 1. **Transcription**: The user uploads an audio file of their question. The SDK uses a `transcribe` method (typically via Whisper) to convert audio to text. 2. **Context Retrieval**: The agent fetches relevant local documents (like Markdown files) and injects them into the prompt to provide specific knowledge the LLM wasn't trained on. 3. **Inference**: The agent generates a text response based on the transcription and the local documents. 4. **Speech Synthesis**: The text response is passed to the `audio` method, using ElevenLabs to generate a high-quality voice response that is sent back to the user. This entire pipeline, which would previously take dozens of different library integrations, can now be handled in a single Laravel controller using less than 50 lines of code. Tips & Gotchas * **Context Bloat**: Be careful not to attach too many tools or files to every request. Every tool definition and message in a conversation history consumes tokens, which increases latency and cost. Use the `RemembersConversations` settings to prune old messages. * **Failover Logic**: In production, always define a fallback provider. If OpenAI is experiencing downtime or you hit a rate limit, the SDK can automatically switch to Anthropic to keep your app running. * **Local Development**: Use Ollama for your daily coding to save money. You can switch your local `.env` to point the AI provider to `http://localhost:11434` to test your logic for free. * **Async Processing**: For long-running tasks like transcribing a massive video file or generating a complex image, use the `queue` method. This offloads the work to your Laravel worker and prevents your web request from timing out.
Feb 9, 2026The Era of the Individual Super-Corp We are witnessing a structural shift in how power is concentrated in Silicon Valley. The traditional model of building a company, scaling it, and perhaps eventually taking it public is being replaced by the Personal Conglomerate. This isn't just about diversification; it's about the centralizing of immense resources, data, and talent around a single, polarizing founder. The most aggressive example is the recent merger between SpaceX and xAI. By weaving these entities together, Elon%20Musk isn't just running businesses; he's building a self-reinforcing ecosystem that operates with a total disregard for the traditional silos of corporate governance. This "Gilded Age 2.0" allows founders to move with a velocity that leaves legacy corporations in the dust. When a single individual controls the cap table of multiple unicorns, they can share resources, engineering talent, and compute power without the friction of arm's-length negotiations. It's a high-stakes bet on founder-market fit that extends across entire industries, from space exploration to generative intelligence. While Wall Street has spent the last decade demanding that conglomerates break apart to "unlock value," these personal conglomerates are doing the exact opposite. They are consolidating to achieve a critical mass of innovation that is hard to bet against. Waymo and the Capital-Intensive Road to Autonomy While the personal conglomerates grab the headlines, the heavy lifting of physical infrastructure continues at Waymo. The company just closed a massive $16 billion funding round, pushing its valuation to a staggering $126 billion. But don't let the big numbers fool you—this isn't just a victory lap. This is an essential injection of capital for a business that faces a brutal opex reality. Waymo isn't just building software; it's managing a massive, growing fleet of Jaguar%20I-Pace vehicles and preparing for its next-generation Zeekr vans. The challenge for Waymo is saturation. To become a viable, self-sustaining business, they need to dominate specific urban corridors. They are currently hitting 400,000 rides per week with a goal of one million by year-end. However, the path to profitability remains obscured by the sheer cost of the hardware. Unlike Tesla, which uses its customers as a distributed testing fleet, Waymo must own the assets. This creates a fascinating tension for investors: they are betting on the most advanced autonomous driving technology on the planet, but they are also underwriting a capital-heavy transportation utility. The big question for the board remains the exit strategy. With Alphabet still holding the majority of shares, is an IPO the only way to satisfy institutional VCs? Breaking the Nvidia Monopoly Every startup in the world is currently a hostage to the Nvidia supply chain. If you can't get the H100s, you aren't in the game. That is why the $230 million Series B for Positron is so significant. They are specifically targeting the inference stage of the AI pipeline, attempting to build chips that are more efficient for running models rather than just training them. This is where the market is headed. Training is a one-time (albeit massive) cost, but inference is where the ongoing expenses live. The market is desperate for a second source of silicon. We see OpenAI flirting with the idea of its own chip production and Intel finally making a serious play for the GPU space. The dominance of Jensen%20Huang is undeniable, but the history of the tech industry shows that monopolies eventually create their own competitors by being too expensive and too restrictive. Whether it is a startup like Positron or a vertically integrated giant like Tesla building its own AI chips, the diversification of the AI hardware stack is the next great frontier for disruption. The Consolidation of AI Voice and Agents In the software layer, the "Cambrian explosion" of AI startups is beginning to face the reality of the consolidation cycle. ElevenLabs recently raised $500 million at an $11 billion valuation, establishing itself as the clear leader in voice synthesis. However, as OpenAI and Anthropic integrate more native voice and agentic features into their flagship models, specialized labs must evolve or be consumed. ElevenLabs is making the right move by expanding beyond a single feature into a broader platform for AI agents. In this environment, "feature-rich" isn't enough; you need to be a platform. We are seeing a trend where companies that started with a narrow focus—like voice or text-to-video—are all rushing toward the same center: the autonomous AI agent. This convergence means that we will soon see a wave of acquisitions. For the winners like ElevenLabs, the goal is to be the consolidator, using their massive war chests to swallow up smaller competitors before the big foundational models make their niche obsolete. Future Outlook: Risk Appetite as the Ultimate Asset Looking ahead, the common thread across these stories—from Musk’s conglomerate to Waymo’s expansion—is the return of massive risk appetite. The cautious, incremental growth of the last few years is over. In its place is a winner-take-all mentality fueled by the belief that the first company to reach AGI or full autonomy will own the future. We will likely see more founders attempt to mimic the Musk model. Sam%20Altman is already building a web of investments that looks increasingly like a personal ecosystem. As long as the capital continues to flow into these outsized personalities, the boundaries between individual wealth and corporate power will continue to blur. The winners of the next decade won't just be the ones with the best code; they will be the ones with the guts to bet the entire company on a vision that is ten years ahead of the market.
Feb 6, 2026The Rebirth of the Digital Foundation The digital world is currently undergoing a structural overhaul unlike anything we have seen in decades. Andreessen Horowitz (a16z) recently locked in a massive $1.7 billion fund dedicated specifically to AI infrastructure. This isn't just about throwing capital at a trend; it is about rebuilding the entire stack for a new era of compute. Jennifer Li, General Partner at a16z, identifies this as a "super cycle" where every layer—from silicon chips to the model layer—requires a complete retooling. The infrastructure running AI today was never designed for these specific workflows, creating a massive opportunity for founders who can build the hard technical backbone of the future. Beyond Large Language Models While the market fixates on chatbots, the real action is happening in specialized foundational models and inference clouds. Companies like ElevenLabs and Ideogram are not just building applications; they are developing their own models from pre-training to post-training. We have rapidly crossed the "uncanny valley" in audio and image generation. What seemed like a glitchy experiment six months ago is now indistinguishable from reality. Jennifer Li notes that her own voice clone in Japanese was enough to startle her husband, a native speaker. This leap in quality is shifting the focus from "can we do this?" to "how do we scale the inference?" Firms like Fal are stepping in to serve as the inference cloud for these multimedia models, providing the high-speed, low-latency environment necessary for real-world deployment. The Rise of Agentic Productivity 2026 marks the definitive shift from simple AI assistants to long-running, autonomous agents. We are moving past the "co-pilot" phase and entering a world where agents handle entire processes. While the concept has been discussed for years, we are finally seeing real ROI. These tools are being built to solve the "time and attention" crisis facing modern knowledge workers. The Trust Gap in Autonomy Despite the excitement, a significant hurdle remains: trust. Handing over a calendar is one thing; letting an agent manage a sensitive inbox is another. Julie Bort highlights that humans are still superior at connecting dots and identifying unspoken context—outliers that LLMs often miss. For agents to truly replace mundane tasks like data entry or order processing, they must move beyond token prediction and into world models that understand real-world physics and interaction. The industry is reaching a consensus that LLMs alone will not achieve AGI; we need multimodality and the ability for AI to interact with physical reality. The Velocity of Growth and the Talent Crunch We are witnessing unprecedented growth trajectories. Companies like Cursor and ElevenLabs have scaled from zero to hundreds of millions in revenue in record time. However, this velocity introduces extreme pressure. Jennifer Li warns that not all ARR is created equal, and founders must focus on business quality and durability rather than just top-line hype. The biggest bottleneck to this growth isn't capital—it's people. There is a profound shortage of AI-native talent capable of moving at this speed. Startups are scaling to massive valuations while keeping their headcounts under 100 people. This lean structure means every hire is a high-stakes decision. Founders are forced to solve complex legal, compliance, and deepfake challenges on the fly, often without the safety net of a CFO or traditional corporate guardrails. The Search for Accuracy As we look toward the next wave of investment, the focus is pivoting back to search. Not the old-school web search of the 2000s, but agentic search infrastructure. Agents need up-to-date, hyper-accurate information to function without hallucination. The demand for personalized, high-frequency search is skyrocketing. The next billion-dollar infrastructure play will likely be a team that solves the accuracy and latency problems for the millions of agents about to be unleashed on the global market. The market is wide open for disruption, and the capital is ready to ignite the next great solution.
Feb 4, 2026The 30-Minute Multiplayer Challenge We often hear bold claims about AI-assisted coding, but moving from a "Hello World" snippet to a functional, real-time multiplayer application is a different beast entirely. This review examines a recent experiment where Claude Code was tasked with building "Laravel Universe," a quiz game featuring real-time websocket interaction and AI-generated voiceovers. The goal was simple: provide a high-level prompt and let the agent handle the heavy lifting, including database migrations, front-end animations, and real-time broadcasting using Laravel Reverb. Key Elements of the Stack The development workflow hinged on a powerful trifecta: Laravel as the backbone, Claude Code (utilizing Opus 4.5) as the agent, and Laravel Boost. The latter is a critical inclusion here; it provides a Model Context Protocol (MCP) server that feeds the AI specific documentation and database schemas. This contextual awareness bridged the gap between a generic LLM and a specialized developer. To round out the features, ElevenLabs was integrated to provide text-to-speech capabilities, allowing the quiz questions to be read in a cloned voice. Analysis: The Strengths and Stumbles The speed of initial scaffolding is undeniable. Within roughly nine minutes, the AI generated a themed landing page with orbiting planets and a functional registration system. Using the `dangerously-skip-permissions` flag allowed the agent to iterate without constant human approval, which is a massive productivity gain if you trust the underlying model. However, the "one-shot" dream still has cracks. The first iteration suffered from a logic bug that immediately skipped the first question. Additionally, while the UI was playful, the CSS positioning for the planets lacked precision, and some buttons failed to function. The fix for the question-skipping bug took another three minutes of iteration. It’s clear that while the AI handles Laravel's conventions brilliantly, it still requires a human "pilot" to catch edge cases and polish the user experience. Real-Time Performance and Integration The most impressive feat was the seamless integration of Laravel Reverb. The AI correctly identified Reverb as the optimal choice for websockets within the ecosystem without being explicitly told to use it. This demonstrates the power of "convention over configuration" when paired with AI; because Laravel has a standardized way of doing things, the AI doesn't have to guess. The multiplayer test, featuring multiple users moving rockets across the screen simultaneously, proved that AI can build complex event-driven architectures in minutes rather than hours. Final Verdict Claude Code and Laravel represent a formidable pairing. For developers, this isn't about replacing the craft; it's about accelerating the boring parts. The experiment successfully moved from concept to a live deployment on Laravel Cloud in under half an hour. If you are comfortable debugging AI-generated logic and focusing on architectural oversight, this workflow is a glimpse into the future of rapid prototyping.
Jan 20, 2026The move from banking to hypergrowth impact Transitioning from the rigid, hierarchical world of banking to the chaotic frontier of early-stage startups requires more than just a change in scenery; it demands a fundamental shift in mindset. Carles Reina made this pivot sixteen years ago, leaving Barcelona for London and eventually joining Uber when its international team consisted of just twenty people. This move wasn't about seeking safety; it was about the hunger for impact. In a massive corporate structure, you are a number. In a twenty-person startup, you are the engine. This early exposure to Uber's skyrocketing growth triggered a realization: the early days of building from scratch offer a level of agency that vanishes once politics and bureaucracy take hold. For Reina, the goal has always been to identify the "hidden trend" before it becomes a headline. This philosophy guided him through Tractable, one of the UK’s first AI unicorns, and eventually led him to ElevenLabs. The common thread in these successes is a refusal to settle for the status quo and an obsession with solving problems that others find too unsexy or too difficult to tackle. Abandoning the playbook for constant experimentation Many go-to-market (GTM) leaders fall into the trap of the static playbook. They believe that because a strategy worked at a previous SaaS company, it will work for a foundational AI model. Reina argues that any fixed playbook is fundamentally flawed by nature. The speed of execution in the current market has collapsed the enterprise sales cycle from eighteen months to thirty days. In this environment, a rigid strategy is a death sentence. Instead of a playbook, Reina advocates for a culture of aggressive experimentation. At ElevenLabs, this means over-indexing on testing Ideal Customer Profiles (ICPs), pricing models, and pitches across different regions. What works in the UK rarely translates directly to Japan or the US without localization. A true GTM leader must be an entrepreneur at heart—someone willing to act as the company's first Sales Development Representative (SDR) to build the culture from the ground up. This hands-on approach ensures that leadership isn't disconnected from the reality of the customer's pain points. If you aren't experimenting, you are falling behind. The infrastructure of voice and the new AI agent economy ElevenLabs has positioned itself as more than just a voice-cloning tool; it is an infrastructure player similar to Amazon%20Web%20Services or Microsoft%20Azure in the early days of cloud computing. By providing foundational models for high-quality audio, they have spawned an entire ecosystem of verticalized applications. Reina sees the future of voice AI not just in entertainment, but in deep, utility-driven sectors like healthcare and automated support. The horizontal play—offering foundational models—is only one half of the strategy. The next frontier is verticalization. ElevenLabs is moving into AI agent platforms capable of handling inbound and outbound calls, acting as AI receptionists, and voicing articles for major publications like TIME. This shift targets the massive portion of the market that lacks the engineering skills to build their own tools. By creating the workflows and applications themselves, they penetrate deeper into the enterprise market, moving voice from a gimmick to a mission-critical business asset. The operator-investor edge and the $5,000 conviction Success as an angel investor isn't about the size of the check; it's about the value of the advice. Reina has completed over 70 angel investments, including an early bet on Revolut. His approach centers on being an "employee without being an employee." This means helping founders with contract negotiations, pricing strategy, and opening doors through an established network. Access to the best deals—the "top tier" signal—comes from building a reputation for being helpful before asking for equity. For a startup operator, angel investing is a long-term game of community building. Reina recalls that his early $3,000 and $5,000 checks were significant personal risks, but they were bets on the people and the ecosystem. Even if a specific company fails, the talent from that company often goes on to build the next unicorn. By backing the founders early, an investor earns a seat at the table for the entire lifecycle of the tech ecosystem's growth. Robotics and the GPT moment for hardware The most significant emerging trend is the convergence of Large%20Language%20Models with industrial robotics. Reina believes robotics is currently experiencing its "GPT moment." For years, hardware was dismissed by many VCs as too slow or too capital-intensive. However, companies like VIMA in Manchester and Techer in Barcelona are proving that merging LLMs with robotics allows machines to perform an unlimited number of non-sexy, autonomous tasks. This shift is particularly relevant in Europe, where labor shortages in manufacturing, elder care, and defense technology are reaching a breaking point. The ability of robots to operate autonomously, rather than being driven by a human operator, changes the ROI calculation entirely. This is "deep tech" in its truest form—hard to build, but essential for the future economy. Investors who ignored hardware in the past are now being forced to change their tune as autonomous systems become the backbone of the next industrial revolution. Managing liquidity and the art of the 20% trim One of the most complex decisions an angel investor faces is when to exit. The tech landscape is littered with "paper millionaires" who held on too long, as seen in the case of Hopin, where valuations soared and then cratered. Reina suggests a disciplined trimming strategy: selling 10% to 20% of a position during a Series B or C round once the company reaches unicorn status. This strategy allows an investor to lock in significant gains—often returning the entire original investment many times over—while still maintaining exposure to the massive upside of a potential decacorn. If you invested in the ElevenLabs pre-seed at a $9 million valuation and the company is now worth $3.3 billion, the math for a partial exit is undeniable. It isn't about a lack of faith in the founder; it's about responsible portfolio management. In a market where preference shares can wipe out common shareholders in a downside scenario, taking some chips off the table is the only way to ensure that a "win" on paper becomes a win in reality.
Jun 4, 2025