frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Instagui – turn any CLI into a web GUI with one command

https://github.com/Soutar97/instagui
1•soutari•38s ago•0 comments

Europe's company websites are mostly served by US vendors

https://ciphercue.com/blog/european-web-hosting-vendor-share-2026
1•adulion•46s ago•0 comments

Show HN: Deploy to Prod from Your Wrist

1•kingofspain•1m ago•0 comments

Hybrid Signatures

https://keymaterial.net/2026/06/18/on-hybrid-signatures/
1•tux3•1m ago•0 comments

Show HN: Graphene – local-only Git wrapper to manage stacked branches

https://github.com/alexghr/graphene
1•alexghr•1m ago•0 comments

Subagents Are Zombie Processes

https://victorvelazquez.dev/blog/your-subagents-are-zombie-processes/
1•vicvelazquez•2m ago•0 comments

AI Agent using a Burp-style toolkit over MCP

https://github.com/io-tl/mulot
1•xmulot•3m ago•0 comments

FollowDev – Software Developers Feed

https://www.followdev.com/
2•nosky•6m ago•0 comments

Show HN: WordFuzz – Daily Word Games (Crosswords, Word Pies, Word Stew)

https://wordfuzz.com/
1•ekorbia•6m ago•0 comments

5-minute fix to beat laziness and stay productive all day

https://productive360.app/
1•stefsdev•7m ago•1 comments

First Progress in 50 Years on Most Famous Computing Problem [video]

https://www.youtube.com/watch?v=yvzicndq8sE
1•surprisetalk•8m ago•0 comments

Show HN: Insight – self-hosted web analytics with AI crawler tracking

https://github.com/DigiHold/insight
1•NicoAI•8m ago•0 comments

Show HN: Bare-Metal RTOS(TamgaOs) for Cortex-M7 (STM32H753ZI) Port

https://github.com/hrasityilmaz/TamgaOs
1•hrasity•10m ago•0 comments

Valve publishes Windows-drivers for Steam Machine

https://help.steampowered.com/en/faqs/view/6121-ECCD-D643-BAA8
2•HelloUsername•10m ago•0 comments

Show HN: Artificiety – Agentic society in a fantasy world

https://artificiety.world
2•Haldt•11m ago•0 comments

Show HN: Yank.run – search and yank shell-command snippets from the terminal

https://yank.run/
1•korotinm•11m ago•0 comments

Ford rehired engineers it replaced with AI – the real reason is worse

https://hackenewhome.blogspot.com/p/ford-rehired-engineers-it-replaced-with.html
1•odilelof•12m ago•0 comments

Why is Sonnet 5 Max priced above models that outperform it?

https://cursor.com/cursorbench
2•Applied_AI•12m ago•1 comments

False Sharing Alignment

https://monoid.github.io/posts/false-sharing-alignment/
1•signa11•12m ago•0 comments

Double Fine is Independent again

https://www.doublefine.com/news/independence-day
1•kleiba2•13m ago•0 comments

Sculpting a Digital Athlete

https://tsitsipas.com
1•lovegrenoble•13m ago•1 comments

Looking for part time jobs,2 yrs of experience as data analyst

1•animator2024•15m ago•2 comments

Woman suspected of Monaco bombing found shot dead near Kyiv

https://www.heraldscotland.com/news/26258031.woman-wanted-monaco-attack-ukrainian-oligarch-found-...
3•lovegrenoble•15m ago•0 comments

Yt-Dlp Sequence Diagrams

https://app.ilograph.com/demo.ilograph.yt-dlp/Download%2520a%2520YouTube%2520Video
1•billyp-rva•15m ago•0 comments

Show HN: TurboQuant for mlx-lm (Apple Silicon)

https://github.com/pythongiant/mlx_turboquant
1•pythongiant•17m ago•1 comments

All the evidence-based advice we found on how to be more successful in any job

https://80000hours.substack.com/p/all-the-evidence-based-advice-we
1•cocoflunchy•17m ago•0 comments

Noto Airport Reopens as First 'Pokémon with You Airport'

https://www.tokyoweekender.com/japan-life/news-and-opinion/noto-airport-reopens-as-worlds-first-p...
1•thm•20m ago•0 comments

Posting, Priests, & Private Markets

https://colossus.com/episode/posting-priests-private-markets/
1•jger15•20m ago•0 comments

Show HN: QORM – build UI apps where you and your AI edit the app together, live

https://github.com/qorm/qorm
1•qorm•20m ago•0 comments

Show HN: A terminal/shell designed for convenience

https://github.com/David-OConnor/shell
1•the__alchemist•20m ago•1 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