active questions tagged subjective - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T07:03:13Zhttp://stackoverflow.com/feeds/tag/subjectivehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1931519/what-are-the-best-strategies-and-examples-for-teaching-c-memory-management-to-e5What are the best strategies and examples for teaching C++ memory management to early college students? Brent Nash2009-12-19T00:44:38Z2009-12-19T04:39:40Z
<p>So I'm teaching a 2nd semester freshman level C++ course at a university in an upcoming semester. The students have used arrays (though only statically allocated) and have some notion of references and pointers (but probably not much). In general, they have not done a whole lot of dealing with dynamic memory allocation and management. I'm trying to sort of harness the global intelligence of the Stack Overflow community to see, in your collective experience, what have been the most effective ways to teach things like pointers and memory management to young computer science students?</p>
<p>There are a lot of existing interesting StackOverflow posts on related topics:</p>
<p><a href="http://stackoverflow.com/questions/670353/when-teaching-c-is-it-better-to-teach-arrays-before-or-after-pointers">http://stackoverflow.com/questions/670353/when-teaching-c-is-it-better-to-teach-arrays-before-or-after-pointers</a></p>
<p><a href="http://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome">http://stackoverflow.com/questions/5727/what-are-the-barriers-to-understanding-pointers-and-what-can-be-done-to-overcome</a></p>
<p><a href="http://stackoverflow.com/questions/92001/what-is-the-real-difference-between-pointers-and-references">http://stackoverflow.com/questions/92001/what-is-the-real-difference-between-pointers-and-references</a></p>
<p><a href="http://stackoverflow.com/questions/660538/should-we-teach-pointers-in-a-fundamentals-of-programming-course">http://stackoverflow.com/questions/660538/should-we-teach-pointers-in-a-fundamentals-of-programming-course</a></p>
<p><a href="http://stackoverflow.com/questions/1255223/what-are-the-important-notions-in-c-that-you-did-not-learn-from-your-teachers">http://stackoverflow.com/questions/1255223/what-are-the-important-notions-in-c-that-you-did-not-learn-from-your-teachers</a></p>
<p>I certainly have my own set of opinions on how and what I teach, but I'm really interested in how my methodology differs from yours. Some sub-questions to consider (you're certainly not limited to these):</p>
<ul>
<li><p>What order would you teach things in and how would you relate the topics? "Ordinary" stack variables, followed by references, followed by pointers? Where do arrays fit in? When do you introduce the "new" keyword? etc.</p></li>
<li><p>What visual aids have you seen used that best express these concepts? e.g. Drawing boxes for memory locations with values inside and variables/pointers as names with arrows pointing to the boxes? Are there any particular websites or textbooks you've read that just have outstanding descriptions?</p></li>
<li><p>Are there particular code examples (e.g. a "swap" function) that tend to get the information across better than others?</p></li>
</ul>
<p>Teach on!</p>
<h3>Edit</h3>
<p>In an attempt to differentiate this from some of the links I've posted:</p>
<p>Most of the previous SO links I've posted focus themselves very directly on pointers. Though pointers are an integral part of understanding memory behavior, I'm interested in the more overarching themes of how students understand how memory works in general. How do we best illustrate the differences between normal, pointer, and reference declaration? How do we emphasize the differences between global, stack, and heap variables? I think even getting into pushing return addresses onto the call stack is fair game too. What do you think the most important aspects of memory management are, how do you tie them all together, and how do you get this across in a coherent fashion?</p>
http://stackoverflow.com/questions/1925142/best-way-to-refactor-my-form-procedural-to-oop3best way to refactor my form (procedural to oop?)sprugman2009-12-17T22:50:36Z2009-12-19T03:49:23Z
<p>(Note: this is related to <a href="http://stackoverflow.com/questions/1923429/">this question</a>, but I think it could have been written more clearly, so I'm trying again -- my update only helped to a limited extent.)</p>
<p>I've inherited some code that creates a complex form with numerous sections, and lots of possible views, depending on a number of parameters. I've been working with it for a while, and finally have a chance to think about doing some re-factoring. It's currently written procedurally, with a bunch of functions that look like this:</p>
<pre><code>get_section_A ($type='foo', $mode='bar', $read_only=false, $values=array()) {
if ($this->type == 'foo') {
if ($this->mode == 'bar') { }
else { }
} else { }
}
</code></pre>
<p>Passing around those parameters is nasty, so I've started writing a class like this:</p>
<pre><code>class MyForm {
public $type; // or maybe they'd be private or
public $mode; // I'd use getters and setters
public $read_only; // let's not get distracted by that :)
public $values;
// etc.
function __constructor ($type='foo', $mode='bar', $read_only=false, $values_array=array()) {
$this->type = $type;
// etc.
}
function get_sections () {
$result = $this->get_section_A();
$result .= $this->get_section_B();
$result .= $this->get_section_C();
}
function get_section_A() {
if ($this->type == 'foo') { }
else { }
}
function get_section_B() {}
function get_section_C() {}
// etc.
}
</code></pre>
<p>The problem is that the procedural functions are split into a few files (for groups of sections), and if I combine them all into a single class file, I'm looking at 2500 lines, which feels unwieldy. I've thought of a few solutions:</p>
<ol>
<li>keep living with the nasty parameters and do something else with my time :)</li>
<li>live with having a 2500 line file</li>
<li>create a separate class for each group of sections that somehow "knows" the values of those parameters</li>
</ol>
<p>If I do #3, I've thought of two basic approaches:</p>
<ol>
<li>pass the MyForm object in as a single parameter</li>
<li>create a FormSectionGroup class with static properties that get set in MyForm, then in the group files, each class would extend FormSectionGroup and automatically have access to the current values for those parameters.</li>
</ol>
<p>1) is probably easier to set-up, and once I'm inside <code>get_section_A()</code> whether I say <code>$this->type</code> or <code>$myForm->type</code> isn't all that different, but it's not exactly OOP. (In fact, I could do that without really changing to an OOP approach.)</p>
<p>Are there other approaches? Thoughts about which is better?</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke808What is your best programmer joke?hmason2008-10-24T15:43:35Z2009-12-19T02:56:48Z
<p>When I teach introductory computer science courses, I like to lighten the mood with some humor. Having a sense of fun about the material makes it less frustrating and more memorable, and it's even motivating if the joke requires some technical understanding to 'get it'!</p>
<p>I'll start off with a couple of my favorites:</p>
<blockquote>
<p><strong>Q:</strong> How do you tell an introverted computer scientist from an extroverted computer scientist?</p>
<p><strong>A:</strong> An extroverted computer scientist looks at <em>your</em> shoes when he talks to you.</p>
</blockquote>
<p>And the classic:</p>
<blockquote>
<p><strong>Q:</strong> Why do programmers always mix up Halloween and Christmas?</p>
<p><strong>A:</strong> Because Oct 31 == Dec 25!</p>
</blockquote>
<p>I'm always looking for more of these, and I can't think of a better group of people to ask. What are your best programmer/computer science/programming jokes?</p>
http://stackoverflow.com/questions/1885016/using-new-languages-in-an-apache-php-javascript-world14Using new languages in an Apache/PHP/javaScript worldDon2009-12-11T00:11:50Z2009-12-19T02:54:58Z
<p>Hey, I am stuck in a mySQL/apache/PHP/javaScript world.</p>
<p><img src="http://richardwiseman.files.wordpress.com/2009/07/fish-bowl.jpg?w=300&h=292" alt="in a fish bowl"></p>
<p>Has anyone else found a way to stay inside that stack yet incorporate other languages and technologies to advantage and increase interest?</p>
<p>The idea is to still server pages with PHP, but they might have been made with another technology or the javaScript might have been built with a tool rather than by hand.</p>
http://stackoverflow.com/questions/1931587/is-it-wrong-to-use-request-for-data3Is it wrong to use $_REQUEST for Data?Chacha1022009-12-19T01:12:43Z2009-12-19T02:10:46Z
<p>So, I've been coding for a little (2 years), and I have a very subjective question:</p>
<p>Is it wrong to use $_REQUEST for Data?</p>
<p>This mainly pertains to authentication by the way. </p>
<p>If you think about the 3 ways data can occur in <code>$_REQUEST</code>, it can come from either a cookie, a form, or a query string. Now, I know that most people directly grab the information from either <code>$_POST</code> or <code>$_GET</code>, using <code>$_COOKIE</code> only when they are expecting a cookie. </p>
<p>My theory is that in reality, there shouldn't be any difference in this data, and it shouldn't make any difference if you replaced <code>$_POST</code> or <code>$_GET</code> with <code>$_REQUEST</code>.</p>
<p>If you are authenticating a user into the system, does it really mattered if the authentication details are contained in the <code>$_POST</code> or <code>$_GET</code> array? Heck, it probably shouldn't matter if they are in <code>$_COOKIE</code> either. They are still giving you credentials to log into the site, which you should check for correctness, and if so log them in.</p>
<p>Now, I do realize there are security issues if you try to have a login form that submits data via a query string, but I don't believe that pertains to the question. Also, if someone fails a login too many times, there should be proper limits set in place to avoid overloading the server.</p>
<p>I'd like to here the opinion about this. </p>
<p>Community Wiki'd for good measure.</p>
<p><hr></p>
<p>Oh, and just by the way, here are other StackOverflow questions that relate if you have other questions about <code>$_REQUEST</code></p>
<p><a href="http://stackoverflow.com/questions/368329/php-using-get-post-instead-of-request">http://stackoverflow.com/questions/368329/php-using-get-post-instead-of-request</a>
<a href="http://stackoverflow.com/questions/107683/when-and-why-should-request-be-used-instead-of-get-post-cookie">http://stackoverflow.com/questions/107683/when-and-why-should-request-be-used-instead-of-get-post-cookie</a></p>
http://stackoverflow.com/questions/1931337/whats-your-favorite-software-book-that-was-fun-to-read8Whats your favorite software book that was fun to read? [closed]medopal2009-12-18T23:47:16Z2009-12-19T01:19:22Z
<p>I read software books all the time, but lot of them become really boring after 2-3 chapters, and i struggle to end it. On the other hand there is some books that are fun and exciting to read one, two and even three times. </p>
<p>My personal favorite is Head First, the series. I read 3 of their books and they are all exciting to read and full of geeky jokes, you never get bored.</p>
<p>So what do you suggest? </p>
<p>NOTE: Please put fun/exciting only books so not to conflict with other questions.</p>
<p>Related questions:</p>
<ol>
<li><a href="http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read">What is the single most influential book every programmer should read?</a></li>
<li><a href="http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer">What development book made the most impact on you as a developer?</a></li>
</ol>
http://stackoverflow.com/questions/1930446/what-motivates-you-to-achieve-a-deadline5What motivates you to achieve a deadline? [closed]Phil.Wheeler2009-12-18T20:16:32Z2009-12-19T01:14:35Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/381089/how-do-you-handle-scheduling-deadlines-around-programmers">How do you handle scheduling/deadlines around programmers?</a> </p>
</blockquote>
<p>Tangentially related to <a href="http://stackoverflow.com/questions/724715/can-software-be-developed-without-deadlines">this question</a>, I'm leading a team on a dedicated project responsible for providing enhancements to a website in iterative stages.</p>
<p>Our challenge lately has been getting the business to commit to final, fixed and signed-off requirements whose deadline is dependable and predictable. After discussions with my team, it's become apparent that the frustrations with loose requirements, fluid / elusive deadlines and no real clear objectives being set is taking a certain psychological toll.</p>
<p>What is it about a deadline that motivates you as a developer? Why is it unacceptable to you to have requirements that can be constantly appended to and the deadline moved out? If the business is prepared to incur the cost and delay, what difference does it make to you, right?</p>
<p>I want to get some compelling reasons together for changing our process and putting some more pressure on the business to step their game up.</p>
http://stackoverflow.com/questions/161125/whats-wrong-with-f9What's wrong with F#?Erik2008-10-02T06:43:22Z2009-12-19T00:18:50Z
<p>What's wrong with F#?</p>
<p>That is, what about the language would make it unsuitable for production environments (<strong>excluding</strong> the fact that it's not yet officially graduated from MS Research)? I'm interested in functional programming (especially on .NET) and I'd like to learn this language, but I worry about its applicability in the real world.</p>
<p><strong>Edit</strong>: I'm aware of the benefits of F# - I want this question to concentrate on the deficits - I want to know why F# would be a poor choice, and for what sorts of projects it would be a poor choice.</p>
<p><strong>Edit 2</strong>: I asked this question a while ago, when F# was still in beta, but I believe it's more relevant a question now as it nears release with Visual Studio 2010. Any new answers would be great to see, especially now that many people have had the chance to get their hands on it and figure it out.</p>
http://stackoverflow.com/questions/279619/whats-your-favorite-implementation-of-producing-the-fibonacci-sequence11What's your favorite implementation of producing the fibonacci sequence?Terry Donaghe2008-11-11T00:01:25Z2009-12-19T00:11:03Z
<p>Best, most creative, most clever, fastest, smallest, written in weirdest language, etc etc.</p>
<p>For those not familiar with this staple of programming exam question / interview question, check this out:</p>
<p><a href="http://en.wikipedia.org/wiki/Fibonacci_number" rel="nofollow">Fibonacci Sequence at Wikipedia</a></p>
<p>The question would be, write a simple program which will spit out the first n digits of the Fibonacci sequence. </p>
<p>So, if n == 12, we produce:</p>
<p>0 1 1 2 3 5 8 13 21 34 55 89 144</p>
<p>Your implementation becomes more interesting when you set n to larger values. How long does it take your implementation to return a 25 digit sequence? How about 100?</p>
http://stackoverflow.com/questions/1078043/why-didnt-ada-make-it16Why didn't Ada make it?AraK2009-07-03T06:47:52Z2009-12-18T22:37:31Z
<p>I've read about a really beautiful langauge called "Ada", which seems very powerful to me, with a lot of what we call these days "safety features".</p>
<p>What was wrong with Ada not to make it a first-class language in industry?</p>
<p>I know that it has been used in mission-critical software. What I am asking about is what <strong>does not</strong> make it a good language for a <strong>wider</strong> domain. For example, C was created to be a systems language but it has an important role in the scientific world.</p>
http://stackoverflow.com/questions/1867857/have-you-ever-restricted-yourself-to-using-a-subset-of-language-features26Have you ever restricted yourself to using a subset of language features?Jonathon Watney2009-12-08T15:53:26Z2009-12-18T22:11:02Z
<p>Have you ever restricted yourself to using a subset of language features, and more importantly, why?</p>
<p>I'm curious to find out who choose to use only certain language features and avoid others in order to win big in areas such as, but not limited to, memory usage, execution speed or plain old readability and maintainability. And by doing so did it yield the expected results or did it perhaps just hamper some other aspect of producing software. Are there any cautionary tales or wild success stories out there worth sharing regarding this subject?</p>
http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered55Most frustrating programming style you've encounteredJaredPar2008-10-26T08:08:51Z2009-12-18T19:24:46Z
<p>When it comes to coding style I'm a pretty relaxed programmer. I'm not firmly dug into a particular coding style. I'd prefer a consistent overall style in a large code base but I'm not going to sweat every little detail of how the code is formatted.</p>
<p>Still there are some coding styles that drive me crazy. No matter what I can't look at examples of these styles without reaching for a VIM buffer to "fix" the "problem". I can't help it. It's not even wrong, I just can't look at it for some reason.</p>
<p>For instance the following comment style almost completely prevents me from actually being able to read the code. </p>
<pre><code>if (someConditional)
// Comment goes here
{
other code
}
</code></pre>
<p>What's the most frustrating style you've encountered?</p>
http://stackoverflow.com/questions/1404917/groovy-vs-scala-vs-jruby-vs-closure-vs-jython7Groovy vs Scala [vs JRuby vs Closure vs Jython]folone2009-09-10T12:12:20Z2009-12-18T19:17:57Z
<p>I'm planning to broaden my perspectives in JVM platform, and I've got a dilemma: what should I learn first? Could you please explain, what are the advantages of Groovy, Scala and other languages for JVM? Thanks.</p>
http://stackoverflow.com/questions/1894583/what-great-people-within-computer-science-should-we-all-know-about12What great people within computer science should we all know about? [closed]bambuska2009-12-12T20:21:33Z2009-12-18T19:12:11Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/460894/what-are-the-names-that-every-programmer-should-know">What are the names that every programmer should know?</a><br>
<a href="http://stackoverflow.com/questions/432861/who-are-the-most-famous-progammers-in-computer-science">Who are the most famous progammers in Computer Science?</a> </p>
</blockquote>
<p><hr></p>
<p>There are many brilliant people out there in the lovely world of computer science! </p>
<blockquote>
<p>Some are big thinkers.<br>
Some are great presenters.<br>
Some have come up with the ideas.<br>
Some have made good ideas come to life.<br>
Some have given us the important theories behind.<br>
Some have given us the practical techniques we still use.<br>
.. and some have done other great things within our science! </p>
</blockquote>
<p>So what great people should we all know about? </p>
<blockquote>
<p>Who is your "idol" within Computer Science?<br>
Who motivates or inspires you to keep learning?<br>
Who do you admire or look up to within our business?<br>
Who have you learned from through conferences, podcasts, blogs, etc?<br>
Who has come up with the ideas, technologies or techniques you really enjoy? </p>
</blockquote>
<p>Please give us the great names you think we should know about. And <strong>please add links</strong> to blogs, presentations and other resources such that we all can learn more about some of these fabolous people!</p>
http://stackoverflow.com/questions/1891996/is-computer-science-for-me39Is Computer Science For Me?Confused2009-12-12T02:07:19Z2009-12-18T19:07:00Z
<p>I love software development. I live for it. I spent almost 100% of my free time writing code for my latest project, priding myself on readability, a lack of complexity, and modularization. Also, since I'm graphics programming, I can also add in usability, interface, and just things that are easy on the eyes, and the fingers.</p>
<p>Thus, when I entered the CS class I'm currently taking, I thought it would be a breeze. Boy was I wrong. Sure the tests all have incredibly easy concepts. I understand everything perfectly, however, we're asked to decipher fairly unreadable code in short amounts of time.</p>
<p>I'm a writer, not a math genius, so I take my time and step through algorithms slowly when I'm deciphering code. I don't want to do it quickly, and I'd rather get it right at a slow speed, then wrong speeding through it. </p>
<p>Our final exam in the class, our teacher told us, consisted partly of the AP Computer Science test that high schoolers take. I was unable to finish it in the allotted time. I know exactly what's going on, I just can't do it fast enough. I feel incredibly stuck. I continue to improve my software development skills every day, but I can't see how I can improve the speed at which I process calculations.</p>
<p>I feel ashamed that I couldn't finish a simple AP CS test, but it also leads to my questioning of what Computer Science is as a discipline. Do I really want to get into it if all I'm getting into is stepping through algorithms, in an environment where concepts like readability are preached, but not practiced? Am I better off just taking some other major, while still programming (I would hope employers would take more heart in sample code and programs than a degree in the "discipline", but I doubt it.)</p>
<p><strong>Edit:</strong> I've considered one alternative. I am very good at writing itself. I like programming more, but I also enjoy writing. How would employers view a major in some kind of writing discipline, but with solid code samples?</p>
http://stackoverflow.com/questions/1921301/if-you-knew-then-what-you-know-now-would-you-have-started-programming2If you knew then what you know now, would you have started programming?LittleBoy2009-12-17T12:03:16Z2009-12-18T18:30:19Z
<p>Just thought of asking this here to know, how much people comfortable with their career choice as programming. </p>
http://stackoverflow.com/questions/1927758/what-effects-does-legacy-code-cause-on-a-developers-skills6What effects does legacy code cause on a developer’s skills?dpb2009-12-18T11:46:54Z2009-12-18T17:03:38Z
<p>Edsger Dijkstra once said that "the use of COBOL cripples the mind...". How about working on legacy software? Do you, as a developer, get crippled by that?</p>
<p>As an employed programmer, I have spent most of my time maintaining and fixing legacy systems. In my free time I constantly try to learn new techniques, languages or frameworks, but 8+ hours a day, 5 days a week I work on someone’s OLD crap application (I have, for example, worked with COBOL or EJB 1 or apps written in ASP).</p>
<p>I see a lot of questions on SO about technologies I have never heard of, and there is also a lot of people answering them. So, I am now wondering what effect working on old apps has on my skills.</p>
<p>A good thing that resulted from it is that I’ve picked up books like Code Complete or Refactoring, trying to ease my job, and I have learned a lot (i.e. even a bad example is a very useful example), but I am sure that there are also negative aspects of this (e.g. if I am out of a job, some years of COBOL don’t mean s**t if Web2.0 skills are demanded).</p>
<p>So, my question is: <strong>what do you gain and what do you lose, as a developer, when working mostly on legacy software?</strong></p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1915829/learning-c-when-you-already-know-c6Learning C when you already know C++ ?TheSamFrom19842009-12-16T16:25:30Z2009-12-18T16:42:41Z
<p>I think I have an advanced knowledge of C++, and I'd like to learn C.</p>
<p>There are a lot of resources to help people going from C to C++, but I've not found anything useful to do the opposite of that. </p>
<p>Specifically:</p>
<ol>
<li>Are there widely used general purpose libraries every C programmer should know about (like boost for C++) ?</li>
<li>What are the most important C idioms (like RAII for C++) ?</li>
<li>Should I learn C99 and use it, or stick to C89 ?</li>
<li>Any pitfalls/traps for a C++ developer ?</li>
<li>Anything else useful to know ?</li>
</ol>
<p>Purpose : Adding C development to my skills (professionally, or to participate in an open-source project written in C, for instance).</p>
<p>Thanks a lot.</p>
http://stackoverflow.com/questions/329289/really-wow-them-in-the-interview139Really "wow" them in the interviewJuliet2008-11-30T20:14:25Z2009-12-18T16:35:24Z
<p>Let me put it to you this way: I'm a top-notch programmer, but a notoriously bad interviewee.</p>
<p>I've flunked 3 interviews consecutively because I get so nervous that my voice tightens at least 2 octaves higher and I start visibly shaking -- mind you, I can handle whatever technical questions the interviewer throws at me in that state, but I think it looks bad to come off as a quivering, squeaky-voiced young woman during a job interview.</p>
<p>I've just got the personality type of a shy computer programmer. No matter how technical I am, I'm going to get passed up in favor of a smooth talker. I have another interview coming up shortly, and I want to really impress the company.</p>
<p>Here are my trouble spots:</p>
<ol>
<li><p><strong>What can I do to be less
nervous during my interview?</strong> I
always get really excited when I
hear I have a face-to-face
interview, but get more and more
anxious as <s>D-Day</s> the
interview approaches.</p></li>
<li><p><strong>My employers wants me to
explain what I used to do at my
prior employment. I'm a very chatty
person and tend to talk/squeak for
10 minutes at a time. How long or
short should I time my answers?</strong></p></li>
<li><p><strong>On that note, when I'm
explaining what I did at prior jobs,
what exactly is my interviewer
looking for?</strong></p></li>
<li><p><strong>At some point, my interviewer
will ask "do you have any questions
for me while you're here?" I
<em>should</em>, but what kinds of questions should I ask to show that
I'm interested in being employed?</strong></p></li>
<li><p><strong>My interviewer always asks why
I'm looking for a new job. The real
reason is that my present salary is
$27K/yr [Edit to add: and I've yet to get a raise since I started], and I want to make more
money -- otherwise the work
environment is fine. How do I
sugarcoat "I want to make more
money" into something that sounds
nicer?</strong></p></li>
<li><p><strong>I have only one prior
programmer job, and I've worked
there for 18 months, but I have the
skill of someone with 4 to 6 years
of experience. What can I say to
compete against applicants with more
work experience?</strong></p></li>
</ol>
<p>I took a low-paying $27K/yr programming job just to get my foot in IT, and I've been trying to leverage that job as a stepping stone to better opportunities. I get interviews because I consistently out-score senior-level developers in aptitude tests, and my desired salary range is right in the ballpark of what most companies want to offer.</p>
<p>Unfortunately, while I've been a programming as a hobby for 10 years and I'm geared to graduate with my BA in Comp Sci in May '09, employers see me as a junior-level programmer with no degree. I want to prove them wrong and get a job that matches my skill level.</p>
<p>I'd appreciate any advice anyone has to offer, especially if they can help me get a better job in the process.</p>
http://stackoverflow.com/questions/1921946/who-are-the-unit-testing-professional-masters-in-your-language1Who are the unit testing professional masters in your language? [closed]Elisha2009-12-17T13:55:11Z2009-12-18T16:06:32Z
<p>Who are the people with major contributions in this area and who are the professional masters in your opinion?</p>
<p>I can think of <a href="http://en.wikipedia.org/wiki/Kent%5FBeck" rel="nofollow">Kent Beck</a> for example as one who contributed a lot to unit testing and about <a href="http://www.ayende.com/" rel="nofollow">Ayende Rahien</a> as a professional master in .Net unit testing.</p>
<p>I want to start a new forum with focus on unit testing with relevance to all languages and I interested in who are the most "important" people to follow.</p>
http://stackoverflow.com/questions/1921469/why-use-vim-does-it-have-a-relevance-in-modern-programming1Why use Vim? - Does it have a relevance in modern programming? [closed]Mark Iliffe2009-12-17T12:35:05Z2009-12-18T14:05:19Z
<p>Essentially why should I use Vi(m)? I am a Computer Science graduate and have always been firmly within the Eclipse camp using the GUIs of R and Visual Studio suite when needed. I'm currently learning/improving in other languages like JavaScript, Cappuccino and C++ and frankly would like improve the way I code. </p>
<p>I think I'm a proficient coder but with room for improvement and know a lot of this is subjective on personal preferences, I've seen colleagues using Vim and they seem to get on with it quite well, however never seem to be able to explain why I should use it.</p>
<p>Another question formed from this is does Vim have a place in the modern world with the GUIs, granted Eclipse crashes, but it's getting better all the time, does Vim have a purpose now? </p>
http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question39What is the worst interview question?Patrik2008-08-14T18:30:58Z2009-12-18T13:47:26Z
<p>What is the absolutely worst job interview question that you've been asked?<br />
What did you answer? Did you get the job?</p>
http://stackoverflow.com/questions/130965/what-is-the-worst-code-youve-ever-written18What is the worst code you've ever written?Even Mien2008-09-25T01:22:55Z2009-12-18T13:32:41Z
<p>Step into the confessional. Now's your time to come clean. </p>
<ul>
<li>What's the worst code you personally have
ever written? </li>
<li>Why was it so bad?</li>
<li>What did you learn from it?</li>
</ul>
<p>Don't tell us about code you inherited or from some co-worker. This is about your personal growth as a programmer and as a person.</p>
http://stackoverflow.com/questions/34215/what-are-the-best-alternatives-to-notepad31What are the best alternatives to notepad?Niyaz2008-08-29T09:07:05Z2009-12-18T13:27:08Z
<p>I would like to get syntax highlighting support for major languages.
Other desired properties are:</p>
<ol>
<li>Simple to use</li>
<li>Light weight</li>
</ol>
http://stackoverflow.com/questions/132798/what-should-every-programmer-know109What should every programmer know?Matt Lacey2008-09-25T11:50:18Z2009-12-18T13:18:02Z
<p>Regardless of programming language(s) or operating system(s) used or the environment they develop for, what should every programmer know?</p>
<p>Some background:</p>
<p>I'm interested in becoming the best programmer I can. As part of this process I'm trying to understand what I don't know and would benefit me a lot if I did. While there are loads of lists around along the lines of "n things every [insert programming language] developer should know", I have yet to find anything similar which isn't limited to a specific language.</p>
<p>I also expect this information to be of interest and benefit to others.</p>
http://stackoverflow.com/questions/47898/good-practice-projects-to-improve-programming-skills16Good Practice Projects to Improve Programming Skillskronoz2008-09-06T22:39:35Z2009-12-18T11:59:02Z
<p>What are the best toy projects to improve generalised programming skills? I'm talking small programs that you build from scratch and play with yourself to develop skills in a given area or areas. For example, you might put together a very simple notepad-type application, or a simple calculator program.</p>
<p>For example, what is the best project to:-</p>
<ul>
<li>Develop architectural skills</li>
<li>Develop algorithmic skills</li>
<li>Develop object orientation skills</li>
<li>etc. etc.</li>
</ul>
http://stackoverflow.com/questions/1703791/embedded-linux-reading-list2Embedded Linux Reading Listwaffleman2009-11-09T21:00:30Z2009-12-18T11:45:00Z
<p>I have some experience developing on Linux systems and am looking to get my hands really dirty with Embedded Linux soon. </p>
<p>What would be a good list of books someone could read to get a good grasp on Embedded Linux systems? <a href="http://oreilly.com/catalog/9780596002220" rel="nofollow">Building Embedded Linux Systems</a> seems to be a good starting point. Are there certain books or chapters of books that would be relevant? For example would it be worth it to read the entire book <a href="http://oreilly.com/catalog/9780596005658/" rel="nofollow">Understanding the Linux Kernel</a> or could someone focus on a few chapters? What about book of specific topics like GUI, power saving and architecture?</p>
http://stackoverflow.com/questions/1305672/what-is-the-1-best-example-of-technical-documentation-that-you-have-ever-seen-w5What is the #1 best example of Technical Documentation that you have ever seen? What was it that made it so effective for you?Jon Winstanley2009-08-20T11:56:57Z2009-12-18T10:31:01Z
<p>I am of the opinion that the <strong>quality of the documentation of a language</strong> <em>(programming language, API, Harware/Technical specification etc)</em> has a direct correlation with the long-term popularity of that language.</p>
<p>Good documentation can not only provide an <em>'all-in-one desk reference'</em>-type resource for developers but also help to build a community of interested parties around a language. A community which in the future can help to shape and mould the language.</p>
<p>I feel that good documentation must also give a good first impression to someone wishing to start out with the new language and describe in detail how to get started and what issues they may come across in those early stages.</p>
<p>In the hope that language specifications can be improved in the future by this list, I would like to know:</p>
<p><strong>What are the best examples of technical documentation that you have ever seen?</strong></p>
<p><strong>...and, in your opinion, what is it that makes that documentation so good?</strong></p>
http://stackoverflow.com/questions/1927004/does-a-process-like-cmmi-really-helps-a-project1Does a process like CMMI really helps a projectA9S62009-12-18T08:26:19Z2009-12-18T10:12:06Z
<p>What do you think is the advantage of processes like CMMI in a project. When I go into a CMMI meeting I feel like I wasted a couple of hours because I don't see any value in filling all those project related documents that I know will never be reviewed again by anyone. I have updated hundreds of CMMI related documents in the last 2 years but never went back to check anything.</p>
<p>Having said that, I am not against preparing project related documents. When I start a project of my own(not company related), I prepare the relevant documents as required (sort of SRS, project related details etc). A issue tracking system(like unfuddle) is what I use the most along with a document management system (Google Docs). I use the Issue Tracking System to manage all the requirements, issues and new features and it works out very well for me. Google Docs is used to keep project related information along with architecture diagrams, demo videos etc.</p>
<p>I have not done (or seen in my company) even a single project that was effectively tracked using the Project Plan. It looks so unrealistic to specify time for each task and then track it on a daily basis.</p>
<p>Has anyone done <em>effective</em> project management using tools available in CMMI?</p>
http://stackoverflow.com/questions/1891926/would-you-feel-offended-or-upset-if-another-developer-ran-a-code-beautifier-on-th6Would you feel offended or upset if another developer ran a code beautifier on the code base?esac2009-12-12T01:42:58Z2009-12-18T09:55:24Z
<p>I am working on a project which other developers work on. I would like the code to be standardized. I don't necessarily care what standard it is (K&R, GNU, 2 lines max, 1 line max, spacing between commas, etc..) just that it is consistent.</p>
<p>I was thinking, that as a separate checkin, I could run a beautifier on the source code.</p>
<p>What do you think? As a developer who works on code with other people, if somebody else decided to run a beautifier on code you work with, would you be upset?</p>
<p>This is code that has been written by a lot of developers over the past few years, some of them gone, some not.</p>
<p>Obviously, I would approach everyone with this idea first, but I am curious what SO thinks.</p>
<p>EDIT: I would most likely look to do this at a milestone or after a release.</p>