frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Church Encoding, Parametricity, and the Yoneda Lemma

https://blog.wybxc.cc/blog/parametricity/
1•g0xA52A2A•6m ago•0 comments

Null Linux

https://github.com/Duck25543/Null-Linux
1•PvsLH102•8m ago•0 comments

Whimsical Animations

https://whimsy.joshwcomeau.com
1•vismit2000•9m ago•0 comments

Texas AG sues Meta over claims that WhatsApp doesn't provide end-to-end encrypt

https://arstechnica.com/security/2026/05/texas-ag-sues-meta-over-claims-that-whatsapp-doesnt-prov...
1•joozio•12m ago•0 comments

After Automation

https://every.to/p/after-automation
1•jibcage•20m ago•0 comments

Spanish Court Declines to Fine NordVPN over LaLiga Piracy Blocking Order

https://torrentfreak.com/spanish-court-declines-to-fine-nordvpn-over-laliga-piracy-blocking-order/
3•gslin•21m ago•0 comments

The Best Windows is Linux

https://lunduke.substack.com/p/the-best-windows-is-linux
2•gargan•27m ago•0 comments

The just-say-no engineer was a ZIRP phenomenon

https://www.seangoedecke.com/the-just-say-no-engineer-was-a-zirp-phenomenon/
1•vismit2000•28m ago•0 comments

High-Throughput Chips for LLMs

https://matx.com/
1•consumer451•31m ago•0 comments

Denuvo game cracked on day 1 of launch

https://pastebin.com/jQjvNrvA
2•sensanaty•31m ago•0 comments

Parsing IPv6 Addresses Crazily Fast with AVX-512

https://lemire.me/blog/2026/05/23/parsing-ipv6-addresses-crazily-fast-with-avx-512/
2•0xedb•32m ago•0 comments

Show HN: Brev – A frictionless Android note taking app

https://play.google.com/store/apps/details?id=com.shkurta.brev&hl=en_US
1•Klaudjo_shkurta•37m ago•0 comments

Layoffs Hitting Zalando?

https://old.reddit.com/r/cscareerquestionsEU/comments/1tkx5ll/layoffs_hitting_zalando/
2•theanonymousone•37m ago•0 comments

The International Space Station is leaking (again)

https://arstechnica.com/space/2026/05/uh-oh-the-international-space-station-is-leaking-again/
1•jnord•38m ago•0 comments

AI is getting pricey, but relief is coming, but not for you

https://www.theregister.com/ai-ml/2026/05/21/ai-is-getting-pricey-but-relief-is-coming-but-not-fo...
1•jnord•40m ago•1 comments

ExtendDB – The DynamoDB API, everywhere you run code

https://extenddb.org/
2•0xedb•41m ago•1 comments

New RFC Editor Website

https://www.rfc-editor.org/
1•jerleth•42m ago•0 comments

Former US execs plead guilty to aiding tech support scammers

https://www.bleepingcomputer.com/news/security/former-us-execs-plead-guilty-to-aiding-tech-suppor...
2•jnord•43m ago•0 comments

Rubish: A Unix shell written in pure Ruby

https://github.com/amatsuda/rubish
3•winebarrel•44m ago•0 comments

Ask HN: Is $300/HR too low these days for custom full stack?

2•noduerme•45m ago•0 comments

UK economic catastrophe unless it adapts to young people rewired by smartphones

https://news.sky.com/story/uk-faces-economic-catastrophe-unless-it-adapts-to-young-people-rewired...
3•austinallegro•48m ago•1 comments

Pip 26.1 Ships Dependency Cooldowns and Experimental Lockfile Support

https://www.infoq.com/news/2026/05/pip-261-dependency-cooldowns/
2•OutOfHere•55m ago•0 comments

Show HN: TruLayer – tracing, evals, and a control loop for production LLMs

https://trulayer.ai/
2•trulayer•56m ago•0 comments

The Software Coordination Tax: Why Your 40-Engineer Team Is Shipping Like 25

https://www.forbes.com/councils/forbestechcouncil/2026/05/20/the-software-coordination-tax-why-yo...
2•RyeCombinator•1h ago•0 comments

Exploring Ref Qualifiers in C++

https://meetingcpp.com/blog/items/Exploring-ref-qualifiers-in-Cpp.html
3•signa11•1h ago•0 comments

Why are there keys on my messenger app that I don't recognize

2•ttim•1h ago•0 comments

The uno reverse public license

https://github.com/Zuhaitz-dev/URPL
2•anticensor•1h ago•0 comments

Open-source living-room entertainment system, with pretty UI made in Electron

https://github.com/charnam/ClasmeraSpace
3•charnam•1h ago•2 comments

Riyadh Leads Global Tech Growth as Cyprus Becomes Europe's Crisis Safe Haven

https://www.startupblink.com/startupecosystemreport
2•Sam6late•1h ago•1 comments

AI-Declaration.md

https://github.com/DimwitLabs/AI-DECLARATION.md
2•rapiz•1h 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...