frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

We Fixed UniFi's Slow PPPoE Performance with PPPoE Half-Bridge

https://arcbox.dev/blog/unifi-pppoe-half-bridge-acceleration
1•uneven9434•1m ago•0 comments

Free Press Release Sites List

https://galaxyonknowledge.substack.com/p/what-are-press-release-sites-free
1•galaxyonknowled•5m ago•0 comments

Bonsai: Janestreet's UI Library

https://github.com/janestreet/bonsai
1•KolmogorovComp•6m ago•0 comments

Team America: Yen Police

https://www.ft.com/content/f6d563ee-9238-4f82-a848-79f2478326bd
1•JumpCrisscross•6m ago•0 comments

AI Is a Race Car, Not Autopilot

https://ryansouthgate.com/ai-is-a-racecar/
1•ry8806•11m ago•0 comments

AI slop blocked a real $200K macOS flaw

https://the-decoder.com/a-real-macos-flaw-worth-200k-went-unreported-because-apples-bug-bounty-in...
1•BlueBerry2001•12m ago•0 comments

The Java Story – The Official Documentary [video]

https://www.youtube.com/watch?v=ZqGSg4b_cZA
1•chillax•24m ago•0 comments

CodeBot: Full details on our New AI for Delphi

https://blogs.remobjects.com/2026/07/30/codebot-the-story/
4•vintagedave•26m ago•0 comments

Most Australian teens on social media three months after under-16 ban began

https://www.japantimes.co.jp/news/2026/07/31/asia-pacific/australia-teens-social-media-ban/
1•01-_-•26m ago•0 comments

1 in 4 people in Japan believes AI could replace friends and family: poll

https://www.japantimes.co.jp/news/2026/08/02/japan/poll-ai-replace-friends-family/
4•01-_-•27m ago•1 comments

GLP-1s and their unknown impacts on human creativity

https://hereisyourbrain.substack.com/p/should-we-all-take-glp1
1•prdgl_daughter•28m ago•0 comments

Faster floating point math with Rust's new API

https://pythonspeed.com/articles/faster-float-math-rust/
1•birdculture•28m ago•0 comments

Don't Take the Black Pill (Text Adaptation)

https://andrewkelley.me/post/dont-take-black-pill.html
2•gabrielgio•29m ago•0 comments

Octane – React's programming model, compiled

https://octanejs.dev
2•nnx•32m ago•0 comments

Can Animals Be Right- or Left-Pawed?

https://www.discovermagazine.com/the-animal-kingdom-is-full-of-righties-and-lefties-42164
1•thunderbong•33m ago•0 comments

Travel

https://www.google.com/
1•BrentLakin•33m ago•1 comments

How to Switch from Windows to Linux

https://sprune.com/blog/how-to-switch-from-windows-to-linux/
1•nreece•35m ago•1 comments

Show HN: Daily Math Puzzle

https://dozenal.game
1•sarreph•38m ago•0 comments

Police Surveillance Technology: Last Week Tonight with John Oliver (HBO) [video]

https://www.youtube.com/watch?v=lnBPhelCdWE
3•jhonovich•44m ago•0 comments

Pipe – A runtime where AI operations are language primitives

https://pipe-lang.com
1•harrymachura•45m ago•0 comments

A C++ toolchain from 357 bytes, in Bazel

https://fzakaria.com/2026/08/01/a-c++-toolchain-from-357-bytes-in-bazel
1•ingve•48m ago•0 comments

Napoleon (1926)

https://gutenberg.org/cache/epub/79253/pg79253-images.html
1•petethomas•50m ago•0 comments

Show HN: Eight: a symbolic, indentation-based programming language

https://git.disroot.org/EightLang/Eight/src/branch/alpha
1•Vextoly•51m ago•1 comments

How rogue officers turned a nationwide camera network into a tool for stalking

https://www.washingtonpost.com/technology/2026/08/02/how-police-officers-used-vast-network-camera...
3•baranul•56m ago•0 comments

Sony BMG copy protection rootkit scandal from 2005

https://en.wikipedia.org/wiki/Sony_BMG_copy_protection_rootkit_scandal
2•thinkingemote•59m ago•0 comments

Fastmail offers EU data region

https://www.fastmail.com/blog/fastmail-offers-eu-data-region/
4•jamesog•1h ago•1 comments

Show HN: ssh paint.dn.ht

1•dhotson•1h ago•0 comments

The Shape of Things to Come

https://yegge.ai/essays/the-shape-of-things-to-come/
3•tosh•1h ago•1 comments

What the Bliss Taught Us

https://daniel.haxx.se/blog/2026/08/03/what-the-bliss-taught-us/
2•robin_reala•1h ago•0 comments

I stopped trusting USB-C cable labels and started testing them

https://www.makeuseof.com/i-stopped-trusting-usb-c-cable-labels-started-testing-with-meter-instead/
2•baranul•1h 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!