frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

World's First: Minor Authors Public License for Expression (Maple-1.0)

https://openrockets.com/research/maple/v1/
1•interkids•5m ago•1 comments

Prosecutors allege man used AI to scrape court website

https://www.abc.net.au/news/2026-09-10/christopher-duff-to-stand-trial-over-nsw-ai-court-data-bre...
1•yeetosaurusrex•11m ago•0 comments

Artificial Intelligence Markup Language

https://en.wikipedia.org/wiki/Artificial_Intelligence_Markup_Language
2•marvinborner•13m ago•0 comments

A Design Space Exploration of Async/Await

https://cel.cs.brown.edu/blog/design-space-async-await/
1•matt_d•15m ago•0 comments

SubmitSafe

https://submitsafe.app/
2•igrik•15m ago•0 comments

Show HN: Model meets Reality: Model and test your understanding

https://modelmeetsreality.xyz/
1•sauronsrv•15m ago•0 comments

Automatic Key Exchange: faster, post-quantum secure origin handshakes

https://blog.cloudflare.com/automatic-key-exchange-for-origins/
1•ackackack•15m ago•0 comments

What AI Means for Technical Competence

https://letters.unchartedpathbreakthroughs.com/posts/what-ai-means-for-technical-competence
2•mooreds•19m ago•0 comments

The Evolution of the Agent Harness – By Dan McAteer

https://www.latent.space/p/attention-interface
1•JohnBerryman•20m ago•0 comments

Largest AI Infrastructure in Space announced by the president of France

https://www.businesswire.com/news/home/20260909411854/en/Worlds-Largest-AI-Infrastructure-in-Spac...
1•4thelol•22m ago•0 comments

Diagnosing schizophrenia is tricky. Can AI help?

https://knowablemagazine.org/content/article/mind/2026/how-ai-can-listen-for-signs-of-schizophrenia
2•knowablemag•23m ago•1 comments

Chrome tells ~1M users Magic Actions is malware, despite Safe Browsing clearance

https://groups.google.com/a/chromium.org/g/chromium-extensions/c/MUe0EkfKCnY
3•OzzyOzbour•24m ago•0 comments

Apple Unveils $1,999 Foldable iPhone Duo

https://www.bloomberg.com/news/videos/2026-09-09/apple-unveils-1-999-foldable-iphone-duo-video
1•sbulaev•25m ago•0 comments

Design for iPhone Duo

https://www.youtube.com/watch?v=do3UqxfYc3I
1•hbarka•28m ago•0 comments

Andrew Tulloch Departs Mark Zuckerberg's Meta AI Lab

https://www.wsj.com/tech/ai/star-ai-researcher-is-leaving-meta-8906e4aa
3•bobrenjc93•30m ago•0 comments

Japan's 'killing stone' splits in two (2022)

https://www.theguardian.com/world/2022/mar/07/japans-killing-stone-splits-in-two-releasing-supers...
2•robotnikman•30m ago•0 comments

Pro wrestling for reinforcement-learning ducks

https://duckfight.club
1•ecares•31m ago•0 comments

WeatherNext 3 by Google in the simplest weather app

https://weather.alen.ro/
1•alentodorov•35m ago•0 comments

Core War: three crowns on the King of the Hill

https://dm2tim.de/en/offtopic/core-war.html
2•Levitating•35m ago•0 comments

US airports to let some people without tickets pass through security

https://www.theguardian.com/us-news/2026/sep/09/airport-security-tsa-precheck
2•bookofjoe•38m ago•0 comments

HexOS Buddy Backups

https://docs.hexos.com/blog/2026-09-09
2•abraham•44m ago•0 comments

How safe are digital driver's licences?

https://www.rnz.co.nz/news/community/1309151/how-safe-are-digital-driver-s-licences
3•billybuckwheat•47m ago•0 comments

Engineering students made a self playing piano from scratch [video]

https://www.youtube.com/watch?v=Se_admCx8cM
2•duck•49m ago•1 comments

United States Ships War Material to Israel Aboard Passenger Flights

https://theintercept.com/2026/09/09/united-airlines-flights-israel-weapons-hardware-transport/
6•jbegley•50m ago•0 comments

What makes $BigTechCompany's products bad, anyway?

https://herecomesthemoon.net/2026/09/why-is-big-tech-bad/
2•Mond_•50m ago•0 comments

The IBM PC, Part 2: Tsunami

https://technicshistory.com/2026/08/29/the-ibm-pc-part-2-tsunami/
1•cfmcdonald•50m ago•0 comments

Durable execution without history replay

https://trigora.dev/blog/durable-execution-without-history-replay/
1•hypervs•51m ago•0 comments

Google pixel 11 pro fold

https://store.google.com/product/pixel_11_pro_fold?hl=en-US
1•nothrowaways•53m ago•0 comments

Ask HN: Would you use an MCP server for your personality test result?

1•LeoLeaS•55m ago•0 comments

Show HN: Jobrake: Fetch Jobs from LinkedIn and Indeed

https://github.com/eyayaw/jobrake
1•eyayaw•57m 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!