frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Asia is now buying America and nobody is talking about it

https://asia.nikkei.com/opinion/asia-is-now-buying-america-and-nobody-is-talking-about-it
1•alephnerd•46s ago•0 comments

Half of Bitcoin in circulation is underwater for the first time since 2022

https://sherwood.news/crypto/half-of-the-bitcoin-supply-in-circulation-is-underwater-for-the-firs...
2•gmays•3m ago•0 comments

The Fable 5 Export Controls root of takedown request

https://www.lutasecurity.com/post/the-fable-5-export-controls-harm-us-cyber-defense
1•dawie•6m ago•0 comments

Is CPU design hitting a (soft) speed limit?

1•leecommamichael•13m ago•0 comments

Real-Time NYC rat map

https://ratflow.nyc/
1•UnitedOfTransit•15m ago•1 comments

Optique 1.1.0: Command discovery, value parsers, and ordered grammars

https://github.com/dahlia/optique/discussions/834
1•dahlia•20m ago•0 comments

Phoenix mostly doesn't drink Colorado River water

https://signaldoctrine.substack.com/p/the-allocation
1•SignalDoctrine•22m ago•0 comments

Note on Rio 3.5 Open

https://twitter.com/IplanRio_rj/status/2066693494769348946
1•thimabi•23m ago•0 comments

What one country's experiment says about attempts to boost birth rates

https://www.bbc.co.uk/news/articles/c5yzdr4ygdno
2•mmarian•32m ago•0 comments

I built a notes app powered by the model that powers Apple Intelligence

https://apps.apple.com/us/app/fog-on-device-ai-notes/id6760272134
1•akshatsaladi•38m ago•1 comments

Ask HN: What was the last thing you built on Fable 5

1•ddmma•41m ago•0 comments

In the Matter of OpenAI vs. LangGraph (2025)

https://www.latent.space/p/oai-v-langgraph
1•mooreds•42m ago•0 comments

DOJ Lawyers Argue xAI Is 'Vital' for National Security in NAACP Lawsuit

https://www.wired.com/story/doj-lawyers-argue-xai-vital-national-security-naacp-lawsuit/
2•ilreb•43m ago•0 comments

EU AI: the fables we told ourselves

https://pleias.ai/blog/fable-eu
1•mooreds•43m ago•0 comments

ShopFoundry – Turn Etsy listings into better titles, tags and descriptions

https://www.shopfoundry.app/
1•daisyjin•44m ago•0 comments

Distro Fighter game: Find your Linux distro and desktop

https://distrofighter.com/
3•ashitlerferad•56m ago•0 comments

Age Verification in Monolith OS

https://monolith-project.org/blog/age-verification/
1•rickcarlino•58m ago•1 comments

Safety Ideas, and a Testable Path

1•GrizzlyMedicine•1h ago•0 comments

AI efficiency gains come at a high energy cost

https://www.ft.com/content/7f1c81ac-775b-4f52-a650-7804e4734d5b
1•1vuio0pswjnm7•1h ago•0 comments

Predictive Data Debugging: Reveal and Shape What Models Learn Before You Train

https://www.goodfire.ai/research/predictive-data-debugging
1•gmays•1h ago•0 comments

Frederic Tudor

https://en.wikipedia.org/wiki/Frederic_Tudor
3•thunderbong•1h ago•0 comments

How Many Elementary Particles Are There, Really?

https://www.quantamagazine.org/how-many-elementary-particles-are-there-really-20260615/
1•ProAm•1h ago•0 comments

Hardest IT roles to fill in 2026 and what's changed

https://www.cio.com/article/4184685/the-11-hardest-it-roles-to-fill-in-2026-and-whats-changed.html
5•WaitWaitWha•1h ago•1 comments

Leaked from Russia: 18 Videos of the Fuel Crisis Growing Fast [video]

https://www.youtube.com/watch?v=yIj3CLqsOXs
1•consumer451•1h ago•0 comments

A weekly read on the US hay market

https://haywireag.com/
2•mooreds•1h ago•0 comments

Microsoft turns to AWS as GitHub faces AI capacity crunch

https://runtimewire.com/article/microsoft-github-aws-ai-capacity-crunch
83•ilreb•1h ago•24 comments

Anthropic Sued over Alleged False Advertising on Claude Max Subscription Limits

https://www.cnet.com/tech/services-and-software/anthropic-sued-alleged-false-advertising-claude-m...
5•SilverElfin•1h ago•0 comments

6th Finger Project (2022) [video]

https://www.youtube.com/watch?v=232jn-Vu6Rk
1•nivethan•1h ago•0 comments

Australia to probe assault claims by Gaza flotilla activists against Israeli[..]

https://www.bbc.com/news/articles/clyx4eny41zo
2•grugagag•1h ago•0 comments

Library

https://benbrown.com/library/
1•toomuchtodo•1h ago•1 comments
Open in hackernews

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

1•aemresafak•1y 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•1y 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!