frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Bash sandbox script for Claude and codex CLI

https://github.com/e6qu/sclaude
1•iwwr•2m ago•0 comments

Composr – a Rust rewrite of PHP's package manager

https://github.com/rabbiveesh/composr
1•rabbiveesh•3m ago•1 comments

Show HN: Pingtastic – heartbeat monitoring for cron jobs, plus HTTP/SSL checks

https://www.pingtastic.net
1•davearcher•4m ago•0 comments

Renewable Data Center Fantasy

https://energybadboys.substack.com/p/the-renewable-data-center-fantasy
1•leonidasrup•4m ago•0 comments

A photo editor where you describe the change instead of using layers

https://aiphotoreditor.com/
1•wangxili1997•5m ago•0 comments

Diplodocus, Long Thought Exclusively American, Turns Up in Spain

https://www.sci.news/paleontology/spanish-diplodocus-15064.html
2•embedding-shape•7m ago•1 comments

DDD matters more when AI writes your code

https://threedots.tech/post/ddd-and-ai-coding/
1•roblaszczak•8m ago•0 comments

Quantum Cyclic Cosmology with Sean Carroll [video]

https://www.youtube.com/watch?v=eZca3stQegc
2•binyu•10m ago•0 comments

Randomized query complexity can beat certificate complexity

https://arxiv.org/abs/2609.15063
1•porridgeraisin•11m ago•0 comments

Reality check. This is where we stand

https://devplace.net/posts/8d36a1390389-reality-check-this-is-where-we-stand
1•airhangerf15•12m ago•0 comments

Initial Thoughts on the Social Media Platforms (Ofcom Licensing) Bill

https://neilzone.co.uk/2026/09/initial-thoughts-on-the-social-media-platforms-ofcom-licensing-bill/
3•ColinWright•13m ago•0 comments

Khronos Group opens EU Entity to support European Projects with open standards

https://www.gamingonlinux.com/2026/09/khronos-group-opens-eu-entity-to-support-european-projects-...
1•rdmuser•13m ago•0 comments

Sugar Clear

https://sites.google.com/view/sugarclearreview/
1•haykjauz•16m ago•0 comments

Motivation of Vieta's Transformation (2015)

https://math.stackexchange.com/questions/1520458/motivation-of-vietas-transformation
1•vismit2000•17m ago•0 comments

Oblivious HTTP

https://en.wikipedia.org/wiki/Oblivious_HTTP
1•edward•21m ago•0 comments

YC batches got twice as likely to repeat an earlier YC company, from 18% to 47%

https://fundingwatcher.com/research/yc-batch-similarity/
1•jakobgreenfeld•21m ago•0 comments

Should AI friendliness be a priority for your projects?

1•rumatoest•22m ago•0 comments

A wrong turn become a nightmare

https://spectrumlocalnews.com/nys/central-ny/news/2026/09/14/upstate-medical-researcher-detained-...
2•pregreplace•23m ago•0 comments

ZTE B860H: Getting Armbian into It

https://pen.waltuh.cyou/yonle/zte-b860h-getting-armbian-into-it
1•airhangerf15•24m ago•0 comments

Waspinator

https://waspinator.dev
1•yoavm•25m ago•1 comments

I think roguelikes should steal Noita's philosophy

https://mattbusel.itch.io/chaos-rpg
1•Shmungus•27m ago•1 comments

A live board game where every lot is a billboard, forever

https://theestatewars.com/
1•heypetar•28m ago•0 comments

We all wanted to be Netflix, who do we want to be next?

https://www.architecture-weekly.com/p/we-all-wanted-to-be-netflix-who-do
2•theanonymousone•29m ago•0 comments

Issues with unsigned long int vs. unsigned long long int on Linux vs. 32-bit OS

https://submatrix.net/article/Projects/66bVJsDyXK
1•birdculture•29m ago•0 comments

Suspected sabotage causes major Netherlands rail disruption

https://www.bbc.com/news/articles/c8ly49w9g1edo
22•choult•31m ago•1 comments

Meta Kicks Muse Off Their Social Handles to Launch New AI Agent

https://stereogum.com/2510793/meta-kicks-muse-off-their-social-handles-to-launch-new-ai-agent/news
2•rdmuser•37m ago•0 comments

Show HN: 2D and 3D printable QR-code generator (.3MF / STL) with magnets and NFC

https://www.s0lve.it/tools/qrcode.html
1•Minimaator•38m ago•0 comments

V/H/S SCP: When fandom meets law and Creative Commons

https://www.technollama.co.uk/v-h-s-scp-when-fandom-meets-law-and-creative-commons
2•rdmuser•38m ago•0 comments

Measuring Gauss-Seidel loop-carried dependency and fixing it via loop unrolling

https://loiseaujc.github.io/posts/blog-title/make_gauss_seidel_great_again.html
1•loiseaujc•39m ago•0 comments

Amazon Bets on Hollow Core Fiber to Keep a Million Chips in Sync

https://en.sedaily.com/international/2026/09/12/amazon-bets-on-hollow-core-fiber-to-keep-a-millio...
1•giuliomagnifico•41m 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...