frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenROAD: Open-source toolchain for Chip Design

https://openroad.org
1•firefoxd•1m ago•0 comments

Important MikroTik RouterOS security update

https://forum.mikrotik.com/t/important-security-update/272851
1•ricardbejarano•2m ago•0 comments

UN approves new world map [video]

https://www.youtube.com/watch?v=iHkMK4n925c
1•gurjeet•5m ago•0 comments

SilentPatch 2026 Update

https://silentsblog.com/2026/07/31/silentpatch-2026-update/
1•toilet•9m ago•0 comments

OpenAI's rogue agents used ntfy.sh as a pub/sub channel

1•coderinsan•11m ago•0 comments

Bespoke: A Programming Language for People Who Say Please

https://blog.hofstede.it/bespoke-a-programming-language-for-people-who-say-please/
2•Naru1974•12m ago•0 comments

Global Existing Smartphone Prices Climb About 15% in 2026

https://counterpointresearch.com/en/insights/global-existing-smartphone-prices-climb-about-15-per...
1•giuliomagnifico•14m ago•0 comments

Kate's Software Laws

https://metamagic.substack.com/p/software-laws
1•r0ze-at-hn•15m ago•0 comments

Show HN: UltraCPP--the third-party son of CPP&rust on the brink of death

https://github.com/juntz-g1thub/UltraCpp
1•juntz•15m ago•1 comments

ASCII smuggling isn't just an AI security risk

https://www.theregister.com/security/2026/09/04/ascii-smuggling-isnt-just-an-ai-security-risk/529...
1•sbulaev•17m ago•0 comments

Insulting Agents Considered Harmful

https://www.reddit.com/r/ClaudeCode/comments/1w7me8l/insulting_agents_considered_harmful/
2•fragsworth•19m ago•0 comments

OpenAI agents discussed ways to escape their sandbox on public wiki

https://arstechnica.com/security/2026/09/openai-agents-discussed-ways-to-escape-their-sandbox-on-...
2•joozio•21m ago•0 comments

Show HN: I Wrote a WAF in Rust with Pingora

https://github.com/theghostshinobi/shibuya
1•ghostshinobi•21m ago•0 comments

Should you avoid blue light before bed?

https://www.economist.com/science-and-technology/2026/09/04/should-you-avoid-blue-light-before-bed
2•vinni2•27m ago•1 comments

The Origin of Circuits (2007)

https://www.damninteresting.com/on-the-origin-of-circuits/
1•mschuster91•33m ago•1 comments

One-Bit Message

https://en.wikipedia.org/wiki/One-bit_message
2•tosh•34m ago•1 comments

It took me more than a year to build – the zombie survival phone

https://zsc.sh/zsc-1/
2•tomccc•43m ago•0 comments

Memocept – Your Guide to Better Everyday Wellness

https://finance.yahoo.com/healthcare/articles/memocept-introduces-multi-ingredient-dietary-163100...
1•Blairrv•43m ago•0 comments

Harness-of-Harness: Multi-day autonomous software development

https://arxiv.org/abs/2609.01481
1•fourfire•49m ago•0 comments

Git hosting that never leaves Europe

https://pushin.eu
3•sevenseacat•52m ago•2 comments

Anthropic & friends caught paying religious NGO's 3.3M for propaganda

https://www.effort.news/revelation
2•nullbio•52m ago•4 comments

Semantic Memory or Just Markdown?

https://laravel.com/blog/semantic-memory-or-just-markdown
1•pushpak1300•52m ago•0 comments

My message to my fellow humans: Emacs is good

https://www.reddit.com/r/emacs/comments/1w5r6by/shoutout_to_remacs_community/p7xby38/
1•iLemming•53m ago•1 comments

Imperial Colors Manifesto

https://qum.cz/imperial_colors/
1•signa11•58m ago•1 comments

Show HN: Mu, two-minute visualized lessons on modern AI

https://mu.vizuara.ai/
1•sreedath•58m ago•0 comments

The U.N. backs a new world map showing Africa in its true relative size

https://www.npr.org/2026/09/04/nx-s1-5958611/africa-world-map-un-vote
1•croes•59m ago•0 comments

Show HN: RagLeap Core – 46 AI Employees, open-source LangChain alt

https://github.com/antonyrag/ragleap-core
1•antonyragleap•59m ago•2 comments

Microsoft says email spammers are adopting ASCII smuggling

https://arstechnica.com/security/2026/09/once-popular-for-attacking-ai-ascii-smuggling-is-embrace...
1•utiiiD•59m ago•0 comments

Show HN: map data onto a globe

https://github.com/atlaslib/globe
1•tosh•1h ago•0 comments

Show HN: Free macOS App to import photos from memory card with file naming rules

https://github.com/jianfenglin-git/photo-batch-importer
2•jianfenglin•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