frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I see software dev in AI era

https://dhilst.github.io/2026/09/19/sweng-as-opt-prob/
1•geckones•54s ago•0 comments

The End of Upward Mobility

https://www.noemamag.com/the-end-of-upward-mobility/
1•Gooblebrai•1m ago•0 comments

Divide by Depth for Instant 3D

https://gabrieloc.com/2026/09/15/perspective.html
1•gabrieloc•2m ago•1 comments

PC ports of old console games are the new AI vibe coding battleground

https://www.pcgamer.com/gaming-industry/pc-ports-of-old-console-games-are-the-new-ai-vibe-coding-...
2•adunk•3m ago•0 comments

Detecting and mitigating a multi-stage AiTM phishing and BEC campaign (2023)

https://www.microsoft.com/en-us/security/blog/2023/06/08/detecting-and-mitigating-a-multi-stage-a...
2•colinprince•4m ago•0 comments

How the incident happened: a play in one act

https://surfingcomplexity.blog/2026/09/19/how-the-incident-happened-a-play-in-one-act/
2•azhenley•4m ago•0 comments

Show HN: KillSwitch – a programming language designed to be difficult for LLMs

https://killswitch-lang.org
3•dom96•5m ago•0 comments

Escaping Docker's Hypervisor

https://accomplish.ai/blog/escaping-dockers-hypervisor/
2•RohanAdwankar•9m ago•1 comments

Testing Jev as a validation gate for drug-discovery agents

https://frederickparsons.substack.com/p/can-a-fast-ai-gate-catch-chemistry
2•fred_tandemai•10m ago•0 comments

Jevmetrics – probabilistic metric reduction inside OpenTelemetry

https://github.com/ishantanu/jevmetrics
3•ishantanu10•10m ago•0 comments

Solving rubiks cubes "without search"

https://arxiv.org/abs/2508.13113
2•E-Reverance•12m ago•0 comments

Firefox Telemetry Dictionary

https://dictionary.telemetry.mozilla.org/apps/firefox_desktop
1•M95D•14m ago•1 comments

Finding Bugs

https://matklad.github.io/2026/09/19/finding-bugs.html
1•surprisetalk•15m ago•0 comments

What do you think is the prevalence of this phenomenon in current AI discourse?

https://en.wikipedia.org/wiki/Preference_falsification
1•symbolicai•17m ago•2 comments

Economics Nobel Laureates' Letter Supporting the California Billionaire Tax [pdf]

https://gabriel-zucman.eu/files/prop40letter.pdf
4•marojejian•20m ago•4 comments

Markers to Deter Human Intrusion into Waste Isolation Pilot Plant (1993) [pdf]

https://gwern.net/doc/technology/1993-trauth.pdf
1•walrus01•20m ago•0 comments

ZK-JPEG: Zero-Knowledge Image Editing and Compression

https://eprint.iacr.org/2026/2039
2•gslin•22m ago•0 comments

Disney+ changes subscriber agreement to allow ads on every plan

https://www.dexerto.com/tv-movies/disney-changes-subscriber-agreement-to-allow-ads-on-every-plan-...
11•DemiGuru•24m ago•1 comments

Screens Ubiquitous in Classrooms; Teachers Split on Efficacy

https://news.gallup.com/poll/714479/screens-ubiquitous-classrooms-teachers-split-efficacy.aspx
2•hn_acker•24m ago•0 comments

Tiny radio transmitters reveal a hidden survival tactic in birds

https://theconversation.com/tiny-radio-transmitters-reveal-a-hidden-survival-tactic-in-birds-274517
3•bryanrasmussen•25m ago•0 comments

The Working Class Face a 'Class Ceiling' in Elite Occupations

https://www.nytimes.com/2026/09/18/business/class-barrier-academia.html
4•marojejian•33m ago•1 comments

Proxmox runs QEMU-img convert with cache=unsafe; write errors are dropped

https://bugzilla.proxmox.com/show_bug.cgi?id=8054
1•alfonsokuen•35m ago•0 comments

No Easy Fix for Bogus Respondents in Online Opt-In Polls

https://www.pewresearch.org/methods/2026/08/27/no-easy-fix-for-bogus-respondents-in-online-opt-in...
2•hn_acker•36m ago•0 comments

I scraped all the ivf cycles that have ever been posted on the internet

https://eggs.help
1•grapefruitjuice•37m ago•0 comments

A social network where posts are minigames generated from tweet-sized prompts

https://gamecrumbs.online/
1•saint_angels•38m ago•1 comments

Vitaebase – an interactive map of longevity research

https://www.vitaebase.net
1•oibafcodes•38m ago•2 comments

FBI memo warned ICE agents could be targeted by fake 'tradwife' dating profiles

https://www.theguardian.com/us-news/2026/sep/17/fbi-ice-tradwife-doxing
2•hn_acker•39m ago•1 comments

Show HN: Jev to JSON-Schema

https://github.com/Kiln-AI/jev_jsonschema
1•scosman•42m ago•0 comments

Warning Signs [Economics of AI]

https://newleftreview.org/sidecar/posts/warning-signs
1•ckmate-king-2•44m ago•0 comments

A Consciousness Is a Dedekind Cut

https://www.evalapply.org/posts/consciousness-lives-in-a-dedekind-cut/index.html
1•andsoitis•44m 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