Programming by poking: why MIT stopped teaching SICP
posteriorscience.net
Programming by poking: why MIT stopped teaching SICP
1–10 of 245 posts
Re: Programming by poking: why MIT stopped teaching SICP
#2Re: Programming by poking: why MIT stopped teaching SICP
#3All that said, it is still worthwhile to work through all of SICP, if you want a deeper understanding of how certain tools work. Writing your own interpreter is a very rewarding experience.
Re: Programming by poking: why MIT stopped teaching SICP
#4All that said, it is still worthwhile to work through all of SICP, if you want a deeper understanding of how certain tools work. Writing your own interpreter is a very rewarding experience.
Re: Programming by poking: why MIT stopped teaching SICP
#5Re: Programming by poking: why MIT stopped teaching SICP
#6Re: Programming by poking: why MIT stopped teaching SICP
#7Re: Programming by poking: why MIT stopped teaching SICP
#8Re: Programming by poking: why MIT stopped teaching SICP
#9"...Sussman said that in the 80s and 90s, engineers built complex systems by combining simple and well-understood parts. The goal of SICP was to provide the abstraction language for reasoning about such systems.
Today, this is no longer the case. Sussman pointed out that engineers now routinely write code for complicated hardware that they don’t fully understand (and often can’t understand because of trade secrecy.) The same is true at the software level, since programming environments consist of gigantic libraries with enormous functionality. According to Sussman, his students spend most of their time reading manuals for these libraries to figure out how to stitch them together to get a job done. He said that programming today is 'More like science. You grab this piece of library and you poke at it. You write programs that poke it and see what it does. And you say, ‘Can I tweak it to do the thing I want?''. ... "
Surely graduates of MIT, of all places, would be the ones building the libraries that ordinary programmers are stitching together and would still need the ability to build complex systems from fundamental CS abstractions? I'm absolutely baffled.
Re: Programming by poking: why MIT stopped teaching SICP
#10All that said, it is still worthwhile to work through all of SICP, if you want a deeper understanding of how certain tools work. Writing your own interpreter is a very rewarding experience.
Having to write my own shell in C for my operating systems class absolutely blew my mind. And then after that my professor made us implement a quine in the shell we just wrote. Yes, he was insane.