frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nerdminer mines xcoin on a Mac using new consensus algoritm

https://medium.com/@knexcoin/why-a-macbook-beats-a-mining-warehouse-on-metaldag-3c0e4f498b87
1•winnertakeall•3m ago•0 comments

A hundred coffee machines and the joy of small open source

https://sjg.io/writing/a-hundred-coffee-machines-and-the-joy-of-small-open-source/
1•simonjgreen•5m ago•0 comments

CERN Transitioning Computers To Debian After Being A Longtime RHEL Institution

https://www.phoronix.com/news/CERN-Goes-Debian-Leaving-RHEL
1•thunderbong•6m ago•0 comments

Kraaken: A Ship, Power Plant, Reservoir and Data Centre in One

https://energydigital.com/news/kraaken-a-ship-power-plant-reservoir-data-centre-in-one
1•geox•7m ago•0 comments

Show HN: Professional Security Testing Platform

https://bugbounty-arsenal.net/
1•foxvr•8m ago•0 comments

PostHog reported zero signups while Supabase showed one

https://lifecmp.com/blog/posthog-zero-signups-supabase-one
1•michaelwang100•9m ago•0 comments

ERIS: Local-first vault agent in Rust, grammar-enforced tools

https://github.com/janpauldahlke/eris
1•teleforce•12m ago•0 comments

Show HN: TERMy – A fast terminal assistant that does not use LLMs

https://github.com/gioblu/NPC-Forge/blob/main/docs/development.md
1•gioscarab•14m ago•0 comments

Tesla launches steering-wheel-free Cybercab robotaxi in Austin

https://www.businessinsider.com/tesla-cybercab-robotaxi-launch-event-austin-self-driving-car-2026-9
1•joak•16m ago•0 comments

Show HN: Send secrets a server can't decrypt, even if compelled to

https://serial.sumitdwivedi.com/
2•AuraFarm•18m ago•1 comments

How I use GBNF grammars to make small local models stop hallucinating JSON

https://eris-system.dev/blog/gbnf-grammars
1•teleforce•18m ago•0 comments

Ask HN: Rename ChatGPT?

1•alansaber•18m ago•0 comments

Nicholas Polson Has Written Over 200 Academic Papers in 2026 (so far)

https://economistwritingeveryday.com/2026/08/26/nicholas-polson-has-written-over-200-academic-pap...
3•luu•23m ago•0 comments

Show HN: Prices.eu.org

https://prices.eu.org/
2•sourcecodeplz•25m ago•1 comments

BlackRock CEO said Americans' savings and investments will fund data centers

https://www.msn.com/en-us/money/economy/blackrock-ceo-said-americans-savings-and-investments-will...
2•SockThief•26m ago•0 comments

Promptmatics – Free telemprompter following your voice

https://promptmatics.vercel.app/
1•olvy0•27m ago•0 comments

Weird Little Guys of FOSS

https://drewdevault.com/weird-guys/
3•absoluteleyyes•31m ago•0 comments

Job Loss Fears in the First Years of Generative Artificial Intelligence

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5136877
2•luu•31m ago•0 comments

Muse Spark 1.3 Ranks #3 on Artificial Analysis Intelligence Index

https://artificialanalysis.ai/#artificial-analysis-intelligence-index
1•alefalfa•31m ago•0 comments

I built CashmApp – a "GPS for your finances" that reroutes when life changes

https://apps.apple.com/pl/app/cashmapp-financial-gps/id6788372249
2•tem_uche•33m ago•0 comments

NPM audit service is down while NPM status page reports otherwise

https://github.com/orgs/community/discussions/187552
3•morbusfonticuli•33m ago•3 comments

The most important half-hour of my life

https://greghadfield.medium.com/tony-greenstein-the-most-important-half-hour-of-my-life-d03f7877a492
2•luu•33m ago•0 comments

Show HN: Videm – An AI image generator with 3 free daily images

https://videm.ai/
1•Evanmo666•35m ago•0 comments

Amazon and Meta AI bots account for most website visits

https://pressgazette.co.uk/platforms/amazon-and-meta-ai-bots-account-for-most-website-visits/
2•giuliomagnifico•39m ago•0 comments

The Raspberry Pi Interactive Timeline · 2006–2026

https://raspberry.tips/en/raspberrypi-infos/raspberry-pi-history-timeline
10•mariuz•42m ago•1 comments

The Birds Outside, Drawn for You Automatically

https://hackaday.com/2026/09/04/the-birds-outside-drawn-for-you-automatically/
1•arnemunthekaas•47m ago•0 comments

ApplyOnce – Local-first job application autofill that reads scanned resumes

https://github.com/Nyadzayo/ApplyOnce
1•knyadzayo•48m ago•0 comments

73% of What We Blocked in a Month Was One Syscall Your Sandbox Cannot See

https://grith.ai/blog/io-uring-the-syscall-your-sandbox-cant-see
2•edf13•52m ago•0 comments

A connectomics milestone: Mapping the complete male fruit fly brain

https://research.google/blog/a-connectomics-milestone-mapping-the-complete-male-fruit-fly-brain/
1•fittingopposite•54m ago•0 comments

Carbon-aware electricity pricing, measured daily on 38 grids

https://carbonawarepricing.com/
13•High-Five•57m 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