User David Thornley - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:00:50Z http://stackoverflow.com/feeds/user/14148 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1800377/is-it-bad-practice-to-change-state-inside-of-an-if-statement/1800448#1800448 0 Answer by David Thornley for Is it bad practice to change state inside of an if statement? David Thornley 2009-11-25T22:44:31Z 2009-11-25T22:44:31Z <p>Ideally, each piece of code should do one thing. Making it do more than one thing is potentially confusing, and confusing is exactly what you don't want in your code.</p> <p>The code in the condition of an if statement is supposed to generate a boolean value. Tasking it with assigning a value is making it do two things, which is generally bad.</p> <p>Moreover, people expect conditions to be just conditions, and they often glance over them when they're getting an impression of what the code is doing. They don't carefully parse everything until they decide they need to.</p> <p>Stick that in code I'm reviewing and I'll flag it as a defect.</p> http://stackoverflow.com/questions/1799887/converting-natural-language-to-haiku/1800279#1800279 1 Answer by David Thornley for converting natural language to haiku? David Thornley 2009-11-25T22:09:36Z 2009-11-25T22:09:36Z <p>Must count syllables</p> <p>Need nature references</p> <p>Haiku's not easy</p> http://stackoverflow.com/questions/1784901/can-coordinates-of-constructable-points-be-represented-exactly/1799092#1799092 0 Answer by David Thornley for Can coordinates of constructable points be represented exactly? David Thornley 2009-11-25T18:41:38Z 2009-11-25T18:41:38Z <p>Some thoughts in the hope that they might help.</p> <p>The sort of constructions you're talking about will require multiplication and division, which means that to preserve exactness you'll have to use rational numbers, which are generally easy to implement on top of a suitable sort of big integer (i.e., of unbounded magnitude). (Common Lisp has these built-in, and there have to be other languages.)</p> <p>Now, you need to represent square roots of arbitrary numbers, and these have to be mixed in. </p> <p>Therefore, a number is one of: a rational number, a rational number multiplied by a square root of a rational number (or, alternately, just the square root of a rational), or a sum of numbers. In order to prove anything, you're going to have to get these numbers into some sort of canonical form, which for all I can figure offhand may be annoying and computationally expensive.</p> <p>This of course means that the users will be restricted to rational points and cannot use arbitrary rotations, but that's probably not important.</p> http://stackoverflow.com/questions/1798538/looking-for-some-refactoring-advice/1798949#1798949 1 Answer by David Thornley for Looking for some refactoring advice David Thornley 2009-11-25T18:19:42Z 2009-11-25T18:19:42Z <p>I don't know how the callers are going to be using this, but allocating buffers using <code>new</code> into a <code>auto_ptr&lt;&gt;</code>s might work. It may satisfy criterion 1 (I can't tell without seeing the using code), and could be a pretty fast fix. The big issue is that it uses dynamic memory a lot, and that will slow things down. There's things you can do, using placement new and the like, but that may not be quick to code.</p> <p>If you can't use dynamic storage, you're limited to non-dynamic storage, and there really isn't much you can do without using a rotating pool of buffers or thread-local buffers or something like that.</p> http://stackoverflow.com/questions/1798631/c-vector-of-class-object-pointers/1798822#1798822 0 Answer by David Thornley for c++ vector of class object pointers David Thornley 2009-11-25T18:01:00Z 2009-11-25T18:01:00Z <p>First, as everybody else points out, you can't allocate objects on the stack (i.e., other than by <code>new</code> or something similar), and have them around after leaving the scope.</p> <p>Second, having objects in an STL container and maintaining pointers to them is tricky, since containers can move things around. It's usually a bad idea.</p> <p>Third, <code>auto_ptr&lt;&gt;</code> simply doesn't work in STL containers, since auto_ptrs can't be copied.</p> <p>Pointers to independently allocated objects work, but deleting them at the right time is tricky.</p> <p>What will probably work best is <code>shared_ptr&lt;&gt;</code>. Make each vector a <code>vector&lt;shared_ptr&lt;AbsorbMesh&gt; &gt;</code>, allocate through <code>new</code>, and at a slight cost in performance you avoid a whole lot of hassle.</p> http://stackoverflow.com/questions/1798729/c-message-passing-doubts/1798762#1798762 0 Answer by David Thornley for C++ message passing doubts David Thornley 2009-11-25T17:53:42Z 2009-11-25T17:53:42Z <p>Consider using <code>shared_ptr&lt;&gt;</code>, available from Boost and also part of the <code>std::tr1</code> library, rather than raw pointers. It's not the best thing to use in all cases, but it looks like you want to keep things simple and it's very good at that. It's local reference-count garbage collection.</p> http://stackoverflow.com/questions/1798511/how-to-avoid-press-enter-with-any-getchar/1798614#1798614 3 Answer by David Thornley for How to avoid press enter with any getchar() David Thornley 2009-11-25T17:32:56Z 2009-11-25T17:32:56Z <p>I/O is an operating system function. In many cases, the operating system won't pass typed character to a program until ENTER is pressed. This allows the user to modify the input (such as backspacing and retyping) before sending it to the program. For most purposes, this works well, presents a consistent interface to the user, and relieves the program from having to deal with this. In some cases, it's desirable for a program to get characters from keys as they are pressed.</p> <p>The C library itself deals with files, and doesn't concern itself with how data gets into the input file. Therefore, there's no way in the language itself to get keys as they are pressed; instead, this is platform-specific. Since you haven't specified OS or compiler, we can't look it up for you.</p> <p>Also, the standard output is normally buffered for efficiency. This is done by the C libraries, and so there is a C solution, which is to <code>fflush(stdout);</code> after each character written. After that, whether the characters are displayed immediately is up to the operating system, but all the OSes I'm familiar with will display the output immediately, so that's not normally a problem.</p> http://stackoverflow.com/questions/1796629/compile-issues-based-on-different-platforms/1798010#1798010 0 Answer by David Thornley for Compile issues based on different platforms David Thornley 2009-11-25T16:09:50Z 2009-11-25T16:09:50Z <p>Googling the error comes up with one mention of VB assemblies with classes that differ only in case (like, say, GetLine vs. Getline). This is perfectly legitimate in C++, but might not work on .NET or other frameworks.</p> <p>I've found that copy-pasting error codes or large chunks of error messages into a Google search to be very usefu.</p> http://stackoverflow.com/questions/1797457/how-to-write-an-enumeration-of-all-computable-functions/1797834#1797834 0 Answer by David Thornley for How to write an enumeration of all computable functions? David Thornley 2009-11-25T15:47:00Z 2009-11-25T15:47:00Z <p>You can take any programming language such that you can determine whether something is a program or not, and list all programs in lexicographic order. To avoid at least a little of the combinatoric explosion, you can assign user-defined names (variables, functions, etc.) in a normalized form. Obviously, this is going to result in an immense number of functions, and it's not going to be easy to pick out which ones are actually useful. Any automatic method of trimming will either exclude some functions that you're actually going to want, or fail to trim the combinatoric explosion enough to be useful, or both.</p> <p>The other disadvantage of this is that it's going to be very difficult to go from the number to the function: it's hard to find a better way of finding function 433,457,175,432,167,463 than to enumerate about four hundred quadrillion functions.</p> <p>The other way is to encode a function into a number by mapping the symbols to numbers, and effectively concatenating them.</p> <p>Assume that the symbols are +, -, :=, ==, &lt;, if, then, endif, do, end_do_condition, enddo, and a statement delimiter. That's 11 symbols right there, without variables, for a pretty minimal set that doesn't include anything like a function call, and requires that you multiply and divide yourself. (I'm not actually sure this would work without a logical operator or two.) Add five variable names, and you've got a programming language with 4-bit characters. This means that a maximum of sixteen characters will fit into a 64-bit unsigned integer.</p> <p>Once you've got this, all the possible relations between functions are going to be representable as an arithmetic relation, but an immensely complicated one that will be far to complex to get right in practice.</p> <p>In short, while this is theoretically possible, it's going to be far too clumsy in practice. It would probably be easier to write an interpreter for a functional language in your nonfunctional language of choice.</p> http://stackoverflow.com/questions/1786144/c-passing-const-string-references-in-methods/1786280#1786280 3 Answer by David Thornley for C++ passing const string references in methods? David Thornley 2009-11-23T21:51:17Z 2009-11-23T21:51:17Z <p>If you're outside the class scope, and <code>cout &lt;&lt; name</code> compiles at all, it means you have another variable named <code>name</code>, and that's what's being picked up. If you want to refer to it outside the class, you'll have to come up with a way that will export it. You might, for example, have a member function like <code>const std::string &amp;GetName() { return name; }</code>.</p> http://stackoverflow.com/questions/1786201/stl-iterator-as-return-value/1786249#1786249 2 Answer by David Thornley for STL iterator as return value. David Thornley 2009-11-23T21:47:37Z 2009-11-23T21:47:37Z <p>It seems potentially unwise to give that much access to the vector, but if you're going to why not just return a pointer or reference to the vector? (Returning the vector itself is going to be potentially expensive.) Alternately, return a <code>std::pair&lt;&gt;</code> of iterators.</p> <p>An iterator is just an indicator for one object; for example, a pointer can be a perfectly good random-access iterator. It doesn't carry information about what sort of container the object is in.</p> http://stackoverflow.com/questions/1785572/why-should-one-bother-with-preprocessor-directives/1786205#1786205 1 Answer by David Thornley for Why should one bother with preprocessor directives? David Thornley 2009-11-23T21:42:12Z 2009-11-23T21:42:12Z <p>A bit of history here: C++ was developed from C, which needed the preprocessor a lot more than C++ did. For example, to define a constant in C++, you'd write something like <code>const int foo = 4;</code>, for example, instead of <code>#define FOO 4</code> which is the rough C equivalent. Unfortunately, too many people brought their preprocessor habits from C to C++.</p> <p>There are several reasonable uses of the preprocessor in C++. Using <code>#include</code> for header files is pretty much necessary. It's also useful for conditional compilation, including header include guards, so it's possible to <code>#include</code> a header several times (such as in different headers) and have it processed only once. The <code>assert</code> statement is actually a preprocessor macro, and there are a few similar uses.</p> <p>Aside from those, there are darn few legitimate uses in C++.</p> http://stackoverflow.com/questions/1783922/how-to-unit-test-the-sorting-of-a-stdvector/1784005#1784005 1 Answer by David Thornley for How to unit test the sorting of a std::vector David Thornley 2009-11-23T15:49:57Z 2009-11-23T15:49:57Z <p>I don't see a fundamental difference between the #4s in the sequences above. In TDD, you write unit tests so that, if they pass, you're fairly sure the code works. You work on the code until it passes. If you find a bug, you write another test to find it, and you are through working on the code when the tests pass. (If you're still not confident in it, write more tests.) In your case, you had more difficulty than you expected in getting the code to meet the test.</p> <p>The advantage is not so much in getting code units to work as in knowing that they still work when you change things, and in having a clear definition of when they do work. (There are other advantages: for example, the tests serve as documentation of what the code is supposed to be doing.)</p> <p>It may be that you want to write some smaller tests, but I'm not sure what you'd write that would be useful in the middle of a sort function. It seems to me that they'd be heavily dependent on how the function is implemented, and that seems to me against the spirit of TDD.</p> <p>By the way, why are you writing your own sort function? I hope this is because you wanted to write a sort function (for class, or for fun, or to learn), and not for any production reason. The standard functionality is almost certainly going to be more reliable, easier to understand, and usually faster than anything you're going to write, and you shouldn't replace it with your own code without good reason.</p> http://stackoverflow.com/questions/1771117/why-doesnt-c-reimplement-c-standard-functions-with-c-elements-style/1771914#1771914 1 Answer by David Thornley for Why doesn't C++ reimplement C standard functions with C++ elements/style? David Thornley 2009-11-20T17:08:38Z 2009-11-20T17:08:38Z <p>Because the old C libraries still work with standard C++ types, with a very little bit of adaptation. You can easily change a <code>const char *</code> to a <code>std::string</code> with a constructor, and change back with <code>std::string::c_str()</code>. In your example, with <code>std::string s</code>, just call <code>atoi(s.c_str())</code> and you're fine. As long as you can switch back and forth easily there's no need to add new functionality.</p> <p>I'm not coming up with C functions that work on arrays and not container classes, except for things like <code>qsort()</code> and <code>bsearch()</code>, and the STL has better ways to do such things. If you had specific examples, I could consider them.</p> <p>C++ does need to support the old C libraries for compatibility purposes, but the tendency is to provide new techniques where warranted, and provide interfaces for the old functions when there isn't much of an improvement. For example, the Boost <code>lexical_cast</code> is an improvement over such functions as <code>atoi()</code> and <code>strtol()</code>, much as the standard C++ string is an improvement over the C way of doing things. (Sometimes this is subjective. While C++ streams have considerable advantages over the C I/O functions, there's times when I'd rather drop back to the C way of doing things. Some parts of the C++ standard library are excellent, and some parts, well, aren't.)</p> http://stackoverflow.com/questions/1767957/paying-great-programmers-more-than-average-programmers/1771748#1771748 7 Answer by David Thornley for Paying great programmers more than average programmers David Thornley 2009-11-20T16:49:23Z 2009-11-20T16:49:23Z <p>There's fundamentally three reasons.</p> <p>First, programmers aren't going to make superstar salaries, because you can bunch them up. You can substitute a couple of 7s for one 10. On the other hand, you can't play two decent players at first base in baseball, rather than one excellent player, and you can't put two good actors into one role instead of one great actor.</p> <p>Second, corporate salary structures tend to be flatter inside categories than productivity would suggest. Therefore, there will be a lot of resistance to paying one person ten times as much as another for the same job, even if perfectly justified on the basis of productivity.</p> <p>Third, it's very hard to measure productivity. The tests I've read about are basically about completing set tasks within certain periods of time, and one mark of a good developer is selecting the individual tasks better. Measuring productivity in the office setting is very difficult or impossible to do halfway accurately, and paying widely different salaries on an inaccurate measurement is going to have its own set of problems.</p> <p>These last two mean that the only way an exceptionally productive developer is going to earn what he or she is worth is to be involved in the business, either starting a company or at least being in profit sharing. That requires doing different things and having different skills. Bill Gates is undoubtedly a quite talented programmer, but what got him his billions was his ability to run a business from nothing to something the size of Microsoft, which is a very rare ability.</p> http://stackoverflow.com/questions/1766729/what-is-the-most-complicated-complex-block-of-code-youve-ever-written-for-a-leg/1766782#1766782 0 Answer by David Thornley for What is the most complicated, complex block of code you've ever written for a legitimate purpose in a real project (up to 20 lines)? David Thornley 2009-11-19T21:44:34Z 2009-11-19T21:44:34Z <p>Implementing a priority queue in C++ where the priorities could be changed. I no longer have access to that, though, and I couldn't post it if I did.</p> http://stackoverflow.com/questions/1766134/array-reallocation-c/1766173#1766173 8 Answer by David Thornley for array reallocation C++ David Thornley 2009-11-19T20:07:27Z 2009-11-19T20:07:27Z <p>I would reallocate it in the form of a <code>std::vector&lt;item&gt;</code>, assuming that there is no overriding reason to use an array. That would avoid several problems completely.</p> http://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c/1764930#1764930 0 Answer by David Thornley for What is the most spectacular way to shoot yourself in the foot with C++? David Thornley 2009-11-19T17:08:20Z 2009-11-19T17:08:20Z <p>Let's see, some interesting things you can do.</p> <p>Non-explicit type conversions, including constructors. If your class Foo can be converted into a Bar, like <code>Bar::Bar(Foo f)</code>, then any function that works on a Bar will work on a Foo, not necessarily correctly. Something like <code>explicit Bar::Bar(Foo f)</code> will work much better.</p> <p>Overloaded functions that do different conceptual things, depending on the type of the operands. A function <code>Draw(...)</code> that put images on the screen for most things but deployed a gun when used on another thing would be an example.</p> <p>Similarly, operators that do non-obvious things. <code>operator+()</code> works fine for adding ints and floats and other sorts of numbers or vectors or whatever, or for concatenating strings, but if you use it for anything else, you're setting yourself up for trouble. A related case is turning short-circuit operators into functions, such as <code>operator&amp;&amp;()</code>, which will now evaluate both its operands rather than the first and then possibly the second.</p> http://stackoverflow.com/questions/1764074/gpl-restrictions-when-distributing-to-a-select-number-of-customers/1764201#1764201 4 Answer by David Thornley for GPL restrictions when distributing to a select number of customers? David Thornley 2009-11-19T15:42:43Z 2009-11-19T15:42:43Z <p>The answer critically depends on what "depends on" means. If you mean that your code runs as a separate process, and communicates with VLC with sockets or pipes or some other means of interprocess communication, then you are packaging your code with VLC, and there are no restrictions on what you can do that way. If you have actual changes to VLC, or link your code with VLC, then your code is subject to the GPL. Anything between the two is a judgment call.</p> <p>If your code is subject to the GPL, you can distribute it as you please, but all distribution will be under the GPL's terms. In short, you must either provide source code with the binary or provide a written offer to supply the source, and everybody you distribute to has the same GPL rights that you do. You don't have to make your stuff publicly available, but anybody who gets it from you has the right to do so. You can sell the software, but you cannot forbid anybody else from selling it or giving it away for free.</p> http://stackoverflow.com/questions/1023608/a-c-program-to-remove-comments/1758152#1758152 0 Answer by David Thornley for a C++ program to remove comments David Thornley 2009-11-18T18:41:23Z 2009-11-18T18:41:23Z <p>The <code>&gt;&gt;</code> operator isn't a complete solution. As you've found out, it likes to skip whitespace. Use the <code>get()</code> member function to get characters, <code>getline()</code> for lines.</p> <p>Once you've done that, the fun begins.</p> <p>The pen-up, pen-down method looks good to me. Then comes the problem of what's a comment.</p> <p>You will want to keep track of quoted strings and character constants to make sure you're not pulling comment markers out of them. (<code>'//'</code> is legal, although implementation-defined, and doesn't start a comment.) You may want to note that a <code>\"</code> or <code>??/"</code> inside a quoted string doesn't close the string, and similarly for character constants. You may want to note end-of-line subtleties: an end-of-line immediately preceded by <code>\</code> or <code>??/</code> isn't actually an end-of-line. (Or you could ignore the trigraphs; almost everybody else does.)</p> <p>If you're somewhat familiar with finite state machines (aka deterministic finite automata), you might want to use that approach. Essentially, you're in some state at all times, and on reading a character you perform an action that depends on state and character, and possibly change to another state.</p> <p>For example, say you're in state <code>READING_ALONG</code>, and you encounter a <code>/</code>. You write nothing and change to <code>SAW_A_SLASH</code> state. If the next character is <code>*</code>, you enter the <code>C_STYLE_COMMENT</code> state; if it's <code>/</code>, you enter the <code>CPP_STYLE_COMMENT</code> state, and if it isn't you print "/" and the current character, and go back to <code>READING_ALONG</code>.</p> http://stackoverflow.com/questions/1755010/best-way-to-return-early-from-a-function-returning-a-reference/1756907#1756907 0 Answer by David Thornley for Best way to return early from a function returning a reference David Thornley 2009-11-18T15:45:09Z 2009-11-18T15:45:09Z <p>The way the function is set up, you have to return a <code>SomeObject</code> or throw an exception. If you want to do something else, you need to change the function. There are no other choices.</p> <p>If <code>SomeCondition</code> will never be false, then you can remove the test in the code and put an <code>assert</code> in instead, or you can keep the test and throw an exception. (I'm loath to recommend just disregarding the possibility, since "never false" almost always means "never false unless something bad has happened and not been detected", and if it's worth testing for under any conditions it's worth detecting.)</p> <p>There's the possibility of returning some sort of null object. Pointers are useful for that, since there's an obvious null value that tests false, but you could pass a flag back as an out parameter or return a special object intended as a null. Then you're going to need to test the return value on each call for this to be meaningful, and that's not likely to be less hassle than the <code>assert</code> or <code>throw</code>.</p> <p>If I were doing this, it would depend on <code>SomeCondition</code>. If it has side effects or isn't difficult to calculate, test and throw an exception if false. If it's onerous to calculate, use <code>assert</code> so you don't have to do it in production, and forget about it besides that.</p> http://stackoverflow.com/questions/1749672/do-you-have-to-pay-for-gnu-gpl-software-that-is-for-sale/1750076#1750076 1 Answer by David Thornley for Do you have to pay for GNU GPL software that is "for sale"? David Thornley 2009-11-17T16:30:12Z 2009-11-17T16:30:12Z <p>One question is whether the author wrote all the software or used any pre-existing GPLed software. If the person on the web site owns the copyright completely, then the web site may impose any conditions, including those incompatible with the GPL. Of course, releasing it under the GPL gives you some rights by itself. In particular, you can't redistribute without the source code, but you can make copies and use them.</p> <p>The above practice is generally considered unfriendly by Free and Open Source Software advocates. Since it's not really honest to advertise GPLv2 and not deliver everything necessary, I'd advise being careful about the product. People who deliberately misrepresent things in advertising are likely to be selling shoddy software.</p> <p>If the software contains pre-existing GPLed components, and the author didn't come to other terms with the copyright holders, then the GPL applies in full. The distributor has to provide source code (either with the executable or on request at nominal cost) and may not impose restrictions not allowed by the GPL.</p> <p>There's also the possibility that the author released under GPLv2 without actually understanding the license. This happens from time to time, and frequently the FSF will quietly work with companies on getting into compliance.</p> <p>In either case, it's perfectly fine to sell the software. If somebody else has the software including the source, they can redistribute freely, and it's perfectly legal for you to get it from them.</p> http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744828#1744828 3 Answer by David Thornley for Why should exceptions be used conservatively? David Thornley 2009-11-16T21:00:51Z 2009-11-16T21:00:51Z <p>There's several reasons in C++.</p> <p>First, it's frequently hard to see where exceptions are coming from (since they can be thrown from almost anything) and so the catch block is something of a COME FROM statement. It's worse than a GO TO, since in a GO TO you know where you're coming from (the statement, not some random function call) and where you're going (the label). They're basically a potentially resource-safe version of C's setjmp() and longjmp(), and nobody wants to use those.</p> <p>Second, C++ doesn't have garbage collection built in, so C++ classes that own resources get rid of them in their destructors. Therefore, in C++ exception handling the system has to run all the destructors in scope. In languages with GC and no real constructors, like Java, throwing exceptions is a lot less burdensome.</p> <p>Third, the C++ community, including Bjarne Stroustrup and the Standards Committee and various compiler writers, has been assuming that exceptions should be exceptional. In general, it's not worth going against language culture. The implementations are based on the assumption that exceptions will be rare. The better books treat exceptions as exceptional. Good source code uses few exceptions. Good C++ developers treat exceptions as exceptional. To go against that, you'd want a good reason, and all the reasons I see are on the side of keeping them exceptional.</p> http://stackoverflow.com/questions/1742700/does-a-destructor-always-get-called-for-a-delete-operator-even-when-it-is-overlo/1742930#1742930 2 Answer by David Thornley for Does a destructor always get called for a delete operator, even when it is overloaded? David Thornley 2009-11-16T15:33:35Z 2009-11-16T15:33:35Z <p>What sort of stuff happens between the destruction of the object and the freeing of the object's memory? If it has nothing to do with the object, then you should be able to delete the object where the destructor appears. If it does, well, I'd examine that very carefully, because it sounds like a bad idea.</p> <p>If you have to reproduce the semantics, have a member function that releases all the resources, and use that instead of the destruct function. Make sure that function can be called more than once safely, and include it in the C++ destructor just to be sure.</p> http://stackoverflow.com/questions/1724501/need-advice-on-new-development-system-and-os/1725002#1725002 0 Answer by David Thornley for Need advice on new development system and OS David Thornley 2009-11-12T20:05:20Z 2009-11-12T20:05:20Z <p>You're going to want to continue to have a personal laptop. so make sure that you are the one owning the laptop no matter who pays for it. Given a choice, I'd rather own a laptop and use it part-time for business than use somebody else's laptop for my own purposes, commercial or personal, or juggle two laptops.</p> <p>So, I'd ask for the best desktop development system I'd be likely to get, best being of course dependent on what you like, what you're doing, and company policy. </p> <p>If you go for separate development machines at work and at home, you probably want a better system than trying to remember to check into Subversion at the end of each session. If you keep your version of the project on your laptop at all times, that would eliminate the problem. Other than that, if you could connect into your work machine from home, and your home machine from work, you could either use a distributed VCS (like Mercurial or Git) on your own machines or just log in to commit the stuff you forgot when you left last time.</p> http://stackoverflow.com/questions/1722687/can-i-execute-any-c-made-prog-without-any-os-platform/1723184#1723184 0 Answer by David Thornley for Can i execute any c made prog without any os platform??? David Thornley 2009-11-12T15:46:24Z 2009-11-12T15:46:24Z <p>Obviously, you cannot execute any arbitrary C program without some sort of OS or OS-equivalent. Similarly, I can write a C program under Linux that won't run under Microsoft Windows.</p> <p>However, you can write C programs on almost anything. It's a popular language to write software for embedded systems in, and they very often don't have an OS.</p> <p>Many embedded systems have just a CPU hooked up to a ROM, with pins coming out of the chip that are directly attached to inputs and outputs. There is no user I/O, no file system, no process scheduling, nothing you'd typically want an OS for. In those cases, a C programmer might write a program that is burned into a ROM, which will handle everything itself.</p> <p>(Some embedded systems are more complicated, and can use an OS. Linux is frequently used, since it's free for the use, can be made very compact, and can be changed at any level. Not all do, though.)</p> http://stackoverflow.com/questions/1717746/can-user-disable-javascript-at-client-side-is-it-possible/1717840#1717840 3 Answer by David Thornley for Can User disable javascript at client side ? is it possible ? David Thornley 2009-11-11T20:26:34Z 2009-11-11T20:26:34Z <p>All browsers I've ever used that support Javascript in the first place have had the ability to disable it fairly easily. There's an add-on for Firefox called NoScript that makes it easy to disable Javascript on a source-by-source basis. Javascript is a general-purpose programming language, and it's a bad idea to ever assume you get to run arbitrary programs on somebody else's system.</p> <p>Moreover, you can't rely on Javascript for security. It's sent to the browser in source form, and can be altered on the browser without much difficulty. Javascript is entirely irrelevant to security.</p> <p>There's two ways you could be thinking of securing a client site. One is securing the connection with SSL, and that has nothing to do with Javascript. It requires obtaining a certificate (usually, with modern browsers, one you pay for from an accepted certificate authority) and setting it up.</p> <p>The second is to validate the information the browser sends. There's no harm in doing this with Javascript, since your web page can be more responsive that way, but if there is any security reason to validate input, it absolutely has to be done on the server. Any Javascript you send can be examined and changed by the person using the browser, and anything that can be sent by HTTP can be modified.</p> http://stackoverflow.com/questions/1551003/how-to-find-a-programmer-for-my-project/1702967#1702967 59 Answer by David Thornley for How to find a programmer for my project? David Thornley 2009-11-09T18:49:12Z 2009-11-09T18:49:12Z <p>This smells like a debacle waiting to happen.</p> <p>From the description you gave, I'd think of you as most likely an overoptimistic get-rich-quick schemer who wants to get somebody competent to do a lot of work on your idea while being micromanaged, in exchange for an inequitable share of profits that aren't going to show up. I'd also worry that you'd get discouraged too soon and not pay me for work done, or get upset and potentially abusive if it doesn't work as planned because of your emotional investment. I'm not saying this is what it is, but rather the impression I get. Reread what you wrote: if you can't see why I might get that impression you need to work on your communication skills or your perspective if you want to get somebody interested.</p> <p>Now, in order to get somebody rational to go along with this, you need to convince them that there is a very good probability of enough profit to make this worthwhile. If you know somebody personally, and can work well with them, you could try that. Otherwise, unless you have good sound business reasons for your venture, you're talking to a bunch of people who can't easily tell the difference between you and the myriad hordes of wackos who sound just like you.</p> <p>If you do have good sound business reasons for your venture, you can go to a bank and talk about a loan so you can hire somebody. This will make you much more credible. First, you will prima facie have a good business case, since you've convinced a banker. Second, after getting the loan you will have skin in the game. You'll be in a position where failing will cost money and reputation, and therefore you'll be less likely to fold when the going gets tough. Third, you'll be able to pay for things like hosting and marketing, so the whole thing is less likely to crash immediately. Fourth, you'll be able to pay at least a small amount to anybody you take on board. (You don't necessarily have to pay market rates. You could pay primarily in profit share and/or equity.)</p> <p>And remember that you can't be coy about your project. You're going to have to tell lots of people what it is in order to have any chance of interesting a very few, and you're not going to be able to get them to sign an NDA. In successful business startups, the idea is not particularly important, it's what you can do with it. Ideas are cheap and plentiful, implementations done with skill, diligence and determination are neither.</p> http://stackoverflow.com/questions/1700713/unary-operator-result/1702742#1702742 2 Answer by David Thornley for Unary operator result David Thornley 2009-11-09T18:13:21Z 2009-11-09T18:13:21Z <p>Operations on unsigned integral types use modular arithmetic. Arithmetic modulo m is much the same as regular arithmetic, except that the result is the positive remainder when divided by m, if you haven't run into it at school (for more details, see the <a href="http://en.wikipedia.org/wiki/Modular%5Farithmetic" rel="nofollow">Wikipedia article</a>. For example, 7 - 3 modulo 10 is 4, while 3 - 7 modulo 10 is 6, since 3 - 7 is -4, and dividing it by 10 yields a quotient of -1 and a remainder of 6 (it also could be expressed with a quotient of 0 and a remainder of -4, but that's not how it works in modular arithmetic). The possible integer values modulo m are the integers from 0 to m-1, inclusive. Negative values are not possible, and -200 isn't a valid unsigned value under any circumstances.</p> <p>Now, a unary minus means a negative number, which isn't a valid value modulo m. In this case, we know that it's between 0 and m-1, because we're starting with an unsigned integer. Therefore, we're looking at dividing -k by m. Since one possible value is a quotient of 0 and a remainder of -k, another possible is a quotient of -1 and remainder of m-k, so the correct answer is m-k.</p> <p>Unsigned integers in C are normally described by the maximum value, not the modulus, which means that an unsigned 16-bit number would normally be described as 0 to 65535, or as having a maximum value of 65535. This is describing the values by specifying m-1 rather than m.</p> <p>What the quotation you have says that the value of a negative is taken by subtracting it from m-1 and then adding 1, so -k is m - 1 - k + 1, which is m - k. The description is a little roundabout, but it specifies the correct result in terms of the pre-existing definitions.</p> http://stackoverflow.com/questions/1701686/why-should-methods-have-a-single-entry-and-exit-points/1701941#1701941 0 Answer by David Thornley for Why should methods have a single entry and exit points? David Thornley 2009-11-09T15:54:54Z 2009-11-09T15:54:54Z <p>First, I don't know how a Java method can have more than one entry point. Fortran has the ENTRY statement, which provides alternative entry points into functions and subroutines (different things in Fortran), and in internal constructs it's sometimes possible to do similar things internally (look up Duff's Device for a very good or very bad example).</p> <p>Second, the reasons for single return points are stylistic in nature, and sometimes relate to attempts to reason formally about programs. I know of only one technical reason for it: having one exit point makes it easier for the compiler to check all execution paths, when that's important for warnings.</p> <p>One traditional reason has been to make sure cleanup code is run, which simply doesn't work in languages with exceptions. In Java, cleanup code is run by <code>try {...} finally {...}</code>, and by RAII in C++.</p> <p>Another reason has been to avoid confusion, as the code reader might have trouble understanding when certain code is run if there have been arbitrary returns. This is more valid, but in general handling simple special cases like invalid input and returning immediately makes the method more readable.</p> http://stackoverflow.com/questions/1660106/block-controlaltdelete Comment by David Thornley on Block Control+Alt+Delete David Thornley 2009-11-28T23:39:57Z 2009-11-28T23:39:57Z An unsupervised test is an unsupervized test. You don't even know that it's the actual student on the computer, not to mention other resources and other computers. Not to mention that fiddling with system internals like that is likely to mess up somebody's computer. Got liability insurance for that? This is a Bad Idea. http://stackoverflow.com/questions/1811358/help-overloading-and-to-display-two-values/1811378#1811378 Comment by David Thornley on help overloading << and >> to display two values David Thornley 2009-11-28T03:04:32Z 2009-11-28T03:04:32Z Probably, but this is how you do it no matter what. http://stackoverflow.com/questions/1811398/does-googles-go-language-compute-complicated-algorithms-faster-than-c-and-c Comment by David Thornley on Does Google's Go language compute complicated algorithms faster than C++ and C#? David Thornley 2009-11-28T03:02:59Z 2009-11-28T03:02:59Z Language speed is hardly a well-defined concept. It depends on the implementation, the skill of the programmer, and exactly what you're using it for, among other things. Go (which probably has only one implementation to date) may well be faster than most Java implementations, which doesn't mean the language is faster than Java. There are a lot of C++ implementations, and some may be faster than the current Go implementation and some slower. http://stackoverflow.com/questions/1800366/dark-side-of-open-source-projects/1800462#1800462 Comment by David Thornley on Dark side of open source projects David Thornley 2009-11-25T23:03:54Z 2009-11-25T23:03:54Z Good answer. Also, do your best to be a net contributor. Submit patches in the form they want (including doc patches), ready to check in. Follow the project standards. http://stackoverflow.com/questions/1800366/dark-side-of-open-source-projects Comment by David Thornley on Dark side of open source projects David Thornley 2009-11-25T23:02:26Z 2009-11-25T23:02:26Z @Justin: Ah, you've been browsing through Sourceforge projects, haven't you? http://stackoverflow.com/questions/1799979/looking-for-a-good-book-on-how-to-code-more-efficiently-in-net-c/1799988#1799988 Comment by David Thornley on Looking for a good book on how to code more efficiently in .net c# David Thornley 2009-11-25T23:01:27Z 2009-11-25T23:01:27Z Effective C++ is a wonderful book. I'd be afraid that somebody copying the title like that would fail to live up to the original. http://stackoverflow.com/questions/1800439/what-language-will-protect-my-source-code/1800461#1800461 Comment by David Thornley on What language will protect my source code? David Thornley 2009-11-25T23:00:03Z 2009-11-25T23:00:03Z Actually, they wouldn't bother decompiling it, since raw hex machine code is much more readable than a few languages I could name. Actually, if you coded that in a language like Intercal, it would be automatically obfuscated. http://stackoverflow.com/questions/1800439/what-language-will-protect-my-source-code/1800498#1800498 Comment by David Thornley on What language will protect my source code? David Thornley 2009-11-25T22:58:30Z 2009-11-25T22:58:30Z The difference with my locks is that, if somebody wants to break in, they have to pick my locks (probably not too difficult), and they have to be there. With something like this, it takes one person to figure out what you've done and publish it on the net. Imagine how locks would work if one person, working remotely, could jam every lock in the country so they wouldn't lock. http://stackoverflow.com/questions/1800423/what-is-the-performance-penalty-of-operator-overloading-stl Comment by David Thornley on What is the performance penalty of operator overloading STL David Thornley 2009-11-25T22:56:02Z 2009-11-25T22:56:02Z Why would you think operator overloading would cause a performance penalty? I'm puzzled by this. Also, the standard questions: Are you sure you have a performance problem? Check your measurements. Where does the profiler say the problem is? What's your baseline performance, and what's your target, and what's your plan for measuring? We don't cotton much to micro-optimizers in these here parts. http://stackoverflow.com/questions/1800295/reading-text-file-into-an-array-of-lines-in-c/1800316#1800316 Comment by David Thornley on Reading text file into an array of lines in C David Thornley 2009-11-25T22:51:53Z 2009-11-25T22:51:53Z Why does it require two passes? Allocate space for the array, as much as you think you'll need, using <code>malloc()</code>. Start with the buffer. For each '\n', substitute 0, and put the address of the next char into the array. Keep track of the array size; if it's going to overflow, <code>realloc()</code> it. http://stackoverflow.com/questions/1800377/is-it-bad-practice-to-change-state-inside-of-an-if-statement/1800388#1800388 Comment by David Thornley on Is it bad practice to change state inside of an if statement? David Thornley 2009-11-25T22:39:44Z 2009-11-25T22:39:44Z Why not multiple return statements, and why have an unnecessary variable? http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1473404#1473404 Comment by David Thornley on What's the worst security hole you've ever seen? David Thornley 2009-11-25T20:56:31Z 2009-11-25T20:56:31Z Tell you what. If you can get onto my account at home, you can get to my Firefox files, and then you can get all my non-critical passwords. I think that's safe enough. http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1469950#1469950 Comment by David Thornley on What's the worst security hole you've ever seen? David Thornley 2009-11-25T20:25:25Z 2009-11-25T20:25:25Z Of course, this means that you've maliciously done something to get them to send merchandise to you fraudulently if you actually do this, and told &quot;them&quot; your address. http://stackoverflow.com/questions/1653806/are-there-resources-about-logistics Comment by David Thornley on Are there resources about logistics? David Thornley 2009-11-25T20:19:09Z 2009-11-25T20:19:09Z And neither &quot;transport scheduling&quot; nor &quot;logistics&quot; are programming topics. There are doubtless interesting programming problems in it, but to be relevant here you'd have to find one and ask it specifically. http://stackoverflow.com/questions/615933/what-is-the-best-variable-function-name-you-have-ever-encountered Comment by David Thornley on What is the best variable/function name you have ever encountered? David Thornley 2009-11-25T20:17:26Z 2009-11-25T20:17:26Z You know, you have edited this so that most of it belongs on MetaStackOverflow if anywhere.