frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Shell Grotto, Margate

https://en.wikipedia.org/wiki/Shell_Grotto,_Margate
1•Jimmc414•1m ago•0 comments

The labour and resource use requirements of a good life for all

https://arxiv.org/abs/2411.06337
1•bikenaga•2m ago•0 comments

Wisconsin Lawmakers Push VPN Ban, ID Checks on Adult Sites

https://reclaimthenet.org/wisconsin-vpn-ban-bill-age-verification-privacy-risk
1•mikece•2m ago•0 comments

University of Austin (UATX) Is Ending Tuition Forever

https://uatx.substack.com/p/uatx-is-ending-tuition-forever
1•nanfinitum•2m ago•0 comments

Anukari on the CPU (part 1: GPU issues)

https://anukari.com/blog/devlog/anukari-on-the-cpu-part-1-gpu-issues
1•humbledrone•4m ago•0 comments

Show HN: Jam Slam – fruit catching minigame

https://proc0.itch.io/jam-slam
1•proc0•5m ago•0 comments

ICC ditches Microsoft 365 for openDesk

https://www.binnenlandsbestuur.nl/digitaal/internationaal-strafhof-neemt-afscheid-van-microsoft-365
2•vincvinc•6m ago•0 comments

Neuraxon – A New Neural Growth and Computation Blueprint

https://github.com/DavidVivancos/Neuraxon
1•artificiology•8m ago•0 comments

Agile and Coding: Please don't break things

https://davidvujic.blogspot.com/2025/10/please-dont-break-things.html
1•rbanffy•10m ago•0 comments

How to Make a Great Hackathon

https://terezatizkova.substack.com/p/how-to-organize-a-hackathon
1•terezatizkova•11m ago•0 comments

Generation of antigen-specific paired-chain antibodies using LLMs

https://www.sciencedirect.com/science/article/pii/S0092867425011353
1•dwa3592•11m ago•0 comments

KubeCon attendees: check your flights

1•PeterCorless•12m ago•0 comments

Book Publishing and Technology: The ONIX 3 Debacle

https://thefutureofpublishing.com/2025/11/book-publishing-technology-the-onix-3-debacle/
1•ilamont•12m ago•0 comments

A File Format Uncracked for 20 Years

https://landaire.net/a-file-format-uncracked-for-20-years/
1•todsacerdoti•12m ago•0 comments

Chess World Cup: Vidit Gujrathi outsmarts 12-year-old prodigy Faustino Oro

https://timesofindia.indiatimes.com/sports/chess/chess-world-cup-vidit-gujrathi-outsmarts-12-year...
1•wslh•14m ago•0 comments

Where You See a Fancy Fish, Engineers See Alan Turing's Math

https://www.nytimes.com/2025/11/06/science/alan-turing-patterns-boxfish.html
1•marojejian•15m ago•1 comments

Introducing the Web Thing Protocol

https://tola.me.uk/blog/2025/11/06/introducing-the-web-thing-protocol/
1•benfrancis•17m ago•1 comments

Theranos 2.0

https://sergeiai.substack.com/p/theranos-20
4•wslh•19m ago•3 comments

Government 'propaganda' techniques portray Chicago as a city at war with feds

https://chicago.suntimes.com/immigration/2025/11/06/watch-how-government-propaganda-techniques-po...
3•cozzyd•21m ago•0 comments

Ask HN: Do single people feel young for life?

2•amichail•21m ago•2 comments

Ask HN: How far can we push the browser for large-scale data parsing?

1•platypii•21m ago•0 comments

Logging in Python – Real Python

https://realpython.com/python-logging/
1•rbanffy•23m ago•0 comments

Show HN: I'm moving to a Scottish island to build a startup. I'm not joking

https://bother.now
1•kalturnbull•23m ago•0 comments

Show HN: exetest – CLI Testing for Zig

https://github.com/pyk/exetest
1•peeyek•24m ago•0 comments

Show HN: Clean-Clipboard before pasting into ChatGPT

https://github.com/ianto-cannon/clean-clipboard
1•jantuss•24m ago•0 comments

Show HN: A League of Legends Drafter

https://draft.leg.ovh/
1•hide_on_bush•25m ago•0 comments

SampCert: Verified Foundations for Differential Privacy (PLDI 2025)

https://dl.acm.org/doi/10.1145/3729294
1•stmw•25m ago•0 comments

MicroPython used in a PlayStation game · MicroPython · Discussion #18291

https://github.com/orgs/micropython/discussions/18291
1•rbanffy•28m ago•0 comments

Show HN: Dynamic code and feedback walkthroughs with your coding Agent in VSCode

https://www.intraview.ai/hn-demo
1•cyrusradfar•28m ago•0 comments

OpenID Connect (OIDC) + OAuth for AI Agents

https://github.com/auth-agent/auth-agent
2•hkpatel3•29m ago•2 comments
Open in hackernews

Rust is eating the world: From firmware to cross-platform applications, servers

https://kerkour.com/rust-is-eating-the-world
4•randomint64•1h ago

Comments

fwsgonzo•1h ago
I remember when the C++ subreddit got depressing after the memory-safety debacle. I wrote in plain-text that it's not about memory-safety and it never will be. C and C++ has a major problem: Managing large projects with multiple dependencies is horrible, and integration is horrible, and all the work-arounds and special features (like precompiled headers) all have problems, footguns. There is no end to the complexity of managing a large C++ project, for example.

I know this because I manage several. To this day, building on Windows is a chore and a half, and I consider my build process to be barely working, and it will one day break simply because the packages I depend on will have some new dependency. As a very recent example is protobuf suddenly depending on parts of abseil.

Memory safety is that extra thing that makes the decision easier.

As for Rust, there are problems too, but to a much smaller degree. As an example, compiling for RISC-V requires a cross-compiler (or at least the linker). Cross-compiling to RISC-V with Go does not.

A final anecdote at the end: I recently added support for Common Access Token in a Rust project, and it was exactly as easy as I thought it would be. I'm not much of a Rust programmer, but I cannot express strongly enough just how big of a difference this makes to productivity. In C++ land we sort of ended up agreeing to never agree on how to get proper networking. It's absurd.