The Quiet Deflation of Big Tech's Crown Jewel Many investors expect the artificial intelligence boom to end in a spectacular, recession-fueled market crash. A far more likely scenario is already unfolding: the quiet deflation of the US AI bubble. Instead of a dramatic pop, the market faces a steady leak of capital as cheap, open-source alternatives emerge from overseas. This shift challenges the comfortable assumption that global enterprises will indefinitely rent expensive computing power from centralized US giants. The Cost-Quality Convergence Exploded American hyperscalers like Microsoft, Alphabet, and Amazon are funding a colossal infrastructure buildout. Yet, Chinese open-weight models have dramatically closed the performance gap. Models such as DeepSeek, Quen, and Kimmy now trail the absolute frontier of US closed models by a mere matter of months. The financial discrepancy is staggering. The flagship DeepSeek model costs approximately 87 cents per million output tokens. That is roughly 60 times cheaper than Anthropic's latest commercial offering. For enterprises running millions of automated queries daily, this pricing disparity transforms the fundamental unit economics of implementing AI, making proprietary US APIs increasingly difficult to justify. Sovereignty and Local Silicon The technological paradigm is shifting from centralized cloud renting to sovereign, on-device execution. The hardware required to run a highly capable, 120-billion-parameter model now fits comfortably on an office desk. Modern local hardware delivers computational throughput that previously required massive, warehouse-scale supercomputers. Crucially, running models locally on enterprise hardware resolves the persistent risk of data leakage. For privacy-conscious businesses and foreign governments, keeping proprietary data on local devices is the only compliant path forward. This transition poses a direct threat to the massive cloud data centers currently under construction. The Geopolitical Precedent Recent regulatory interventions highlight the fragility of relying on centralized, US-hosted infrastructure. When Washington enforced export controls on Anthropic's newest models, the firm had to pull its frontier models worldwide on mere minutes of notice to comply. This aggressive intervention sends a clear warning to international enterprises. Relying on US-hosted cloud intelligence exposes foreign businesses to overnight regulatory shutdowns. Consequently, the most valuable AI is no longer the smartest one; it is the one a business can reliably log into every Monday morning without geopolitical interference. Navigating the Capital Realignment This structural shift does not portend a complete dot-com-style wipeout for megacap tech firms. Giant hyperscalers possess highly diversified, deeply profitable core businesses in enterprise software, search, and retail. Instead, the risk lies in long-term equity underperformance. Big tech is pouring massive capital into infrastructure that is failing to generate matching returns. For disciplined investors, the path forward requires patience rather than tactical trading. A broad, cap-weighted global index automatically self-corrects. As high-flying hyperscalers cool off, the index naturally reallocates capital to the hardware suppliers, energy providers, and device manufacturers capturing the decentralized value. Owning the entire industrial chain remains far safer than guessing which individual model wins.
DeepSeek
Products
Jan 2025 • 1 videos
Steady coverage of DeepSeek. ArjanCodes contributed to 1 videos from 1 sources.
Mar 2025 • 1 videos
Steady coverage of DeepSeek. Cal Newport contributed to 1 videos from 1 sources.
Jul 2025 • 1 videos
Steady coverage of DeepSeek. AI Engineer contributed to 1 videos from 1 sources.
Dec 2025 • 1 videos
Steady coverage of DeepSeek. Linus Tech Tips contributed to 1 videos from 1 sources.
Feb 2026 • 1 videos
Steady coverage of DeepSeek. 20VC with Harry Stebbings contributed to 1 videos from 1 sources.
Mar 2026 • 2 videos
High activity month for DeepSeek. Chris Williamson and Dumb Money Live among the most active voices, with 2 videos across 2 sources.
Jul 2026 • 2 videos
High activity month for DeepSeek. AI Coding Daily and PensionCraft among the most active voices, with 2 videos across 2 sources.
Dumb Money Live mentions DeepSeek in its "AI Fear Is Driving This Market" video, while 20VC with Harry Stebbings positions DeepSeek as an open-source alternative (1 mention each). Linus Tech Tips references DeepSeek, and ArjanCodes discusses the impact of DeepSeek on software engineers in "DeepSeek Won't Matter for Software Engineers" (1 mention each).
- 4 days ago
- Jul 8, 2026
- Mar 31, 2026
- Mar 10, 2026
- Feb 28, 2026
Open source dominance through modular architecture Building AI applications that scale to millions of users requires a shift from complex monolithic thinking to a modular, lean architectural approach. Hassan El Mghari, Lead Developer Relations at Together AI, demonstrates that the most successful apps—like LlamaCoder or Blinkshot—rely on a streamlined four-step flow. The user provides input, the system makes a single targeted API call to an open-source model, the result is stored in a serverless database, and the output is served immediately. This simplicity allows developers to prioritize user experience and speed over complex backend orchestration. The modern full-stack AI tech stack To replicate this success, developers must leverage tools that minimize infrastructure friction. The recommended stack focuses on TypeScript-first libraries and serverless scaling: * **AI Inference**: Together AI for querying open-source models like Llama 3 or DeepSeek. * **Framework**: Next.js with TypeScript for a unified full-stack environment. * **Database**: Neon for serverless Postgres and Prisma as the ORM. * **Authentication**: Clerk for rapid user management setup. * **UI/UX**: Tailwind CSS and Shadcn UI to ensure professional design without custom CSS bloat. * **Observability**: Helicone for LLM-specific analytics and Plausible for web traffic. Code walkthrough for rapid prototyping The goal is to maintain a single API endpoint. In a typical Next.js Route Handler, you can trigger a model inference and return the stream directly to the client. This reduces latency and improves the perceived performance that users expect from modern AI tools. ```typescript import { Together } from "together-ai"; const together = new Together({ apiKey: process.env.TOGETHER_API_KEY }); export async function POST(req: Request) { const { prompt } = await req.json(); // Step 2: Single API call to a high-performance OSS model const response = await together.chat.completions.create({ model: "meta-llama/Llama-3-70b-chat-hf", messages: [{ role: "user", content: prompt }], stream: true, }); // Step 4: Stream response back to the UI for instant feedback return new Response(response.toReadableStream()); } ``` Seven rules for AI virality Hassan El Mghari emphasizes that 80% of development time should be spent on the UI rather than the model itself. A beautiful, intuitive interface makes simple functions, such as PDF summarization, feel like premium products. Developers should launch within two days of a new model release to capture the "new tech" trend. By keeping apps free and open-source, builders create a viral loop where users share the output and other developers contribute to the code, effectively outsourcing marketing through community engagement. Success in this field is a numbers game; shipping one app a month is the baseline for finding a hit that resonates with millions.
Jul 15, 2025Building the cognitive athlete in a distracted world Intelligence levels are currently in a tailspin. Data indicates that human cognitive performance reached its peak just as smartphones became ubiquitous, and we have been on a downward trajectory ever since. This decline isn't a failure of potential, but a failure of environment. In the early 20th century, physical fitness wasn't a deliberate pursuit because daily life—walking miles to work or laboring on farms—provided the necessary movement. Today, we live in a sedentary, air-conditioned world where we must manufacture physical exercise to survive. We have reached the same inflection point for our minds. The cognitive environment of thirty years ago naturally supported focus; today's digital landscape actively erodes it. Cal Newport argues that to survive this era, we must transition from passive consumers to cognitive athletes. It is no longer enough to simply "avoid distraction." We need a deliberate, aggressive system to reclaim the brain's ability to hold attention and generate high-value thoughts. This guide outlines a structured approach to building an elite cognitive base and then pushing that capacity through advanced training techniques. The goal is to transform your brain from a liability into a high-performance asset. Tools for the cognitive training ground To begin this transformation, you do not need expensive software or biohacking gadgets. You need systems that facilitate depth. For the foundational stages, a simple kitchen timer or a dedicated focus app will suffice. You will also need a reliable method for capturing and synthesizing information. Notion is an excellent tool for this, as it allows for the creation of custom databases to store and rearrange ideas. For advanced reading, you must secure high-quality physical or digital books that offer competing perspectives—no more relying on social media threads for nuanced understanding. Finally, a commitment to a "digital diet" requires a selective approach to information sources, prioritizing platforms like Substack or high-quality podcasts over algorithmically driven feeds. These tools serve as the gym equipment for your mental conditioning. Five steps to elite mental performance Before you can tackle the advanced techniques, you must lay a foundational base. This involves simple, consistent habits: walking without input, banning dopamine stacking (doing one thing at a time), and engaging in hobbies that require active concentration, like playing an instrument. Once this base is firm, you can move into the five core pillars of elite training. 1. Interval training for concentration The first step is treating focus like a muscle through interval training. This technique, which Newport explored during the Deep Work era, involves choosing a demanding task and committing to a set period of total concentration. Start with a manageable interval—perhaps 30 minutes. If your attention wanders or you check your phone, the timer restarts. Once you are comfortable with an interval, increase it by 10 minutes. Within a semester of consistent practice, even a highly distracted individual can reach 90 minutes of locked-in focus. The "stretch" during these sessions is where the cognitive growth occurs. 2. The dialectical reading method Most people consume information that serves as a "sugar high" for their existing biases. They seek out content that tells them their tribe is right and the opposition is foolish. To break this, adopt dialectical reading. Select a complex topic and find two books: the best possible defense of one side and the smartest possible defense of the opposing view. Read them both. The collision of two sophisticated, opposing arguments forces an intellectual leap that is ten times more powerful than a standard lecture. This method, rooted in the Socratic tradition, replaces outrage with nuance and makes your understanding of the world significantly more robust. 3. Systematic idea documentation Writing is not just a way to record thoughts; writing is thinking. If you care about a subject, maintain an evolving idea document. As you listen to podcasts or read, take notes and regularly reorganize them. This process creates a "cognitive scaffolding" in your mind. By editing and arranging information on a page, you structure it in your head. This is why Georgetown University professors are often so articulate; they are constantly writing about their focus areas. Documenting your thoughts ensures that your knowledge is accessible and structured rather than a fleeting memory. 4. Cultivating deep connoisseurship Become an expert in recognizing quality. You do not need to be an athlete to be a connoisseur of NFL football schemes, nor do you need to be a musician to understand the brilliance of a specific composition. By learning to appreciate the nuances of expertise in one field, you develop an appreciation for quality that translates across domains. It adds shades of color to a world that otherwise feels flat. This ability to see subtlety is a hallmark of elite thinkers; it turns a "technicolor" world into a high-definition experience. 5. Implementing a ruthless digital diet You cannot train for a marathon while drinking McDonald's milkshakes daily. Similarly, you cannot build an elite brain while scrolling Instagram or X for hours. A digital diet means becoming highly selective about your information sources. Move away from algorithmic recommendations and toward curated content like newsletters or specific YouTube experts. Seek out nuanced commentary from figures like Ezra Klein. If the content is designed to make you mad or give you a quick hit of dopamine, it is likely junk food for your brain. Professionalize your consumption to protect your cognitive gains. Troubleshooting the transition to depth The most common obstacle in this journey is the discomfort of boredom. When you begin interval training or reading dense material, your brain will physically protest. This is the cognitive equivalent of muscle soreness. Do not mistake this discomfort for a lack of ability; it is simply the feeling of your attention span expanding. If you find yourself unable to finish an interval, do not get frustrated. Stay at that duration for two weeks before attempting to increase it. Another challenge is the "control trap." As you become more cognitively capable, you will likely become more valuable in your career. This value often attracts shiny, high-stress opportunities that promise more money but demand your autonomy and focus. Use lifestyle-centric career planning to evaluate these offers. Ask if the promotion serves your ideal life or if it merely adds "sludge"—the busywork and meetings that erode the depth you have worked so hard to build. Remember, the goal of a smarter brain is a better life, not just more work. The outcome of cognitive conditioning If you commit to this regimen for a single season, your experience of the world will shift. You will notice nuances that others miss. You will sound more articulate and feel more creative because your ideas have structure and depth. Beyond professional success, this training lowers stress levels by removing the frantic, reactive nature of a distracted mind. This used to be the primary function of college—a four-year training camp for the mind. Unfortunately, as smartphones infiltrate even elite institutions, many students are graduating without the ability to read a complex text or sustain a focused argument. If you want to thrive in the knowledge economy, you can no longer rely on institutions to provide this training. You must build your own system. By treating your brain as a high-performance tool that requires maintenance and exercise, you position yourself as an elite participant in an increasingly distracted world.
Mar 31, 2025The Race to the Bottom AI models like DeepSeek represent a massive shift in how we perceive the value of code. While billions flow into companies like OpenAI and Microsoft, the reality is a swift race to the bottom. AI is becoming a commodity—a free or cheap feature integrated into existing tools rather than a standalone product worth a premium. For software engineers, this means the act of writing code is no longer the primary value driver. Shifting Expectations in Development Companies will not simply fire their entire engineering staff because of automation. Instead, they will move the goalposts. Management will expect developers to build three times as fast using tools like GitHub Copilot. The expectation shifts from "can you write this function?" to "can you design a robust, scalable system?" Efficiency is now the baseline, not the competitive advantage. The Evolution of the Junior Role Junior engineers face the most immediate pressure, especially in startup environments where first-version prototypes are easily generated by AI. However, this creates an opportunity for a more exciting career path. Instead of spending years on menial syntax tasks, juniors can engage with high-level architecture and design decisions much earlier. The role is becoming less about being a "coder" and more about being a software designer who understands how to orchestrate complex systems. Deepening the Moat through Architecture The only way to remain relevant is to go deep. Specialized skills in software architecture and complex system design provide a moat that AI cannot easily cross. While Apple Intelligence and other models can produce snippets or even small apps, they lack the human judgment required for nuanced design decisions. To thrive, engineers must use AI as a stepping stone to reach higher levels of abstraction and complexity.
Jan 31, 2025