<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: Xcelerate</title><link>https://news.ycombinator.com/user?id=Xcelerate</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 18 Aug 2026 00:56:17 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Xcelerate" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Xcelerate in "Cultivating a state of mind where new ideas are born (2023)"]]></title><description><![CDATA[
<p>> I noticed some people I just cannot share ideas with. They're in the habit of shooting down anything, and they would have found 100 reasons that any famous company or product would have failed<p>You’re on the wrong message board then haha</p>
]]></description><pubDate>Sun, 16 Aug 2026 14:34:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=49320488</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=49320488</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49320488</guid></item><item><title><![CDATA[New comment by Xcelerate in "Humanising LLM Outputs Is Dumb"]]></title><description><![CDATA[
<p>It’s not that. It’s that I tried a bunch of experiments on which instructions worked best. “Speak clearly using simple language” lost too many details. “Be sure the objects that pronouns reference are clearly identified along with any context you might assume I have but I don’t” worked better, but I got tired of typing that in each time. So I looked up words to match that phrase and “deictic” fit perfectly. The results were pretty good, and so I’ve been using that prompt ever since.</p>
]]></description><pubDate>Tue, 11 Aug 2026 15:11:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=49259634</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=49259634</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49259634</guid></item><item><title><![CDATA[New comment by Xcelerate in "Humanising LLM Outputs Is Dumb"]]></title><description><![CDATA[
<p>You ever read a work of literature with such flowery language that right after you've read a paragraph, you pause and realize you have no clue what you actually read, only to read the paragraph maybe a second or third time and have your mind space out again and again on each successive attempt?<p>Yeah, for me, that's what parsing huge volumes of LLM-produced text like "direct model calls as replaceable semantic workers" does to my brain. Maybe others don't really have this issue, but after any long output, I prompt the agent "Go back and decompress any LLM-speak in light of the higher level task goals. Eliminate deictic language."<p>The revised output documents are solely for my personal usage to expedite understanding. The LLMs can slowly converge on their own language for all I care; I retain raw agent output for future agent usage (to avoid the "lossy" problem the author mentions), but that doesn't eliminate the need for some intermediate translation I can use to actually help get my work done instead of spending hours attempting to understand what a "load-bearing pinned gate" is.</p>
]]></description><pubDate>Mon, 10 Aug 2026 17:25:52 +0000</pubDate><link>https://news.ycombinator.com/item?id=49246865</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=49246865</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49246865</guid></item><item><title><![CDATA[People Are Crossing Oceans for a Fayetteville Roller Coaster]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.axios.com/local/atlanta/2026/07/24/arieforce-one-closing-fayetteville-fun-spot-america-atlanta-roller-coaster">https://www.axios.com/local/atlanta/2026/07/24/arieforce-one-closing-fayetteville-fun-spot-america-atlanta-roller-coaster</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=49137399">https://news.ycombinator.com/item?id=49137399</a></p>
<p>Points: 6</p>
<p># Comments: 1</p>
]]></description><pubDate>Sat, 01 Aug 2026 19:08:02 +0000</pubDate><link>https://www.axios.com/local/atlanta/2026/07/24/arieforce-one-closing-fayetteville-fun-spot-america-atlanta-roller-coaster</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=49137399</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49137399</guid></item><item><title><![CDATA[New comment by Xcelerate in "2x, not 10x: coding with LLMs in 2026"]]></title><description><![CDATA[
<p>I have a weird issue with using AI for coding. I can code something entirely by myself at my baseline speed; call it 1x. Or I can use Claude to do it, and it does it in 1/10 - 1/4 of the time. The problem, however, is that to review Claude’s code <i>properly</i> takes 2-3x the amount of time it would have taken me to write it all by hand.<p>So my two choices are basically “YOLO, LGTM” and hope I can revert if it breaks something, or to just write all the code by hand from the start. With the increased pressure for output, I’ve noticed both myself and coworkers tending more toward “commit and hope it works” over time. It’s sort of perverse incentives in a way...</p>
]]></description><pubDate>Fri, 31 Jul 2026 03:12:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=49118572</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=49118572</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49118572</guid></item><item><title><![CDATA[New comment by Xcelerate in "It's not empowering to hand off the details"]]></title><description><![CDATA[
<p>I’ve found AI works much better for constraint based problems than open ended “tasks”. I.e., if you specify all of the constraints of the problem, it works <i>really</i> well at achieving the objective. But the caveat is that you really do have to enumerate <i>all</i> of the constraints, because if you miss even one, it will use that as a loophole to shortcut the problem.<p>I think the solution is toward more formalization of the behavior we expect of various systems. E.g., produce a Lean proof that a program never behaves in a certain way, and if you can’t, iterate on the program until it satisfies such a proof. I’ve only tinkered around with this a little bit, but it seems promising on toy problems. Scaling up to tech-company level infra is going to take quite some time however I think.</p>
]]></description><pubDate>Sun, 26 Jul 2026 22:15:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=49062981</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=49062981</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49062981</guid></item><item><title><![CDATA[New comment by Xcelerate in "Terence Tao's ChatGPT conversation about the Jacobian Conjecture counterexample"]]></title><description><![CDATA[
<p>I’m a bit surprised OpenAI isn’t finding these big results far faster than the product’s user base. With no limits on runtime, access to dev models, custom tuning, and top talent, you’d think there’d be a constantly running internal project with the goal of solving famous math problems. And who knows, perhaps there is, but it would be interesting to compare the rate of success per unit “effort” of the internal mathematics work with that of the user base.</p>
]]></description><pubDate>Wed, 22 Jul 2026 23:24:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=49014861</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=49014861</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=49014861</guid></item><item><title><![CDATA[New comment by Xcelerate in "Claude Fable produced a counterexample to the Jacobian Conjecture"]]></title><description><![CDATA[
<p>Haha, I’ve noticed this as well. It’s like they psyche themselves out about how famous the problem is the same way humans do. I gave one Collatz in disguise, and it was finding all sorts of interesting things (but nothing worth a paper) until it realized the problem was Collatz, at which point it just proceeded to find a bunch of reasons why nothing would work from that point on.</p>
]]></description><pubDate>Mon, 20 Jul 2026 12:42:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=48978065</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48978065</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48978065</guid></item><item><title><![CDATA[New comment by Xcelerate in "Claude, please stop trying to memorize random crap"]]></title><description><![CDATA[
<p>I've wondered this. We have chain-of-thought, harnesses, etc. — workarounds of a sort due to lack of core model capabilities. But I am very curious if much better next token prediction would simply obsolete that whole setup or not. Either way, the answer would be very revealing.</p>
]]></description><pubDate>Fri, 03 Jul 2026 18:10:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=48778026</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48778026</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48778026</guid></item><item><title><![CDATA[New comment by Xcelerate in "Claude's AskUserQuestion: "No response after 60s – continued without an answer""]]></title><description><![CDATA[
<p>I don't know about having this on as the default, but it definitely resolves a frequent annoyance of mine. I'd prefer Claude to keep going as far as possible until it's <i>completely</i> blocked. That said, I only give instructions to do that in environments where there's a clear upper bound on "maximal damage" that could be incurred by doing the wrong thing. In live production systems, you really don't want Claude doing much other than observing and reporting anyway.<p>I've been using a SQLite DB to organize actionability so I don't get stuck in the way that GitHub issue tries to work around. Any questions about which route to take that arise during agentic work are logged to a queue along with a set of plausible candidate routes, a probability assigned to each candidate of whether I will choose that option (including "other/none"), a "resource cost" assessment of the route (e.g., token spend, time), a "stability cost" (e.g., high potential to disrupt things or mainly self-contained), and a set of tasks that describe any downstream work that is dependent on the route chosen.<p>What Claude does next then depends on the results of a tiny optimization program that tries to maximize the expectation value of agent productivity per unit resource (tokens, time, etc.) conditional on how long it will take me to answer the question (e.g., if Claude has a question for me at 1 AM, there probably won't be a response for another 6-7 hours).<p>"Agent productivity" is of course a bit nebulous, consisting of a somewhat ad-hoc amalgamation of factors, but in general Claude's actionability loosely corresponds to cases like:<p>- 2-3 possible routes, each with roughly equal probability of being the one I select, low resource costs, minimal risk of instability, few downstream dependencies: implement each route in parallel<p>- 2-3 possible routes, one with a much higher probability of being chosen, minimal risk of instability, many downstream dependencies: implement just the top route<p>- Hundreds of possible routes: block until user response<p>- 1 possible route, high risk of instability, many downstream dependencies: block until user response<p>Generally speaking, there should be an active queue at all times and agents should be working on anything that's not blocked in the queue with maximal parallelization.</p>
]]></description><pubDate>Thu, 02 Jul 2026 20:06:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=48766676</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48766676</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48766676</guid></item><item><title><![CDATA[New comment by Xcelerate in "Programmers will document for Claude, but not for each other"]]></title><description><![CDATA[
<p>I’ve recently had a <i>massive</i> productivity boost in my Claude workflow simply by asking it to search for and review: relevant PRs via `gh` search, relevant Slack threads, relevant Confluence pages (+edit history), relevant Jira tickets, relevant Sharepoint docs, and relevant Teams transcripts. I ask it to do this comprehensively before the task, during the task, and after the task. It feels like a superpower.</p>
]]></description><pubDate>Fri, 05 Jun 2026 14:04:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=48412740</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48412740</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48412740</guid></item><item><title><![CDATA[New comment by Xcelerate in "SQLite is all you need for durable workflows"]]></title><description><![CDATA[
<p>Haha, I just started doing this on my own. Found it helps the agents preserve state better. I typically ask them to design a DAG first based on a set of specifications and then execute it (each step stores something in a SQLite DB). Iteration is pretty simple then because I just ask for a tweak to one or two steps of the DAG, and then to re-run.<p>Funny how people are independently converging on similar patterns of "what works" here. Still feels like we're in the wild west with all these ad-hoc patterns of agent orchestration that people are coming up with.</p>
]]></description><pubDate>Fri, 29 May 2026 18:05:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=48326956</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48326956</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48326956</guid></item><item><title><![CDATA[New comment by Xcelerate in "Don't just paste the AI at me"]]></title><description><![CDATA[
<p>I think it depends on the context and also not being deceptive. If someone just spent 4 hours trying to root cause a SEV with Claude and they finally have a nice high-level Claude-generated summary of all that work, just paste it and share it. Don't waste time trying to reword it to make it seem like you wrote it. A simple "After spending a few hours with Claude, here's the conclusion about what the problem was: [paste]".<p>On the other hand, if you send someone a very personal and heartfelt message and receive a reply like "Yeah, it was so nice spending time with [niece] today!", well, that's a bit different...</p>
]]></description><pubDate>Sat, 23 May 2026 01:00:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=48243458</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48243458</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48243458</guid></item><item><title><![CDATA[New comment by Xcelerate in "The case against boolean logic"]]></title><description><![CDATA[
<p>I think this question of <i>what</i> sentences can have truth value attached to them is significant. The liar paradox (a sentence in a formal language stating itself to be false) clearly doesn’t have a truth value. A statement that a specific program halts, however, does seem to be either true or false, regardless of whether or not a general algorithm exists that can answer such questions. In a sense, all sentences that fall on the arithmetical hierarchy seem to me to intuitively have a Boolean truth value (in the standard model, which we assume corresponds to what a program would actually “do” if we ran it forever).<p>Set theoretic questions like AC or CH are much more difficult for me to intuitively grok in the same way, because they don’t seem to “obviously” be either true or false. You can take either and still end up with a (presumably) consistent theory.</p>
]]></description><pubDate>Fri, 22 May 2026 12:35:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=48235027</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48235027</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48235027</guid></item><item><title><![CDATA[New comment by Xcelerate in "It is time to give up the dualism introduced by the debate on consciousness"]]></title><description><![CDATA[
<p>> Consciousness the the fundamental reality; it is the only thing we know for sure.<p>> I know for sure what I am perceiving<p>This reflects my view. And I’ve always found it mildly amusing that beings I cannot prove to myself are perceiving attempt to convince me that I’m not perceiving, when that’s exactly what I’m maximally sure of. Imagine arguing with an LLM designed to convince you that you’re not real. It would be weird, wouldn’t it?</p>
]]></description><pubDate>Mon, 18 May 2026 12:51:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=48179050</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48179050</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48179050</guid></item><item><title><![CDATA[Unknowable Math Can Help Hide Secrets]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.quantamagazine.org/how-unknowable-math-can-help-hide-secrets-20260511/">https://www.quantamagazine.org/how-unknowable-math-can-help-hide-secrets-20260511/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48123801">https://news.ycombinator.com/item?id=48123801</a></p>
<p>Points: 88</p>
<p># Comments: 18</p>
]]></description><pubDate>Wed, 13 May 2026 16:09:00 +0000</pubDate><link>https://www.quantamagazine.org/how-unknowable-math-can-help-hide-secrets-20260511/</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48123801</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48123801</guid></item><item><title><![CDATA[New comment by Xcelerate in "As researchers age, they produce less disruptive work"]]></title><description><![CDATA[
<p>I feel like we still don’t have great research on how much of this is due to biological factors related to age and how much is due to confounding factors.<p>I suspect that sustained creativity may be a result of continuous exposure to new experiences and concepts (which younger people are naturally situated to encounter quite often), so I try to consistently add novelty to my life as I get older, specifically targeting things way outside my comfort zone or previous interests.<p>For example, I’ve always been sort of uneasy with flying, so I figured I would sign up for general aviation classes and learn to fly myself, which is something I <i>never</i> would have had the slightest inclination toward when I was younger. I ultimately didn’t go through with it, as while signing up, my wife strongly insisted that I find a different form of “novelty” to pursue, but I think it decently illustrates what I was attempting to accomplish.<p>Some more mundane examples include listening to music that I don’t enjoy, completely mixing up how I dress after decades of wearing the same thing, reading books opposite my interests, taking classes in fields different than what my degree was in, and trying to constantly meet people who are very different from myself.<p>I guess we’ll see if this has any effect or not.</p>
]]></description><pubDate>Wed, 13 May 2026 12:23:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=48121003</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48121003</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48121003</guid></item><item><title><![CDATA[True-spectrum photography with structural color]]></title><description><![CDATA[
<p>Article URL: <a href="https://hackaday.com/2026/05/03/true-spectrum-photography-with-structural-color/">https://hackaday.com/2026/05/03/true-spectrum-photography-with-structural-color/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=48050284">https://news.ycombinator.com/item?id=48050284</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Thu, 07 May 2026 15:02:37 +0000</pubDate><link>https://hackaday.com/2026/05/03/true-spectrum-photography-with-structural-color/</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=48050284</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48050284</guid></item><item><title><![CDATA[New comment by Xcelerate in "The gay jailbreak technique (2025)"]]></title><description><![CDATA[
<p>I mean that trick works on humans too. Fake IDs, provide two types of documentation for a driver's license, passport, or buying a home, etc.</p>
]]></description><pubDate>Fri, 01 May 2026 20:00:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47979497</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=47979497</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47979497</guid></item><item><title><![CDATA[New comment by Xcelerate in "Is my blue your blue?"]]></title><description><![CDATA[
<p>My mind was blown once when I heard multiple people calling yellow Gatorade (lemon lime) green. I have no clue how anyone perceives it that way.</p>
]]></description><pubDate>Mon, 27 Apr 2026 23:48:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=47928783</link><dc:creator>Xcelerate</dc:creator><comments>https://news.ycombinator.com/item?id=47928783</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47928783</guid></item></channel></rss>