frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

z486: A 486-Class Pipelined FPGA CPU with Integrated Floating-Point

https://nand2mario.github.io/posts/2026/z486/
1•matt_d•7m ago•0 comments

Preparing GLM-5.3 for Open Release: A Responsible Path to Cyber Defense

https://twitter.com/Zai_org/status/2088280509474320693
1•pretext•11m ago•0 comments

Compatibility Testing Pulumi HCL

https://www.pulumi.com/blog/compatibility-testing-pulumi-hcl/
1•cnunciato•14m ago•0 comments

Malaysia to launch palm oil-based immersion cooling fluid for data centers

https://www.datacenterdynamics.com/en/news/malaysia-to-launch-palm-oil-based-immersion-cooling-fl...
2•01-_-•14m ago•0 comments

Microsoft Walks Away from China

https://247wallst.com/investing/2026/08/14/microsoft-walks-away-from-china/
1•01-_-•15m ago•0 comments

Spain extends largest nuclear plant in policy U-turn

https://www.yahoo.com/news/politics/articles/spain-extends-largest-nuclear-plant-104423761.html
1•mpweiher•17m ago•0 comments

Get to Know David, Alice, Bob, Jack and Sara [Agents] [video]

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

Show HN: Bernstein – run 44 CLI coding agents from one deterministic scheduler

https://github.com/sipyourdrink-ltd/bernstein
1•alex_chernysh•25m ago•0 comments

Show HN: Local Duolingo like course authoring for independent creators

https://www.asakiri.com/
2•alekoiz•27m ago•1 comments

GLM-5.3: How Chinese labs keep stride with the frontier

https://www.interconnects.ai/p/glm-53-how-chinese-labs-keep-stride
2•tosh•28m ago•0 comments

How to ship a database every day

https://turbopuffer.com/blog/control-plane
1•samuel246•28m ago•0 comments

Google Opens the Gates of AI Slop Hell

https://gizmodo.com/google-opens-the-gates-of-ai-slop-hell-2000798888
4•ochrist•34m ago•1 comments

Tankers Are Going Dark for Longer to Get Oil Out of Middle East

https://www.bloomberg.com/news/articles/2026-08-14/tankers-are-going-dark-for-longer-to-get-oil-o...
1•tosh•35m ago•0 comments

The Embedder's Dilemma: LLMs Are Better, but at What Cost?

https://arxiv.org/abs/2608.12875
1•sbulaev•37m ago•0 comments

Show HN: Riffn. An instant voice link with your AI agents and local models

https://riffn.io/how-riffn-works/
2•riffn•39m ago•0 comments

"That's not SoC 2 compliant"

https://ampcode.com/notes/thats-not-soc-2-compliant
13•tosh•42m ago•7 comments

Ask HN: How do you keep up with HN these days?

14•simonebrunozzi•44m ago•14 comments

Mycorrhizal Infrastructure Map

https://a-hidden-infrastructure.spun.earth/map
1•num42•45m ago•0 comments

Israel's done little to rein in spiraling settler violence against Palestinians

https://apnews.com/article/israel-palestinians-settler-violence-us-siege-west-bank-bd4ae76cec1773...
4•hebelehubele•47m ago•1 comments

Choosing the Right Database for AI Agents: LLM Generated SQL

https://predictabledialogs.com/learn/ai-stack/choosing-database-configurable-ai-agents
2•jaikant•50m ago•0 comments

Behold the 'glueball,' a new form of matter

https://www.science.org/content/article/behold-glueball-strange-new-form-matter
1•the-mitr•53m ago•0 comments

Global Mastercard outage stopping shopping in Sydney

https://www.smh.com.au/national/global-mastercard-outage-stopping-shopping-in-sydney-20260815-p60...
5•Khaine•57m ago•0 comments

Are You a Human?

https://www.newyorker.com/magazine/2026/08/17/are-you-a-human
2•mitchbob•59m ago•1 comments

Hacking Fiber to the Home

https://hackaday.com/2026/08/13/hacking-fiber-to-the-home/
2•Corrado•1h ago•0 comments

An Autonomous Framework for Systematic Factor Invest via Agentic AI

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6416881
2•dima1830•1h ago•0 comments

Show HN: NexusMem – local memory for coding agents, not just Git log

https://github.com/yaminbkk/NexusMem
2•yamin_bakoh•1h ago•0 comments

Who Is Cami Clark? Anthropic CEO's Wife Asked Epstein to Invest in Porn Business

https://www.forbes.com/sites/alisondurkee/2026/08/14/who-is-cami-clark-anthropic-ceos-wife-asked-...
6•gpi•1h ago•1 comments

Apple launches ads in Apple Maps for businesses across the US and Canada

https://www.theapplepost.com/2026/08/14/71094/apple-launches-ads-in-apple-maps-for-businesses-acr...
2•mgh2•1h ago•1 comments

Did the AI Bubble Just Pop?

https://www.youtube.com/watch?v=wrFH8PvDPFE
1•cable2600•1h ago•0 comments

Show HN: GPT, Claude, Gemini. Ask them all. Pay for one

https://whizi.io/
2•not_wowinter14•1h 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