frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I tested 20 "agent-ready" Shopify stores –> 25% silently break at add-to-cart

https://github.com/MythrilS/agent-ready-checkout
1•MythrilS•5m ago•0 comments

Limnic Eruption

https://en.wikipedia.org/wiki/Limnic_eruption
2•tchalla•7m ago•0 comments

EchoCoT: Extracting Hidden Chain-of-Thought from Large Reasoning Models

https://arxiv.org/abs/2608.20055
1•sbulaev•8m ago•0 comments

Finding a hidden Mersenne Twister inside a 15 year old game binary

https://medium.com/@jizoskasa/i-reverse-engineered-plants-vs-zombies-to-answer-one-very-specific-...
1•signa11•11m ago•0 comments

New U.S. tariffs to take effect after midnight, Canada plans to match levies

https://www.cbc.ca/lite/story/9.7310605
1•morkalork•14m ago•0 comments

France issues warning over substandard condoms

https://www.dw.com/en/france-issues-warning-over-thousands-of-substandard-condoms/a-78462877
1•tchalla•15m ago•0 comments

Inevitable Architecture

https://lebbeuswoods.wordpress.com/2012/07/09/inevitable-architecture/
1•cl42•17m ago•0 comments

Chinese regulators tell Tesla: fix 3M cars

https://arstechnica.com/cars/2026/08/chinese-regulators-tell-tesla-to-fix-nearly-3-million-cars/
1•worik•19m ago•0 comments

King of the Indie Hacker? Will You Claim the Throne?

https://www.kingoftheindiehacker.lol
1•mattmerrick•19m ago•0 comments

Neo: A novel writing tool from Hugh Howey

https://hughhowey.com/introducing-neo/
1•js2•22m ago•0 comments

Getting Freaky in the Age of AI

https://www.iankduncan.com/engineering/2026-08-07-getting-freaky-in-the-age-of-ai/
1•jbott•30m ago•0 comments

Ebb: A Privacy-First Period Tracker

https://ebb.lyfmail.com
1•LYFMail•33m ago•0 comments

People are vandalizing Flock surveillance cameras

https://www.npr.org/2026/08/21/nx-s1-5939851/flock-cameras-police-block-surveillance-vandalize
2•0in•36m ago•0 comments

Linus: And this was a debug session from hell, enormously helped by an AI

https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=818bebeb63dd6bf5f4e...
2•Garbage•36m ago•0 comments

Giving an LLM your prod database is easy. Taking access away is the hard part

https://deepsql.ai/blog/giving-an-llm-your-database-is-easy-taking-access-away-is-hard
2•venkat971•42m ago•1 comments

Show HN: A fruit fly on the web powered by the real FlyWire connectome

https://github.com/DustinBrett/daedalOS
1•DustinBrett•48m ago•0 comments

Open-source field operations system for construction

https://taskfleetai.github.io/fieldfleet/
1•iguardo•49m ago•0 comments

The Cognitive Barrier to Teaching

https://educationrealist.substack.com/p/the-cognitive-barrier-to-teaching
1•barry-cotter•53m ago•0 comments

Instinct on X

https://instinctonx.com/2026-08-21
2•ajwaxman•54m ago•0 comments

Direct light-to-token conversion with integrated 2D photosensitive memory

https://www.nature.com/articles/s44460-026-00122-3
1•eunos•54m ago•0 comments

Startup Founders Are Working Harder Than Ever to Keep Up with Their AI Agents

https://www.wsj.com/tech/ai/ai-agents-startup-work-culture-fa10494d
2•fortran77•55m ago•1 comments

Google MADE A MISTAKE – Pixel 11 Pro Fold durability test [video]

https://www.youtube.com/watch?v=jUT3rUZGqLA
1•canucker2016•58m ago•0 comments

Run frontier models on gaming GPUs

https://twitter.com/andy_shuoyang/status/2090856982383300898
1•eob•1h ago•0 comments

Guitar Tuner (2015)

https://aerotwist.com/blog/guitar-tuner/
1•kaycebasques•1h ago•0 comments

[BOOK REVIEW] The Escape Artist

https://www.astralcodexten.com/p/your-book-review-the-escape-artist
1•barry-cotter•1h ago•0 comments

How fast is C++26's std:hive?

https://lemire.me/blog/2026/08/02/how-fast-is-c26s-stdhive/
2•signa11•1h ago•0 comments

Próspera- libertarian utopia on Caribbean island off the coast of Honduras

https://www.abc.net.au/news/2026-08-22/honduras-prospera-libertarian-utopia-caribbean-roatan/1070...
1•defrost•1h ago•0 comments

Single file apps with Gleam and Bun

https://alistair.sh/gleam-bun-apps
1•alistaiir•1h ago•0 comments

Ask HN: How to Claude Like Anthropic

2•haint_•1h ago•1 comments

A Stronger Goldbach Conjecture

https://ewlevitt.com/goldbach
2•ggossel•1h 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...