frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Panic's blog respects its own history

https://unsung.aresluna.org/panics-blog-respects-its-own-history/
1•skadamat•11s ago•0 comments

The DLL that was not present in memory despite not being formally unloaded

https://devblogs.microsoft.com/oldnewthing/20260625-00/?p=112467
1•supermatou•55s ago•0 comments

Is this blog written by AI?

https://brooker.co.za/blog/2026/06/18/my-blog-and-ai.html
1•KraftyOne•1m ago•0 comments

Computational Public Space by Bret Victor [video]

https://www.youtube.com/watch?v=7wa3nm0qcfM
1•skadamat•3m ago•0 comments

The OWASP Agentic Security Initiative Top: A Practical Developer Guide

https://agentsafelabs.com/blog/the-owasp-agentic-security-initiative-top-10-a-practical-developer...
1•waqarjaved•3m ago•0 comments

Show HN: New tech maturity tracking platform for AI startups and their investors

https://techtrust.ai/
1•Patrick_Mebus•7m ago•0 comments

Testing a Kafka Proxy: Taming Millions of Permutations

https://www.conduktor.io/blog/testing-a-kafka-proxy
1•chtefi•8m ago•0 comments

Why Drizzle ORM couldn't publish new versions to NPM for a month

https://www.vlt.io/blog/packument-size-limits
4•treve•9m ago•0 comments

AI shows promise in the fight against fake news

https://knowablemagazine.org/content/article/technology/2026/fighting-false-facts-with-artificial...
2•knowablemag•10m ago•0 comments

Supreme Court Gives Pesticide Corporations Immunity from Cancer Lawsuits

https://www.foodandwaterwatch.org/2026/06/25/supreme-court-gives-pesticide-corporations-immunity-...
2•mikhael•10m ago•0 comments

Florida's 'Alligator Alcatraz' immigration detention center has closed

https://apnews.com/article/alligator-alcatraz-closure-florida-immigration-detention-3c371f51fe71e...
1•Jimmc414•11m ago•0 comments

Making Windows 11 Suck Less in 2026

https://www.thurrott.com/windows/windows-11/332300/making-windows-11-suck-less-in-2026
1•lordleft•12m ago•0 comments

GPU-Accelerated Presto

https://prestodb.io/blog/2026/06/24/gpu-accelerated-presto-c/
1•tmostak•13m ago•0 comments

I feel like VSCode is falling apart

1•othmanosx•13m ago•1 comments

General Intuition raises $320M for gamer-data bet on real-world AI agents

https://runtimewire.com/article/general-intuition-320m-series-a-pim-de-witte-medal-gameplay-agents
1•ryanmerket•14m ago•0 comments

Jython

https://en.wikipedia.org/wiki/Jython
1•skogstokig•15m ago•0 comments

The AI backlash is only getting started

https://www.economist.com/leaders/2026/06/25/the-ai-backlash-is-only-getting-started
2•edward•15m ago•0 comments

Open-source machine identity security (IAM roles outnumber humans 82:1)

https://github.com/josephtui767-cloud/MII
1•josephtui•16m ago•0 comments

AI hiring algorithms reject Black, Asian job seekers at higher rates

https://www.theregister.com/ai-ml/2026/05/27/ai-hiring-algorithms-reject-black-asian-job-seekers-...
1•ohjeez•17m ago•0 comments

Hyper Text Coffee Pot Control Protocol

https://en.wikipedia.org/wiki/Hyper_Text_Coffee_Pot_Control_Protocol
2•sans_souse•18m ago•0 comments

Show HN: Yet Another Confidence Calculator

https://confidence.nickyreinert.de/
1•y42•18m ago•0 comments

Claude Tag: How to Build Your Own Slack AI Agent

https://www.arcade.dev/blog/claude-tag-build-slack-ai-agent/
1•manveerc•19m ago•0 comments

Show HN: Glasshouse – A privacy-first news app with on-device personalization

https://www.roserug.co/products/glasshouse
1•roserugco•19m ago•0 comments

Show your hands honor for the power they bring you

https://aresluna.org/show-your-hands-honor/
1•matthberg•20m ago•0 comments

ParallelKernelBench: Can LLMs write fast multi-GPU kernels?

https://github.com/togethercomputer/ParallelKernelBench
1•matt_d•21m ago•0 comments

Apple Explains Why It Raised Prices on These 14 Products Today

https://www.macrumors.com/2026/06/25/apple-explains-why-it-raised-prices/
1•tosh•21m ago•0 comments

VibeToContent: Marketing Content for Builders

https://vibetocontent.com/
1•javierluraschi•22m ago•0 comments

The biggest problems in using AI

https://shearer.org/research/addressing-biggest-problems-in-ai/
1•smartmic•23m ago•0 comments

Em Dash Counter: A browser extension that counts em dashes

https://mattnite.net/blog/em-dash-counter/
1•speckx•23m ago•0 comments

Linear elastic caching reduced Spanner's memory use by 15.5%

https://research.google/blog/optimizing-cloud-economics-with-linear-elastic-caching/
1•p_stuart82•23m 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