frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I stopped building onboarding and built AI infrastructure instead

https://www.indiehackers.com/post/i-stopped-building-onboarding-and-built-ai-instead-0VMigrTEwai1...
1•stangineer•3m ago•0 comments

Project Iceworm (1959)

https://en.wikipedia.org/wiki/Project_Iceworm
1•AgentNews•9m ago•0 comments

Gödel, Escher, Bach, Wallace: The "O's, D's and P's" in Infinite Jest

https://www.chiply.dev/post-reperspectivizing-orin
1•chiply•13m ago•1 comments

Ada's is Closing June 6th, 2026

https://adasbooks.com/adas-closing
2•thebeardisred•18m ago•0 comments

Get a Point on the Real Number Line

https://www.onemathematicalcat.org/numberLinePopulation.htm
1•subset•20m ago•0 comments

. LLMs Can't Count: A Hallucination Taxonomy Across GPT, Gemini, and Claude

https://zenodo.org/records/19787746
1•h_hasegawa•22m ago•0 comments

WAB Web Agent Bridge -An Open-Source OS for AI Agents

https://webagentbridge.com
1•abokenan444•24m ago•0 comments

Show HN: I remade my blog into a Windows 3.1 environment

https://passo.uno/
3•theletterf•28m ago•0 comments

Show HN: <hyper-frame> – an iframe to frame 100% of the Internet

https://www.hyper-frame.art/?actual
2•keepamovin•30m ago•0 comments

Blockchain as an Artistic Medium

https://silkarthouse.com/features/why-i-keep-track-of-what-0xg-is-coding
2•0xG•31m ago•0 comments

Show HN: I built a tool to bootstrap VLESS and REALITY over SSH (with rollback)

1•insany•31m ago•0 comments

A short-lived lock for a long-running evaluation

https://swaranga.dev/posts/a-short-lived-lock-for-a-long-running-evaluation/
2•swaranga•32m ago•0 comments

Musk and Altman's bitter feud over OpenAI to be laid bare in court

https://www.theguardian.com/technology/2026/apr/26/musk-altman-openai-court
2•beardyw•33m ago•0 comments

Do I even want to be a coder anymore?

https://polso.info/do-i-even-want-to-be-a-coder-anymore
3•Risse•33m ago•0 comments

Chat GPT wrote your code, what else is missing?

https://blog.viewfromtheweb.com/chat-gpt-wrote-your-code-what-else-is-missing-57dc2cd8/
2•rickdg•33m ago•0 comments

Show HN: A template to build desktop, web and mobile apps from the same codebase

https://github.com/odest/tntstack
3•odest•34m ago•1 comments

The Secret Life of NaN

https://anniecherkaev.com/the-secret-life-of-nan
2•prakashqwerty•34m ago•0 comments

System over Model: Zero-Day Discovery at the Jagged Frontier

https://aisle.com/blog/system-over-model-zero-day-discovery-at-the-jagged-frontier
2•ahoog42•35m ago•0 comments

AI, Vikings and Magic Swords

https://yadin.com/notes/swords/
2•dryadin•38m ago•0 comments

Asahi Linux Progress Linux 7.0

https://asahilinux.org/2026/04/progress-report-7-0/
7•elisaado•40m ago•0 comments

Vacant House Shark: A B-movie created with AI featuring sharks and kung fu [video]

https://www.youtube.com/watch?v=LD4UNHAIQcs
2•nogajun•43m ago•0 comments

Chornobyl: 40 years after disaster, nuclear site still at risk

https://www.theguardian.com/news/ng-interactive/2026/apr/25/chornobyl-power-plant-at-risk-amid-ru...
2•Anon84•46m ago•0 comments

Show HN: Nice TUI for Go Pprof

https://github.com/owenrumney/lazypprof
2•rumno0•47m ago•0 comments

A List of Post-Mortems

https://github.com/danluu/post-mortems
2•carlos-menezes•47m ago•0 comments

Mystery Around Venezuelan Cyberattack Deepens, with New Highly Destructive Wiper

https://www.zetter-zeroday.com/hwiper-targeting-venezuelas-state-oil-company-discovered/
2•campuscodi•47m ago•0 comments

Show HN: no look

https://www.hyper-frame.art/console
2•keepamovin•48m ago•0 comments

Sebastian Sawe breaks two-hour mark in marathon world record

https://www.bbc.co.uk/sport/athletics/live/cjd9xpmnvj3t
4•beejiu•51m ago•0 comments

Ask HN: When did Spotify become YouTube/TikTok?

3•binarypixel•56m ago•1 comments

The Paradox of Karl Popper

https://www.scientificamerican.com/blog/cross-check/the-paradox-of-karl-popper/
2•baxtr•58m ago•0 comments

I factored the number RSA1024-1 using my home-built QPU stack

https://twitter.com/veorq/status/2048320115075137864
2•keepamovin•58m ago•0 comments
Open in hackernews

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

2•jonathanleane•12mo 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•12mo 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•12mo ago
Not sure - lets try: https://kodo-frontend.onrender.com/join?token=3f717b9f1a9052...