<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: denidoman</title><link>https://news.ycombinator.com/user?id=denidoman</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Sat, 18 Jul 2026 01:22:57 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=denidoman" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by denidoman in "OnePlus halts operations in USA and Europe"]]></title><description><![CDATA[
<p>Pixel 10 Pro, if you are not into games and fast charging is not a priority.</p>
]]></description><pubDate>Thu, 16 Jul 2026 11:30:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=48933091</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=48933091</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48933091</guid></item><item><title><![CDATA[New comment by denidoman in "Bun support is now limited and deprecated"]]></title><description><![CDATA[
<p>Vibe coding from scratch is far from translating an existing app to another language.<p>I don't know any bad stories about ai-translated apps. Partially because it's a relatively new trend, but also because a big amount of usual vibe code fail modes are not applicable here.</p>
]]></description><pubDate>Fri, 22 May 2026 18:43:14 +0000</pubDate><link>https://news.ycombinator.com/item?id=48239745</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=48239745</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48239745</guid></item><item><title><![CDATA[New comment by denidoman in "We're Getting the Wrong Message from Mythos"]]></title><description><![CDATA[
<p>We are still far from it. Same issue as with robots: you have to build a new environment to let them work efficiently, or at least severely adjust the existing one.<p>This will be the next step, and it will be nasty: changing our workflows to "agent-friendly" even if they less convenient for humans. And then - yes, partial replacement.</p>
]]></description><pubDate>Fri, 10 Apr 2026 11:28:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47716480</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=47716480</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47716480</guid></item><item><title><![CDATA[New comment by denidoman in "Wasting Inferences with Aider"]]></title><description><![CDATA[
<p>Tools is not the problem. Knowledge is.</p>
]]></description><pubDate>Sun, 13 Apr 2025 22:29:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=43676336</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=43676336</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43676336</guid></item><item><title><![CDATA[New comment by denidoman in "Wasting Inferences with Aider"]]></title><description><![CDATA[
<p>Look at this 18 years old Django ticket:
<a href="https://code.djangoproject.com/ticket/4140" rel="nofollow">https://code.djangoproject.com/ticket/4140</a><p>It was impossible to fix, but it required some experiments and deep research about very specific behaviors.<p>Or this ticket:
<a href="https://code.djangoproject.com/ticket/35289" rel="nofollow">https://code.djangoproject.com/ticket/35289</a><p>Author proposed one-line solution, but the following discussion includes analysis of RFC, potential negative outcomes, different ways to fix it.<p>And without deep understanding of the project - it's not clear how to fix it properly, without damage to backward compatibility and neighbor functionality.<p>Also such a fix must be properly tested manually, because even well designed autotests are not 100% match the actual flow.<p>You can explore other open and closed issues and corresponding discussions. And this is the complexity level of real software, not pet projects or simple apps.<p>I guess that existing attention mechanism is the fundamental blocker, because it barely able to process all the context required for a fix.<p>And feature requests a much, much more complex.</p>
]]></description><pubDate>Sun, 13 Apr 2025 22:20:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=43676278</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=43676278</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43676278</guid></item><item><title><![CDATA[New comment by denidoman in "Wasting Inferences with Aider"]]></title><description><![CDATA[
<p>Are you sure about "all"? Because I mentioned not only env deployment, but also functional issue reproduction using UI/API, which is also require necessary pre-setup.<p>Automated tests partially solve the case, but in real world no one writes tests blindly. It's always manual work, and when the failing trajectory is clear - the test is written.<p>Theoretically agent can interact with UI or API. But it requires deep project understanding, gathered from code, documentation, git history, tickets, slack. And obtaining this context, building an easily accessible knowledge base and puring only necessary parts into the agent context - is still a not solved task.</p>
]]></description><pubDate>Sun, 13 Apr 2025 21:57:11 +0000</pubDate><link>https://news.ycombinator.com/item?id=43676163</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=43676163</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43676163</guid></item><item><title><![CDATA[New comment by denidoman in "Wasting Inferences with Aider"]]></title><description><![CDATA[
<p>The current challenge is not to create a patch, but to verify it.<p>Testing a fix in a big application is a very complex task. First of all, you have to reproduce the issue, to verify steps (or create them, because many issues don't contain clear description). Then you should switch to the fixed version and make sure that the issue doesn't exists. Finally, you should apply little exploratory testing to make sure that the fix doesn't corrupted neighbour logic (deep application knowledge required to perform it).<p>To perform these steps you have to deploy staging with the original/fixed versions or run everything locally and do pre-setup (create users, entities, etc. to achieve the corrupted state).<p>This is very challenging area for the current agents. Now they just can't do these steps - their mental models just not ready for a such level of integration into the app and infra. And creation of 3/5/10/100 unverified pull requests just slow down software development process.</p>
]]></description><pubDate>Sun, 13 Apr 2025 16:28:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=43673946</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=43673946</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43673946</guid></item><item><title><![CDATA[New comment by denidoman in "Hoppscotch: Open source alternative to Postman / Insomnia"]]></title><description><![CDATA[
<p>btw, JetBrains IDEs have built-in HTTP-client. Not so GUI rich, but very convenient for development and no need for a separate if you're already using the IDE
<a href="https://www.jetbrains.com/help/idea/http-client-in-product-code-editor.html" rel="nofollow">https://www.jetbrains.com/help/idea/http-client-in-product-c...</a></p>
]]></description><pubDate>Sat, 01 Feb 2025 09:40:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=42897175</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=42897175</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42897175</guid></item><item><title><![CDATA[Complete the Un-Completable: The State of AI Completion in JetBrains IDEs]]></title><description><![CDATA[
<p>Article URL: <a href="https://blog.jetbrains.com/ai/2024/10/complete-the-un-completable-the-state-of-ai-completion-in-jetbrains-ides/">https://blog.jetbrains.com/ai/2024/10/complete-the-un-completable-the-state-of-ai-completion-in-jetbrains-ides/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=41741538">https://news.ycombinator.com/item?id=41741538</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 04 Oct 2024 14:03:52 +0000</pubDate><link>https://blog.jetbrains.com/ai/2024/10/complete-the-un-completable-the-state-of-ai-completion-in-jetbrains-ides/</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=41741538</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41741538</guid></item><item><title><![CDATA[New comment by denidoman in "Reader-LM: Small Language Models for Cleaning and Converting HTML to Markdown"]]></title><description><![CDATA[
<p>next step: websites add irrelevant text and prompt injections into hidden dom nodes, tags attributes, etc. to prevent llm-based scraping.</p>
]]></description><pubDate>Thu, 12 Sep 2024 16:36:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=41522712</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=41522712</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=41522712</guid></item><item><title><![CDATA[New comment by denidoman in "Show HN: Skyvern – Browser automation using LLMs and computer vision"]]></title><description><![CDATA[
<p>It sounds interesting, could you please share the links if it is open sourced?</p>
]]></description><pubDate>Thu, 14 Mar 2024 23:01:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=39710001</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=39710001</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39710001</guid></item><item><title><![CDATA[New comment by denidoman in "Show HN: Rivet – open-source AI Agent dev env with real-world applications"]]></title><description><![CDATA[
<p>Nice app, and thank you for OSS!<p>Am I right, that the following 2 services solve the same product in a similar way: <a href="https://github.com/logspace-ai/langflow">https://github.com/logspace-ai/langflow</a> , <a href="https://github.com/FlowiseAI/Flowise">https://github.com/FlowiseAI/Flowise</a> ?<p>It's absolutely ok if the answer is "Yes", I think that in this hot market each product will find a place. And competition is also motivate :)<p>It would be also nice to add Rivet here: 
<a href="https://github.com/kyrolabs/awesome-langchain#low-code">https://github.com/kyrolabs/awesome-langchain#low-code</a></p>
]]></description><pubDate>Fri, 08 Sep 2023 20:11:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=37438790</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=37438790</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37438790</guid></item><item><title><![CDATA[New comment by denidoman in "Windy.com: global weather website with live filters"]]></title><description><![CDATA[
<p>Nice app but I miss realtime rain info. I prefer Yandex Weather:
<a href="https://yandex.com/weather/maps/nowcast" rel="nofollow noreferrer">https://yandex.com/weather/maps/nowcast</a><p>It has a layer selector with temperature, wind, pressure and precipitation.</p>
]]></description><pubDate>Sat, 19 Aug 2023 14:17:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=37189030</link><dc:creator>denidoman</dc:creator><comments>https://news.ycombinator.com/item?id=37189030</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=37189030</guid></item></channel></rss>