frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Firm pioneers 3D printing copper coolers directly onto processors

https://www.tomshardware.com/3d-printing/firm-pioneers-3d-printing-copper-coolers-directly-onto-p...
1•Teever•22s ago•0 comments

Join the Parasite Rebellion on T-day

https://usop.substack.com/
1•richardatlarge•42s ago•0 comments

Ask HN: Why do people say LLMs create bad code "quality"?

1•chaidhat•2m ago•0 comments

Comparing Obelisk with DBOS

https://obeli.sk/blog/comparing-dbos-part-1/
1•todsacerdoti•4m ago•0 comments

The Context Tax: Why AI-Assisted Coding Fails Without Flow

https://arif.sh/book
1•Arifcodes•7m ago•0 comments

Training Foundation Models on a Full-Stack AMD Platform

https://arxiv.org/abs/2511.17127
1•srameshc•7m ago•0 comments

Age of "Don't do it yourself"

https://blog.rybarix.com/2025/11/26/age-of-dont-diy.html
3•sandruso•12m ago•1 comments

Anomalous electronic state opens pathway to room-temperature superconductivity

https://phys.org/news/2025-11-anomalous-electronic-state-pathway-room.html
1•rbanffy•12m ago•0 comments

Reminder that HN Active exists and is arguably better

https://news.ycombinator.com/active
2•loteck•12m ago•1 comments

What's Hiding Inside Haribo's Power Bank and Headphones?

https://www.lumafield.com/first-article/posts/whats-hiding-inside-haribos-power-bank-and-headphones
1•rozenmd•13m ago•0 comments

Show HN: MXP – A2A-compatible agent protocol, 37x faster than JSON

1•ferasawady•14m ago•0 comments

China completes first emergency mission to Tiangong space station

https://www.reuters.com/business/media-telecom/china-launch-shenzhou-22-spaceship-0411-gmt-state-...
1•Teever•15m ago•0 comments

France to bring in form of military service

https://www.bbc.co.uk/news/articles/c0edw7g7z79o
1•AIBytes•16m ago•0 comments

Z-Image, free online image generator

https://zimage.net
1•BruceWok•18m ago•0 comments

Cooldown Myths for Runners

https://therundownbytherunningeffect.substack.com/p/cooldowns-are-overrated
1•RalphHavensPT•20m ago•1 comments

Google says hackers stole data from 200 companies following Gainsight breach

https://techcrunch.com/2025/11/21/google-says-hackers-stole-data-from-200-companies-following-gai...
1•SilverElfin•20m ago•1 comments

Blender facial animation tool. What else should it do?

https://github.com/shun126/livelinkface_arkit_receiver/wiki
1•happy-game-dev•22m ago•0 comments

Walrus – distributed message streaming in Rust

4•janicerk•23m ago•0 comments

The Last Programming Language, and the End of (A Bit of) History

https://davegriffith.substack.com/p/the-last-programming-language-and
1•dxs•29m ago•0 comments

When Life Gets Too Easy

https://woodypearson.substack.com/p/when-life-gets-too-easy
1•heywoods•31m ago•0 comments

Show HN: Save Trippy – A Thanksgiving Game

https://www.savetrippy.com/
4•nezaj•32m ago•2 comments

Build Your Ideas with Gemini

https://app.new
1•tzury•32m ago•0 comments

Show HN: The Participatory Interface Theory

1•bobsh•34m ago•0 comments

Tesla CEO Elon Musk admits tough realization about FSD

https://www.thestreet.com/automotive/tesla-ceo-elon-musk-admits-tough-realization-about-fsd
2•gochuks•35m ago•0 comments

Show HN: A1 – Local Sandbox and JIT Compiler for AI Agents

https://github.com/stanford-mast/a1
1•calebhwin•37m ago•1 comments

Enterprise security can be messy: Building a Security-Aware Culture

2•rezliant•37m ago•2 comments

Math Skill for Claude Code

https://github.com/ananddtyagi/claude-code-marketplace/tree/main/plugins/math
1•ananddtyagi•39m ago•1 comments

The Input Stack on Linux: An End-to-End Architecture Overview

https://venam.net/blog/unix/2025/11/27/input_devices_linux.html
4•venamresm__•40m ago•0 comments

Israel proposes Kiryat Tivon for Nvidia's multibillion-$ tech campus in North

https://www.timesofisrael.com/israel-proposes-kiryat-tivon-for-nvidias-multibillion-dollar-tech-c...
3•thenaturalist•42m ago•1 comments

Asahi Investigation Results and Future Measures on Cyberattack Data Exposure

https://www.asahigroup-holdings.com/en/newsroom/detail/20251127-0204.html
1•ChrisArchitect•47m ago•0 comments
Open in hackernews

Ask HN: Extract text and translate on every PR

1•danielandrews43•6mo ago
One of the most tedious parts of frontend dev for our team is making sure all text is extracted to query strings for translation. We use i18n, and it’s great, but a lot falls through the cracks.

Have you set something up for your org on every pull request that pulls out text?

Comments

not_your_vase•6mo ago
The last time I worked on a localized project, we had a technical fake language present in non-release envs. It was generated with every build (it was just a simple .po file, so easy to handle), and it was the same as English, but had an "x" at the start and end of each text, so you knew that it was "translated" (or at least it was translatable, and not hardcoded). QA included checking this fake language - if they found any text without X's around it, it was a clear sign of a i18n bug.
danielandrews43•6mo ago
That's cool! We used machine translate to hindi for this which made it super obvious what was english / not as it was different character set (but made it hard to navigate)

Looking for something to help with DX though here, not QA