frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Jank is off to a great start in 2026

https://jank-lang.org/blog/2026-03-06-great-start/
2•todsacerdoti•1m ago•0 comments

Swift at scale: building the TelemetryDeck analytics service

https://swift.org/blog/building-privacy-first-analytics-with-swift/
1•frizlab•2m ago•0 comments

GLP-1 drugs may fight addiction across every major substance

https://theconversation.com/glp-1-drugs-may-fight-addiction-across-every-major-substance-accordin...
1•gmays•3m ago•0 comments

Watch BYD's 5-min Flash Charging in action on the new Seal 07 EV

https://electrek.co/2026/03/06/byds-new-seal-07-ev-with-5-min-flash-charging-video/
1•breve•3m ago•0 comments

Reflections on Using Acme (2020)

https://blog.jacobvosmaer.nl/0006-acme/
1•tosh•4m ago•0 comments

Show HN: Graph-Oriented Generation – Beating RAG for Codebases by 89%

https://github.com/dchisholm125/graph-oriented-generation
1•dchisholm125•4m ago•0 comments

Most of My Coding Is Now Agentic

https://www.justinmath.com/most-of-my-coding-is-now-agentic/
1•speckx•6m ago•0 comments

Eating out of boredom isn't a thing

https://greyenlightenment.com/2026/01/28/eating-out-of-boredom-isnt-really-a-thing/
1•paulpauper•9m ago•0 comments

Claude Used to Hack Mexican Government

https://www.schneier.com/blog/archives/2026/03/claude-used-to-hack-mexican-government.html
1•Jimmc414•9m ago•0 comments

The Evolution of Go (2015) [video]

https://www.youtube.com/watch?v=0ReKdcpNyQg
1•tosh•10m ago•0 comments

3W for In-Browser AI: WebLLM and WASM and WebWorkers

https://blog.mozilla.ai/3w-for-in-browser-ai-webllm-wasm-webworkers/
1•hwclass•11m ago•0 comments

New (early) diabetes cure in China

https://hrnews1.substack.com/p/communist-china-just-cured-diabetes
1•donatello•11m ago•0 comments

Project Oberon Emulator in JavaScript and Java

https://schierlm.github.io/OberonEmulator/
1•tosh•12m ago•0 comments

White House autism briefing linked to Swift shifts in prescribing patterns

https://www.brown.edu/news/2026-03-05/autism-briefing-prescriptions
1•geox•12m ago•0 comments

Show HN: Open-source multi-model code review council (BYOK, free tier)

https://council.stardreamgames.com/
1•TheTrueObelus•12m ago•0 comments

Show HN: Remotely use my guitar tuner

https://realtuner.online/
1•smith-kyle•16m ago•0 comments

The Betting States of America [video]

https://www.youtube.com/watch?v=dVC9zOxJLo8
1•anarbadalov•16m ago•0 comments

Gum: A tool for glamorous shell scripts

https://github.com/charmbracelet/gum
1•thunderbong•16m ago•0 comments

Show HN: Contexa – Git-inspired context management for LLM agents

https://github.com/swadhinbiswas/contexa
1•0x0003r•17m ago•0 comments

Show HN: Mantle – Remap your Mac keyboard without editing Kanata config files

https://getmantle.app/
1•gsteezy•17m ago•0 comments

Apple users in the US can no longer download ByteDance's Chinese apps

https://www.wired.com/story/bytedance-apps-are-no-longer-available-in-us-app-stores/
1•LorenDB•17m ago•0 comments

Five CLIs Walk into a Context Window

https://theredbeard.io/blog/five-clis-walk-into-a-context-window/
1•ac29•18m ago•0 comments

Show HN: Hydra – Real-time ops dashboard for developers running AI agents

https://github.com/kunalnano/hydra
1•marinerk9•21m ago•0 comments

Noemon: ARC-AGI-2 top score at a fraction of the cost

https://twitter.com/noemon_ai/status/2029970169326379380
2•markerbrod•21m ago•1 comments

Browsercord.com – free in-browser screen recorder and editor with share links

https://browserecord.com
2•zygo•21m ago•1 comments

Asteroid defense mission shifted the orbit of more than its target

https://arstechnica.com/science/2026/03/nasas-dart-mission-shifted-the-orbits-of-two-asteroids/
3•LorenDB•22m ago•0 comments

TypeScript 6.0 RC

https://devblogs.microsoft.com/typescript/announcing-typescript-6-0-rc/
6•johnz•23m ago•0 comments

Why it takes you and an elephant the same amount of time to poop

https://www.pbs.org/newshour/health/takes-elephant-amount-time-poop
10•Tomte•24m ago•3 comments

A semantic history: How the term 'vibe coding' went from a tweet to prod

https://www.coderabbit.ai/blog/a-semantic-history-how-the-term-vibe-coding-went-from-a-tweet-to-prod
1•dmkravets•26m ago•0 comments

Fiber-free processed foods hit emotional memory fast, especially in older brains

https://medicalxpress.com/news/2026-02-fiber-free-foods-emotional-memory.html
1•PaulHoule•26m ago•0 comments
Open in hackernews

Ask HN: Extract text and translate on every PR

1•danielandrews43•9mo 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•9mo 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•9mo 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