<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Hacker News: exhaze</title><link>https://news.ycombinator.com/user?id=exhaze</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 13 Jun 2026 12:51:55 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=exhaze" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by exhaze in "Claude Code – Everything you can configure that the docs don't tell you"]]></title><description><![CDATA[
<p>Claude Code’s feature cardinality is breathtaking. At this rate, the next pope will be from Anthropic</p>
]]></description><pubDate>Fri, 29 May 2026 09:30:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=48320949</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=48320949</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48320949</guid></item><item><title><![CDATA[New comment by exhaze in "How to talk to anyone and why you should"]]></title><description><![CDATA[
<p>> I highly recommend talking to strangers! People are lovely. Go out and try it.<p>I’ve been here since 2009 and this is one of the loveliest comments I’ve read.<p>At face value, it may seem ‘duh!’.. but there’s a distinct aesthetic to it that resonated with me.<p>Perhaps the best analogy I can think of is Asimov’s philosophy about writing.<p>‘I want the reader to forget they are reading as if my thoughts are being transmitted directly from my brain into theirs’ [sic]<p>Recently, a research publication demonstrated that an LLM.. nah, not today. Sometimes knowing the underlying theory and deciding to disengage from it and just appreciate the moment is fine.<p>Because I can go outside my apartment here in Tokyo right now and try it. I already do, but each of us has our own unique loveliness. So I’ll keep trying. Just because.</p>
]]></description><pubDate>Mon, 02 Mar 2026 15:22:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47219114</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=47219114</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47219114</guid></item><item><title><![CDATA[New comment by exhaze in "Valdi – A cross-platform UI framework that delivers native performance"]]></title><description><![CDATA[
<p>Push notifications and mental real estate by being “an app” are the primary business reason (based on both statsig experiments I’ve seen across my career as well as some intuition about behavioral psychology regarding the app mental real estate bit).</p>
]]></description><pubDate>Sat, 08 Nov 2025 16:46:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=45858034</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=45858034</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45858034</guid></item><item><title><![CDATA[New comment by exhaze in "Modern Node.js Patterns"]]></title><description><![CDATA[
<p>There are a few ways, but I believe SSOT (single source of truth) is key, as others basically said. Some ways:<p>1. Shared TypeScript types<p>2. tRPC/ts-rest style: Automagic client w/ compile+runtime type safety<p>3. RTK (redux toolkit) query style: codegen'd frontend client<p>I personally I prefer #3 for its explicitness - you can actually review the code it generates for a new/changed endpoint. It does come w/ downside of more code + as codebase gets larger you start to need a cache to not regenerate the entire API every little change.<p>Overall, I find the explicit approach to be worth it, because, in my experience,  it saves days/weeks of eng hours later on in large production codebases in terms of not chasing down server/client validation quirks.</p>
]]></description><pubDate>Mon, 04 Aug 2025 03:05:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=44781783</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=44781783</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44781783</guid></item><item><title><![CDATA[New comment by exhaze in "Modern Node.js Patterns"]]></title><description><![CDATA[
<p>Tangential, but thought I'd share since validation and API calls go hand-in-hand: I'm personally a fan of using `ts-rest` for the entire stack since it's the leanest of all the compile + runtime zod/json schema-based validation sets of libraries out there. It lets you plug in whatever HTTP client you want (personally, I use bun, or fastify in a node env). The added overhead is totally worth it (for me, anyway) for shifting basically all type safety correctness to compile time.<p>Curious what other folks think and if there are any other options? I feel like I've searched pretty exhaustively, and it's the only one I found that was both lightweight and had robust enough type safety.</p>
]]></description><pubDate>Sun, 03 Aug 2025 21:54:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=44780167</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=44780167</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44780167</guid></item><item><title><![CDATA[New comment by exhaze in "The special hell of Bolt, Europe's Uber clone"]]></title><description><![CDATA[
<p>Back in 2015ish Uber we liked to emphasize everyone building at the company to never forget about the long tail [distribution].<p>When your N crosses gets above N per day, even the 0.1% edge cases happen several days times a day. When this has real world implications, even a single instance can matter a lot.</p>
]]></description><pubDate>Mon, 21 Jul 2025 21:24:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=44640580</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=44640580</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44640580</guid></item><item><title><![CDATA[New comment by exhaze in "Show HN: Localize React apps without rewriting code"]]></title><description><![CDATA[
<p>Cool project! I built a similar tool [0] last year, but:<p>1. Targeting fbt (Meta's internal i18n tool)<p>2. Used CST (<3 ast-grep) instead of AST - really useful here IMO esp. for any heuristic-based checks.<p>3. Fun fact: this was made entirely on my phone (~2.5h) while I was walking around Tokyo. Voice prompting + o1-pro. Why? My friend was working on porting fbt to TS and said he was planning to build this. I wanted to one-up him + convince him to start using LLMs =)<p>One thing you should be aware of is that for at least Japanese, localization is far from just translating the text. There are lots and lots of Japan-specific cultural nuances you have to take into account for web users and even down to actually just having an entirely different design for your landing page often because those you'll find those just convert better when you know certain things are done that are typically not done for you know non-Japan websites.<p>Notta (multi-lingual meeting transcriptions + reports) is a great example if you compare their Japanese [1] and English [2] landing pages.<p>Note how drastically different the landing pages are. Furthermore, even linguistically, Japanese remains a challenge for proper context-dependent interpretation. Gemini 2.5 actually likely performs best for this thanks to Shane Gu [3], who's put in tons of work into having it perform well for Japanese (as well as other "tough" languages)<p>[0] <a href="https://github.com/f8n-ai/fbtee-migrate">https://github.com/f8n-ai/fbtee-migrate</a><p>[1] <a href="https://www.notta.ai" rel="nofollow">https://www.notta.ai</a> (Japanese version)<p>[2] <a href="https://www.notta.ai/en" rel="nofollow">https://www.notta.ai/en</a> (English version)<p>[3] <a href="https://x.com/shaneguML" rel="nofollow">https://x.com/shaneguML</a></p>
]]></description><pubDate>Tue, 03 Jun 2025 21:00:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=44174667</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=44174667</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44174667</guid></item><item><title><![CDATA[New comment by exhaze in "As an experienced LLM user, I don't use generative LLMs often"]]></title><description><![CDATA[
<p>Food for thought, a snippet from a highly specialized project I created two months ago:<p><a href="https://gist.github.com/eugene-yaroslavtsev/c9ce9ba66a7141c5c95b4d0416d643cd" rel="nofollow">https://gist.github.com/eugene-yaroslavtsev/c9ce9ba66a7141c5...</a><p>I spent several hours searching online for existing solutions - couldn't find anything (even when exploring the idea of stitching together multiple different tools, each in a different programming language).<p>This took me ~3-4 hours end-to-end. I haven't seen any other OSS code that is able to handle converting unstructured JSON into normalized, structured JSON with a schema, while also using a statistical sampling sliding window method for handling for all these:<p>- speculative SIMD prediction of end of current JSON entry
- distinguishing whether two "similar" looking objects represent the same model or not
- normalizing entities based on how often they're referenced
- ~5-6 GB/s throughput on a Macbook M4 Max 24GB
- arbitrary horizontal scaling (though shared entity/normalization resource contention may eventually become an issue)<p>I didn't write this code. I didn't even come up with all of these ideas in this implementation. I initially just thought "2NF"/"BNF" probably good, right? Not for multi-TB files.<p>This was spec'd out by chatting with Sonnet for ~1.5 hours. It was the one that suggested statistical normalization. It suggested using several approaches for determining whether two objects are the same schema (that + normalization were where most of the complexity decided to live).<p>I did this all on my phone. With my voice.<p>I hope more folks realize this is possible. I strongly encourage you and others reconsider this assumption!</p>
]]></description><pubDate>Tue, 06 May 2025 07:16:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=43902537</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=43902537</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43902537</guid></item><item><title><![CDATA[New comment by exhaze in "Claude can now search the web"]]></title><description><![CDATA[
<p>Cite things from ID based specs. You’re facing a skill issue. The reason most people don’t see it as such is because an LLM doesn’t just “fail to run” here. If this was code you wrote in a compiled language, would you post and say the language infuriates you because it won’t compile your syntax errors? As this kind of dev style becomes prevalent and output expectation adjust, work performance review won’t care that you’re mad. So my advice is:<p>1. Treat it like regular software dev where you define tasks with ID prefixes for everything, acceptance criteria, exceptions. Ask LLM to reference them in code right before impl code<p>2. “Debug” by asking the LLM to self reflect on its decision making process that caused the issue - this can give you useful heuristics o use later to further reduce the issues you mentioned.<p>“It” happening is a result of your lack of time investment into systematically addressing this.<p>_You_ should have learned this by now. Complain less, learn more.</p>
]]></description><pubDate>Fri, 21 Mar 2025 19:13:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=43439823</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=43439823</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43439823</guid></item><item><title><![CDATA[New comment by exhaze in "Claude can now search the web"]]></title><description><![CDATA[
<p>Install MCP plugin and call a search engine of your choice.<p>If you’re unhappy about something, try to first think of a solution before expressing your discontent.</p>
]]></description><pubDate>Fri, 21 Mar 2025 19:00:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=43439673</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=43439673</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43439673</guid></item><item><title><![CDATA[New comment by exhaze in "Ask HN: If you work for Elon Musk, what keeps you motivated?"]]></title><description><![CDATA[
<p>It would be great to hear from actual folks working for one of his companies rather than folks that presume that they can speak on behalf of those people, and, even worse, go so far as to liken them to "people in abusive relationships".</p>
]]></description><pubDate>Thu, 27 Feb 2025 16:41:24 +0000</pubDate><link>https://news.ycombinator.com/item?id=43195987</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=43195987</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43195987</guid></item><item><title><![CDATA[New comment by exhaze in "Users don't care about your tech stack"]]></title><description><![CDATA[
<p>Can you show me any longitudinal studies that show examples of a causal connection between incrementality of latency and churn? It’s easy to make such a claim and follow up with “go measure it”. That takes work. There are numerous other things a company may choose to measure instead that are stronger predictors of business impact.<p>There is probably <i>some</i> connection. Anchoring to 10ms is a bit extreme IMO because it’s indirectly implying that latency is incredibly important which isn’t universally true - each product’s metrics that are predictive of success are much more nuanced and may even have something akin to the set of LLM neurons called “polysemantic” - it may be a combination of several metrics expressed via some nontrivial function that are the best predictor.<p>For SaaS, if we did want to simplify things and pick just one - usage. That’s the strongest churn signal.<p>Takeaway: don’t just measure. Be deliberate about what you choose to measure. Measuring everything creates noise and can actually be detrimental.</p>
]]></description><pubDate>Fri, 21 Feb 2025 13:19:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=43127087</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=43127087</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43127087</guid></item><item><title><![CDATA[New comment by exhaze in "Relational Quantum Mechanics"]]></title><description><![CDATA[
<p>Curious - how would one frame the cat before/after box reveal within the conceptual framework of causal closure?</p>
]]></description><pubDate>Tue, 11 Feb 2025 06:45:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=43009735</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=43009735</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43009735</guid></item><item><title><![CDATA[New comment by exhaze in "I Program with LLMs"]]></title><description><![CDATA[
<p>That’s a nice generalization from a single data point but the problem here is that I have experience with… 10-15? across 7 companies in my career and it’s worrying to me to hear you say it takes you a few months - especially in today’s world where you can rapidly accelerate your rate of learning and understanding of existing idioms within a framework/specific codebase with LLMs.<p>As LLM capabilities and context windows advance, if you’re blaming the LLM for this it means you don’t know how to use it.<p>Sorry, but there is too much empirical evidence of this both from first-hand experience as well as what I’ve seen from many other practitioners who started with the question of “how can I improve this?” instead of “this sucks”.</p>
]]></description><pubDate>Tue, 21 Jan 2025 00:04:30 +0000</pubDate><link>https://news.ycombinator.com/item?id=42774681</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=42774681</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42774681</guid></item><item><title><![CDATA[New comment by exhaze in "DeepSeek-R1"]]></title><description><![CDATA[
<p>LLMs output can often be like a prism in front of a mirror - a fusion of humanity with the specific human, reflected back at the human.<p>Simon, perhaps you're just not funny.</p>
]]></description><pubDate>Mon, 20 Jan 2025 21:52:45 +0000</pubDate><link>https://news.ycombinator.com/item?id=42773497</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=42773497</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42773497</guid></item><item><title><![CDATA[New comment by exhaze in "I Program with LLMs"]]></title><description><![CDATA[
<p>Using LLMs to bootstrap development in unfamiliar frameworks is a valuable approach when balanced with pragmatic engineering principles. While framework idioms are important, they're secondary to delivering working, maintainable software that solves real problems.<p>The focus on "terrible structure" misses the point - what matters is whether the system meets its requirements efficiently and can be maintained effectively. Have you measured any actual negative impacts on system performance, maintainability, or customer value? My experience suggests that starting with working code and iteratively improving it as patterns emerge often leads to better outcomes than delaying development for complete framework mastery.<p>The interview analogy is particularly misleading - success in a software engineering role isn't measured by framework knowledge, but by the ability to deliver value to customers effectively. Learning framework idioms can happen in parallel with productive development, especially when using LLMs to accelerate the initial learning curve.</p>
]]></description><pubDate>Fri, 10 Jan 2025 16:55:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=42657390</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=42657390</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42657390</guid></item><item><title><![CDATA[New comment by exhaze in "GPT-5 is behind schedule"]]></title><description><![CDATA[
<p>Sounds plausible given I’ve recently observed a ton of research papers in the space that in some way or another incorporate MCTS</p>
]]></description><pubDate>Mon, 23 Dec 2024 00:31:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=42490496</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=42490496</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42490496</guid></item><item><title><![CDATA[New comment by exhaze in "GPT-5 is behind schedule"]]></title><description><![CDATA[
<p>I wasn’t aware of others attempting manifolds for this before - just something I stumbled upon independently. To me the “eerie” part is the thought of an LLM no longer using human language to reason - it’s like something out of a sci fi movie where humans encounter an alien species that thinks in a way that humans cannot even comprehend due to biological limitations.<p>I am hopeful that progress in mechanistic interpretability will serve as a healthy counterbalance to this approach when it comes to explainability.. though I kinda worry that at a certain point it may be that something resembling a scaling law puts an upper bound on even that.</p>
]]></description><pubDate>Mon, 23 Dec 2024 00:28:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=42490469</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=42490469</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42490469</guid></item><item><title><![CDATA[New comment by exhaze in "GPT-5 is behind schedule"]]></title><description><![CDATA[
<p>I think the wildest thing is actually Meta’s latest paper where they show a method for LLMs reasoning not in English, but in <i>latent space</i><p><a href="https://arxiv.org/pdf/2412.06769" rel="nofollow">https://arxiv.org/pdf/2412.06769</a><p>I’ve done research myself adjacent to this (mapping parts of a latent space onto a manifold), but this is a bit eerie, even to me.</p>
]]></description><pubDate>Sun, 22 Dec 2024 22:41:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=42489805</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=42489805</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42489805</guid></item><item><title><![CDATA[New comment by exhaze in "OpenAI O3 breakthrough high score on ARC-AGI-PUB"]]></title><description><![CDATA[
<p>Hey, that's a great question. I should have been more clear: for deterministic generation that's not done using an LLM. It's done using just regular execution of TypeScript. The code generators that were created using an LLM and that I manually checked for correctness, they're the ones that are generating the other code - most of the code. So that's where the determinism comes in.</p>
]]></description><pubDate>Sun, 22 Dec 2024 08:00:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=42485001</link><dc:creator>exhaze</dc:creator><comments>https://news.ycombinator.com/item?id=42485001</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42485001</guid></item></channel></rss>