frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How Bain Cap is deploying 1.6B

https://techcrunch.com/2026/09/17/how-bain-capital-ventures-plans-to-deploy-its-fresh-1-6b-fund/
1•jayzalowitz•2m ago•0 comments

Separating Compilation from Attestation. C++ memory safety without disruption

https://gist.github.com/mksunny1/fe88dc882278cb76181e7b2b3eb1d5ce
1•marksun130•2m ago•0 comments

Show HN: Jev routing coding tasks to Grok Build or Codex Astra

https://github.com/jcpsimmons/jev-model-router-demo
1•joshcsimmons•3m ago•0 comments

The Mother Tongue of All Secrets

https://sundaylongread.com/2026/09/12/the-mother-tongue-of-all-secrets/
1•gmays•4m ago•0 comments

Cohere launches confidential computing in model vault

https://cohere.com/blog/cohere-and-aleph-alpha-sign-agreement
1•razodactyl•4m ago•0 comments

How Claude is uplifting biomolecular modeling

https://www.anthropic.com/research/claude-uplifts-biomolecular-modeling
1•vertigoruntime•5m ago•0 comments

The Next Gene-Editing Technology May Also Be the Oldest

https://www.nytimes.com/2026/09/17/science/crispr-gene-editing-vipr.html
1•JumpCrisscross•7m ago•0 comments

How to Write with an LLM

https://sockpuppet.org/blog/2026/09/17/how-to-write-with-an-llm/
1•joeriddles•10m ago•0 comments

Alibaba Releases Qwen3.8-Omni-Flash

https://tokenstead.ai/models/qwen3-8-omni-flash
2•cdnsteve•10m ago•0 comments

Don't Drown the Dream – AI

https://jeffreylminch.substack.com/p/dont-drown-the-dream-ai
1•rmason•12m ago•0 comments

Multiple providers offer free mystery model, Union Alpha

https://tokenstead.ai/models/union-alpha
1•cdnsteve•12m ago•0 comments

NASA's TEMPO satellite enables better monitoring of bad air days

https://knowablemagazine.org/content/article/food-environment/2026/tempo-satellite-enables-better...
1•knowablemag•12m ago•0 comments

Where do innovative problems come from?

https://www.epilogueidea.com/
1•gittingdata•14m ago•0 comments

A Day in the Life of an Enshittificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
1•absqueued•15m ago•0 comments

Goldman says the economy is rewarding capital ownership over labor

https://fortune.com/2026/09/16/goldman-middle-class-labor-share-income-record-low/
4•vinyl7•17m ago•1 comments

I Hate You Microsoft

https://henriquenunez.eu/posts/you_did_it_again_ms/
35•henriquenunez•17m ago•6 comments

The Last AI Built by Humans

https://arxiv.org/abs/2609.11873
1•chumbuket•18m ago•0 comments

Show HN: Free game to destroy any web page

https://page-rage.com/
1•alexreardon•18m ago•0 comments

The case for an ocean-bearing Mimas from tidal heating analysis

https://www.sciencedirect.com/science/article/abs/pii/S0019103521005091?via%3Dihub
2•JumpCrisscross•21m ago•0 comments

Private Equity: In the Doldrums, Out of Favor with Some Institutional Investors

https://cepr.net/publications/private-equity-in-the-doldrums-and-out-of-favor/
1•toomuchtodo•22m ago•0 comments

Jev Reproductions Tracker

https://huggingface.co/spaces/multimodalart/jev-reproductions-tracker
1•polisteps•24m ago•1 comments

Pace. The Final Fronteir

https://twitter.com/backnotprop/status/2100663752551280796
1•ramoz•25m ago•0 comments

Eric S. Raymond – This is the case against AI Doom – pass it on

https://twitter.com/esrtweet/status/2100530353270100334
8•rmason•29m ago•0 comments

The first new species of cat discovered in more than a century

https://www.scientificamerican.com/article/see-the-first-new-species-of-cat-discovered-in-more-th...
4•fidotron•30m ago•0 comments

Show HN: AI crawler honeypot – logs every agent that requests it

https://ai-crawler-honeypot-697299601273.europe-west2.run.app/
2•djp1122222•31m ago•0 comments

Memory as an Interface

https://www.toddsto.com/notes/memory-as-an-interface/index.html
2•eyehurtsme•32m ago•0 comments

PrismML Launches Bonsai 2 27B, Its Most Capable Model Yet

https://prismml.com/news/prismml-launches-bonsai-2-27b
2•colingauvin•33m ago•1 comments

Tabasa – A blindfold chess tactics trainer

https://tabasa.app/
2•nathell•33m ago•0 comments

Researchers have created a mouse with a partly human brain

https://www.economist.com/science-and-technology/2026/09/16/researchers-have-created-a-mouse-with...
3•vinni2•36m ago•0 comments

Virtual biotech company puts thousands of AI scientist agents to work

https://med.stanford.edu/news/all-news/2026/09/virtual-biotech-company.html
4•geox•37m ago•0 comments
Open in hackernews

Show HN: Kodo – Temporary, real-time translation chat app for my upcoming trip

2•jonathanleane•1y ago
Hey HN,

My wife and I are heading to Thailand soon, and while we're learning some basics, I was thinking about those quick, everyday interactions where a language barrier can be awkward – asking for directions, ordering street food, chatting with a vendor, etc.

I didn't want the friction of firing up a dedicated translation app each time or dealing with account signups for something temporary.

So, I decided to build Kodo Chat as a little side project to scratch my own itch. The idea is a super simple, temporary chat room focused purely on real-time translation between two people.

How it works:

One person ("host") visits the site, selects their language, and gets a QR code and a shareable link. The other person ("guest") scans the code or opens the link on their phone, selects their language, and they're connected in a temporary room.

Messages sent by either person are translated (currently using OpenAI - gpt-4.1 by default, but configurable) and displayed along with the original text on the other person's device.

Rooms and user links expire automatically (via Redis TTLs), so there's no persistent data or accounts needed.

It's built with Expo (React Native Web) for the frontend, Node.js/Express/Socket.IO on the backend, and Redis for session/room management. The UI is pretty basic right now (using React Native Paper), and the translations are only as good as the underlying AI model, but it seems to handle simple conversational stuff reasonably well in testing.

It solved my immediate need, and I thought others might find it useful, so I've open-sourced it.

Live Demo: https://kodo-frontend.onrender.com/ GitHub: https://github.com/jonathanleane/kodo

Would love to hear any feedback, suggestions, or criticisms you might have! Especially curious if anyone else has faced similar communication hurdles while traveling and what solutions they've found.

Comments

gabrielcrist•1y ago
Muito interessante! A funcionalidade de tradução temporária em tempo real parece especialmente útil para situações em que a comunicação rápida supera a perfeição da tradução.

Fiquei curioso: como o Kodo lida com expressões idiomáticas ou gírias locais? E existe algum tipo de armazenamento ou histórico das conversas traduzidas?

Pode ser uma ótima ferramenta não só para viagens, mas também para equipes multiculturais em ambientes remotos.

jonathanleane•1y ago
Not sure - lets try: https://kodo-frontend.onrender.com/join?token=3f717b9f1a9052...