frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google illegally retains customer data

https://discuss.ai.google.dev/t/google-illegally-retains-customer-data-and-i-am-taking-legal-acti...
2•Bitu79•3m ago•2 comments

Leanstral [pdf]

https://github.com/mistralai/LeanstralSafeVerify/blob/main/LeanstralReport.pdf
1•gmays•4m ago•0 comments

Diffusion ReRoll

https://seonsoo-p1.github.io/DiffusionReRoll/
1•E-Reverance•6m ago•0 comments

Chinese AI's role in stopping rogue OpenAI agent shows cost of US guardrails

https://www.reuters.com/legal/litigation/chinese-ais-role-stopping-rogue-openai-agent-shows-cost-...
3•LittleCat38•11m ago•0 comments

Ask HN: What new technologies are you excited about besides AI?

2•yellow_lead•14m ago•0 comments

Agatha Christie's Disappearance: Amnesia, Suicide, or Despair?

https://www.historicmysteries.com/unexplained-mysteries/agatha-christie-disappearance/23136/
2•thunderbong•17m ago•0 comments

Gravity-1 sea launch off Shanghai puts 9 satellites into orbit

https://spacenews.com/gravity-1-sea-launch-off-shanghai-puts-9-satellites-into-orbit/
2•bookmtn•18m ago•0 comments

Daily Nanogram Puzzle

https://pixelogic.app/daily
2•vismit2000•18m ago•0 comments

Honey Bee Colony Monitoring via Audio IoT Sensors, Tensorgrams and RNNs

https://arxiv.org/abs/2607.20386
2•StatsAreFun•20m ago•0 comments

Goodbye Data, Hello AI: My Biggest Takeaway from Snowflake Summit 2026

https://apacheseatunnel.medium.com/goodbye-data-hello-ai-my-biggest-takeaway-from-snowflake-summi...
3•DSOfficial•21m ago•0 comments

Tell HN: Cursor Auto is no longer "Auto"! Let's welcome Auto Cost

https://forum.cursor.com/t/introducing-cursor-router/166386
2•subhobroto•21m ago•1 comments

Map of Every Clean Water Act (Npdes) Discharge Violation in the US

https://www.speakforthetrees.com/facilities
3•offtrailstudio•22m ago•1 comments

Running Apache DolphinScheduler with Spark on Kubernetes: A Deployment Guide

https://medium.com/@ApacheDolphinScheduler/running-apache-dolphinscheduler-with-spark-on-kubernet...
2•DSOfficial•23m ago•1 comments

Show HN: AgentNest, self-hosted sandboxes for AI agents

https://github.com/mihirahuja1/agentnestOSS
4•mihir_ahuja•24m ago•2 comments

A Stargate for Data

https://twitter.com/willdepue/status/2074178395462848800
3•gmays•26m ago•0 comments

Inside An Exposed WebDAV Malware Delivery Lab

https://www.rapid7.com/blog/post/tr-exposed-webdav-malware-delivery-lab-analysis/
2•onthedole•28m ago•0 comments

Why Agents Suck at Authentication: `auth-services-skills` vs. Reality

https://skilldb.dev/blog/why-agents-suck-at-authentication-auth-services-skills-vs-reality
2•dev_chad•36m ago•1 comments

Dune II, RTS on C64 [video]

https://www.youtube.com/watch?v=smiQnlbqpKw
3•schyzomaniac•40m ago•3 comments

GitHub issues $100k bounty for critical RCE vulnerability

https://runtimewire.com/article/github-issues-100-000-bounty-for-critical-rce-vulnerability-discl...
3•update•44m ago•1 comments

Run large language models at home, BitTorrent‑style

https://petals.dev/
16•snorbleck•45m ago•3 comments

Why Stanford Students Walked Out on Sundar Pichai's Commencement Speech

https://www.wired.com/story/big-interview-stanford-students-booing-sundar-pichai/
4•1vuio0pswjnm7•49m ago•1 comments

Ask HN: Will AI assistants become photorealistic video?

3•general_reveal•50m ago•0 comments

Ask HN: How to make AI better at writing prose?

2•remywang•51m ago•0 comments

Show HN: The latest and most advanced version of Adsense, sponsored by Google

https://www.3emalak.com/2026/07/get-adsense-approval-after-rejection.html
2•omeraliamm•53m ago•0 comments

Own the Loop: A Field Guide to Agent Harnesses

https://twitter.com/aparnadhinak/status/2073079029624943040
3•gmays•58m ago•1 comments

Supply chain will eventually be cyberattacked

https://medium.com/@vektormemory/your-supply-chain-will-eventually-be-cyberattacked-fb556d7d5008
4•vektormemory•58m ago•0 comments

De-complect: Skill to remove braided complexity from projects

https://github.com/danverbraganza/de-complect
4•nvader•59m ago•0 comments

Show HN: Grimoire – Best Practices for Everyone Installed for Your AI Agents

https://github.com/jeffreytse/grimoire
2•jeffreytse•59m ago•0 comments

House passes NDAA 216–212 to integrate Israel and US militaries

https://twitter.com/DropSiteNews/status/2080043694804312106
5•slowin•1h ago•0 comments

OpenAI's accidental cyberattack against Hugging Face is science fiction

https://simonwillison.net/2026/Jul/22/openai-cyberattack/
3•abhisek•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