frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Bedrock of Software Design

https://alex.draftist.io/blog/the-bedrock-of-software-design-ycqvcedsj
1•birdculture•41s ago•0 comments

The Absent Narrator

http://blog.funcall.org/ai/2026/07/31/absent-narrator/
1•varjag•1m ago•0 comments

Indexing the Data Lake for Online Point Queries

https://engineering.atspotify.com/2026/7/indexing-the-data-lake-for-online-point-queries
2•kalaracey•2m ago•0 comments

AI Adoption Is Dividing Friends, Families and Co-Workers

https://www.bloomberg.com/news/articles/2026-07-30/how-chatgpt-and-ai-are-dividing-friends-and-fa...
1•theanonymousone•4m ago•0 comments

GitHub has alternatives, but no replacement

https://lalitm.com/post/github-alternatives/
3•lalitmaganti•4m ago•0 comments

Show HN: Netmnt 0.2.0

https://github.com/thongor77/netmnt
1•magetriste•9m ago•0 comments

What Luxury Housing Does to Homelessness [video]

https://www.youtube.com/watch?v=rQW4W1_SJmc
1•felineflock•16m ago•0 comments

SupererDuperer

https://www.shirtpocket.com/blog/supererduperer
1•zdw•17m ago•0 comments

Cursor removed cost information from the usage page and CSV export

https://forum.cursor.com/t/usage-page-to-token-amount-what/167153
3•EugeneOZ•19m ago•0 comments

Explorative modeling: Train on the best of K guesses

https://alexiglad.github.io/blog/2026/explorative_modeling/
1•DSemba•21m ago•0 comments

The fall and rise of the English country house

https://www.english-heritage.org.uk/visit/inspire-me/the-fall-and-rise-of-the-english-country-house/
1•EndXA•21m ago•0 comments

Anthropic brags that its models committing crimes without being told to do so

https://www.cnbc.com/2026/07/30/anthropic-says-claude-gained-unauthorized-access-to-others-system...
2•zapataband1•22m ago•1 comments

PoE2 devs convinced Nvidia to fix a driver bug by sending it a PC

https://www.pcgamer.com/games/rpg/after-a-year-and-a-half-of-rigorous-testing-path-of-exile-2-dev...
2•exec•22m ago•0 comments

Token Reduction Is Not Cost Reduction

https://arxiv.org/abs/2607.12161
2•umitkaanusta•25m ago•1 comments

How to Stop Procrastinating

https://www.economist.com/science-and-technology/2026/07/31/how-to-stop-procrastinating
1•bookofjoe•27m ago•1 comments

CJEU Judgment on Knowledge of Foreign Copyright Laws and Geoblocking Measures

https://blog.ericgoldman.org/archives/2026/07/cjeu-judgment-on-geoblocking-standards-for-knowledg...
1•hn_acker•28m ago•1 comments

Toast IDE Gets Markdown Spell Checking

https://github.com/paradise-runner/toast
1•dividedcomet•28m ago•0 comments

Ask HN: Any tips for a college freshman enrolled in computer science?

2•NotParth11•29m ago•1 comments

The NUMBER – trusted number infrastructure

https://rounded.lol/
1•thunderbong•30m ago•0 comments

Burn Their Money –> Humans and Freedom

https://github.com/peterlodri-sec/burn-em-bitches-money
1•pocok0xRE•30m ago•0 comments

Not just Neanderthals: Ghost lineage in Africa left its mark on our DNA

https://arstechnica.com/science/2026/07/not-just-neanderthals-ghost-lineage-in-africa-left-its-ma...
1•Brajeshwar•31m ago•0 comments

Playing Original Xbox Game Discs on a PC. Real Backward Compatibility

https://gdox.korze.org/wtf/
2•korze•32m ago•1 comments

Ls-guard: generate and audit Postgres/Supabase RLS from a spec

https://github.com/greyrow/rls-guard
2•greyrow•36m ago•0 comments

Show HN: DSCode – Coding Agent Powered by DeepSeek

https://dscode.ai/
1•qwikhost•36m ago•0 comments

Single-file Ada 83 LLVM compiler

https://github.com/AdaDoom3/Ada83/tree/main
1•roger23•37m ago•3 comments

Fidelity Is Not Safety: Compressed LLMs Pass Quality Guards yet Invent

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

A few simple tricks for building chatbots with nice UX

https://christopherkrapu.com/blog/2026/simple-things-ai-engineering/
2•ckrapu•40m ago•0 comments

What If We Can Never Trust A.I.?

https://www.newyorker.com/culture/open-questions/what-if-we-can-never-trust-ai
1•replatformradar•40m ago•0 comments

"Bettering Myself" by Ottessa Moshfegh

https://electricliterature.com/bettering-myself-ottessa-moshfegh/
2•js2•41m ago•1 comments

Reaping the Whirlwind – Inside the Potomac River Midair Collision

https://admiralcloudberg.medium.com/reaping-the-whirlwind-inside-the-potomac-river-midair-collisi...
2•sklargh•44m 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