frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Deep in This Lake, a Contagious Cancer Is Spreading

https://www.nytimes.com/2026/07/22/science/contagious-cancer-catfish.html
1•gmays•2m ago•0 comments

Playing with Playbook; the scheduling app for astronauts (2015)

https://blogs.esa.int/iriss/2015/09/09/playing-with-playbook/
1•prawn•5m ago•0 comments

Show HN: SeaTicket – AI agent that resolve GitHub and Discord issues

1•Daniel-Pan•7m ago•0 comments

Show HN: Coast – Turn an iPhone into a control surface for a Mac

https://coast.masn.studio
1•MasonChen•8m ago•0 comments

Ask HN: What apps are you building?

6•totaldude87•13m ago•3 comments

Using an open model feels surprisingly good

https://matthewsaltz.com/blog/using-an-open-model-feels-surprisingly-good/
3•msaltz•14m ago•0 comments

An Uncomplicated Man

https://www.lrb.co.uk/the-paper/v48/n14/emily-wilson/an-uncomplicated-man
2•andsoitis•16m ago•0 comments

Zureka: A way forward to solving the thorniest issues in quantum mechanics

https://deivondrago.substack.com/p/zureka-a-way-forward-to-solving-the
2•mellosouls•17m ago•0 comments

Is This What Comes After AI Slop?

https://www.theatlantic.com/technology/2026/07/daggermouth-novel-bestseller-ai/688067/
2•acmnrs•18m ago•0 comments

A Gang of Thieves Pulled Off a Multimillion-Dollar Data Center Heist

https://www.nytimes.com/2026/07/12/magazine/data-center-heist.html
2•acdanger•18m ago•0 comments

EYG: A Programming Language for Humans

https://crowdhailer.me/2026-06-08/a-programming-language-for-humans/
8•crowdhailer•29m ago•1 comments

A $500 RL fine-tune of a 9B open model beat frontier models on catalog review

https://fermisense.com/when-machines-take-the-wheel/
3•ilreb•32m ago•0 comments

Review: Neil Postman's 'Amusing Ourselves to Death' (2016)

https://www.refsmmat.com/posts/2016-01-23-amusing-ourselves-to-death.html
3•jruohonen•37m ago•0 comments

Fundraiser to Bolster Monero's Security Through Automated Testing

https://old.reddit.com/r/Monero/comments/1v8exyy/fundraiser_to_bolster_moneros_security_through/
2•lunarthegrey•39m ago•0 comments

Venture Mindset

https://herbertlui.net/venture-mindset/
2•herbertl•41m ago•0 comments

Show HN: Edge Drop – The clipboard manager Windows 11 should have shipped with

https://github.com/Deepender25/Edge-Drop
3•Deepender25•42m ago•1 comments

Vakonomic Fluids

https://arxiv.org/abs/2607.18312
3•E-Reverance•43m ago•0 comments

Gemini Distillation Service

https://docs.cloud.google.com/gemini-enterprise-agent-platform/models/tuning/distillation
5•asawfofor•43m ago•0 comments

Show HN: Gemma 4 26B A4B running on an iPhone 17 Pro via model paging

https://noemaai.com/
2•armin976•46m ago•0 comments

China Begins Making Homegrown DUV Lithography Chipmaking Tools

https://www.reuters.com/world/china/china-begins-making-homegrown-duv-chipmaking-tools-informatio...
3•karakoram•48m ago•0 comments

Trusty Boot Key, a Ventoy Alternative

https://codeberg.org/aol/trusty-boot-key
2•mixmastamyk•50m ago•0 comments

Private Credit Backstop, How Private Equity Socializes Risk Through Insurers [pdf]

https://papers.ssrn.com/sol3/Delivery.cfm/7152239.pdf
2•senshan•50m ago•0 comments

Internet is no longer accessible?

13•cute_boi•51m ago•6 comments

The Forensic Audit of Project 545

https://www.bitchute.com/video/9r7XJ8ykLrhs/
2•untiledsource•55m ago•0 comments

Families in London temporary housing told they cant use inbuilt air conditioning

https://www.theguardian.com/society/2026/jul/27/homeless-families-london-temporary-housing-air-co...
4•stuaxo•56m ago•0 comments

Norway Salmon

https://www.abc.net.au/news/2026-07-28/how-norway-s-salmon-industry-became-a-global-behemoth/1069...
4•CHB0403085482•57m ago•0 comments

Tlbic: A Local Basic Income Proposal Built to Protect Human Dignity (v9.0)

https://drive.google.com/file/d/10YGI27bT6Vj00LlJuKwoaSYzG-cXNbwF/view?usp=drive_link
4•michikawa59•58m ago•1 comments

Gamma-ray pulsations reveal extreme 3.2-ms pulsar 3,900 light-years away

https://phys.org/news/2026-07-gamma-ray-pulsations-reveal-extreme.html
2•wglb•59m ago•1 comments

Residential Proxies Are a National Security Threat

https://jacob.gold/posts/residential-proxies-are-a-national-security-threat/
4•joshbetz•1h ago•0 comments

First Genesis Mission Projects Selected to Boost AI-Driven Scientific Discovery

https://www.energy.gov/articles/secretary-energy-chris-wright-announces-first-genesis-mission-pro...
2•gmays•1h 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