frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Are warnings of uncontrollable AI coming true?

https://www.theguardian.com/technology/2026/sep/05/uncontrollable-ai-artificial-general-intellige...
1•fittingopposite•40s ago•0 comments

Why Google is helping homeowners buy heat pumps

https://www.fastcompany.com/91601909/why-google-is-helping-homeowners-buy-heat-pumps
1•caseyf7•2m ago•0 comments

KingFy – an AI super app orchestrating 1,200 specialized agents

https://www.kingfy.app
1•kingfyapp•3m ago•0 comments

Show HN: Myjs An accidental pure-Python JavaScript interpreter

https://pypi.org/project/myjs/
2•byteface•4m ago•0 comments

Context Layer for Product Decisions

https://www.atisbo.dev
1•Coleg•5m ago•0 comments

Trump threatens to halt trade with top partners unless Fed cuts rates

https://www.cnbc.com/2026/09/04/trump-fed-rates-jobs-trade.html
2•ivell•5m ago•0 comments

The Inter Typeface Family

https://rsms.me/inter/
1•azhenley•6m ago•0 comments

An Accidental Blackboard

https://martinfowler.com/articles/exploring-gen-ai/an-accidental-blackboard.html
1•saikatsg•6m ago•0 comments

Mudlarking: Searching the River Thames for Historical Artifacts [video]

https://www.youtube.com/watch?v=HBuixfZC-Ao
1•kzrdude•7m ago•0 comments

DartNative: Beyond the Limits of React Native and Flutter

1•iosephmagno•7m ago•0 comments

Reading About the (2008) Financial Crisis: A 21-Book Review, by Andrew Lo (2012) [pdf]

https://www.stat.berkeley.edu/~aldous/157/Papers/lo.pdf
1•ggcr•8m ago•0 comments

C++26: Std:Hive

https://www.sandordargo.com/blog/2026/09/02/cpp26-hive
1•jandeboevrie•9m ago•0 comments

People Keep Sneaking into New York City Sewers. No One Knows Why

https://www.nytimes.com/2026/08/30/nyregion/manholes-sewers-nyc.html
1•paulpauper•11m ago•0 comments

Continuous Profiling and UI Profiling

https://sentry.io/changelog/continuous-profiling-and-ui-profiling/
1•imangsgu•11m ago•0 comments

We built our house for LAN parties

https://lanparty.house/
3•fittingopposite•11m ago•0 comments

Controlling when CSS custom property values are computed

https://jakearchibald.com/2026/css-custom-property-compute-time/
1•ingve•13m ago•0 comments

Show HN: Genetic Distance Map

https://p.migdal.pl/genetic-distance-map/
1•stared•15m ago•0 comments

Another heart drug fails, previously assumed to be the vanguard of a new era

https://www.nytimes.com/2026/09/04/science/heart-drug-fails-novartis-pelacarsen.html
2•marojejian•16m ago•1 comments

Sci-Fi Films Are Becoming More Optimistic

https://storytellingprogress.substack.com/p/sci-fi-films-are-becoming-more-optimistic
1•paulpauper•17m ago•2 comments

User-guide-driven development with coding agents

1•hosamsh•18m ago•0 comments

The Kalshi Citizen Debt Forecast (CDF)

https://marginalrevolution.com/marginalrevolution/2026/09/the-kalshi-citizen-debt-forecast-cdf.html
1•paulpauper•18m ago•0 comments

Norway could become the first country to ban AI smart glasses

https://neow.in/cmUxYnB3
1•bundie•21m ago•0 comments

Bootstrapping Mechanical Correctness

https://artagnon.com/art/regress
1•artagnon•22m ago•0 comments

A sourced timeline of 249 documented AI milestones

https://achievements.ai/
1•umermirzapk•22m ago•0 comments

Show HN: Openrobots

https://openrobots.vercel.app
1•richard_baecker•26m ago•0 comments

Show HN: I made a list of the vulnerabilities I got on my blog

https://seiji.reachpad.app/cves.html
1•sakuraiben•28m ago•0 comments

Least convenient location in Los Angeles

https://notes.secretsauce.net/notes/2015/08/16_least-convenient-location-in-los-angeles-from-kore...
1•dima55•29m ago•0 comments

$15M effort to get to Alpha Centuri in 80K years

https://arstechnica.com/space/2026/09/private-group-wants-to-launch-cheapest-possible-mission-to-...
2•gumby•29m ago•0 comments

Copernicus: Daily global sea surface temperature breaks 2024 record

https://climate.copernicus.eu/copernicus-daily-global-sea-surface-temperature-breaks-2024-record
3•gmays•31m ago•0 comments

Yogurt and human health across history, culture, and science

https://www.sciencedirect.com/science/article/pii/S1279770726001752
2•geox•33m ago•0 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!