<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: buryat</title><link>https://news.ycombinator.com/user?id=buryat</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Tue, 14 Apr 2026 17:19:52 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=buryat" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by buryat in "Design and implementation of DuckDB internals"]]></title><description><![CDATA[
<p>thank you!
Learned why DuckDB is named this way</p>
]]></description><pubDate>Tue, 14 Apr 2026 04:45:09 +0000</pubDate><link>https://news.ycombinator.com/item?id=47761350</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=47761350</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47761350</guid></item><item><title><![CDATA[New comment by buryat in "GAIA – Open-source framework for building AI agents that run on local hardware"]]></title><description><![CDATA[
<p>I have a Mac Studio with 512GB Ram and ran models of different sizes to test out how local agents are and I agree that local models aren't there yet but that depends on whether you need a lot of knowledge or not to answer your question, and I think it should be possible to either distill or train a smaller model that works on a subset of knowledge tailored toward local execution. My main interest is in reducing the latency and it feels that the local agents that work at high speeds should be an answer to this but it's not something that someone is trying to solve yet. Feels like if I could get a smaller model that could run at incredible speed locally that could unlock some interesting autoresearching.</p>
]]></description><pubDate>Mon, 13 Apr 2026 23:11:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47759168</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=47759168</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47759168</guid></item><item><title><![CDATA[New comment by buryat in "We gave terabytes of CI logs to an LLM"]]></title><description><![CDATA[
<p>interesting approach, thanks for directing me!<p>Since the classifier would need to have access to the whole log message I was looking into how search is organized for the CLP compression and see that:<p>> First, recall that CLP-compressed logs are searchable–a user query will first be directed to dictionary searches, and only matching log messages will be decompressed.<p>so then yeah it can be combined with a classifier as they get decompressed to get a filtered view at only log lines that should be interesting.<p>The toughest part is still figuring out what does "interesting" actually mean in this context and without domain knowledge of the logs it would be difficult to capture everything. But I think it's still better than going through all the logs post searching.</p>
]]></description><pubDate>Fri, 27 Feb 2026 18:27:46 +0000</pubDate><link>https://news.ycombinator.com/item?id=47183768</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=47183768</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47183768</guid></item><item><title><![CDATA[New comment by buryat in "We gave terabytes of CI logs to an LLM"]]></title><description><![CDATA[
<p>yeah, I saw Claude Code doing lots of grepping/find and was curious if that approach might miss something in the log lines or if loading small portion of interesting log lines into the context could help. I find frequently that just looking at ERROR/WARN lines is not enough since some might not actually be errors and some other skipped log lines might have something to look into.<p>And I just wanted to try MCP tooling tbh hehe Took me 2 days to create this to be honest</p>
]]></description><pubDate>Fri, 27 Feb 2026 18:11:41 +0000</pubDate><link>https://news.ycombinator.com/item?id=47183557</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=47183557</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47183557</guid></item><item><title><![CDATA[New comment by buryat in "We gave terabytes of CI logs to an LLM"]]></title><description><![CDATA[
<p>the patter matcher is interesting to also collapse log lines and compare that between runs, thank you!<p>In my tool I was going more of a premise that it's frequently difficult to even say what you're looking for so I wanted to have some step after reading logs to say what should be actually analyzed further which naturally requires to have some model</p>
]]></description><pubDate>Fri, 27 Feb 2026 18:07:43 +0000</pubDate><link>https://news.ycombinator.com/item?id=47183517</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=47183517</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47183517</guid></item><item><title><![CDATA[New comment by buryat in "We gave terabytes of CI logs to an LLM"]]></title><description><![CDATA[
<p>I just wrote a tool for reducing logs for LLM analysis (<a href="https://github.com/ascii766164696D/log-mcp" rel="nofollow">https://github.com/ascii766164696D/log-mcp</a>)<p>Lots of logs contain non-interesting information so it easily pollutes the context. Instead, my approach has a TF-IDF classifier + a BERT model on GPU for classifying log lines further to reduce the number of logs that should be then fed to a LLM model. The total size of the models is 50MB and the classifier is written in Rust so it allows achieve >1M lines/sec for classifying. And it finds interesting cases that can be missed by simple grepping<p>I trained it on ~90GB of logs and provide scripts to retrain the models (<a href="https://github.com/ascii766164696D/log-mcp/tree/main/scripts" rel="nofollow">https://github.com/ascii766164696D/log-mcp/tree/main/scripts</a>)<p>It's meant to be used with Claude Code CLI so it could use these tools instead of trying to read the log files</p>
]]></description><pubDate>Fri, 27 Feb 2026 17:37:39 +0000</pubDate><link>https://news.ycombinator.com/item?id=47183152</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=47183152</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47183152</guid></item><item><title><![CDATA[New comment by buryat in "Claude Code Remote Control"]]></title><description><![CDATA[
<p>it worked for me</p>
]]></description><pubDate>Wed, 25 Feb 2026 13:50:10 +0000</pubDate><link>https://news.ycombinator.com/item?id=47151413</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=47151413</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47151413</guid></item><item><title><![CDATA[New comment by buryat in "Claude Code Remote Control"]]></title><description><![CDATA[
<p>claude /logout -> claude /login -> claude /remote-control</p>
]]></description><pubDate>Wed, 25 Feb 2026 12:42:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47150772</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=47150772</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47150772</guid></item><item><title><![CDATA[New comment by buryat in "Samsung now owns Denon, Bowers and Wilkins, Marantz, Polk, and more audio brands"]]></title><description><![CDATA[
<p>I have a B&W 700 series speakers and a devialet phanthom 108db, was quite surprised at the quality that devialet delivers</p>
]]></description><pubDate>Sat, 27 Sep 2025 16:39:51 +0000</pubDate><link>https://news.ycombinator.com/item?id=45397333</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=45397333</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45397333</guid></item><item><title><![CDATA[New comment by buryat in "OpenAI to buy AI startup from Jony Ive"]]></title><description><![CDATA[
<p>How much value was created using products created by Jony Ive and his team?</p>
]]></description><pubDate>Thu, 22 May 2025 08:41:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=44060069</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=44060069</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44060069</guid></item><item><title><![CDATA[New comment by buryat in "Possible new dwarf planet found in our solar system"]]></title><description><![CDATA[
<p>Humans probably can orbit the sun 2000+ times in a not significantly distant future</p>
]]></description><pubDate>Thu, 22 May 2025 08:35:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=44060025</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=44060025</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44060025</guid></item><item><title><![CDATA[New comment by buryat in "“Normal” engineers are the key to great teams"]]></title><description><![CDATA[
<p>it's like cancer, it keeps replicating</p>
]]></description><pubDate>Fri, 14 Mar 2025 15:26:13 +0000</pubDate><link>https://news.ycombinator.com/item?id=43363552</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=43363552</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43363552</guid></item><item><title><![CDATA[New comment by buryat in "Forces deep underground seem to be deforming Earth's inner core"]]></title><description><![CDATA[
<p>dug too deep and awakened balrog</p>
]]></description><pubDate>Sat, 08 Mar 2025 16:04:42 +0000</pubDate><link>https://news.ycombinator.com/item?id=43301203</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=43301203</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43301203</guid></item><item><title><![CDATA[New comment by buryat in "MS Paint IDE"]]></title><description><![CDATA[
<p>mschf is pretty close to what you're describing</p>
]]></description><pubDate>Wed, 05 Mar 2025 17:58:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=43269974</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=43269974</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=43269974</guid></item><item><title><![CDATA[New comment by buryat in "Ilya Sutskever's startup in talks to fundraise at roughly $20B valuation"]]></title><description><![CDATA[
<p>Emotions removed, how large his equity stake would be if he had stayed at OpenAI?</p>
]]></description><pubDate>Mon, 10 Feb 2025 05:27:18 +0000</pubDate><link>https://news.ycombinator.com/item?id=42997214</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=42997214</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42997214</guid></item><item><title><![CDATA[New comment by buryat in "Boom XB-1 First Supersonic Flight [video]"]]></title><description><![CDATA[
<p>If you're rich and can travel faster, why not? I hope they make a coupe version</p>
]]></description><pubDate>Wed, 29 Jan 2025 07:20:53 +0000</pubDate><link>https://news.ycombinator.com/item?id=42862470</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=42862470</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42862470</guid></item><item><title><![CDATA[New comment by buryat in "Nvidia’s $589B DeepSeek rout"]]></title><description><![CDATA[
<p>What kind of quality of content can Meta theoretically mine with all the vast data that they collect? They have a good advertising and a content algorithms but does it approximate general intelligence? And the content you see on Facebook, Instagram, Whatsapp, that's just a lot of average content that might actually be great for AGI.</p>
]]></description><pubDate>Tue, 28 Jan 2025 07:54:32 +0000</pubDate><link>https://news.ycombinator.com/item?id=42849913</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=42849913</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42849913</guid></item><item><title><![CDATA[New comment by buryat in "Nvidia’s $589B DeepSeek rout"]]></title><description><![CDATA[
<p>El Dorado will be AGI with Humanoid robots and actual real pick-axes</p>
]]></description><pubDate>Tue, 28 Jan 2025 07:47:49 +0000</pubDate><link>https://news.ycombinator.com/item?id=42849882</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=42849882</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42849882</guid></item><item><title><![CDATA[New comment by buryat in "DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via RL"]]></title><description><![CDATA[
<p>But not the training data</p>
]]></description><pubDate>Mon, 27 Jan 2025 02:28:17 +0000</pubDate><link>https://news.ycombinator.com/item?id=42836736</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=42836736</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42836736</guid></item><item><title><![CDATA[New comment by buryat in "DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via RL"]]></title><description><![CDATA[
<p>Interacting with this model is just supplying your data over to an adversary with unknown intents. Using an open source model is subjecting your thought process to be programmed with carefully curated data and a systems prompt of unknown direction and intent.</p>
]]></description><pubDate>Sat, 25 Jan 2025 20:24:00 +0000</pubDate><link>https://news.ycombinator.com/item?id=42824516</link><dc:creator>buryat</dc:creator><comments>https://news.ycombinator.com/item?id=42824516</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=42824516</guid></item></channel></rss>