frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How to Host a Blog on a Subdirectory Instead of a Subdomain

https://www.davidma.co/blog/2025-11-14-host-your-blog-on-a-subdirectory/
1•taikon•1m ago•0 comments

Young Men and Women Use AI Differently

https://youngmenresearchinitiative.substack.com/p/young-men-and-women-use-ai-differently
1•m-hodges•2m ago•0 comments

Jury trials set to be axed for most crimes under major shake up

https://www.legalcheek.com/2025/11/jury-trials-set-to-be-axed-for-most-crimes-under-major-shake-up/
1•jjgreen•2m ago•0 comments

Leaderboard for AI Predictors

https://futurex-ai.github.io/
1•SCEtoAux•3m ago•0 comments

Notepad++ Flagged in National Vulnerability Database

https://nvd.nist.gov/vuln/detail/CVE-2025-56383
1•carodgers•4m ago•1 comments

ICE Offers Up to $280M to Immigrant-Tracking 'Bounty Hunter' Firms

https://www.wired.com/story/ice-bounty-hunter-spy-program/
1•zzzeek•4m ago•0 comments

How to repurpose your old phone's GPS modem into a web server

https://blog.nns.ee/2021/04/01/modem-blog
1•xx_ns•8m ago•1 comments

Commodore CHESSmate

https://benlo.com/microchess/chessmate.html
2•naves•9m ago•0 comments

Ubihealthd (2015)

https://lwn.net/Articles/663751/
1•reflexe•9m ago•0 comments

Show HN: An AI interface to understand anything, better than NotebookLM

https://www.kerns.ai/
1•kanodiaayush•10m ago•0 comments

Free Ircam Technologies

https://forum.ircam.fr/collections/detail/technologies-ircam-free/
1•ofrzeta•10m ago•0 comments

Indian detained in Shanghai airport is detained and told "You're Chinese"

https://timesofindia.indiatimes.com/india/youre-chinese-arunachal-woman-harassed-by-shanghai-airp...
2•ilamont•12m ago•0 comments

A New Bridge Links the Math of Infinity to Computer Science

https://www.quantamagazine.org/a-new-bridge-links-the-strange-math-of-infinity-to-computer-scienc...
2•digital55•13m ago•0 comments

GTM Engineering Has a Context Problem

https://www.octavehq.com/post/gtm-engineering-has-a-context-problem
3•cmogni1•15m ago•0 comments

Talagrand's convolution conjecture up to log log via perturbed reverse heat

https://arxiv.org/abs/2511.19374
1•tzury•16m ago•0 comments

Generate changelog using Git Commits and AI with single Python script

https://github.com/BrowseWiki/genlog
1•laotoutou•17m ago•0 comments

How to Improve Your Attention Span: Daniel Pink's Strategies for the Digital Age

https://www.openculture.com/2025/11/how-to-improve-your-attention-span.html
1•frenzcan•20m ago•0 comments

UK intends to scrap jury trials for majority of court cases

https://www.gbnews.com/politics/uk/david-lammy-scrap-jury-trials
7•cbeach•22m ago•0 comments

The Bughouse Effect

https://tsvibt.blogspot.com/2025/11/the-bughouse-effect.html
1•surprisetalk•23m ago•0 comments

A Matter of Millimeters: The story of Qantas flight 32

https://admiralcloudberg.medium.com/a-matter-of-millimeters-the-story-of-qantas-flight-32-bdaa62d...
2•surprisetalk•23m ago•0 comments

Requiem for Early Blogging

https://www.elizabethspiers.com/requiem-for-early-blogging/
1•AIBytes•24m ago•0 comments

Humans to Mars [NASA]

https://www.nasa.gov/humans-in-space/humans-to-mars/
1•indigodaddy•24m ago•1 comments

ProfitMate AI Premium

https://profitmateai-web.web.app/
1•Brizmo•26m ago•1 comments

How good are social scientists at forecasting?

https://www.nber.org/papers/w34493
2•oatsandsugar•31m ago•1 comments

Unison 1.0 Release

https://www.unison-lang.org/unison-1-0/
28•pchiusano•33m ago•1 comments

Treat AI-Generated code as a draft

https://addyo.substack.com/p/treat-ai-generated-code-as-a-draft
2•janpio•34m ago•0 comments

Venture in Public Markets

https://parthchopra.substack.com/p/venture-in-public-markets
1•probe•36m ago•0 comments

AI Can Help Reduce Wildfire Risks

https://www.bloomberg.com/news/newsletters/2025-11-25/how-ai-can-help-reduce-wildfire-risks
1•toomuchtodo•37m ago•1 comments

Does Memo from Sunday Robotics have a soul?

https://andyfromthefuture.substack.com/p/does-memo-from-sunday-robotics-have
1•charliejordan•42m ago•0 comments

Ask HN: I feel like I've lost my motivation to continue learning programming

2•eng_ask•42m ago•0 comments
Open in hackernews

Show HN: I built Locawise, a free AI tool to automate localization in projects

1•aemresafak•6mo 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•6mo 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!