Most Influential CS Class You've Taken - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T08:51:10Z http://stackoverflow.com/feeds/question/199670 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken 13 Most Influential CS Class You've Taken Claudiu 2008-10-14T01:05:35Z 2009-05-28T10:56:08Z <p>What is the most influential CS class that you've taken? This could mean the one which made you a better programmer, the one which changed the way you think about CS... maybe even the one that made you decide not to major in CS, although I doubt we'll see many of those around here.</p> <p>I have two candidates: One was Computer Systems, where we learned how computers work starting from logic gates leading into designing and simulating our own RISC computer, then creating a compiler for a simple language to compile to that assembly code.</p> <p>Another is this course about Programming Languages I'm taking. It's teaching me a lot of new concepts like continuations, what mutation really is, etc...</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199675#199675 21 Answer by jodonnell for Most Influential CS Class You've Taken jodonnell 2008-10-14T01:07:45Z 2008-10-14T01:07:45Z <p>Compilers. It really opened my eyes to the intricacies of how programs are made.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199676#199676 2 Answer by warren for Most Influential CS Class You've Taken warren 2008-10-14T01:07:45Z 2008-10-14T01:07:45Z <p>The Computer Organization and Architecture class at the community college I went to: understanding how the actual bits flow around made massive improvements in my higher-level coding.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199678#199678 5 Answer by JosephStyons for Most Influential CS Class You've Taken JosephStyons 2008-10-14T01:09:09Z 2008-10-14T01:09:09Z <p>Comparative programming languages, where we wrote the same programs in Lisp, COBOL, Fortran, Prolog, C, and Java.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199685#199685 0 Answer by cdv for Most Influential CS Class You've Taken cdv 2008-10-14T01:13:39Z 2008-10-14T01:13:39Z <p>Computer architecture involving assembly programming and mathematics for computer graphics. These both provided the fundamental understanding needed for many problems in computer science.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199686#199686 3 Answer by Steven A. Lowe for Most Influential CS Class You've Taken Steven A. Lowe 2008-10-14T01:14:08Z 2008-10-14T01:14:08Z <p>the best CS course I had was actually a Philosophy elective: Predicate Calculus. This led to a better understanding of boolean expressions (in particular the ability to reduce complex ones to essential cases, which is very useful when refactoring highly modified legacy code) and a greater appreciation for the extreme difficulty of proving program correctness.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199689#199689 1 Answer by Paul Nathan for Most Influential CS Class You've Taken Paul Nathan 2008-10-14T01:14:41Z 2008-10-14T01:14:41Z <p>Building my own OS in a RTOS class taught me a lot. Compilers taught me a lot, and computer organization and architecture taught me a lot.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199698#199698 1 Answer by Joe Basirico for Most Influential CS Class You've Taken Joe Basirico 2008-10-14T01:20:14Z 2008-10-14T01:20:14Z <p>Interestingly I think CS 101 was the most influential for me. Before then I thought I liked Computer Science, but after that I absolutely knew that it was what I wanted to do. My professor “Rocky Ross” as an absolute pleasure to have around, he was one of the more established professors at my university, yet loved teaching 101 and inspiring his students. I think the difference between an average and a great 101 class can be life changing for a lot of younger students.</p> <p>After that, I had Rocky for my compilers class, which was the first time I had to develop a large application over an extended period of time with a team. It also brought together all the little pieces of computer science that I had learned until then. </p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199701#199701 3 Answer by ceretullis for Most Influential CS Class You've Taken ceretullis 2008-10-14T01:21:13Z 2008-10-14T01:21:13Z <p>Operating Systems I &amp; II</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199703#199703 16 Answer by Barry Kelly for Most Influential CS Class You've Taken Barry Kelly 2008-10-14T01:22:07Z 2008-10-14T01:22:07Z <p>Analysis of algorithms, for time and space. It is by far the most commonly used technique, and essential to keep in mind before attempting to optimize anything.</p> <p>If self-taught programmers need to learn one thing that they <strong>might</strong> not otherwise automatically pick up, it is this. It's an essential tool for the toolbox.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199729#199729 1 Answer by Moishe for Most Influential CS Class You've Taken Moishe 2008-10-14T01:38:27Z 2008-10-14T01:38:27Z <p>I've only taken one, a C class. When I asked how strings were copied (I'd been using Turbo Pascal, where a string is allocated on the stack and assigning one string to another involves a memcpy) and the professor couldn't tell me -- more importantly, couldn't tell me that I wasn't asking the right question -- I realized I was in the wrong place.</p> <p>I wish I'd taken a compilers class and an algorithm class, which teach (I think) the kind of stuff that it takes a while to realize you don't know.</p> <p>The best on-the-job training -- in conceptual stuff, and taking a step back from the daily "fix bugs! make it work!" grind -- has been being involved in interviewing &amp; hiring. It's forced me to put words to things I only knew conceptually. (ADG, heap, Trie, etc) And the best candidates always teach me something.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199730#199730 1 Answer by Decker for Most Influential CS Class You've Taken Decker 2008-10-14T01:38:49Z 2008-10-14T01:38:49Z <p>Without a doubt Compiler Design. I took this course as a sophomore in college. The classic "dragon" book by Aho accompanied the course. Developing a tokenizer, a recursive descent parser, and a stack-machine emulator to execute the code was some of the most rewarding code I've ever written.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199749#199749 1 Answer by KevDog for Most Influential CS Class You've Taken KevDog 2008-10-14T01:50:31Z 2008-10-14T01:50:31Z <p>A bit of a duplicate of <a href="http://stackoverflow.com/questions/108927/what-cs-class-has-helped-you-over-and-over">this one</a></p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199753#199753 3 Answer by Booji Boy for Most Influential CS Class You've Taken Booji Boy 2008-10-14T01:52:16Z 2008-10-14T01:52:16Z <p>"Data Structures and Algorithm Analysis", defiantly - learned Stacks, queues, linked list, sorting searching, recursion – all the good stuff. </p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199760#199760 1 Answer by moffdub for Most Influential CS Class You've Taken moffdub 2008-10-14T01:54:37Z 2008-10-14T01:54:37Z <p>I have a few:</p> <ul> <li><strong>Compiler Design</strong>, where we implemented a Pascal- to C- (C-minus and Pascal-minus, subsets of their respective languages) over the course of the semester</li> <li><strong>Software Architecture &amp; Component-Based Design</strong>: this introduced me to Domain-Driven Design and transformed the way I think about software in general</li> <li> <strong>Operating Systems</strong>, where we implemented a very very simple file system</li> <li><strong>TCP/IP Networking</strong>, where we implemented a very simple simulation of the TCP/IP stack</li> <li><strong>Programming Languages</strong>, where we implemented a very simple Lisp interpreter in Lisp</li> <li><strong>Theory of Computation</strong>, which is the core Science of Computer Science</li> </ul> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199764#199764 1 Answer by MikeJ for Most Influential CS Class You've Taken MikeJ 2008-10-14T01:56:57Z 2008-10-14T01:56:57Z <p>4th year : Translator construction/Compiler Design - how to build the language you were fascinated by in the prevous year 3rd year : Comparitive Languages showed what problems different languages were solving 2nd year : systems programming - built a linker/loader/assembler 1st year : intro algorithms analisys </p> <p>these were the undergrad courses that I mosted enjoyed - these were early 90's so they may be dated.</p> <p>graduate level : debugging systems - wrote a debugger and instrumentation system . that was fascinating but not much money in it so I hack web systems to pay the bills ...</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199772#199772 3 Answer by kurious for Most Influential CS Class You've Taken kurious 2008-10-14T02:00:49Z 2008-10-14T02:00:49Z <p>I had a "Programming Languages" class where we had to write a program in a new language each week (C++, awk, Perl, etc...). </p> <p>It taught me that each language is a tool. Some are better than others for different tasks -- don't be afraid to branch out into new areas. And if something is really painful (like text processing in C) you're probably using the wrong tool. A few quick Google searches should find it.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199784#199784 18 Answer by Michael Easter for Most Influential CS Class You've Taken Michael Easter 2008-10-14T02:04:50Z 2008-10-14T02:04:50Z <p><strong>Theory of Computation</strong> taught me that CS had deep, profound roots in formal mathematics: P versus NP is mind-blowing. To quote our prof: with this, who needs drugs?</p> <p><strong>Design &amp; Analysis of Algorithms</strong> taught me that CS was <em>cooler</em> than mathematics: in math, we can debate the elegance of a proof, but that is subjective. In algorithms, the proofs can be elegant, but also have a sense of speed (the big-O notation etc). That was thrilling, because I realized <strong><em>comp sci is like putting my mathematics skills in a drag race</em></strong>.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199862#199862 2 Answer by DancesWithBamboo for Most Influential CS Class You've Taken DancesWithBamboo 2008-10-14T02:51:07Z 2008-10-14T02:51:07Z <p>Computer Graphics: it combines math, data structures, and performance with pretty images. Plus you realize what that linear algebra junk was all about.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199863#199863 0 Answer by shoosh for Most Influential CS Class You've Taken shoosh 2008-10-14T02:51:07Z 2008-10-14T02:51:07Z <p><strong>Computer Graphics.</strong><br /> First time I ever designed a GUI, first time I actually built a big application from scratch. First time I knew what I want to do for the rest of my academic career :)</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199903#199903 3 Answer by Mark Reid for Most Influential CS Class You've Taken Mark Reid 2008-10-14T03:15:31Z 2008-10-14T03:15:31Z <p>I would have to say the class that really opened my eyes to some deep results in computer science was the <a href="http://www.cse.unsw.edu.au/~cs4141/" rel="nofollow">Theory of Computation</a> class I took in my final year of my undergraduate. For a taste of the type of result we worked up to, have a look at <a href="http://en.wikipedia.org/wiki/Rice-Myhill-Shapiro_theorem" rel="nofollow">Rice's Theorem</a>. The course was both very difficult and very enjoyable.</p> <p>There's not any single result from that class that I now rely on in my day-to-day research or programming. Rather, it felt like tearing away all of the arbitrary conventions of programming until the raw logic of computing was exposed. In a good course you should learn about the difference between fully and partially computable functions, complexity classes, the limits of recursion, and have a strong appreciation for the Halting Theorem and its implications. </p> <p>If you want a accessible introduction to the theory of computation, I can strongly recommend the relevant chapter in Feynman's <a href="http://www.librarything.com/work/139176" rel="nofollow">Lectures on Computation</a>. The rest of the book is excellent too, and very readable.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199928#199928 0 Answer by juanduke for Most Influential CS Class You've Taken juanduke 2008-10-14T03:30:32Z 2008-10-14T03:30:32Z <p>Compilers Dessing and Design &amp; Analysis of Algorithms Just opened my mind!</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199942#199942 0 Answer by Will for Most Influential CS Class You've Taken Will 2008-10-14T03:38:20Z 2008-10-14T03:38:20Z <p>My final project class, which we were required to use a horribly, nightmarishly complex and shitty Java IDE (the maker made a deal with the school). I have blocked the name of the IDE out of my brain, fortunately; if I had to guess I'd say Visual Cafe. It was some meta IDE where you let it generate shittons of awful java code which you were supposed to "clean up". Of course, it was geared towards professionals; we all had no idea what the hell was going on, and consequently nobody completed their project. A disaster.</p> <p>That class taught me that there is nothing better for efficiently writing good, bug free code than a well designed and fleshed out IDE. </p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199951#199951 2 Answer by Jim Puls for Most Influential CS Class You've Taken Jim Puls 2008-10-14T03:40:30Z 2008-10-14T03:40:30Z <p>The class was called "<a href="http://www.cs.cmu.edu/~me/212/" rel="nofollow">principles of programming</a>" but it was really a serious functional programming class. It did more for my raw programming ability than any other class I ever took. Years later, I would find myself amazed when I was talking with somebody who had been doing software professionally for thirty years but had no idea what a closure is.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199967#199967 0 Answer by rjohnston for Most Influential CS Class You've Taken rjohnston 2008-10-14T03:53:26Z 2008-10-14T03:53:26Z <p>The most influential class I took as part of my degree would have been Project Management. It taught me that it's one thing to have smart people hacking out 1000s of lines of quality code day after day, but it's something completely different to ship a working product that people can actually use, and that having the former doesn't guarantee the latter.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/199997#199997 0 Answer by eightytwenty for Most Influential CS Class You've Taken eightytwenty 2008-10-14T04:10:01Z 2008-10-14T04:10:01Z <p>My first OOP class, which was a Java class. It really demystified a lot for me. I guess you could say I was hooked from the onset.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/200040#200040 0 Answer by Brandon DuRette for Most Influential CS Class You've Taken Brandon DuRette 2008-10-14T04:49:27Z 2008-10-14T04:49:27Z <p>6.001 (how to think like a computer scientist)<br> 6.170 (how to think like a software engineer)</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/732093#732093 0 Answer by unknown (yahoo) for Most Influential CS Class You've Taken unknown (yahoo) 2009-04-08T22:13:29Z 2009-04-08T22:13:29Z <p>Mines was my C class in undergrad. The class was hard (all projects due time were extented) and time consuming. Exercises that can take me 15 minutes now took me two week then. However, that class serves as the basis for my C# knowledge that I use professionally as a Software Engineer. </p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/732100#732100 1 Answer by Nicolas Webb for Most Influential CS Class You've Taken Nicolas Webb 2009-04-08T22:16:53Z 2009-04-08T22:16:53Z <p>Discrete Math. (UNT MATH 2770). It doesn't fall under the CS curriculum, but it was required for all CS majors. Basically "how to think like a programmer."</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/920191#920191 1 Answer by Happy Coder for Most Influential CS Class You've Taken Happy Coder 2009-05-28T10:28:51Z 2009-05-28T10:28:51Z <p>The following in the mentioned order:- 1. Compiler Design. 2. Theory Of Computation. 3. Algorithms and Data Structures. 4. Operating System.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/920219#920219 0 Answer by Michael Borgwardt for Most Influential CS Class You've Taken Michael Borgwardt 2009-05-28T10:42:29Z 2009-05-28T10:42:29Z <p>Software Engineering.</p> <p>This, followed by a student project where we actually got to implement a nontrivial program as a group in an organized fashion over the course of several months, showed me that programming was much more complex and less boring than I had though, prompting me to start a career as a programmer rather than as a sysadmin (which I had previously planned).</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/920246#920246 1 Answer by Martin McNulty for Most Influential CS Class You've Taken Martin McNulty 2009-05-28T10:50:40Z 2009-05-28T10:50:40Z <p>Richard Bird's "Functional Programming" course. The first course in the first year. Up to that point I'd mostly been programming in QBasic and this totally destroyed most of my preconceptions about programming and the structure and power of computer programs. </p> <p>The succinctness and power of functional languages (in our case Haskell) seemed almost like magic at the time and have influenced my programming style through another three years of undergrad and three years of professional development too.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/920261#920261 0 Answer by Arnis L. for Most Influential CS Class You've Taken Arnis L. 2009-05-28T10:54:27Z 2009-05-28T10:54:27Z <p>Computer architecture, despite that i`m a software developer.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/920264#920264 0 Answer by J. Pablo Fernández for Most Influential CS Class You've Taken J. Pablo Fernández 2009-05-28T10:56:08Z 2009-05-28T10:56:08Z <p><a href="http://mitpress.mit.edu/sicp/" rel="nofollow">Structure and Interpretation of Computer Programs</a></p>