frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I made a linter using Jev for things a regular linter can't catch

https://github.com/darkmatter/adhere
1•czxtm•1m ago•0 comments

Show HN: Hike – Go-like systems language for tiny WASM/LLVM

https://github.com/kanryu/hike-lang
1•KATOKanryu•3m ago•0 comments

Show HN: An AI interviewer that pushes back on your system design trade-offs

https://prepd.tech/
1•Prepd•5m ago•0 comments

Tribute Page for Mum's Birthday

https://oreogundipe.dev/mum/
1•ogundipeore•7m ago•0 comments

Why Australia chose the biggest political stage to reveal OpenAI hack

https://www.bbc.com/news/articles/cr3eqk15ld14o
1•hackernj•8m ago•0 comments

Twenty-First Memory

https://rorz.io/writing/twenty-first-memory
1•sarreph•12m ago•0 comments

From S3 to GPU in One Copy

https://spiraldb.com/blog/from-s3-to-gpu-in-one-copy
1•surprisetalk•12m ago•0 comments

Show HN: Organic OS – An over-engineered biological cellular OS in Rust

https://github.com/strahinjastojanovic826-code/organic_os
1•srbin•13m ago•0 comments

A.I. Has Made Me a Better Doctor. It's Made Med Students Worse

https://www.nytimes.com/2026/09/25/opinion/ai-doctor-medical-students.html
1•cainxinth•13m ago•0 comments

Database and Map of Flock Surveillance Cameras

https://flocksurveillance.org/
1•elgertam•14m ago•0 comments

The Test

https://tante.cc/2026/09/24/the-test/
2•latexr•18m ago•0 comments

I'm Tired of Being on the Network

https://matduggan.com/im-tired-of-being-on-the-network/
1•sagacity•18m ago•0 comments

What is mathematics now, and what should it be?

https://arxiv.org/abs/2608.23218
1•butokai•19m ago•0 comments

Show HN: StackReplay – analyze and replay your AI coding history locally

https://stackreplay.com
1•tsouth2•20m ago•0 comments

I Reached My First 100 GitHub Stars (and Why It Was Harder Than Fundraising)

https://medium.com/@MirArshadTalpur/how-i-reached-my-first-100-github-stars-and-why-it-was-harder...
1•Arshad-Talpur•23m ago•1 comments

Show HN: Modos E-Ink Screen Framework 13 Laptop

https://www.thingiverse.com/thing:7413807
2•cittadhammo•23m ago•0 comments

The AI Apocalypse Is Boring Now

https://martinrobbins.substack.com/p/the-ai-apocalypse-is-extremely-boring
2•AnodicElegy•24m ago•0 comments

French local authorities to replace WhatsApp with sovereign encrypted messaging

https://www.computerweekly.com/news/366651220/French-local-authorities-to-replace-WhatsApp-with-s...
1•beardyw•24m ago•1 comments

Show HN: Threshold Cryptography for AI Agents Using Payments and Digital Assets

https://github.com/tkeeper-org/tkeeper
1•_qnt•24m ago•0 comments

Show HN: Native RSS Reader for Mac, iPhone and iPad

https://apps.apple.com/us/app/gotcha-rss-feed/id6783929706
1•mundanevoice•25m ago•0 comments

Show HN: iPhone Duo simulator in the browser (no waitlist, agents CLI)

https://vibeview.io/platforms/iphone-duo-simulator/
1•robkdev•25m ago•0 comments

How many strings can you create per second?

https://twitter.com/lemire/status/2103454566645710975
1•tosh•27m ago•0 comments

Bugpocalypse, or reporting bugs in an AI age

https://www.qemu.org/2026/09/23/bugs/
2•Tomte•27m ago•0 comments

Ask HN: How do you use LLMs to secure your code and services?

2•cpa•30m ago•0 comments

How to Nurture Plants and Your Kid's Curiosity

https://worldsensorium.com/how-to-nurture-plants-and-your-kids-curiosity/
1•dnetesn•30m ago•0 comments

Remembering the Future: Blade Runner

https://blue-continuum.com/remembering-the-future-blade-runner
1•dnetesn•32m ago•0 comments

Planning with Agents: Divided Worlds, Boundary Objects, and Thicker Interfaces

https://maggieappleton.com/planning-agents
1•surprisetalk•32m ago•0 comments

Room to Wonder

https://rafaelmostert.com/blog/2026/09/room-to-wonder/
1•MrGLaDOS•33m ago•0 comments

Famous actors arriving in the vertical drama no longer just bring romance

https://www.duanju.news/en/post/famous-actors-duanju-romance
1•lbostral•36m ago•0 comments

The Cryptopals Crypto Challenges

https://cryptopals.com/
1•sebg•38m 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!