frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GitHub dipped 7%, while both AI labs were down

https://claude.ai/public/artifacts/2368658e-60f2-4f51-8883-8d72738ba7ce
2•Topfi•1m ago•1 comments

Watermarks Track AI Generated Content [video]

https://www.youtube.com/watch?v=kVXp6UNVPTo
2•moebrowne•2m ago•0 comments

The $1 Trump Coin

https://www.theguardian.com/us-news/2026/sep/02/trump-one-dollar-coin
1•flyaway123•2m ago•0 comments

GPT-6 Astra: an automated AI Engineer you can hire for <$6 an hour

https://www.latent.space/p/astra
2•swyx•4m ago•0 comments

WebMCP DJ – BananaLabs

https://devpost.com/software/bananalabs-webmcp-dj
1•kushagra525•4m ago•1 comments

Daybreak for Frontline Defenders: $1B to protect essential services

https://openai.com/index/daybreak-for-frontline-defenders
1•kuberwastaken•7m ago•0 comments

A paradigm shift in text selection

https://ishmael.textualize.io/blog/shift-select/
1•willm•9m ago•0 comments

Show HN: Building AI agents client-side JavaScript

1•stephenblum•12m ago•1 comments

Www.whitehouse.gov/Arcade/

https://www.whitehouse.gov/arcade/
4•typeofhuman•17m ago•0 comments

Your CTO Job Description Is a Confession

https://jasmor.substack.com/p/your-cto-job-description-is-a-confession
4•mooreds•17m ago•0 comments

AI Automation for Government Contracting

1•ranveergill•18m ago•0 comments

A new way to store thermal energy (2017)

https://news.mit.edu/2017/new-way-store-thermal-energy-1117
2•Retro_Dev•18m ago•0 comments

Microsoft slashes Xbox Cloud Gaming to just 15h/month for Ultimate subscribers

https://www.theverge.com/news/989166/microsoft-xbox-cloud-gaming-hourly-limits-changes
1•realsarm•20m ago•1 comments

MockBase – record real API traffic and replay it as a mock

https://mockbase.org/
2•xerat•21m ago•0 comments

A look at coding agent benchmarks, and what may be interesting next

https://tuneloop.io/blog/coding-agent-benchmarks
1•behat•23m ago•0 comments

Muscles talk to the brain to fight depression

https://www.nature.com/articles/s41380-026-03651-y
5•luispa•24m ago•0 comments

Revo Programming Language

https://revo.lung.fyi/
2•birdculture•24m ago•0 comments

Which tools do Claude, Codex and Cursor choose? We measured 17k runs to find out

https://armature.tech/blog/which-tools-coding-agents-install
8•screm•25m ago•1 comments

Ask HN: Could AI Eventually Build God?

3•olirex99•26m ago•2 comments

Fixing Seagate's LaCie hard drive array for the ‪ theslowmoguys [video]

https://www.youtube.com/watch?v=Sn_o8kBcjzI
1•GeoAtreides•27m ago•0 comments

Give Me 12 Minutes and I'll Give You 30 Years of Productivity Advice [video]

https://www.youtube.com/watch?v=MN_LkumE3Ig
1•gmays•29m ago•0 comments

Virginia Community Voids a $100B Data Center Project

https://www.bloomberg.com/news/features/2026-09-02/how-a-revolt-toppled-a-100-billion-data-center...
4•gen220•32m ago•1 comments

If a startup worth your career

https://www.thetrueengineer.com/p/ego-equity-or-exit-checklist-to-decide
8•adletbalzhanov•35m ago•1 comments

Over 700 games launched on Steam in one week – 74% had fewer than 10 reviews

https://www.gamesindustry.biz/over-700-games-launched-on-steam-in-one-week-for-the-first-time-tho...
4•speckx•38m ago•0 comments

Porting the RAD Debugger to macOS

https://robert.wittams.com/posts/porting-the-rad-debugger-to-macos/
1•gmcabrita•40m ago•0 comments

Clockwork Orange (Plot)

https://en.wikipedia.org/wiki/Clockwork_Orange_(plot)
3•vinnyglennon•41m ago•0 comments

A hungry woman is easier to dismiss than a well-fed woman

https://aeon.co/essays/a-hungry-woman-is-easier-to-dismiss-than-a-well-fed-woman
4•gmays•41m ago•0 comments

Social Policy Builds Financial Markets

https://economicsociology.org/2026/08/28/how-social-policy-builds-financial-markets/
1•kome•42m ago•0 comments

LightAudit Score – Lighthouse and PageSpeed Insights in one local console

https://lightauditscore.com
2•crawlforgedev•43m ago•0 comments

Tardigrade: Framework for building modular agents around an immutable event log

https://tardigrade.sh/
1•handfuloflight•44m 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!