#484 – Dan Houser: GTA, Red Dead Redemption, Rockstar, Absurd Future of Gaming
Dan Houser is co-founder of Rockstar Games and is a legendary creative mind behind Grand Theft Auto (GTA) and Red Dead Redemption series of video games. Thank you for listening ❤ Check out our sponsors: https://lexfridman.com/sponsors/ep484-sc See below for timestamps, transcript, and to give feedback, submit questions, contact Lex, etc. Transcript: https://lexfridman.com/dan-houser-transcript CONTACT LEX: Feedback give feedback to Lex: https://lexfridman.com/survey AMA submit questions, videos or call-in: https://lexfridman.com/ama Hiring join our team: https://lexfridman.com/hiring Other other ways to get in touch: https://lexfridman.com/contact EPISODE LINKS: Absurd Adventures: https://absurdventures.com A Better Paradise: https://www.amazon.com/exec/obidos/ASIN/B0FCYSK8VD American Cape
Podcast: Play in new window | Download
Subscribe: Spotify | TuneIn | RSS
Dan Houser is co-founder of Rockstar Games and is a legendary creative mind behind Grand Theft Auto (GTA) and Red Dead Redemption series of video games. Thank you for listening ❤ Check out our sponsors: https://lexfridman.com/sponsors/ep484-sc See below for timestamps, transcript, and to give feedback, submit questions, contact Lex, etc.
Transcript: https://lexfridman.com/dan-houser-transcript
CONTACT LEX: Feedback – give feedback to Lex: https://lexfridman.com/survey AMA – submit questions, videos or call-in: https://lexfridman.com/ama Hiring – join our team: https://lexfridman.com/hiring Other – other ways to get in touch: https://lexfridman.com/contact
EPISODE LINKS: Absurd Adventures: https://absurdventures.com A Better Paradise: https://www.amazon.com/exec/obidos/ASIN/B0FCYSK8VD American Caper: https://absurdventures.com/americancaper
SPONSORS: To support this podcast, check out our sponsors & get discounts: Box: Intelligent content management platform. Go to https://box.com/ai UPLIFT Desk: Standing desks and office ergonomics. Go to https://upliftdesk.com/lex CodeRabbit: AI-powered code reviews. Go to https://coderabbit.ai/lex Miro: Online collaborative whiteboard platform. Go to https://miro.com/ Lindy: No-code AI agent builder. Go to https://go.lindy.ai/lex Shopify: Sell stuff online. Go to https://shopify.com/lex LMNT: Zero-sugar electrolyte drink mix. Go to https://drinkLMNT.com/lex
OUTLINE: (00:00) – Introduction (01:29) – Sponsors, Comments, and Reflections (11:32) – Greatest films of all time (23:45) – Making video games (26:36) – GTA 3 (29:55) – Open world video games (32:42) – Character creation (36:09) – Superintelligent AI in A Better Paradise (45:21) – Can LLMs write video games? (49:41) – Creating GTA 4 and GTA 5 (1:01:16) – Hard work and Rockstar’s culture of excellence (1:04:56) – GTA 6 (1:21:46) – Red Dead Redemption 2 (2:01:39) – DLCs for GTA and Red Dead Redemption (2:07:58) – Leaving Rockstar Games (2:17:22) – Greatest game of all time (2:22:10) – Life lessons from father (2:24:29) – Mortality (2:41:47) – Advice for young people (2:47:49) – Future of video games
PODCAST LINKS: – Podcast Website: https://lexfridman.com/podcast – Apple Podcasts: https://apple.co/2lwqZIr – Spotify: https://spoti.fi/2nEwCF8 – RSS: https://lexfridman.com/feed/podcast/ – Podcast Playlist: https://www.youtube.com/playlist?list=PLrAXtmErZgOdP_8GztsuKi9nrraNbKKp4 – Clips Channel: https://www.youtube.com/lexclips
Lex Fridman Podcast
https://lexfridman.com/dan-houser/?utm_source=rss utm_medium=rss utm_campaign=dan-houserSign in to highlight and annotate this article

Conversation starters
Daily AI Digest
Get the top 5 AI stories delivered to your inbox every morning.
More about
platformventurereview
A Network Formation Game for Katz Centrality Maximization: A Resource Allocation Perspective
arXiv:2604.03056v1 Announce Type: cross Abstract: In this paper, we study a network formation game in which agents seek to maximize their influence by allocating constrained resources to choose connections with other agents. In particular, we use Katz centrality to model agents' influence in the network. Allocations are restricted to neighbors in a given unweighted network encoding topological constraints. The allocations by an agent correspond to the weights of its outgoing edges. Such allocation by all agents thereby induces a network. This models a strategic-form game in which agents' utilities are given by their Katz centralities. We characterize the Nash equilibrium networks of this game and analyze their properties. We propose a sequential best-response dynamics (BRD) to model the ne
Knowledge Map
Connected Articles — Knowledge Graph
This article is connected to other articles through shared AI topics and tags.
More in Products

Multi-agent Reinforcement Learning-based Joint Design of Low-Carbon P2P Market and Bidding Strategy in Microgrids
arXiv:2604.02728v1 Announce Type: new Abstract: The challenges of the uncertainties in renewable energy generation and the instability of the real-time market limit the effective utilization of clean energy in microgrid communities. Existing peer-to-peer (P2P) and microgrid coordination approaches typically rely on certain centralized optimization or restrictive coordination rules which are difficult to be implemented in real-life applications. To address the challenge, we propose an intraday P2P trading framework that allows self-interested microgrids to pursue their economic benefits, while allowing the market operator to maximize the social welfare, namely the low carbon emission objective, of the entire community. Specifically, the decision-making processes of the microgrids are formul

How to Sync Design Tokens Between React and Flutter (Without Losing Your Mind)
Style Dictionary's Flutter support has been broken for years. I built tokensync — a CLI that generates CSS and Flutter ThemeData from one tokens.json file, then verifies they match numerically. Your designer just updated the brand color. You open your CSS file. Update --color-brand-500 . Then you open your Flutter file. Update AppTheme._lightColors.primary . Then you grep for anywhere else it might appear. Then you do the same for dark mode. Then you hope you got them all. Three weeks later a designer screenshots both apps side by side. The web button is #5C6BC0 . The mobile button is #5B6BC0 . Off by one digit. Nobody noticed. It shipped. If you maintain both a React web app and a Flutter mobile app, this is a design token sync problem — and it costs teams 6–20 hours every time tokens cha

Python Tracebacks in Claude Code? Hide the Framework Frames
A Django traceback for a simple TemplateDoesNotExist error is 40+ lines. 35 of those lines are Django internals — django/template/loader.py , django/core/handlers/base.py , django/middleware/common.py . Your AI doesn't need to read Django's source to fix your missing template path. But it does, every time. Before: Django Traceback Traceback ( most recent call last ): File " /usr/lib/python3/django/core/handlers/exception.py " , line 47 , in inner response = get_response ( request ) File " /usr/lib/python3/django/core/handlers/base.py " , line 181 , in _get_response response = wrapped_callback ( request , * callback_args , ** callback_kwargs ) File " /usr/lib/python3/django/core/handlers/base.py " , line 217 , in _get_response response = self . process_exception_by_middleware ( e , request




Discussion
Sign in to join the discussion
No comments yet — be the first to share your thoughts!