frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Harness engineering: leveraging Codex in an agent-first world

https://openai.com/index/harness-engineering/
1•ianrahman•4m ago•0 comments

Max Schwarzer is leaving OpenAI for Anthropic

https://twitter.com/max_a_schwarzer/status/2028939154944585989
1•tiahura•6m ago•0 comments

Tabular Foundation Models Still Need One Thing: Multi-Table Aggregation

https://wesmadrigal.github.io/GraphReduce/tutorial_auto_feature_engineering/
1•madman2890•11m ago•1 comments

AI perspective from a former Block DevRel

https://blog.moot.dev/chasing-the-ai-high-clay-kilns-and-the-red-queens-race/
1•karlhughes•12m ago•0 comments

Regulator contacts Meta over workers watching intimate AI glasses videos

https://www.bbc.com/news/articles/c0q33nvj0qpo
1•csomar•12m ago•0 comments

Show HN: PostgreSQL for AI – A book on pgvector, RAG, and in-database ML

https://book.zeybek.dev/
1•zeybek•13m ago•1 comments

TurboCast – Turn YouTube videos and articles into AI podcasts

https://turbocast.net/
1•Jasonleo•14m ago•0 comments

More kids, teens injured in e-bike wrecks, study finds

https://medicalxpress.com/news/2026-03-kids-teens-bike.html
2•WaitWaitWha•17m ago•0 comments

Coasty.ai Is Generally Available

1•PrateekJ17•17m ago•0 comments

Hello Developer: March 2026

https://developer.apple.com/news/?id=zmqipz05
2•surprisetalk•21m ago•0 comments

Iran War, Taiwanese Chips, and a Blueprint for Species Survival

https://talking-about-ai.com/the-morning-everything-connected.html
1•planobilly•22m ago•0 comments

Maybe There's a Pattern Here?

https://dynomight.net/pattern/
1•surprisetalk•22m ago•0 comments

What Python's asyncio primitives get wrong about shared state

https://www.inngest.com/blog/no-lost-updates-python-asyncio
2•goodoldneon•24m ago•0 comments

Manipulating AI memory for profit: The rise of AI Recommendation Poisoning

https://www.microsoft.com/en-us/security/blog/2026/02/10/ai-recommendation-poisoning/
1•WaitWaitWha•25m ago•0 comments

JWST reveals extreme temperature shifts in Jupiter's auroral footprints

https://phys.org/news/2026-03-jwst-reveals-secrets-jupiter-northern.html
1•epicprogrammer•25m ago•1 comments

An Evolved Antenna for Deployment on NASA's Space Technology 5 Mission [pdf]

https://www.genetic-programming.org/gecco2004hc/lohn-paper.pdf
1•boltzmann-brain•27m ago•0 comments

Show HN: Extracted tech from 5.6M sites (plus versions) and made some dashboards

https://versiondb.io/technology/php/
1•_chse_•29m ago•0 comments

AI Coding Startup Cursor Hits $2B Annual Sales Rate

https://www.bloomberg.com/news/articles/2026-03-02/cursor-recurring-revenue-doubles-in-three-mont...
2•gmays•30m ago•0 comments

Hybrid Images: Principles and Implementation

https://tigercosmos.xyz/en/post/2020/04/cv/hybrid-image/
1•thunderbong•31m ago•0 comments

Show HN: A Combinator – A parody YC for AI agents ("Make something agents want")

https://fireflysentinel.github.io/a-combinator/
3•firef1y1203•36m ago•1 comments

Show HN: Open dataset of real-world LLM performance on Apple Silicon

https://devpadapp.com/anubis-oss.html
1•uncSoft•36m ago•1 comments

Building My Own Canva over the Weekend

https://catalinionescu.dev/ai-agent/building-my-own-canva-over-the-weekend/
2•cionescu1•38m ago•0 comments

"conservation pool" water management could provide a way forward for CO River

https://coloradosun.com/2026/03/04/conservation-pool-path-forward-colorado-river/
1•mooreds•39m ago•0 comments

AI Thoughts

https://jeremymikkola.com/posts/2026_03_04_ai_thoughts.html
2•piinbinary•39m ago•1 comments

Once Upon a Boot - visual tracing of boot process

https://once-upon-a-boot.github.io/
1•pbou•41m ago•0 comments

Z80 Sans – a disassembler in a font (2024)

https://github.com/nevesnunes/z80-sans
1•pabs3•42m ago•0 comments

Show HN: MarkNote – Local-First Wysiwyg Markdown Editor (Tauri/Rust)

https://marknote.pages.dev/
1•cacao-cacao•43m ago•0 comments

Ytm-player: full-featured YouTube Music player for the terminal

https://github.com/peternaame-boop/ytm-player
1•handfuloflight•44m ago•0 comments

I left work early to get a hug from my wife

https://rxa.me/why/
3•regular-bob•45m ago•0 comments

Jensen Huang says Nvidia is pulling back from OpenAI and Anthropic

https://techcrunch.com/2026/03/04/jensen-huang-says-nvidia-is-pulling-back-from-openai-and-anthro...
7•jnord•46m 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•10mo ago

Comments

cherryteastain•10mo 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•10mo 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