Old-school programming techniques you probably don't miss
computerworld.com
Old-school programming techniques you probably don't miss
1–10 of 33 posts
Re: Old-school programming techniques you probably don't miss
#2They are useful skills, and, I think the reason that the section seems "old-school" comes from the proliferation of Java in early CS courses.
Java has most of the algorithms and structures implemented already, and there's no point in anyone redoing it once they find those implementations, so the skills fall out of use.
Re: Old-school programming techniques you probably don't miss
#3Re: Old-school programming techniques you probably don't miss
#4Re: Old-school programming techniques you probably don't miss
#5Another way to look at it is this -- how can having more knowledge, more tools in your toolbox, hurt?
Re: Old-school programming techniques you probably don't miss
#6Re: Old-school programming techniques you probably don't miss
#7You may never write one to use in a production environment, but you better damn well understand them and then some.
And no need for memory management? I don't care if you're coding in a garbage collected language you STILL better understand how computer memory works.
This article is literally below coding horror standards.
Re: Old-school programming techniques you probably don't miss
#8I think most CS degrees still do (and should) require the algorithms and data structures programming. They are useful skills, and, I think the reason that the section seems "old-school" comes from the proliferation of Java in early CS courses. Java has most of the algorithms and structures implemented already, and there's no point in anyone redoing it once they find those implementations, so the skills fall out of us…