absorb.md

Garry Tan

Chronological feed of everything captured from Garry Tan.

Gobble Achieves Profitability and Growth Amidst Market Downturn

Ooshma Garg's meal kit company, Gobble, achieved significant profitability and doubled its business in a quarter, defying the negative market sentiment following a competitor's underperforming IPO. This success is attributed to a strategic pivot from a marketplace model to a centralized kitchen for quality control, focus on proprietary and convenient recipes, and ultimately, a decision to prioritize profitability over unsustainable growth when external funding became challenging. The company's strong customer retention, validated by an un-diluted 'Series C' generated through free cash flow, demonstrates the long-term value of its product.

Effective Leadership Through Delegation

Micromanagement is toxic and demotivating; effective delegation is crucial for leadership. It frees up a leader's time and empowers direct reports. Leaders should act as "conductors" to guide their teams to greatness, rather than dictating every step.

Stochastic Computing for Post-Moore's Law AI

Ex-Tropic is developing a physics-based computing paradigm for AI, addressing the approaching "Moore's Wall" where traditional transistor scaling is becoming unreliable due to thermal fluctuations at the atomic level. Their approach leverages the inherent stochasticity of electron movement in specialized superconducting analog circuits, aiming to efficiently implement probabilistic machine learning algorithms. This method promises significant speedups over digital approximations of randomness, potentially enabling a new path for AI scalability beyond current GPU limitations.

Elite Disconnect: The Peril of Luxury Beliefs

This discussion with Rob Henderson explores the concept of "luxury beliefs" held by elites, which are often disconnected from the lived realities of most people and can lead to detrimental societal outcomes. Henderson, drawing on his experiences growing up in unstable environments and later attending Yale, highlights the disparity between elite perspectives and the struggles of working-class and marginalized communities. The conversation emphasizes how these beliefs can undermine essential societal functions, such as public safety and education, demonstrating a need for greater empathy and a re-evaluation of current approaches to social issues.

Crafting a "Reality Distortion Field" for Startup Success

Founders can proactively shape perception to rally support for their ventures, moving beyond traditional marketing by identifying key audiences and their motivations. This involves embracing calculated controversy to differentiate, and leveraging online social structures like group chats for rapid feedback and organic dissemination. The approach emphasizes building a movement around a narrative of innovation and progress, often by juxtaposing the current state with an ideal future, even if it entails reputational risk.

Immigrant Grit in Silicon Valley: Lessons from Arthy & Sriram

Arthy and Sriram, a "power couple" in Silicon Valley, share their journeys as immigrants who leveraged determination, technical skill, and strategic networking to achieve significant success in the tech industry. Their story underscores the importance of proactive engagement, continuous learning, and mentorship within the tech ecosystem, particularly for those from diverse backgrounds.

Jessica Livingston on Untapped Potential and the Founding of Y Combinator

Jessica Livingston, co-founder of Y Combinator, discusses her unconventional path to entrepreneurship, highlighting the importance of personal agency, a strong financial safety net, and a co-founder with complementary skills. Her varied professional background, including roles in finance and event planning, despite not being directly startup-related, ultimately provided her with the diverse skill set necessary to build the YC ecosystem. She emphasizes that ambition and determination are key for aspiring founders, regardless of their early-life trajectory.

U.S. Supreme Court Considers Homelessness Policy Shift: "Status" vs. "Conduct" in Landmark Cases

The U.S. Supreme Court is hearing cases that could redefine how cities address homelessness, specifically challenging rulings that currently prevent enforcement of anti-camping laws without sufficient shelter space. The core debate revolves around whether homelessness is a protected "status" or a "conduct" that can be regulated. A shift in interpretation could grant cities more flexibility but raises concerns about criminalizing vulnerable populations.

Lessons from Silicon Valley Veteran Investors on Thriving Amidst Tech Booms and Busts

This analysis distills insights from seasoned Silicon Valley investors, Elad Gil and Sarah Guo, on navigating the cyclical nature of the tech industry. It highlights the critical role of strong founder relationships, the strategic advantage of joining talent aggregators during downturns, and the evolving landscape of AI investment, emphasizing the ongoing transformation of workforces into AI-driven solutions.

Withco: Empowering Small Businesses through Property Ownership

Withco addresses the systemic issue of small business displacement due to rising rents and lack of ownership opportunities. Their lease-to-own model allows businesses to build equity over time, aligning incentives between the business owner and property owner. This approach mitigates the risks associated with traditional leasing and offers a path to long-term stability and community involvement.

Redefining SaaS Marketing and Financial Modeling with Runway

Runway is innovating B2B SaaS by applying consumer marketing strategies and sophisticated financial modeling. The company emphasizes a "tool for thought" approach, providing accessible and collaborative financial planning for businesses. Their strategy focuses on empowering all employees, not just finance professionals, to understand and influence business outcomes.

Beyond the LLM: Engineering Context and Empathy for Therapeutic AI

Rosebud leverages specialized prompt engineering and 'context-at-read' memory to transform LLMs from solution-engines into active-listening therapeutic tools. The core technical thesis is that competitive advantage in consumer AI stems from hyper-personalization and the curation of relevant context—rather than raw model scale—while managing the unit economic risks posed by extreme power users.

California Legislators Attempt to Coerce UC System into Accepting Substandard Math Courses

California is facing a legislative challenge with bills AB 1217 and AB500, which aim to compel the University of California (UC) system to accept diluted data science courses as equivalents to Algebra II for admissions. This move follows a previous reversal by UC faculty to accept such courses due to lack of rigor. The proposed legislation is seen as a bureaucratic overreach, fundamentally undermining rigorous STEM preparation and threatening the academic standards essential for future innovation and economic mobility.

Systemic Bias Against Asian-Americans in University Admissions

A lawsuit filed against the University of California system alleges racial discrimination against Asian-American applicants, citing the case of Stanley Zong, a highly qualified technical talent rejected by numerous UC campuses. This situation highlights a broader pattern of systemic bias, where Asian-American students are subjected to higher admission standards, despite California's ban on affirmative action. The lack of transparency and accountability from educational institutions, coupled with a history of similar legal challenges like SFFA v. Harvard, suggests a rigged system that disadvantages Asian-American applicants.

Steve Jobs' Entrepreneurial Blueprint: Three Unconventional Strategies for Startup Success

Steve Jobs' early career and the genesis of Apple reveal three non-traditional entrepreneurial strategies: building what one desperately desires, embracing a "maze" mindset toward setbacks, and cultivating diverse interests. These principles, demonstrated through the development of the "blue box," Apple I, and the evolution of NeXT, highlight a departure from conventional business wisdom, emphasizing passion-driven creation, adaptive problem-solving, and interdisciplinary thinking as foundations for disruptive innovation and long-term success.

Overcoming Scarcity Mindset in Entrepreneurship

Founders often sabotage opportunities by exhibiting neediness, which repels investors and partners. Success hinges on cultivating an abundance mindset through self-reliance, resilience, and genuine self-belief. This approach shifts leverage, attracting rather than chasing opportunities and ultimately leads to more favorable outcomes.

Billion To One: From Prenatal Diagnostics to the Holy Grail of Cancer Detection

Billion To One, a molecular diagnostics company, has commercialized a highly sensitive prenatal genetic test by developing a novel method to reduce noise in DNA amplification. This foundational technology, which involves adding synthetic DNA "spikes" to samples, allows for precise identification of rare DNA molecules from a vast background, facilitating the detection of fetal and tumor DNA in blood samples. They are leveraging this core technology to expand into late-stage cancer diagnostics and ultimately aim for early-stage cancer screening, a long-sought objective in medicine.

Custom Ruby String Class Escapes JSON < and > to Prevent Script-Exiting XSS

EscapableJsonString subclasses Ruby String to override to_json, using ActiveSupport's escaping for < and > to produce \u003C and \u003E, avoiding browser script tag termination. It targets ActiveSupport::JSON::Encoding.escape_regex matches and maps them via ESCAPED_CHARS. Multi-byte UTF-8 is converted to \uXXXX escapes, ensuring ASCII-8bit output compatible with JSON contexts.

Repetitive Ruby Code for Server-Side GitHub Gist Embedding Reveals Refactoring Need

This Ruby snippet processes blog post bodies without JavaScript by replacing embedded GitHub Gist script tags with static HTML content fetched from the Gist URL. It uses regex gsub to capture the Gist source URL, fetches and parses it with Hpricot selecting 'div.data', and extracts the HTML within a 5-second timeout using SystemTimer. On timeout or any error, it falls back to a simple link, logging the error; the entire block is redundantly copy-pasted multiple times, indicating poor code maintainability.

Early Web Dev Hack: Rails Snippet for IE6 Upgrade Nag with Cookie Persistence

This Ruby on Rails ERB snippet detects IE6 via user-agent, excluding IE7/8, and injects a dismissible warning banner urging users to upgrade browsers. The banner uses conditional comments for IE6 targeting, inline CSS for layout with promo images for Firefox 3.5, IE8, Safari 4, and Chrome, and JavaScript cookie handling to hide it for 7 days on dismiss. It leverages Prototype.js for DOM-ready event binding, reflecting 2009-era browser compatibility practices.

Founders Can Build Trust & Safety Teams for Online Platforms

Trust and Safety teams are crucial for online platforms to combat scams and ensure secure transactions. Businesses transitioning online must prioritize building robust Trust and Safety mechanisms. Berbix, co-founded by former Airbnb Trust and Safety leaders, offers identity verification solutions to help platforms build sybil resistance and thwart bad actors. Incorporating identity checks at key interaction points is a strong deterrent against fraudulent activities.

Bottom-Up Movement Building Through DIY Ethos

Movements, whether social, musical, or entrepreneurial, originate from individuals challenging existing norms and solving problems for themselves. This "Do It Yourself" (DIY) approach, characterized by authenticity over perfection, is critical for initial traction. Success hinges on attracting early followers who amplify the original idea, transforming a niche concept into a widespread phenomenon.

Three Catalysts for Startup Opportunity: Tech, Behavior, and Regulation

Startup opportunities arise from three primary catalysts: advancements in technology, shifts in societal behavior, and new government regulations. Identifying the "why now" behind a startup idea by understanding these forces is crucial for success. These catalysts can combine to create powerful market shifts, enabling products and services that were previously unviable.

Garry Tan Endorses an Unspecified "Good Idea"

Garry Tan, a prominent figure (likely in tech or venture capital, given the "X feed" context), has expressed a positive sentiment towards an unnamed "Good idea". Due to the brevity of the source, the specifics of this idea, its implications, or the reasoning behind Tan's endorsement remain entirely unknown, precluding any further analysis.

Garry Tan thanks for help

This post from Garry Tan is a thank you note. No further information is available beyond this, so the context of the thanks or the recipient is unknown. The brevity suggests a casual interaction on social media.

Emergence of GStack as a High-Performance Claude Skill

The GStack skill is currently identified as a top-tier capability for the Claude LLM. Preliminary user reports suggest significant performance gains or utility when utilizing this specific skill set.

AI Agents Enhance Security Audits, Human Oversight Remains Crucial

AI-powered security tools, specifically Sqry's code graph and large language models (LLMs), can identify numerous security vulnerabilities in open-source projects. While effective for initial detection and foundational checks, these automated methods do not fully replace comprehensive human penetration testing. The integration of such tools into developer workflows can significantly improve security posture by making audits more accessible and frequent.

Garry Tan's "Many such cases" implies frequent occurrences

This post from Garry Tan, "Many such cases," without further context, suggests a recurring phenomenon or trend within a domain known to his audience. The brevity indicates a shared understanding of the situation being referenced, likely among those familiar with his prior commentary or the specific community he addresses. It functions as a concise, insider observation rather than a detailed explanation.

gstack: Orchestrating AI Agents into a High-Throughput Software Factory

gstack is an open-source framework that overlays a structured software development lifecycle (SDLC) onto AI coding agents, specifically Claude Code and others. By replacing generic prompting with specialized roles (e.g., /cso for security, /qa for testing) and a stateful pipeline, it enables massive increases in LOC throughput and reduces 'AI slop' through rigorous, multi-stage review gates. The system integrates advanced capabilities like headless browser control, cross-model verification via OpenAI Codex, and parallel session management.

Uneven Distribution of AGI

Marc Andreessen posits that Artificial General Intelligence (AGI) is currently in existence but its distribution across various sectors and applications is not uniform. This suggests a phase where advanced AI capabilities are present but not yet universally accessible or recognized, implying a nascent stage of integration rather than a total absence of the technology.

Programming: A Resurgent and Evolving Field

Programming is experiencing a period of significant vitality and growth. This resurgence is characterized by continuous innovation and expanding applications, making the field more dynamic and engaging than in previous eras.

System Purpose and Public Good

Garry Tan asserts a direct relationship between a system's purpose and its actual outcomes. He posits that if a system's outcome does not serve the public good, it constitutes fraud. This framework suggests an ethical imperative for system design and evaluation, linking functionality directly to societal benefit.

AI Automates Job Search with Open-Source Tool

An open-source AI system built for Claude Code successfully processed over 700 job applications, leading to a job offer. This system automates critical job search tasks, including scanning career pages, tailoring CVs for specific roles, and completing application forms. Its modular design and pre-configured company listings demonstrate its practical applicability for technical job seekers.

Political Barriers Hinder Autonomous Vehicle Deployment

The deployment of autonomous vehicles, specifically Waymo in San Francisco, faces significant political obstacles despite technical readiness. The inability for Waymo to perform basic rideshare functions like curbside drop-off and pickup at major transportation hubs points to regulatory and political friction rather than technological limitations. This suggests that the advancement of AV integration into urban infrastructure is currently more constrained by governance than by engineering.

Garry Tan leverages GStack and OpenClaw for AI-driven viral post detection

Garry Tan is utilizing a combination of GStack and OpenClaw to enhance his AI, Wintermute. This integration has enabled the rapid development of an early warning system for potentially viral posts on the X platform, demonstrating a quick turnaround from AI development to practical application.

Just-in-Time Software Development Achieved with AI

AI-powered platforms are enabling just-in-time software development, drastically reducing project timelines. This advancement is exemplified by a project that traditionally required weeks being completed in minutes through a single command, leveraging integrated AI context and code generation capabilities. This marks a significant shift in software engineering paradigms.

GStack Browse: High-Performance, Open-Source AI Browser for Developers

GStack Browse is a new AI-powered browser designed for developers, offering a significantly faster alternative to existing AI browsers. It integrates with Claude Code for interactive navigation and operations, supporting use cases like page debugging and CSS interaction. The project is open-source and leverages a Playwright CLI for its performance.

AI tools can optimize website performance given specific instructions

AI, when directed with clear optimization goals, can significantly improve web performance metrics. This is exemplified by the improvement of "Garry's List" page speed to a 95. The key is to provide AI with specific targets and allow it to manage the optimization process.

GStack Enables Seamless Integration of GitHub Repos as OpenClaw Skills

GStack facilitates immediate integration of GitHub repositories as native OpenClaw skills, even without explicit OpenClaw support. This allows developers to leverage existing code in OpenClaw without modification, streamlining skill development and deployment. The system automatically interprets the skill file within the pointed GitHub repository.

The Drama Triangle in Organizational Dynamics

Garry Tan highlights the destructive nature of the "drama triangle" in organizational behavior. He argues that an inability to confront issues directly leads to triangulation, involving a third party unnecessarily, which ultimately corrodes company culture. This dynamic prevents transparent communication and problem-solving, fostering an environment of indirectness and organizational decay.

Garry Tan calls out "dishonest" content on X

Garry Tan, a prominent figure, has publicly labeled content on the X platform as "dishonest." This direct critique suggests a potential concern regarding misinformation or manipulative content within the platform's ecosystem. The statement, while brief, highlights a noteworthy stance from an influential voice.

Garry Tan Shifting Focus to Code Refactoring and New Projects

Garry Tan is entering a "honing phase" for GStack, indicating a focus on refactoring and reducing code bloat. Concurrently, he is also initiating work on new, unspecified projects. This suggests a strategic reallocation of development resources towards optimization and innovation.

Garry Tan's Performance as a Founder

This post, while brief, indicates that Garry Tan is performing exceptionally well as a founder, purportedly outperforming 99.9% of his peers. The core insight is about his high performance relative to other founders.

Agentic Engineering Achieves Extreme LOC Output, Sparks Productivity Debate

Garry Tan reports generating 37,000 lines of code (LOC) daily across five projects using "agentic engineering," a process he claims significantly boosts productivity by leveraging AI to autonomously generate code from commands. This approach contrasts with traditional software development metrics that favor minimal, maintainable code. The debate centers on whether raw LOC output remains a valid productivity indicator in an AI-driven development paradigm where code generation is highly automated and focused on rapid capability delivery.

GStack and Pretext enable high-speed HTML design iteration via AI

GStack, an open-source AI framework, now integrates with Pretext, an AI skill, to facilitate rapid, AI-driven HTML design. This integration allows users to quickly generate and iterate on responsive HTML designs through simple commands within a Claude Code environment. The creator claims a significant personal productivity boost, suggesting the framework fosters efficient software development.

Garry Tan Introduces GStack: An AI-Powered Software Development Platform for Rapid Prototyping

GStack is described as a versatile AI agent designed to streamline software development. It functions as an entire development team, offering roles from UX design to release engineering, enabling users to build and ship software rapidly. The core value proposition is its ability to facilitate the creation of functional software from an idea within an hour.

Car Theft Rises After Richmond Disables Flock Cameras, Immigrant Community Advocates for Reinstatement

Richmond experienced a significant increase in car thefts following the deactivation of Flock cameras, a decision initially made to protect immigrants. The immigrant shopkeeping community, disproportionately affected by the rise in crime, actively lobbied for the cameras' return. The city council ultimately reversed its decision, highlighting the practical need for security measures over ideological opposition in the face of demonstrable negative consequences.

Civility Amidst Disagreement in San Francisco Politics

Garry Tan, a prominent figure, expresses well wishes for Jackie Fielder, a political opponent, highlighting the importance of community and civility despite political differences. This demonstrates a call for respectful engagement within the San Francisco political landscape, prioritizing human well-being over ideological divides. The sentiment suggests a potential for bridging divides by acknowledging shared community values.

San Francisco Prefers Command Line Interfaces Over Menu-Controlled Programs

A street-level poll in San Francisco indicates a strong preference for Command Line Interfaces (CLI) over Menu-Controlled Programs (MCP), particularly among younger demographics. This sentiment aligns with efficiency-focused development trends, with MCPs being criticized for their perceived bloat. The findings informed Composio's decision to launch a universal CLI.

Older entries →