frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Goodle – A Local Search Engine That Finds Text Inside Screenshots

https://github.com/RahulAloth/goodle
1•rahulaloth•1m ago•0 comments

Show HN: TickerPro – An AI research terminal for US stocks

https://tickerpro.ai/
1•tusharzing•1m ago•0 comments

All Roads Lead to Om

https://ma.tt/2026/06/om-forever/
1•speckx•2m ago•1 comments

The Demoralization of the White-Collar Worker – No One's Happy

https://nooneshappy.com/article/the-demoralization-of-the-white-collar-worker/
1•diebillionaires•3m ago•0 comments

IngrediCheck

https://www.ingredicheck.app/
1•fungeellc•3m ago•0 comments

Prompts in Manuscripts Exploit AI-Assisted Peer Review

https://cacm.acm.org/opinion/hidden-prompts-in-manuscripts-exploit-ai-assisted-peer-review/
1•adunk•3m ago•0 comments

Government Information Belongs to Everyone: Democracy's Library in 2026

https://blog.archive.org/2026/06/22/government-information-belongs-to-everyone-democracys-library...
1•toomuchtodo•5m ago•0 comments

A glitch in February of the year 0

https://28times.com/blog/2026-06-26-february-of-the-year-0
1•lukasgelbmann•6m ago•0 comments

No-Slop OSS, a checklist of contribution best practices when using AI (or not)

https://github.com/omkar-foss/noslop-oss
1•omkar-foss•7m ago•0 comments

Show HN: uvx ptn and give your agent full access to any system (dangerously)

https://pypi.org/project/ptn/
1•yxl448•7m ago•0 comments

Printable Wrist Rest System – ZSA Voyager – Zsa.io

https://www.zsa.io/voyager/wrist-rest-system?mc_cid=52feb8f1db&mc_eid=c352ca6cba
1•tortilla•9m ago•0 comments

Provisional Voice API Agents with Telnyx

https://github.com/team-telnyx/telnyx-code-examples/tree/main/provisional-telnyx-voice-api-agents...
1•anushathukral•9m ago•0 comments

A month of vibe-coding at 0.01x velocity

https://webesque.agency/blog/2026-06-19-llms.html
2•mhitza•10m ago•0 comments

Michael Milken's Spreadsheets: Computation and Charisma in Finance in the '80s

https://ieeexplore.ieee.org/document/9051785/
1•toomuchtodo•10m ago•1 comments

Benchmarking AI Gateways: GoModel vs. LiteLLM vs. Portkey vs. Bifrost

https://enterpilot.io/blog/benchmarking-ai-gateways-gomodel-litellm-portkey-bifrost-june-2026/
1•santiago-pl•11m ago•1 comments

Does using modulo (%) affect quality of randomness?

https://crypto.stackexchange.com/questions/22767/does-using-modulo-affect-quality-of-randomness
1•tosh•12m ago•0 comments

South Korea to Train All Active-Duty Soldiers to Operate Drones

https://www.wsj.com/world/asia/south-korea-to-train-all-active-duty-soldiers-to-operate-drones-28...
2•bookofjoe•12m ago•1 comments

Insert is a programming language for self-modifying code

https://github.com/uellenberg/Insert
1•trenchgun•12m ago•0 comments

Show HN: Keyway – Control your Mac from the keyboard

https://github.com/Njuhobby/keyway
2•njuhobby•13m ago•1 comments

Show HN: Lettered – a daily phrase puzzle game

https://lettered.io
1•ajhenrydev•14m ago•0 comments

A little bird told her: scientist wins $100k prize for decoding birdsong

https://www.theguardian.com/science/2026/jun/26/human-animal-communication-step-closer-scientist-...
1•Brajeshwar•14m ago•0 comments

Delete Doesn't Mean Deleted. Just Ask OpenAI

https://lindsaygross1.substack.com/p/delete-doesnt-mean-deleted-just-ask
1•herbertl•15m ago•0 comments

Explore+Anna's+Archive

https://annas-archive.is?aa_share=dkzcsggmtnt4rt1ehpy9r3yzkkaa8p8l&utm_source=share&utm_medium=ha...
2•constantanople•17m ago•0 comments

Israeli founder faces backlash on mobile OS launch

https://twitter.com/mil000/status/2070215925576728890
3•grandpajoey•19m ago•2 comments

Supalive, live queries for Postgres and MySQL

https://www.npmjs.com/package/@supalive/core
1•rebaz94•20m ago•0 comments

Show HN: My website as one connected graph – blog, second brain, and book

https://www.ssp.sh/
3•zazuke•22m ago•2 comments

Newsletter market in 2026: $10 per month is default price but not ceiling

https://pressgazette.co.uk/newsletters/newsletters-2026-prices-retention-churn/
1•bookofjoe•23m ago•0 comments

Outbound hold agent that pauses AI runtime while waiting on hold

https://github.com/team-telnyx/telnyx-code-examples/tree/main/outbound-hold-agent-python
1•anushathukral•23m ago•0 comments

What is a Lithium-ion capacitor?

https://www.jtekt.co.jp/e/products/capacitor/capacitor_about.html
2•ksec•24m ago•0 comments

How to Let AI, Workflows, and Custom Systems Manage Your Social Media

https://socialplod.com/blog/how-to-let-ai-workflows-and-custom-systems-manage-your-social-media-t...
1•dexterwura•24m 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