frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

65% of Girls Who Use AI-Assisted Devices See Them as "Friends"

https://www.girlscouts.org/en/footer/press-room/2026-press-announcements/research-finds-girls-vie...
1•susiecambria•42s ago•0 comments

USA's PRE-Stuxnet Cyber Weapon: What FAST16 Reveals About State-Level Malware

https://twit.tv/posts/tech/inside-americas-pre-stuxnet-cyber-weapon-what-fast16-reveals-about-sta...
1•NN88•1m ago•0 comments

Android rolling out AI 'Contextual suggestions' that learn from your habits

https://9to5google.com/2026/05/13/android-contextual-suggestions/
1•petee•4m ago•0 comments

Technical Support Representative

1•SanthiyaDhiya•5m ago•0 comments

Load Cells for Silos

https://www.swttech.com/products/load-cells-for-silos/
1•swttech•7m ago•0 comments

Physics of the Century (So Far)

https://galileo-unbound.blog/2026/05/13/the-best-physics-of-the-century-so-far/
1•ibobev•7m ago•0 comments

A minimal distributed key-value database with HashiCorp's Raft library

https://notes.eatonphil.com/minimal-key-value-store-with-hashicorp-raft.html
1•ibobev•8m ago•0 comments

Unsloth: The Art of the Sloth

https://fizz.prose.sh/unsloth
1•severine•8m ago•0 comments

Malware crew TeamPCP open-sources its Shai-Hulud worm on GitHub

https://www.theregister.com/security/2026/05/13/malware-crew-teampcp-open-sources-its-shai-hulud-...
2•pkaeding•9m ago•0 comments

In Praise of Aegis Authenticator (and KDE Connect)

https://agateau.com/2026/in-praise-of-aegis-authenticator/
2•agateau•10m ago•0 comments

Tech oligarchs reshape humanity while billionaires of old seem quaint

https://www.theguardian.com/technology/2026/mar/08/billionaires-tech-oligarchs
3•robtherobber•12m ago•0 comments

US/China talks to make sure non-state actors don't get a hold of these AI models

https://www.cnbc.com/2026/05/14/us-china-ai-rules-bessent-us-lead.html
2•nl•12m ago•0 comments

Show HN: Running the second public ODoH relay

https://numa.rs/blog/posts/odoh-anonymous-dns-without-an-account.html
3•rdme•14m ago•0 comments

Show HN: NoPoint – Pitch decks vibe coded instead of clicked (open source)

https://nopoint.app
1•mewc•14m ago•1 comments

Debankd, a Financial Censorship Monitor

https://debankd.org/
1•kokkis•14m ago•1 comments

Show HN: Bhatti – self-hosted runtime for your harness engineering

https://bhatti.sh
1•sahil-shubham•15m ago•1 comments

SenseNova-U1 Technical VAE-Free Pixel-Level Flow Matching 32xCompression [pdf]

https://github.com/OpenSenseNova/SenseNova-U1/blob/main/docs/pdf/SenseNOVA_U1.pdf
1•DanielWen666•15m ago•0 comments

Kay Nishi and the Meeting That Started MS-DOS

https://nemanjatrifunovic.substack.com/p/kay-nishi-and-the-meeting-that-started
1•whobre•18m ago•0 comments

Show HN: Local-first Kubernetes YAML visualizer (no server, no LLM)

https://openlume.com/explain/yaml
1•shadaba•18m ago•0 comments

Web Agent: Browser-native agent · profiles · tools

https://github.com/nikola66/web-agent
1•nikola66•19m ago•0 comments

Show HN: Zenflow a multi-agent orchestration and workflow engine

https://github.com/zendev-sh/zenflow
1•vietanh85•21m ago•0 comments

Pipes, Forks, and Zombies

https://cs61.seas.harvard.edu/wiki/2017/Shell3/
1•tosh•21m ago•0 comments

I Tracked Down the Hidden Workers Secretly Powering ChatGPT [video]

https://www.youtube.com/watch?v=aooiDA-AsNo
2•ShinyLeftPad•32m ago•0 comments

Officially, Marco Rubio is still banned from China. So how is he in Beijing?

https://www.washingtonpost.com/world/2026/05/14/officially-marco-rubio-is-still-banned-china-so-h...
2•_tk_•33m ago•0 comments

The First Wafer Scale Company – Trilogy Systems Story Part 1 (2024)

https://thechipletter.substack.com/p/wafer-scale-trilogy-systems-part
1•klelatti•33m ago•0 comments

Economics of Expanding Medical Assistance in Dying to Vulnerable Populations

https://journals.sagepub.com/doi/10.1177/00302228251323299
1•NalNezumi•38m ago•0 comments

Hiring Trends in Mid 2026: What Founders Are Getting Wrong

https://foundersarehiring.com/hiring-resources/hiring-trends-mid-2026
1•niksmac•40m ago•0 comments

AI Font Detector: Smart Ways to Identify Fonts with Precision

https://www.tumblr.com/tracksaasly/816569321203613696/ai-font-detector-smart-ways-to-identify-fon...
1•emmaroutines•40m ago•0 comments

Non-interactive Claude Code usage ejected from subscriptions

1•mdemare•40m ago•0 comments

Why Ruby Is the Better Language for LLM-Powered Development

https://www.bytecode.hr/posts/why-ruby-is-the-better-language-for-llm-powered-development
1•faangguyindia•41m 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