User Dalroth - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:14:14Z http://stackoverflow.com/feeds/user/1931 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/34510/what-is-a-race-condition 11 What is a race condition? Dalroth 2008-08-29T15:55:10Z 2009-10-19T02:08:57Z <p>When writing multi-threaded applications, one of the most common problems experienced are race conditions. </p> <p>My question to the community, is:</p> <p>What is a race condition? How do you detect them? How do you handle them? And finally, how do you prevent them from occurring?</p> http://stackoverflow.com/questions/62618/what-is-the-best-way-to-merge-mp3-files/1479701#1479701 1 Answer by Dalroth for What is the best way to merge mp3 files? Dalroth 2009-09-25T21:33:54Z 2009-09-25T21:33:54Z <p>Use ffmpeg or a similar tool to convert all of your MP3s into a consistent format, e.g. </p> <pre><code>ffmpeg -i originalA.mp3 -f mp3 -ab 128kb -ar 44100 -ac 2 intermediateA.mp3 ffmpeg -i originalB.mp3 -f mp3 -ab 128kb -ar 44100 -ac 2 intermediateB.mp3 </code></pre> <p>Then, at runtime, concat your files together: </p> <pre><code>cat intermediateA.mp3 intermediateB.mp3 &gt; output.mp3 </code></pre> <p>Finally, run them through the tool <strong><a href="http://mp3val.sourceforge.net/" rel="nofollow">MP3Val</a></strong> to fix any stream errors without forcing a full re-encode: </p> <pre><code>mp3val output.mp3 -f -nb </code></pre> http://stackoverflow.com/questions/44799/preventing-command-line-injection-attacks 4 Preventing Command Line Injection Attacks Dalroth 2008-09-04T21:12:50Z 2008-10-23T13:51:08Z <p>We're currently building an application that executes a number of external tools. We often have to pass information entered into our system by users to these tools.</p> <p>Obviously, this is a big security nightmare waiting to happen.</p> <p>Unfortunately, we've not yet found any classes in the .NET Framework that execute command line programs while providing the same kind of guards against injection attacks as the IDbCommand objects do for databases.</p> <p>Right now, we're using a very primitive string substitution which I suspect is rather insufficient:</p> <blockquote> <pre><code>protected virtual string Escape(string value) { return value .Replace(@"\", @"\\") .Replace(@"$", @"\$") .Replace(@"""", @"\""") .Replace("`", "'") ; } </code></pre> </blockquote> <p>What do you guys do to prevent command-line injection attacks? We're planning to implement a regex that is very strict and only allows a very small subset of characters through, but I was wondering if there was a better way.</p> <p>Some clarifications:</p> <ul> <li>Some of these tools do not have APIs we can program against. If they did, we wouldn't be having this problem.</li> <li>The users don't pick tools to execute, they enter meta-data which the tools we've chosen use (for example, injecting meta data such as copyright notices into target files). </li> </ul> http://stackoverflow.com/questions/34519/what-is-a-semaphore 6 What is a semaphore? Dalroth 2008-08-29T15:58:15Z 2008-09-16T15:10:43Z <p>A semaphore is a programming concept that is frequently used to solve multi-threading problems. My question to the community: </p> <p>What is a semaphore and how do you use it?</p> http://stackoverflow.com/questions/34524/what-is-a-mutex 7 What is a mutex? Dalroth 2008-08-29T15:59:25Z 2008-09-05T21:37:01Z <p>A mutex is a programming concept that is frequently used to solve multi-threading problems. My question to the community: </p> <p>What is a mutex and how do you use it?</p> http://stackoverflow.com/questions/41752/nhibernate-generators/41793#41793 3 Answer by Dalroth for NHibernate Generators Dalroth 2008-09-03T14:29:47Z 2008-09-03T14:29:47Z <p>First question you need to ask yourself is why do you even need a generator. Honestly, in my experience writing hbm files is not difficult at all.</p> <p>That being said, if you really don't want to write the hbm files, maybe you should look into <a href="http://www.castleproject.org/activerecord/index.html" rel="nofollow">Active Record</a>.</p> http://stackoverflow.com/questions/34512/what-is-a-deadlock 4 What is a deadlock? Dalroth 2008-08-29T15:56:27Z 2008-09-02T20:42:53Z <p>When writing multi-threaded applications, one of the most common problems experienced are deadlocks. </p> <p>My question to the community, is:</p> <p>What is a deadlock? How do you detect them? Do you handle them? And finally, how do you prevent them from occurring?</p> http://stackoverflow.com/questions/34708/how-can-i-generate-a-unique-small-random-and-user-friendly-key 10 How can I generate a unique, small, random, and user-friendly key? Dalroth 2008-08-29T16:49:24Z 2008-08-29T18:20:03Z <p>A few months back I was tasked with implementing a unique and random code for our web application. The code would have to be user friendly and as small as possible, but still be essentially random (so users couldn't easily predict the next code in the sequence).</p> <p>It ended up generating values that looked something like this:</p> <p>Af3nT5Xf2</p> <p>Unfortunately, I was never satisfied with the implementation. Guid's were out of the question, they were simply too big and difficult for users to type in. I was hoping for something more along the lines of 4 or 5 characters/digits, but our particular implementation would generate noticeably patterned sequences if we encoded to less than 9 characters.</p> <p>Here's what we ended up doing:</p> <p>We pulled a unique sequential 32bit id from the database. We then inserted it into the center bits of a 64bit RANDOM integer. We created a lookup table of easily typed and recognized characters (A-Z, a-z, 2-9 skipping easily confused characters such as L,l,1,O,0, etc.). Finally, we used that lookup table to base-54 encode the 64-bit integer. The high bits were random, the low bits were random, but the center bits were sequential.</p> <p>The final result was a code that was much smaller than a guid and looked random, even though it absolutely wasn't.</p> <p>I was never satisfied with this particular implementation. What would you guys have done?</p> http://stackoverflow.com/questions/34571/whats-the-best-way-of-unit-testing-private-methods/34630#34630 0 Answer by Dalroth for What's the best way of unit testing private methods? Dalroth 2008-08-29T16:23:45Z 2008-08-29T16:23:45Z <p>I tend not to test private methods. There lies madness. Personally, I believe you should only test your publicly exposed interfaces (and that includes protected and internal methods). </p> http://stackoverflow.com/questions/34524/what-is-a-mutex/34563#34563 2 Answer by Dalroth for What is a mutex? Dalroth 2008-08-29T16:08:23Z 2008-08-29T16:08:23Z <p>Nope, just asking some basic questions that I noticed were missing, and I consider it bad form to answer your own questions.</p> http://stackoverflow.com/questions/5043/how-can-i-get-rich-just-programming/16370#16370 1 Answer by Dalroth for How can I get rich just programming Dalroth 2008-08-19T15:11:15Z 2008-08-19T15:11:15Z <p>I don't think you're very likely to get rich by programming alone. However, you will make a very nice salary well beyond what the average person will make. A little smart investing and some frugal living for a decade or two can go a long way.</p> <p>And if your startup makes it big? Well, then that's just gravy... :)</p>