frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What Makes Humans Stupid

https://nautil.us/what-makes-humans-stupid-1282459
1•obscurette•31s ago•0 comments

Cloudflare Announces Research Pilot with OpenAI

https://www.cloudflare.com/press/press-releases/2026/cloudflare-announces-research-pilot-with-ope...
2•01-_-•2m ago•0 comments

AI Data Center's Endless Hum

https://www.gadgetreview.com/ai-data-centers-endless-hum-the-unchecked-ai-nightmare-forcing-a-mic...
2•01-_-•3m ago•0 comments

China warns of 'security backdoor' in Anthropic AI coding tool

https://www.channelnewsasia.com/east-asia/china-anthropic-claude-code-ai-backdoor-security-alert-...
2•Markoff•5m ago•0 comments

A complete, certified, bidirectional decode of GPT-2's internal language

https://github.com/wpferrell/babel-codec-gpt2
1•wpferrell•5m ago•0 comments

OpenAI faked inability to search training data, hid billions of logs, NYT says

https://arstechnica.com/tech-policy/2026/07/openai-faked-inability-to-search-training-data-hid-bi...
4•cdrnsf•6m ago•0 comments

Show HN: Replen – maps your repos to a knowledge graph to match open-source

https://github.com/replenhq/replen
2•nsokin•6m ago•0 comments

Escape from Squircle Jail

https://tyler.io/2026/07/05/escape-from-squircle-jail/
2•nate•6m ago•0 comments

GPU Quicklist – AI PC/Mac

https://gpuquicklist.com/apus
2•kristianp•7m ago•0 comments

ChatGPT Sites

https://help.openai.com/en/articles/20001339-creating-and-managing-chatgpt-sites
2•makeramen•7m ago•0 comments

Show HN: Posara: A Visual-Audio Engine Now on Web

https://khn190.github.io/posara/
2•knh190•7m ago•0 comments

Volkswagen put 100 sheep to work under 31,000 solar panels

https://electrek.co/2026/07/08/volkswagen-put-100-sheep-to-work-under-31000-solar-panels/
3•Brajeshwar•8m ago•1 comments

Tracker – a lightweight self-hosted document system for agents in Go

https://github.com/chicagobuss/tracker/
2•chicagobuss•8m ago•1 comments

Protein, Grown from Air

https://www.solein.com/
2•onraglanroad•9m ago•0 comments

Anne Frank Diaries: ECJ strengthens geoblocking despite VPN circumvention

https://www.heise.de/en/news/Anne-Frank-Diaries-ECJ-strengthens-geoblocking-despite-VPN-circumven...
2•Tomte•10m ago•0 comments

Show HN: Fudge – Web Design References for AI

https://design.withfudge.com/
2•sim04ful•11m ago•0 comments

Surprised doctors find 10-inch worm in man's groin during elective surgery

https://arstechnica.com/health/2026/07/surprised-doctors-find-10-inch-worm-in-mans-groin-during-e...
2•nianderwallace•13m ago•0 comments

Show HN: Learn to Read with SRS++

https://letterspractice.com/showHN
2•NiloCK•15m ago•0 comments

Paxos Made Simple (2001)[pdf]

https://lamport.azurewebsites.net/pubs/paxos-simple.pdf
3•grep_it•16m ago•0 comments

GPT-5.6 Sol (max) Benchmark Results

https://artificialanalysis.ai/models/gpt-5-6-sol
1•theanonymousone•16m ago•0 comments

How to build a pyramid if Aliens won't return your calls [video]

https://www.youtube.com/watch?v=TYhBBcdjgMI
1•Anon84•17m ago•0 comments

The Risk of Agency: How AI Forces Us to Take It, and Why Germany Will Suffer

https://www.explore-exploit.com/p/the-risk-of-agency-how-ai-forces
1•jejay•17m ago•0 comments

It's Not Subconsciousness

1•lamprouge•18m ago•0 comments

Show HN: Onboard-CLI–a fast developer tool built in Go uses AST and LLM

https://onboard-cli.vercel.app/
2•yr_animesh•23m ago•0 comments

The Terrorist in the Brain

https://www.skeptic.com/disabled_js/
2•NaOH•24m ago•1 comments

Agents' Last Exam: AI Agent Benchmark for Real-World Professional Workflows

https://agents-last-exam.org
2•gurjeet•25m ago•0 comments

The Elements of User Experience

https://designexplained.substack.com/p/the-elements-of-user-experience
3•kaizenb•26m ago•0 comments

How Steve Hilton's Wife, Rachel Whetstone, Conquered California

https://sfstandard.com/2026/07/06/rachel-whetstone-steve-hilton-wife-california-governor/
2•petethomas•26m ago•0 comments

"Blade" type guitar pickups don't pick up horizontal vibration (2015)

https://alexkenis.wordpress.com/2015/10/22/guitar-pickup-theory-1-blade-vs-pole-pieces/
2•kazinator•28m ago•1 comments

Show HN: Finterm.ai Finance CLI for Claude Code and Codex

3•cheeseblubber•28m 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