frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SEC probes Jefferies over First Brands disclosures

https://www.ft.com/content/86d90ce5-5800-4514-a757-f46a38aa521d
1•zerosizedweasle•4m ago•0 comments

Apple TV Pulls 'The Hunt' Show over Plagiarism Claims

https://www.macrumors.com/2025/11/27/apple-tv-show-hunt-pulled-plagiarism-claims/
1•kotaKat•4m ago•0 comments

.NET 10 and NuGet Audit: Finding Root Packages for Transitive Vulnerabilities

https://www.appsoftware.com/blog/net-10-and-nuget-audit-identifying-root-packages-for-vulnerable-...
1•appsoftware•5m ago•0 comments

Why have so many people stopped posting on social media?

https://www.rte.ie/brainstorm/2025/1127/1546045-why-have-we-stopped-posting-on-social-media-psych...
1•austinallegro•5m ago•1 comments

Unprecedented levels of forever chemicals found in dolphins and whales

https://phys.org/news/2025-11-unprecedented-chemicals-dolphins-whales.html
1•measurablefunc•7m ago•0 comments

Idempotency Keys

https://www.morling.dev/blog/on-idempotency-keys/
1•redbell•9m ago•0 comments

A graph is worth 1000 tables

https://crimede-coder.com/blogposts/2025/GraphsBetterThanTables
1•apwheele•10m ago•0 comments

What does it mean to understand language?

https://arxiv.org/abs/2511.19757
1•sebg•11m ago•0 comments

Principles of Program Analysis

https://www.researchgate.net/publication/265352570_Principles_of_Program_Analysis
1•ibobev•14m ago•0 comments

Two truths of software development still valid in the age of AI

https://espen.wtf/articles/2025/11/two-truths-of-software-development-still-valid-in-the-age-of-ai/
2•ingve•19m ago•0 comments

Thanksgiving and the Lessons of Political Economy

https://marginalrevolution.com/marginalrevolution/2025/11/thanksgiving-and-the-lessons-of-politic...
1•shaftoe444•20m ago•0 comments

Replacing My Linux Desktop with Google Chrome

https://foxmoss.com/blog/dote/
1•foxmoss•22m ago•1 comments

Static Program Analysis

https://cs.au.dk/~amoeller/spa/
2•ibobev•24m ago•0 comments

Show HN: Daily-Updated Lists of Canadian CS Internships and New Grad Roles

1•hanzili•26m ago•0 comments

Porting Nanochat to Transformers

https://huggingface.co/spaces/nanochat-students/transformers
1•us321•29m ago•0 comments

D.C. Shooting Suspect 'Could Not Tolerate' Violence of His CIA-Backed Unit

https://www.nytimes.com/2025/11/27/us/national-guard-dc-shooting-suspect-cia-afghanistan.html
2•perihelions•29m ago•0 comments

High-Tech Employee Antitrust Litigation (2015)

https://en.wikipedia.org/wiki/High-Tech_Employee_Antitrust_Litigation
2•hackthemack•30m ago•0 comments

Europe thinks the unthinkable: Retaliating against Russia

https://www.politico.eu/article/europe-thinks-the-unthinkable-retaliating-against-russia-nato-cyb...
5•belter•32m ago•1 comments

Making complex JSON 58x faster, use 3,300x less memory, in ClickHouse

https://clickhouse.com/blog/json-data-type-gets-even-better
3•saisrirampur•32m ago•0 comments

Creating a Bespoke Data Diode for Air Gapped Networks

https://nelop.com/bespoke-data-diode-airgap/
2•sebg•33m ago•0 comments

Just-in-Time Thanksgiving Cookbook

https://cookwithbutter.com
1•edunteman•33m ago•0 comments

The Evidence That Ends the SEO and AEO Worldview

https://zenodo.org/records/17741447
1•businessmate•34m ago•1 comments

Free my pinky when scrolling

https://old.reddit.com/r/ChituSystemsOfficial/comments/1p7yuyk/free_my_pinky_when_scrolling/
2•us321•35m ago•0 comments

The Vibe Coding Advent Calendar

https://www.25daysofbuilding.com/
1•vel_cirapt_r•37m ago•1 comments

Robots and AI Are Already Remaking the Chinese Economy

https://www.wsj.com/tech/ai/ai-robots-china-manufacturing-89ae1b42
2•bookofjoe•40m ago•1 comments

What is GNOME OS? (2020)

https://blogs.gnome.org/alatiera/2020/10/07/what-is-gnome-os/
1•gudzpoz•41m ago•0 comments

AI Teddy Bears: A Brief Investigation

https://www.lesswrong.com/posts/aJAv7ky4LsH65qcx4/ai-teddy-bears-a-brief-investigation
2•nicetomeetyu•43m ago•1 comments

Ask HN: How do you trigger deployments in your workflow?

2•kingori•43m ago•1 comments

Trying Out C++26 Executors

https://mropert.github.io/2025/11/21/trying_out_stdexec/
1•ingve•46m ago•0 comments

Vex-TUI: fast and feature-rich terminal-based Excel and CSV viewer built with Go

https://github.com/CodeOne45/vex-tui
3•thunderbong•49m ago•0 comments
Open in hackernews

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

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