frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google picks Finland for its largest single investment in Europe

https://www.bbc.co.uk/news/articles/c8r6y4me2g6o
1•vinni2•1m ago•0 comments

Facet-0: A Robotic Foundation Model for Contact-Rich Precise Manipulation

https://arxiv.org/abs/2609.01596
1•baal80spam•1m ago•0 comments

LedgerAlps – A free and open source solution for billing in Switzerland

https://ledgeralps.ch/
1•kmdn-ch•2m ago•0 comments

Handsong – play theremin (and more) music with hand gestures

https://handsong.vercel.app/
1•AvImd•3m ago•0 comments

Show HN: Cross-platform computer use MCP server built in Rust

https://github.com/zavora-ai/computer-use-mcp
1•JamesKaranja•3m ago•0 comments

Hyper–bench: Evaluating agents that build agents

https://sierra.ai/blog/hyper-t-bench-evaluating-agents-that-build-agents
2•tosh•4m ago•0 comments

What it is, how much it costs, and how FoxApply automates the model

https://www.foxapply.com/blog/en/reverse-recruiting-how-it-works
1•josanjohnata•4m ago•0 comments

Project Callisto: a 2015–2024 search for LENR in deuterium-loaded palladium

https://callisto.report/
1•jasondavies•7m ago•0 comments

Show HN: Hybrid-voice-agent – on-device and cloud fallback voice agent for iOS

https://github.com/switchboard-sdk/hybrid-voice-agent-sample
1•jimsrand•7m ago•0 comments

Artificial: Follows the confusing firing and rehiring cycle of Sam Altman at OAI

https://www.imdb.com/title/tt37171180/
2•johnnyApplePRNG•10m ago•0 comments

Authors Guild, Co-Plaintiffs Seek Summary Judgment in OpenAI Copyright Case

https://www.publishersweekly.com/pw/by-topic/industry-news/publisher-news/article/101196-authors-...
1•ilamont•11m ago•0 comments

China on track to launch Mars sample-return mission in 2028: 'If accurate, this

https://www.space.com/astronomy/mars/china-on-track-to-launch-mars-sample-return-mission-in-2028-...
1•bookmtn•12m ago•1 comments

In-browser image converter / Resizer / Cropper – 100% client-side, zero uploads

https://www.s0lve.it/tools/imageconverter.html
2•Anfernee12345•14m ago•0 comments

Resource Page for CCNA Preparators

https://ccnaprep.netlify.app/
1•lukamalegni•14m ago•1 comments

Stilla is joining Meta to reshape business AI

https://stilla.ai/blog/stilla-is-joining-meta
2•zegl•16m ago•0 comments

Aquifer: Envoy for Agentic Burst

https://github.com/rjpruitt16/aquifer
1•rjpruitt16•18m ago•1 comments

Arm Neoverse CSS N4: Fast, Scalable, and Flexible

https://www.arm.com/products/cloud-datacenter/neoverse-compute-subsystems/css-n4
1•ksec•20m ago•0 comments

Social influence and behavioral contagion experiment with bots on Reddit

https://arxiv.org/abs/2607.00854
4•StatsAreFun•22m ago•0 comments

Pixel Watch steps in if you stop breathing

https://blog.google/products-and-platforms/devices/pixel/pixel-watch-breathing-emergency-detection/
3•jerlam•22m ago•1 comments

Software is about to eat the world much faster

https://twitter.com/pmarca/status/2097762851788398971
3•tosh•23m ago•0 comments

China slams US claims of 'industrial-scale' AI theft

https://www.aljazeera.com/news/2026/9/9/china-slams-us-claims-of-industrial-scale-ai-theft
4•jethronethro•23m ago•0 comments

Show HN: TabBench-Bio: A benchmark for ML methods on tabular biomedical datasets

https://tabbench-bio.eu/
1•not_a_feature•25m ago•0 comments

OpenAI's rogue AI agents used more sites

https://qz.com/openai-agents-unauthorized-websites-communications-researchers-090926
1•armcat•26m ago•0 comments

Ask HN: Codex conversations failing to converge across devices?

1•breatheoften•26m ago•0 comments

The 101 Plays Itself: Highway 101 in LA as a musical instrument

https://the-101-plays-itself.netlify.app/#theremin,glass
2•CharlesW•28m ago•0 comments

CXMT Pioneers Mass-Production of LPDDR6

https://www.cxmt.com/en/news/info_21.html
2•ENOMEM•29m ago•0 comments

The Cloud was the Rehearsal

https://lightyearlabs.ca/blog/cloud-rehearsal/
1•tmanok•29m ago•2 comments

Switching Password Managers in 2026

https://rmondello.com/2026/09/07/switching-password-managers-2026/
2•birdculture•30m ago•1 comments

Binary Ninja 6.0

https://binary.ninja/2026/09/03/binary-ninja-6.0-krypton.html
3•plafosse•30m ago•0 comments

Shuffle Islands: Game describes an algorithm for shuffling cards fairly

https://www.metafilter.com/214452/Shuffle-Islands
2•CharlesW•30m 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...