frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The smallest possible Linux distribution

https://distrowatch.com/weekly.php?issue=20260914#qa
1•birdculture•21s ago•0 comments

Manitoba adopts permanent daylight time

https://www.cbc.ca/news/canada/manitoba/daylight-time-manitoba-9.7347844
1•qkeast•46s ago•0 comments

OpenAI discloses new 'concerning' behavior

https://www.dw.com/en/openai-discloses-new-concerning-behavior/a-79300180
3•jethronethro•2m ago•0 comments

Show HN: Tasku Cloud – Sync, backup, web app

https://tasku.cloud/
1•nerimasoft•2m ago•0 comments

Cohere and Aleph Alpha Join Forces

https://cohere.com/blog/cohere-alephalpha-join-forces
1•Anon84•3m ago•0 comments

Nasiba

https://www.nasiba.co/
1•paul91zz•3m ago•0 comments

You can now predict anything bruh

https://www.onemarkos.com/p/prior-chat-predictive-intelligence
1•onemarkos•4m ago•0 comments

Intelligent Terminal 0.2.2572: Faster, Smoother, and More Reliable

https://devblogs.microsoft.com/commandline/intelligent-terminal-0-2-25-performance-reliability/
1•ibobev•4m ago•0 comments

Missouri governor orders guardrails on Flock cameras and ALPRs

https://www.stlpr.org/news-briefs/2026-09-16/flock-cameras-guardrails-missouri-kehoe
2•lenerdenator•4m ago•0 comments

Ask HN: What would you include in an academic workshop on vibe coding?

1•cximenez•6m ago•0 comments

How not to solve Jane Street's ASIC puzzle. Kinda

https://www.babush.me/how-not-to-solve-jane-streets-asic-puzzle.html
1•babush•7m ago•0 comments

Show HN: Real-Time Bluesky Post Firehose in < 256MB

https://turbolytics.io/demos/bluesky/
1•dm03514•7m ago•1 comments

Signal releases phonenumber-less signups in beta

https://community.signalusers.org/t/beta-feedback-for-the-upcoming-android-8-28-release/76457
1•dherls•9m ago•1 comments

Show HN: MCPJam - the first testing & evaluations platform for MCP servers

https://www.mcpjam.com
3•prathmeshmcp•9m ago•0 comments

Show HN: Key Jump – jump to search results by pressing 1,2,3

https://chromewebstore.google.com/detail/key-jump/bniglipeipioplnfjikdkjakllkgjidm
1•techsin101•13m ago•0 comments

Getting rid of bad habits without suffering, without clinics, more effective

https://neo.miniproject.fyi
1•Neopsy•13m ago•0 comments

ChatGPT for Word, Excel and PowerPoint

https://chatgpt.com/apps/word/
1•vertigoruntime•13m ago•1 comments

Show HN: Pi-jev-auto-mode – a probability model gates Pi's shell commands

https://github.com/jomatsu/pi-jev-auto-mode
1•jomatsu•15m ago•0 comments

Inside OpenAI’s agentic software factory

https://newsletter.pragmaticengineer.com/p/openai-software-factory
1•gfortaine•16m ago•0 comments

Don't Just Say Hello

https://nohello.net/en/
8•ninju•16m ago•0 comments

Saturn's South Pole Features Newly Formed Atmospheric Decagon

https://www.universetoday.com/articles/saturns-south-pole-features-newly-formed-atmospheric-decagon
1•Betelbuddy•17m ago•0 comments

256GB Mac Mini is too small. You need Elbowroom

https://tomjohnell.com/your-256gb-mac-mini-is-too-small-you-need-elbowroom/
3•tjohnell•17m ago•1 comments

AI could create a 'silicon species' that rivals humans, Microsoft chief warns

https://www.euronews.com/next/2026/09/17/ai-could-create-a-silicon-species-that-rivals-humans-mic...
3•devonnull•18m ago•0 comments

Migrating the GitHub Copilot Runtime to Rust, Using Copilot

https://github.blog/ai-and-ml/generative-ai/migrating-the-github-copilot-runtime-to-rust-using-co...
1•mring33621•18m ago•0 comments

Show HN: Telly, talk to your Mac and it does the clicking

https://www.hey-telly.com/
1•mrutopia•20m ago•2 comments

More Kiwis taking 'hands off' approach with self-driving technology

https://www.rnz.co.nz/news/science-and-technology/1447009/more-kiwis-taking-hands-off-approach-wi...
3•billybuckwheat•20m ago•0 comments

Robots are asking for tips. But who gets the money?

https://www.bbc.com/future/article/20260818-do-you-have-to-tip-the-robots
5•ent101•20m ago•1 comments

Typesafe's Jev is the fish at the poker table

https://backnotprop.com/blog/jev-poker/
2•ramoz•21m ago•0 comments

DuckDB Queries Inside MySQL

https://villagesql.com/blog/duckdb/
1•deesix•23m ago•1 comments

Monobloc Chair

https://en.wikipedia.org/wiki/Monobloc_(chair)
2•ginko•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