frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Too Old for Silicon Valley? Think Again. AI Is Changing the Math

https://www.kqed.org/news/12090173/too-old-for-silicon-valley-think-again-ai-is-changing-the-math
2•andsoitis•2m ago•0 comments

Looking for Work

4•rmcdermott•5m ago•0 comments

TDD is dead. Long live testing. (2014)

https://dhh.dk/2014/tdd-is-dead-long-live-testing.html
2•yokto•6m ago•0 comments

Vint Cerf is working on a plan to unleash AI agents on the open internet

https://techcrunch.com/2026/07/15/vint-cerf-is-working-on-a-plan-to-unleash-ai-agents-on-the-open...
2•indigodaddy•7m ago•1 comments

Dan Boneh: The elliptic curve running the modern internet might have a backdoor [video]

https://www.youtube.com/watch?v=8WDOpzxpnTE
2•philipfweiss•8m ago•1 comments

Show HN: One More Letter

https://playonemoreletter.com/
3•hmate9•9m ago•1 comments

Reverse Engineering Apple Wallet

2•asxeem•10m ago•0 comments

Show HN: A Monte Carlo model that called the World Cup finalists 2 weeks ago

https://github.com/fabio-ricardo/worldcup-forecasting-model
2•fabioricardo7•10m ago•1 comments

Nul Characters in Strings in SQLite

https://sqlite.org/nulinstr.html
4•basilikum•15m ago•0 comments

Can AI Do RCA?

https://coroot.com/blog/hard-part-of-ai-root-cause-analysis-is-no-longer-the-model/
2•ekiauhce•17m ago•0 comments

Decarbonizing Singapore's Data Centers Using Sumatra's Geothermal Resources

https://ccsi.columbia.edu/the-case-for-decarbonizing-singapores-data-center-boom-using-south-suma...
2•crookedroad44•17m ago•0 comments

Will AI Fix Prior Authorization – Or Make It Worse?

https://undark.org/2026/07/15/medicare-prior-authorization-ai/
2•EA-3167•18m ago•0 comments

Metal-Organic Frameworks, Chemistry's New Miracle Materials

https://chemistry.berkeley.edu/news/meet-metal-organic-frameworks-chemistry%E2%80%99s-new-miracle...
4•andsoitis•18m ago•0 comments

Eaon (Preview)- Private all in one AI super app

https://eaon.dev
2•morriszdweck•19m ago•1 comments

New York won't build big data centers for 12mos, weighs energy and climate risks

https://apnews.com/article/new-york-data-centers-moratorium-ai-c1e05b74208a6c570eec7c658ac8f187
4•1vuio0pswjnm7•19m ago•1 comments

LeetCode in Your Terminal

https://github.com/HarryYCChou/lcx
2•harryycchou•22m ago•0 comments

The Anti-Mac User Interface (1996)

https://www.nngroup.com/articles/anti-mac-interface/
8•ninglor•26m ago•0 comments

Show HN: Homer's Odyssey Tree Viewer

https://github.com/pettijohn/homer-odyssey-tree/
4•pettijohn•28m ago•0 comments

Japan Builds Intelligence Agency It Hasn't Had Since World War II

https://www.nytimes.com/2026/07/13/world/asia/japan-intelligence-agency.html
3•gmays•34m ago•0 comments

Zoom warns of critical account takeover vulnerability

https://www.bleepingcomputer.com/news/security/zoom-warns-of-critical-account-takeover-vulnerabil...
3•tatersolid•34m ago•0 comments

Great mysteries of archaeology: an ancient Amazonian world revealed from the sky

https://theconversation.com/great-mysteries-of-archaeology-an-ancient-amazonian-world-revealed-fr...
5•zeristor•35m ago•0 comments

SQLite should have (Rust-style) editions

https://mort.coffee/home/sqlite-editions/
25•gnyeki•36m ago•8 comments

Concurrent JavaScript: It can work (2017)

https://webkit.org/blog/7846/concurrent-javascript-it-can-work/
2•Altern4tiveAcc•36m ago•0 comments

Are my evals lying to me?

https://hoplabs.substack.com/p/are-my-evals-lying-to-me
4•joanwestenberg•38m ago•0 comments

UK 16- and 17-year-olds to be encouraged to follow midnight social media curfew

https://www.theguardian.com/technology/2026/jul/14/uk-16-17-year-olds-midnight-social-media-curfew
2•bookofjoe•39m ago•0 comments

Anthropic Accidentally Made the Perfect Commercial

https://www.theatlantic.com/technology/2026/07/anthropic-ai-commercial/687925/
5•samizdis•40m ago•1 comments

I don't like the "staff engineer archetypes"

https://www.seangoedecke.com/staff-engineer-archetypes/
4•gfysfm•40m ago•0 comments

Carucate, An Ancient Unit of Land

https://en.wikipedia.org/wiki/Carucate
3•frikyng•40m ago•0 comments

Nobel-Winning U.S. Chemist Omar Yaghi Will Move to China to Lead A.I. Institute

https://www.nytimes.com/2026/07/09/science/nobel-winning-us-chemist-will-move-to-china-to-lead-ai...
6•yogthos•41m ago•1 comments

Show HN: Autoportrait- Painting Timelapses in JavaScript

https://github.com/philipfweiss/autoportrait
2•philipfweiss•44m 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...