frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kbd-1.0-Codex-Micro

https://twitter.com/OpenAIDevs/status/2077425991790870644
2•delduca•1m ago•1 comments

Joe Rogan Experience #2524 – Rupert Lowe [video]

https://www.youtube.com/watch?v=k29cMrVtVXY
1•dp-hackernews•1m ago•0 comments

Linus Torvalds Reaffirms That Linux Is Not "Anti-AI"

https://www.phoronix.com/news/Linux-Is-Not-Anti-AI
4•moelf•4m ago•1 comments

Modelplane

https://modelplane.ai
3•hasheddan•9m ago•0 comments

Flock to Pay for Vandalized Flock Cameras

https://ipvm.com/reports/flock-pay-vandalized-cameras
2•jhonovich•9m ago•0 comments

People in Many Countries Now View China More Positively Than the U.S.

https://www.pewresearch.org/global/2026/07/15/people-in-many-countries-now-view-china-more-positi...
1•dabinat•11m ago•0 comments

AVAL: A new open-source format for interactive video on the web

https://pixelpoint.io/aval/
1•nopinsight•13m ago•0 comments

75% of PlayStation 3 games are now playable on PC

https://videocardz.com/newz/rpcs3-says-75-of-playstation-3-games-are-now-playable-on-pc
1•LordDefender•13m ago•0 comments

Does Anthropic Buy Legitimacy Through Hiring?

https://artificialrhetoric.substack.com/p/every-anthropic-hire-is-a-legitimacy
1•Ben_Pota•13m ago•0 comments

Language Server Protocol Specification – 3.18

https://microsoft.github.io/language-server-protocol/specifications/lsp/3.18/specification/
1•qbane•13m ago•0 comments

Capture Clauses as Effects (Rust)

https://blog.yoshuawuyts.com/capture-clauses-as-effects/
1•dabinat•14m ago•0 comments

Useful Is Not Sufficient

https://tante.cc/2026/07/15/useful-is-not-sufficient/
3•rapnie•15m ago•0 comments

Optimizing a Ring Buffer for Throughput (2021)

https://rigtorp.se/ringbuffer/
2•mattrighetti•18m ago•0 comments

Save Standard Time

https://savestandardtime.com/
2•throw0101d•18m ago•0 comments

Maybe we could tone down the JavaScript (2016)

https://eev.ee/blog/2016/03/06/maybe-we-could-tone-down-the-javascript/
1•downbad_•19m ago•0 comments

Do YC companies get preference on the homepage?

1•e_i_pi_2•19m ago•0 comments

American AI is expensive. Some startups are turning to cheap Chinese models

https://www.npr.org/2026/07/15/nx-s1-5886476/startups-cheap-chinese-ai-models
2•makerdiety•19m ago•0 comments

US Debt Clock Live

https://www.us-debt-clock.com/
2•ourmandave•19m ago•0 comments

When agents talk: tool calls, handoffs, and two wallets

https://www.kulikowski.me/blog/agents-talking-to-each-other
1•kinlan•20m ago•0 comments

Funny item co-occurrences in 3.2M Instacart orders

https://rogerdickey.com/funny-item-co-occurrences-in-3-million-instacart-orders/
1•rogerdickey•23m ago•0 comments

Show HN: Pullrun – Run OCI Images as Containers or Firecracker MicroVMs

https://github.com/pullrun/pullrun
2•liquid64•24m ago•0 comments

Eight Writers on Facing the Blank Page

https://www.youtube.com/watch?v=TDH7yAWsyG0
1•brudgers•24m ago•0 comments

Show HN: 3,225 trials of LLMs guessing author age – confident and wrong

https://github.com/BraveAnn011/llm-author-misattribution
1•BrianneLee011•26m ago•0 comments

Show HN: Stillwind – PCB part selection as constraint solving

https://stillwind.ai
5•hannesfur•26m ago•2 comments

Show HN: Summa, a tool that annotates over whatever you're reading

https://summa.josephruocco.net
2•jruocco•27m ago•1 comments

Vacuum of the Imagination: Why Space Rockets Could Have Flown Centuries Earlier

https://angadh.com/rockets-1
1•angadh•28m ago•0 comments

Show HN: Painterly – Turn pictures into digital paintings without generative AI

https://github.com/jbunke/painterly
2•flinkerflitzer•28m ago•0 comments

The Download: a useful quantum machine and a record-breaking subsea tunnel

https://www.technologyreview.com/2026/07/15/1140498/the-download-useful-quantum-computer-subsea-t...
1•joozio•28m ago•0 comments

Reverse Engineering Crazy Taxi, Part 3

https://wretched.computer/post/crazytaxi3
2•marklit•31m ago•0 comments

I Switched from Hugo to Astro

https://hmmr.online/posts/why-astro-not-hugo/
1•ZanderHammer•32m ago•0 comments
Open in hackernews

Open-source memory for coding agents, synced over SSH

https://github.com/vshulcz/deja-vu/
21•vshulcz•1h ago

Comments

vshulcz•1h ago
Hi HN. I built deja after watching Claude Code and Codex debug the same problems more than once.

The annoying thing was that the answer usually already existed somewhere in my old sessions. My records were stored on the disk for months (~3.3 GB). It wasn't easy to find them manually and the new agent session had no idea what the other agent had already found out.

deja indexes the transcripts that Claude Code, Codex, and opencode already write. On my corpus, the initial index takes about 10 seconds and warm searches are 7-9 ms.

There are 3 ways to get the memory back: a normal CLI search, an MCP tool (agent can query it directly) and a SessionStart hook that automatically injects a bit of relevant project context.

The feature I built this for:

deja sync ssh <host>

It moves new memory between machines using the existing SSH setup. Secret data is deleted during indexing and checked again before exporting.

My setup is a laptop and a mac mini without an interface. The agent can work on the mini all night, and in the morning I extract its memory. Then the agent on my laptop will know what the mini tried, what broke, and what eventually worked.

There are other projects (cass, ctx, claude-mem):

https://github.com/Dicklesworthstone/coding_agent_session_se...

https://github.com/ctxrs/ctx

https://github.com/thedotmack/claude-mem

I wanted deja to intentionally use a small approach: one binary code with zero dependency, no LLM calls, searchable verbatim text instead of generated summaries, and synchronization via your own SSH. It does not implement its own network transport; it just connects to the system ssh/scp.

You can install it via curl, brew, npx or go install, then run:

deja install --all

esafak•58m ago
Similar to https://ctx.rs/ and others, I'm sure.

I'd lead with your differentiation. Is it the ssh?

verdverm•57m ago
even more: https://hn.algolia.com/?dateRange=pastMonth&page=0&prefix=fa...
vshulcz•49m ago
My particular interest in deja was that I found a combination that I couldn't find on this list: zero dependencies, zero LLM calls, verbatim text search, proactive secret cleanup and P2P synchronization over SSH.
verdverm•35m ago
We are entering the era of personalized software. I have something similar but I'm not trying to promote or make money with it. I somewhat prefer it stay off the radar so I don't feel the need to cater to other people's feature requests and make it more complex than what I want.
vshulcz•51m ago
Yes, ctx is the closest cousin here. I actually linked it in my top comment.

This causes a very similar itch, but we went a slightly different route regarding some implementation details

Secrets: The ctx README mentions saving the text as is and warns about the need to review the output data before publishing. deja explicitly removes known secret templates at the indexing stage (replacing them with tags like [redacted:aws-key]).

Syncing: It looks like ctx is getting ready for a cloud beta to be shared by the team. Actually, I just wanted something local and free that I had full control over, so deja does P2P syncing through your existing SSH settings.

Recall that deja has a session startup feature that automatically introduces a bit of context when a new agent is loaded, instead of relying solely on manual search.

Both applications solve the same annoying problem by simply optimizing for different workflows :)

BedVibe_Studios•39m ago
I like that this stays local instead of depending on a hosted service. One thing I've noticed while building LLM applications is that memory becomes much more valuable when it's easy to inspect and edit manually. Are you planning to support semantic search later, or is the goal to keep everything deterministic and text-based?