User Daniel F. Hanson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T19:04:01Z http://stackoverflow.com/feeds/user/316 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1215105/drawing-a-subregion-of-a-bitmapsource 0 Drawing a subregion of a BitmapSource Daniel F. Hanson 2009-07-31T22:04:05Z 2009-09-13T07:59:59Z <p>I'm creating a level editor in WPF for a 2D tile-based game. I'm trying to figure out the best way to load the tileset image file and render each tile in the appropriate location to reconstruct the map.</p> <p>Currently, I'm loading the image as a BitmapSource, and I'm deriving from the Canvas class for the control that displays the map. I'm overriding the OnRender method so I can get a DrawingContext. However, DrawingContext.DrawImage doesn't appear to have an appropriate overload that draws only a subrect of an image; it looks like I have to draw the entire image.</p> <p>What should I use if I want to draw subrects of an image onto a Canvas? Or should I be using something other than a Canvas?</p> http://stackoverflow.com/questions/78091/how-can-i-capture-the-stdin-and-stdout-of-system-command-from-a-perl-script 1 How can I capture the stdin and stdout of system command from a Perl script? Daniel F. Hanson 2008-09-16T22:47:41Z 2009-01-29T07:33:03Z <p>In the middle of a Perl script, there is a system command I want to execute. I have a string that contains the data that needs to be fed into stdin (the command only accepts input from stdin), and I need to capture the output written to stdout. I've looked at the various methods of executing system commands in Perl, and the <code>open</code> function seems to be what I need, except that it looks like I can only capture stdin or stdout, not both.</p> <p>At the moment, it seems like my best solution is to use <code>open</code>, redirect stdout into a temporary file, and read from the file after the command finishes. Is there a better solution?</p> http://stackoverflow.com/questions/151147/mathematics-for-computer-science-students/151172#151172 2 Answer by Daniel F. Hanson for Mathematics for Computer Science Students Daniel F. Hanson 2008-09-29T23:24:16Z 2008-09-29T23:24:16Z <p>If you've only got a couple months to catch up on your math skills, unless you're inherently sharp at math, you'll find it extremely difficult to catch up. I would strongly recommend focusing on a few core areas and not worrying about the higher level math subjects. In particular, pre-calc algebra, discrete math, and statistics are the areas you'll want to concentrate on, and probably some basic geometry and trig, too. Calculus is a nice-to-have if you can squeeze it in, but differential equations is a little overboard, in my opinion. I would also consider linear algebra to be fluff as well, unless you plan on going into computer graphics.</p> <p>This is all just my opinion, of course.</p> http://stackoverflow.com/questions/32897/do-java-multi-line-comments-account-for-strings 2 Do Java multi-line comments account for strings? Daniel F. Hanson 2008-08-28T17:47:56Z 2008-09-27T16:06:11Z <p>This question would probably apply equally as well to other languages with C-like multi-line comments. Here's the problem I'm encountering. I'm working with Java code in Eclipse, and I wanted to comment out a block of code. However, there is a string that contains the character sequence "*/", and Eclipse thinks that the comment should end there, even though it is inside a string. It gives me tons of errors and fails to build.</p> <pre><code>/* ... some Java code ... ... "... */ ..." ... ... more Java code ... */ </code></pre> <p>Does the Java specification match with Eclipse's interpretation of my multi-line comment? I would like to think that Java and/or Eclipse would account for this sort of thing.</p> http://stackoverflow.com/questions/52883/graph-searching-algorithm/52923#52923 2 Answer by Daniel F. Hanson for Graph searching algorithm Daniel F. Hanson 2008-09-09T21:16:26Z 2008-09-09T21:16:26Z <p>One would think your standard <a href="http://en.wikipedia.org/wiki/Breadth-first_search" rel="nofollow">BFS</a> should work here. Whenever you add a node to the open list, you can wrap it into a struct that holds which direction it is using (up or down) and a boolean flag indicating whether it has switched directions yet. These can be used to determine which outgoing edges from that node are valid.</p> <p>To find all shortest paths of equal length, include the number of edges traversed so far in your struct. When you find your first shortest path, make a note of the path length and stop adding nodes to the open list. Keep going through the remaining nodes on the list until you have checked all paths of the current length, then stop.</p> http://stackoverflow.com/questions/35380/print-odd-even-numbers-using-signals/35413#35413 0 Answer by Daniel F. Hanson for Print Odd-Even numbers using signals Daniel F. Hanson 2008-08-29T22:22:22Z 2008-08-29T22:22:22Z <p>Yes, this site is for asking programming questions, but when you are solving a real world problem or working on a side project for fun, getting the answer is often more important than truly understanding the problem and knowing how to solve it yourself. Perhaps we are capable of helping you through solving the problem, but your TA and/or instructor is more suited for that. They are teaching you the class. They are available (or should be) to help you.</p> http://stackoverflow.com/questions/35380/print-odd-even-numbers-using-signals/35411#35411 0 Answer by Daniel F. Hanson for Print Odd-Even numbers using signals Daniel F. Hanson 2008-08-29T22:19:58Z 2008-08-29T22:19:58Z <p>Your TA or instructor would probably be the best person to direct your questions to. It is generally considered bad form to post homework assignment questions on discussion forums, and I would suppose that the same applies here at SO.</p> http://stackoverflow.com/questions/33923/what-is-tail-recursion/33930#33930 23 Answer by Daniel F. Hanson for What is tail-recursion? Daniel F. Hanson 2008-08-29T03:57:07Z 2008-08-29T03:57:07Z <p>In traditional recursion, the typical model is that you perform your recursive calls first, and then you take the return value of the recursive call and calculate the result. In this manner, you don't get the result of your calculation until you have returned from every recursive call.</p> <p>In tail recursion, you perform your calculations first, and then you execute the recursive call, passing the results of your current step to the next recursive step. This results in the last statement being in the form of "(return (recursive-function params))" (I think that's the syntax for Lisp). Basically, the return value of any given recursive step is the same as the return value of the next recursive call.</p> <p>The consequence of this is that once you are ready to perform your next recursive step, you don't need the current stack frame any more. This allows for some optimization. In fact, with an appropriately written compiler, you should never have a stack overflow <em>snicker</em> with a tail recursive call. Simply reuse the current stack frame for the next recursive step. I'm pretty sure Lisp does this.</p> http://stackoverflow.com/questions/32897/do-java-multi-line-comments-account-for-strings/32918#32918 1 Answer by Daniel F. Hanson for Do Java multi-line comments account for strings? Daniel F. Hanson 2008-08-28T17:56:10Z 2008-08-28T17:56:10Z <p>Yes, I am commenting the code out just to do a quick test. I've already tested what I needed to by commenting the code out another way; I was just curious about what appears to be an odd misfeature of Java and/or Eclipse.</p> http://stackoverflow.com/questions/11381/making-human-readable-representations-of-an-integer/11417#11417 3 Answer by Daniel F. Hanson for Making human readable representations of an Integer Daniel F. Hanson 2008-08-14T17:58:24Z 2008-08-14T18:11:33Z <pre><code>import math def encodeOnesDigit(num): return ['', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine'][num] def encodeTensDigit(num): return ['twenty', 'thirty', 'forty', 'fifty', 'sixty', 'seventy', 'eighty', 'ninety'][num-2] def encodeTeens(num): if num &lt; 10: return encodeOnesDigit(num) else: return ['ten', 'eleven', 'twelve', 'thirteen', 'fourteen', 'fifteen', 'sixteen', 'seventeen', 'eighteen', 'nineteen'][num-10] def encodeTriplet(num): if num == 0: return '' str = '' if num &gt;= 100: str = encodeOnesDigit(num / 100) + ' hundred' tens = num % 100 if tens &gt;= 20: if str != '': str += ' ' str += encodeTensDigit(tens / 10) if tens % 10 &gt; 0: str += '-' + encodeOnesDigit(tens % 10) elif tens != 0: if str != '': str += ' ' str += encodeTeens(tens) return str def zipNumbers(numList): if len(numList) == 1: return numList[0] strList = ['', ' thousand', ' million', ' billion'] # Add more as needed strList = strList[:len(numList)] strList.reverse() joinedList = zip(numList, strList) joinedList = [item for item in joinedList if item[0] != ''] return ', '.join(''.join(item) for item in joinedList) def humanReadable(num): if num == 0: return 'zero' negative = False if num &lt; 0: num *= -1 negative = True numString = str(num) tripletCount = int(math.ceil(len(numString) / 3.0)) numString = numString.zfill(tripletCount * 3) tripletList = [int(numString[i*3:i*3+3]) for i in range(tripletCount)] readableList = [encodeTriplet(num) for num in tripletList] readableStr = zipNumbers(readableList) return 'negative ' + readableStr if negative else readableStr </code></pre> http://stackoverflow.com/questions/11368/what-is-the-best-interview-question/11384#11384 3 Answer by Daniel F. Hanson for What is the best interview question? Daniel F. Hanson 2008-08-14T17:27:01Z 2008-08-14T17:27:01Z <blockquote> <p>Out of everyone else I've talked to, why should I hire you?</p> </blockquote> <p>I'm personally not a fan of questions like that. It seems to indicate laziness on the part of the interviewer. In my mind, it is the interviewer's job to determine whether or not I'm the best candidate, by asking technical questions of the appropriate breadth and depth. Yeah, maybe this kind of question can determine how well a candidate can communicate, but it mostly feels like a trap question. There doesn't seem to be a right answer without dishing out the BS.</p> http://stackoverflow.com/questions/11330/passing-more-parameters-in-c-function-pointers/11363#11363 6 Answer by Daniel F. Hanson for Passing more parameters in C function pointers Daniel F. Hanson 2008-08-14T17:19:28Z 2008-08-14T17:19:28Z <p>Ah, if only C supported closures...</p> <p>Antonio is right; if you need to pass extra parameters, you'll need to redefine your function pointer to accept the additional arguments. If you don't know exactly what parameters you'll need, then you have at least three choices:</p> <ol> <li>Have the last argument in your prototype be a void*. This gives you flexibility of passing in anything else that you need, but it definitely isn't type-safe.</li> <li>Use variadic parameters (...). Given my lack of experience with variadic parameters in C, I'm not sure if you can use this with a function pointer, but this gives even more flexibility than the first solution, albeit still with the lack of type safety.</li> <li>Upgrade to C++ and use <a href="http://en.wikipedia.org/wiki/Function_object" rel="nofollow">function objects</a>.</li> </ol> http://stackoverflow.com/questions/7737/how-to-display-unicode-text-in-opengl/7950#7950 1 Answer by Daniel F. Hanson for How to display unicode text in OpenGL? Daniel F. Hanson 2008-08-11T16:54:04Z 2008-08-11T16:54:04Z <p>You could also group the characters by language. Load each language table as needed, and when you need to switch languages, unload the previous language table and load the new one.</p> http://stackoverflow.com/questions/7917/remove-quotes-and-commas-from-a-string-in-mysql/7944#7944 0 Answer by Daniel F. Hanson for Remove Quotes and Commas from a String in MySQL Daniel F. Hanson 2008-08-11T16:50:12Z 2008-08-11T16:50:12Z <p>Here's the PHP way:</p> <pre><code>$stripped = str_replace(array(',', '"'), '', $value); </code></pre> <p><a href="http://w3schools.com/php/func_string_str_replace.asp" rel="nofollow">Link to W3Schools page</a></p> http://stackoverflow.com/questions/7209/alpha-blending-sprites-in-nintendo-ds-homebrew/7938#7938 0 Answer by Daniel F. Hanson for Alpha blending sprites in Nintendo DS Homebrew Daniel F. Hanson 2008-08-11T16:45:39Z 2008-08-11T16:45:39Z <p>It's been a <i>long</i> time since I've done any GBA programming, but as I recall, the DS supports most (if not all) of the stuff that GBA supports. <a href="http://www.coranac.com/tonc/text/gfx.htm" rel="nofollow">This</a> link has a section on how to do alpha blending for GBA (section 13.2). I don't know if there's a DS-specific way of doing it, but this should work for you.</p> http://stackoverflow.com/questions/6607/registry-vs-ini-file-for-storing-user-configurable-application-settings/6620#6620 9 Answer by Daniel F. Hanson for Registry vs. INI file for storing user configurable application settings Daniel F. Hanson 2008-08-09T04:51:59Z 2008-08-09T04:51:59Z <p>Pros of config file: <br> 1. Easy to do. Don't need to know any Windows API calls. You just need to know the file I/O interface of your programming language. <br> 2. Portable. If you port your application to another OS, you don't need to change your settings format. <br> 3. User-editable. The user can edit the config file outside of the program executing.</p> <p>Pros of registry: <br> 1. Secure. The user can't accidentally delete the config file or corrupt the data unless he/she knows about regedit. And then the user is just asking for trouble. <br> 2. I'm no expert Windows programmer, but I'm sure that using the registry makes it easier to do other Windows-specific things (user-specific settings, network administration stuff like group policy, or whatever else).</p> <p>If you just need a simple way to store config information, I would recommend a config file, using INI or XML as the format. I suggest using the registry only if there is something specific you want to get out of using the registry.</p> http://stackoverflow.com/questions/2481/best-self-balancing-bst-for-quick-insertion-of-a-large-number-of-nodes/2498#2498 0 Answer by Daniel F. Hanson for Best self-balancing BST for quick insertion of a large number of nodes Daniel F. Hanson 2008-08-05T15:50:05Z 2008-08-05T15:50:05Z <p>The two self-balancing BSTs I'm most familiar with are red-black and AVL, so I can't say for certain if any other solutions are better, but as I recall, red-black has faster insertion and slower retrieval compared to AVL. So if insertion is a higher priority than retrieval, red-black may be a better solution.</p> http://stackoverflow.com/questions/2482/what-are-some-good-resources-for-learning-threaded-programming/2491#2491 4 Answer by Daniel F. Hanson for What are some good resources for learning threaded programming? Daniel F. Hanson 2008-08-05T15:47:15Z 2008-08-05T15:47:15Z <p>I've honestly never read it myself, but <a href="http://rads.stackoverflow.com/amzn/click/0201310090" rel="nofollow">Concurrent Programming in Java</a> is a book I've heard recommended by several people.</p> http://stackoverflow.com/questions/2483/casting-newtype-vs-object-as-newtype/2489#2489 1 Answer by Daniel F. Hanson for Casting: (NewType) vs. Object as NewType Daniel F. Hanson 2008-08-05T15:45:06Z 2008-08-05T15:45:06Z <p>The parenthetical cast throws an exception if the cast attempt fails. The "as" cast returns null if the cast attempt fails.</p> http://stackoverflow.com/questions/1823/writing-a-conways-game-of-life-program/1832#1832 1 Answer by Daniel F. Hanson for Writing A "Conway's Game of Life" Program Daniel F. Hanson 2008-08-05T02:44:01Z 2008-08-05T02:44:01Z <p>If you wanted to be super simple about it, you could take your favorite graphics API and have each pixel represent a single cell. That takes away all of the difficulties of GUI programming, though interfacing with the grid would require some input handling.</p> <p>If you want to provide a more complete GUI, .NET is a very straightforward way to go, and it's probably the solution I would take. I'm biased, though, given my C# experience. Python has good GUI modules, I'm sure. I've worked with Tkinter, and I've heard good things about wxPython. Pick your poison.</p> http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1686#1686 15 Answer by Daniel F. Hanson for Learning to write a compiler Daniel F. Hanson 2008-08-04T23:08:18Z 2008-08-04T23:08:18Z <p>I concur with the Dragon Book reference; IMO, it is the definitive guide to compiler construction. Get ready for some hardcore theory, though.</p> <p>If you want a book that is lighter on theory, <a href="http://rads.stackoverflow.com/amzn/click/1931841578" rel="nofollow">Game Scripting Mastery</a> might be a better book for you. If you are a total newbie at compiler theory, it provides a gentler introduction. It doesn't cover more practical parsing methods (opting for non-predictive recursive descent without discussing LL or LR parsing), and as I recall, it doesn't even discuss any sort of optimization theory. Plus, instead of compiling to machine code, it compiles to a bytecode that is supposed to run on a VM that you also write.</p> <p>It's still a decent read, particularly if you can pick it up for cheap on Amazon. If you only want an easy introduction into compilers, Game Scripting Mastery is not a bad way to go. If you want to go hardcore up front, then you should settle for nothing less than the Dragon Book.</p> http://stackoverflow.com/questions/1311/rockbox-audio-format/1367#1367 2 Answer by Daniel F. Hanson for Rockbox audio format Daniel F. Hanson 2008-08-04T15:53:55Z 2008-08-04T15:53:55Z <p>I've never worked with Rockbox, but I did some snooping around, and I found <a href="http://www.rockbox.org/mail/archive/rockbox-dev-archive-2008-07/0059.shtml" rel="nofollow">this</a> link. It may give you the answer for what you need. Or is this a general question about how function pointers work?</p>