frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MUNI is too broke to use more eco-friendly buses

https://sfstandard.com/2026/09/14/muni-skips-electric-buses-fiscal-crisis/
1•kaycebasques•28s ago•0 comments

Types of Search Queries: A Practical Map

https://www.searchplex.net/blog/types-of-search-queries
1•splxai•1m ago•0 comments

Show HN: I made an 8 bit game that teaches beginners to pwn basic C programs

https://github.com/udbhav-s/password-dungeon
1•udbhavs•1m ago•0 comments

VibeSafe Builder – build and launch AI apps with security checks

https://vibesafebuilder.com/
1•sabahatghauri•1m ago•0 comments

Google SearchGuard. Anti-Bot System Exploring

https://igorkozlowski.substack.com/p/google-searchguard-anti-bot-system
1•igor-lemon•1m ago•0 comments

New EU KIDS Act will restrict social media for under-15s

https://www.siliconrepublic.com/business/new-eu-kids-act-will-restrict-social-media-for-under-15s
1•rbanffy•2m ago•0 comments

ProductSpec – Open standard for software intent in the AI agent era

https://github.com/gokulrajaram/ProductSpec
1•yellow_postit•4m ago•0 comments

Six misconceptions about large language models

https://academic.oup.com/pnasnexus/article/5/7/pgag236/8728241?login=false
1•Anon84•4m ago•0 comments

Show HN: KaozKit – JavaScript LLM agents on an engine built for microcontrollers

https://github.com/sebastien-burel/KaozKit
1•sebastienburel•5m ago•0 comments

China tightens travel restrictions for citizens

https://www.bbc.com/news/articles/cqe8x6gkk250o
1•alephnerd•5m ago•0 comments

Heart damage may occur from getting too much light at night

https://www.nbcnews.com/health/heart-health/heart-damage-light-exposure-too-much-at-night-researc...
1•gmays•6m ago•0 comments

Show HN: Panel – A research workspace where the agent can build its own panes

https://github.com/greentfrapp/panel
2•greentfrapp•6m ago•0 comments

Dutch key Defense speeches this year appear to have been fully AI-generated

https://nltimes.nl/2026/09/12/key-defense-speeches-year-appear-fully-ai-generated-analysis
1•Betelbuddy•7m ago•0 comments

We built a graph database service for agent memory

https://blog.getzep.com/why-we-built-a-graph-database-service-for-agent-memory/
1•roseway4•8m ago•0 comments

Sovereign: A Unified GPU Inference Substrate (Fractal Memory, Manifold Routing)

https://github.com/CuppaTea1983/Sovereign/tree/V1
1•michaelrickynea•9m ago•0 comments

AI slowdown: why Altman, Amodei and Musk suddenly agree

https://www.youtube.com/watch?v=y9IgWhTTt4U
1•frag•9m ago•1 comments

Effects of music training on the child's brain and cognitive development

https://pubmed.ncbi.nlm.nih.gov/16597769/
2•taubek•10m ago•0 comments

Markdown feature flags your coding agent can install and manage for you

https://www.dif.sh
1•Herzogda•10m ago•0 comments

Cybersecurity Has an AI Doomer Problem [video]

https://www.youtube.com/watch?v=KMf2RDC5Dyg
1•gessha•10m ago•1 comments

Aside – Meeting notes as Markdown and local dictation for macOS

https://heyaside.com/
1•dominikmartn•12m ago•0 comments

The US is talking about space weapons now

https://breakingdefense.com/2026/09/why-the-us-is-talking-about-space-weapons-now/
4•KinetiNode•13m ago•1 comments

Carnot the most efficient, multi-fuel engine

https://carnotengines.com/technology/
2•thelastgallon•14m ago•0 comments

Hologram: Building Local-First Apps in Pure Elixir

https://www.youtube.com/watch?v=jdg_UrLp0bU
2•jamauro•15m ago•1 comments

LMAX Disruptor – High Performance Inter-Thread Messaging Library

https://lmax-exchange.github.io/disruptor/
1•Bluestein•15m ago•0 comments

How to process incoming call audio on Android / iOS?

1•vivzkestrel•17m ago•0 comments

Show HN: Lume – an open-source terminal you can drive from your phone

https://uselume.dev/
2•hugomyb•22m ago•0 comments

AI is breaking our proxies for expertise

https://www.seangoedecke.com/ai-is-breaking-our-proxies-for-expertise/
5•jbkcc•23m ago•0 comments

AI 'kill switch' may need to be mandatory, Anthropic co-founder tells BBC

https://www.bbc.com/news/articles/cqgk5e2j0gg8o
3•Betelbuddy•24m ago•0 comments

Show HN: Bulkgrid – Search websites and GitHub repositories from your AI agent

https://bulkgrid.com
2•ceglh•24m ago•0 comments

More than honey: bee myths

https://luckyinstar.neocities.org/blog/beemyths
2•speckx•25m 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!