User Paul Osborne - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T01:45:53Zhttp://stackoverflow.com/feeds/user/7049http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/65820/unit-testing-c-code29Unit Testing C CodePaul Osborne2008-09-15T19:12:00Z2009-11-19T09:50:03Z
<p>I worked on an embedded system this summer written in straight C. It was an existing project that the company I work for had taken over. I have become quite accustomed to writing unit tests in Java using JUnit but was at a loss as to the best way to write unit tests for existing code (which needed refactoring) as well as new code added to the system.</p>
<p>Are there any projects out there that make unit testing plain C code as easy as unit testing Java code with JUnit? Any insight that would apply specifically to embedded development (cross-compiling to arm-linux platform) would be greatly appreciated.</p>
http://stackoverflow.com/questions/1425149/reverse-geocoding-without-web-access1Reverse Geocoding Without Web AccessPaul Osborne2009-09-15T04:42:17Z2009-10-19T20:43:17Z
<p>I am working on an application where one of the requirements is that I be able to perform realtime reverse geocoding operations based on GPS data. In particular, I must be able to determine the state/province to which a latitude, longitude pair maps and detect when we have moved from one state/province to another.</p>
<p>I have a couple ideas so far but wondered if anyone had any ideas on either of the following:</p>
<ul>
<li>What is the best approach for tackling this problem in an efficient manner?</li>
<li>Where is a good place to find and what is the appropriate format for North American state/province boundaries</li>
</ul>
<p>As a starter, here are the two main ideas I have:</p>
<ol>
<li>Break North America into a grid with each rectangle in the grid mapping to a particular state province. Do a lookup on this table (which grows quickly the more precise you would like to be) based on the latitude and then the longitude (or vice versa).</li>
<li>Define polygons for each of the states and do some sort of calculation to determine in which polygon a lat/lon pair lies. I am not sure exactly how to go about this. HTML image maps come to mind as one way of defining the bounds for a state/province.</li>
</ol>
<p>I am working in python for the interested or those that might have a nice library they would like to suggest.</p>
<p><strong>To be clear... I do not have web access available to me, so using an existing reverse geocoding service is not an option at runtime</strong></p>
http://stackoverflow.com/questions/623130/git-and-trac-or-similar4Git and Trac (or similar)Paul Osborne2009-03-08T05:45:18Z2009-07-13T01:27:13Z
<p>In the past I have really enjoyed using <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> with subversion repositories hosted on some of my own servers. The integrated ticketing and online code browsing is very convenient.</p>
<p>I have used <a href="http://github.com" rel="nofollow">github</a> for some of my public projects but I don't have the money to shell out for an extra service, espcially when I am already paying for remote VPS hosting.</p>
<p>Does anyone know of or have any experience setting up something like Trac with git version control? Specifically, I can already push to a remote server but I would like some web interface that allows me (and people working with me) to see that commits and current state of the codebase online without making the project public. I am aware of <a href="http://trac-hacks.org/wiki/GitPlugin" rel="nofollow">GitPlugin</a> but have not been able to get it up and running successfully. Any other suggestions?</p>
<p>Integrated ticketing (and wiki) is desired but not an absolute necessity.</p>
<p><strong>Edit:</strong></p>
<p>After playing around with GitPlugin and Trac a bit more I have been able to get it up and running. The main problem was that I needed to explicitly enable the plugin for the trac environment by doing something like this in trac.ini:</p>
<pre><code>[components]
# for version 0.10
gitplugin.* = enabled
# for version 0.11
tracext.git.* = enabled
</code></pre>
<p>I may also try out <a href="http://www.redmine.org/" rel="nofollow">Redmine</a> and <a href="http://hjemli.net/git/cgit/" rel="nofollow">CGit</a> as this seem like other pieces of software that do what I am looking for. Any other suggestions are welcome.</p>
http://stackoverflow.com/questions/676172/full-examples-of-using-pyserial-package/676257#6762570Answer by Paul Osborne for Full examples of using Pyserial package Paul Osborne2009-03-24T05:40:55Z2009-03-24T05:40:55Z<p>I have not used pyserial but based on the API documentation at <a href="http://pyserial.wiki.sourceforge.net/pySerial" rel="nofollow">http://pyserial.wiki.sourceforge.net/pySerial</a> it seems like a very nice interface. It might be worth double-checking the specification for AT commands of the device/radio/whatever you are dealing with.</p>
<p>Specifically, some require some period of silence before and/or after the AT command for it to enter into command mode. I have encountered some which do not like reads of the response without some delay first.</p>
http://stackoverflow.com/questions/352456/are-there-any-good-movie-film-apis-out-there/448525#4485250Answer by Paul Osborne for Are there any good movie/film APIs out there?Paul Osborne2009-01-15T21:27:30Z2009-01-15T21:27:30Z<p>For getting straight-up information about movies (for instance, basic genre and title information) the Amazon associates data works pretty good. There is the condition that the data be used primarily to drive traffic to Amazon, which is something to keep in mind.</p>
<p>There should be a PHP library already written that you can use: <a href="http://aws.amazon.com/associates/" rel="nofollow">http://aws.amazon.com/associates/</a></p>
http://stackoverflow.com/questions/72209/recursion-or-iteration/72469#7246927Answer by Paul Osborne for Recursion or Iteration?Paul Osborne2008-09-16T13:52:59Z2008-09-16T13:52:59Z<p>It is possible that recursion will be more expensive, depending on if the recursive function is <a href="http://en.wikipedia.org/wiki/Tail_recursion" rel="nofollow">tail recursive</a> (last line is recursive call). Tail recursion <em>should</em> be recognized by the compiler and optimized to its iterative counterpart (while maintaining the concise, clear implementation you have in your code).</p>
<p>I would write the algorithm in the way that makes the most sense and is the most clear for the poor sucker (be it yourself or someone else) that has to maintain the code in a few months or years. If you run into performance issues, then profile your code, and then and only then look into optimizing by moving over to an iterative implementation. You may want to look into <a href="http://en.wikipedia.org/wiki/Memoization" rel="nofollow">memoization</a> and <a href="http://en.wikipedia.org/wiki/Dynamic_programming" rel="nofollow">dynamic programming</a>.</p>
http://stackoverflow.com/questions/62540/learning-opengl/62636#626361Answer by Paul Osborne for Learning OpenGlPaul Osborne2008-09-15T13:04:31Z2008-09-15T13:04:31Z<p>As far as learning OpenGL, the official redbook is irreplaceable. However, I think it is also important to find a good book that teaches the principles of graphics programming... For me, it was helpful to take a course (while I was an undergraduate) in computer graphics. </p>
<p>We had a couple textbooks for the course, but I liked <a href="http://rads.stackoverflow.com/amzn/click/0321321375" rel="nofollow"><em>Interactive Computer Graphics: A Top-Down Approach Using OpenGL</em></a> by Edward Angel the best.</p>
http://stackoverflow.com/questions/1764878/favorite-3rd-party-python-libraries/1765533#1765533Comment by Paul Osborne on Favorite 3rd-party Python Libraries?Paul Osborne2009-11-21T19:27:38Z2009-11-21T19:27:38ZI definitely agree with the pyserial recommendation. I do embedded work and it is awesome to have a powerful, cross-platform serial library. Now if windows would allow you to select on a file descriptor all would be well with the world.http://stackoverflow.com/questions/1775459/can-this-be-made-more-pythonic/1775475#1775475Comment by Paul Osborne on Can this be made more pythonic?Paul Osborne2009-11-21T19:22:34Z2009-11-21T19:22:34ZAlso, using 'max' as a variable name is discouraged as it covers up the builtin max function.http://stackoverflow.com/questions/1425149/reverse-geocoding-without-web-access/1425334#1425334Comment by Paul Osborne on Reverse Geocoding Without Web AccessPaul Osborne2009-09-18T04:05:04Z2009-09-18T04:05:04ZThough I wasn't able to use the r-tree python project for my implementation I did use some of the ideas behind r-tree in that I built a simple spatial index using bounding rectangles for each of the states. After determining what bounding boxes the point lay in I used a point-in-polygon test to figure out the rest... works great!http://stackoverflow.com/questions/1425149/reverse-geocoding-without-web-access/1425330#1425330Comment by Paul Osborne on Reverse Geocoding Without Web AccessPaul Osborne2009-09-16T02:04:52Z2009-09-16T02:04:52ZExcellent idea! This may very well be the way to go if you needed to solve this sort of problem on the desktop. Unforunately, and I should have mentioned this, I am running on an embedded platform which does not have support for Postgres (and it cannot be easily ported as it is not embedded linux, though it is posix based).
A derivative of the Digi connectport is the platform: <a href="http://www.digi.com/products/wirelessdropinnetworking/idigi-kits/x4-zb.jsp" rel="nofollow">digi.com/products/wirelessdropinnetworking/…</a>http://stackoverflow.com/questions/623130/git-and-trac-or-similar/623214#623214Comment by Paul Osborne on Git and Trac (or similar)Paul Osborne2009-03-09T05:09:47Z2009-03-09T05:09:47ZI've used Assembla with SVN/Trac before and am glad to see that they have added GIT support. It's not quite what I am looking for but a great suggestion.http://stackoverflow.com/questions/623130/git-and-trac-or-similar/624685#624685Comment by Paul Osborne on Git and Trac (or similar)Paul Osborne2009-03-09T05:06:56Z2009-03-09T05:06:56ZIn small teams, one of the things I like about Trac is the timeline view. It is nice to be able to see what changes have been pushed to the main repo. It is often easier to open up the browser and go to the Trac site than to fire up gitk or the console. Often it comes down to driving motivation.http://stackoverflow.com/questions/557764/if-unit-testing-is-so-great-why-arent-more-companies-doing-it/558209#558209Comment by Paul Osborne on If unit testing is so great, why aren't more companies doing it? Paul Osborne2009-02-18T06:40:36Z2009-02-18T06:40:36ZAn element you are missing is that unit tests are not just a one-and-done thing. If I find out later that I need to fix a bug with fileopen() on an NFS share, then I can add a test to my test suite for this. Then, when I do more development in the future I have regression testing in place.http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/115311#115311Comment by Paul Osborne on What are Code Smells? What is the best way to correct them?Paul Osborne2008-09-23T03:01:33Z2008-09-23T03:01:33ZIn C/C++ it is overzealous to say that globals should never be used, but I think that every one should be very well defined. I also like to give globals a name in the form g_variableName so that it is obvious to the variable user that the object has global scope.http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114530#114530Comment by Paul Osborne on What are Code Smells? What is the best way to correct them?Paul Osborne2008-09-23T02:55:17Z2008-09-23T02:55:17ZI understand where you are coming from but there is something to be said about not introducing additional temporary variables... This is what Fowler argues in Refactoring.http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use/12336#12336Comment by Paul Osborne on What bug tracking software do you use?Paul Osborne2008-09-21T23:56:27Z2008-09-21T23:56:27ZWe started using Footprints at the university I attend (and work for) and I cannot say I am a fan either.http://stackoverflow.com/questions/65820/unit-testing-c-code/72495#72495Comment by Paul Osborne on Unit Testing C CodePaul Osborne2008-09-16T14:23:47Z2008-09-16T14:23:47ZWe are not using autotools (though it would be nice to move over at some point). Historically, I have used the main method for testing purposes and it is not a bad solution.http://stackoverflow.com/questions/71429/which-desktop-virtualization-software-runs-most-smoothly/72163#72163Comment by Paul Osborne on Which Desktop Virtualization software runs most smoothly?Paul Osborne2008-09-16T13:36:33Z2008-09-16T13:36:33ZI've also noticed the difference in responsiveness between RDP and VNC. I will have to look into NX on linux.http://stackoverflow.com/questions/65820/unit-testing-c-code/65845#65845Comment by Paul Osborne on Unit Testing C CodePaul Osborne2008-09-16T01:30:42Z2008-09-16T01:30:42ZInitially, Check looks very solid. I will have to see how it holds up under the fire of real use... but it definitely looks like it may fit the bill.http://stackoverflow.com/questions/65820/unit-testing-c-code/65848#65848Comment by Paul Osborne on Unit Testing C CodePaul Osborne2008-09-16T01:25:56Z2008-09-16T01:25:56ZI agree that unit testing in a non-OO language is more difficult because OO languages force (or greatly encourage) you to modularize code. However, as dmckee mentioned, if you limit the number of inputs/outputs (preconditions/postconditions), you can still test in a procedural language.