User rmeador - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T16:00:39Zhttp://stackoverflow.com/feeds/user/10861http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1773047/what-are-the-recommended-methods-to-create-online-3d-gaming-engine/1773152#17731521Answer by rmeador for what are the recommended methods to create online 3d gaming engine ?rmeador2009-11-20T20:46:19Z2009-11-20T20:46:19Z<p>If you insist on having it be browser-based and available on all of the Big 3 OSes, I think you're going to have to go with Java. Flash may also be acceptable, but my personal experience with its 3D performance leaves something to be desired (as a user, not a developer... never developed 3D flash apps). Neither of them will be nearly as fast as a native app.</p>
http://stackoverflow.com/questions/1752473/how-to-turn-off-a-unit-test-in-cppunit1how to turn off a unit test in CPPUnitrmeador2009-11-17T22:58:16Z2009-11-18T11:30:32Z
<p>I (finally) have my app being unit tested with CPPUnit and I have CruiseControl.NET running the tests and displaying the test output. I have several tests that always fail, however, so CruiseControl always marks the build as failed. Is there any way I can "turn off" or "skip" or "ignore" these always-failing tests? I'd rather not just comment them out in the source, since they're pointing out valid errors in the app that we can't fix for business reasons at present, but may be able to address in a future release. If possible, I'd like to be able to still run the tests and see their output, but just have CPPUnit not count them as failed (or maybe even ignore them at the CruiseControl level).</p>
http://stackoverflow.com/questions/202405/enter-key-sometimes-not-recognized-in-windows-apps-under-cygwin2enter key sometimes not recognized in windows apps under cygwinrmeador2008-10-14T19:02:35Z2009-11-17T22:35:55Z
<p>At work, I use Cygwin a lot because it offers me a small oasis in the vast desert of Windows. I inevitably end up running some non-Cygwin programs through the bash shell, such as build scripts (batch files created in-house) and the Subversion CLI binaries (I have the Windows ones installed). 99% of the time, I don't have any problems using this setup. The other 1%, however, causes a strange issue:</p>
<p>With both the build scripts and SVN, most of the time the enter key is interpreted correctly. For instance, I'll kick off the database creation script and it will prompt me for the server name. I type in "localhost" and hit enter. Everything's fine. Then it gets to the end, if there are errors, and prints things out using <code>more</code>. No key that I press is recognized by <code>more</code>. I have to Ctrl-C out of it.</p>
<p>Similarly, if I do a Subversion update, normally everything is fine. In the case where the interactive conflict resolution happens, however, I'll usually type in "tf" for "theirs-full" and hit enter, but nothing happens. I have to Ctrl-C out of it and re-run the update with force merge or use TortoiseSVN in Windows to do it.</p>
<p>Any idea why Cygwin seems to randomly not be passing the enter key through to the programs? I considered that it may have something to do with Unix vs Windows style line endings, so I've tried typing those characters manually, but that doesn't seem to make a difference. Thanks.</p>
<p><strong>Edit</strong>: I just had this happen to me again and I realized something. It was SVN prompting me for a password. I typed in the password, which it echoed to the screen (bad) and hit enter... nothing. Hit enter a few more times, the cursor moves, but nothing happens. I hit Ctrl-C and it dumps me back to bash, which then says "bash: [my password]: command not found" followed by a number of new prompts equal to the number of times I hit the enter key. So what happened is the input never made it to SVN, but somehow got read by bash after SVN exited. I thought that may help someone figure out what is going on.</p>
http://stackoverflow.com/questions/1750210/draw-on-screen-border-in-commodore-64/1750279#17502791Answer by rmeador for Draw on screen border in Commodore 64rmeador2009-11-17T17:00:49Z2009-11-17T17:00:49Z<p>There was indeed a trick to getting rid of the border using sprites. I read about it recently in some article I came across about 4K demos or somesuch. <a href="http://en.wikipedia.org/wiki/Commodore%5F64%5Fdemos" rel="nofollow">Wikipedia</a> references it, which might be enough to set you on the track to finding how to do it.</p>
http://stackoverflow.com/questions/1726126/is-the-board-game-go-np-complete/1726141#17261417Answer by rmeador for Is the board game "Go" NP complete?rmeador2009-11-12T23:28:18Z2009-11-12T23:28:18Z<p>Chess and Go are both <a href="http://en.wikipedia.org/wiki/Game%5Fcomplexity#Complexities%5Fof%5Fsome%5Fwell-known%5Fgames" rel="nofollow">EXPTIME complete</a>. IIRC, Go has more possible moves, so I think it a higher multiple of that complexity class than chess. Wikipedia has a <a href="http://en.wikipedia.org/wiki/Go%5Fand%5Fmathematics" rel="nofollow">good article</a> on the complexity of Go.</p>
http://stackoverflow.com/questions/1710027/can-should-i-put-3rd-party-libraries-in-version-control/1710050#171005016Answer by rmeador for Can (Should) I put 3rd party libraries in version control?rmeador2009-11-10T18:16:17Z2009-11-10T18:16:17Z<p>In SVN, there is a pattern used to store third-party libraries called <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.vendorbr.html" rel="nofollow">vendor branches</a>. This same idea would work for any other SVN-like version control system. The basic idea is that you include the third-party source in its own branch and then copy that branch into your main tree so that you can easily apply new versions over your local customizations. It also cleanly keeps things separate. IMHO, it's wrong to directly include the third-party stuff in your tree, but a vendor branch strikes a nice balance.</p>
http://stackoverflow.com/questions/1703364/subversion-whitespace-removal-commit-hook/1703393#17033932Answer by rmeador for Subversion whitespace-removal commit hookrmeador2009-11-09T20:03:33Z2009-11-09T20:03:33Z<p>I'm pretty sure that <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.reposhooks.pre-commit.html" rel="nofollow">pre-commit hooks</a> can't be used to modify the transaction in progress. It can only allow or deny the commit action. In your case, you'd want to examine the files to see if they meet your whitespace requirements and fail the commit with a useful error message if they do not. You could use a post-commit hook to do what you propose, but it would involve making a second commit from the hook script to fix the bad whitespace in the first commit. I think the pre-commit hook approach is better.</p>
http://stackoverflow.com/questions/538199/how-to-get-a-flex-text-control-to-word-wrap6how to get a Flex text control to word wraprmeador2009-02-11T18:44:24Z2009-11-06T21:48:33Z
<p>I'm creating an Adobe Flex application and I have a Text control (mx:Text), which is supposedly used when you need multiline noneditable text (as opposed to a Label, which is single line noneditable text). My text control does not wrap when I resize the browser window to be smaller than the text (or load it with the browser window already smaller). Upon consulting <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_08.html" rel="nofollow">this doc</a> that I found, it would seem that the word-wrap functionality only happens if you specify an absolute width in pixels. That is exactly what I'm trying to avoid. I want the text to wrap to fit inside the size given to my Flash object so that it is always visible... is there any way to accomplish this, through some property I'm missing or perhaps a different control? Thanks.</p>
http://stackoverflow.com/questions/1684390/how-does-programming-languages-differ-between-different-parts-of-the-world/1684441#16844412Answer by rmeador for How does programming languages differ between different parts of the world? rmeador2009-11-05T23:40:35Z2009-11-05T23:40:35Z<p>There are indeed a small number of <a href="http://en.wikipedia.org/wiki/Non-English-based%5Fprogramming%5Flanguages" rel="nofollow">non-English programming languages</a>. They do not enjoy widespread use. In programming in particular, and slightly less with technology in general, English seems to be the language of choice. I think this is likely due to the Internet originating in the US.</p>
http://stackoverflow.com/questions/1683207/inspiration-needed-selecting-large-amounts-of-data-for-a-highscore/1683283#16832831Answer by rmeador for Inspiration needed: Selecting large amounts of data for a highscore.rmeador2009-11-05T20:15:08Z2009-11-05T20:15:08Z<p>Interesting problem. In my experience, batch processes should only be used as a last resort. You are usually better off having your software calculate values as it inserts/updates the database with the new data. For your scenario, this would mean that it should run the score calculation code every time it inserts or updates any of the data that goes into calculating the team's score. Store the calculated value in the DB with the team's record. Put an index on the calculated value field. You can then ask the database to sort on that field and it will be relatively fast. Even with millions of records, it should be able to return the top n records in O(n) time or better. I don't think you'll even need a high scores table at all, since the query will be fast enough (unless you have some other need for the high scores table other than as a cache). This solution also gives you real-time results.</p>
http://stackoverflow.com/questions/1682920/determine-if-a-user-is-idented-on-irc/1683173#16831731Answer by rmeador for Determine If a User Is Idented On IRCrmeador2009-11-05T20:02:30Z2009-11-05T20:02:30Z<p>Nick registration is not part of the IRC standard. It is always offered by customized IRC servers and/or bots. I don't think you're going to find a truly universal solution, but NickServ is a common available implementation, which would work on many networks. Wikipedia has <a href="http://en.wikipedia.org/wiki/Internet%5FRelay%5FChat%5Fservices#History" rel="nofollow">more info</a>.</p>
<p>You may want to sidestep the problem entirely and have your user register with your bot, instead of with nickserv. Your bot would then do the password checking, and would invalidate the user's credentials when the user logs out. This would be a universal solution.</p>
http://stackoverflow.com/questions/1677415/does-stack-grow-upward-or-downward/1677453#16774530Answer by rmeador for Does stack grow upward or downward?rmeador2009-11-04T23:42:02Z2009-11-04T23:42:02Z<p>On an x86, the memory "allocation" of a stack frame consists simply of subtracting the necessary number of bytes from the stack pointer (I believe other architectures are similar). In this sense, I guess the stack growns "down", in that the addresses get progressively smaller as you call more deeply into the stack (but I always envision the memory as starting with 0 in the top left and getting larger addresses as you move to the right and wrap down, so in my mental image the stack grows up...). The order of the variables being declared may not have any bearing on their addresses -- I believe the standard allows for the compiler to reorder them, as long as it doesn't cause side effects (someone please correct me if I'm wrong). They're just stuck somewhere into that gap in the used addresses created when it subtracts the number of bytes from the stack pointer.</p>
<p>The gap around the array may be some kind of padding, but it's mysterious to me.</p>
http://stackoverflow.com/questions/1676567/find-replace-and-escape-string-linux/1676617#16766170Answer by rmeador for find, replace and escape string linuxrmeador2009-11-04T21:03:57Z2009-11-04T21:03:57Z<p>I think the <a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?sed" rel="nofollow">sed</a> command would do the job nicely, provided your onclick handler and the "Some Text Here" don't include any nested HTML tags that the regex might confuse for the closing tags of the replacement string.</p>
http://stackoverflow.com/questions/1652563/svn-differences-between-tags-and-a-revision-number-reference/1652602#16526020Answer by rmeador for svn: differences between tags and a revision number referencermeador2009-10-30T22:15:07Z2009-10-30T22:15:07Z<p>Tags do not maintain a name/number mapping. The repository revision number is global, so any time you change any file, regardless of whether its on trunk/branches/tags, the number will increment. The value of the tag is that because you don't commit to it (by convention; this is not enforced by SVN), the tagged tree will always be the same as when you tagged it, even though you're getting the HEAD revision when you pull down the tag directory.</p>
http://stackoverflow.com/questions/1633935/are-and-the-only-file-system-symbolic-links/1634091#16340911Answer by rmeador for Are /../ and /./ the only file system symbolic links?rmeador2009-10-27T22:43:05Z2009-10-27T22:43:05Z<p>Have you considered using something like <a href="http://en.wikipedia.org/wiki/Chroot" rel="nofollow">chroot</a>? You can create something called a "chroot jail" that will prevent people from getting outside it. This is enforced by the OS, so you don't have to write it yourself. Note that this only works on *nix, and on some variants of *nix, it does not have all the security features necessary to make it foolproof (i.e. there are known ways of escaping).</p>
http://stackoverflow.com/questions/1626290/c-virtual-function-table-memory-cost/1626844#16268441Answer by rmeador for C++ virtual function table memory costrmeador2009-10-26T19:28:52Z2009-10-26T19:28:52Z<p>Given all the answers that are already here, I think I must be crazy, but this seems right to me so I'm posting it anyways. When I first saw your code example, I thought you were slicing the instances of <code>B</code> and <code>C</code>, but then I looked a little closer. I'm now reasonably sure your example won't compile at all, but I don't have a compiler on this box to test.</p>
<pre><code>A * array = new A[1000];
array[0] = new B();
array[1] = new C();
</code></pre>
<p>To me, this looks like the first line allocates an array of 1000 <code>A</code>. The subsequent two lines operate on the first and second elements of that array, respectively, which are instances of <code>A</code>, not pointers to <code>A</code>. Thus you cannot assign a pointer to <code>A</code> to those elements (and <code>new B()</code> returns such a pointer). The types are not the same, thus it should fail at compile time (unless <code>A</code> has an assignment operator that takes an <code>A*</code>, in which case it will do whatever you told it to do).</p>
<p>So, am I entirely off base? I look forward to finding out what I missed.</p>
http://stackoverflow.com/questions/1615403/best-way-to-manage-multiple-apps-in-subversion/1615420#16154207Answer by rmeador for Best way to manage multiple apps in Subversionrmeador2009-10-23T19:22:55Z2009-10-23T19:22:55Z<p>The usual approach is pretty much exactly your middle example. There's a good discussion of branching patterns in <a href="http://svnbook.red-bean.com/en/1.5/svn.branchmerge.commonpatterns.html" rel="nofollow">the subversion documentation</a>.</p>
http://stackoverflow.com/questions/1609846/eclipse-french-support/1609872#16098720Answer by rmeador for Eclipse French supportrmeador2009-10-22T20:49:59Z2009-10-22T20:49:59Z<p>AFAIK, Eclipse, like most (all?) Java applications, uses UTF8 as its normal character set. Thus, it is not Eclipse that needs to be changed to enter French characters, but your operating system (specifically the keyboard layout). You'll probably find it easier to figure out whatever escape sequences your OS uses to enter characters not representable on your keyboard. On Windows, you can do this with the Character Map utility available under Accessories. I'm not sure how to do it on other platforms.</p>
http://stackoverflow.com/questions/1603504/how-to-run-javascript-code-in-sequence/1603541#16035410Answer by rmeador for How to run JavaScript code in sequence?rmeador2009-10-21T20:52:24Z2009-10-21T20:52:24Z<p>I don't know JQuery, so please forgive me if I'm off base, but it seems to me that you can solve your problem by submitting the form inside the geocode results handler (where it says <code>// Store the results in a hidden input field.</code>) instead of from that other success handler (which I gather is supposed to be called when an AJAX query succeeds?). Is there something preventing you from doing it that way?</p>
http://stackoverflow.com/questions/1597849/md5-hash-issue-with-java/1597880#15978801Answer by rmeador for MD5 Hash Issue with Java.rmeador2009-10-20T23:26:41Z2009-10-20T23:26:41Z<p>Where does <code>msg</code> come from in each case? I think it's likely you have a newline character on the end in one case but not the other. It's also possible that your character encodings are set differently somehow in the two scenarios. I highly doubt that anything else in your example is changing except <code>msg</code>.</p>
http://stackoverflow.com/questions/1597337/how-is-server-side-javascript-used-implemented/1597584#15975841Answer by rmeador for How is server-side javascript used/implemented?rmeador2009-10-20T22:03:42Z2009-10-20T22:03:42Z<p>I have extensive experience using server-side Javascript in a Windows environment. The Windows Scripting Host on all Windows systems provides Javascript as one of the default languages. You can create a COM object to interface with it from any language that supports COM. I think <a href="http://msdn.microsoft.com/en-us/library/zwzhawfx%28VS.85%29.aspx" rel="nofollow">this MSDN page</a> will get you started if you want to use this approach.</p>
<p>My gut feeling is that you'll be happier if you choose something that doesn't involve COM. I just wanted to make sure you had all the options in front of you.</p>
http://stackoverflow.com/questions/1591462/share-data-in-lan/1591487#15914871Answer by rmeador for Share data in LANrmeador2009-10-19T22:28:23Z2009-10-19T22:28:23Z<p>Probably the easiest way is to use UDP to periodically send a message (containing some info advertising your library's presence) to the <a href="http://en.wikipedia.org/wiki/Broadcast%5Faddress" rel="nofollow">broadcast address</a>. This will be received by all the hosts on your subnet (and perhaps further, depending on your router configuration). If your app listens for these messages from other hosts, it will over time be able to find all the other instances of your app on the subnet.</p>
<p>Edit: found <a href="http://stackoverflow.com/questions/337422/how-to-udp-broadcast-with-c-in-linux">this question</a> which has answers that go into more specifics of what I'm talking about.</p>
http://stackoverflow.com/questions/1580757/what-is-the-official-name-of-cs-arrow-operator5what is the official name of C++'s arrow (->) operator?rmeador2009-10-16T22:38:08Z2009-10-17T21:05:12Z
<p>I think the subject says it all. I always call it the "arrow operator", but I'm sure it has an official name. I quickly skimmed the C++ standard and didn't see it mentioned by name.</p>
http://stackoverflow.com/questions/198892/img-onload-doesnt-work-well-in-ie75img onload doesn't work well in IE7rmeador2008-10-13T20:18:52Z2009-10-16T23:14:09Z
<p>I have an img tag in my webapp that uses the onload handler to resize the image:</p>
<pre><code><img onLoad="SizeImage(this);" src="foo" >
</code></pre>
<p>This works fine in Firefox 3, but fails in IE7 because the image object being passed to the <code>SizeImage()</code> function has a width and height of 0 for some reason -- maybe IE calls the function before it finishes loading?. In researching this, I have discovered that other people have had this same problem with IE. I have also discovered that this isn't valid HTML 4. This is our doctype, so I don't know if it's valid or not:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
</code></pre>
<p>Is there a reasonable solution for resizing an image as it is loaded, preferably one that is standards-compliant? The image is being used for the user to upload a photo of themselves, which can be nearly any size, and we want to display it at a maximum of 150x150. If your solution is to resize the image server-side on upload, I know that is the correct solution, but I am forbidden from implementing it :( It must be done client side, and it must be done on display.</p>
<p>Thanks.</p>
<p><strong>Edit</strong>: Due to the structure of our app, it is impractical (bordering on impossible) to run this script in the document's onload. I can only reasonably edit the image tag and the code near it (for instance I could add a <code><script></code> right below it). Also, we already have Prototype and EXT JS libraries... management would prefer to not have to add another (some answers have suggested jQuery). If this can be solved using those frameworks, that would be great.</p>
<p><strong>Edit 2</strong>: Unfortunately, we must support Firefox 3, IE 6 and IE 7. It is desirable to support all Webkit-based browsers as well, but as our site doesn't currently support them, we can tolerate solutions that only work in the Big 3.</p>
http://stackoverflow.com/questions/1569467/calculate-date-add-but-only-weekdays/1569520#15695201Answer by rmeador for calculate date add, but only weekdaysrmeador2009-10-14T23:12:20Z2009-10-14T23:17:38Z<p>Your plan seems like it should work. Make sure you wrap it in a function instead of doing out the calculations every place you use it so that if/when you discover you need to account for holidays, you don't have to change it in tons of places.</p>
<p>The best way I can think of for implementing support for holidays would be to add days one at a time in a loop. Each iteration, check if its a weekend or a holiday, and if it is add another day and continue (to skip it). Below is an example in pseudocode (I don't know VB); no guarantees its correct. Of course, you need to provide your own implementations for isWeekend() and isHoliday().</p>
<pre><code>function addBusinessDays(startDate, numDays)
{
Date newDate = startDate;
while (numDays > 0)
{
newDate.addDays(1);
if (newDate.isWeekend() || newDate.isHoliday())
continue;
numDays -= 1;
}
return newDate;
}
</code></pre>
<p>My first thought for the holiday thing was to simply look up the number of holidays between the start date and the end date and add that to your calculation, but of course this won't work because the end date is dependent on the number of holidays in that interval. I think an iterative solution is the best you'll get for holidays.</p>
http://stackoverflow.com/questions/1563280/programmer-not-a-blogger/1563429#15634293Answer by rmeador for Programmer, not a bloggerrmeador2009-10-13T22:59:47Z2009-10-13T22:59:47Z<p>I couldn't agree with Nick Bedord more. You've already written a correct, well-formed, easy-to-understand piece about what you're doing at work and posted it on the internet. How is it different whether you're writing about them asking you to blog, or them asking you to code some nifty widget? Maybe it would help you to think that you're writing it to the SO crowd :)</p>
http://stackoverflow.com/questions/1561433/adding-audible-ticks-to-a-waveform-for-onset-detection-debugging/1561474#15614740Answer by rmeador for adding "audible ticks" to a waveform for onset detection debuggingrmeador2009-10-13T16:45:12Z2009-10-13T16:45:12Z<p>Figure out where in your sample you want to insert your tick (include the length of the tick, so this is a range, not a point). Take the <a href="http://en.wikipedia.org/wiki/Fast%5FFourier%5Ftransform" rel="nofollow">FFT</a> of that section of the waveform. Add to the frequency domain representation whatever frequency components you desire for your "tick" sound (simplest would be just a single frequency tone). Perform the inverse FFT on the result and voila, you have your tone mixed into the original signal. I think (it's been a while since I've done this).</p>
http://stackoverflow.com/questions/1557352/how-do-i-escape-the-constiterator-trap-when-passing-a-const-container-reference/1557472#15574727Answer by rmeador for How do I escape the const_iterator trap when passing a const container reference as a parameterrmeador2009-10-12T23:21:10Z2009-10-12T23:21:10Z<p>If I understand what you're saying correctly, you're trying to use <code>const</code> to indicate to the caller that your function will not modify the collection, but you want the caller (who may have a non-<code>const</code> reference to the collection) to be able to modify the collection using the iterator you return. If so, I don't think there's a clean solution for that, unless the container provides a mechanism for turning a <code>const</code> interator into a non-<code>const</code> one (I'm unaware of a container that does this). Your best bet is probably to have your function take a non-<code>const</code> reference. You may also be able to have 2 overloads of your function, one <code>const</code> and one non-<code>const</code>, so that in the case of a caller who has only a <code>const</code> reference, they will still be able to use your function.</p>
http://stackoverflow.com/questions/1539361/system-out-print-os-redirect-vs-writing-to-a-file-which-is-faster/1539487#15394870Answer by rmeador for System.out.print + OS redirect vs writing to a file, which is faster?rmeador2009-10-08T17:59:29Z2009-10-08T17:59:29Z<p>What's the difference? Stdout is a stream, so is a file. On most operating systems, there is literally no difference. On windows, there are different functions you have to use when handling file streams vs output streams, but they're still almost exactly the same API (just the file ones are prefixed with 'f'). I'd be very surprised if there's a difference in performance.</p>
<p>You can of course use alternative APIs for files, but I do not see a compelling reason to do so, since the files are still streams at the OS level.</p>
http://stackoverflow.com/questions/1534659/how-to-dereference-a-pointer-passed-by-reference-in-c/1534720#15347200Answer by rmeador for How to dereference a pointer passed by reference in c++?rmeador2009-10-07T23:08:36Z2009-10-07T23:08:36Z<p>I don't think <code>node</code> needs to be passed by reference. A simple pointer should do the job. This is because you don't ever need to change it directly. Why are you passing it to <code>instantiateNode()</code>? It will always be NULL, so what good does it do? If <code>instantiateNode()</code> also has its first argument passed as a reference, why? You are passing in the parent, so <code>instantiateNode()</code> can just access the thing <code>node</code> should represent via <code>parent->child</code>. Even if for some reason <code>instantiateNode()</code> does take it's param by reference and it's required to do so, I believe the function will still work if you drop the reference from <code>insert()</code>'s first argument. Whatever <code>instantiateNode()</code> does with that value will simply be lost when the function returns. I'm sorry that's so confusing, but I can't think of a better way to word it.</p>
<p>There's another interpretation of your problem... maybe your call to <code>insert()</code> should read:</p>
<pre><code>insert(node, val, node->child);
</code></pre>
http://stackoverflow.com/questions/1793226/how-can-i-play-continuous-music-in-the-background-when-my-iphone-app-is-runningComment by rmeador on How can I play continuous music in the background when my iPhone app is running?rmeador2009-11-24T22:08:40Z2009-11-24T22:08:40Zplease have a way to turn off the music. most people get very annoyed by apps (and especially web pages) that play music they can't turn off.http://stackoverflow.com/questions/1783137/examples-of-vulnerable-php-code/1783153#1783153Comment by rmeador on Examples of vulnerable PHP code?rmeador2009-11-23T16:04:36Z2009-11-23T16:04:36Zall this proves is that there is no one easy fix. You actually have to understand the vulnerabilities and <i>think</i> when you implement so that you apply the correct fix to the specific problem you have.http://stackoverflow.com/questions/1783822/format-of-for-loops/1783975#1783975Comment by rmeador on format of for loopsrmeador2009-11-23T16:02:36Z2009-11-23T16:02:36ZI can't disagree with you more. I expect that knowing prefix vs postfix increment is among the absolute minimum of knowledge that I would accept for a maintenance programmer. I think it should be used when it can be, because it's very easy to mistype i = i + 1 in a way that the compiler won't catch.http://stackoverflow.com/questions/1773865/vim-spell-optionsComment by rmeador on Vim Spell optionsrmeador2009-11-20T23:46:29Z2009-11-20T23:46:29ZI want to find an option that makes it ignore identifiers in my source that are found within string literals or comments... right now it marks them as spelling errors, even though the comment is often about the very thing it says is misspelled.http://stackoverflow.com/questions/1773832/what-is-best-port-for-program/1773889#1773889Comment by rmeador on what is best port for programrmeador2009-11-20T23:44:07Z2009-11-20T23:44:07ZI agree with you that it's a dangerous game, but it's also sometimes necessary in order to make your service available from within a very restricted network. IIRC, AIM will attempt to use a bunch of different ports to get out if its normal ports are blocked. I've seen it settle on both port 80 and port 23. A number of filesharing apps use this technique as well.http://stackoverflow.com/questions/1767272/svn-repository-structure/1767301#1767301Comment by rmeador on SVN Repository Structurermeador2009-11-19T23:48:24Z2009-11-19T23:48:24Zthis has been my experience as well. +1http://stackoverflow.com/questions/1765655/sql-query-tree-like-structure/1765672#1765672Comment by rmeador on sql query tree like structurermeador2009-11-19T18:53:41Z2009-11-19T18:53:41Z+1 preorder traversal is definitely the way to gohttp://stackoverflow.com/questions/1752473/how-to-turn-off-a-unit-test-in-cppunit/1752491#1752491Comment by rmeador on how to turn off a unit test in CPPUnitrmeador2009-11-17T23:18:00Z2009-11-17T23:18:00ZI'm afraid I don't understand what you mean by "testSuite_* code". AFAIK, there is no code that looks like that in my test app. I am using the convenience macros, so possibly what you mean is obfuscated by that...http://stackoverflow.com/questions/1445266/cruisecontrol-net-conflicts-with-other-build-tools-leaves-svn-wc-broken/1445798#1445798Comment by rmeador on CruiseControl.NET conflicts with other build tools, leaves SVN WC brokenrmeador2009-11-17T23:01:39Z2009-11-17T23:01:39ZI still don't know the original cause of this problem, but it did again manifest while CC was disabled, so it was not to blame after all.http://stackoverflow.com/questions/1750504/prefix-is-in-method-name-for-verification-methods/1750639#1750639Comment by rmeador on Prefix "Is" in Method Name for Verification Methodsrmeador2009-11-17T18:03:13Z2009-11-17T18:03:13ZI have never considered this idea... I like it a lot. I worry that it is dissimilar enough from most people's expectations that it will make the code hard for others to use/maintain, however.http://stackoverflow.com/questions/1725363/prime-factorization/1725582#1725582Comment by rmeador on Prime Factorizationrmeador2009-11-12T22:38:16Z2009-11-12T22:38:16ZIIRC, the elliptic curve algorithm published by the NSA was discovered to have a something that could be a back door, so maybe that's why they were pushing its use? <a href="http://www.schneier.com/essay-198.html" rel="nofollow">schneier.com/essay-198.html</a>http://stackoverflow.com/questions/1704643/axapta-validation-fires-twice-follow-upComment by rmeador on Axapta validation fires twice (follow-up)rmeador2009-11-09T23:41:03Z2009-11-09T23:41:03Zwhy didn't you just edit your original question?http://stackoverflow.com/questions/1690017/database-design-is-it-bad-to-keep-delimited-strings-in-a-database/1690037#1690037Comment by rmeador on Database Design: Is it bad to keep delimited strings in a databasermeador2009-11-06T21:08:39Z2009-11-06T21:08:39Z+1. I can speak from extended personal experience with comma-delimited and URL-encoded strings stored in the database that they are the WORST IDEA EVER. If I was in charge, I'd instantly fire anyone who checked in code that did such a thing.http://stackoverflow.com/questions/1690056/boolean-concatenation-whats-the-real-term-for-this-pattern/1690125#1690125Comment by rmeador on Boolean Concatenation? What's the real term for this pattern?rmeador2009-11-06T21:06:38Z2009-11-06T21:06:38Zif your functions are both performing the validation and marking the UI, they're doing too many things. Those are separate concerns.http://stackoverflow.com/questions/1688338/why-the-name-main-for-function-main/1688359#1688359Comment by rmeador on Why the name main for function main()rmeador2009-11-06T18:01:38Z2009-11-06T18:01:38Z@David: there is some evidence that the side of the road you drive on does have a slight effect on safety. This is because of the dominant eye of the people driving. <a href="http://en.wikipedia.org/wiki/Right-_and_left-hand_traffic#Safety_factors" rel="nofollow">en.wikipedia.org/wiki/…</a>