frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why modern physics is forcing us to rethink existence

https://bigthink.com/series/full-interview/michelle-thaller-spacetime/
1•Brajeshwar•20s ago•0 comments

Bernie Sanders: I spoke to AI agent Claude [video]

https://www.youtube.com/watch?v=h3AtWdeu_G0
1•epaga•1m ago•0 comments

SQLAlchemy 2 In Practice

https://blog.miguelgrinberg.com/post/sqlalchemy-2-in-practice---chapter-1---database-setup
1•ibobev•3m ago•0 comments

Deepfake Impersonation Attacks (Part 1): Anatomy of Modern Deepfakes

https://www.slashid.com/blog/deepfake-impersonation-attacks-part-1/
1•snagg•4m ago•0 comments

Show HN: Htmx Toolkit for VS Code with completions, validation and 20 support

https://github.com/andreahlert/htmx-vscode-toolkit
3•andreahlert•7m ago•0 comments

Probing gravity with gravitational waves: cosmology, black hole ringdowns[video]

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

Session private messenger donation appeal

https://session.foundation/blog/a-personal-appeal-from-cofounder-of-session-chris-mccabe
1•yougotwill•13m ago•1 comments

Show HN: Aurea, an image codec that sequences pixels like DNA

https://github.com/5ymph0en1x/Aurea
1•Symphoenix•13m ago•0 comments

Getting Ziggy with It – Re: Factor

https://re.factorcode.org/2026/03/getting-ziggy-with-it.html
2•birdculture•14m ago•0 comments

Yog-Fsharp – A Graph Library for F#. A Port of Gleam's Yog

https://github.com/code-shoily/yog-fsharp
1•TheWiggles•15m ago•0 comments

Thin Ice

https://grist.org/science/on-thin-ice-glacier-tourism-iceland/
2•Brajeshwar•20m ago•0 comments

Show HN: Sonar – A tiny CLI to see and kill whatever's running on localhost

https://github.com/RasKrebs/sonar
3•raskrebs•22m ago•1 comments

Show HN: Varpulis – Real-time behavioral guardrails for AI agents

https://github.com/varpulis/varpulis-agent-runtime
1•cpo75•25m ago•0 comments

Xiaomi MiMo-V2-Pro

https://mimo.xiaomi.com/mimo-v2-pro
2•jusgu•25m ago•2 comments

The Transformer Architecture, Visualized

https://www.vizuaranewsletter.com/p/the-transformers
1•Anon84•26m ago•0 comments

State of Platforms 2026: From Adoption to Accountability

https://offentlig-paas.no/artikkel/state-of-platforms-2026
4•starefossen•30m ago•1 comments

Have Fungi Hacked Us?

https://thesporereport.com/?p=884
3•stared•34m ago•0 comments

Cell-inspired sensor paves way to real-time health

https://www.latrobe.edu.au/news/articles/2026/release/cell-inspired-sensor-paves-way-to-real-time...
2•giuliomagnifico•35m ago•0 comments

Reverse Engineering Life and Reality

https://mimetra.com/blog/understanding-of-reality/
1•mw67•37m ago•1 comments

I collected 1k cancellation URLs and built them into an iOS app

https://apps.apple.com/us/app/subscriptioncat-reminder/id6760429188
3•hiroshichan•38m ago•0 comments

No semicolons needed: a survey of programming language syntaxes

https://terts.dev/blog/no-semicolons-needed/#lua
2•fanf2•40m ago•0 comments

Cursor Composer 2 is just Kimi K2.5 with RL

https://twitter.com/fynnso/status/2034706304875602030
33•mirzap•40m ago•8 comments

The Soul of a Pedicab Driver

https://www.sheldonbrown.com/pedicab.html
2•haritha-j•41m ago•0 comments

Chemical pollutants are rife across the oceans

https://www.nature.com/articles/d41586-026-00850-z
1•Brajeshwar•42m ago•0 comments

Norway's Consumer Council takes aim at enshittification

https://www.theregister.com/2026/03/06/forbrukerradet_aim_enshittification/
2•rbanffy•43m ago•0 comments

Electric plasma guided with ultrasonic fields

https://www.science.org/doi/full/10.1126/sciadv.adp0686
1•akshatjiwan•44m ago•0 comments

Show HN: Popoto – A Redis/Valkey ORM with Django-Like Syntax for Python

https://popoto.readthedocs.io/en/latest/
1•tomcounsell•48m ago•0 comments

O'Sullivan makes highest-ever break with historic 153

https://www.bbc.co.uk/sport/snooker/articles/cn4391l3lvxo
2•mellosouls•48m ago•1 comments

Mac OS X 25th Anniversary: The Foundation of Apple's Rise

https://www.goto10retro.com/p/mac-os-x-25th-anniversary-the-os
1•rbanffy•49m ago•0 comments

Show HN: Cybertt – Cybersecurity Tabletop

https://cybertt.xyz/
2•pluppen•52m 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•10mo ago

Comments

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