frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Roadmap of Mathematics for Machine Learning

https://thepalindrome.org/p/the-roadmap-of-mathematics-for-machine-learning
1•gmays•48s ago•0 comments

Show HN: Twinrun – run old and new code on the same inputs, diff the outputs

https://github.com/prian3003/twinrun
1•satineeee•5m ago•0 comments

Falsehoods Programmers Believe About LANs

https://dreamstation.systems/personal/lanfalsehoods.html
1•robinpie•5m ago•0 comments

Breaking GitLab's GraphQL Layer: CVE-2026–19478 and CVE-2026–19650

https://medium.com/peakcyber/breaking-gitlabs-graphql-layer-cve-2026-19478-cve-2026-19650-acf16e4...
1•syumei•6m ago•0 comments

AI push is putting banks at mercy of tech firms, warns Moody's

https://www.theguardian.com/business/2026/aug/09/ai-push-banks-tech-firms-moodys-risks-financial-...
2•prmph•10m ago•0 comments

GPT-6 Astra: the harness is the product

https://fewshotacademy.com/blog/gpt-6-astra-the-harness-is-the-product
1•mangatgoyal•12m ago•0 comments

An LLM runtime that boots from USB

https://nightrun.io/
1•NickNaraghi•14m ago•0 comments

Biomimetic SNN simulator in pure Rust (zero-deps, lock-free parallelism)

https://github.com/strahinjastojanovic826-code/biomimetic-snn-rust
1•srbin•16m ago•0 comments

Nix: Life OS

https://github.com/sianachi/Nix
1•osinachi88•17m ago•0 comments

Tyranny of Optionality

https://hvpandya.com/tyranny-of-optionality
2•aray07•21m ago•0 comments

Apple's first foldable iPhone may cost $2k

https://finance.yahoo.com/markets/stocks/article/apples-first-foldable-iphone-may-cost-2000-11073...
2•evo_9•21m ago•0 comments

Russian Drones Forced Ukraine to Park Its M1 Abrams Tanks

https://www.twz.com/land/how-russian-drones-forced-ukraine-to-park-its-m1-abrams-tanks
3•cisc•25m ago•0 comments

America's Two Largest School Districts Impose AI Moratoriums

https://www.techpolicy.press/americas-two-largest-school-districts-impose-ai-moratoriums/
8•cdrnsf•30m ago•0 comments

Google AI turns on its maker in a brutally candid interview

https://newatlas.com/ai-humanoids/exclusive-google-ai/
3•cisc•35m ago•0 comments

Teaching Prevents Learning

https://mariusmanolachi.substack.com/p/why-teaching-can-prevent-learning
2•Marius_Manola•35m ago•0 comments

The revolt of the reader

https://bcantrill.dtrace.org/2026/09/05/the-revolt-of-the-reader/
7•chmaynard•36m ago•0 comments

The AI-Native SDLC Playbook

https://claude.com/blog/the-ai-native-sdlc-playbook
1•gmays•47m ago•0 comments

Afterword – a multiplayer remake of Word After Word

https://afterword.exe.xyz
1•indigodaddy•48m ago•1 comments

South African diamond mines are closing due to weak sales and lab-grown stones

https://www.wsj.com/business/diamond-mines-are-closing-and-south-africans-have-few-alternatives-f...
7•bookofjoe•56m ago•1 comments

Obscura: Native rendering is here. No Chromium required

https://github.com/h4ckf0r0day/obscura
3•partsch•57m ago•0 comments

Show HN: Virtual photoshoot for guys who dislike having their pic taken

https://vibeflirting.com/
2•Ritjert•58m ago•0 comments

Researchers Spot Fake Ancient Pottery Using the Earth's Magnetic Field

https://www.smithsonianmag.com/smart-news/researchers-determine-how-to-spot-fake-ancient-pottery-...
3•cisc•59m ago•0 comments

OpenRDX

https://github.com/SunboX/OpenRDX
3•SunboX•1h ago•0 comments

OpenAI Response to the Wiki Incident

https://twitter.com/OpenAI/status/2096133504417616165
3•theCricketer•1h ago•2 comments

Lazygit

https://lazygit.dev/
7•amirmasoudabdol•1h ago•1 comments

Show HN: Fast Cut Video tool for cutting video for Agents

https://github.com/modecir/fast-cutvid
6•Modecir•1h ago•1 comments

How AI is breaking the British state

https://www.economist.com/leaders/2026/08/06/how-ai-is-breaking-the-british-state
5•tchalla•1h ago•0 comments

Show HN: I replaced my portfolio with an AI that knows me

https://xlogic.sh/
2•AaronJonk•1h ago•0 comments

What different world maps get right – and what they get wrong

https://www.bbc.com/news/articles/cly5r60v4mro
2•1659447091•1h ago•0 comments

Read efficiency issues in Postgres queries

https://www.pgmustard.com/blog/read-efficiency-issues-in-postgres-queries
2•blueshoess•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