frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Another cruise: Re-reading "Moby-Dick" at Ahab's age

https://calebcrain.substack.com/p/another-cruise
1•lermontov•37s ago•0 comments

Learning PostgreSQL Internals

https://blog.cleverelephant.ca/2022/10/postgresql-links.html
1•rjenkins•2m ago•0 comments

In-browser NL2SQL2NL playground: SQLite WASM meets Gemini

https://github.com/arnabdotorg/coquery
1•relantic•6m ago•0 comments

Show HN: TypeKro – TypeScript infra-as-code for Kubernetes built on KRO

https://typekro.run
1•ManWith2Plans•11m ago•0 comments

A Choice of Giants

https://kriskowal.com/giants/
1•dannyobrien•11m ago•0 comments

Science > Panpsychism [video]

https://www.youtube.com/watch?v=0nOtLj8UYCw
1•ieuanking•14m ago•0 comments

AgentQL, a toolkit for extracting data and automating workflows on live websites

https://github.com/tinyfish-io/agentql
1•jinqueeny•21m ago•0 comments

AI2 releases Asta: open‑source ecosystem for trustworthy scientific AI agents

https://www.hpcwire.com/off-the-wire/ai2-launches-asta-a-new-standard-for-trustworthy-ai-agents-i...
1•acossta•24m ago•1 comments

What's the Safest Seat in a Car?

https://www.popsci.com/science/what-is-safest-seat-in-car/
2•wjb3•36m ago•0 comments

Maunder Minimum

https://en.wikipedia.org/wiki/Maunder_Minimum
1•wjb3•38m ago•0 comments

Claude's GitHub: two issues closed by AI as "duplicates" – of each other..!

https://github.com/anthropics/claude-code/issues/4751
2•hihicoderhi•39m ago•2 comments

Show HN: Seven Dollar Chat- Claude, Llama, DeepSeek and More

https://7chat.sbs/
2•jerrimu•44m ago•0 comments

Goiânia Accident

https://en.wikipedia.org/wiki/Goi%C3%A2nia_accident
4•grubbs•53m ago•0 comments

FlightConnections

https://www.flightconnections.com/
3•scapecast•58m ago•1 comments

Optimizing is not only for better performance

2•jaharios•1h ago•0 comments

Tony Blair Attends White House Meeting with Trump on Postwar Gaza

https://www.theguardian.com/politics/2025/aug/27/tony-blair-attends-white-house-meeting-with-trum...
5•NomDePlum•1h ago•0 comments

Engineer as Value Appraiser

https://substack.com/inbox/post/172128430
3•mrev2•1h ago•0 comments

Stop killing games: Demands for game ownership must also include workers' rights

https://theconversation.com/stop-killing-games-demands-for-game-ownership-must-also-include-worke...
6•PaulHoule•1h ago•0 comments

Dead arms test importance of clenched fists (2015)

https://www.bbc.co.uk/news/science-environment-34572432
3•austinallegro•1h ago•0 comments

The Rise of Front-Loaded Vesting

https://www.levels.fyi/blog/front-loaded-vesting.html
3•zuhayeer•1h ago•0 comments

The Cybersecurity Psychology Framework: A Pre-Cognitive Vulnerability Assessment

https://cpf3.org
3•kaolay•1h ago•1 comments

DraftKings said it acted properly in voiding Iowa man's $14.2M payout

https://www.desmoinesregister.com/story/sports/2025/08/26/draftkings-defends-voiding-iowa-mans-pa...
4•indigodaddy•1h ago•1 comments

Ask HN: What's your current "ecosystem"/dev stack/tools that you use to build?

2•adinhitlore•1h ago•1 comments

What's new in Excel August 2025

https://techcommunity.microsoft.com/blog/excelblog/whats-new-in-excel-august-2025/4437351
3•nhatcher•1h ago•0 comments

Anthropic – Detecting and countering misuse of AI: August 2025

https://www.anthropic.com/news/detecting-countering-misuse-aug-2025
2•josephmiller•1h ago•0 comments

We're doing context engineering wrong

2•brandonin•1h ago•4 comments

A retrospective about blogging for a decade

https://midzer.de/a-retrospective-about-blogging-for-a-decade
2•midzer•1h ago•0 comments

You're doing context engineering wrong

https://github.com/a24z-ai/a24z-memory
3•brandonin•1h ago•0 comments

Asahi Linux Lead Developer Steps Down

https://linuxiac.com/asahi-linux-lead-developer-steps-down/
21•bundie•1h ago•3 comments

Trying Out Claude for Chrome Research Preview

https://www.youtube.com/watch?v=y4xkmP-VM1g
3•arjunchint•1h ago•2 comments
Open in hackernews

Show HN: Kai – a private, offline AI "second brain" that remembers you(no cloud)

https://www.oneeko.ai/
3•no_internet•2h ago
I built Kai because I was tired of assistants that forget and cloud tools that mine my data. Persistent memory: what you teach Kai sticks. Local-first: data never leaves your device; no telemetry. Transparent: memory graph shows what it knows and why. I’m looking for early users who care about local, privacy, and explainability. The landing page has a simple waitlist; I’ll onboard in small waves and share progress.

Comments

no_internet•2h ago
Local-first: offline by default; zero telemetry. Optional LLM API calls can be disabled; API keys stored locally.

Stack: Python 3.10, FastAPI (async), WebSockets UI.

Storage: SQLite for persistence + sqlite-vec (384-d cosine) for vector search; ChromaDB used as an in-memory hot cache.

Embeddings: all-MiniLM-L6-v2 (384-d), CPU ~50ms/query.

LLM options (Ollama/local): TinyLlama 1.1B / Phi-2 2.7B / Gemma 2B (4GB); Mistral 7B Q4 / Llama-2 7B Q4 (8GB); Llama-3 8B / Mixtral 8×7B (16GB+). GPU optional for 5–10× speedup.

Memory tiers:

Hot: in-memory (Chroma), LRU ~5k items with score decay.

Warm: SQLite + sqlite-vec persistent store; promotes on read.

Cold: archived to disk; periodically compacted.

Graph/Why: NetworkX graph for explainability; basic activation spreading + auto-linking on similarity threshold.

Security: data lives under ~/kai/ with user-only perms; no encryption at rest yet. Export (/memory/export) and full delete scripts included.

Roadmap (short): VS Code ext (MCP), Obsidian bridge via local REST, encryption-at-rest, and open-sourcing the graph/algorithms component. Pricing: free for personal use during early access; long-term pricing TBD.

Happy to go deeper on any of the above.