<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: Kostic</title><link>https://news.ycombinator.com/user?id=Kostic</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Fri, 21 Aug 2026 22:36:48 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=Kostic" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by Kostic in "Xiaomi-Robotics-1"]]></title><description><![CDATA[
<p>Sure but that holds true for most new tech. Expensive and slow but it can only get better or stay the same. I'm thinking it's only going to get better.</p>
]]></description><pubDate>Mon, 20 Jul 2026 09:09:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48976160</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=48976160</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48976160</guid></item><item><title><![CDATA[New comment by Kostic in "Kimi K3: Open Frontier Intelligence"]]></title><description><![CDATA[
<p>Your video is showing Kimi 2.6, not 3? Once the weights are released, there might be providers that serve it without the censorship filter.</p>
]]></description><pubDate>Thu, 16 Jul 2026 22:48:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=48941310</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=48941310</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48941310</guid></item><item><title><![CDATA[New comment by Kostic in "Oxide computer 3D rack guided tour"]]></title><description><![CDATA[
<p>A very beautiful website and a machine. Oxide folks should be proud, you can see the love that went into it.</p>
]]></description><pubDate>Thu, 25 Jun 2026 19:14:35 +0000</pubDate><link>https://news.ycombinator.com/item?id=48677956</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=48677956</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48677956</guid></item><item><title><![CDATA[New comment by Kostic in "Oracle shed about 20k roles globally in the last year"]]></title><description><![CDATA[
<p>Time to copy&improve the niche solution.</p>
]]></description><pubDate>Tue, 23 Jun 2026 14:39:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=48645701</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=48645701</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48645701</guid></item><item><title><![CDATA[New comment by Kostic in "Steam Machine launches today"]]></title><description><![CDATA[
<p>70% of the Steam users have a PC that's weaker than the Steam Machine[0]. These things will sell out, that's not the issue. The issue is that Valve probably won't have enough power to secure hardware deals to fulfill all the orders, thus limiting the growth of their hardware side.<p>[0] <a href="https://www.techpowerup.com/342970/valve-claims-steam-machine-outperforms-70-of-current-gaming-pcs" rel="nofollow">https://www.techpowerup.com/342970/valve-claims-steam-machin...</a></p>
]]></description><pubDate>Tue, 23 Jun 2026 06:09:08 +0000</pubDate><link>https://news.ycombinator.com/item?id=48641000</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=48641000</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48641000</guid></item><item><title><![CDATA[New comment by Kostic in "Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?"]]></title><description><![CDATA[
<p>Auth with Github Copilot and then point it to localhost[0]. Hopefully the auth to Copilot requirement will be dropped for local models at some point. Would love to use a fully open stack (VSCodium and everything) in the future. My config:<p>```
[
    {
        "name": "<a href="http://127.0.0.1:8888/v1" rel="nofollow">http://127.0.0.1:8888/v1</a>",
        "vendor": "customendpoint",
        "apiKey": "llama.cpp",
        "models": [
            {
                "id": "gemma4-31b",
                "name": "Gemma 4 31B",
                "url": "<a href="http://127.0.0.1:8888/v1/chat/completions" rel="nofollow">http://127.0.0.1:8888/v1/chat/completions</a>",
                "toolCalling": true,
                "vision": true,
                "maxInputTokens": 65536,
                "maxOutputTokens": 8192
            },
            {
                "id": "qwen3.6-27b",
                "name": "Qwen 3.6 27B",
                "url": "<a href="http://127.0.0.1:8888/v1/chat/completions" rel="nofollow">http://127.0.0.1:8888/v1/chat/completions</a>",
                "toolCalling": true,
                "vision": true,
                "maxInputTokens": 180224,
                "maxOutputTokens": 8192
            }
        ]
    }
]
```<p>[0] <a href="https://code.visualstudio.com/blogs/2025/10/22/bring-your-own-key" rel="nofollow">https://code.visualstudio.com/blogs/2025/10/22/bring-your-ow...</a></p>
]]></description><pubDate>Tue, 16 Jun 2026 08:26:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=48552254</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=48552254</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48552254</guid></item><item><title><![CDATA[New comment by Kostic in "Ask HN: Has anyone replaced Claude/GPT with a local model for daily coding?"]]></title><description><![CDATA[
<p>For personal needs I connected VSCode with llama.cpp running Qwen 3.6 27B or Gemma 4 31B and it's good enough to cancel my cloud subscription.<p>Qwen running on my 1st GPU at q4@176k context from 70 to 50 tok/s with MTP, pretty good for coding.<p>Gemma on the other hand is using both GPUs, running q8@64k context, doing document sentiment analysis, summarization, proofreading and translating, at consistent 25 tok/s. Somewhat slow but usable for batched workflows. Might get some more once llama.cpp starts supporting MTP with tensor split mode.<p>Still using frontier LLMs at dayjob since I'm not paying it and those are obviously better. Hopefully we'll have a Sonnet 4.6/Opus 4.5 level 30B model in a year or so.<p>EDIT: Prompt processing starts from 800 t/s and drops to 400 t/s. In most cases my starting prompts are around 16k-24k of tokens and require from 60 to 90 seconds to be processed. Not great but acceptable.</p>
]]></description><pubDate>Mon, 15 Jun 2026 17:49:48 +0000</pubDate><link>https://news.ycombinator.com/item?id=48544749</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=48544749</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48544749</guid></item><item><title><![CDATA[New comment by Kostic in "Ask HN: What was your "oh shit" moment with GenAI?"]]></title><description><![CDATA[
<p>"I'm sorry" is not gaslighting but an admission of fault it learned from our texts. And if an LLM managed to delete your database, it's time to slow down the vibe train and put up some guard rails.<p>LLMs are awesome but not without supervision.</p>
]]></description><pubDate>Fri, 05 Jun 2026 22:02:12 +0000</pubDate><link>https://news.ycombinator.com/item?id=48418946</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=48418946</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48418946</guid></item><item><title><![CDATA[New comment by Kostic in "Gemini Robotics-ER 1.6"]]></title><description><![CDATA[
<p>Taalas showed that you could make LLMs faster by turning them into ASICs and get 10k+ token generation. It's a matter of time now.</p>
]]></description><pubDate>Wed, 15 Apr 2026 15:19:29 +0000</pubDate><link>https://news.ycombinator.com/item?id=47780349</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=47780349</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47780349</guid></item><item><title><![CDATA[New comment by Kostic in "The MacBook Neo"]]></title><description><![CDATA[
<p>For now. These will be pretty cool Linux machines if Asahi starts supporting them at some point.</p>
]]></description><pubDate>Wed, 11 Mar 2026 17:59:37 +0000</pubDate><link>https://news.ycombinator.com/item?id=47338939</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=47338939</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47338939</guid></item><item><title><![CDATA[New comment by Kostic in "Qwen3-Coder-Next"]]></title><description><![CDATA[
<p>I would not go below q8 if comparing to sonnet.</p>
]]></description><pubDate>Tue, 03 Feb 2026 20:53:19 +0000</pubDate><link>https://news.ycombinator.com/item?id=46877142</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=46877142</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46877142</guid></item><item><title><![CDATA[New comment by Kostic in "A few random notes from Claude coding quite a bit last few weeks"]]></title><description><![CDATA[
<p>I assume you're living in a city. You're already renting out a lot of things to others (security, electricity, water, food, shelter, transportation), what is different with white collar work?</p>
]]></description><pubDate>Wed, 28 Jan 2026 12:06:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=46794282</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=46794282</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46794282</guid></item><item><title><![CDATA[New comment by Kostic in "GitHub: Git operation failures"]]></title><description><![CDATA[
<p>At least with GitHub it's hard to hide when you get "no healthy upstream" on a git push.</p>
]]></description><pubDate>Tue, 18 Nov 2025 21:09:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=45972117</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=45972117</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45972117</guid></item><item><title><![CDATA[New comment by Kostic in "ChatControl update: blocking minority held but Denmark is moving forward anyway"]]></title><description><![CDATA[
<p>I don't understand how you can ship a car without proper papers out of the country so easily. Maybe focus on that first?</p>
]]></description><pubDate>Sun, 14 Sep 2025 20:34:31 +0000</pubDate><link>https://news.ycombinator.com/item?id=45243003</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=45243003</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45243003</guid></item><item><title><![CDATA[New comment by Kostic in "Mistral Releases Deep Research, Voice, Projects in Le Chat"]]></title><description><![CDATA[
<p>Agentic editing is really nice. If on VSCode, Cline works well with Ollama.</p>
]]></description><pubDate>Thu, 17 Jul 2025 18:49:59 +0000</pubDate><link>https://news.ycombinator.com/item?id=44596712</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=44596712</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44596712</guid></item><item><title><![CDATA[New comment by Kostic in "Cloudflare Introduces Default Blocking of A.I. Data Scrapers"]]></title><description><![CDATA[
<p>This would be true if not for open-weights (and even some open source) LLMs that exist today. Not everything should be done for profit.</p>
]]></description><pubDate>Wed, 02 Jul 2025 18:06:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=44446944</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=44446944</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44446944</guid></item><item><title><![CDATA[New comment by Kostic in "Ask HN: What do you spend your money on?"]]></title><description><![CDATA[
<p>I'm spending fair amount of money on helping teachers and professors in Serbia who had their pay reduced to to absurdity because they are supporting their students in demands for justice in the case of Novi Sad canopy collapse[0].<p>[0] <a href="https://en.m.wikipedia.org/wiki/Novi_Sad_railway_station_canopy_collapse" rel="nofollow">https://en.m.wikipedia.org/wiki/Novi_Sad_railway_station_can...</a></p>
]]></description><pubDate>Mon, 02 Jun 2025 13:47:57 +0000</pubDate><link>https://news.ycombinator.com/item?id=44158821</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=44158821</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44158821</guid></item><item><title><![CDATA[New comment by Kostic in "Claude 4"]]></title><description><![CDATA[
<p>It's relevant from an engineering perspective. They have a way to develop a new model in months now.</p>
]]></description><pubDate>Fri, 23 May 2025 08:00:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=44070858</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=44070858</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44070858</guid></item><item><title><![CDATA[New comment by Kostic in "Ask HN: Do you still use search engines?"]]></title><description><![CDATA[
<p>I've stopped using search engines actively 18 months ago. My first stop is an LLM. Once I understand what I actually need, I do a web search to go to the product/tool website. I do this not because LLMs are that good but because web search result quality went way down in the same period.<p>One interesting trend that I like is that I started using local LLMs way more in the last couple of months. They are good enough that I was able to cancel my personal ChatGPT subscription. Still using ChatGPT on the work machines since the company is paying it.</p>
]]></description><pubDate>Wed, 09 Apr 2025 07:03:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=43629550</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=43629550</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43629550</guid></item><item><title><![CDATA[New comment by Kostic in "Military grade sonic weapon is used against protesters in Serbia"]]></title><description><![CDATA[
<p>This happened during 15 minutes of silence for 15 persons that died in the collapse. Everyone was silent and mourning.</p>
]]></description><pubDate>Mon, 17 Mar 2025 10:09:36 +0000</pubDate><link>https://news.ycombinator.com/item?id=43386781</link><dc:creator>Kostic</dc:creator><comments>https://news.ycombinator.com/item?id=43386781</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43386781</guid></item></channel></rss>