frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI Backlash Comes to the Classroom

https://www.axios.com/2026/09/07/ai-schools-backlash-bans-new-york-los-angeles
1•1vuio0pswjnm7•2m ago•0 comments

Clustering and Anomaly Detection on Handwritten Digits

https://stochastic.blog/clustering-and-anomaly-detection-on-handwritten-digits/
2•Anon84•3m ago•0 comments

Trump Floats Renaming New Mexico as 'New America,' Prompting Pushback

https://www.nytimes.com/2026/09/07/us/politics/trump-rename-new-mexico.html
1•dgellow•4m ago•0 comments

Sequencing-free On-chip detection of lung cancer [pdf]

https://www.nature.com/articles/s41698-026-01547-2.pdf
1•wslh•4m ago•0 comments

Audiowave – bid to own a channel. Post whatever you'd like

https://audiowave.lol
1•archemistz•6m ago•0 comments

Vibe coding made writing cheap. It made reading expensive

https://blog.crossui.com/2026/09/vibe-coding-made-reading-expensive
2•linb•7m ago•0 comments

Everything Everywhere All At Once was edited on an old iMac (2022)

https://www.inverse.com/entertainment/everything-everywhere-all-at-once-editor-interview
2•asimovDev•9m ago•0 comments

Has the DVD-hacking case made a t-shirt illegal? (2000)

https://www.cnn.com/2000/TECH/computing/09/08/decss.shirt.idg/index.html
1•1970-01-01•10m ago•0 comments

A meta-analysis of 3 different notions of software complexity

https://typesanitizer.com/blog/complexity-definitions.html
1•harperlee•11m ago•0 comments

SoapUI: The Most Popular API Testing Tool

https://www.soapui.org/tools/soapui/
1•janandonly•12m ago•0 comments

AI Agents Aha Moment

https://k1024.org/posts/2026/2026-09-06-ai-agents-aha/
1•edward•15m ago•0 comments

Could life exist on Venus? Peptides survive harsh acid

https://www.universetoday.com/articles/could-life-exist-on-venus-peptides-survive-harsh-acid
2•Betelbuddy•15m ago•0 comments

The Shortest IPv6 Addresses

https://ache.one/notes/vanity-ipv6
2•torutofu•15m ago•0 comments

Show HN: Rucc – C compiler in Rust, now compile and run SQLite

https://github.com/tamnd/rucc/pull/624
1•tamnd•17m ago•0 comments

Sound Could Make Sense of Big Data

https://spectrum.ieee.org/data-sonification-stephen-roddy
1•pseudolus•18m ago•0 comments

Guest Terminal:~$

https://i.xiaohan.dev/
2•Bluestein•19m ago•0 comments

Ask HN: 3.5 inch diskette read errors, would a period correct drive do better?

3•rietta•19m ago•0 comments

Room and Pillar Mining

https://en.wikipedia.org/wiki/Room_and_pillar_mining
1•simonebrunozzi•19m ago•0 comments

The next valuable file on your computer won't contain your work

https://tansei.io/blog/ai-agent-skills-workflows-as-files
1•Pooja_Tansei•20m ago•0 comments

Pinch Points – a Rust game with crabs

https://agourlay.github.io/pinch-points-a-rust-game-with-crabs/
1•agourlay•21m ago•1 comments

lsfg-vk v2.0.0

https://lsfg-vk.dev/blog/release-v2.0.0/
2•ErenayDev•23m ago•0 comments

Show HN: Neuro, a compiled language for AI that matches Clang -O2

https://github.com/PanzerPeter/Neuro
1•PanzerPeter•24m ago•1 comments

Show HN: A brainstorm canvas with no back end, running on Chrome's on-device AI

https://idea.xiaohan.dev
1•hanstyle•24m ago•0 comments

A Modest Proposal

https://systemsapproach.org/2026/09/07/a-modest-proposal/
2•teleforce•27m ago•0 comments

De-Brainrot Vacations

https://devz.cl/posts/i-spent-my-vacations-de-brainrotting/
70•DanielVZ•28m ago•16 comments

Show HN: BorderCut – Remove image backgrounds locally in 8 kB, without ML

https://github.com/kong75/bordercut
2•kong75•29m ago•2 comments

Nuxt co-creator Alexandre Chopin joins Encore

https://encore.dev/blog/alexandre-chopin-joins-encore
2•machekb•29m ago•0 comments

Splash-free urinals for global sustainability and accessibility

https://academic.oup.com/pnasnexus/article/4/4/pgaf087/8098745?login=false
40•u1hcw9nx•30m ago•14 comments

Show HN: The Analyst (A data science analytics simulator)

https://theanalyst.dev
1•Stuart_Jones•30m ago•0 comments

The Year Finding and Exploiting Bugs Became Cheap, and What to Do About It

https://blog.zksecurity.xyz/posts/the-year-finding-bugs-became-cheap/
4•vons•30m 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