<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: losvedir</title><link>https://news.ycombinator.com/user?id=losvedir</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 09:26:05 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=losvedir" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by losvedir in "Stanford report highlights growing disconnect between AI insiders and everyone"]]></title><description><![CDATA[
<p>I don't think you can just invert it like that. There's probably a significant percentage of respondents who think it might not have much impact.</p>
]]></description><pubDate>Tue, 14 Apr 2026 01:33:40 +0000</pubDate><link>https://news.ycombinator.com/item?id=47760191</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47760191</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47760191</guid></item><item><title><![CDATA[New comment by losvedir in "If you started a company two years ago, many assumptions are no longer true"]]></title><description><![CDATA[
<p>As a way to get my feet wet vibe coding, I made <a href="https://seeitwritten.com" rel="nofollow">https://seeitwritten.com</a> with that idea. That by capturing how you write with all its fits and starts you can show that a human wrote it. So, sort of recorded live-streaming. But I'm thinking that a sufficiently cute agent could be prompted to write something and re-write something in a convincing manner. I'm not so sure about that, though, since their corpus is completed text rather than text in action.</p>
]]></description><pubDate>Mon, 13 Apr 2026 21:17:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=47757936</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47757936</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47757936</guid></item><item><title><![CDATA[New comment by losvedir in "A perfectable programming language"]]></title><description><![CDATA[
<p>Wow, I read the whole thing without noticing that.<p>But as someone who came of age in the AIM / ICQ / IRC days, it feels pretty normal. That's just how we wrote. I still fall into it by accident when the context is right and I'm not thinking about it (eg Slack at work). I hope youngsters aren't judging me for it.</p>
]]></description><pubDate>Sun, 12 Apr 2026 23:58:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=47745876</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47745876</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47745876</guid></item><item><title><![CDATA[New comment by losvedir in "Pro Max 5x quota exhausted in 1.5 hours despite moderate usage"]]></title><description><![CDATA[
<p>Haha. yeah my eyes glazed over immediately on the issue. Absolutely this was someone telling their Claude Code to investigate why they ran out of tokens and open the issue.<p>Good chance it's not real or misdiagnosed. But it gives me some degree of schadenfreude to see it happening to the Claude Code repo.</p>
]]></description><pubDate>Sun, 12 Apr 2026 15:16:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47740720</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47740720</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47740720</guid></item><item><title><![CDATA[New comment by losvedir in "War on Raze"]]></title><description><![CDATA[
<p>I know exactly how you feel. Looks like it was 10 (?!) years ago [0]<p>> Ah, APL/J/K. Time for my annual crisis of thinking everything I've ever learned about programming is wrong...<p>Still, though, I'm always happy when it comes up on HN for a little discussion. As I recall there were a couple people working on a new OS or something based on K, I think. I wonder whatever happened to that.<p>As for this particular post, I get how `x^x*/:x:2_!100` works now (it's cute!), but it seems pretty wasteful. It's generating 10,000 products to filter out of the list of 100 integers. But 99 x 99 isn't anywhere near a number in the original 2..100 list! You only need to go up to 2 x 49, 3 x 33, etc. I wonder if there's more of a "triangular" shape you could generate instead of the full table.<p>[0] <a href="https://x.com/losvedir/status/636034419359289344?s=20" rel="nofollow">https://x.com/losvedir/status/636034419359289344?s=20</a></p>
]]></description><pubDate>Fri, 10 Apr 2026 12:48:50 +0000</pubDate><link>https://news.ycombinator.com/item?id=47717342</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47717342</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47717342</guid></item><item><title><![CDATA[New comment by losvedir in "I still prefer MCP over skills"]]></title><description><![CDATA[
<p>For my use I prefer just a raw CLI. As long as it's built following conventions (e.g. using cobra for a Go app) then the agent will just natively know how to use it, by which I mean how to progressively learn what it needs by reading the `help` output. In that case you don't need a skill or anything. Just say "I want this information, use the xyz app". It will then try `xyz --help` or `xyz help` or a variant, just like a human would, see the subcommands, do `xyz help subcommand` and eventually find what it needs to do the job. Good tools provide an OAuth flow like `xyz login`, which will open a browser window where you can determine which resources you want to give the CLI (and thereby the agent) access to.<p>This only works for people using agents themselves on computers they control, rather than, e.g., the Claude web app, but is a good chunk of my usage.<p>I think people are either over or under thinking the auth piece, though. The agent should have access to <i>their</i> own token. Both CLIs and MCPs and even raw API requests work this way. I don't think MCPs provide any further security. You should assume the agent can access anything in its environment and do everything up to what the credential permits. You don't want to give <i>your</i> more powerful credential to the MCP server and hope that the MCP server somehow restricts the agent to doing less (it can probably find the credential and make out-of-band calls if it wants). The only way I think it could work like that is how... is it Sprite does it?... where you give use a fake token and have an off-machine proxy that it goes through where it MitMs the request and injects the real credential.</p>
]]></description><pubDate>Fri, 10 Apr 2026 12:00:01 +0000</pubDate><link>https://news.ycombinator.com/item?id=47716771</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47716771</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47716771</guid></item><item><title><![CDATA[New comment by losvedir in "I still prefer MCP over skills"]]></title><description><![CDATA[
<p>But in the context of this discussion, Atlassian has a CLI tool, acli. I'm not quite following why that wouldn't have worked here. As a normal CLI you have all the power you need over it, and the LLM could have used it to fetch all the relevant pages and save to disk, sample a couple to determine the regular format, and then write a script to extract out what they needed, right? Maybe I don't understand the use case you're describing.</p>
]]></description><pubDate>Fri, 10 Apr 2026 11:49:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=47716689</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47716689</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47716689</guid></item><item><title><![CDATA[New comment by losvedir in "Author of "Careless People" banned from saying anything negative about Meta"]]></title><description><![CDATA[
<p>How do know she's telling the truth? I'm not inclined to give any high level Meta person (current or former) the benefit of the doubt. I haven't read the book, so I don't really know what kind of, like, proof or anything she includes (or could include). Is it just a "trust me not them" thing?</p>
]]></description><pubDate>Sun, 05 Apr 2026 00:02:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=47644797</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47644797</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47644797</guid></item><item><title><![CDATA[New comment by losvedir in "F-15E jet shot down over Iran"]]></title><description><![CDATA[
<p>I think they have 60 days from when hostilities begin, right?</p>
]]></description><pubDate>Fri, 03 Apr 2026 20:59:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=47632197</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47632197</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47632197</guid></item><item><title><![CDATA[New comment by losvedir in "F-15E jet shot down over Iran"]]></title><description><![CDATA[
<p>How am I reading this? Wasn't the regime mowing down tens of thousands of its own citizens prior to this war? I mean, not a "war" crime, I guess, but it seems ludicrous to give them any "moral victories".</p>
]]></description><pubDate>Fri, 03 Apr 2026 20:57:38 +0000</pubDate><link>https://news.ycombinator.com/item?id=47632174</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47632174</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47632174</guid></item><item><title><![CDATA[New comment by losvedir in "Artemis II Launch Day Updates"]]></title><description><![CDATA[
<p>A lot of it is in between: it goes to building things that get unbuilt shortly after.</p>
]]></description><pubDate>Thu, 02 Apr 2026 15:38:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=47615923</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47615923</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47615923</guid></item><item><title><![CDATA[New comment by losvedir in "Why the US Navy won't blast the Iranians and 'open' Strait of Hormuz"]]></title><description><![CDATA[
<p>I think the point is it's like the parable of the drunk looking for his keys under the streetlight, because that's where the light is.<p>The Navy is performing well at the things it's being tasked with because it's only being tasked with things it can do well! But I think the point of this thread is that it still reflects poorly on the Navy if those things aren't actually useful in this war. They say generals are always preparing for the previous war and perhaps that's happening here.</p>
]]></description><pubDate>Wed, 01 Apr 2026 02:54:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=47596220</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47596220</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47596220</guid></item><item><title><![CDATA[New comment by losvedir in "Oracle slashes 30k jobs"]]></title><description><![CDATA[
<p>What? What kind of ridiculous bubble are you in? Isn't Java one of the main languages at Google, Netflix, Amazon, etc?</p>
]]></description><pubDate>Tue, 31 Mar 2026 16:51:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=47590169</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47590169</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47590169</guid></item><item><title><![CDATA[New comment by losvedir in "Artemis II is not safe to fly"]]></title><description><![CDATA[
<p>I feel like all the responses to your comment sort of prove its point.<p>As I was reading the post I was wondering along the same lines, if this is different from before. Going to space is an inherently risky activity. It's always going to be easy to write the "this is not safe" think piece, where you can either say "I told you so" or "Whew, thankfully we made it this time!" afterwards. Things like this only happen when you accept some risk and people say "yes" press forward.<p>All that said, not all risk is equal, and I'm trying to understand if NASA is uniquely dysfunctional now and taking needless, incidental risks.</p>
]]></description><pubDate>Tue, 31 Mar 2026 16:28:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47589833</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47589833</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47589833</guid></item><item><title><![CDATA[New comment by losvedir in "We haven't seen the worst of what gambling and prediction markets will do"]]></title><description><![CDATA[
<p>So options markets then?</p>
]]></description><pubDate>Thu, 26 Mar 2026 21:25:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=47535967</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47535967</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47535967</guid></item><item><title><![CDATA[New comment by losvedir in "Bored of eating your own dogfood? Try smelling your own farts"]]></title><description><![CDATA[
<p>Not much a fan of metaphor? I personally appreciated the way they described about getting (corralling? shepherding? herding? Lots of common animal husbandry expressions in English) all the relevant humans together.</p>
]]></description><pubDate>Sun, 22 Mar 2026 15:18:15 +0000</pubDate><link>https://news.ycombinator.com/item?id=47478423</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47478423</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47478423</guid></item><item><title><![CDATA[New comment by losvedir in "France's aircraft carrier located in real time by Le Monde through fitness app"]]></title><description><![CDATA[
<p>In my day, playing video games and watching anime didn't imply a network connection.</p>
]]></description><pubDate>Fri, 20 Mar 2026 18:31:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=47458688</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47458688</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47458688</guid></item><item><title><![CDATA[New comment by losvedir in "Drugwars for the TI-82/83/83 Calculators (2011)"]]></title><description><![CDATA[
<p>> late 1900s<p>Oh, God, why you gotta do us like that?</p>
]]></description><pubDate>Fri, 20 Mar 2026 13:53:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=47454507</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47454507</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47454507</guid></item><item><title><![CDATA[New comment by losvedir in "ArXiv declares independence from Cornell"]]></title><description><![CDATA[
<p>arXiv is great. It's just a problem that there's so much slop. What if arXiv offered a subscription service that people in different fields could use to just see a curated selection of the top papers in their field each month. Established researchers in each field could then review some of the preprints for putting into the curated monthly list.<p>Oh, wait.</p>
]]></description><pubDate>Fri, 20 Mar 2026 13:50:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=47454465</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47454465</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47454465</guid></item><item><title><![CDATA[New comment by losvedir in "Mistral AI Releases Forge"]]></title><description><![CDATA[
<p>> <i>Forge enables enterprises to build models that internalize their domain knowledge. Organizations can train models on large volumes of internal documentation, codebases, structured data, and operational records. During training, the model learns the vocabulary, reasoning patterns, and constraints that define that environment.</i><p>I'm probably really out of date at this point, but my impression was that fine tuning never really worked that well for knowledge acquisition, and that don't variety of RAG is the way to go here. Fine tuning can affect the "voice", but not really the knowledge.</p>
]]></description><pubDate>Wed, 18 Mar 2026 12:09:16 +0000</pubDate><link>https://news.ycombinator.com/item?id=47424687</link><dc:creator>losvedir</dc:creator><comments>https://news.ycombinator.com/item?id=47424687</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47424687</guid></item></channel></rss>