frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Bootstrap from Twitter

https://getbootstrap.com/2.0.2/
1•auraham•2m ago•0 comments

GPT Image 2.5 Prompts

https://github.com/VulcanEon/awesome-gpt-image-2.5-prompts
1•aurenvale•3m ago•0 comments

How Streaks Work?

https://sheets.works/data-viz/streaks
1•lordbubbles•4m ago•0 comments

How meaning is fundamentally altered by sonic environments

https://scifi.danieldeboulay.com/
1•deboulaymxf•5m ago•0 comments

Atria Dawn Preview: an AI model trained end-to-end on verifiable research

https://atria-dawn.atominnolab.com/
1•naktinis•8m ago•0 comments

Show HN: Nerdulator – put something in, get everything out (no AI)

https://nerdulator.com
1•newlifehelp•13m ago•0 comments

EchoMuse – Alexa replacement and controller for Echo Dot 2nd Generation device

https://github.com/wilbowes/EchoMuse
1•tehlike•13m ago•0 comments

The Controversial Linear No-Threshold Model

https://jnm.snmjournals.org/content/58/1/7
1•leonidasrup•16m ago•0 comments

Amazon says cloud infrastructure in Bahrain, UAE 'beyond saving'

https://thecradle.co/articles-id/39961
2•slowin•17m ago•0 comments

Housekeeping and Manpower Outsourcing Services

1•tasmiyai•17m ago•0 comments

My HP EliteDesk 800 G1 Decrypts Bitlocker

https://postimg.cc/0rj2vW64
1•sehw•18m ago•2 comments

We don't need AI regulation – leave safety to us, Nvidia's Jensen Huang says

https://techcrunch.com/2026/09/15/we-dont-need-ai-regulation-leave-safety-to-us-nvidias-jensen-hu...
3•girish_r•24m ago•1 comments

The Customizable Select

https://utilitybend.com/blog/the-customizable-select-part-one-history-trickery-and-styling-the-se...
1•nesk_•28m ago•0 comments

Schadenfreude

https://en.wikipedia.org/wiki/Schadenfreude
1•vismit2000•34m ago•1 comments

The Unwilding of Patagonia's Pollinators

https://biographic.com/the-unwilding-of-patagonias-pollinators/
1•Tomte•34m ago•0 comments

Ask HN: Are requests/demands coming from AI companies for regulation genuine?

2•atakan_gurkan•35m ago•3 comments

Show HN: MinMAX Sort – A Stable Bidirectional Selection Sort Family Algorithm

2•jodenghog•53m ago•1 comments

Prefill a 284B model on Nvidia. Decode it on Apple Silicon. Over plain 10GbE

https://github.com/chadhurley25075-png/pd-bridge
2•jnaina•53m ago•1 comments

MartyPC – A Cycle-Accurate IBM PC/XT Emulator

https://github.com/dbalsom/martypc
2•yitchelle•55m ago•0 comments

We are all Product Engineers now

https://seldo.com/posts/we-are-all-product-engineers-now/
2•ColinEberhardt•57m ago•0 comments

Show HN: An open-source Socratic coach for competitive programming

https://chromewebstore.google.com/detail/socratic-algo-coach/inppdfdpenccjiggnlfaomfnckadoaoi
1•boriskurikhin•1h ago•1 comments

Looking back on Servo's first donation-funded role

https://servo.org/blog/2026/09/15/one-year-of-sponsorship/
2•luu•1h ago•0 comments

Show HN: Check an NPM package or MCP server for malicious code before install

https://bouncer.run/check
1•nader•1h ago•0 comments

The first ever API built for dictation;Today we're launching the Dictation API

https://www.assemblyai.com/dashboard/login
1•iharnoor•1h ago•1 comments

There are no optical corrections in the Parthenon

https://doi.org/10.1098/rsos.260999
2•yzydserd•1h ago•0 comments

I wrote a kill number before I wrote the landing page copy

https://deskthaw.com/blog/preorder-mechanics/
2•aaaan•1h ago•1 comments

A software thing I built: GPS on a 25MHz 486-SX

https://forum.vcfed.org/index.php?threads/a-software-thing-i-built-gps-on-a-25mhz-486-sx.1258966/
3•JPLeRouzic•1h ago•2 comments

I built dual cam app because I had credits left and didn't know what else to do

https://play.google.com/store/apps/details?id=app.heynomad.camera.dualshot.creator.ai&hl=en
1•yugendhar•1h ago•1 comments

Noise-Coded Illumination for Forensic and Photometric Video Analysis

https://arxiv.org/abs/2507.23002
1•1e1a•1h ago•0 comments

Show HN: HTMLCATS – Editor-First Learning for HTML, CSS, and JavaScript

https://htmlcats.com/
1•chriskkim•1h ago•2 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