frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: One layout pass, two outputs – a PDF and an editable PowerPoint deck

1•demchaav•31s ago•0 comments

We Removed React Server Components from Tanstack.com

https://tanstack.com/blog/we-removed-rsc-from-tanstack-com
1•matijash•1m ago•0 comments

How to Give Away Your AI Money

https://also.roybahat.com/how-to-actually-give-away-your-ai-money-01f2c411abde
1•bookofjoe•3m ago•0 comments

Daily Neo and PHA Asteroid Close-Approach Report by Astrophyzix Observatory

https://www.astrophyzix.com/
1•SpacenewsUK•4m ago•0 comments

Show HN: Exercise snack reminders for iOS/Android, no server, one-time purchase

https://getsnack.app
1•michaelyoon•4m ago•0 comments

Show HN: I built Gnoseed – free flahscards to learn K8s, DevOps, AI and more

https://gnoseed.com
1•Agoreddah•5m ago•0 comments

Death of the Author

https://www.emgoto.com/books/death-of-the-author/
1•Brajeshwar•5m ago•0 comments

Show HN: GitCharta, generate a snapshot of any GitHub user's global network

https://gitcharta.vercel.app/
2•ThierryRkt•10m ago•1 comments

Show HN: Bounce, a distributed chat app that protects metadata

https://github.com/bounce-chat/bounce
2•hkparker•10m ago•0 comments

Design.md for Design in Claude Code

https://aifordevelopers.substack.com/p/designmd-for-design-in-claude-code
2•dariubs•12m ago•0 comments

AI and Human Collaboration via Human Tool Mediated Loop

https://blog.codesolvent.com/2026/07/ai-human-collaboration-via-human-tool.html
1•Edmond•17m ago•0 comments

The first Windows app that automatically reduces loud TV commercials

https://github.com/AdBusterOfficial/Adbuster--WinApp
1•Bo_Amigo_910•19m ago•1 comments

Natural Language Processing

https://oecs.mit.edu/pub/vfg47thc/release/1/
2•Anon84•19m ago•0 comments

Lebanese displaced by war turn to satellites to check their homes

https://text.npr.org/g-s1-124672
2•mooreds•19m ago•0 comments

First impressions of life as a Fellow at King's

https://countingfromzero.blog/2026/07/26/first-impressions-of-life-as-a-fellow-at-kings/
2•mooreds•20m ago•0 comments

What comes after book bans? One school district questions traditional libraries

https://www.wusf.org/politics-issues/2026-07-16/after-book-bans-florida-officials-question-tradit...
1•mooreds•20m ago•0 comments

Show HN: SQLiteWatch – profile SQLite on Linux without code changes

https://github.com/Alurith/sqlitewatch
1•imalessandro•20m ago•0 comments

Deadly storm in Chile disrupts copper mines and raises AI supply concerns

https://www.ft.com/content/cd0b6148-a9a7-4763-b6d3-bb33e10b9899
3•1vuio0pswjnm7•22m ago•0 comments

Show HN: CDXE – Cyber Defence Exercise Environment

https://kryptogram.se/cdxe/
2•kryptogram•23m ago•0 comments

Concerns rise as volume of research soars and quality drops

https://www.ft.com/content/52e688a0-c6c1-4161-9878-1fab12c5e806
2•1vuio0pswjnm7•24m ago•0 comments

Should AI Take the Wheel? (2025)

https://www.lepekhin.com/2025/03/24/Should-AI-Take-the-Wheel
1•bizzz•28m ago•1 comments

Avoiding AI Debt with the A3 Delegation System

https://age-of-product.com/a3-delegation-system-agile-artifacts/
1•swolpers•29m ago•0 comments

World First Quantum Safe Election Software

https://www.suffrageq.com/
1•AMILLI_AI_CORP•29m ago•2 comments

Anime Professions

https://github.com/elmiram/anime-professions
1•Gray0Ed•29m ago•1 comments

PlainLink – clean tracking URLs at the clipboard, not the browser

https://github.com/HexCodeYT/PlainLink
1•hexcode_•29m ago•0 comments

Show HN: Health context/timeline builder for AI (mobile app)

https://apps.apple.com/us/app/kurozu-ai-health-context/id6788347862
1•wu375•29m ago•1 comments

Why workers are nostalgic for life before AI

https://www.ft.com/content/2ddef625-df80-4690-9475-f3ce86171593
2•1vuio0pswjnm7•30m ago•0 comments

Cartopolis: OpenStreetMap rendered like it's 1999

https://seriot.ch/cartopolis/
1•marklit•30m ago•0 comments

Show HN: CrispVoice – Studio voice enhancement that never uploads your voice

https://github.com/Francium-Tech/CrispVoice
4•bragboy•34m ago•0 comments

Show HN: Managing on-premise servers without Kubernetes

https://github.com/ricardoborges/Nautilus
5•r2ob•34m ago•0 comments
Open in hackernews

Using C++ type aliasing to avoid the ODR problem with conditional compilation

https://devblogs.microsoft.com/oldnewthing/20250501-00/?p=111134
5•signa11•1y ago

Comments

cherryteastain•1y ago
Cool trick but why wouldn't you just put the Log method without the ifdef in the header, and put the conditionally compiled bits in a .cpp file? The method in the article already puts both Widget<true> and Widget<false> in a .cpp file.
stop50•1y ago
The thing that is complained on by the linker is not the method, its the m_logger attribute. because of that the two structs mismatch. But since Widget<true> and Widget<false> are two different structs in the typing system they don't interfere with each other