frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Brainstorming novel biological attacks with an LLM

https://www.robertvesco.com/posts/chatgpt-helps-me-brainstorm-guerilla-warfare-against-ai-powered...
2•rlvesco7•5m ago•0 comments

This Week in Plasma: 6.8 Beta Release

https://blogs.kde.org/2026/09/12/this-week-in-plasma-6.8-beta-release/
1•HieronymusBosch•6m ago•0 comments

Why Rocq is better than Lean for program verification

https://joomy.korkutblech.com/posts/2026-07-28-why-rocq-is-better.html
2•birdculture•7m ago•0 comments

The V8 JavaScript Runtime Undermined My Constant-Time JavaScript Library

https://soatok.blog/2026/09/12/the-v8-javascript-runtime-undermined-my-constant-time-javascript-l...
3•some_furry•7m ago•0 comments

Attestly

https://www.attestly.online/
1•swishmilnet•8m ago•0 comments

Ocarina Music in the Legend of Zelda: Ocarina of Time

https://danbruno.net/writing/ocarina/
2•drifkin•8m ago•0 comments

Ask HN: Did anyone try to build game engine purely for LLM

1•steammaho•10m ago•0 comments

Roundtables: AI's Apocalypse Crisis

https://www.technologyreview.com/2026/09/11/1143936/roundtables-will-ai-really-kill-us-all/
1•joozio•12m ago•0 comments

Governor Newsom Signs Student-Backed Digital Literacy Bills Along Misguided Bans

https://www.eff.org/deeplinks/2026/09/governor-newsom-signs-student-backed-digital-literacy-bills...
1•mdp2021•12m ago•0 comments

The Evolution of Human Science (2000)

https://en.wikipedia.org/wiki/The_Evolution_of_Human_Science
1•xiaoyu2006•14m ago•1 comments

Show HN: I turn Airtable exports into real Postgres schemas(FKs, not CSVs)

https://www.atmigrator.com
1•saud_c•15m ago•0 comments

ChatGPT-using lawyer punished for citing fake testimony from made-up witnesses

https://arstechnica.com/tech-policy/2026/09/chatgpt-using-lawyer-punished-for-citing-fake-testimo...
2•mdp2021•18m ago•0 comments

Ask HN: New way of organizing Mathematical Research

1•youoy•23m ago•0 comments

28 Years of Tara Books

https://tarabooks.com/blog/the-past-is-always-present/
1•vishnukvmd•25m ago•0 comments

TablePro: A native, open-source database client for macOS

https://github.com/TableProApp/TablePro
2•fourfire•26m ago•0 comments

Robust Solution of Laplacian Equations by Random Approx Cholesky Factorization

https://epubs.siam.org/doi/10.1137/24M1673577
1•musha68k•26m ago•0 comments

Schwung: Layer synths, effects, new tools on top of the Ableton Move

https://schwung.dev/
1•QuantumNomad_•27m ago•0 comments

This is really bad: AI Safety Threat

https://www.nytimes.com/2026/09/11/opinion/ai-safety-threat-technology.html
2•ryan_j_naughton•33m ago•1 comments

Rare Not Random Using Token Efficiency for Secrets Scanning

https://lookingatcomputer.substack.com/p/rare-not-random
1•boyter•33m ago•0 comments

Teaching an M4 CPU to Tell Stories with XOR, Popcount and SDOT

https://dnhkng.substack.com/p/teaching-an-m4-cpu-to-tell-stories
1•JPLeRouzic•36m ago•0 comments

A.I. Could Possibly End Humanity. How Are Humans Supposed to Process That?

https://www.nytimes.com/2026/09/10/science/ai-humanity-risk.html
1•doener•36m ago•0 comments

Artemis: Google's new AI agent framework for mobile test automation

https://github.com/google/artemis
2•soltanov•41m ago•0 comments

The Emperor's Old Clothes [pdf]

https://worrydream.com/refs/Hoare_1981_-_The_Emperors_Old_Clothes.pdf
3•pykello•42m ago•0 comments

Dissolving the Fermi Paradox (2018)

https://arxiv.org/abs/1806.02404
1•bumbledraven•50m ago•0 comments

Ask HN: Why are the tech companies tracking humans?

4•roschdal•52m ago•3 comments

City Layout Guessr Game

https://noahdarwinlee.com/citylayoutguessr/
2•noahdlee•54m ago•0 comments

Jetpack: Consensus Made Generally Fast (OSDI '26)

http://muratbuffalo.blogspot.com/2026/09/jetpack-consensus-made-generally-fast.html
3•gavide•59m ago•0 comments

White House weighs Defense Production Act to expand US oil refining capacity

https://www.reuters.com/business/energy/white-house-weighs-how-use-defense-production-act-expand-...
4•geox•1h ago•0 comments

A2ABreak: Systematic Security Analysis of the A2A Protocol

https://arxiv.org/abs/2609.10871
2•sbulaev•1h ago•0 comments

Russian developers used Claude to build 'kamikaze' attack drone software

https://www.theguardian.com/world/2026/sep/12/ukraine-war-briefing-russian-developers-used-ai-to-...
6•warrenmiller•1h ago•1 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!