frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why Outdoor EV Charger Displays Are More Complicated Than They Look

https://duobond-display.com/news/display-interfaces-system-integration/521.html
2•Todorov•3m ago•0 comments

Bill Ackman: Why We're Donating $400M to Brain Research

https://twitter.com/BillAckman/status/2090190151083532583
1•iamronaldo•3m ago•0 comments

Lunar Volcanism

https://science.nasa.gov/moon/lunar-volcanism/
1•Jimmc414•4m ago•0 comments

Does anyone find AI code review useful?

1•swimmingpolar•4m ago•0 comments

3D printing with weed trimmer line (2010)

https://reprap.org/forum/read.php?1,193637
1•gregsadetsky•5m ago•0 comments

Show HN: Criboku – a daily logic puzzle based on cribbage

https://criboku.com/
1•SharkeyX2•6m ago•0 comments

The 'Resistance' Is Over

https://www.theatlantic.com/ideas/2026/08/democratic-primaries-left-dsa-trump/688327/
1•petethomas•7m ago•0 comments

Show HN: AI Resume Screening – Looking for feedback from recruiters

https://aiomniu.top/services/resume-screening
1•aiomniu•11m ago•0 comments

YouTube offering creators millions if they don't sign deals with Netflix

https://www.tubefilter.com/2026/08/19/youtube-reportedly-offering-creators-payouts-netflix-deals/
1•thm•11m ago•0 comments

Stealing Reasoning Traces from Proprietary LLM APIs

https://arxiv.org/abs/2608.09867
3•doppp•16m ago•0 comments

Bapu Studio – Open-Source Client for APIs, Databases, and Secrets

https://github.com/joravar/bapu-studio
1•sarvaiya•20m ago•0 comments

Google styleguide code review skills

https://jeanbza.github.io/ai/claude/2026/08/08/google-codereview-skills.html
1•jeanbza•26m ago•0 comments

Async Solid – Fetch High, Block Low

https://www.solidjs.com/blog/async-solid-fetch-high-block-low
2•GavinAnderegg•27m ago•0 comments

Houston, we have String Reverse

https://antonm.net/string_reverse/
2•geetee•29m ago•0 comments

Show HN: Mail client optimized for self-hosted email across multiple domains

https://mainly.crnst8.com/
1•flowerpil•32m ago•0 comments

Claude Code adds new "concise" output style setting

https://twitter.com/ClaudeDevs/status/2090245922685063634
3•enraged_camel•38m ago•0 comments

Misconfigured Admin System Prompts Can Invert an LLM's Safety Layer

https://medium.com/@aadvait.cr/how-misconfigured-admin-system-prompts-can-invert-every-single-llm...
1•Aadvait•40m ago•0 comments

Did someone wearing Meta Glasses film you today? Are you sure?

https://www.theguardian.com/technology/ng-interactive/2026/aug/19/meta-glasses-privacy-surveillance
3•cdrnsf•42m ago•2 comments

What Is Reasoning

https://lucumr.pocoo.org/2026/8/19/what-is-reasoning/
2•doppp•46m ago•0 comments

Index your images and videos locally

https://github.com/ikouchiha47/cinestar
2•argentum47•46m ago•0 comments

Building Without Predicting

https://sive.rs/fit
1•thm•51m ago•0 comments

Show HN: Lutefish Stream (Play Music over Internet)

https://lutefish.com/
2•mfarstad•52m ago•0 comments

Chinese firms are wrapping their supply chains around the globe

https://www.economist.com/interactive/business/2026/08/19/chinese-firms-are-wrapping-their-supply...
4•petethomas•52m ago•1 comments

Stripe says "the singularity" has begun

https://www.axios.com/2026/08/19/stripe-payments-openrouter-singularity
2•psychanarch•52m ago•2 comments

Why the richest country can't defend vital infrastructure

https://www.economist.com/united-states/2026/08/19/why-the-worlds-richest-country-cant-defend-vit...
1•petethomas•54m ago•1 comments

Show HN: I made a way for event guests to share photos without installing an app

https://lensoraevents.com/
1•aningemma1•55m ago•0 comments

A $21B 'Kids in Chips' Startup Is Scooping Up Nvidia Talent

https://www.wsj.com/tech/ai/a-21-billion-kids-in-chips-startup-is-scooping-up-nvidia-talent-4d099f12
3•gmays•57m ago•0 comments

Turns are Better than Radians

https://www.computerenhance.com/p/turns-are-better-than-radians
2•mayoff•59m ago•1 comments

Credentialism is coming for AI agents

https://betocmn.com/blog/credentialism-is-coming-for-ai-agents/
1•thedreammachine•1h ago•0 comments

Lutefish Stream

https://lutefish.com/pages/our-story
1•mfarstad•1h ago•1 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