frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MITS: Rockets, Calculators, and Personal Computers

https://www.abortretry.fail/p/micro-instrumentation-and-telemetry
1•BirAdam•36s ago•0 comments

Ask HN: Active Forums You're a Part Of

1•insanejules•2m ago•0 comments

Logical Query Processing (2009) [pdf]

https://accessexperts.com/wp-content/uploads/2015/07/Logical-Query-Processing-Poster.pdf
1•rzk•3m ago•0 comments

Pactiamo|Proposals, contracts, signatures and payment in one link

https://www.pactiamo.com
1•kkmigu•4m ago•0 comments

The State of AGENTS.md: scoring the 16 biggest AI agent repos' own instructions

https://fpaul.dev/writing/state-of-agents-md-2026/
1•Fpailo•5m ago•0 comments

L8ER SK8ER, a history of a book that never sold

https://biblicallyaccuratealiens.substack.com/p/l8er-sk8er-a-history
1•meandthemajor•5m ago•0 comments

The New York nurses replaced by AI: 'It should concern every patient who cares'

https://www.theguardian.com/technology/2026/jul/13/nurses-new-york-ai
1•beardyw•6m ago•0 comments

A Right Too Expensive to Exercise Isn't a Right

https://deepbluedynamics.com/blog/right-too-expensive-to-exercise
2•kordlessagain•12m ago•0 comments

69% support forcible transfer of 50% AI stock to public fund: Verasight

https://reports.verasight.io/reports/june-2026-ai-survey
1•akramachamarei•13m ago•0 comments

Show HN: ProtoLink – A Python runtime for distributed A2A agents

https://github.com/nMaroulis/protolink
1•nmaroulis21•14m ago•0 comments

Browser over SSH

https://duetbrowser.com/krnl-ss-redirect
1•keepamovin•14m ago•1 comments

How the most impactful AI startups will be built in emerging markets

https://blogs.worldbank.org/en/voices/small-ai--big-bets--how-the-world-s-most-impactful-ai-start...
1•alphabetatango•16m ago•0 comments

Archangel: Cia's Supersonic A-12 Reconnaissance Aircraft [pdf]

https://dn790002.ca.archive.org/0/items/CIABooksMonographs/Archangel-2ndEdition-2Feb12.pdf
1•smalltorch•17m ago•0 comments

SociaLLM Engineering: On Manipulating AI Agents and what we can do about it

https://cephalosec.com/blog/sociallm-engineering-old-tricks-ai-agents-are-the-new-victims/
1•Versipelle•17m ago•0 comments

Toast IDE Gets LSP Goto and Autocomplete

https://github.com/paradise-runner/toast
1•dividedcomet•18m ago•0 comments

Cairn, an AI agent with a $50 budget, an email address, and a constitution

https://github.com/opitaru-sys/seed-agent
1•GreatOldOne•18m ago•0 comments

TrulyFreeOCR – Permissive-license OCR to PDF, self-contained, MRC compression

https://github.com/msmarkgu/TrulyFreeOCR
1•markfront•18m ago•0 comments

Show HN: Runscribe – Turn a terminal session into a re-runnable runbook, offline

https://github.com/hamzamansoorch/runscribe
1•hamza_mansoor•19m ago•0 comments

I'm Making Strandfall, a Solarpunk Orienteering Larp

https://mssv.net/2026/04/29/im-making-strandfall-a-solarpunk-orienteering-larp/
1•surprisetalk•20m ago•0 comments

Show HN: Latent-free ternary LLM training

https://github.com/ValerioDolci/bitbop
1•Feyd•21m ago•1 comments

A Farewell to ARPs: IPv4 Service on IPv6-Only Networks

https://labs.ripe.net/author/remco-van-mook/a-farewell-to-arps-ipv4-service-on-ipv6-only-networks/
1•speckx•23m ago•0 comments

Is Vibecoding Viable for Business?

https://brids.bearblog.dev/is-vibecoding-viable-for-business/
1•mindwok•24m ago•0 comments

Deaths in the UK outnumber births for first time in 50 years

https://www.telegraph.co.uk/news/2026/07/01/death-day-births-50-years-ons-family-england-wales-csj/
1•rwmj•25m ago•0 comments

MCP Spec Check

https://github.com/Roee-Tsur/mcp-spec-check
1•igtztorrero•26m ago•0 comments

SMS Pumping Fraud

https://amrshawky.com/posts/sms-pumping-fraud/
1•amr_shawky•26m ago•0 comments

Apple accuses OpenAI of stealing its core tech secrets

https://www.theregister.com/legal/2026/07/13/apple-accuses-openai-of-stealing-its-core-tech-secre...
1•Bender•27m ago•0 comments

Make LLM-powered apps Smarter and Cheaper, Reliable, Auditable changing 1 LOC

https://github.com/AlhasanIQ/consortium
2•alhasaniq•30m ago•1 comments

Guide to Response Time Monitoring

https://testomato.com/blog/response-time-monitoring/
1•dewey-decibel•30m ago•0 comments

Minlz v1.2: Search compressed data with without decompression

https://github.com/minio/minlz/releases/tag/v1.2.0
1•klauspost•32m ago•1 comments

"Houston, we have 1 problem(s)."

https://unsung.aresluna.org/houston-we-have-1-problems/
1•Looky1173•34m ago•1 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