frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Gnome OS revealed what Linux is becoming

https://www.makeuseof.com/i-tried-gnome-os-and-it-showed-me-where-linux-is-actually-heading/
1•ForHackernews•1m ago•0 comments

I built an LLM Wiki and RAG solution: here's a demo for a security KB

https://99helpers.com/wiki/security-kb
1•nickk81•3m ago•1 comments

Mutually Automated Destruction: The Escalating Global A.I. Arms Race

https://www.nytimes.com/2026/04/12/technology/china-russia-us-ai-weapons.html
1•Leomuck•8m ago•1 comments

Strong Model First or Weak Model First? A Cost Study for Multi-Step LLM Agents

https://llm-spec.pages.dev/
1•vsekar•9m ago•0 comments

Why "Travel Inspiration" is the biggest UX gap in TravelTech

https://www.lupath.ai/
1•LUpath•13m ago•0 comments

Brocards for Vulnerability Triage

https://blog.yossarian.net/2026/04/11/Brocards-for-vulnerability-triage
1•ramimac•13m ago•0 comments

JVM Options Explorer

https://chriswhocodes.com/vm-options-explorer.html
1•0x54MUR41•14m ago•0 comments

Fix monitor that goes black, off or blinks due to static electricity in chair

https://aalonso.dev/blog/2023/how-to-fix-monitor-that-goes-black-off-due-to-static-electricity-in...
1•cyclopeanutopia•17m ago•1 comments

Running AI Agents in a Sandbox

https://oligot.be/posts/ai-sandbox/
1•oligot•19m ago•0 comments

Left-Wing Social Darwinism

https://www.rechristianize.com/blog/social-darwinism/left-wing-social-darwinism.html
1•Egret•26m ago•0 comments

Show HN: 3D Tik Tak Toe (Hard)

https://arthur-ficial.github.io/tictactoe-3d/
1•franze•26m ago•1 comments

MiniMax M2.7 Is Now Open Source

https://firethering.com/minimax-m2-7-agentic-model/
2•steveharing1•36m ago•2 comments

Artemis III Proposed Landing Sites

https://artemis-iii.technex.us
1•hparadiz•38m ago•0 comments

Linux kernel doesn't care about your disk health

https://simpleobservability.com/blog/linux-kernel-doesnt-care-disk-health
2•khazit•39m ago•0 comments

Making memory safe language but easy to use

https://github.com/Vix-Programing-language/Vix-programing-language
2•MrBatata•40m ago•1 comments

Doom, Played over Curl

https://github.com/xsawyerx/curl-doom
3•creaktive•42m ago•0 comments

Show HN: Toy Python Lisp interpreters based on the 1960 McCarthy paper

https://github.com/jhud/lisp
3•disconnection•42m ago•0 comments

Why Scotland Succeeded

https://www.ageofinvention.xyz/p/age-of-invention-why-scotland-succeeded
2•Khaine•52m ago•0 comments

Bourbaki: A Unified Foundation for Mathematics [video]

https://www.youtube.com/watch?v=EQ3w-YcP4q4
2•hnlyman•52m ago•0 comments

I built a tool to answer "why does this user have access to X?" in AD

https://github.com/alparn/whohas
1•Alpn13•56m ago•1 comments

Rapidly Scaffold Agents, MCP Servers, APIs, Websites on AWS

https://awslabs.github.io/nx-plugin-for-aws/
2•cogwirrel•1h ago•0 comments

Show HN: I made an app to help me learn Middle Eastern drumming

https://labs.tiffzhang.com/drums/
1•shadowfiles•1h ago•1 comments

Happy Horse AI

https://www.happy-horse-ai.ai
2•erji2233•1h ago•1 comments

The Gang: A Cooperative Texas Hold'em Bank Heist Card Game

https://boardgamegeek.com/boardgame/411567/the-gang
1•Lwrless•1h ago•0 comments

Intel Xpress Resurrection: Reviving a Forgotten EISA Beast

https://x86.fr/intel-xpress-resurrection-reviving-a-forgotten-eisa-beast/
2•ankitg12•1h ago•0 comments

Intent Security Through the Lens of Claude Code Auto Mode

https://www.lasso.security/blog/claude-code-auto-mode-vs-intent-security
1•irememberu•1h ago•0 comments

Lawyer behind AI psychosis cases warns of mass casualty risks

https://techcrunch.com/2026/03/15/lawyer-behind-ai-psychosis-cases-warns-of-mass-casualty-risks/
4•mentalgear•1h ago•2 comments

The Federal Government Is Rushing Toward AI

https://www.propublica.org/article/federal-government-ai-cautionary-tales
2•jruohonen•1h ago•0 comments

Virtual Tour of the CFS Commercial Fusion Campus (April 2026) [video]

https://www.youtube.com/watch?v=Wp1rcZ-daBU
1•mpweiher•1h ago•0 comments

I gave my AI shell access and felt uneasy – so I sandboxed it

https://github.com/sliamh11/Deus
2•sliamh11•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•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