<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: blackmanta</title><link>https://news.ycombinator.com/user?id=blackmanta</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 15 Apr 2026 11:17:24 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=blackmanta" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by blackmanta in "I ran Gemma 4 as a local model in Codex CLI"]]></title><description><![CDATA[
<p>With a nvidia spark or 128gb+ memory machine, you can get a good speed up on the 31B model if you use the 26B MoE as a draft model. It uses more memory but I’ve seen acceptance rate at around 70%+ using Q8 on both models</p>
]]></description><pubDate>Mon, 13 Apr 2026 01:27:33 +0000</pubDate><link>https://news.ycombinator.com/item?id=47746477</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=47746477</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47746477</guid></item><item><title><![CDATA[New comment by blackmanta in "How the U.S. National Science Foundation enabled Software-Defined Networking"]]></title><description><![CDATA[
<p>Unless the goal of the backdoor is to redirect traffic flows through packet inspection devices that the attacker also controls, the decoupling of the control and data plane in SDN deployments requires a more creative, intricate solution to allow for wiretapping compared to traditional routers.</p>
]]></description><pubDate>Wed, 29 Oct 2025 23:29:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=45754499</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=45754499</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45754499</guid></item><item><title><![CDATA[New comment by blackmanta in "Context engineering is sleeping on the humble hyperlink"]]></title><description><![CDATA[
<p>You can actually enable search in codex but adding the following to the config file<p>[tools]
web_search = true</p>
]]></description><pubDate>Sat, 25 Oct 2025 13:34:06 +0000</pubDate><link>https://news.ycombinator.com/item?id=45703769</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=45703769</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45703769</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>I will look into adding this in a future update.</p>
]]></description><pubDate>Tue, 19 Aug 2025 00:07:20 +0000</pubDate><link>https://news.ycombinator.com/item?id=44946782</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44946782</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44946782</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>The graph functionality is stubbed but I will expose it in a future update. You can also use metadata and tags for similar things.</p>
]]></description><pubDate>Tue, 19 Aug 2025 00:07:05 +0000</pubDate><link>https://news.ycombinator.com/item?id=44946779</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44946779</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44946779</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>I may explore this when I implement the vectordb implementation I started.</p>
]]></description><pubDate>Thu, 14 Aug 2025 19:22:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=44904511</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44904511</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44904511</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>While the examples and provided prompt lean toward code (since that's my personal use case), YAMS is fundamentally a generic content-addressed storage system.<p>I will attempt to run some small agents with custom prompts and report back.</p>
]]></description><pubDate>Thu, 14 Aug 2025 18:09:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=44903698</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44903698</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44903698</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>I have been using it for task tracking, research, and code search. When using CLI tools, I found that the LLM's were able to find code in less tool calls when I stored my codebase in the tool. I had to wrangle the LLMs to use the tool verse native rgrep or find.<p>I am also trying to stabilize PDF text extraction to improve knowledge retrieval when I want to revisit a paper I read but cannot remember which one it was. Most of these use cases come from my personal use and updates to the tool but I am trying to make it as general as possible.</p>
]]></description><pubDate>Thu, 14 Aug 2025 16:50:27 +0000</pubDate><link>https://news.ycombinator.com/item?id=44902716</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44902716</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44902716</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>I stored the codebase for yams in the tool. The "blocks" are content-defined blocks/chunks, not filesystem blocks. They're variable-size chunks (typically 4-64KB) created using Rabin fingerprinting to find natural content boundaries. This enables deduplication across files that share similar content.</p>
]]></description><pubDate>Thu, 14 Aug 2025 15:10:26 +0000</pubDate><link>https://news.ycombinator.com/item?id=44901340</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44901340</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44901340</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>I have not, but that is something I plan to do when I have time.</p>
]]></description><pubDate>Thu, 14 Aug 2025 14:48:28 +0000</pubDate><link>https://news.ycombinator.com/item?id=44901053</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44901053</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44901053</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>I am working to improve the CLI tools to make getting this information easier but I have stored the yam repo in yams with multiple snapshots and metadata tags and I am seeing about 32% storage savings.</p>
]]></description><pubDate>Thu, 14 Aug 2025 14:44:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=44900993</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44900993</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44900993</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>The graph functionality is exposed through the retrieval functionality. I may improve this later but the idea was to maximize getting the best results when looking for stored data.</p>
]]></description><pubDate>Thu, 14 Aug 2025 14:24:44 +0000</pubDate><link>https://news.ycombinator.com/item?id=44900765</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44900765</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44900765</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>The system is honestly tuned for storage efficiency not speed but these configurations are tunable and you can use the benchmarks as a reference for tuning. <a href="https://github.com/trvon/yams/blob/main/docs/benchmarks/performance_report.md" rel="nofollow">https://github.com/trvon/yams/blob/main/docs/benchmarks/perf...</a></p>
]]></description><pubDate>Thu, 14 Aug 2025 14:21:34 +0000</pubDate><link>https://news.ycombinator.com/item?id=44900730</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44900730</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44900730</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>The tool has built-in versioning. Each file gets a unique SHA-256 hash on storage (automatic versioning), you can update metadata to track version info, and use collections/snapshots to group versions together. I have been using the metadata to track progress and link code snippets.</p>
]]></description><pubDate>Thu, 14 Aug 2025 05:25:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=44897012</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44897012</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44897012</guid></item><item><title><![CDATA[New comment by blackmanta in "Show HN: Yet another memory system for LLMs"]]></title><description><![CDATA[
<p>That should be fixed now. It was a misconfiguration of CloudFlare SSL with GitHub Pages.</p>
]]></description><pubDate>Thu, 14 Aug 2025 04:43:23 +0000</pubDate><link>https://news.ycombinator.com/item?id=44896802</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44896802</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44896802</guid></item><item><title><![CDATA[Show HN: Yet another memory system for LLMs]]></title><description><![CDATA[
<p>Built this for my LLM workflows - needed searchable, persistent memory that wouldn't blow up storage costs. I also wanted to use it locally for my research. It's a content-addressed storage system with block-level deduplication (saves 30-40% on typical codebases). I have integrated the CLI tool into most of my workflows in Zed, Claude Code, and Cursor, and I provide the prompt I'm currently using in the repo.<p>The project is in C++ and the build system is rough around the edges but is tested on  macOS and Ubuntu 24.04.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44896489">https://news.ycombinator.com/item?id=44896489</a></p>
<p>Points: 165</p>
<p># Comments: 46</p>
]]></description><pubDate>Thu, 14 Aug 2025 03:34:11 +0000</pubDate><link>https://github.com/trvon/yams</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44896489</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44896489</guid></item><item><title><![CDATA[Show HN: Leveraging Google ADK for Cyber Threat Intelligence]]></title><description><![CDATA[
<p>The project is in an early state. I just had to recently reset the graph data store, but I figured now is a good time to share my post and project.<p>The link is to my blog post, the tool is at <a href="https://umbrix.dev" rel="nofollow">https://umbrix.dev</a></p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=44407845">https://news.ycombinator.com/item?id=44407845</a></p>
<p>Points: 4</p>
<p># Comments: 1</p>
]]></description><pubDate>Sat, 28 Jun 2025 20:19:50 +0000</pubDate><link>https://manta.black/leveraging-google-adk-for-cyber-intelligence.html</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=44407845</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=44407845</guid></item><item><title><![CDATA[Ex-OpenAI board member reveals what led to Sam Altman's brief ousting]]></title><description><![CDATA[
<p>Article URL: <a href="https://www.businessinsider.com/openai-board-member-details-sam-altman-lied-allegation-ousted-2024-5">https://www.businessinsider.com/openai-board-member-details-sam-altman-lied-allegation-ousted-2024-5</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=40506582">https://news.ycombinator.com/item?id=40506582</a></p>
<p>Points: 785</p>
<p># Comments: 805</p>
]]></description><pubDate>Tue, 28 May 2024 23:13:33 +0000</pubDate><link>https://www.businessinsider.com/openai-board-member-details-sam-altman-lied-allegation-ousted-2024-5</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=40506582</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=40506582</guid></item><item><title><![CDATA[New comment by blackmanta in "Google Messages RCS is blocked on rooted, custom ROM Android phones"]]></title><description><![CDATA[
<p>I have used Google messages with RCS on grapheneos.</p>
]]></description><pubDate>Sat, 02 Mar 2024 04:06:21 +0000</pubDate><link>https://news.ycombinator.com/item?id=39569703</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=39569703</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39569703</guid></item><item><title><![CDATA[New comment by blackmanta in "Microsoft Security-101: Open-Source curriculum"]]></title><description><![CDATA[
<p>Microsoft does take security pretty seriously with windows. There have been times they make mistakes, but historically, they are doing better now than they were in the early 2000s before Bill Gates sent a memo noting that they needed to take security seriously. You could argue they take security as serious as any major play like apple and google, seeing they touch a lot of private user data.<p>[1] <a href="https://news.microsoft.com/2000/12/07/gates-offers-new-technology-as-partial-solution-to-online-security-and-privacy-concerns/" rel="nofollow">https://news.microsoft.com/2000/12/07/gates-offers-new-techn...</a></p>
]]></description><pubDate>Sat, 02 Mar 2024 04:02:56 +0000</pubDate><link>https://news.ycombinator.com/item?id=39569689</link><dc:creator>blackmanta</dc:creator><comments>https://news.ycombinator.com/item?id=39569689</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=39569689</guid></item></channel></rss>