>>102
you clearly don't actually understand those articles.
manual memory management is a distraction. There's no reason to manually manage memory and not manually manage CPU registers. It's a hardware detail that C/C++ actually already put a layer of abstraction over (the stack/1D heap abstraction) that isn't even that good.
Everybody who cares about shipping feature-rich good products and doesn't care about hardware-level performance wants automatic memory management.
Whether various garbage collection algorithms (or the idea of GC, as opposed to, say, reference counting) is good is a matter for the guys who write them, not the guy who use them.