Object-Disoriented Programming
shamusyoung.com
Object-Disoriented Programming
1–10 of 11 posts
Re: Object-Disoriented Programming
#2Re: Object-Disoriented Programming
#3I can't believe www.dead-link.com is being squatted. Who in their right minds wants to name their product or have their product be associated with dead link?
Re: Object-Disoriented Programming
#4I don't program in C++ but that sounds like an unrealistic goal for a complex and specific problem, and a great candidate for DIY rather than attempting to find a previously built library.
However, given the fact that C++ has been around for decades, it must be frustrating when you have so much trouble finding usable libraries. I guess that's one of the reasons PHP and Ruby folks love their scene. Then again, they're not likely trying to build a cross platform, OpenGL 3D dialog box that overlays onto an existing arbitrary scene.
Re: Object-Disoriented Programming
#5Re: Object-Disoriented Programming
#6Re: Object-Disoriented Programming
#7The article covers a bunch of stumbling blocks that are external to the language, but there are at least as many in the language itself.
It wasn't deliberate of course, but a million little decisions and unadressed problems in the language ended up conspiring to create a miserable experience when assembling systems from libraries. This may not have been a very big problem 20 years ago - I suspect the current culture of many small libraries as building blocks didn't really exist then - but today it's a show stopper.
Re: Object-Disoriented Programming
#8Re: Object-Disoriented Programming
#9I feel your pain, my friend.
Re: Object-Disoriented Programming
#10For me what killed C++ above all else is how incredibly 3rd-party-library hostile it has turned out to be. The article covers a bunch of stumbling blocks that are external to the language, but there are at least as many in the language itself. It wasn't deliberate of course, but a million little decisions and unadressed problems in the language ended up conspiring to create a miserable experience when assembling syst…