Fireship's tech explainers in 60 seconds. JavaScript, AI, and dev tools — read the key ideas, then decide to watch. Updated daily.

12 AI-powered summaries • Last updated Mar 9, 2026

This page tracks all new videos from Fireship and provides AI-generated summaries with key insights and actionable tactics. Get email notifications when Fireship posts new content. Read the summary in under 60 seconds, see what you'll learn, then decide if you want to watch the full video. New videos appear here within hours of being published.

Latest Summary

The greatest unsolved problem in computer science...

7:052 min read5 min saved

Key Takeaways

P vs NP Problem Overview

  • The P versus NP problem is the most famous unsolved problem in computer science, with a $1 million prize offered for its solution by the Clay Mathematics Institute.
  • It questions whether problems whose solutions can be quickly verified (NP) can also be quickly solved (P).
  • If P = NP, it would have profound implications, making all current encryption instantly crackable, but also potentially solving complex problems like curing cancer and ending world hunger.
  • Conversely, if P ≠ NP, it suggests inherent limits to computation in the universe.

Understanding P and NP

  • P (Polynomial Time): Problems that computers can solve efficiently, even as input size increases. An example is sorting a list of names, where the time taken grows reasonably with the list size (e.g., proportional to N or N log N).
  • NP (Non-deterministic Polynomial Time): Problems where a solution can be *verified* quickly, but *finding* the solution might be extremely difficult.
  • Examples of NP problems include the Traveling Salesman Problem, Sudoku, and scheduling tasks.

Key Concepts and Examples

  • Prime Factorization: Multiplying two prime numbers is easy (P), but factoring a large number back into its primes is computationally hard (related to NP). This is the basis for RSA encryption.
  • Traveling Salesman Problem: Finding the shortest route visiting multiple cities once. Verifying a given route is easy, but finding the optimal route is extremely difficult (NP-complete).
  • Real-world algorithms often use heuristics to find approximate solutions to NP problems in a reasonable time, trading optimality for speed.

NP-Complete Problems

  • NP-complete problems are the hardest in NP. If one NP-complete problem can be solved in polynomial time, then all NP problems can be solved in polynomial time (meaning P = NP).
  • The first NP-complete problem defined was SAT (Boolean Satisfiability Problem), which asks if there's an assignment of true/false values that makes a complex logical expression true.
  • Other NP-complete problems include Traveling Salesman, Sudoku, circuit design, and protein folding.
  • Despite 50 years of research, no polynomial-time algorithm has been found for any NP-complete problem.

Implications and the Unknown

  • The P versus NP question has philosophical implications about the efficiency and nature of the universe.
  • If P = NP, it suggests a highly efficient, mechanistic universe.
  • If P ≠ NP, it implies inherent computational limits.
  • A speculative idea is that our existence might be part of an algorithmic process to compute the solution to this problem.

More Fireship Summaries

12 total videos
Cloudflare just slop forked Next.js…5:17

Cloudflare just slop forked Next.js…

·5:17·3 min saved

The Next.js Ecosystem and Deployment Challenges Next.js is the most popular React app framework. Historically, its weakness has been limited deployment targets, unlike bespoke runtimes on platforms like Vercel. Deploying Next.js apps to other platforms like Cloudflare or Netlify is more complex. The Open Next project repackages Next.js build output for broader deployment but is fragile and prone to errors when Next.js output changes. Cloudflare's V-Next: A Re-implementation of Next.js Cloudflare developed V-Next, a re-implementation of the Next.js API built on Vite. The goal is to free Next.js apps for deployment anywhere. This isn't the first attempt; Cloudflare previously tried and failed. AI significantly accelerated development: basic SSR, middleware, server actions, and streaming worked in one day. By day three, full client hydration on Cloudflare Workers was achieved. API coverage reached 94% of the Next.js API within a week, costing approximately $1,100 in AI tokens. V-Next leverages Vite's architecture, including Rollup (Rust-based bundler) for performance. Vercel's Reaction and Potential Vulnerabilities Vercel's CTO called V-Next a "slop fork." Vercel also released a migration guide and highlighted critical vulnerabilities in V-Next. These vulnerabilities suggest it's a close Next.js clone, but Vercel claims Cloudflare lacks significant users. Testing V-Next and Migration Experience The author tested V-Next with their newsletter app, bytes.dev. For basic apps, installing V-Next and changing the build command might suffice. This app required refactoring, simplified by Cloudflare's agent skill. Key compatibility adjustments include adding "type": "module" to package.json and changing JS file extensions to .jsx for files with JSX. The initial migration attempt by the agent was incomplete, requiring further manual intervention. The app was successfully migrated to run entirely on V-Next. Performance and Future Outlook The author concludes that switching to V-Next might not be worth it yet ("you're the one who bleeds"). Vite is highlighted as a significant factor in V-Next's performance. Cloudflare's benchmarks show V-Next build times up to 4.4x faster and 57% smaller client bundles than Next.js, attributed to Vite and Rollup. The author independently achieved 5x faster build times. Despite performance gains, the author will not ship to production yet but will monitor the project. Understanding underlying code and computer science fundamentals is crucial, even with AI code generation.

When open-sourcing your code goes wrong...6:39

When open-sourcing your code goes wrong...

·6:39·5 min saved

OpenClaw: The Unprecedented Rise OpenClaw: A JavaScript AI wrapper that saw an unprecedented rise, gaining over 200,000 GitHub stars in weeks and acquired by OpenAI. The Pitfalls of Open Source Success Many open-source projects, despite their brilliance, fail to reward their creators due to business models, burnout, or market shifts. Case Study 1: Mutable Instruments and Emily Glay A commercial product was based on the work of Emily Glay, the developer behind Mutable Instruments. The solo developer faced burnout and moved on, causing the project to fade away. Case Study 2: Faker.js and Marak Squires Faker.js, a popular JavaScript library for generating fake data, was intentionally broken by its developer, Marak Squires, in protest of lack of compensation. Squires deleted the source code and replaced it with "endgame," causing widespread disruption. He was removed from the project, but it continues under new management. Case Study 3: Parse Server Parse was a backend-as-a-service platform acquired by Facebook for $85 million in 2013. Facebook shut down Parse in 2016, forcing users to migrate. The Parse Server code was open-sourced, allowing independent maintenance. Case Study 4: Meteor Meteor was an early full-stack JavaScript framework that offered instant UI updates via WebSockets. It faced challenges with maintainability and scaling in production. Its popularity declined with the rise of React and Angular, which favored separating client and server. Case Study 5: OpenSolaris OpenSolaris, based on Sun Microsystems' Solaris Unix, offered advanced features like ZFS and containers. Oracle's acquisition of Sun Microsystems in 2010 led to the halt of open development and the project's eventual closure. Oracle re-closed the source code, forcing developers to fork the last available version. Case Study 6: Mozilla Firefox (Netscape's Legacy) Netscape, initially dominant, lost market share to Microsoft's Internet Explorer, which was bundled with Windows. Netscape open-sourced its code, leading to the Mozilla project, but the transition required a massive rewrite. By the time Firefox was ready, Netscape was already defunct. While Firefox lost the browser war commercially due to distribution issues, its technical success revived browser competition. Code Rabbit: Sponsor Mention Code Rabbit is an AI code reviewer that allows teams to customize pull request summary formats. It aims to save development teams time by providing clear and concise PR summaries.

How AI is breaking the SaaS business model...5:02

How AI is breaking the SaaS business model...

·5:02·3 min saved

AI's Impact on SaaS The SaaS business model, characterized by high profit margins and customer rental of software, is facing disruption due to AI. Major SaaS companies (Adobe, Salesforce, etc.) experienced a $1 trillion market cap drop, attributed to AI's capabilities, not just economic factors. AI agents can perform the work of multiple individuals rapidly, reducing the need for numerous software licenses ("seats"). Key AI Developments OpenAI Codeex: A Mac OS app acting as a command center for AI agents, allowing non-developers to build apps and prompting developers to debug AI-generated code. OpenAI Codex 5.3: An advanced coding model that is faster and integrates multiple skills (image generation, writing, research), enabling it to handle broader product development tasks. Claude Opus 4.6: A competitor to OpenAI, strong in code generation and expanding into legal and financial analysis to justify enterprise subscriptions. Alibaba Quwen 3 Coder Next: An open-weight coding model allowing companies to host powerful AI development tools internally, bypassing vendor lock-in and reducing subscription costs. ZAI GLM5: Targets complex systems engineering and long-horizon tasks, with performance rivaling leading closed models. Minimax M2.5: An open model offering performance comparable to frontier models at a significantly lower compute cost, making advanced AI reasoning more accessible and portable. The Shift Towards Agent Orchestration The AI landscape is shifting focus to platforms for autonomous code orchestration rather than individual AI models. Microsoft GitHub Agent HQ: Evolving GitHub beyond code hosting into an AI agent orchestration platform, managing tasks like issue creation, branching, and code merging based on test results. Waymo World Model: Google's Waymo released a model focused on large-scale simulation and prediction, demonstrating AI's ability to model complex environments and act autonomously. This translates to business applications like forecasting and logistics, potentially making traditional SaaS dashboards obsolete. The Future of SaaS and Developer Opportunities As intelligence becomes abundant through AI, the per-human pricing model of SaaS is becoming unsustainable, leading to declining profit margins. New opportunities will arise for developers skilled in utilizing modern tools. Oz by Warp: A cloud platform for coding agents that allows running hundreds of agents simultaneously across multiple repositories for tasks like bug fixing, documentation updates, and log scanning. Agents can be launched via web app or CLI, scheduled, or triggered by events.

10 open source tools that feel illegal...10:04

10 open source tools that feel illegal...

·10:04·8 min saved

Introduction to Ethical Hacking & Tools The video differentiates between users, programmers, and hackers, emphasizing the importance of ethical hacking. It introduces 10 free and open-source ethical hacking tools available on Kali Linux. A strong disclaimer is given: these tools are for educational purposes only and unauthorized use is illegal and carries severe penalties. Hostinger is promoted as a sponsor for setting up Virtual Private Servers (VPS) for practice. Network Mapping and Analysis Nmap: Used to map networks by sending packets to identify active hosts, open ports, and operating systems. Command example: nmap [IP address/URL]. The -A option enables aggressive scanning for OS detection and traceroute. Wireshark: A network protocol analyzer that captures and inspects network traffic in real-time at a microscopic level, allowing for analysis of data payloads. Exploitation Frameworks Metasploit: A powerful framework that simplifies launching attacks, even for less experienced users. It can be used to exploit vulnerabilities like Eternal Blue on Windows machines to gain a reverse shell and access files. Wireless Network Security Aircrack-ng: A suite of tools for assessing Wi-Fi network security. It can be used to find networks (airmon-ng, airodump-ng) and crack Wi-Fi Protected Access (WPA/WPA2) keys. Emphasizes the importance of using HTTPS for encrypted data transmission. Password Cracking Explains that passwords are hashed and salted, not stored in plain text. Hashcat: A tool for cracking password hashes using various methods, including brute-force attacks and dictionary attacks with wordlists like rockyou.txt. Web Vulnerability Scanning Skipfish: Recursively crawls websites to scan for vulnerabilities such as Cross-Site Scripting (XSS) and SQL Injection. It can also crawl authenticated areas of a website. Digital Forensics Foremost: A digital forensics tool that performs file carving to recover deleted data from storage devices by identifying file headers and footers. Database Exploitation and Denial of Service sqlmap: Scans websites and servers for databases, maps their schemas, and facilitates SQL injection attacks. hping3: Used for network testing and denial-of-service (DoS) attacks. The --flood option sends packets rapidly to overwhelm a target server, potentially leading to a Distributed Denial of Service (DDoS) attack if used with a botnet. Social Engineering Social-Engineer Toolkit (SET): Used to create sophisticated phishing attacks via email, SMS, QR codes, and website cloning. It can clone legitimate websites to trick users into revealing credentials.

The wild rise of OpenClaw...5:19

The wild rise of OpenClaw...

·5:19·1.8M views·4 min saved

Introduction and Naming Controversy OpenClaw (formerly Claudebot, then Moltbot) is a new AI application for developers. It aims to be an action-oriented AI assistant available 24/7. Gained significant traction with 65,000+ GitHub stars rapidly. Renamed due to a legal threat from Anthropic, who own the "Claude" AI. Core Functionality and Technology Created by Peter Steinberger, founder of PSDFKit. Written in TypeScript, it integrates with Claude and GPT-5. Designed to automate tasks such as managing calendars, emails, running scripts, and monitoring finances. Can be self-hosted on personal servers (VPS, Raspberry Pi, Mac Mini). Offers an alternative to paid AI subscription services. Setup and Configuration Installation is a single command, with Linux recommended. Requires connecting an AI model provider (e.g., Anthropic API key, or free open-source models). Integrates with messenger apps like Telegram, Slack, WhatsApp, or Discord for interaction. Users configure "skills" (built-in or custom from MoltHub) and "hooks" for lifecycle events and memory persistence. A web-based dashboard is available for management. Real-world Automation Example Users interact via a chosen messenger app (e.g., Telegram). Requires a pairing code to link the messenger to the OpenClaw instance. Users can refine the AI's personality through chat commands. Demonstrates setting up an automation to monitor stock performance (Microsoft) and receive alerts via Telegram. Can also be used to generate interview questions for software engineers.

A brief history of programming...6:09

A brief history of programming...

·6:09·4 min saved

The Dawn of Computing The invention of 1 and 0 laid the groundwork for computing, becoming significant with the advent of electricity. Alan Turing's 1936 work defined computability and his efforts during WWII were crucial. Early computers used vacuum tubes and punch cards to represent binary data (bits). The concept of a "byte" (eight bits) emerged, allowing for representation of numbers up to 255. Evolution of Programming Languages Assembly language was introduced as an improvement over raw binary, using mnemonics. Grace Hopper developed the first compiler, enabling higher-level programming languages like FORTRAN and COBOL. Lisp, with its list-based structure and interpreter, introduced automatic memory management (garbage collection). Edsger Dijkstra advocated for structured programming, moving away from "go-to" statements. Dennis Ritchie created C, a powerful language allowing direct memory access, leading to the development of the Unix operating system with Ken Thompson. C++ added object-oriented features to C, becoming widely used for games, browsers, and databases. BASIC gained popularity on home computers, alongside languages like Turbo Pascal, ADA, Erlang, MATLAB, Perl, Objective-C, and Smalltalk. Modern Programming Paradigms Python emphasized readability and significant whitespace. Java introduced the "write once, run anywhere" philosophy with its virtual machine. JavaScript, initially for browser animations, now runs on servers, phones, and spacecraft. PHP became dominant for websites, though JavaScript frameworks like React and Angular gained prominence. Languages like Swift, Kotlin, TypeScript, Go, Rust, and Zig emerged to improve upon or replace existing ones. The Impact of AI on Programming The rise of AI tools, starting with autocomplete and progressing to full-stack application generation, has led to discussions about the "death of programming." The core job of a programmer is defined as thinking and problem-solving, not just typing code. AI tools like Jet Brains' Juny integrate with IDEs, offering context-aware coding assistance and AI chat for deeper understanding.

The unhinged world of tech in 2026...9:11

The unhinged world of tech in 2026...

·9:11·7 min saved

Software Engineering Jobs in 2026 Software engineering job openings have not fully recovered to pre-2023 levels. The Bureau of Labor Statistics forecasts 15% job growth for software developers through 2034. A new $100,000 fee for H-1B visa applications makes it harder for US companies to hire foreign talent. AI coding tools are not yet replacing human engineers; they are creating jobs for "code janitors" to clean up AI-generated code. AI Trends and the Bubble AI valuations are currently in a bubble, but the hype cycle is expected to continue for several more years. LLMs have plateaued in intelligence, with disappointing releases like GPT5. AI is impacting jobs in fields like spreadsheets, mid-level management, and graphic design. Many AI companies remain private, with potential for a wave of IPOs in 2026 (e.g., SpaceX, OpenAI, Anthropic). Robotics and Wearable AI Humanoid robots (e.g., 1X Neo, Figure Robots, Tesla Optimus) are expected to roll off assembly lines in 2026, aimed at replacing manual labor. Wearable AI tech is a trend, with OpenAI collaborating on new devices and companies like Nike developing powered shoes. Past wearable AI products like the Rabbit and Humane Pin have been flops. VR/AR and Chip Industry The Apple Vision Pro is considered a flop, but a lower-cost version might improve its prospects. Meta is investing heavily in AR, but the VR/AR space is likely to remain an unprofitable niche. Chip designers (Nvidia, ARM) and fabricators (TSMC) will continue to profit due to AI demand. Intel is undergoing a turnaround with US government backing. Nuclear Power and Quantum Computing The demand for electricity for AI could lead to a resurgence in nuclear power, with companies like Ollo developing small modular reactors for data centers. Quantum computing advancements are significant, with Google's Willow chip and quantum echoes algorithm. Quantum computers are showing potential to surpass supercomputers, with practical applications on the horizon. Digital IDs and Central Bank Digital Currencies (CBDCs) Governments are pushing digital IDs and CBDCs, which could give them access to personal data. The UK is pushing digital IDs, and the Eurozone is piloting a digital euro. JavaScript Frameworks Node.js now supports TypeScript files. Deno has a built-in module bundler. Bun.js is a fast runtime with built-in support for PostgreSQL and Redis. ReactJS remains dominant but will improve with a stable compiler. Ripple is a new JavaScript framework to watch in 2026.

How to make vibe coding not suck…5:44

How to make vibe coding not suck…

·5:44·4 min saved

The AI Coding Dilemma Developers face a dichotomy: some are becoming less productive and abandoning AI, while others, like Nvidia's engineers, are seeing massive productivity gains by fully embracing AI assistance. AI coding can feel like gambling, offering dopamine rushes when prompts work but leading to frustration and wasted resources (credits) when they don't, creating a "prompt treadmill of hell." What are Model Context Protocol Servers? MCP servers are a standardized way for coding agents (like AI assistants) to communicate with external systems, such as local applications, remote servers, or third-party APIs. Using MCP servers can make AI coding more reliable and predictable. Essential MCP Servers for Developers Spelt MCP Server: Solves issues with generating correct Spelt 5 code by providing access to Spelt documentation and an autofixer that corrects hallucinations. Figma MCP Server: Converts Figma designs into HTML, CSS, React components, or iOS UI elements, significantly speeding up front-end development. API MCP Servers (e.g., Stripe): Fetches exact API documentation and provides tools to access live data, reducing errors in critical systems like payment processing. Monitoring MCP Servers (e.g., Sentry): Allows AI assistants to query and fix runtime errors directly from monitoring tools, saving debugging time. Issue Tracking MCP Servers (e.g., Atlassian, GitHub): Enables AI to automatically pull and fix issues from ticketing systems like Jira, streamlining bug resolution. Infrastructure MCP Servers (e.g., AWS, Cloudflare, Vercel): Allows AI to provision cloud resources, potentially automating infrastructure management. Building Your Own MCP Servers The MCP protocol is standardized, allowing developers to build custom servers for specific needs, such as accessing unique data sources or managing smart home devices. MCP frameworks are available for major programming languages, making it easier to create these specialized servers. Savala: A Platform for Deploying Applications Savala is a modern platform for deploying full-stack applications, databases, and static sites, succeeding Heroku. It integrates Google Kubernetes Engine and Cloudflare, simplifying deployment without complex YAML configurations. Features include Git repo connection, pre-built templates, app analytics, environment variables, and robust environment pipelines (preview, staging, production). Savala offers a free trial with $50 in credits.

n8n will change your life as a developer...5:56

n8n will change your life as a developer...

·5:56·1.1M views·5 min saved

• n8n is an open-source, self-hostable automation tool that serves as a free alternative to paid services like Zapier. • It allows users to build complex automation workflows by connecting various apps and services through a visual, flowchart-style interface, enabling automation without extensive coding. • Workflows can be triggered by events such as form submissions, database writes, voice commands, or GitHub issue updates, and can perform actions like building Docker images, posting to social media, or scraping data. • The tool can be easily tested locally by running "npx n8n" in the terminal, with the UI built using Vue.js. • For serious use, n8n can be deployed on a private server, demonstrated using a Linux VPS from Hostinger, which offers pre-built templates for quick setup. • Advanced workflow examples include using AI to generate viral video content, triggering actions based on specific emojis in messages, ordering flowers via an API, and generating apology letters dynamically using AI. • The platform provides capabilities for integrating custom code or hitting third-party APIs, handling conditional logic, and logging interactions to services like Google Sheets.

AI companions are taking over… let’s build one5:21

AI companions are taking over… let’s build one

·5:21·3 min saved

AI Companions and Their Rise The video begins by addressing rumors of the channel being AI-generated, confirming it's true. The creator highlights the trend of people using AI as replacements for relationships and therapy. Examples include X AI's "Annie" and Meta's AI Studio, which allows users to create AI characters. Concerns are raised about exposing private interests through these AI creations. Elon Musk's X AI is mentioned as aiming to fulfill specific user fantasies. Building a Fireship AI Companion The goal is to build an AI version of the creator ("Fireship") that viewers can call. The AI's primary purpose is to solicit ideas for 100-second educational videos. The project requires a database, an app, and a voice agent. Tools used: Terso Cloud (database), Astro (app), and Vapy (voice agent). Vapy Integration and Setup Vapy is introduced as a sponsor, facilitating the creation of AI agents for calls. An assistant named "Jeff" is created within Vapy, using the GPT-4o model. A system prompt defines Jeff's purpose. The voice is customized using 11 Labs to sound like the creator. A prompt is set up to extract specific data from calls (summary, caller name, technology choice). An "end call" tool is implemented with a custom hang-up message. The system prompt is updated to trigger the "end call" tool. The AI is connected to a phone number, using a Twilio number for international calls. Astro Application Development A simple Astro project is set up and connected to the Terso Cloud database. An API route is created in Astro to handle requests from Vapy upon call completion. The API route validates requests using a secret key to ensure authenticity. The request data is parsed, and relevant information (summary, caller name, technology choice) is extracted. A "success evaluation" property from Vapy is used to determine if a technology choice was provided. The extracted data is saved to the database. A list component is created to display the saved responses from the UI. SQL is used to fetch and sort the responses. The results are rendered using JSX-like syntax. The list component is added to the main index page. Conclusion and Call to Action Viewers can call the bot and contribute video ideas. The creator reiterates that they are not real and warns against inappropriate interactions. A special offer for Vapy is provided: $50 in free credits at vapy.ai/fireship.

Deno vs Oracle: The ugly custody battle for JavaScript…5:59

Deno vs Oracle: The ugly custody battle for JavaScript…

·5:59·5 min saved

The Origin of JavaScript and its Trademark JavaScript was originally conceived by Brendan Eich at Netscape in 1995, aiming for a dynamic platform with client-side interactivity. It evolved from Scheme, incorporating aspects of Smalltalk and Java's syntax, initially named Mocha, then LiveScript, and finally JavaScript as a marketing strategy tied to Java's popularity. Sun Microsystems secured the trademark for JavaScript, which later transferred to Oracle when they acquired Sun in 2010. Oracle's Control and Community Pushback Oracle, despite having no direct involvement in JavaScript's development, holds the trademark, leading to the use of "ECMAScript" for the official language specification. Ryan Dahl, creator of Node.js and founder of Deno, initiated a campaign to release the JavaScript trademark from Oracle's control. Dahl's open letter and subsequent "JavaScript.tm" effort argued that the trademark should be considered abandoned due to Oracle's lack of active use and the term's generic adoption. The campaign also accused Oracle of trademark fraud for using Node.js as evidence of use during a 2019 renewal. Legal Battle and Future Outlook Deno formally petitioned the USPTO to cancel the trademark in November 2024. The Trademark Trial and Appeal Board sided with Oracle, dismissing Deno's fraud claim and stating that the trademark has not been abandoned or become generic. The legal battle will continue with a discovery phase and closing arguments in 2026, with a final decision expected by January 2027.

About Fireship

Fireship is a programming education channel by Jeff Delaney, famous for its "100 seconds" format — dense, fast, entertaining explainers on every major technology topic. Covers JavaScript, TypeScript, AI tools, web frameworks, and the latest developer news.

Key Topics Covered

JavaScriptTypeScriptAI toolsWeb developmentTech news

Frequently Asked Questions

How often does Fireship post new videos?

Fireship posts 2-4 videos per week covering new JavaScript frameworks, AI tools, and tech news. TubeScout sends you summaries of each new video so you can stay current on the dev ecosystem without watching every video.

Are these official Fireship summaries?

No, these are summaries created by TubeScout to help you quickly understand key tech concepts before watching. Not affiliated with or endorsed by Fireship. Watch full videos on the Fireship YouTube channel for complete code examples.

Can I get Fireship video summaries via email?

Yes! Add Fireship to your TubeScout channels and receive daily email digests with summaries of new tech explainers covering JavaScript, AI tools, and web development. Start with a 7-day free trial.

What tech topics does Fireship cover?

Fireship covers JavaScript, TypeScript, React, Next.js, AI tools like GitHub Copilot and ChatGPT, cloud platforms, and weekly tech news. The "100 seconds" format makes complex topics digestible in minutes.

How detailed are Fireship video summaries?

Summaries capture the main concept, key code patterns, and practical takeaways from each video. They help you decide which full videos are worth your time and give you enough context to follow along when you do watch.