frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A fast, free AI text humanizer powered by Groq Llama 3.3

https://zlvox.com/tools/ai-humanizer
1•mraadikhokhar•2m ago•0 comments

Homo Floresiensis

https://en.wikipedia.org/wiki/Homo_floresiensis
1•thunderbong•6m ago•0 comments

How proprietary formats have become Microsoft’s main tool for lock-in

https://blog.documentfoundation.org/blog/2026/07/17/microsofts-main-tool-for-lock-in/
4•cube00•18m ago•0 comments

Xiaomi-Robotics-1

https://robotics.xiaomi.com/xiaomi-robotics-1.html
2•ilreb•22m ago•0 comments

Wp2shell: A Critical Remote Code Execution Vulnerability in WordPress Core

https://slcyber.io/research-center/wp2shell-pre-authentication-rce-in-wordpress-core/
1•rasso•23m ago•0 comments

Big Tech Needs to Justify AI Spending as Investors Dump Stocks

https://www.bloomberg.com/news/articles/2026-07-19/big-tech-needs-to-justify-ai-spending-as-inves...
8•1vuio0pswjnm7•26m ago•1 comments

We need more artists on earth.tattoo

https://earth.tattoo
4•earth-tattoo•28m ago•1 comments

Freeact – undetectable browser automation CLI for AI agents via real browsers

2•xuviga•28m ago•0 comments

The Waldo Moment – How Close Are We?

https://www.howclosetoblackmirror.com/the-waldo-moment
1•beatthatflight•29m ago•1 comments

Skills for Building Software Factories

https://github.com/dzhng/skills
1•handfuloflight•31m ago•0 comments

Meta Oversight Board: AI may be most perfect propaganda machine ever invented

https://fortune.com/2026/07/16/claude-trump-china-ai-double-standard/
2•1vuio0pswjnm7•33m ago•0 comments

Claude's Fable Model Saved My Gear and Got Me Excited About Playing Guitar Again

https://saada.github.io/blog/fcb1010-biasfx2/
1•saadazzz•34m ago•0 comments

An Elegy to Git Push

https://stackdiver.com/posts/an-elegy-to-git-push/
5•osmoscraft•35m ago•2 comments

LoRA Speedrun – a public wall-clock leaderboard for fine-tuning techniques

https://github.com/Saivineeth147/lora-speedrun
1•Vineeth147•43m ago•0 comments

Pkgxray

https://github.com/adamsjack711-ux/pkgxray
1•jadamsl•43m ago•0 comments

Fractl.art – a fractal generator with 8 octillion different patterns

https://fractl.art
1•gilded-lilly•47m ago•1 comments

Israel Has a "Silicon Shield"

https://www.israeltechinsider.com/p/the-silicon-shield
2•chasil•48m ago•5 comments

Power companies are using eminent domain to seize land for data centers

https://fortune.com/2026/07/19/data-center-eminent-domain-public-use/
24•1vuio0pswjnm7•48m ago•1 comments

Japan logistics provider for Amazon to use JPYC stablecoin in operations

https://asia.nikkei.com/spotlight/cryptocurrencies/japan-logistics-provider-for-amazon-to-use-jpy...
2•mikhael•48m ago•0 comments

ICD-11

https://en.wikipedia.org/wiki/ICD-11
2•teleforce•1h ago•0 comments

AI Thinks the Internet Is Reddit. We Have 8,616 Answers Proving It

https://growtika.com/blog/reddit-ai-visibility-research
4•Growtika•1h ago•0 comments

Cultural Influence of Music as Propaganda (2025)

https://westpointpressjournals.westpoint.edu/index.php/iser/article/view/209
1•jayhoon•1h ago•0 comments

Created a free browser-based lyric video maker

https://deadmod.com/studio/
1•jimmyshoez•1h ago•1 comments

AI-Native Firms

https://download.ssrn.com/2026/6/9/6905079.pdf?response-content-disposition=inline&X-Amz-Security...
1•sonabinu•1h ago•0 comments

Rep Cammack says China has deployed 'digital twins' of every lawmaker

https://thehill.com/homenews/house/5970422-cammack-warns-china-ai-threat/
1•gscott•1h ago•0 comments

Tweet claiming Claude Fable 5 has helped disprove the Jacobian conjecture

https://twitter.com/__alpoge__/status/2079028340955197566
6•meowface•1h ago•2 comments

Show HN: Local-first CLI to make Obsidian vaults searchable for AI agents

https://github.com/nmdra/notebrain-cli
4•nmdra•1h ago•1 comments

Gmail AI Inbox

https://support.google.com/mail/answer/16845247?hl=en&co=GENIE.Platform%3DAndroid
2•thejacenxpress•1h ago•0 comments

Coding Skills Development Report

1•juntz•1h ago•1 comments

Tyler Cowen: The Future Belongs to AI Maniacs

https://www.thefp.com/p/tyler-cowen-ai-maniacs-future-economy
2•ripe•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