SShortSingh.
Back to feed

Developer scrutinizes YC CEO Garry Tan's claim of shipping 37K lines of AI code daily

0
·2 views

Y Combinator CEO Garry Tan claimed on social media that he ships approximately 37,000 lines of code per day using agentic AI tools. A developer decided to investigate the claim more closely, examining what the figure actually represents. The story was reported by Fast Company and sparked discussion in the tech community on Hacker News. The incident raises broader questions about how AI-assisted coding metrics are measured and communicated publicly.

Read the full story at Hacker News

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

WeTool Offers 15 Browser-Based Dev Utilities With No Login or Data Upload

A developer has shared WeTool, a free browser-based platform offering 15 commonly used development utilities including a JSON formatter, JWT parser, regex tester, and SQL formatter. The tool requires no login and processes everything locally in the browser, meaning no data is sent to any backend server. Users can verify this themselves by checking the Network tab in their browser's DevTools. The platform supports 15 languages, setting it apart from most similar toolboxes that are English-only. WeTool is available at wetool.site and is actively being updated with additional tools.

0
ProgrammingDEV Community ·

How one helpdesk team tackled AI-powered support ticket deduplication

A team building an internal helpdesk identified duplicate support tickets as their users' top pain point, with a single incident routinely generating multiple unrelated-looking reports across chat, email, and error trackers. Simple keyword-matching failed because related tickets like 'login is broken' and a TokenExpiredError share no common words, while embedding-based clustering risked confidently merging unrelated issues. The team also ruled out vector-clustering pipelines due to concerns about precision, particularly the costly risk of incorrectly merging distinct incidents. Their eventual solution was a deliberately minimal approach using a low-temperature AI triage model that compares each new ticket against a short list of open tickets, with optional code context for disambiguation. The team acknowledged the problem remains only partly solved and openly invited feedback from others who have tackled similar deduplication challenges.

0
ProgrammingDEV Community ·

Why State Colocation Should Drive Frontend Architecture Decisions

A frontend architecture principle argues that application state should always live as close as possible to the components that consume it. In most codebases, state is defaulted to a global store regardless of whether it needs to be globally accessible. The correct approach distinguishes between component-level state, subtree-scoped context, and genuinely global state. Global stores should be reserved only for truly cross-cutting concerns such as authentication, locale, and theme. Treating state colocation as an architectural rule rather than a stylistic preference can significantly improve code clarity and maintainability.

0
ProgrammingDEV Community ·

AbortController: The Browser Tool That Prevents React Async Race Conditions

Frontend apps frequently suffer a hidden bug where outdated network requests resolve after newer ones, silently overwriting correct data with stale results — a classic race condition. AbortController, a browser-native API supported by all major browsers since 2018, provides a straightforward fix by allowing in-flight fetch requests to be cancelled on demand. In React, pairing AbortController with useEffect's cleanup function ensures that whenever a component unmounts or a dependency changes, any pending request is immediately aborted before it can update state. The implementation requires just three steps: creating a controller instance, passing its signal to the fetch call, and returning an abort call as the effect's cleanup. Failing to filter out the resulting AbortError is the most common mistake, as unhandled cancellations bubble up to error boundaries and trigger false failure alerts on every unmount.