frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Wordgard – new rich-text editor by the creator of ProseMirror

https://marijnhaverbeke.nl/blog/wordgard-0.1.html
1•jarek-foksa•1m ago•0 comments

Google: The Court of Justice upholds fine of €4'100'000'000 [pdf]

https://curia.europa.eu/site/upload/docs/application/pdf/2026-07/cp260093en.pdf
1•dude250711•3m ago•0 comments

CloudsLinker: Move and sync files across 50 cloud services

https://app.cloudslinker.com/login
1•janandonly•5m ago•0 comments

Google loses fight over record $4.7B EU antitrust fine

https://www.cnbc.com/2026/07/02/alphabet-google-android-eu-antitrust-fine-4-1-billion-euro-appeal...
2•boshomi•7m ago•0 comments

Mailbox Suite for Individuals and Businesses

https://mailbox.org/en/
1•janandonly•9m ago•0 comments

The Harvard astronomer dubbed Trump's chief alien hunter

https://www.theguardian.com/world/2026/jul/01/trump-alien-hunter-avi-loeb
2•rbanffy•10m ago•0 comments

We Don't Have to Be This Bad at Improving Society

https://kasperjunge.com/blog/we-dont-have-to-be-this-bad-at-improving-society/
3•juunge•15m ago•0 comments

Zero Terminal

https://github.com/gitlawb/zero
1•handfuloflight•18m ago•0 comments

"Shouty"

https://notoneoffbritishisms.com/2026/07/01/shouty/
1•jjgreen•21m ago•0 comments

The First Nuclear Powered Website

https://nuclearwebsite.com/
2•mpweiher•22m ago•1 comments

Uruky – The Paid European Search Engine

https://robheghan.prose.sh/26_06_30_uruky
1•birdculture•22m ago•0 comments

Kim Dotcom Loses Court of Appeal Bid to Block Extradition to the U.S.

https://torrentfreak.com/kim-dotcom-loses-court-of-appeal-bid-to-block-extradition-to-the-u-s/
3•bushwart•23m ago•0 comments

LLM as a Web Server

https://jin.codes/writings/llm-as-a-web-server/
2•jinthagerman•30m ago•1 comments

Build Your First 3D Editor – Create a 3D Space on an Infinite Grid

https://aibodh.com/posts/bevy-tutorial-build-your-first-3d-editor-in-rust/
2•febin•31m ago•0 comments

Serial Dekhne Wala App – Elo TV

https://play.google.com/store/apps/details?id=com.eloelo&hl=en_US
1•Chirag12boss•34m ago•1 comments

Russia buys gasoline from India to tackle shortages

https://www.reuters.com/business/energy/russia-buys-gasoline-india-tackle-shortages-sources-say-2...
4•vrganj•36m ago•1 comments

China tells its ethnic minorities to integrate or face consequences

https://www.cnn.com/2026/07/01/china/china-ethnic-unity-law-intl-hnk
4•breve•37m ago•0 comments

Watch a Steam Controller Skitter Itself to Its Charge Puck

https://hackaday.com/2026/07/01/watch-a-steam-controller-skitter-itself-to-its-charge-puck/
3•StingyJelly•38m ago•1 comments

Software Security Analysis in 2030 and Beyond: A Research Roadmap

https://dl.acm.org/doi/10.1145/3708533
1•pjmlp•38m ago•0 comments

The Field Equation, living shader geometry folded into a breathing object

https://sand-morph.up.railway.app/the-field-equation
2•echohive42•39m ago•0 comments

The Fall of the Theorem Economy

https://davidbessis.substack.com/p/the-fall-of-the-theorem-economy
2•varjag•40m ago•0 comments

PlayStation will stop releasing games on discs in 2028

https://www.bbc.com/news/articles/c0ryjyvjq41o
2•isaacfrond•41m ago•0 comments

EU could announce social media ban for kids in September

https://www.euractiv.com/news/eu-plans-to-announce-social-media-ban-for-kids-in-september/
4•Klaster_1•44m ago•0 comments

Notes: Principles of Neural Design

https://act65com.wordpress.com/2018/08/13/notes-principles-of-neural-design/
1•Kotlopou•47m ago•0 comments

Token Leaderboards

https://www.didon.app/blog/ai-token-leaderboards-employee-usage-tracking
2•babakzy•49m ago•0 comments

EU top court dismisses Google fight against record €4B EU antitrust fine

https://www.reuters.com/world/eu-top-court-dismisses-google-fight-against-record-41-billion-eu-an...
7•bontoJR•51m ago•0 comments

Agents.md is lying to your agent – and nothing checks it

https://hunch-pi.vercel.app/blog/post?slug=agents-md-is-lying-to-your-agent
1•huchdave•52m ago•0 comments

Google Reader was building the wrong future

https://buttondown.com/blog/google-reader
3•maguay•55m ago•0 comments

The Age of Personalized Hardware Is Coming

https://geastack.com/blog-the-age-of-personalized-hardware-is-coming
2•arbayi•59m ago•0 comments

Books, Highlights and Progress on Every E-Reader: BookFusion for KOReader

https://www.blog.bookfusion.com/your-books-highlights-progress-onevery-e-reader-bookfusion-for-ko...
2•skillachie•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