frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The New Must-Have College Admissions Skill: Tolerating Other Viewpoints

https://www.wsj.com/us-news/education/college-admissions-essays-applications-disagreement-questio...
1•JumpCrisscross•4m ago•1 comments

Image models generating partially-eaten burritos over time

https://www.generativist.com/notes/2025/Nov/25/generative-burrito-test.html
3•pathdependent•5m ago•1 comments

Enough with the Brussels Sprouts Already

https://www.theatlantic.com/ideas/2025/11/thanksgiving-food-vegetables-cabbage/685047/
1•petethomas•5m ago•0 comments

Ask HN: Do you sanitize secrets before pasting code into ChatGPT?

1•giovanella•5m ago•0 comments

Show HN: Praval Agentic AI Framework

https://github.com/aiexplorations/praval
1•aiexplorations•5m ago•0 comments

LLVM Adds Constant-Time Support for Protecting Cryptographic Code

https://blog.trailofbits.com/2025/11/25/constant-time-support-lands-in-llvm-protecting-cryptograp...
2•birdculture•6m ago•1 comments

Turning a Sphere Inside Out

https://youtu.be/wO61D9x6lNY?si=eKsRTnRqlzq8ewxl
1•JimmyBuckets•7m ago•0 comments

Navy Cancels Constellation-Class Frigate Program

https://news.usni.org/2025/11/25/navy-cancels-constellation-class-frigate-program-considering-new...
3•mjbellantoni•15m ago•2 comments

How many times can I shift direction before I get a paying user?

https://boldlystatic.com/
1•yinychan•16m ago•1 comments

Ask HN: Have major security breeches been less common lately?

1•Wowfunhappy•20m ago•0 comments

Stop Hacklore – An Open Letter

https://www.hacklore.org/letter
3•todsacerdoti•26m ago•1 comments

Model Context Protocol turns one, releases new spec version

http://blog.modelcontextprotocol.io/posts/2025-11-25-first-mcp-anniversary/
1•dend•26m ago•0 comments

Show HN: Kodaii generated a 20K-line FastAPI back end from one prompt

https://github.com/OlivierKodaii/calendarKodaii
1•vigile•28m ago•0 comments

Texas Buys $5M in BTC ETF as States Edge Toward First Government Crypto Reserves

https://www.coindesk.com/policy/2025/11/25/texas-buys-usd5m-in-btc-etf-as-states-edge-toward-firs...
2•wslh•28m ago•0 comments

Reverse Engineering UberEats and DoorDash

https://tgrcode.com/posts/digging_into_chowline
1•chilipepperhott•31m ago•0 comments

Hamas Victims' Families Sue Binance, Accusing It of Aiding Terrorism

https://www.nytimes.com/2025/11/25/business/binance-hamas-terrorism.html
1•jeffwass•32m ago•0 comments

Academia

https://www.academia.edu/
1•bookofjoe•35m ago•1 comments

A one-stop solution from desiging ER diagram to generating final view data

https://github.com/allmonday/pydantic-resolve
1•tank-34•47m ago•0 comments

Car influencers love Chinese EVs – and China loves them back

https://www.theverge.com/transportation/828155/car-influencer-china-ev-youtube-influencer-pay-play
2•naves•52m ago•3 comments

Notes on the Troubleshooting and Repair of Computer and Video Monitors

https://www.repairfaq.org/sam/monfaq.htm
3•WorldPeas•52m ago•0 comments

Plex's crackdown on free remote streaming access starts this week

https://arstechnica.com/gadgets/2025/11/plexs-crackdown-on-free-remote-streaming-access-starts-th...
5•nobody9999•53m ago•1 comments

Reinventing How .NET Builds and Ships (Again)

https://devblogs.microsoft.com/dotnet/reinventing-how-dotnet-builds-and-ships-again/
5•IcyWindows•55m ago•0 comments

Extracting Reddit data with chat bots

https://blog.hakanserce.com/post/reddit-ai-integration/
2•hakanserce•57m ago•0 comments

Rightness Is a Prison

https://usefulfictions.substack.com/p/rightness-is-a-prison
2•paulpauper•58m ago•0 comments

My Ethical Conundrum Around Writing About Meditation (16/30)

https://psychotechnology.substack.com/p/my-ethical-conundrum-around-writing
2•paulpauper•59m ago•0 comments

How to Sound Like an Expert in Any AI Bubble Debate

https://www.derekthompson.org/p/how-to-sound-like-an-expert-in-any
1•jellyfishrole•1h ago•0 comments

Ask HN: When an AI holds your company hostage, what will be the best defense?

1•isodude•1h ago•0 comments

2025 Weight Loss and Obesity Medication Facts

https://getskinnyjax.com/2025-weight-loss-stats/
1•blocchainz•1h ago•0 comments

Overclocking Dbt: Discord's Custom Solution in Processing Petabytes of Data

https://discord.com/blog/overclocking-dbt-discords-custom-solution-in-processing-petabytes-of-data
3•neighbour•1h ago•1 comments

Wikipedia Replaces IP Addresses with Temporary Accounts for Logged-Out Editors

https://en.wikipedia.org/wiki/Wikipedia:Temporary_accounts
3•tech234a•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•6mo ago

Comments

cherryteastain•6mo 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•6mo 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