User Simon Howard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T09:16:52Zhttp://stackoverflow.com/feeds/user/24806http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/208193/why-should-i-use-an-ide38Why should I use an IDE?Simon Howard2008-10-16T11:41:46Z2009-03-29T11:42:02Z
<p>In another question, <a href="http://stackoverflow.com/users/26310/mark">Mark</a> speaks highly of IDEs, saying <a href="http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have#203293">"some people still just dont know "why" they should use one..."</a>. As someone who uses vim for programming, and works in an environment where most/all of my colleagues use either vim or emacs for all of their work, what are the advantages of IDEs? Why should I use one?</p>
<p>I'm sure this is a charged issue for some people, and I'm not interested in starting a flame war, so <strong>please only reply with the reasons you believe an IDE-based approach is superior</strong>. I'm not interested in hearing about why I shouldn't use an IDE; I already don't use one. I'm interested in hearing from "the other side of the fence", so to speak.</p>
<p>If you think that IDEs may be suitable for some types of work but not others, I'm also interested to hear why.</p>
http://stackoverflow.com/questions/106221/why-isnt-lisp-more-widely-used/483258#4832582Answer by Simon Howard for Why isn't LISP more widely used?Simon Howard2009-01-27T12:41:14Z2009-01-27T12:41:14Z<p>I think there are a number of reasons, including the syntax, the fact that it's difficult to learn, and that it is less efficient (or it's at least more difficult to write a compiler that generates efficient code) than other languages like C/C++.</p>
<p>I think one of the biggest issues, though, is the fact that there has never been, to my knowledge, a popular implementation promoted by a large company. When Sun released Java, for example, they did a lot of marketing for it. Similarly Microsoft made a huge marketing effort for C# and .NET. Even back in the DOS days, Microsoft put out QuickC, QuickBASIC and even QuickFortran. There was never "QuickLISP", and there has never been a "Microsoft Visual LISP" either.</p>
<p>These things don't affect the technical suitability of a language but they do affect how it's perceived, and that can have just as much, if not more, influence. It's like the old adage, "nobody ever got fired for buying IBM" - nobody ever got fired for using Microsoft's C++ compiler.</p>
http://stackoverflow.com/questions/341241/are-closed-source-applications-welcomed-in-the-linux-community/341431#3414310Answer by Simon Howard for Are closed source applications "welcomed" in the Linux community?Simon Howard2008-12-04T17:28:19Z2008-12-04T17:28:19Z<p>In general, the answer is no, and the problem mostly comes down to the fact that to get working software packages under Linux, you need to get one for your specific distribution. You can't just release a "Linux version" and expect it to work on Fedora, Debian, Ubuntu, ... (ad infinitum). More than any ideological reasons, that's why the best supported packages are the open source ones - they can just be recompiled for the target platform, and distributions are free to include them as they wish.</p>
<p>That said, ideological issues are important as well, and there are a significant number of people who will look down on packages that are not under an open source license.</p>
<p>There are some specific packages which have been the exception to the rule over the years. Examples include Netscape, the Flash plugin, VMware, and a few others. These packages tend to fulfil a specific need that is not satisfied by any open source package. It doesn't sound to me like your package fulfils such a need.</p>
http://stackoverflow.com/questions/335770/what-are-the-uses-of-svn-copy/336873#3368730Answer by Simon Howard for What are the uses of svn copy?Simon Howard2008-12-03T11:40:38Z2008-12-03T11:40:38Z<p>This is a slightly unusual use, but I find that sometimes I have to divide a source file into two separate files - for example, if it contains two sets of unrelated functionality, and I use svn copy to do this. I then modify both files and delete the inappropriate bits from each. This way, both of the new files retain revision history for their relevant bits.</p>
http://stackoverflow.com/questions/333367/learning-svg/333511#3335114Answer by Simon Howard for Learning SVG ?Simon Howard2008-12-02T10:00:59Z2008-12-02T10:00:59Z<p>One method that you might want to try is by direct experimentation. <a href="http://www.inkscape.org/" rel="nofollow">Inkscape</a> is an open source SVG editor that lets you directly view and manipulate the XML tree while editing graphically. So in this way, you can experiment with things and see how they affect the XML that gets generated.</p>
http://stackoverflow.com/questions/308191/fastest-way-to-detect-if-a-value-is-in-a-set-of-values-in-javascript/308268#3082687Answer by Simon Howard for fastest way to detect if a value is in a set of values in JavascriptSimon Howard2008-11-21T09:33:54Z2008-11-21T09:33:54Z<p>Use a hash table, and do this:</p>
<pre><code>// Initialise the set
mySet = {};
// Add to the set
mySet["some string value"] = true;
...
// Test if a value is in the set:
if (testValue in mySet) {
alert(testValue + " is in the set");
} else {
alert(testValue + " is not in the set");
}
</code></pre>
http://stackoverflow.com/questions/139228/what-do-you-do-with-a-developer-that-does-not-test-his-code/261072#2610722Answer by Simon Howard for What do you do with a developer that does not test his code?Simon Howard2008-11-04T06:30:58Z2008-11-04T06:30:58Z<p>It seems that people have come up with a lot of imaginative and devious answers to this problem. But the fact is that this isn't a game. Devising elaborate peer pressure systems to "name and shame" him is not going to get to the root of the problem, ie. why is he not writing tests?</p>
<p>I think you should be direct. I know you say that you've talked to him, but have you tried to find out <em>why</em> he isn't writing tests? Clearly at this point he knows that he <em>should</em> be, so surely there must be some reason why he isn't doing what he's been told to do. Is it laziness? Procrastination? Programmers are famous for their egos and strong opinions - perhaps he's convinced for some reason that testing is a waste of time, or that his code is always perfect and doesn't need testing. If he's an immature programmer, he might not fully understand the implications of his actions. If he's "too mature" he might be too set in his ways. Whatever the reason, address it.</p>
<p>If it does come down to a matter of opinion, you need to make him understand that he needs to set his own personal opinion aside and just follow the rules. Make it clear that if he can't <em>be trusted</em> to follow the rules then he will be replaced. If he still doesn't, do just that.</p>
<p>One last thing - document all of your discussions along with any problems that occur as a result of his changes. If it comes to the worst you may be forced to justify your decisions, in which case, having documentary evidence will surely be invaluable.</p>
http://stackoverflow.com/questions/243217/which-coding-style-you-use-for-ternary-operator/243349#24334912Answer by Simon Howard for Which coding style you use for ternary operator?Simon Howard2008-10-28T13:39:46Z2008-10-28T20:22:16Z<p>The ternary operator is generally to be avoided, but this form can be quite readable:</p>
<pre><code> result = (foo == bar) ? result1 :
(foo == baz) ? result2 :
(foo == qux) ? result3 :
(foo == quux) ? result4 :
fail_result;
</code></pre>
<p>This way, the condition and the result are kept together on the same line, and it's fairly easy to skim down and understand what's going on.</p>
http://stackoverflow.com/questions/240465/what-are-the-best-uses-for-each-programming-language/240511#24051121Answer by Simon Howard for What are the best uses for each programming language?Simon Howard2008-10-27T16:29:17Z2008-10-27T17:27:28Z<ul>
<li><strong>Assembly</strong> is useful to learn so that you know exactly what is going on at the bare metal - sometimes useful to understand performance issues. In the majority of cases, it makes more sense to just write the code in C (which is usually both more readable and more maintainable), but you may encounter a few scenarios where you have to use assembly. Some C programs have bits which are bottlenecks written in assembly for performance.</li>
<li><strong>C</strong> is useful for low-level operating system and embedded development, as it is efficient, and some of its language features are ideally suited for dealing with low-level hardware.</li>
<li><strong>C++</strong> is useful for performance-critical large-scale applications. It has features that help in the structuring of large applications, such as object orientation, but retains the low-level features of C. A lot of video games are written in C++, for example. However, it is a complicated language to learn, because it includes many different features.</li>
<li><strong>Java</strong> is useful for cross-platform development, for tasks that are not as performance-critical as C++; examples would be GUI applications and dynamic web sites. <strong>C#</strong> has many similar characteristics to Java, although developing cross-platform applications is not as easy.</li>
<li><strong>Python</strong>, <strong>Ruby</strong> and <strong>Perl</strong> are useful as general-purpose scripting languages, although the former two have also become popular recently for web development.</li>
<li><strong>Lisp</strong> and dialects such as <strong>Scheme</strong> are worth learning because they make you structure your programs in a more elegant way. Lisp is not generally used widely in many real-world scenarios, but it will make you a better programmer if you learn it.</li>
<li><strong>Haskell</strong> is useful to impress your friends.</li>
</ul>
http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237549#23754938Answer by Simon Howard for What coding mistakes are a telltale giveaway of an inexperienced programmer?Simon Howard2008-10-26T04:18:45Z2008-10-26T04:18:45Z<p>Probably the most tell-tale sign is an inability to properly factor out code into separate easy-to-understand chunks. If you're regularly encountering functions that are hundreds of lines long, or nested to four or more levels, it's probably a good sign that they're inexperienced.</p>
http://stackoverflow.com/questions/235439/vim-80-column-layout-concerns/235970#23597024Answer by Simon Howard for Vim 80 column layout concernsSimon Howard2008-10-25T05:51:11Z2008-10-25T05:51:11Z<p>I have this set up in my .vimrc:</p>
<pre><code>highlight OverLength ctermbg=red ctermfg=white guibg=#592929
match OverLength /\%81v.*/
</code></pre>
<p>This highlights the background in a subtle red for text that goes over the 80 column limit (subtle in GUI mode, anyway - in terminal mode it's less so).</p>
http://stackoverflow.com/questions/227762/looking-for-16-bit-x86-compiler/227786#2277862Answer by Simon Howard for Looking for 16-bit x86 compilerSimon Howard2008-10-22T22:36:59Z2008-10-22T22:36:59Z<p>Your best bet is probably <a href="http://www.openwatcom.org/index.php/Main_Page" rel="nofollow">OpenWatcom</a>, which includes a C++ compiler. Back in the early-to-mid 90s, I believe this was the best C/C++ compiler around. It was open-sourced a few years ago.</p>
http://stackoverflow.com/questions/207047/what-linux-unix-commands-are-outdated-and-have-powerful-alternatives/218566#2185661Answer by Simon Howard for What Linux/Unix commands are outdated and have powerful alternatives?Simon Howard2008-10-20T14:07:57Z2008-10-20T14:07:57Z<p><em>ar</em>(1) archives; <em>tar</em> is almost always used instead. <em>ar</em> does continue to have some limited uses; .deb package files are actually <em>ar</em> archives, for example, and the .a library libraries used for static compilation are actually <em>ar</em> archives containing a bunch of .o object files. </p>
<p>Essentially, in the few places where <em>ar</em> is used, its existence is hidden away.</p>
http://stackoverflow.com/questions/218264/how-can-i-detect-and-survive-being-slashdotted/218500#21850010Answer by Simon Howard for How can I detect and survive being "Slashdotted"?Simon Howard2008-10-20T13:51:46Z2008-10-20T13:51:46Z<p>It's worth mentioning that clever caching and low bandwidth modes will be useless if you simply don't have enough bandwidth on your connection, so make sure the connection to your server is fat enough. Don't host it on your home DSL connection, for example.</p>
<p>I speak from experience of being slashdotted. It's not fun when you can't access the Internet at all because thousands of people are simultaneously trying to download photos of a computer your housemate mounted inside a George Foreman grill. No amount of firewalling will save you.</p>
http://stackoverflow.com/questions/216510/extern-inline/217043#2170430Answer by Simon Howard for extern inlineSimon Howard2008-10-19T21:59:14Z2008-10-19T21:59:14Z<p>The situation with inline, static inline and extern inline is complicated, not least because gcc and C99 define slightly different meanings for their behavior (and presumably C++, as well). You can find some useful and detailed information about what they do in C <a href="http://www.greenend.org.uk/rjk/2003/03/inline.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/213757/why-do-people-use-java/215246#2152461Answer by Simon Howard for Why do people use Java?Simon Howard2008-10-18T16:42:42Z2008-10-18T16:42:42Z<p>I think it mainly comes down to the history of the language - you need to understand its history to understand how it became popular. It still retains popularity as a result of that initial momentum. There are various factors.</p>
<p>Java became popular in the late '90s, when the majority of software was written in C/C++. Even if you're a fan of C++, you have to admit that it is, overall, a fairly complicated language because of the number of features that it incorporates. As a result, it's a difficult language to master; Java, by comparison, is much "cleaner" and easier to learn. C++ is also plagued by a number of common problems, all of which Java solves. These include: lack of bounds checking for arrays (leading to buffer overflow attacks), manual memory management (leading to memory leaks and crashes from double frees) and the fact that portable software is difficult to write (Java provides a platform which is intrinsically portable - mostly, at least).</p>
<p>When you take all of these into account, Java came across as a much "cleaner" language and was especially attractive to universities teaching introductory programming courses. When I was at University (2000-2004) all programming was taught using Java, for example. This has a big influence when those students go out into the real world to work.</p>
<p>Nowadays there are a number of common languages that have become popular, and - importantly - acceptable to managers, to use. These include Python, C#, Ruby, etc. At the time that Java came out, though, none of these were popular or well-known enough to be accepted for use in serious software.</p>
<p>You should also factor in the influence of the web. I remember back around 1999-2000, there was a lot of "buzz" around the use of Java applets - small Java programs that could be embedded into webpages. Nowadays, it's incredibly rare to see Java applets used. Microsoft even removed the Java VM from IE. Back then, the fact that Java was available inside all of the major web browsers was a pretty important thing.</p>
<p>Finally, it's worth considering the fact that Sun put out a big marketing campaign for Java, which helped to cement its reputation among both programmers and managers. Plus, the fact that it was developed by a big company like Sun helped to give it some credibility.</p>
<p>So, I agree with you that there are things that are annoyingly complicated to do in Java (although it has improved over time). The fact is, though, that people continue to use Java now because it's already popular, and it became popular because 10-15 years ago it was, in many ways, a lot better than many of the other options available.</p>
http://stackoverflow.com/questions/209869/what-is-the-accepted-way-to-send-64-bit-values-over-json/209892#2098926Answer by Simon Howard for What is the accepted way to send 64-bit values over JSON?Simon Howard2008-10-16T19:20:29Z2008-10-16T19:20:29Z<p>This seems to be less a problem with JSON and more a problem with Javascript itself. What are you planning to do with these numbers? If it's just a magic token that you need to pass back to the website later on, by all means simply use a string containing the value. If you actually have to do arithmetic on the value, you could possibly write your own Javascript routines for 64-bit arithmetic. </p>
<p>One way that you could represent values in Javascript (and hence JSON) would be by splitting the numbers into two 32-bit values, eg.</p>
<pre><code> [ 12345678, 12345678 ]
</code></pre>
<p>To split a 64-bit value into two 32-bit values, do something like this:</p>
<pre><code> output_values[0] = (input_value >> 32) & 0xffffffff;
output_values[1] = input_value & 0xffffffff;
</code></pre>
<p>Then to recombine two 32-bit values to a 64-bit value:</p>
<pre><code> input_value = ((int64_t) output_values[0]) << 32) | output_values[1];
</code></pre>
http://stackoverflow.com/questions/208074/fast-recursive-grepping-of-svn-working-copy/208165#2081651Answer by Simon Howard for Fast recursive grepping of svn working copySimon Howard2008-10-16T11:28:18Z2008-10-16T11:28:18Z<p>I wrote <a href="http://www.soulsphere.org/tools/fuck-you-svn.sh" rel="nofollow">this</a> script which I've added to my .bashrc. It automatically excludes SVN directories from grep, find and locate.</p>
http://stackoverflow.com/questions/202136/how-to-search-a-string-based-key-value-collection-fast/202352#2023520Answer by Simon Howard for How to search a string based key/value collection fastSimon Howard2008-10-14T18:50:39Z2008-10-14T18:50:39Z<p>Choose a minimum search string size (eg. four characters). Go through your list of string entries and build up a dictionary of every four character substring, mapping to a list of entries that the substring appears in. When you do a search, look up based on the first four characters of the search string to get an initial set, then narrow down that initial set to only those that match the full search string.</p>
<p>The worst case of this is O(n), but you'll only get that if your string entries are almost all identical. The lookup dictionary is likely to be quite large, so it's probably a good idea to store it on disk or use a relational database :-)</p>
http://stackoverflow.com/questions/190740/setting-ruby-hash-default-to-a-list/190832#1908320Answer by Simon Howard for setting ruby hash .default to a listSimon Howard2008-10-10T11:00:11Z2008-10-10T11:00:11Z<pre><code>irb(main):002:0> a.default = []
=> []
irb(main):003:0> a[8] << 9
=> [9] # great!
</code></pre>
<p>With this statement, you have modified the default; you have not created a new array and added "9". At this point, it's identical to if you had done this instead:</p>
<pre><code>irb(main):002:0> a.default = [9]
=> [9]
</code></pre>
<p>Hence it's no surprise that you now get this:</p>
<pre><code>irb(main):006:0> a[9]
=> [9] # unawesome! shouldn't this be [] ??
</code></pre>
<p>Furthermore, the '<<' added the '9' to the array; it did not add it to the hash, which explains this:</p>
<pre><code>irb(main):004:0> a
=> {} # ?! would have expected {8=>[9]}
</code></pre>
<p>Instead of using .default, what you probably want to do in your program is something like this:</p>
<pre><code># Time to add a new entry to the hash table; this might be
# the first entry for this key..
myhash[key] ||= []
myhash[key] << value
</code></pre>
http://stackoverflow.com/questions/189388/what-are-the-most-useful-software-development-metrics/189414#1894141Answer by Simon Howard for What are the most useful software development metrics?Simon Howard2008-10-09T22:17:44Z2008-10-09T22:17:44Z<p>Average function length, or possibly a histogram of function lengths to get a better feel.</p>
<p>The longer a function is, the less obvious its correctness. If the code contains lots of long functions, it's probably a safe bet that there are a few bugs hiding in there.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/185053#18505365Answer by Simon Howard for What is the best comment in source code you have ever encountered?Simon Howard2008-10-08T21:47:45Z2008-10-09T22:13:39Z<p>The original Doom had an engine with static walls that could not move; the result was that all doors opened vertically; nothing could ever move horizontally. I burst out laughing when, after the source code was released, I was looking through the code and saw this in the source file for handling doors, at the start of a big block of commented-out code:</p>
<pre><code>// UNUSED
// Separate into p_slidoor.c?
#if 0 // ABANDONED TO THE MISTS OF TIME!!!
//
// EV_SlidingDoor : slide a door horizontally
// (animate midtexture, then set noblocking line)
//
</code></pre>
http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/189393#1893931Answer by Simon Howard for What is the most useful script you've written for everyday life?Simon Howard2008-10-09T22:10:28Z2008-10-09T22:10:28Z<p>I wrote a script for formatting C source files that automatically indents the code using an appropriate combination of tab and space characters, such that the file will appear correct regardless of what the tab setting on your editor is.</p>
<p>Source code is <a href="http://www.soulsphere.org/tools/smart-indent" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/179004/how-to-manage-shared-libraries/179030#1790301Answer by Simon Howard for How to manage shared libraries?Simon Howard2008-10-07T15:26:18Z2008-10-07T15:26:18Z<p>If the code is generic enough that you're using it in multiple projects, is it possible that you're reinventing the wheel? If, instead, you standardise on existing libraries, you'll have code that has already been well-tested and optimised, and you won't have anything to maintain.</p>
http://stackoverflow.com/questions/128705/do-you-ever-code-just-for-fun/175635#1756351Answer by Simon Howard for Do you ever code just for fun?Simon Howard2008-10-06T18:39:23Z2008-10-06T18:39:23Z<p>I do a lot of programming in my spare time just for the fun of it. Probably more than I do at work, in fact. A lot of my programming has been related to the original Doom (there's still a fairly thriving community of people online who play it), although I've written a whole range of things - libraries, compilers, etc. Some are game-related but not Doom-related.</p>
<p>I pride myself on learning as many different technologies as possible and mastering them to the best of my ability. So, while I'm perfectly confident building a Ruby-on-Rails webapp using Javascript, HTML and CSS, I'm also quite capable of writing bootloader-level C code to program an FPGA on an embedded processor. I find that knowing what is happening "underneath the hood" is a great help - and computers with their many layers of abstraction provide a nested collection of many "hoods" to look under :-)</p>
<p>I can also state for certain that it has helped me. Although I have never commercialised any of my personal work or made any money from it, it has been invaluable in gaining employment. At all of the three places that I have worked, the fact that I can point to things that I have done in my spare time has helped me to gain the job. It demonstrates that you have a personal interest in the technology rather than simply a professional one. It also helps to give you experience - I am easily as or more skilled than colleagues who have ten or more years of experience.</p>
http://stackoverflow.com/questions/175532/return-null-or-throw-exception/175550#1755500Answer by Simon Howard for Return 'null' or throw exceptionSimon Howard2008-10-06T18:22:48Z2008-10-06T18:22:48Z<p>It depends on the nature of the method and how it will be used. If it is normal behavior that the object may not be found, then return null. If it is normal behavior that the object is always found, throw an exception.</p>
<p>As a rule of thumb, use exceptions only for when <em>something exceptional</em> occurs. Don't write the code in such a way that exception throwing and catching is part of its normal operation.</p>
http://stackoverflow.com/questions/175323/should-you-display-whats-happening-in-the-unit-test-as-it-runs/175531#1755310Answer by Simon Howard for Should you display what's happening in the unit test as it runs?Simon Howard2008-10-06T18:19:24Z2008-10-06T18:19:24Z<p>Displaying information can be useful; if you're trying to find out why a test failed, it can be useful to be able to see more than just a stack trace, and what happened before the program reached the point where it failed. </p>
<p>However, in the "normal" case where everything succeeds, these messages are unnecessary clutter that distract from what you're really trying to do - ie. looking at an overview of which tests succeeded and failed.</p>
<p>I'd suggest redirecting your debugging messages to a log file. You can either do this by writing all your log message code to call a special "log print" function, or if you're writing a console program, you should be able to redirect stdout to a different file (I know for a fact that you can do this in both Unix and Windows). This way, you get the high level overview but the details are there if you need them.</p>
http://stackoverflow.com/questions/166550/what-to-put-in-the-if-block-and-what-to-put-in-the-else-block/166579#1665793Answer by Simon Howard for What to put in the IF block and what to put in the ELSE block?Simon Howard2008-10-03T12:31:24Z2008-10-03T12:31:24Z<p>If the code is to check for an error condition, I prefer to put that code first, and the "successful" code second; conceptually, this keeps a function call and its error-checking code together, which makes sense to me because they are related. For example:</p>
<pre><code> if (!some_function_that_could_fail())
{
// Error handling code
}
else
{
// Success code
}
</code></pre>
http://stackoverflow.com/questions/1679727/how-to-remember-to-use-return-value/1679741#1679741Comment by Simon Howard on How to remember to use return value?Simon Howard2009-11-05T10:53:52Z2009-11-05T10:53:52ZNot entirely true. gcc allows you to add the warn_unused_result attribute on functions that causes a warning if the return value is ignored.
<a href="http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcc/Function-Attributes.html" rel="nofollow">gcc.gnu.org/onlinedocs/gcc-4.1.1/…</a>http://stackoverflow.com/questions/1674233/lifetime-management-with-google-guice/1679632#1679632Comment by Simon Howard on Lifetime management with Google GuiceSimon Howard2009-11-05T10:46:51Z2009-11-05T10:46:51ZI think this is just a classic misunderstanding of what the GC is for (particularly easy to make this mistake if you've programmed in C++). In a garbage collected language, object lifetime/GC has nothing to do with releasing resources like file handles or network sockets.http://stackoverflow.com/questions/218264/how-can-i-detect-and-survive-being-slashdotted/218500#218500Comment by Simon Howard on How can I detect and survive being "Slashdotted"?Simon Howard2009-06-09T16:44:58Z2009-06-09T16:44:58ZIn my defence, the question doesn't just ask how to detect traffic spikes, but also how to survive them.
While my reply is obviously intended to be humorous, there's also a serious side to it. Most people haven't experienced the kind of bandwidth that these sites really produce and I think it can be difficult to appreciate. It really does swamp your connection to the point of being completely useless.http://stackoverflow.com/questions/496058/how-do-you-explain-the-concept-of-programming-to-someone-who-has-no-clue-what-i/496102#496102Comment by Simon Howard on How do you explain the concept of "Programming" to someone who has no clue what it is?Simon Howard2009-01-30T18:01:02Z2009-01-30T18:01:02ZI think you've misunderstood. annakata was referring to the phrase "legos", which is incorrect. "Lego bricks" is the correct term.http://stackoverflow.com/questions/496058/how-do-you-explain-the-concept-of-programming-to-someone-who-has-no-clue-what-i/496078#496078Comment by Simon Howard on How do you explain the concept of "Programming" to someone who has no clue what it is?Simon Howard2009-01-30T17:59:44Z2009-01-30T17:59:44ZI'd steer away from using language as an analogy. Although programming languages are described as "languages" they're really more like a mathematical notation or sequence of instructions.http://stackoverflow.com/questions/380354/the-perfect-programmable-chistmas-gift/380425#380425Comment by Simon Howard on The perfect *programmable* Chistmas Gift!Simon Howard2008-12-19T10:12:18Z2008-12-19T10:12:18ZLame. A real binary clock should show the time in seconds since the epoch.http://stackoverflow.com/questions/333185/what-type-of-scope-does-haskell-use/333211#333211Comment by Simon Howard on What type of scope does Haskell use?Simon Howard2008-12-10T10:12:49Z2008-12-10T10:12:49ZDon't add an answer to make a comment. Click the "add comment" button. It is impossible to see who you're replying to, otherwise.http://stackoverflow.com/questions/349706/is-there-a-pdf-or-chm-version-of-the-c-programming-language-by-b-stroustrup/349750#349750Comment by Simon Howard on Is there a .pdf or .chm version of The C++ Programming Language by B. Stroustrup ?Simon Howard2008-12-08T19:26:31Z2008-12-08T19:26:31ZThat's Bruce Eckel, not Eckels.http://stackoverflow.com/questions/346021/how-do-i-remove-objects-from-a-javascript-associative-array/346504#346504Comment by Simon Howard on How do I remove objects from a javascript associative array>Simon Howard2008-12-06T17:32:59Z2008-12-06T17:32:59ZDon't post comments as answers. Use the "add comment" button.http://stackoverflow.com/questions/333785/why-am-i-able-to-create-the-same-svn-branch-twiceComment by Simon Howard on Why am I able to create the same SVN branch twice?Simon Howard2008-12-02T13:42:05Z2008-12-02T13:42:05ZI agree with Blair, you need to give more detail here of what exactly you have done.http://stackoverflow.com/questions/323741/what-could-go-wrong-if-i-convert-ansi-encoded-files-to-utf-8/323757#323757Comment by Simon Howard on What could go wrong if I convert ANSI encoded files to UTF-8?Simon Howard2008-11-29T17:31:49Z2008-11-29T17:31:49ZJust to point out that it's not just the codebase he needs to worry about; if there's any dynamic content in the database, that would need to be converted as well.http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/310261#310261Comment by Simon Howard on What Easter Eggs have you placed in code?Simon Howard2008-11-25T17:21:32Z2008-11-25T17:21:32ZSpace Quest III had the same thing. There was a menu item named "boss key", but when you selected it, it would say "Oh I get it, you don't want your boss to know you've been playing Space Quest III for 5 hours, 23 minutes, 10 seconds" (counting since you started playing)http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/237825#237825Comment by Simon Howard on What is your best programmer joke?Simon Howard2008-11-25T11:27:08Z2008-11-25T11:27:08ZModern versions of Windows reply, "happy was unexpected at this time", which I think is even funnier :-)http://stackoverflow.com/questions/314492/is-there-an-easy-way-to-sort-an-array-of-chars-cComment by Simon Howard on Is there an easy way to sort an array of char*'s ? C++Simon Howard2008-11-24T16:17:35Z2008-11-24T16:17:35ZAre you talking about short text files that can be read into memory, or enormous files with millions of lines of text? If you can read them into memory, it's trivial, but for something larger scale a different approach would be needed.http://stackoverflow.com/questions/313931/is-converting-my-apps-to-net-a-really-good-ideaComment by Simon Howard on Is converting my Apps to .Net a really good idea?Simon Howard2008-11-24T13:09:20Z2008-11-24T13:09:20ZIf your current applications are native code, surely you're <i>already</i> locked into Windows? Developing for .NET would give you <i>less</i> lockin because of the existence of Mono etc.