frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Launch HN: Bullet (YC S26) – A Faster Coding Agent

https://www.codewithbullet.com
2•adi1•3m ago•0 comments

Google's newest Pixel Watch monitors blood pressure and insulin resistance

https://www.engadget.com/2235228/google-health-guardian-pixel-watch-5-blood-pressure-insulin-resi...
1•brandonb•3m ago•0 comments

What Was the Internet?

https://www.bostonreview.net/articles/what-was-the-internet/
1•doener•5m ago•0 comments

OMS/RDC: 7 Opportunités D'emploi À NE PAS Manquer

https://medium.com/@eliudprom/oms-rdc-7-opportunit%C3%A9s-demploi-%C3%A0-ne-pas-manquer-0c454d0e367a
1•kivuhub•9m ago•0 comments

Official Fritzing part for the GGreg20_V3 Geiger counter module

https://iot-devices.com.ua/en/ggreg20_v3-fritzing-part/
1•iotdevicesdev•11m ago•0 comments

Gemini API removes postpay billing

1•alex14fr•11m ago•0 comments

A Pi setup with permission, sandbox, and auto-review

https://ptgamr.substack.com/p/a-pi-setup-with-permission-sandbox
1•ptgamr•14m ago•0 comments

Guide to (not) fucking up QR codes

https://infosec.exchange/@rebane2001/117078420917152774
1•signa11•14m ago•0 comments

JEDEC Previews LPDDR6 Roadmap, 512 GB Densities and SOCAMM2 Standard

https://www.techpowerup.com/348441/jedec-previews-lpddr6-roadmap-512-gb-densities-and-socamm2-sta...
1•silentbob7•15m ago•0 comments

Ask HN: So US sanctions are more or less footguns right?

1•shafkathullah•18m ago•0 comments

The shock revelation that light bulbs are wrecking your metabolism

https://www.newscientist.com/article/2582914-the-shock-revelation-that-light-bulbs-are-wrecking-y...
1•XzetaU8•18m ago•1 comments

I feel dizzy again (2024)

https://essays.joodaloop.com/p/i-feel-dizzy-again
1•reasonableklout•19m ago•0 comments

Show HN: Relational-to-KV – AI maps relational models to ToplingDB/RocksDB

https://github.com/rockeet/relational-to-kv
2•rockeetterark•19m ago•0 comments

Coin-Sized Device Can Hack a Boeing 737

https://www.wired.com/story/this-coin-sized-device-can-hack-a-boeing-737/
1•_tk_•20m ago•0 comments

I Quit the Tenure Track

https://www.theatlantic.com/magazine/2026/09/elite-academia-leadership-hypocrisy/687969/
1•Michelangelo11•20m ago•0 comments

TiKV and MinIO used to index terabytes of JSON on low memory hardware

https://blog.glazer.ee/posts/indexing-hundreds-of-terabytes-of-json-for-fast-lookup/
1•hexdecoct•20m ago•0 comments

A ship fired a distress flare as fireworks. A ship went: This is our Christmas

1•Nautology•22m ago•0 comments

Show HN: Self University – learn system engineering via interactive puzzles

2•dima853•23m ago•0 comments

Sketches in Bedlam; or Characteristic Traits of Insanity (1823)

https://gutenberg.org/cache/epub/79350/pg79350-images.html
1•petethomas•23m ago•0 comments

Private Email Is Fine

https://buttondown.com/blog/hide-your-email
1•maguay•25m ago•0 comments

The agentic development environment with memory

https://xirp.spotify.com
1•jcsoft•25m ago•0 comments

The Mischief Haskell ECS Game Engine

https://hackage-content.haskell.org/package/mischief-ecs-0.1.0.0/docs/Mischief-ECS.html
2•kqr•26m ago•0 comments

Stealing Reasoning Traces from Proprietary LLM APIs [pdf]

https://arxiv.org/abs/2608.09867
1•j1436go•36m ago•0 comments

Wall Street Is About to Trade Computer Power Like Oil

https://financeandquantsociety.org/blog/wall-street-is-about-to-trade-computer-power-like-oil
3•jonbaer•42m ago•0 comments

Twitch CPO squirms, admits everyone hates its new AI training 'feature'

https://www.windowscentral.com/artificial-intelligence/if-it-was-opt-in-nobody-would-opt-in-cring...
2•pjmlp•42m ago•0 comments

Recast uses hyper-resolution AI weather model

https://www.recastsystems.com/
1•sixtyj•42m ago•1 comments

Show HN: I Built Simple Trackr to replace the spreadsheets

https://simple-trackr.com
1•nicojuhari•44m ago•0 comments

Get-Fable

1•mamdouhezzz•44m ago•0 comments

Show HN: How to Bill International Clients

https://invoiceace.app/blog/international-invoicing-guide-currency-conversion
1•nimsarajay•45m ago•0 comments

Nvidia doubles RTX PRO 6000 Blackwell's MSRP to a staggering $16,000

https://www.tomshardware.com/pc-components/gpus/nvidia-doubles-rtx-pro-6000-blackwells-msrp-to-a-...
4•jacquesm•48m 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