<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: skp1995</title><link>https://news.ycombinator.com/user?id=skp1995</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 02:32:24 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=skp1995" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by skp1995 in "VSCode’s SSH agent is bananas"]]></title><description><![CDATA[
<p>I does support o3-mini-high already, we use it for a few flows in the agent.<p>What kind of SDK support are you looking for?</p>
]]></description><pubDate>Sat, 08 Feb 2025 17:47:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=42984629</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42984629</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42984629</guid></item><item><title><![CDATA[New comment by skp1995 in "VSCode’s SSH agent is bananas"]]></title><description><![CDATA[
<p>Hey I am the coredev on sidecar. The reason you see autogenerated PRs is cause I am using our agents to write the code for the agent lol<p>The big difference is the complete loop, each PR gets its own VM with the tool chains installed so the agent can run cargo check or cargo tests etc.<p>We do find the LLMs of today are not the best elite engineers but very very competent junior engineers. It's been a weird but eye opening workflow to use.</p>
]]></description><pubDate>Sat, 08 Feb 2025 13:16:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=42982763</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42982763</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42982763</guid></item><item><title><![CDATA[New comment by skp1995 in "SOTA on swebench-verified: relearning the bitter lesson"]]></title><description><![CDATA[
<p>Hey! One of the creators of Aide here.<p>ngl the total expenditure was around $10k, in terms of test-time compute we ran upto 20X agents on the same problem to first understand if the bitter lesson paradigm of "scale is the answer" really holds true.<p>The final submission which we did ran 5X agents and the decider was based on mean average score of the rewards, per problem the cost was around $20<p>We are going to push this scaling paradigm a bit more, my honest gut feeling is that swe-bench as a benchmark is prime for saturation real soon<p>1. These problem statements are in the training data for the LLMs<p>2. Brute-forcing the answer the way we are doing works and we just proved it, so someone is going to take a better stab at it real soon</p>
]]></description><pubDate>Wed, 08 Jan 2025 22:26:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=42639160</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42639160</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42639160</guid></item><item><title><![CDATA[SOTA on swebench-verified: (re)learning the bitter lesson]]></title><description><![CDATA[
<p>Article URL: <a href="https://aide.dev/blog/sota-bitter-lesson">https://aide.dev/blog/sota-bitter-lesson</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42408253">https://news.ycombinator.com/item?id=42408253</a></p>
<p>Points: 1</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 13 Dec 2024 13:31:41 +0000</pubDate><link>https://aide.dev/blog/sota-bitter-lesson</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42408253</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42408253</guid></item><item><title><![CDATA[Mold: A Modern Linker]]></title><description><![CDATA[
<p>Article URL: <a href="https://github.com/rui314/mold">https://github.com/rui314/mold</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=42210569">https://news.ycombinator.com/item?id=42210569</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 22 Nov 2024 02:15:55 +0000</pubDate><link>https://github.com/rui314/mold</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42210569</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42210569</guid></item><item><title><![CDATA[New comment by skp1995 in "Stop Making Me Memorize the Borrow Checker"]]></title><description><![CDATA[
<p>I do have to ask, I have worked in codebases which used lifetimes and didn't lean into Rc/Arc and vice-versa.<p>I used to think Arc/Rc was a shortcut to avoiding the borrow checker shenanigans, but have evolved that thinking over time.<p>You do mention it in your comment so wondering if you have anything to share about it</p>
]]></description><pubDate>Sun, 17 Nov 2024 01:10:54 +0000</pubDate><link>https://news.ycombinator.com/item?id=42161104</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42161104</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42161104</guid></item><item><title><![CDATA[New comment by skp1995 in "Stop making me memorize the borrow checker"]]></title><description><![CDATA[
<p>will keep that in mind going forward! The most recent ones which I have been hitting are around "higher-ranked lifetime error"<p>I know my way around this now, which is to literally binary search over the timeline of my edits (commenting out code and then reintroducing it) to see what causes the compiler to trip over (there might be better ways to debug this, and I am all ears)<p>Most of the times this error is several layers deep in my application so even tho I want to ticket it up, not being able to create a minimal repo for anyone to iterate against feels like a bit of wasted energy on all sides, do let me know if I should change this way of thinking and I can promise myself to start being more proactive.</p>
]]></description><pubDate>Sun, 17 Nov 2024 00:59:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=42161031</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42161031</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42161031</guid></item><item><title><![CDATA[New comment by skp1995 in "Stop making me memorize the borrow checker"]]></title><description><![CDATA[
<p>Rust can be hard to get right because of the borrow checker.
I had a similar situation happen to me where I went about refactoring the code to make borrow checker happy ... until the last bit when things stopped compiling and I realized my approach was completely wrong (in the rust world, I had a self-reference in the structs)<p>Having said this, the benefits of borrow checker out weight the shortcomings. I can feel myself writing better code in other languages (I tend to think about the layout and the mutability and lifetimes upfront more now)<p>My rust code now is very functional, which seems to work best with lifetimes.<p>I would love to know more about the authors pain, I do hope rustc gets better at lifetime compilation errors cause some of them can be very very gnarly.</p>
]]></description><pubDate>Sun, 17 Nov 2024 00:43:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=42160949</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42160949</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42160949</guid></item><item><title><![CDATA[New comment by skp1995 in "IMG_0416"]]></title><description><![CDATA[
<p>I am missing the link to the thread, but diffusion models also give a very consistent output when prompted with `IMG_{number}` part of the reason could be the training data distribution</p>
]]></description><pubDate>Mon, 11 Nov 2024 15:44:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=42107956</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42107956</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42107956</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>Thats a fair point, a significant part of our 4 person team had to skill up on the VSCode codebase to be able to meaningfully make changes to it.<p>I would love to know your workflow, you mention CLI tool or VSCode plugin, which one of them work for you? Whats missing from them where Aide can fill in the gap</p>
]]></description><pubDate>Thu, 07 Nov 2024 17:50:07 +0000</pubDate><link>https://news.ycombinator.com/item?id=42079015</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42079015</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42079015</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>There is pinned context on the very top where you can pin the files which you frequently use.<p>We will start including the open file by default in the context very soon (one of the gotchas here, is that the open file could not be related to the question you have)</p>
]]></description><pubDate>Thu, 07 Nov 2024 17:21:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=42078679</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42078679</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42078679</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>nothing
<a href="https://github.com/codestoryai/ide/blob/0eb311b7e4d7d63676adda50b70659e0587ea902/extensions/codestory/src/posthog/client.ts#L5-L25">https://github.com/codestoryai/ide/blob/0eb311b7e4d7d63676ad...</a> we get back an undefined PosthogClient instead of populating it</p>
]]></description><pubDate>Thu, 07 Nov 2024 14:44:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=42077035</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42077035</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42077035</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>ugh.. in which case our platform detection code is not working as expected. We will look into that</p>
]]></description><pubDate>Thu, 07 Nov 2024 11:52:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=42075859</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42075859</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42075859</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>just a name resemblance, no relationship otherwise</p>
]]></description><pubDate>Thu, 07 Nov 2024 11:51:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=42075850</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42075850</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42075850</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>It supports all platforms, we took inspiration from the macos spotlight search widget for inline editing.</p>
]]></description><pubDate>Thu, 07 Nov 2024 09:20:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=42075067</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42075067</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42075067</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>that's a good metric to aim for... creating a full local index for 600k lines is pretty expensive but there are a bunch of huristics which can take us pretty far<p>- looking at git commits
- making use of recently accesses files
- keyword search<p>If I set these constraints and allow for maybe around 2 LLM round trips we can get pretty far in terms of performance.</p>
]]></description><pubDate>Thu, 07 Nov 2024 03:55:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=42073222</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42073222</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42073222</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>JetBrains is very interesting, what are the best performing extensions out there for it?<p>I do wonder what api level access do we get over there as well. For sidecar to run, we need LSP + a web/panel for the ux part (deeper editor layer like undo and redo stack access will also be cool but not totally necessary)</p>
]]></description><pubDate>Thu, 07 Nov 2024 03:32:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=42073084</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42073084</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42073084</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>ohh inserting.. I tried it on couple of big repos and it was a bit of a miss to me. How large are the codebases on which you work? I want to get a sense check on where the behavior detoriates with embedding + gpt3.5 based reranker search (not sure if they are doing more now!)</p>
]]></description><pubDate>Thu, 07 Nov 2024 03:29:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=42073073</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42073073</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42073073</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>how do you use the computer usage.. I do find it a very interesting API layer to play around with</p>
]]></description><pubDate>Thu, 07 Nov 2024 03:27:47 +0000</pubDate><link>https://news.ycombinator.com/item?id=42073061</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42073061</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42073061</guid></item><item><title><![CDATA[New comment by skp1995 in "Show HN: Aide, an open-source AI native IDE"]]></title><description><![CDATA[
<p>yeah bad edits are especially worse when we keep building on top of it.<p>Our first take on solving this is with rollbacks .. which allows you to delete edits up until a point in the conversation.. so if you do notice a bad edit you can do that.<p>after this, there is the proactive agent ..which checks it's work again and suggests more changes which it needs to do .. you can give feedback and guide it.<p>With llms we do loose a bit of control but I think the editor should work to solve this</p>
]]></description><pubDate>Thu, 07 Nov 2024 03:26:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=42073053</link><dc:creator>skp1995</dc:creator><comments>https://news.ycombinator.com/item?id=42073053</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42073053</guid></item></channel></rss>