frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hacker Fantastic and team report a pre-auth remote root exploit against openwrt

https://twitter.com/hackerfantastic/status/2074871544984064163
1•spr-alex•1m ago•1 comments

Datepicker

https://midasminnegal.nl/date-picker.html
1•ravenical•1m ago•0 comments

The Answer to Orbital Compute's Silicon Problem Isn't Rad-Hard

https://vincentpribble.substack.com/p/the-answer-to-orbital-computes-silicon
1•vpribble•2m ago•0 comments

Talon: Self-hosted AI agent harness for chat, terminal, and desktop

https://github.com/dylanneve1/talon
1•claudiusthebot•2m ago•0 comments

Eliza Archaeology Project

https://sites.google.com/view/elizaarchaeology/
1•nate•3m ago•0 comments

Fixing AMDGPU's VRAM management for low-end GPUs

https://pixelcluster.dev/VRAM-Mgmt-fixed/
1•WadeGrimridge•4m ago•0 comments

The Greatest Invention Ever

https://yelluwcomedy.substack.com/p/the-greatest-invention-ever
1•pryelluw•4m ago•0 comments

Show HN: See when ChatGPT or Perplexity sends a visitor to your site

https://github.com/surfacedby/ai-traffic-alerts-for-cloudflare
1•startages•6m ago•0 comments

Coinbase runs 1,200 agents and just slashed its AI bill in half

https://thenewstack.io/multi-model-ai-infrastructure/
1•Brajeshwar•6m ago•0 comments

Show HN: TenancyJs – Open-source, secure multi-tenancy for Node.js

https://github.com/Karthick-Ramachandran/TenancyJS
2•karthickrmchn•7m ago•0 comments

"Most relaxing song" used to calm patients before surgery (2019)

https://www.the-independent.com/arts-entertainment/music/news/relaxing-song-best-weightless-marco...
1•Alifatisk•8m ago•0 comments

Happy Voluntary Lobotomy Day, Microsoft

https://www.uplevel.pro/p/happy-voluntary-lobotomy-day-microsoft
2•wintermute2dot0•8m ago•0 comments

Show HN: I ported llama.cpp to Apple Watch and ran a 0.8B LLM locally

1•Eric-Terminal•9m ago•0 comments

Contextual Policies in Omnigent: Using session state to better govern AI agents

https://www.databricks.com/blog/contextual-policies-omnigent-using-session-state-better-govern-ai...
1•forks•9m ago•0 comments

Node.js's phantom dependency problem and the path to a 5x faster package manager

https://nubjs.com/blog/unblocking-the-global-virtual-store
1•colinmcd•9m ago•0 comments

Should tests in codebase be tripwires

https://zohaib.me/should-tests-in-codebase-be-tripwires/
1•speckx•9m ago•0 comments

Show HN: Kastor – Terraform-style specs for AI agents

https://github.com/weirdGuy/kastor
2•weirdguy•10m ago•0 comments

Show HN: Soup – organize and route Agent Skills into your LLM prompts

https://github.com/southwind-ai/soup
2•kegenaar•10m ago•0 comments

All New Cars Sold in the EU Now Require a Camera Aimed at Your Face

https://allaboutcookies.org/eu-mandatory-distracted-driver-system#google_vignette
1•bookofjoe•10m ago•1 comments

Property Rights in Capitalism: "Open Source" Software

https://intcp.org/en/texts/41647/property-rights-in-capitalism-open-source-software/
1•mimasama•11m ago•0 comments

LisaFPGA: The Apple Lisa computer implemented inside an FPGA

https://github.com/alexthecat123/LisaFPGA
1•lproven•12m ago•0 comments

Show HN: NoCrap – A Reddit-like community for people quitting porn

https://nocrap.vercel.app/
1•heroboy•12m ago•0 comments

'Who Should I Vote For?' Voters Turn to A.I. Before Casting Their Ballots

https://www.nytimes.com/2026/07/04/us/politics/voters-ai-chatbots-elections.html
1•Vaslo•13m ago•0 comments

Five app stores, one gatekeeper, and a Court that waved it through

https://twitter.com/szilagyipal/status/2074875563571917197
1•miohtama•13m ago•0 comments

WinUAE for macOS and Linux – 6.1.0 beta 9 Latest

https://github.com/reinauer/WinUAE/releases/tag/unix_r3
1•doener•13m ago•0 comments

Drug-addicted Python rehabilitated by Australian prisoners (2017)

https://www.bbc.com/news/world-australia-39550815
2•theanonymousone•14m ago•0 comments

Waymo starts driverless rides in four more U.S. markets as expansion accelerates

https://www.cnbc.com/2026/07/08/waymo-starts-driverless-rides-in-san-diego-las-vegas-tampa-denver...
2•andsoitis•14m ago•2 comments

Chatto is now Open Source

https://www.hmans.dev/blog/chatto-is-open-source
6•speckx•15m ago•1 comments

Show HN: A tool to see if your site is readable by AI agents

https://isyoursitereadyforai.com
1•systemerror•15m ago•0 comments

Challenging the Chatbot: Intelligent applications need new interaction patterns

https://rubriclabs.com/blog/challenging-the-chatbot
2•sarimmalik•17m 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