frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tell HN: Apple development certificate server seems down?

96•strongpigeon•14h ago•36 comments

Ask HN: How are people doing AI evals these days?

15•yelmahallawy•1d ago•16 comments

Ask HN: What Are You Working On? (March 2026)

283•david927•2d ago•1082 comments

Ask HN: Remember Fidonet?

116•ukkare•22h ago•67 comments

Ask HN: How are people forecasting AI API costs for agent workflows?

4•Barathkanna•4h ago•10 comments

Maybe we can keep on coding? pseudo code project

7•EmptyDrum•6h ago•7 comments

Ask HN: How to be alone?

670•sillysaurusx•2d ago•552 comments

Ask HN: How do you review gen-AI created code?

4•captainkrtek•9h ago•4 comments

Ask HN: Please restrict new accounts from posting

707•Oras•2d ago•502 comments

Ask HN: Most beautiful personal blog UI you have ever seen?

142•ms7892•2d ago•54 comments

Tell HN: Vertical tabs has arrived (behind a flag) in Chrome stable

5•crummy•10h ago•0 comments

Ask HN: Is Starlink still being jammed in Iran?

3•Jblx2•10h ago•1 comments

Ask HN: Can I repurpose a Bluetooth voice remote as input device for a PC?

15•albert_e•3d ago•20 comments

Ask HN: How to "make it" as a newlygrad/junior?

4•kartoffelsaft•11h ago•3 comments

Ask HN: Devs who are out of work – what are you doing for income now?

6•a1n•5h ago•3 comments

Tell HN: I'm 60 years old. Claude Code has re-ignited a passion

1064•shannoncc•4d ago•975 comments

Ask HN: Does automatic multilingual support make sense for a launch platform?

2•LeanVibe•16h ago•3 comments

Why is GPT-5.4 obsessed with Goblins?

14•pants2•1d ago•8 comments

Unlocked SaaS, file source as truth?

2•abmmgb•19h ago•1 comments

Ask HN: Is GitHub getting less reliable, or is it just me?

11•_pdp_•1d ago•8 comments

The Architecture of an Exit Scam: A Technical Audit of Zszrun

5•cappyfjao•22h ago•0 comments

Ask HN: Since a week HN keeps logging me off every few days, why?

5•epolanski•23h ago•2 comments

Ask HN: What AI content automation stack are you using in 2026?

3•jackcofounder•1d ago•3 comments

Ask HN: Do you still run Redis and workers just for background jobs?

2•sergF•1d ago•16 comments

Ask HN: Favorite Non-Spammy iPhone Games?

6•bix6•1d ago•8 comments

Ask HN: What game engine would you recommend for vibe coding?

6•general_reveal•1d ago•7 comments

Ask HN: Read‑only LLM tool for email triage and knowledge extraction?

2•maille•1d ago•4 comments

Ask HN: Any informed guesses on the actual size/architecture of GPT-5.4 etc.?

4•dsrtslnd23•1d ago•0 comments

Ask HN: Anyone else feel this community has changed recently?

58•kypro•4d ago•30 comments

Code-review-graph: persistent code graph that cuts Claude Code token usage

2•tirthkanani•1d ago•0 comments
Open in hackernews

Ask HN: How are you handling persistent memory across local Ollama sessions

5•null-phnix•3d ago
I build a lot of small AI tools locally, mostly on top of Ollama, and the thing I keep running into is that every session starts from zero. Whatever context I built up the night before, whatever the model learned about how I like things structured, whatever half-finished reasoning we were working through together, it is just gone when I open a new terminal.

For a while I was just manually pasting in context at the start of every session which is exactly as painful as it sounds. Eventually I built a small proxy that sits between my client and Ollama and tries to solve this. It embeds recent interactions, stores them locally, and injects the relevant chunks when a new session starts. It works well enough that I actually use it every day now, but I built it the way someone with no formal CS background builds things, which means I patched it into shape and I am not totally confident the architecture is right.

The part that still bothers me is scoping. I work on a few different projects at the same time and I do not want context from one bleeding into another. Right now I am managing that by hand, basically just keeping separate directories and being careful, but that feels like a workaround not a solution.

Genuinely curious what other people have landed on. Are you using a vector DB for retrieval, or plain files, or something MCP based, or have you just accepted that local sessions are stateless and built your workflow around that? And if you have solved the scoping problem cleanly I really want to know how.