frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI vibe coding vs. AI vibe cracking

https://meshoskey.com/article.html
1•simonjgreen•35s ago•0 comments

The left is missing out on AI

https://www.transformernews.ai/p/the-left-is-missing-out-on-ai-sanders-doctorow-bender-bores
1•peteforde•4m ago•0 comments

Blitting the Night Away: Nichibutsu's Mahjong Koi No Magic Potion

https://nicole.express/2026/more-like-koi-yes-magic-potion.html
1•nicole_express•7m ago•0 comments

Software engineering may no longer be a lifetime career

https://www.seangoedecke.com/software-engineering-may-no-longer-be-a-lifetime-career/
1•lazy-logic•7m ago•0 comments

Europe–not US–first to authorize Moderna's combo mRNA flu-Covid vaccine

https://arstechnica.com/health/2026/04/europe-not-us-first-to-authorize-modernas-combo-mrna-flu-c...
2•akyuu•10m ago•0 comments

Show HN: Store, play and stream your iOS/macOS videos on your smart TV with Kino

https://appwared.com/apps/kino
1•mrtksn•10m ago•0 comments

Show HN: J-RAY PRO – A fast visual JSON profiler in Rust

https://j-ray-pro.com/
1•MauryWebDev•10m ago•0 comments

Sawe breaks two-hour barrier with 1:59:30 world record at London Marathon

https://worldathletics.org/competitions/world-athletics-label-road-races/news/sawe-two-hour-assef...
1•karlding•11m ago•0 comments

2H barrier broken in London marathon

https://www.theguardian.com/sport/2026/apr/26/sabastian-sawe-breaks-two-hour-barrier-london-marat...
1•misterchocolat•13m ago•0 comments

Why Lilly's Weight Loss Pill Isn't a Peptide

https://philippdubach.com/posts/why-lillys-weight-loss-pill-isnt-a-peptide/
1•7777777phil•19m ago•0 comments

Clay PCB Tutorial

https://feministhackerspaces.cargo.site/Clay-PCB-Tutorial
25•j0r0b0•22m ago•2 comments

We Traced U.S. Government Gold to a Drug Cartel

https://www.nytimes.com/2026/04/26/insider/gold-us-mint-drug-cartel.html
1•georgecmu•23m ago•0 comments

Officially Retired from Emacs

https://nullprogram.com/blog/2026/04/26/
1•susam•24m ago•0 comments

AI Water Use Distractions and Lessons for California

https://californiawaterblog.com/2026/04/26/ai-water-use-distractions-and-lessons-for-california/
1•hirpslop•25m ago•0 comments

Ask HN: What is the utility of DSA in the age of LLMs?

1•mihaigmarin•25m ago•0 comments

Prompting doesn't work Software does

https://oya.ai
1•oyadoti•28m ago•0 comments

After three months on Linux, I don't miss Windows at all

https://www.theverge.com/tech/918797/switched-to-linux-dont-miss-windows
3•cf100clunk•28m ago•1 comments

RSME: A Reactive Stability Mutation Encryption

https://zenodo.org/records/19712564
1•RanggaS•30m ago•0 comments

Superpowers is indeed game changer

https://github.com/obra/superpowers
2•zane__chen•30m ago•0 comments

Elon Musk's legal battle with OpenAI and Sam Altman will head to trial

https://finance.yahoo.com/sectors/technology/article/elon-musks-years-long-legal-battle-with-open...
1•wslh•30m ago•0 comments

Expat 2.8.0 released, includes security fixes

https://blog.hartwork.org/posts/expat-2-8-0-released/
2•spyc•31m ago•0 comments

Keep Your Identity Small (2009)

https://www.paulgraham.com/identity.html
1•downbad_•35m ago•1 comments

MinIO repository is now archived

https://github.com/minio/minio
4•xelia•35m ago•0 comments

Name in Landsat

https://science.nasa.gov/specials/your-name-in-landsat/
2•Duplicake•35m ago•1 comments

Google just solved agent identity. For Google Cloud

https://fusionauth.io/blog/agent-identity-walled-gardens
1•mooreds•39m ago•0 comments

AI and Alignment

https://chriscoyier.net/2026/04/25/ai-alignment/
1•mooreds•39m ago•0 comments

Threat actor uses Microsoft Teams to deploy new "Snow" malware

https://www.bleepingcomputer.com/news/security/threat-actor-uses-microsoft-teams-to-deploy-new-sn...
1•Brajeshwar•42m ago•0 comments

Show HN: Vibecoding apps? track and patch issues in deployment using patchly

https://patchly.cc/
1•elektrothing•42m ago•0 comments

Corpus Christi plans to declare a 'water emergency.' What does that mean?

https://www.kut.org/energy-environment/2026-04-23/corpus-christi-texas-water-emergency-crisis-res...
3•mooreds•43m ago•0 comments

New text generator built by OpenAI considered too dangerous to release (2019)

https://techcrunch.com/2019/02/17/openai-text-generator-dangerous/
3•n_e•43m ago•0 comments
Open in hackernews

Show HN: I built Locawise, a free AI tool to automate localization in projects

1•aemresafak•11mo ago
Hi HN,

I've built Locawise, an open-source Python tool to automate the often tedious process of application localization. It uses AI (OpenAI or VertexAI models) to translate new or changed strings in your language files.

It consists of two main parts:

locawise: A Python CLI tool you run locally. It detects changes in your source language files (JSON, .properties), gets translations, and updates target files. It's context-aware – you can define project context, terminology (glossary), and tone via a YAML config (i18n.yaml) to improve translation quality. locawise-action: A GitHub Action that automates this process. It can run on pushes to your main branch and create a PR with the new translations. The goal is to offer a free, developer-controlled alternative to paid localization platforms. It's designed to be efficient (async, only translates changes) and cost-effective (you control LLM usage).

GitHub (CLI tool): https://github.com/aemresafak/locawise GitHub (Action): https://github.com/aemresafak/locawise-action Quick Tutorial: https://www.youtube.com/watch?v=b_Dz68115lg

I'd love to get your feedback and answer any questions.

Comments

aemresafak•11mo ago
Hi everyone, author here!

Thanks for checking out Locawise. I started building this because I was looking for a more streamlined and cost-effective way to handle localization for my own projects. I wanted something that could leverage the power of modern LLMs for good quality translations but also give me control over context and specific terminology without being locked into an expensive subscription.

The core idea was to make localization an almost invisible part of the development workflow, especially with the GitHub Action – push your code in the source language, and let the translations follow automatically.

This is still evolving, and I'm keen to build it out based on what developers actually need. Looking forward to your thoughts and any suggestions you might have!