frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

"Malus": Is Copyleft Dead?

https://heathermeeker.com/2026/03/16/malus-is-copyleft-dead/
1•Tomte•44s ago•0 comments

Hungarian Notation

https://en.wikipedia.org/wiki/Hungarian_notation
1•tosh•1m ago•0 comments

AI usage among doctors doubles as confidence in technology grows

https://www.ama-assn.org/press-center/ama-press-releases/ama-ai-usage-among-doctors-doubles-confi...
2•helsinkiandrew•4m ago•0 comments

Show HN: Android Native Reverse Tools

https://neocanable.github.io/2026/01/17/rosemary-development-status.html
1•neocanable•4m ago•0 comments

Flagged as Trojan by Play Protect

https://github.com/sunilpaulmathew/AppVaultX/issues/6
1•riedel•8m ago•1 comments

Codex

https://github.com/damiant3/NewRepository
1•damiant3•13m ago•0 comments

Why AI Agents Are Changing How We Build Software

https://brunelly.com/
1•rihabz•14m ago•0 comments

A few notes about the MacBook Neo

https://morrick.me/archives/10286
2•jandeboevrie•15m ago•0 comments

Real-Time AI Needs Rolling Aggregations

https://www.hopsworks.ai/post/rolling-aggregations-for-real-time-ai
1•jamesblonde•16m ago•0 comments

A Model Registry

https://github.com/imsingee/aidy-models
1•singee•24m ago•1 comments

Show HN: ModelSweep - Open-Source Benchmarking for Local LLMs

https://github.com/leonickson1/ModelSweep
1•leonickson•25m ago•0 comments

Ghosts of Softmax: Zeros of the partition function explain training instability

https://github.com/piyush314/ghosts-of-softmax
1•g4omingron•26m ago•0 comments

Reliance signs $3B deal with Samsung C&T for 15-year

https://www.threads.com/@optifin_advisors/post/DV-LzVqDNwh
1•optifinadvisors•31m ago•0 comments

Learn to build electronics with Oyvind's Circuit Tips

https://www.build-electronic-circuits.com/
1•teleforce•31m ago•0 comments

Is this "the Raku community" in 2026?

https://gist.github.com/2colours/5262cb60987a4a13760b04c1d7cd234b
1•2colours•35m ago•1 comments

Corporate but Winged: Cicikuş v3 Is Now Available

https://huggingface.co/pthinc/Cicikus-v3-1.4B-Opus4.6-Powered
1•pthuser•37m ago•1 comments

Pyodide and Paribury Exchange for in-browser data workflows

1•parburys•41m ago•0 comments

Why some metals turn transparent: A key mechanism for touchscreen conductors

https://phys.org/news/2026-03-metals-transparent-key-mechanism-touchscreen.html
1•westurner•45m ago•1 comments

The Repository of Ill-Advised Ventures

https://www.riav.org/
1•robbieo•47m ago•0 comments

Llmgate – call any LLM via YAML config, 2 dependencies

https://github.com/kesiee/llmgate
1•kesiees•47m ago•0 comments

Control a Waymo by Auto Rerouting

https://waymo.fraud.llc/
2•fearthetelomere•56m ago•0 comments

Zelph is a logic programming system, but not in the traditional sense

https://acrion.github.io/zelph/logic/
1•ta988•56m ago•0 comments

Bill Ackman vs. Carl Icahn Showdown on Herbalife [video]

https://www.youtube.com/watch?v=6QWZbxeJd6g
1•marysminefnuf•56m ago•0 comments

Ad-homineLLM: Are you wrong because you used an LLM?

https://blog.devrupt.io/posts/ad-hominellm/
1•ddtaylor•58m ago•0 comments

Show HN: Simple CBM calculator for shipping and freight

https://cbmcalc.com
2•distartin•1h ago•0 comments

Show HN: DataFlow,Turn raw data into high-quality LLM training datasets

https://github.com/OpenDCAI/DataFlow
1•Junnn•1h ago•0 comments

Flash-KMeans: Fast and Memory-Efficient Exact K-Means

https://arxiv.org/abs/2603.09229
1•matt_d•1h ago•0 comments

Kali Linux MCP Server

https://github.com/cyberillo/kali-mcp-server
1•cyberillo•1h ago•1 comments

Surprising a Model

https://vivekhaldar.com/articles/surprising-a-model/
1•gandalfgeek•1h ago•0 comments

PMetal – (Powdered Metal) LLM Fine-Tuning Framework for Apple Silicon

https://github.com/Epistates/pmetal
1•epistates•1h ago•1 comments
Open in hackernews

Rust Devs Think We're Hopeless; Let's Prove Them Wrong (With C++ Memory Leaks)

https://www.babaei.net/blog/rust-devs-think-we-are-hopeless-lets-prove-them-wrong-with-cpp-memory-leaks/
27•zdw•10mo ago

Comments

eptcyka•10mo ago
Memory leaks are by far the least interesting class of defect that Rust helps with - leaking memory is safe.
genter•10mo ago
Until the kernel kills you for being OOM.
YZF•10mo ago
That's still safe.

EDIT: Safe in the sense you're not writing into memory you don't own, e.g. write after release, buffer overflows etc.

scotty79•10mo ago
Program that no longer runs is the safest.
aquariusDue•10mo ago
For true safety we must prevent it from being written in the first place /s
dmit•10mo ago
That's the true meaning of backward compatibility. The [backward] refers to the time scale.
drivingmenuts•10mo ago
stomps butterfly

I've just saved untold generations from certain calamity.

** 6,000,000 years later **

Butterfly King: This chimpanzee-descended motherfucker ….

airstrike•10mo ago
I'll add that even safety itself is not the sole reason why some people prefer Rust. There's a lot to Rust besides that and sometimes it's not about memory safety as much as it is about steering you into patterns Rust devs perceive as better overall.
jayd16•10mo ago
Possible attack vector, though.
andrewflnr•10mo ago
The least interesting attack vector. You can fix it by rebooting.
Arnavion•10mo ago
And in fact is not even something that Rust does differently from C++. Memory releases in Rust are handled by dtors just like they are in C++. What a weird article.

(The only difference is that Rust defaults to moving while C++ defaults to copying, and Rust moves don't leave a moved-out object behind while C++ does, so the dtors in Rust are simpler and called fewer times than the equivalent C++ code.)

dmit•10mo ago
Yes, the only difference.
api•10mo ago
The problem with unsafe languages is not that you can’t write safe code in them with skill and discipline.

The problem is that programmers don’t always do that, either because they are not that experienced or they are in a hurry.

The real danger is when code is long lived and worked on by multiple people. One bad commit after a late night hacking session and now there is a zero day just waiting to be discovered.

Safe languages don’t rule that out but they make it profoundly less likely.

bluGill•10mo ago
I write C++ all the time and I still cannot convince many developers to use unique_ptr over new. It isn't that hard to write code that doesn't leak but if you bypass the language features it cannot help you.

for that matter though I've seen rust programmers put everything in unsafe.

on_the_train•10mo ago
There's static analysis which can effectively force these things. C++ problems are self-inflicted
bluGill•10mo ago
There is but we have code predating c++11 that isn't worth rewriting. So the static analisys is off. We do use lots of static analisys but that one is too hard to fix all the old code that we have decades of proff works and isn't leaking (much?)
andrewflnr•10mo ago
I mean, a sufficiently safe language would rule it out. Either one not expressive enough to express memory unsafety (i.e. GC or fully linear types with no escape hatches) or one that requires a machine checked proof of safety to compile. These options just happen to be too big of a pain in the assembly for today's appetite.
api•10mo ago
There are lots of languages where true memory bugs are impossible. As you say they are higher level and usually GC.
andrewflnr•10mo ago
Right, the interesting case would be the formal proof. Though, I suspect there are fewer high-level languages where memory bugs are actually impossible than you would naively think. I've segfaulted Python by accident, only using the standard library (concurrency shenanigans if I recall). You can probably do worse if you try. To make a truly memory-safe language, you would need to carefully design and implement the standard library, disallow all native code extensions, and probably more I'm not smart enough to figure out. So, not Java, not Python. Maybe some Schemes?
shmerl•10mo ago
No, C++ is hopeless. No need to bend over backwards to try to disprove it. It's not only about memory safety, some of it is about legacy stuff and backwards compatibility it's forever stuck with.
tom_•10mo ago
This only works with the VC++ CRT, which is potentially a bit limiting!

Also, the DEBUG_NEW thing is useless in practice since, from memory, it stops you using placement new, and dependencies typically don't participate, so a zillion unlabeled leaks is the usual result from the common case of you failing to call some dependency's free function.

And the allocation IDs (and therefore _CrtSetBreakAlloc) are pretty worthless in practice for multithreaded programs, because the allocation order isn't deterministic.

I use the LEAK_CHECK_DF flag in the programs I write (and the CHECK_ALWAYS_DF is worth investigating too), but the only point is to indicate whether there are leaks on exit, yes/no. If no, great; if yes, well that's useful information, but the actual output is almost never helpful. (Though occasionally I do somehow introduce a leak from something that happens before the first thread is created.)

yusina•10mo ago
It's 2025 and we are still discussing memory leaks. The very existence of this article is an indication that C++ (used like that) has an issue. Non-kernel programmers should not even be able to create memory leaks by mistake.

Well, unless they are doing something incredibly stupid including stepping over several explicit warnings of "don't do this unless you are very sure about what you are doing".

teleforce•10mo ago
It's really a shame isn't it? It's 2025 and we still have no programming languages that have impeccable GC for automatic memory management rather than forcing programmer to wrestling and fighting for manually managing the memory [1].

Auto industry kind of solved this automation mechanism for example with the new high performance Toyota GR Corolla has a new automatic gear transmission that's proven as fast if not faster than the manual version [2]. The same goes to F1, the epitome of car racing performance.

[1] Understanding Memory Management, Part 5: Fighting with Rust (101 comments):

https://news.ycombinator.com/item?id=43882291

[2] 2025 Toyota GR Corolla's New Automatic Gearbox Democratizes Fun:

https://www.caranddriver.com/reviews/a62672128/2025-toyota-g...

linotype•10mo ago
I’ve seen way more comments from C++ developers complaining about Rust developers insulting them than I’ve seen Rust developers actually insulting C++. It’s weird to see how attached people are to programming languages, though it’s weird to me too how attached people are to ICE/drivetrains.
sunrunner•10mo ago
I think that's because the Rust developers are having too much fun sitting on their high horse shouting about how great the horse is to need to spend time yelling about the people _not_ on the horse, while the C++ developers don't have a horse to yell about so need one to yell _at_ instead.
squirrellous•10mo ago
It’s about jobs and livelihoods, even if not everyone will admit it. It’s easy to emotional when the argument boils down to “your skills are now outdated, go learn a better one”.
fithisux•10mo ago
c++ is a huge language, with lots of backwards compatibility.

I think c++ should keep the good modern things and fork (restart) from there by breaking backwards compatibility, c++23 will be frozen with some fixes.