Chronological feed of everything captured from Garry Tan.
Resend Robot offers a development tool for Ruby on Rails applications that intercepts Resend API calls, stores emails as JSON, and provides a web UI for browsing, previewing, and simulating replies. This enables developers to test email functionalities thoroughly without sending actual emails, ensuring consistent behavior between development and production environments. The tool also integrates with Claude AI for conversational interaction with the development mailbox and provides robust testing utilities.
Garry Tan's "Mega Plan Review" is a comprehensive framework for rigorously evaluating software development plans. It emphasizes three core modes: SCOPE EXPANSION, HOLD SCOPE, and SCOPE REDUCTION, each with distinct objectives. The framework includes a pre-review system audit, a "Step 0" for challenging premises and selecting a review mode, and ten detailed sections covering architecture, error handling, security, testing, performance, observability, and long-term implications. It mandates detailed documentation, explicit error mapping, and a strong bias towards preventing silent failures and ensuring robust, maintainable systems.
This content explores the critical role of resilience, well-being, and self-awareness for entrepreneurial success, moving beyond traditional hustle culture. It examines how early life experiences and internal "bugs" can impact founder effectiveness and offers practical advice on building support systems, leveraging AI for self-improvement, and understanding motivation beyond extrinsic factors. The synthesis emphasizes that personal well-being is not a luxury but a foundational requirement for sustained achievement in the demanding startup environment.
Many high-profile individuals, despite achieving immense financial and professional success, succumb to personal ruin due to an overreliance on conventional metrics like money and fame. True fulfillment and sustained well-being stem from intentionally redefining personal "games" to prioritize intrinsic values, such as craft, generosity, and strong personal relationships, rather than external validation or material wealth. Neglecting this leads to burnout, moral compromises, and a disconnect from purpose.
This document outlines a comprehensive and opinionated framework for reviewing engineering plans. It emphasizes challenging scope, assessing architectural and code quality, ensuring thorough testing, and evaluating performance. The framework prioritizes explicit recommendations, trade-off analysis, and iterative user feedback to optimize engineering outcomes.
Y Combinator (YC) is actively combating California's increasingly hostile policies towards the tech industry, such as the proposed 'billionaire tax' and increased gross receipts tax, which have driven businesses and capital out of the state. YC's president, Garry Tan, argues these policies threaten the Golden State's role as a global tech leader. Concurrently, YC is refining its accelerator program, re-emphasizing in-person collaboration, and pushing a 'founder mode' mentality, inspired by leaders like Airbnb's Brian Chesky, to foster resilience and rapid iteration among startups. This strategy aims to increase YC's success rate and ensure founders are equipped to navigate challenges beyond just securing funding, despite facing a high volume of rejections that underscore the intense competition and resilience required in the startup world.
Gary Tan, CEO of Y Combinator, discusses the critical role of the tech community in San Francisco's political and social revival. He highlights the impact of engagement in local politics on issues like public safety, education, and housing, advocating for a more integrated tech presence within the city's broader community to foster widespread prosperity.
The novel "The Veil" offers a narrative framework to explore entrepreneurial realities within a fictional context. It delves into the cyclical nature of startup failure, the importance of intellectual property protection, and the critical role of ethical considerations in AI development. The story also highlights how fictional narratives can make complex technological concepts accessible to a broader audience, demonstrating the evolving landscape of AI comprehension.
Garry Tan uses Jiro Ono's sushi mastery as a framework for startup product craft, arguing that compounding micro-improvements — not marketing — is the primary driver of perceived quality and durable competitive advantage. The "Pull, Play, Outlast" model maps customer urgency, founder flow state, and sustained commitment as the three necessary conditions for building something transcendent. Zero-bug discipline (per Carmack and Gates-era Microsoft) is positioned as a structural prerequisite, not a nice-to-have. The core thesis: fusing intrinsic motivation with externally painful problems creates a self-reinforcing loop where compounding does the competitive heavy lifting.
Garry Tan argues that a founder's unexamined psychology — particularly Jung's concept of the "shadow" and its positive counterpart, the "golden shadow" — is an underweighted variable in startup outcomes. Suppressed strengths (the golden shadow) manifest as imposter syndrome, conflict avoidance, and deferred leadership, quietly degrading decision quality and team dynamics. Tan's own failure to claim a CEO-level leadership identity at Posterous contributed to the company's stagnation and eventual acqui-hire by Twitter. He posits that systematic inner work — therapy, coaching, and deliberate practice of admired traits — is a strategic lever, not a soft-skills afterthought.
A CoffeeScript React class component uses a HistoryJSMixin to manage browser history. The search method triggers an asynchronous index search, and upon receiving results matching the current state, updates the component state with search hits while invoking saveState to persist the search via a URL like '/foo?bar=foo'. This enables bookmarkable, shareable search states without page reloads.
Garry Tan adapts Leif Denby's HistoryJSMixin to sync React state changes with browser history via pushState, ensuring URLs are durable and shareable. Key modification passes explicit URLs to History API calls on lines 57 and 61. Enables faceted search (e.g., Algolia) and pagination without React Router overhead.
LazyGenerate is a Ruby module that extends ActiveRecord classes to define lazily generated properties. Accessing an unset property invokes a user-specified generator method, assigns the result, auto-saves the record, and returns the value. Existing values bypass generation, enabling efficient deferred computation with persistence guarantees.
This leaked email header from August 9, 2010, shows Sachin Agarwal, a Posterous employee, testing an email from his sachin@posterous-inc.com account to the company's press@ list. Headers expose his originating IP as 24.5.83.171 from a Comcast residential connection (c-24-5-83-171.hsd1.ca.comcast.net). Processing routed through Google mail servers with neutral SPF authentication, indicating early cloud email reliance at Posterous.
A Ruby on Rails application running under Passenger 2.2.7 crashes during a post destroy operation. The failure originates in the Post model's delete_meta_data callback at line 234, which invokes MongoDB's collection.remove via mongodb-mongo gem 0.14.1. The stack reveals deep transaction handling with plugins like seamless_database_pool and deadlock_retry, terminating in Passenger's spawn server process.