frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Linus Torvalds Explains What Makes Linux So Fast [video]

https://www.youtube.com/watch?v=-xbzGngfQEw
1•binyu•3m ago•0 comments

Beyond Prompt Injection: Hacking Apple's Private Cloud Compute

https://blog.sentry.security/beyond-prompt-injection-hacking-apples-private-cloud-compute/
1•sickmate•9m ago•0 comments

GitHub issues as long-term memory for coding agents

https://meshintelligence.substack.com/p/how-to-use-github-as-long-term-memory
1•meshintel•10m ago•0 comments

Bank statement PDF to CSV that runs in the browser

https://statement-to-csv.pages.dev/
1•hewkaiba•13m ago•0 comments

NOVC: Venture Capital Free

https://novc.fyi/
1•xyzzy_plugh•17m ago•0 comments

.NET on AWS Open Source Software Fund

https://github.com/aws/dotnet-foss
1•kristianp•18m ago•0 comments

2036

https://www.codevoid.net/ruminations/2026/08/09/2036.html
1•grork•19m ago•0 comments

The Ambition Project

https://www.betonit.ai/p/the-ambition-project
2•herbertl•21m ago•0 comments

Modern JavaScript Tricks for Cleaner Everyday Code

https://jsdevspace.substack.com/p/20-modern-javascript-tricks-for-cleaner
1•javatuts•23m ago•0 comments

A browser that generates every website from scratch

https://www.xda-developers.com/tried-browser-generates-every-website-from-scratch/
1•TMWNN•24m ago•1 comments

NASA chooses a once-abandoned Spanish village to broadcast the 2026 eclipse

https://www.euronews.com/next/2026/08/07/why-nasa-chooses-this-small-burgos-village-to-broadcast-...
1•jmox•26m ago•0 comments

QuiltOps – Continuous packaging for your patches

https://quiltops.dev/
1•calvinmorrison•27m ago•0 comments

I made FilmShelves, a movie collection management tool

https://filmshelves.com
1•smatthewaf•28m ago•0 comments

vLLM Serving Experiments on H100s – config beats the baseline on p95 TTFT,ITL

https://efficientagent.substack.com/p/a-better-knob-beats-more-silicon
1•bnayak25•30m ago•0 comments

Show HN: A Planet and Geology Simulation Sandbox Game in Godot

https://stevecastle.github.io/gaia-site/
1•tracerbulletx•30m ago•0 comments

Meme factories: Indonesians trade political outrage clicks for Facebook cash

https://www.theguardian.com/media/2026/aug/10/indonesia-clicks-for-cash-facebook-one-nation-us-po...
1•Barbing•34m ago•1 comments

Anything Could Become a Battleground

https://lareviewofbooks.org/article/perfect-moment-god-sex-art-culture-wars-butler/
1•lermontov•35m ago•0 comments

How Beauty Is Making Scientists Rethink Evolution

https://www.nytimes.com/2019/01/09/magazine/beauty-evolution-animal.html
1•geneticdrifts•36m ago•0 comments

Yahtzee – Ballpark Figures

https://ballparkfigures.substack.com/p/yahtzee
1•cptroot•36m ago•1 comments

Claude.md, except it's meaningful and it works

https://blog.greg.technology/2026/07/29/claude-md-except-its-meaningful-and-it-actually-works.html
1•gregsadetsky•37m ago•1 comments

Over 20k precolonial earthworks in the Southwest Amazonia

https://www.nature.com/articles/s41586-026-10835-7
1•walterbell•41m ago•0 comments

A Brief History of the U.S. Trying to Add Backdoors into Encrypted Data (2016)

https://www.atlasobscura.com/articles/a-brief-history-of-the-nsa-attempting-to-insert-backdoors-i...
2•downbad_•42m ago•0 comments

What if we let AI govern us?

https://inevolin.substack.com/p/what-if-we-let-ai-govern-us
2•iljanevo•42m ago•2 comments

Would anyone use a GummySearch alternative that searched ALL forums?

1•TylerKane•42m ago•0 comments

Streambed ships compaction using SQLite for CAS

http://streambed.dev/blog/introducing-compaction/
1•vira28•46m ago•0 comments

Show HN: Open-source local memory vault

https://github.com/Rafaelpta/litepipe
1•rafaepta•47m ago•0 comments

Life on the Uncanny Precipice

https://nsaphra.net/post/uncanny/
1•thoughtpeddler•48m ago•0 comments

The mathematical beauty of hyperbezier curves

https://linebender.org/blog/hyperbezier/
2•raphlinus•48m ago•0 comments

Nixpkgs-multiverse: every version that ever existed

https://fzakaria.com/2026/08/09/nixpkgs-multiverse-every-version-that-ever-existed
2•domenkozar•51m ago•1 comments

Show HN: Albedo – single-file listenable document database in Zig

https://github.com/klirix/albedo
3•askhatsaiapov•54m 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!