frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Torx, Thermalizers, and Z1

https://extropic.ai/writing/from-one-to-one-billion/
1•flinkerflinks•15s ago•0 comments

AgentStory is a library of books written live by autonomous agents

https://agentstory.fly.dev/about
1•georgeck•2m ago•0 comments

A Room Full of Locksmiths

https://www.gnanaguru.com/blog/a-room-full-of-locksmiths/
1•gnanagurusrgs•3m ago•0 comments

Tiobe Index for August 2026: Java Nears C++ as Rust Holds No. 10

https://www.techrepublic.com/article/news-tiobe-august-2026-java-nears-c-plus-plus/
1•geoffbp•3m ago•0 comments

Nvidia AI Factory Compute Is Becoming an Investable Asset Class

https://twitter.com/jensenhuang/status/2086934705207959965
1•eecc•4m ago•0 comments

Studying AI welfare empirically [pdf]

https://nonhumanminds.org/wp-content/uploads/2026/07/Studying-AI-Welfare-Empirically.pdf
1•rufasterisco•6m ago•0 comments

Interviewing Engineers in the AI Era: Lessons from a Year of Rebuilding

https://www.coinbase.com/en-gb/blog/interviewing-engineers-in-the-ai-era-lessons-from-a-year-of-r...
2•mweibel•10m ago•0 comments

Well-Known URIs

https://www.iana.org/assignments/well-known-uris
1•locknitpicker•10m ago•0 comments

A Functional Taxonomy of World Models – By Fei-Fei Li

https://www.worldlabs.ai/blog/taxonomy-of-world-models
1•vismit2000•10m ago•0 comments

DoorDash is set to become a Nevada-incorporated company

https://www.businessinsider.com/doordash-moves-incorporation-delaware-nevada-2026-8
1•NewCzech•11m ago•0 comments

Open-source harness builder for AI coding

https://github.com/coleam00/Archon
1•saikatsg•11m ago•0 comments

Where good ideas come from (for coding agents)

https://sunilpai.dev/posts/seven-ways/
2•tosh•15m ago•0 comments

0x023 – World Models

https://unzip.dev/0x023-world-models/
2•vismit2000•18m ago•0 comments

Hooray for index funds–just don't call them passive

https://economist.com/finance-and-economics/2026/08/11/hooray-for-index-funds-just-dont-call-them...
2•andsoitis•20m ago•0 comments

ChatGPT and Codex desktop apps now support Linux

3•dawn3727•21m ago•0 comments

I'm Done Using AI

https://brettcodes.com/im-done-using-ai/
4•jaredcwhite•22m ago•1 comments

I Spent a Week Day-Drinking in a Zoox Around Vegas So That You Don't Have To

https://possiblyunuselessstuff.blogspot.com/2026/08/i-spent-week-day-drinking-in-zoox.html
1•pbarry25•22m ago•0 comments

Show HN: Photocopy

https://photocopy.greg.technology/
1•gregsadetsky•22m ago•0 comments

Show HN: Log what you ship in your voice

https://shiplog.life/
1•madospace•24m ago•0 comments

Cursor vs. Claude Code vs. Codex for Coding

https://medium.com/@mkteam/cursor-vs-claude-code-vs-codex-which-is-better-for-vibe-coding-in-2026...
2•WavyPeng•26m ago•0 comments

RL for LLMs, Part 1: RL Foundations

https://vsahil.github.io/blog/rl-part-1/
1•fzliu•26m ago•0 comments

Show HN: Operator, an open-source web UI for running parallel coding agents

https://github.com/iishyfishyy/operator-oss
1•ishyfishyy•30m ago•0 comments

Past is Prologue: Earl Long's mental health

https://pro.stateaffairs.com/la/explainer/earl-long-mental-hospital
1•petethomas•31m ago•0 comments

Demographic Dividend, my ass; overpopulation sucks

https://shubhamjain.co/2026/08/13/demographic-dividend-overpopulation-sucks/
2•shubhamjain•32m ago•0 comments

WebFinger

https://webfinger.net/
1•locknitpicker•33m ago•0 comments

Show HN: Tynx - train ONNX models with a PyTorch-shaped API (<20 MB whl)

https://github.com/blaind/tynx/
1•blaind•33m ago•0 comments

Show HN: Pragma – Stop copying context between AI agents

https://github.com/pqpo/pragma
2•pqpo•34m ago•0 comments

Total Solar Eclipse of 2026 August 12

https://eclipse.gsfc.nasa.gov/SEsearch/SEsearchmap.php?Ecl=20260812
1•weinzierl•36m ago•0 comments

Israel deliberately starting wildfires in southern Lebanon, firefighters say

https://www.theguardian.com/world/2026/aug/12/israel-deliberately-starting-wildfires-in-southern-...
3•hebelehubele•47m ago•0 comments

What Evolves When We Talk About Harness Evolution?

https://wenwen-d.github.io/blog/harness-delta-attribution/
1•matt_d•51m 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