<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: brgsk</title><link>https://news.ycombinator.com/user?id=brgsk</link><description>Hacker News RSS</description><docs>https://hnrss.org/</docs><generator>hnrss v2.1.1</generator><lastBuildDate>Wed, 13 May 2026 13:27:03 +0000</lastBuildDate><atom:link href="https://hnrss.org/user?id=brgsk" rel="self" type="application/rss+xml"></atom:link><item><title><![CDATA[New comment by brgsk in "Reimagining the mouse pointer for the AI era"]]></title><description><![CDATA[
<p>what the hell is going on at google</p>
]]></description><pubDate>Tue, 12 May 2026 19:12:02 +0000</pubDate><link>https://news.ycombinator.com/item?id=48112967</link><dc:creator>brgsk</dc:creator><comments>https://news.ycombinator.com/item?id=48112967</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=48112967</guid></item><item><title><![CDATA[How Not to Run a Company]]></title><description><![CDATA[
<p>Article URL: <a href="https://brgsk.xyz/how-not-to-run-a-company/">https://brgsk.xyz/how-not-to-run-a-company/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47763279">https://news.ycombinator.com/item?id=47763279</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Tue, 14 Apr 2026 09:30:20 +0000</pubDate><link>https://brgsk.xyz/how-not-to-run-a-company/</link><dc:creator>brgsk</dc:creator><comments>https://news.ycombinator.com/item?id=47763279</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47763279</guid></item><item><title><![CDATA[How Not to Run a Company]]></title><description><![CDATA[
<p>Article URL: <a href="https://brgsk.xyz/how-not-to-run-a-company/">https://brgsk.xyz/how-not-to-run-a-company/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47758449">https://news.ycombinator.com/item?id=47758449</a></p>
<p>Points: 5</p>
<p># Comments: 0</p>
]]></description><pubDate>Mon, 13 Apr 2026 22:01:49 +0000</pubDate><link>https://brgsk.xyz/how-not-to-run-a-company/</link><dc:creator>brgsk</dc:creator><comments>https://news.ycombinator.com/item?id=47758449</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47758449</guid></item><item><title><![CDATA[New comment by brgsk in "Show HN: Memv – Memory for AI Agents"]]></title><description><![CDATA[
<p>Install with<p><pre><code>  ```
  uv add "memvee[postgres]"
  ```
</code></pre>
- Links:<p><pre><code>  - GitHub: https://github.com/vstorm-co/memv

  - Docs: https://vstorm-co.github.io/memv

  - PyPI: https://pypi.org/project/memvee/
</code></pre>
- Quickstart:<p><pre><code>  ```python
  from memv import Memory
  from memv.embeddings import OpenAIEmbedAdapter
  from memv.llm import PydanticAIAdapter

  memory = Memory(
      db_url="postgresql://user:pass@host/db",
      embedding_client=OpenAIEmbedAdapter(),
      llm_client=PydanticAIAdapter("openai:gpt-4o-mini"),
  )
  ```</code></pre></p>
]]></description><pubDate>Mon, 30 Mar 2026 19:10:25 +0000</pubDate><link>https://news.ycombinator.com/item?id=47578435</link><dc:creator>brgsk</dc:creator><comments>https://news.ycombinator.com/item?id=47578435</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47578435</guid></item><item><title><![CDATA[Show HN: Memv – Memory for AI Agents]]></title><description><![CDATA[
<p>memv is an open-source Python library that gives AI agents persistent memory. Feed it conversations; it extracts knowledge.<p>The extraction mechanism is predict-calibrate (Nemori paper): given existing knowledge, it predicts what a new conversation should contain, then extracts only what the prediction missed.<p>v0.1.2 adds the production path:
- PostgreSQL backend (pgvector for vectors, tsvector for text search, asyncpg pooling). Single db_url parameter — file path for SQLite, connection string for Postgres.
- Embedding adapters: OpenAI, Voyage, Cohere, fastembed (local ONNX).<p>Other things it does:
- Bi-temporal validity: event time (when was the fact true) + transaction time (when did we learn it), following Graphiti's model.
- Hybrid retrieval: vector similarity + BM25 merged with Reciprocal Rank Fusion.
- Episode segmentation: groups messages before extraction.
- Contradiction handling: new facts invalidate old ones, with full audit trail.<p>Procedural memory (agents learning from past runs) is next, deferred until there's usage data.</p>
<hr>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47576968">https://news.ycombinator.com/item?id=47576968</a></p>
<p>Points: 4</p>
<p># Comments: 3</p>
]]></description><pubDate>Mon, 30 Mar 2026 17:09:13 +0000</pubDate><link>https://github.com/vstorm-co/memv</link><dc:creator>brgsk</dc:creator><comments>https://news.ycombinator.com/item?id=47576968</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47576968</guid></item><item><title><![CDATA[Memory Is the Residual of Surprise]]></title><description><![CDATA[
<p>Article URL: <a href="https://brgsk.xyz/memory-residual-of-surprise/">https://brgsk.xyz/memory-residual-of-surprise/</a></p>
<p>Comments URL: <a href="https://news.ycombinator.com/item?id=47183867">https://news.ycombinator.com/item?id=47183867</a></p>
<p>Points: 2</p>
<p># Comments: 0</p>
]]></description><pubDate>Fri, 27 Feb 2026 18:34:56 +0000</pubDate><link>https://brgsk.xyz/memory-residual-of-surprise/</link><dc:creator>brgsk</dc:creator><comments>https://news.ycombinator.com/item?id=47183867</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47183867</guid></item><item><title><![CDATA[New comment by brgsk in "Statement from Dario Amodei on our discussions with the Department of War"]]></title><description><![CDATA[
<p>Big W for anthropic</p>
]]></description><pubDate>Fri, 27 Feb 2026 17:57:04 +0000</pubDate><link>https://news.ycombinator.com/item?id=47183364</link><dc:creator>brgsk</dc:creator><comments>https://news.ycombinator.com/item?id=47183364</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=47183364</guid></item><item><title><![CDATA[New comment by brgsk in "NerdPoetry – Poetry after language. Presence as form"]]></title><description><![CDATA[
<p>Sounds captivating, but not sure what it is</p>
]]></description><pubDate>Sun, 30 Nov 2025 11:49:22 +0000</pubDate><link>https://news.ycombinator.com/item?id=46095875</link><dc:creator>brgsk</dc:creator><comments>https://news.ycombinator.com/item?id=46095875</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=46095875</guid></item><item><title><![CDATA[New comment by brgsk in "In Search of AI Psychosis"]]></title><description><![CDATA[
<p>I haven't read anything this insightful and interesting in a long time.</p>
]]></description><pubDate>Sat, 30 Aug 2025 16:19:55 +0000</pubDate><link>https://news.ycombinator.com/item?id=45075838</link><dc:creator>brgsk</dc:creator><comments>https://news.ycombinator.com/item?id=45075838</comments><guid isPermaLink="false">https://news.ycombinator.com/item?id=45075838</guid></item></channel></rss>