frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Aspirin can reduce the risk of cancer – and we're starting to understand why

https://www.bbc.com/future/article/20260420-cancer-how-aspirin-may-be-a-powerful-new-weapon-again...
1•ranit•3m ago•0 comments

Show HN: A P2P Network Where Agents Collaborate on Code Optimization

https://community.computer/
1•lftherios•5m ago•0 comments

High Performance Git

https://gitperf.com/
1•handfuloflight•6m ago•0 comments

Geo Content Writer: a backlog-first system for AI visibility content

https://github.com/dageno-agents/geo-content-writer
3•timdageno•8m ago•0 comments

Show HN: Data-driven GEO and marketing agent platform

https://dageno.ai
5•timdageno•18m ago•0 comments

SpaceX is working with Cursor and has an option to buy the startup for $60B

https://techcrunch.com/2026/04/21/spacex-is-working-with-cursor-and-has-an-option-to-buy-the-star...
1•thiele•19m ago•0 comments

Reflecting on 50 years of environmental innovation

https://blogs.sas.com/content/sascom/2026/04/22/reflecting-on-50-years-of-environmental-innovation/
1•salkahfi•20m ago•0 comments

DuckDB Kernel – analytical execution runtime for Jupyter

https://github.com/hugr-lab/duckdb-kernel
1•articsputnik•24m ago•0 comments

XOR'ing a register with itself is the idiom for zeroing it out. Why not sub?

https://devblogs.microsoft.com/oldnewthing/20260421-00/?p=112247
3•ingve•24m ago•0 comments

Ask HN: Is USA at war with the rest of the world now?

2•roschdal•24m ago•1 comments

Creem Magazine is back in print and online after 33 years (2022)

https://sandboxworld.com/creem-magazine-is-back-in-print-and-online-after-33-years/
1•bjhess•29m ago•0 comments

Claude Cowork against your own cloud inference provider

https://claude.com/docs/cowork/3p/overview
2•nrsapt•30m ago•2 comments

Show HN: GPT-Image-2 Prompts

https://github.com/magiccreator-ai/awesome-gpt-image-2-prompts
1•kevinhacker•33m ago•0 comments

We found most apps send PII to LLMs and built a 2 line fix

https://getredacta.com/
2•SandiaDevGroup•39m ago•1 comments

Mistral Vibe

https://mistral.ai/products/vibe
2•hecanjog•40m ago•0 comments

Zappa: An AI powered mitmproxy

https://geohot.github.io//blog/jekyll/update/2026/04/15/zappa-mitmproxy.html
1•WithinReason•40m ago•0 comments

Show HN: Vibe Coding Games in Minutes

https://thornwood.bsct.so/
1•amin_biscuit•41m ago•0 comments

Valve's new Proton 11 ARM beta gets Hollow Knight on the Ayn Odin 2 Portal

https://www.notebookcheck.net/Valve-s-new-Proton-11-ARM-beta-gets-Hollow-Knight-Silksong-running-...
1•happymellon•44m ago•1 comments

The PowerShell-Haters Handbook

https://telcontar.net/Misc/rants/PowerShell
2•Mr_Minderbinder•45m ago•0 comments

Pioneer: Vibetune Your LLMs

https://pioneer.ai/
1•handfuloflight•46m ago•0 comments

Agents with Taste – How to transfer taste into an AI

https://emilkowal.ski/ui/agents-with-taste
2•dglzab•53m ago•0 comments

The FeMo-cofactor and classical and quantum computing

https://quantumfrontiers.com/2026/03/12/the-femo-cofactor-and-classical-and-quantum-computing/
1•EvgeniyZh•53m ago•0 comments

The Three Layers of Software Engineering

https://layers.lifebeyondfife.com/
1•lifebeyondfife•54m ago•0 comments

Open WebUI v0.9.0 adds desktop app with task scheduling

https://github.com/open-webui/open-webui/releases/tag/v0.9.0
2•simonjgreen•1h ago•0 comments

Show HN: DoShare Personal Cloud

https://cloud.doshare.me/auth/signup
1•vednig•1h ago•0 comments

Rspack 2.0

https://www.rspack.dev/blog/announcing-2-0
2•maxloh•1h ago•0 comments

A Man Who Invented the Future

https://hedgehogreview.com/web-features/thr/posts/the-man-who-invented-the-future
1•apollinaire•1h ago•0 comments

Show HN: Irregular German Verbs – a simple app, no ads or tracking

https://bacist.com/german-irregular-verbs-app/
5•baCist•1h ago•2 comments

China, India place strategic bets on clean energy (H2) out of favour in the West

https://www.reuters.com/sustainability/boards-policy-regulation/china-india-place-strategic-bets-...
2•alephnerd•1h ago•1 comments

Panipat: The Rise of the Mughals

https://www.historytoday.com/archive/feature/panipat-rise-mughals
1•Thevet•1h 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!