frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why we create architecture diagrams (2022)

https://www.ilograph.com/blog/posts/why-create-system-architecture-diagrams/
1•billyp-rva•5m ago•0 comments

Show HN: A collaborative SSH copilot for on-calls/DevOps/MLOps

https://github.com/few-sh/fewshell
1•hexer303•5m ago•0 comments

Graphics: How the Strait of Hormuz closure affects global oil supply

https://www.reuters.com/graphics/IRAN-CRISIS/OIL-LNG/mopaokxlypa/
1•cybermango•5m ago•0 comments

Open source contribution and job search as matching markets under AI congestion

https://e10v.me/matching-markets-congestion/
1•e10v_me•5m ago•1 comments

Show HN: Open-source digital business card generator

https://github.com/kevinwielander/digital-business-cards
1•challengerVIE•8m ago•0 comments

The Complexity of Simplicity [video]

https://www.youtube.com/watch?v=Cum5uN2634o
1•tosh•10m ago•0 comments

Explore Khorinis Gothic2 in the Browser

https://rapid-queen-bf94.gothicviewer.workers.dev/
1•xkcd1963•14m ago•1 comments

Haskell library for non-deterministic pattern matching

https://github.com/egison/sweet-egison
1•danny00•14m ago•0 comments

Microsoft .NET on Linux Patches Use IO_uring for Performance Benefits

https://www.phoronix.com/news/Microsoft-dotNET-IO-uring
1•DeathArrow•16m ago•0 comments

Help LaunchChair with the Rank In Public startup competition with an up-vote

https://rankinpublic.xyz/vote/jn7dkedm0qv6q9evmh2nwb7azh84r109
1•jacobcounsell•17m ago•0 comments

Backblaze redefines 'unlimited' backups, not backing up Dropbox and OneDrive

https://www.tomshardware.com/software/cloud-storage/backblaze-redefines-unlimited-while-users-dis...
1•ValentineC•19m ago•0 comments

St. Olaf researchers built a computer that doesn't require electricity

https://wp.stolaf.edu/news/from-springs-and-bolts-st-olaf-researchers-built-a-computer-that-doesn...
1•wjSgoWPm5bWAhXB•22m ago•0 comments

Context Is Software, Weights Are Hardware

https://www.aravindjayendran.com/writing/context-is-not-learning
2•maxaravind•22m ago•1 comments

Palantir's Manifesto and Karp's Dissertation

https://xcancel.com/gothburz/status/2045633711299813488
3•doener•24m ago•0 comments

AI song tops iTunes global charts

https://www.dexerto.com/entertainment/ai-generated-song-takes-1-spot-on-itunes-global-charts-3353...
1•cybermango•25m ago•0 comments

Sugar: A Stimulant That Made the Modern World

https://worldhistory.substack.com/p/sugar-a-stimulant-that-made-the-modern-54e
1•crescit_eundo•27m ago•0 comments

Wandering Spleen Condition: Spleen migrating to different location in the body

https://radiopaedia.org/articles/wandering-spleenwanderingspleen
1•cybermango•28m ago•0 comments

AI vendors' response to security flaws: It wasn't me

https://www.theregister.com/2026/04/19/ai_vendors_response_to_security/
1•beardyw•28m ago•0 comments

Real-Time Visualization of Human Finger Joint Cavitation (2015)

https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0119470
1•bookofjoe•29m ago•0 comments

HTMX 4.0: Hypermedia finds a new gear

https://www.infoworld.com/article/4150864/htmx-4-0-hypermedia-finds-a-new-gear.html
1•asplake•31m ago•0 comments

New HUDIMM memory specification debuts with goal of slashing DDR5 prices

https://www.tomshardware.com/pc-components/ddr5/new-hudimm-memory-specification-debuts-with-goal-...
1•giuliomagnifico•31m ago•0 comments

GitHub Reports DMCA Takedown Record and Surging Anti-Circumvention Claims

https://torrentfreak.com/github-reports-dmca-takedown-record-and-surging-anti-circumvention-claims/
1•Brajeshwar•33m ago•0 comments

Full algorithm chain I used to implement a sigma rules engine in Linux Kernel

https://cybereason-public.github.io/owLSM/architecture/rule-evaluation.html
1•SilverPlate3•36m ago•0 comments

Neo-Feudalism With Good UX – handful of AI companies became land we all work on

https://www.gailweiner.com/post/neo-feudalism-with-good-ux-how-a-handful-of-ai-companies-became-t...
1•bilsbie•40m ago•2 comments

Ultra-Processed Foods and Muscle Fat Infiltration at Thigh MRI

https://pubs.rsna.org/doi/10.1148/radiol.251129
1•bilsbie•41m ago•0 comments

Education research is weak and sloppy. Why?

https://www.theargumentmag.com/p/education-research-is-weak-and-sloppy
2•cebert•47m ago•0 comments

Show HN: Claude-codex-proxy – Use Claude Code with ChatGPT subscription

https://github.com/raine/claude-codex-proxy
6•rane•53m ago•0 comments

Atlassian's new data collection policy protects rich customers while AI eats

https://www.theregister.com/2026/04/18/atlassians_new_data_collection_policy/
2•latein•53m ago•0 comments

0: I built an app that creates AI real estate videos

https://www.tourestateai.com/en
1•jojomasala•54m ago•0 comments

Show HN: Donbar – A dead-simple way to design and send professional emails

https://www.donbar.org/
2•ShmuelT•55m ago•2 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•11mo ago

Comments

cherryteastain•11mo 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•11mo 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