User Chris - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T10:31:31Z http://stackoverflow.com/feeds/user/2134 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20981/how-many-lines-of-code-is-too-many 24 How many lines of code is too many? Chris 2008-08-21T19:56:58Z 2009-10-23T07:14:58Z <blockquote> <p>see also <a href="http://stackoverflow.com/questions/1293548/how-many-lines-should-a-method-typically-have/1293616#1293616">"How many lines should a method typically have?"</a></p> </blockquote> <p>One thing that occasionally drives me crazy is reading another person's functions that span 5 vertical monitor lengths, or .cpp files that are over 2000 lines long. For readability, wouldn't it be better to break a 1000 line function into many smaller sub-functions called by one function? Shouldn't a class implementation not span an inordinately huge number of lines? When should you start breaking functionality up into sub-classes or utility classes?</p> <p>Is it unreasonable for me to be so put off by excessively large files/functions? And, if I am not in the wrong, how should I approach a colleague to convince them to refactor their code?</p> <p><strong>Edit:</strong> There are allot of good answers to this question, and I should read up on the <a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete</a> chapter. As for convincing my colleague(s), it seems like a bit too expensive to get them to refactor existing production code, but I'd settle for all their future code being well refactored.</p> http://stackoverflow.com/questions/25620/is-a-masters-degree-overkill 26 Is a masters degree overkill? Chris 2008-08-25T03:28:48Z 2009-09-25T01:58:17Z <p>After reading the responses to Is a <a href="http://beta.stackoverflow.com/questions/25403/is-a-collegeuniversity-degree-still-relevant" rel="nofollow">College/University Degree Still Relevant?</a>, I'd then ask, once you complete a university technology degree, would pursuing a masters in the field be worth it? Or is the experience you would gain working for those two years be more valuable? Or is a masters degree something that is more valuable after one has a few years of real-world experience after their undergrad? And what career doors would a masters open, and which would they possibly close?</p> <p>Keeping in mind this discussion on <a href="http://beta.stackoverflow.com/questions/7301/higher-pay-for-advanced-degrees" rel="nofollow">higher pay for advanced degrees</a>, I'd rate whether a masters is worthwhile by both the pay one would get, but also more importantly, how enjoyable the job would be, and the types available (research only? development? management?).</p> http://stackoverflow.com/questions/18642/what-is-the-most-unreadable-programming-language 7 What is the most unreadable programming language? Chris 2008-08-20T19:30:57Z 2009-09-16T22:20:26Z <p>Excluding <a href="http://en.wikipedia.org/wiki/Whitespace_%28programming_language%29" rel="nofollow">Whitespace</a>, <a href="http://en.wikipedia.org/wiki/Brainfuck" rel="nofollow">BrainF*ck</a> (and all those other languages not designed for practical usage), and assembly, what do you think is the most difficult real programming language to write readable code in, and why?</p> <p>I find that I'm very comfortable reading code with C/C++ style braces and brackets. I can easily scan a file for method and class definitions, however in a language which does not use braces I find it extremely hard to read, eg: BASIC variants, specifically Visual Basic.</p> http://stackoverflow.com/questions/18803/is-uml-practical 23 Is UML practical? Chris 2008-08-20T20:53:05Z 2009-08-09T10:17:40Z <p>In college I've had numerous design and <a href="http://en.wikipedia.org/wiki/Unified_Modeling_Language" rel="nofollow">UML</a> oriented courses, and I recognize that UML can be used to benefit a software project, especially <a href="http://en.wikipedia.org/wiki/Use_case" rel="nofollow">use-case</a> mapping, but is it really practical? I've done a few co-op work terms, and it appears that UML is not used heavily in the industry. Is it worth the time during a project to create UML diagrams? Also, I find that class diagrams are generally not useful, because it's just faster to look at the header file for a class. Specifically which diagrams are the most useful?</p> <p><strong>Edit:</strong> My experience is limited to small, under 10 developer projects.</p> <p><strong>Edit:</strong> Many good answers, and though not the most verbose, I belive the one selected is the most balanced.</p> http://stackoverflow.com/questions/659356/latex-spell-checking-for-software-documentation 1 LaTeX spell checking for software documentation Chris 2009-03-18T17:37:53Z 2009-03-18T19:09:28Z <p>My development team has to perform a large documentation effort on a piece of software we've constructed. To do this concurrently we've elected to make the document using LaTeX, and to store the tex files in Subverison. This looks like it will work great.</p> <p>We've come across one problem though: What tool(s) should we use to perform spelling and grammar checks on our document?</p> <p>Some I've tried choke on the LaTeX commands. We also need spelling/grammar checkers that work on both/either Windows and Linux. Bonus points for a spelling/grammar checker that we can executive via commandline so we can put it into an ant-script and automate our document build environment.</p> http://stackoverflow.com/questions/404141/how-do-i-format-and-read-xml-processing-instructions-using-java-stax 1 How do I format and read XML processing instructions using Java StAX? Chris 2008-12-31T22:11:10Z 2009-02-10T20:43:25Z <p>First, how do I format the XML processing instruction, is it:</p> <pre><code>&lt;?processingInstructionName attribute="value" attribute2="value2"?&gt; </code></pre> <p>Using StAX, I then want to read it by handling the <code>XMLStreamConstants.PROCESSING_INSTRUCTION</code> (<a href="http://java.sun.com/javase/6/docs/api/javax/xml/stream/XMLStreamConstants.html#PROCESSING_INSTRUCTION" rel="nofollow">javadoc</a>) event, but it only provides two methods to then retrieve information about the processing instruction from the <code>XMLStreamReader</code>:</p> <pre><code>getPITarget() getPIData() </code></pre> <p>The <a href="http://java.sun.com/javase/6/docs/api/javax/xml/stream/XMLStreamReader.html#getPIData()" rel="nofollow">javadoc</a> for these two methods isn't very helpful.</p> <ol> <li>Is the XML formatting correct?</li> <li>Is this the proper way to go about parsing processing instructions using the StAX <code>XMLStreamReader</code> APIs?</li> <li>How do I use <code>getPITarget()</code> and <code>getPIData()</code> to return multiple arguments?</li> </ol> http://stackoverflow.com/questions/404196/ethics-of-assisting-other-programmers-where-do-we-draw-the-line 15 Ethics of assisting other programmers, where do we draw the line? Chris 2008-12-31T22:45:29Z 2009-01-01T05:48:16Z <p>In general, not just in relation to stackoverflow, sometimes I'm asked a programming question for which the answer will probably be used for good purposes, but there is a chance that it could not be.</p> <p>Two recent examples which reminded me of some real world questions I've been asked are:</p> <ol> <li><a href="http://stackoverflow.com/questions/404085/send-email-to-many-users-closed">Send email to many users</a>, and</li> <li><a href="http://stackoverflow.com/questions/390789/keep-a-formless-application-from-closing-for-a-keyboard-hook">keep a formless application from closing for a keyboard hook</a></li> </ol> <p>Though I don't believe the intent of the authors of those questions is in any way nefarious, occasionally someone does ask such a question for purposes of aiding a spamming effort, or creating a keylogger. Even though the questioner and answerers had good intent, a 3rd party could pervert those answers to create a piece of malware or a spam utility.</p> <p>Should we always trust the questioner to use the answer for good? Should we feel obligated to ask the purpose of a question, and how the answer will be used? And how can we prevent answers from being overheard (when asked verbally) or being referenced (when posted publicly online) and then used for unsavory purposes?</p> http://stackoverflow.com/questions/310418/good-resources-for-learning-how-to-create-msi-installers-from-wix/395971#395971 2 Answer by Chris for Good resources for learning how to create MSI installers from WiX Chris 2008-12-28T08:17:06Z 2008-12-28T08:17:06Z <p>One of the best ways I found to learn WiX was to take an existing MSI that did something I wanted to do, and used the <a href="http://wix.sourceforge.net/manual-wix3/dark.htm" rel="nofollow">Dark</a> decompiler to generate a WiX script from it, and then I read that.</p> http://stackoverflow.com/questions/20788/what-tools-do-you-use-for-static-code-analysis 8 What tools do you use for static code analysis? Chris 2008-08-21T18:58:51Z 2008-12-27T21:02:11Z <p><a href="http://beta.stackoverflow.com/questions/20702/whats-youra-good-limit-for-cyclomatic-complexity" rel="nofollow">This question</a> on <a href="http://en.wikipedia.org/wiki/Cyclomatic_complexity" rel="nofollow">Cyclomatic Complexity</a> made me think more about <a href="http://en.wikipedia.org/wiki/Static_code_analysis" rel="nofollow">static code analysis</a>. Analyzing code complexity and consistency is occasionally useful, and I'd like to start doing it more. What tools do you recommend (per language) for such analysis? <a href="http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis" rel="nofollow">Wikipedia</a> has a large list of tools, but which ones have people tried before?</p> <p><strong>Edit:</strong> As David points out, this is not a completely unasked question when it comes to <a href="http://beta.stackoverflow.com/questions/2873/choosing-a-static-code-analysis-tool" rel="nofollow">C/UNIX based tools</a>.</p> http://stackoverflow.com/questions/353038/endthreadex0-hangs/353234#353234 1 Answer by Chris for _endthreadex(0) hangs Chris 2008-12-09T15:54:22Z 2008-12-09T15:54:22Z <p>Are you mistakenly calling <a href="http://msdn.microsoft.com/en-us/library/hw264s73(VS.80).aspx" rel="nofollow">_endthreadex()</a> to attempt to end a thread from the main thread?</p> <p>The function <a href="http://msdn.microsoft.com/en-us/library/hw264s73(VS.80).aspx" rel="nofollow">_endthreadex()</a> is meant to be called inside the thread that you want to terminate to report a return value, and for the proper "recovery of resources allocated for the thread." You shouldn't need to call it in a destructor from the main thread. You could, in a destructor, signal to the thread via an event (see <a href="http://msdn.microsoft.com/en-us/library/ms686211(VS.85).aspx" rel="nofollow">SetEvent</a>, called from the main thread) that the thread should exit as soon as possible, and then the thread that is exiting as its last statement would call <a href="http://msdn.microsoft.com/en-us/library/hw264s73(VS.80).aspx" rel="nofollow">_endthreadex()</a>.</p> <p>Calling <a href="http://msdn.microsoft.com/en-us/library/hw264s73(VS.80).aspx" rel="nofollow">_endthreadex()</a> in your main thread would cause the process to hang, because you've terminated your main thread, but you would still have the original thread you wanted to terminate still running.</p> http://stackoverflow.com/questions/25277/can-you-perform-an-and-search-of-keywords-using-freetext-on-sql-server-2005 3 Can you perform an AND search of keywords using FREETEXT() on SQL Server 2005? Chris 2008-08-24T18:47:16Z 2008-11-17T21:49:56Z <p>There is a <a href="http://stackoverflow.uservoice.com/pages/general/suggestions/16644" rel="nofollow">request</a> to make the SO search default to an AND style functionality over the current OR when multiple terms are used.</p> <p>The official response was:</p> <blockquote> <p>not as simple as it sounds; we use SQL Server 2005's <a href="http://msdn.microsoft.com/en-us/library/ms176078%28SQL.90%29.aspx" rel="nofollow">FREETEXT()</a> function, and I can't find a way to specify AND vs. OR -- can you?</p> </blockquote> <p>So, is there a way?</p> <p>There are a <a href="http://msdn.microsoft.com/en-us/library/ms142519%28SQL.90%29.aspx" rel="nofollow">number of resources</a> on it I can find, but I am not an expert.</p> http://stackoverflow.com/questions/138334/starting-to-learn-windbg/138832#138832 10 Answer by Chris for Starting to learn Windbg Chris 2008-09-26T11:17:50Z 2008-09-26T11:23:34Z <p>For a book, try</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0321374460" rel="nofollow">Advanced Windows Debugging (Addison-Wesley Microsoft Technology Series)</a></p> <p><img src="http://knowfree.net/wp-content/uploads/2008/02/032137446001l.jpg" alt="Advanced Windows Debugging" /></p> <p>Also, for a great reference sheet, see</p> <p><a href="http://www.software.rkuster.com/windbg/cmd.htm" rel="nofollow">Common WinDbg Commands (Thematically Grouped)</a> by Robert Kuster.</p> http://stackoverflow.com/questions/138616/how-to-add-custom-item-to-system-menu-in-c/138657#138657 1 Answer by Chris for How to add custom item to system menu in C++? Chris 2008-09-26T10:34:37Z 2008-09-26T10:34:37Z <p>Once you have another window's top level handle, you may be able to call <a href="http://msdn.microsoft.com/en-us/library/ms647640(VS.85).aspx" rel="nofollow">GetMenu()</a> to retrieve the Window's system menu and then modify it, eg:</p> <pre><code>HMENU hMenu = GetMenu(hwndNext); </code></pre> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/23161#23161 70 Answer by Chris for Computer Language puns and jokes Chris 2008-08-22T18:45:14Z 2008-09-21T19:50:53Z <p>See <a href="http://www.xkcd.com/" rel="nofollow">XKCD</a>, because of gems like these:</p> <p><img src="http://imgs.xkcd.com/comics/pointers.png" alt="XKCD" /></p> <p><img src="http://imgs.xkcd.com/comics/bug.png" alt="link text" /></p> <p>(And for those who like <a href="http://xkcd.com/327/" rel="nofollow">SQL</a>)</p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/107371#107371 6 Answer by Chris for What was your first home computer? Chris 2008-09-20T06:25:31Z 2008-09-20T06:25:31Z <p>The <a href="http://en.wikipedia.org/wiki/IBM_PS/2" rel="nofollow">IBM PS/2</a> owned by my parents (still working to this day).</p> <p><img src="http://www-g.eng.cam.ac.uk/workshops/images/mc_pc1.jpg" alt="IBM PS/2 model 30" /></p> http://stackoverflow.com/questions/107059/how-much-mathematics-and-physics-should-a-programmer-know/107074#107074 11 Answer by Chris for How much mathematics and physics should a programmer know? Chris 2008-09-20T04:15:39Z 2008-09-20T04:37:18Z <p><strong>Mathematics</strong></p> <ul> <li><a href="http://en.wikipedia.org/wiki/Discrete_mathematics" rel="nofollow">Discrete mathematics</a> - the basics of computer science</li> <li><a href="http://en.wikipedia.org/wiki/Statistics" rel="nofollow">Statistics</a> - the workhorse of data analysis and interpretation</li> <li><a href="http://en.wikipedia.org/wiki/Linear_algebra" rel="nofollow">Linear algebra</a> - Vector spaces, <a href="http://en.wikipedia.org/wiki/Analytic_geometry" rel="nofollow">analytic geometry</a></li> <li><a href="http://en.wikipedia.org/wiki/Queueing_theory" rel="nofollow">Queueing theory</a> - The study of queues, and queueing systems (think servers)</li> <li><a href="http://en.wikipedia.org/wiki/Numerical_analysis" rel="nofollow">Numerical analysis</a> - Eg: systems of equations, used in many algorithms for problem solving</li> </ul> <p><strong>Physics</strong></p> <ul> <li><a href="http://en.wikipedia.org/wiki/Quantum_mechanics" rel="nofollow">Quantum mechanics</a> - A possible future of computing, and applicable to fiber optics</li> </ul> http://stackoverflow.com/questions/95361/visual-studio-2005-rc-file-includes/95669#95669 2 Answer by Chris for Visual Studio 2005. RC File includes Chris 2008-09-18T18:55:09Z 2008-09-18T18:55:09Z <p>You want to <a href="http://msdn.microsoft.com/en-us/library/6e7446zd(VS.80).aspx" rel="nofollow">Include Resources at Compile Time</a> (MSDN).</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82648#82648 3 Answer by Chris for What's Your Motto As A Developer/Programmer? Chris 2008-09-17T12:36:54Z 2008-09-17T12:36:54Z <p>A test that succeeds when it is intended to fail is far more worrisome than when it is intended to succeed.</p> http://stackoverflow.com/questions/70983/have-there-ever-been-any-studies-relating-productivity-to-coding-conventions/71003#71003 2 Answer by Chris for Have there ever been any studies relating productivity to coding conventions? Chris 2008-09-16T10:22:57Z 2008-09-16T10:22:57Z <p>IEEE: <a href="http://ieeexplore.ieee.org/Xplore/login.jsp?url=/iel5/10974/34591/01649593.pdf?tp=&amp;isnumber=&amp;arnumber=1649593" rel="nofollow">Productivity and Code Quality Improvement of Mixed-Signal Test Software by applying Software Engineering Methods</a></p> http://stackoverflow.com/questions/70846/developers-bill-of-rights/70874#70874 25 Answer by Chris for Developers' Bill Of Rights Chris 2008-09-16T09:59:40Z 2008-09-16T10:05:47Z <p>See:</p> <ul> <li><a href="http://www.codinghorror.com/blog/archives/000666.html" rel="nofollow">Coding Horror: The Programmer's Bill of Rights</a></li> <li><a href="http://www.igda.org/articles/ezimmerman_bill.php" rel="nofollow">IGDA: A Game Developers' Bill of Rights</a></li> <li><a href="http://www.spoiledtechie.com/post/My-Bill-of-Rights-as-a-Programmer.aspx" rel="nofollow">Spoiled Techie: My Bill of Rights as a Programmer</a></li> <li><a href="http://c2.com/cgi/wiki?DeveloperBillOfRights" rel="nofollow">C2: Developer Bill Of Rights</a></li> <li><a href="http://articles.techrepublic.com.com/5100-10878_11-5121760.html" rel="nofollow">Builder Australia: Extreme Programming 'Bill of Rights'</a></li> </ul> <p>Also, an expansion of Jeff Atwood's post: <a href="http://blog.interlinked.org/programming/bill_of_rights.html" rel="nofollow">IMHO The Programmer's Bill of Rights</a>.</p> <p>Additionally, in response, <a href="http://c2.com/cgi/wiki?DeveloperBillOfResponsibilities" rel="nofollow">C2: Developer Bill Of Responsibilities</a>.</p> http://stackoverflow.com/questions/70124/how-do-you-find-your-way-around-a-new-codebase/70206#70206 2 Answer by Chris for How do you find your way around a new codebase Chris 2008-09-16T07:53:48Z 2008-09-16T07:53:48Z <p>Run an API documentation tool like <a href="http://java.sun.com/j2se/javadoc/" rel="nofollow">Javadoc</a> or <a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">Doxygen</a> on it, and with that in hand start by choosing a feature of the application, and trace the path of execution. This generally exposes the mechanisms the author put in place to accomplish various tasks, e.g. the commonly used utility classes/methods. This also exposes the level of coupling present between components/classes, various patterns used, etc.</p> <p>You don't truly know how it works till you've traced it's execution a few times.</p> http://stackoverflow.com/questions/61785/how-do-i-get-rid-of-a-hard-disk-without-exposing-my-source-code/61837#61837 4 Answer by Chris for How do I get rid of a hard disk without exposing my source code? Chris 2008-09-15T03:48:55Z 2008-09-15T03:48:55Z <p>If you want to ensure the data on the harddrive is unrecoverble, I'd look into the method employed by <a href="http://16systems.com/zero/index.html" rel="nofollow">The Great Zero Challenge</a>:</p> <blockquote> <p>We used the 32 year-old Unix <a href="http://en.wikipedia.org/wiki/Dd_%28Unix%29" rel="nofollow">dd</a> command using <a href="http://en.wikipedia.org/wiki//dev/zero" rel="nofollow">/dev/zero</a> as input to <a href="http://16systems.com/zero/pics/dd.jpg" rel="nofollow">overwrite</a> the drive. Three data recover companies were contacted. All three are listed on <a href="http://www.google.com/search?hl=en&amp;q=data+recovery&amp;btnG=Google+Search" rel="nofollow">this page</a>. Two companies declined to review the drive immediately upon hearing the phrase 'dd', the third declined to review the drive after we spoke to second level phone support and they asked if the dd command had actually completed (good question).</p> </blockquote> <p>(Recently <a href="http://hardware.slashdot.org/article.pl?sid=08/09/06/189248" rel="nofollow">reported</a> on Slashdot).</p> http://stackoverflow.com/questions/61775/replacing-virtual-pc-server-with-vmware-fusion-server-for-development-environment/61818#61818 1 Answer by Chris for Replacing Virtual PC/Server with VMWare Fusion/Server for Development Environments Chris 2008-09-15T03:05:25Z 2008-09-15T03:05:25Z <p>VMWare server is free, but only allows for one snapshot, a serious deficiency. VMWare Workstation allows multiple snapshots and can perform most of the same functionality.</p> http://stackoverflow.com/questions/28946/expanding-virtual-disk/28963#28963 1 Answer by Chris for Expanding Virtual Disk Chris 2008-08-26T19:50:44Z 2008-08-26T19:50:44Z <p><a href="http://vmtoolkit.com/files/folders/converters/entry87.aspx" rel="nofollow">VHD Resizer</a></p> http://stackoverflow.com/questions/13939/are-old-editions-of-computer-books-worthwhile/28401#28401 2 Answer by Chris for Are old editions of computer books worthwhile? Chris 2008-08-26T15:36:44Z 2008-08-26T15:36:44Z <p>There are a number of reasons to save an old, and possibly out of date book:</p> <p><strong>Historical significance</strong></p> <ul> <li>I still have my father's old Fortran textbook from the 80's, very enlightening book on older teaching methodologies and on the evolution of the Fortran language;</li> <li>I have a few older textbooks on numerical methods and various older software engineering concepts which I'd like to get around to reading.</li> </ul> <p><strong>The language/technology isn't dead yet</strong></p> <ul> <li>Languages/technologies die hard (eg: <a href="http://en.wikipedia.org/wiki/COBOL" rel="nofollow">COBOL</a> programmers, <a href="http://weblog.infoworld.com/fatalexception/archives/2008/08/californias_leg.html" rel="nofollow">California needs you</a>).</li> </ul> http://stackoverflow.com/questions/28098/php-tostring-equivalent/28108#28108 6 Answer by Chris for PHP ToString() equivalent Chris 2008-08-26T14:00:48Z 2008-08-26T14:06:07Z <blockquote> <p>How do I convert the value of a PHP variable to string?</p> </blockquote> <p>A value can be converted to a string using the <a href="http://us3.php.net/manual/en/language.types.string.php#language.types.string.casting" rel="nofollow">(string) cast</a> or the <a href="http://ca.php.net/strval" rel="nofollow">strval()</a> function. (Edit: As <a href="http://beta.stackoverflow.com/users/2314/thomas-g-mayfield" rel="nofollow">Thomas</a> also stated).</p> <p>It also should be automatically casted for you when you use it as a string.</p> http://stackoverflow.com/questions/28042/what-has-motivated-you-to-commit-to-open-source/28063#28063 4 Answer by Chris for What has motivated you to commit to open source? Chris 2008-08-26T13:43:06Z 2008-08-26T13:43:06Z <p>If you want to start more casually, start adding more open-source software into your daily usage, find things in them that you believe could use enhancement or fixing, then download the source, fix them, and submit a patch.</p> http://stackoverflow.com/questions/27942/is-it-worth-it-to-learn-a-dialect-of-assembly/27991#27991 1 Answer by Chris for Is it worth it to learn a dialect of assembly? Chris 2008-08-26T13:14:08Z 2008-08-26T13:14:08Z <p>If you are writing unmanaged C++, it is occasionally invaluable to know at least basic x86 assembly, binary number systems, etc. I primarily do C/C++ development, and I occasionally need to debug production code for errors that are so specific to the machine-code representation produced by the compiler that the only way to find, and then fix the bug is to read the decompiled assembly and ascertain why the compiler generated it as such.</p> <p>For more information on assembly, see the question: <a href="http://beta.stackoverflow.com/questions/25636/what-is-the-best-way-to-learn-assembly-specifically-for-someone-who-has-experie" rel="nofollow">What is the best way to learn Assembly? Specifically, for someone who has experience in dynamic languages</a>.</p> http://stackoverflow.com/questions/26509/what-workshops-user-groups-conventions-do-you-attend/26568#26568 2 Answer by Chris for What workshops / user groups / conventions do you attend? Chris 2008-08-25T18:19:27Z 2008-08-25T18:19:27Z <p>For conventions, if you're still in university, and can make it to Montreal, Canada, the <a href="http://www.cusec.net/" rel="nofollow">Canadian Undergraduate Software Engineering Conference</a> (CUSEC) has been extremely enjoyable. See the <a href="http://2009.cusec.net/" rel="nofollow">2009</a> site for the next event, and for a take on what previous years have been like, take a look at the <a href="http://2008.cusec.net/en/speakers.php" rel="nofollow">2008 speakers</a> (note: it included <a href="http://beta.stackoverflow.com/users/1/jeff-atwood" rel="nofollow">Jeff Atwood</a>).</p> <p>I attend CUSEC primarily because our software engineering society on campus makes a point of organizing a trip to it, but also because of the speakers that present there, and the career fair.</p> http://stackoverflow.com/questions/26280/favorite-web-host/26290#26290 1 Answer by Chris for Favorite web host. Chris 2008-08-25T15:49:53Z 2008-08-25T15:49:53Z <p>I'd recommend finding a good local host in your area. Nothing beats being able to deal with your host face-to-face when issues such as DMCA takedown notices or other legal issues arise.</p> http://stackoverflow.com/questions/1287311/multiple-git-repo-in-one-project/1287322#1287322 Comment by Chris on Multiple git repo in one project Chris 2009-08-17T16:57:04Z 2009-08-17T16:57:04Z It looks like submodules only represent a specific commit number of another repo, and they require a submodule push before pushing the super project to show all changes. Can anyone confirm these limitations? http://stackoverflow.com/questions/24451/goto-usage/25616#25616 Comment by Chris on 'goto' usage Chris 2008-12-08T20:12:23Z 2008-12-08T20:12:23Z Very true, the first time I saw this usage I was quite confused, until I saw the bottom. It's best to place a comment at the top explaining it. http://stackoverflow.com/questions/146963/should-i-be-extending-this-class-php Comment by Chris on Should I be extending this class? (PHP) Chris 2008-09-29T06:51:16Z 2008-09-29T06:51:16Z Added 'language-agnostic' because although the question references PHP, it's more of an OOP question. http://stackoverflow.com/questions/147444/minimum-development-computer-requirements Comment by Chris on Minimum development computer requirements? Chris 2008-09-29T03:58:06Z 2008-09-29T03:58:06Z The answer to this would depend on what kind of development you're doing (especially OS), whether or not you are using VMs, etc. http://stackoverflow.com/questions/118919/what-is-the-strangest-weirdest-program-youve-ever-made/118944#118944 Comment by Chris on What is the strangest/weirdest program you've ever made? Chris 2008-09-23T04:19:35Z 2008-09-23T04:19:35Z Excel 97 <i>shudder</i> http://stackoverflow.com/questions/107184/how-would-one-code-test-and-set-behavior-without-a-special-hardware-instruction/107235#107235 Comment by Chris on How would one code test and set behavior without a special hardware instruction? Chris 2008-09-20T06:38:41Z 2008-09-20T06:38:41Z <a href="http://www.dis.uniroma1.it/~baldoni/p569-dijkstra.pdf" rel="nofollow">dis.uniroma1.it/~baldoni/p569-dijkstra.pdf/&hellip;</a> http://stackoverflow.com/questions/107165/big-o-for-eight-year-olds Comment by Chris on Big-O for Eight Year Olds? Chris 2008-09-20T06:19:38Z 2008-09-20T06:19:38Z Wouldn't the title be better phrased as say, 'What is a simple explanation of Big-O?', etc. http://stackoverflow.com/questions/101782/the-best-way-to-start-working-on-other-peoples-code Comment by Chris on The best way to start working on other people's code Chris 2008-09-19T14:10:35Z 2008-09-19T14:10:35Z Also, see the 'How do you find your way around a new codebase' question: <a href="http://stackoverflow.com/questions/70124/how-do-you-find-your-way-around-a-new-codebase" rel="nofollow" title="how do you find your way around a new codebase">stackoverflow.com/questions/70124/&hellip;</a> http://stackoverflow.com/questions/101822/is-xhtml-compliance-pointless Comment by Chris on Is XHTML compliance pointless? Chris 2008-09-19T13:41:43Z 2008-09-19T13:41:43Z Also see the 'HTML version choice' question: <a href="http://stackoverflow.com/questions/3654/html-version-choice" rel="nofollow" title="html version choice">stackoverflow.com/questions/3654/&hellip;</a> http://stackoverflow.com/questions/95850/how-to-find-commit-charge-programmatically Comment by Chris on How to find Commit Charge programmatically? Chris 2008-09-18T19:17:18Z 2008-09-18T19:17:18Z Commit charge as in <a href="http://en.wikipedia.org/wiki/Commit_charge" rel="nofollow">en.wikipedia.org/wiki/Commit_charge</a> http://stackoverflow.com/questions/71271/how-do-you-motivate-the-80 Comment by Chris on How do you motivate the 80% Chris 2008-09-16T11:29:53Z 2008-09-16T11:29:53Z Motivate who, developers? managers? To do what, design? code? communicate? What are the conditions, what development style/process is being used? Or is there a need for one? http://stackoverflow.com/questions/70614/gnu-screen-survival-guide Comment by Chris on GNU Screen Survival Guide Chris 2008-09-16T09:50:46Z 2008-09-16T09:50:46Z There are some good answers to this also in here: <a href="http://stackoverflow.com/questions/70661/what-is-gnu-screen" rel="nofollow" title="what is gnu screen">stackoverflow.com/questions/70661/&hellip;</a>