frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Sometimes I don't know why I do the stuff I do

https://seriouslywhowouldeverregisteradomainnamethisisjustridiculous.fun
6•rangeva•2m ago•0 comments

Continuous Batching

https://huggingface.co/blog/continuous_batching
1•homarp•2m ago•0 comments

Show HN: ChatIndex – A Lossless Memory System for AI Agents

1•LoMoGan•3m ago•0 comments

Stop Adding AI to Bad Process [video]

https://youtu.be/gCdM4hdwBmY?si=8M6khbUEIeX4XB_5
1•TonyAlicea10•4m ago•0 comments

Talagrand's convolution conjecture up to log log via perturbed reverse heat

https://arxiv.org/abs/2511.19374
1•gmays•7m ago•0 comments

I DM'd a Korean Presidential Candidate – and Ended Up Building His Core Campaign

https://medium.com/@wjsdj2008/i-dmd-a-korean-presidential-candidate-and-ended-up-building-his-cor...
3•wjsdj2009•9m ago•0 comments

ReDOM, a Burp Suite extension bringing full DOM rendering capabilities into Burp

https://github.com/weirdmachine64/reDOM
1•zerodaysbroker•10m ago•1 comments

Genesis Mission

https://genesis.energy.gov/
1•gmays•10m ago•0 comments

I built an open-weights memory system that reaches 80.1% on the LoCoMo benchmark

2•ViktorKuz•11m ago•1 comments

Memories of .us

https://computer.rip/2025-11-11-dot-us.html
1•sabas_ge•13m ago•0 comments

I built a tool to wake my ass up every morning

https://apps.apple.com/us/app/wake-ai-ai-voice-alarm-clock/id6754811988
1•jameshih•14m ago•1 comments

Mystical beliefs predict a meaningful life even without organized religion

https://www.psypost.org/mystical-beliefs-predict-a-meaningful-life-even-without-organized-religion/
1•DrierCycle•14m ago•0 comments

All you need to know about the evolution of the spice bag

https://www.rte.ie/brainstorm/2025/1126/1545881-spice-bag-irish-cuisine-history-evolution/
1•austinallegro•15m ago•0 comments

Quantum computers will not steal your bitcoins, even if they can

https://bfswa.substack.com/p/quantum-computers-will-not-steal
1•speckx•18m ago•0 comments

Building Effective Agents

https://simonwillison.net/2024/Dec/20/building-effective-agents/
1•gearnode•18m ago•0 comments

Expect Subvertations

https://knhash.in/expect-subvertations/
1•kn81198•20m ago•0 comments

Linus Torvalds vs. Ambiguous Abstractions

https://read.thecoder.cafe/p/linus-torvalds-ambiguous-abstractions
1•ingve•20m ago•0 comments

Social media is dying. The internet is dying. Where do we go from here?

https://thesocialjuice.substack.com/p/social-media-is-dying-the-internet
3•jaskaransainiz•21m ago•0 comments

Show HN: Better Agents CLI

https://github.com/langwatch/better-agents
3•jangletown•21m ago•0 comments

Show HN: I created an app to visualize your Uber rides

https://github.com/Gigacore/TripMeter
1•Gigacore•22m ago•0 comments

Microsoft to secure Entra ID sign-ins from script injection attacks

https://www.bleepingcomputer.com/news/microsoft/microsoft-to-secure-entra-id-sign-ins-from-extern...
1•fleahunter•22m ago•0 comments

Boeing's Next Starliner Flight Will Only Be Allowed to Carry Cargo

https://arstechnica.com/space/2025/11/nasa-confirms-that-starliners-next-mission-will-be-cargo-only/
2•TMWNN•24m ago•0 comments

Why Is Crypto Crashing?

https://theweek.com/business/why-crypto-crashing
2•RickJWagner•24m ago•1 comments

Show HN: Demitter – Distributed Node.js event emitter (pub/sub)

https://github.com/pmbanugo/demitter
1•pmbanugo•25m ago•0 comments

Why AI economics are fundamentally broken

https://leaddev.com/ai/why-ai-economics-are-fundamentally-broken
1•scarey101•25m ago•0 comments

Name Generator Japanese Tool

https://namegeneratorjapanese.com/
1•SinanW•26m ago•1 comments

Belgium grinds to a halt in three-day general strike against austerity measures

https://euobserver.com/labour/ar67918671
3•robtherobber•26m ago•0 comments

Post-mortem of Shai-Hulud attack on November 24th, 2025

https://posthog.com/blog/nov-24-shai-hulud-attack-post-mortem
1•makepanic•27m ago•0 comments

The Download: AI and the economy, and slop for the masses

https://www.technologyreview.com/2025/11/26/1128459/the-download-ai-and-the-economy-and-slop-for-...
1•fleahunter•27m ago•0 comments

A Smarter Acme Challenge for a Multi-CDN World

https://www.fastly.com/blog/smarter-acme-challenge-for-multi-cdn-world
1•speckx•29m ago•0 comments
Open in hackernews

I built an open-weights memory system that reaches 80.1% on the LoCoMo benchmark

2•ViktorKuz•11m ago
I’ve been experimenting with long-term memory architectures for agent systems and wanted to share some technical results that might be useful to others working on retrieval pipelines.

Benchmark: LoCoMo (10 runs × 10 conversation sets) Average accuracy: 80.1% Setup: full isolation across all 10 conv groups (no cross-contamination, no shared memory between runs)

Architecture (all open weights except answer generation)

1. Dense retrieval

BGE-large-en-v1.5 (1024d)

FAISS IndexFlatIP

Standard BGE instruction prompt: “Represent this sentence for searching relevant passages.”

2. Sparse retrieval

BM25 via classic inverted index

Helps with low-embedding-recall queries and keyword-heavy prompts

3. MCA (Multi-Component Aggregation) ranking A simple gravitational-style score combining:

keyword coverage

token importance

local frequency signal MCA acts as a first-pass filter to catch exact-match questions. Threshold: coverage ≥ 0.1 → keep top-30

4. Union strategy Instead of aggressively reducing the union, the system feeds 112–135 documents directly to a re-ranker. In practice this improved stability and prevented loss of rare but crucial documents.

5. Cross-Encoder reranking

bge-reranker-v2-m3

Processes the full union (rare for RAG pipelines, but worked best here)

Produces a final top-k used for answer generation

6. Answer generation

GPT-4o-mini, used only for the final synthesis step

No agent chain, no tool calls, no memory-dependent LLM logic

Performance

<3 seconds per query on a single RTX 4090

Deterministic output between runs

Reproducible test harness (10×10 protocol)

Why this worked

Three things seemed to matter most:

MCA-first filter to stabilize early recall

Not discarding the union before re-ranking

Proper dense embedding instruction, which massively affects BGE performance

Notes

LoCoMo remains one of the hardest public memory benchmarks: 5,880 multi-hop, temporal, negation-rich QA pairs derived from human–agent conversations. Would be interested to compare with others working on long-term retrieval, especially multi-stage ranking or cross-encoder heavy pipelines.

Github: https://github.com/vac-architector/VAC-Memory-System

Comments

vectify_AI•9m ago
Great project!

We also use a slightly different strategy to build a lossless memory system without any Vector DBs: https://github.com/VectifyAI/ChatIndex

Hope to have more discussions around this topic!