frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Guidance on upper indoor temperature limits: Protecting the health of seniors

https://www.canada.ca/en/health-canada/services/publications/healthy-living/guidance-upper-indoor...
1•throw0101d•39s ago•0 comments

Smooth-Maximum, the most useful function [video]

https://www.youtube.com/watch?v=6Qb6QtC6QMs
1•ibobev•58s ago•0 comments

Adaptive Catmull-Clark Subdivision with Compute Tessellation

https://filmicworlds.com/blog/adaptive-catmull-clark-subdivision-with-compute-tessellation/
1•ibobev•1m ago•0 comments

Failing is Common, Trying is Rare

https://www.raptitude.com/2026/07/failing-is-common-trying-is-rare/
1•crescit_eundo•1m ago•0 comments

Ignoring OS files (like .DS_Store) in Git inside dev containers

https://answers.abstractbrain.com/global-gitignore-not-working-in-devcontainers
1•collimarco•1m ago•0 comments

Where gVisor cold-boot time goes – and why a bigger instance won't fix it

https://apoxy.dev/blog/gvisor-cold-start-where-the-time-goes
1•dilyevsky•2m ago•0 comments

Ableton Live 12 on Linux

https://github.com/shibco/ableton-linux
1•pachorizons•2m ago•0 comments

Occupational Licensing Around the World

https://marginalrevolution.com/marginalrevolution/2026/07/occupational-licensing-around-the-world...
1•bookofjoe•2m ago•0 comments

The Electron view that stayed blank until you resized the window

https://www.orchestra-automation.com/blog/the-electron-view-that-stayed-blank-until-you-resized-t...
2•oceandoughnut•3m ago•0 comments

Wallflower – reproducing a WiFi identity-inference attack

https://github.com/punklabs-ai/wallflower
2•onepunk•5m ago•0 comments

Banning AI in Law School: We've Seen This Before

https://www.a16z.news/p/banning-ai-in-law-school-weve-seen
2•7777777phil•5m ago•0 comments

The well-calibrated Bayesian [pdf]

https://fitelson.org/seminar/dawid.pdf
4•Murfalo•8m ago•2 comments

After a Billion Kilometres, China's Asteroid Hunter Arrives

https://www.universetoday.com/articles/after-a-billion-kilometres-chinas-asteroid-hunter-finally-...
2•rbanffy•9m ago•0 comments

Baddies caught exploiting extensions bugs with perfect 10 on vulnerable Joomla

https://www.theregister.com/security/2026/07/14/baddies-caught-exploiting-extensions-bugs-with-pe...
2•Bender•9m ago•0 comments

Hack Reveals Suno AI Music Generator Scraped YouTube, Deezer, and Genius

https://www.404media.co/hack-reveals-suno-ai-music-generator-scraped-youtube-deezer-and-genius/
2•philk10•9m ago•0 comments

AWS sustainability claims don't hold water, lawsuit alleges

https://www.theregister.com/on-prem/2026/07/15/aws-sustainability-claims-dont-hold-water-lawsuit-...
2•Bender•10m ago•0 comments

Towards a Harness That Can Do Anything

https://eardatasci.github.io/c/ambiance/index.html
6•evakhoury•11m ago•0 comments

Show HN: An AI agent fixed 98% of vulnerable deps in one run, 14% in the next

https://bomly.dev/blog/coding-agents-with-and-without-bomly-mcp
2•ahmed3lmallah•12m ago•0 comments

Vint Cerf is working on a plan to unleash AI agents on the open internet

https://techcrunch.com/2026/07/15/vint-cerf-is-working-on-a-plan-to-unleash-ai-agents-on-the-open...
2•sbulaev•12m ago•0 comments

High GPU usage while Codex app is "thinking" due to tiny useless animation

https://github.com/openai/codex/issues/16857
2•jeromechoo•12m ago•0 comments

To Read Code or Not: What Both Strategy Visionaries and Code Purists Get Wrong

https://shrsv.hexmos.com/post/to-read-code-or-not
2•atomicnature•13m ago•0 comments

Show HN: I spent a month turning LinkedIn into software

https://www.bulaev.net/p/i-spent-a-month-turning-linkedin
2•sbulaev•13m ago•0 comments

You Need Two Systems for Running an Algorithmic Trading Strategy

https://www.tradingreality.com/p/why-you-need-two-systems-for-running
3•TradingReality•14m ago•0 comments

Show HN: LogoTeddy – Animate logos with AI (no templates)

https://logoteddy.com/
2•humphrey_liu•14m ago•0 comments

Show HN: I Am Hosting Amalia – The First Portuguese LLM

https://iaamalia.com/
2•wbemaker•15m ago•0 comments

China detains US scientist who studied North Korea nuclear tests

https://www.bbc.com/news/articles/cqx1xdn3g4eo
2•tartoran•15m ago•0 comments

AI Lays Bare the Authoritarianism of Modern Work. Time to Rethink Education

https://www.techpolicy.press/ai-lays-bare-the-authoritarianism-of-modern-work-time-to-rethink-edu...
3•cdrnsf•16m ago•0 comments

Ask HN: What company could create an iOS/Android competitor worth adopting?

4•pwython•16m ago•1 comments

Another Day, Another Ban: Brussels Blocks Right-Wing Protest

https://europeanconservative.com/articles/news/another-day-another-ban-brussels-blocks-right-wing...
2•nickslaughter02•17m ago•0 comments

Ask HN: Is HN comments used to train AI models?

3•roschdal•19m ago•2 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