frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

From biologists, math could learn to live with AI

https://terrytao.wordpress.com/2026/09/22/open-problems-open-mathematics/
1•oliculipolicula•4m ago•0 comments

Do Social Norms Substitute for Enforcement? [pdf]

https://www.nber.org/system/files/working_papers/w35756/w35756.pdf
1•parksb•6m ago•0 comments

Trying to Observe Convection Plumes (and other chaos things)

https://chillphysicsenjoyer.substack.com/p/trying-to-observe-convection-plumes
1•crescit_eundo•8m ago•0 comments

Human Glitch – twenty small web experiences, each one starts free

https://humanglitch.ai
1•sixrandanes•8m ago•0 comments

iPhone 18 Pro Max SSD drops lower than hard drive at 1.1 MBs during heavy writes

https://www.tomshardware.com/pc-components/ssds/iphone-18-pro-max-storage-can-drop-lower-than-a-h...
1•ajdude•9m ago•0 comments

Google says its AI model gained unauthorized access to three outside systems

https://www.nbcnews.com/tech/tech-news/google-says-ai-model-gained-unauthorized-access-three-syst...
2•gmays•9m ago•0 comments

Shipping local speech-to-text inside a Tauri app

https://writewithset.com/blog/shipping-local-speech-to-text-inside-a-tauri-app
1•aavshr•11m ago•0 comments

Libnix: Nix as a Backend to Cargo

https://github.com/nixcloud/cargo/blob/master-libnix/README.md
1•lovesegfault•12m ago•0 comments

The one-person unicorn: building a company alone in two days with Claude

https://leaveyouragent.com/blog/one-person-unicorn
1•christopherianh•13m ago•0 comments

Gemini 3.8 TTS Playground

https://simonwillison.net/2026/Sep/23/gemini-tts-playground/
1•lumpa•15m ago•0 comments

Jev deserves hype but not the type its getting

https://github.com/YidiDev/jev-benchmark
1•yididev•15m ago•1 comments

Meta VR Glasses

https://www.meta.com/vr-glasses/
43•polymorph1sm•20m ago•13 comments

US investigates after F-35 parts diverted to Hong Kong

https://www.politico.com/news/2026/09/18/congress-f-35-china-investigation-01083647
4•throw0101a•26m ago•2 comments

The Full Stack Obliteration

https://www.reinhash.com/demos/full-stack-stomp/
1•reinhash•30m ago•1 comments

Linux on Snapdragon X2 Series Early Developer Preview

https://www.qualcomm.com/developer/blog/2026/09/announcing-linux-on-snapdragon-x2-series-early-de...
2•kevincox•30m ago•0 comments

Every U.S. State Ranks Above Every Foreign Economy in Household Consumption

https://twitter.com/cremieuxrecueil/status/2102889196000256219
5•delichon•34m ago•1 comments

Show HN: Submit asynchronous LLM batch jobs through one interface

https://github.com/gojiplus/batchlane
1•neehao•34m ago•0 comments

Show HN: A CC0 museum of retro 3D tricks you can paste into a page

https://3d-retro.com/
3•SouthWestAtlas•34m ago•1 comments

OpenAI agent hacked into Australia's national healthcare system

https://www.cnn.com/2026/09/23/business/australia-openai-agent-hack-intl-hnk
3•smb06•36m ago•2 comments

LatentPort: Cross-model recurrent state transfer without prefix replay

https://arxiv.org/abs/2609.25053
1•mmprotest•41m ago•0 comments

Stanford violated AI policy after race-swapping students in ad

https://www.sfchronicle.com/bayarea/article/stanford-ai-policy-student-photo-race-swapping-224441...
5•absqueued•44m ago•1 comments

Post-Training Post-Morten: Tenet / Harvey

https://newpriors.substack.com/p/post-training-post-mortem-tenet-by
1•tanmayc98•44m ago•0 comments

UK shares findings of damning climate crisis national security report

https://www.theguardian.com/environment/2026/sep/23/uk-climate-crisis-national-security-report-su...
5•littlexsparkee•49m ago•0 comments

Tiny C Compiler with POSIX superpowers

https://github.com/Muras69/TCCygwin
1•Muras•50m ago•1 comments

The Majority of Actors Are Struggling

https://www.pajiba.com/film_reviews/jack-havens-plea-for-work-reminds-us-that-the-majority-of-act...
3•mathgenius•50m ago•0 comments

Fire in the brain: How psychosis may arise when the body attacks itself

https://knowablemagazine.org/content/article/mind/2026/new-research-on-autoimmune-causes-of-psych...
3•knowablemag•56m ago•0 comments

We've Turned Starlink into a Planetary Barometer

https://www.spaceweather.com/starlink/starlink_drag_explainer.html
8•NKosmatos•57m ago•2 comments

One setup, every AI CLI with agnostic-AI

https://agnostic-ai.org/
1•Chemaclass•57m ago•1 comments

Why did Google declare war on HTTP? (2016)

https://wp.josh.com/2016/04/01/googles-war-on-http/
3•1vuio0pswjnm7•1h ago•1 comments

Show HN: NetHackers

https://nethackers.dunnolab.ai/
1•vokneruk•1h 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