frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The U.S. Wants to Ban China's High-Tech Cars, They're Already Here in El Paso

https://www.wsj.com/business/autos/chinese-cars-byd-geely-u-s-mexico-be0dea28
1•impish9208•43s ago•0 comments

Strategic Polysemy in AI Discourse

https://arxiv.org/abs/2604.21043
1•inimaz•2m ago•0 comments

GitHub rushed to fix a critical vulnerability in less than six hours

https://www.theverge.com/news/920295/github-remote-code-execution-vulnerability-fix
1•Brajeshwar•2m ago•1 comments

Reverse Geocoding with Overture Maps

https://tech.marksblogg.com/reverse-geocoding-overture-maps.html
1•marklit•3m ago•0 comments

Show HN: Analytics-skills – turn your agent into a senior analyst

https://github.com/clamp-sh/analytics-skills
1•sidneyottelohe•3m ago•1 comments

Stable Channel Update for Desktop (Tuesday, April 28, 2026)

https://chromereleases.googleblog.com/2026/04/stable-channel-update-for-desktop_28.html
1•gslin•5m ago•0 comments

Read any beehiiv site paywall/distraction free

https://beehiiv-reader.vercel.app/
2•newmischiefacct•6m ago•0 comments

Ask HN: Is any one experiencing partial outage with Gemini API?

1•jinen83•6m ago•0 comments

FluencyCraft, a vocabulary tool I built to remember the words I study

https://fluencycraft.com/
1•carloscsc•7m ago•0 comments

Monet – Open-source shared memory for AI agent teams

https://github.com/team-monet/monet
1•johnonlee•8m ago•0 comments

Exploring the 'CoW' in TSMC's CoWoS Advanced Packaging

https://imgur.com/a/ZxTFVHc
1•ramenprofitable•9m ago•0 comments

Palantir inks $300M deal with USDA to safeguard food supply

https://www.cnbc.com/2026/04/22/palantir-inks-300-million-deal-with-usda-to-safeguard-food-supply...
1•SockThief•11m ago•0 comments

Full Walkthrough: Workflow for AI Coding – Matt Pocock [video]

https://www.youtube.com/watch?v=-QFHIoCo-Ko
2•jamesblonde•16m ago•0 comments

Incomplete pull request results in repositories

https://www.githubstatus.com/incidents/x69zbgdyfzg0
2•alex_x•19m ago•0 comments

Show HN: Nichess – Chess with Health Points

2•wilbur_whateley•19m ago•3 comments

Agentic NixOS: Building a Safe Control Layer

https://nedkarlovich.com/research/threads/agentic-nixos/
1•birdwhistler•21m ago•0 comments

How Much LLMs is too much LLMs?

https://www.sammystraus.com/#how-much-llms-is-too-much-llms
1•sammy0910•22m ago•0 comments

Australia: Social media ban for youth has little effect

https://www.heise.de/en/news/Australia-Social-media-ban-for-youth-has-little-effect-11275244.html
3•ajdude•22m ago•0 comments

China freezes new robotaxi licenses after Baidu chaos

https://www.theverge.com/ai-artificial-intelligence/920312/china-suspends-autonomous-vehicle-perm...
2•Brajeshwar•25m ago•1 comments

Compositing and Blending – Exploring the math and intuition behind blend modes

https://nik.digital/posts/compositing-blending
1•OuterVale•25m ago•0 comments

Tangled – The next-generation social coding platform

https://tangled.org
1•j3s•25m ago•0 comments

Extending Ruzzy with LibAFL

https://blog.trailofbits.com/2026/04/29/extending-ruzzy-with-libafl/
1•ingve•27m ago•0 comments

HashiCorp co-founder says GitHub 'no longer a place for serious work'

https://www.theregister.com/2026/04/29/mitchell_hashimoto_ghostty_quitting_github/
32•terminalbraid•28m ago•5 comments

California Issues New Autonomous Vehicle Regulations

https://email.dmvonline.ca.gov/t/y-e-aklidty-ddihhitkht-v/
2•ra7•31m ago•0 comments

Reaching SOTA on deep research benchmarks by automating agent optimization

https://www.ai21.com/blog/maestro-deep-research-agents/
1•jackau•33m ago•0 comments

The AI coding config fragmentation problem nobody talks about

https://github.com/sampleXbro/agentsmesh
1•samplexBro•35m ago•0 comments

New copy of earliest poem in English, written 1,3k years ago, discovered in Rome

https://www.tcd.ie/news_events/articles/2026/caedmons-hymn-discovery/
2•giuliomagnifico•35m ago•0 comments

Long Covid Linked to Brain Changes, Cognitive Decline

https://www.medscape.com/viewarticle/long-covid-linked-brain-changes-cognitive-decline-2026a1000dhe
1•amichail•35m ago•0 comments

30 ClawHub Skills Are Quietly Recruiting Your AI Agent into a Crypto Swarm

https://www.manifold.security/blog/clawhub-clawswarm-agent-crypto-recruitment
2•axsharma•37m ago•0 comments

Training Large Language Models to Reason in a Continuous Latent Space [pdf]

https://arxiv.org/abs/2412.06769
1•thunderbong•37m 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...