frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Removing fsync from our local storage engine

https://fractalbits.com/blog/remove-fsync/
2•zzsheng•4m ago•1 comments

Tired of "Move to left and decrease border radius"? Try Browser-Mutation

https://github.com/JosPMSilva/Browser-mutation
1•JosPMSilva•4m ago•0 comments

Ask HN: Degraded GPT-5.5 Quality?

1•ramon156•11m ago•0 comments

K8s-Container_escape_audit Version 3

https://github.com/liamromanis101/K8s-container_escape_audit
1•lromanis•17m ago•1 comments

Grok TTS: X's Latest TTS Model Sets a New Baseline

https://techstackups.com/articles/grok-tts-xai-text-to-speech-model/
1•ritzaco•20m ago•0 comments

Silicon oscillators solve problems in seconds using semiconductors

https://techxplore.com/news/2026-05-silicon-oscillators-problems-thousands-years.html
1•01-_-•21m ago•0 comments

U.S. and China Pursue Guardrails to Stop AI Rivalry from Spiraling into Crisis

https://www.wsj.com/world/china/u-s-and-china-pursue-guardrails-to-stop-ai-rivalry-from-spiraling...
1•01-_-•23m ago•0 comments

HomeDesignsAI

https://homedesigns.ai
2•bellamoon544•27m ago•0 comments

Progressively Improving a Ball of Mud

https://afilina.com/improving-ball-of-mud
2•luu•29m ago•0 comments

The best ideas come from the arena

https://www.reproof.app/blog/amex-history
1•maguay•31m ago•0 comments

ZAYA1-8B: An 8B Moe Model with 760M Active Params Matching DeepSeek-R1 on Math

https://firethering.com/zaya1-8b-open-source-math-coding-model/
1•steveharing1•33m ago•0 comments

Ask HN: Does a vetted marketplace improve hiring?

1•Sam6late•33m ago•0 comments

Subquadratic claims to have fixes attention scaling with 12M context window

https://twitter.com/alex_whedon/status/2051663268704636937
1•jiwidi•37m ago•0 comments

Who edited the date stamp of this post

https://xcancel.com/iamasoothsayer/status/1535494638391664641?s=46%0A
2•razodactyl•42m ago•0 comments

The Semantic Conception of Truth and the Foundations of Semantics(1944)

https://www.ditext.com/tarski/tarski.html
2•nill0•45m ago•0 comments

My first post scored 1. Karpathy's autoresearch idea helped me repost

https://github.com/meller/laneconductor
2•meller_a•49m ago•0 comments

Has Meta ever provided Qualcomm EDL files for recovery?

1•nar001•57m ago•0 comments

Mapping Project Complexity with AI

https://www.maiobarbero.dev/articles/project-complexity-ai-skills/
1•maiobarbero•57m ago•1 comments

Show HN: Production-Ready MERN Job Board Template

https://auditjobs.up.railway.app/
1•hlymrk•58m ago•0 comments

Show HN: Crypto Cards – 136 debit/credit cards, MIT-licensed list

https://github.com/mbtrilla/awesome-crypto-cards
1•mbtrilla•59m ago•0 comments

Message Brokers Are Modern Grids(2020)

https://yusufaytas.com/message-brokers-are-modern-grids
3•return_null•1h ago•0 comments

Show HN: Modolap, Improve the Reliability of Your Software Systems

https://modolap.com/
1•ronfriedhaber•1h ago•0 comments

I Wrote a Nix Flake for Helium Browser with Home Manager and NixOS Modules

https://github.com/oxcl/nix-flake-helium-browser
2•oxcl•1h ago•0 comments

Show HN: Social Network for Corporate Cringe

https://CringeOut.com
5•CringeOut•1h ago•1 comments

Plimpton 322 – Babylonian Clay table of triangles 1k years before Pythagoras

https://en.wikipedia.org/wiki/Plimpton_322
1•lifeisstillgood•1h ago•1 comments

Show HN: Uvx privacy-steward for PII removal in texts

https://github.com/AI-Colleagues/privacy-steward
1•NeuralNotwork•1h ago•0 comments

Show HN: Imagev2.me – Tired of juggling AI image subs, so I built one studio

https://imagev2.me/
1•billy42•1h ago•0 comments

SEO-Friendly Public Pages for Confluence

https://marketplace.atlassian.com/apps/356517983/public-pages-for-confluence
1•MaxBabenko•1h ago•0 comments

AI Agent Drained for $200K with This One Tweet Hack

https://www.ccn.com/news/crypto/ai-agent-drained-for-200k-with-this-one-tweet-hack-heres-how/
2•aledevv•1h ago•0 comments

SpaceX IPO gives Musk power and curbs shareholder rights

https://www.reuters.com/sustainability/boards-policy-regulation/spacex-ipo-gives-musk-sweeping-po...
3•denis1•1h ago•5 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