frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Zcomplete – Shell Typo Correction

https://github.com/omarfakih1/zcomplete
1•omarfakih•1m ago•1 comments

AI datasets (2.6k entries) – automated collection, updated daily

https://huggingface.co/gemmozero
1•LegionAPI•3m ago•0 comments

Programming Language Semantics and Memory Safety

https://burakemir.ch/post/formal-semantics/
1•birdculture•9m ago•0 comments

Show HN: Budgethole.com – Close the US federal deficit yourself

https://budgethole.com
1•polocode•10m ago•0 comments

US corporate AI debt surge tests investor limits as fatigue emerges

https://www.reuters.com/legal/transactional/us-corporate-ai-debt-surge-tests-investor-limits-fati...
3•1vuio0pswjnm7•10m ago•0 comments

Show HN: 26-node n8n workflow for scoring and routing B2B leads

https://n8n.io/workflows/18528-score-and-route-b2b-website-leads-with-google-sheets-and-gmail/
1•tinyopsstudio•11m ago•0 comments

Austrian mountain town [Leoben] finds niche in AI boom

https://techxplore.com/news/2026-08-austrian-mountain-town-niche-ai.html
1•mdp2021•12m ago•0 comments

Meta is latest "tech" giant to land in her courtroom. Meet YGR

https://www.cnbc.com/2026/08/22/meet-yvonne-gonzalez-rogers-judge-taking-on-meta.html
1•1vuio0pswjnm7•13m ago•0 comments

Show HN: Kloni – Keyboard-first mind mapping for macOS with tasks built in

https://kloni.app/
1•maketrueco•17m ago•0 comments

Sydney Marathon medal mistakenly depicts Munich stadium

https://www.bbc.com/news/articles/cvg92y1wzn8o
1•epestr•19m ago•0 comments

Destiny Installers Ds-TV installers

https://destinyinstallers.co.za/
1•takundagava•23m ago•1 comments

NYTimes opinion article proposes default as a way to deal with US National debt

https://www.nytimes.com/2026/08/22/opinion/us-debt-40-trillion.html
1•killingtime74•24m ago•0 comments

Show HN: SpotWarp – Zero-loss failover & backup for Spot GPUs

https://github.com/enplabs/spotwarp
1•choi5844•27m ago•0 comments

How Big Tech Captured American Schools

https://www.nytimes.com/2026/08/23/business/schools-big-tech-google-microsoft.html
1•sbulaev•27m ago•0 comments

Iranian hackers shut down UK power plant for 4 days

https://www.telegraph.co.uk/news/2026/08/22/iranian-hackers-shut-down-uk-power-plant/
2•giuliomagnifico•31m ago•0 comments

I gave Qwen 3.8 27B a reverse-engineering job and it finished in 30 minutes

https://www.xda-developers.com/qwen-3-8-27b-reverse-engineering-job-frontier-model/
1•raybb•31m ago•0 comments

I Made the First "Link Compressor"

https://www.youtube.com/watch?v=TOr1Vvji6jA
1•conferza•32m ago•0 comments

25 Years of Mixxx Intergalactic DJ Contest

https://mixxx.org/news/2026-08-23-25_years_of_mixxx_dj_contest/
1•SamWhited•32m ago•0 comments

What if coding agents didn't have to read code?

https://benzi.fly.dev/about
1•showhz•33m ago•1 comments

AI Writing Without the Slop

https://sfactory.dev
1•jasfi•34m ago•1 comments

Show HN: Gibbous – Hide the useless parts of GitHub UI

https://netanel-haber.github.io/gibbous/
1•yikestra•34m ago•0 comments

Ptrclassify – guessing usage and location from reverse-DNS PTR hostnames

https://github.com/adulau/ptrclassify
1•adulau•35m ago•0 comments

Canada now 'at war' with United States over trade, Prime Minister says

https://www.theglobeandmail.com/canada/article-canada-us-trade-deal-tariffs-mark-carney-donald-tr...
2•Fellwaa•35m ago•1 comments

Show HN: ArchSentry – Deterministic architectural enforcement for CI

https://github.com/comerade2134/archsentry
2•light82083•40m ago•0 comments

Mature Optimization: An Introduction

https://carlos.bueno.org/optimization/
2•luispa•42m ago•0 comments

The Strange Foods

https://medium.com/luminasticity/the-strange-foods-0624e47c11f4
1•bryanrasmussen•43m ago•0 comments

Suggestions from Qwoted "Experts" on How to Revitalize IEEE

https://techblog.comsoc.org/2026/08/20/suggestions-from-qwoted-experts-on-how-to-revitalize-ieee/
1•jruohonen•45m ago•0 comments

Ask HN: What made you stop relying on tutorials?

2•codst•52m ago•2 comments

"Considered Harmful" Essays Considered Harmful (2002)

https://meyerweb.com/eric/comment/chech.html
1•matada_•55m ago•0 comments

The Sloppification of Peptides

https://henryaj.substack.com/p/the-sloppification-of-peptides
10•henryaj•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!