frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Two mechanisms for dynamic type checks

https://wingolog.org/archives/2026/02/18/two-mechanisms-for-dynamic-type-checks
1•PaulHoule•55s ago•0 comments

Dupeless Reeducation

https://www.science.org/content/blog-post/dupeless-reeducation
1•Tomte•5m ago•0 comments

Show HN: RedwoodSDK (v1.0 in a Few Days)

https://rwsdk.com
1•pistoriusp•7m ago•0 comments

Show HN: SlideHTML – render HTML files as slides

https://yourhrh.github.io/slidehtml/
1•creativegodong•7m ago•0 comments

Front End Rust Without Node

https://blog.urth.org/2022/02/14/frontend-rust-without-node
1•mahirsaid•9m ago•0 comments

What your phone knows could help scientists understand your health

https://news.stanford.edu/stories/2026/03/screenome-digital-habits-smartphone-mental-physical-health
1•XzetaU8•9m ago•0 comments

Scientists Transfer Longevity Gene

https://scitechdaily.com/scientists-successfully-transfer-longevity-gene-paving-the-way-for-exten...
1•thunderbong•11m ago•0 comments

AI Error May Have Contributed to Girl's School Bombing in Iran

https://thisweekinworcester.com/exclusive-ai-error-girls-school-bombing/
2•apolloartemis•15m ago•0 comments

How many options fit into a boolean?

https://herecomesthemoon.net/2025/11/how-many-options-fit-into-a-boolean/
1•luu•25m ago•0 comments

SK lays off nearly 1k workers at Georgia plant amid cooling automaker EV plan

https://apnews.com/article/georgia-electric-vehicle-battery-manufacturing-layoffs-workers-79a4ec7...
2•josephh•26m ago•0 comments

Ships in Gulf declare themselves Chinese to dodge attack

https://www.ft.com/content/eaecc3ce-ba4e-4e19-9d0a-6cf1536a5aed
4•KnuthIsGod•29m ago•0 comments

Doomscroll 14,333 cat pictures

https://cat.aadishv.dev/
2•aadishv•29m ago•3 comments

Unemployment Reasons, by Age and Education

https://flowingdata.com/2026/03/05/unemployment-reasons/
3•gslin•32m ago•1 comments

Using Rust and Postgres for everything: patterns learned over the years

https://kerkour.com/rust-postgres-everything
3•olalonde•34m ago•0 comments

Show HN: Quantum-PULSE – compress-then-encrypt vault for LLM training data

https://github.com/Naveenub/quantum-pulse
1•naveenub•35m ago•0 comments

You can get better code by exploiting model weights

https://kelvinfichter.com/pages/thoughts/train-harder/
1•kfichter•40m ago•0 comments

Show HN: BurnRate – Track what you spend on AI coding tools

https://getburnrate.io/
1•mwong17•43m ago•0 comments

Worming out molecular secrets behind collective behaviour

https://iisc.ac.in/events/worming-out-molecular-secrets-behind-collective-behaviour/
3•rainhacker•43m ago•0 comments

Show HN: Resend-CLI, unofficial Resend CLI built for AI agents and humans

https://github.com/shubhdeep12/resend-cli
1•Shubhdeep_12•44m ago•0 comments

Show HN: Rai – Add AI steps in your shell, scripts or CI/CD pipelines

https://appmakes.github.io/Rai/
1•perkit•44m ago•0 comments

Full-Text RSS site config files

https://github.com/fivefilters/ftr-site-config
1•microflash•44m ago•0 comments

Astronomers Spot a Cosmic Laser Halfway Across the Universe

https://www.universetoday.com/articles/astronomers-using-meerkat-spot-a-cosmic-laser-halfway-acro...
2•johnbarron•45m ago•0 comments

Trump has privately shown serious interest in U.S. ground troops in Iran

https://www.nbcnews.com/politics/white-house/trump-privately-shown-serious-interest-us-ground-tro...
7•johnbarron•46m ago•3 comments

Semi-formal reasoning helps agents reason about code without executing the code

https://arxiv.org/abs/2603.01896
1•dnw•48m ago•0 comments

Show HN: EdgeDox – Offline document AI on Android using Qwen3.5-0.8B

https://play.google.com/store/apps/details?id=io.cyberfly.edgedox&hl=en_US
1•cyberfly-labs•49m ago•0 comments

EA Javelin Anticheat job listing mentions future support for Linux and Proton

https://www.gamingonlinux.com/2026/03/ea-javelin-anticheat-job-listing-mentions-future-support-fo...
2•exploraz•57m ago•1 comments

Should AI web agents skip sponsored/ad results by default?

2•ilyasJosef•1h ago•3 comments

TCXO Failure Analysis

https://serd.es/2026/03/06/TCXO-failure-analysis.html
1•zdw•1h ago•0 comments

Google Workspace CLI Removes MCP Support

https://github.com/googleworkspace/cli/pull/275
1•waf•1h ago•0 comments

Armed robots take to the battlefield in Ukraine war

https://www.bbc.com/news/articles/c62662gzlp8o
4•dabinat•1h ago•0 comments
Open in hackernews

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

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