User Jeff Kotula - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T23:03:41Zhttp://stackoverflow.com/feeds/user/22854http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/808106/documenting-existing-code/808129#8081295Answer by Jeff Kotula for documenting existing codeJeff Kotula2009-04-30T17:30:36Z2009-04-30T17:30:36Z<p>Another easy starting point is a wiki. Documenting or diagramming the high-level structure of the system/application so everyone has a decent starting point should be a priority, and a wiki is a convenient way to get the info out there. (I'd be surprised if there was <em>no</em> documentation at this level from the original 3, but I bet they could whomp up something useful very quickly...)</p>
http://stackoverflow.com/questions/783018/howto-elegantly-extract-a-2d-rectangular-region-from-a-c-vector/783026#7830263Answer by Jeff Kotula for Howto elegantly extract a 2D rectangular region from a C++ vectorJeff Kotula2009-04-23T18:46:51Z2009-04-23T18:46:51Z<pre><code>for (int r = startRow; r < endRow; r++)
for (int c = startCol; c < endCol; c++)
rect[r-startRow][c-startCol] = source[r*rowWidth+c];
</code></pre>
http://stackoverflow.com/questions/42934/whats-with-the-love-of-dynamic-languages/751980#7519801Answer by Jeff Kotula for What's with the love of dynamic LanguagesJeff Kotula2009-04-15T14:31:16Z2009-04-15T14:31:16Z<p>I think both styles have their strengths. This either/or thinking is kind of crippling to our community in my opinion. I've worked in architectures that were statically-typed from top to bottom and it was fine. My favorite architecture is for dynamically-typed at the UI level and statically-typed at the functional level. This also encourages a language barrier that enforces the separation of UI and function.</p>
<p>To be a cynic, it may be simply that dynamic languages allow the developer to be lazier and to get things done knowing less about the fundamentals of computing. Whether this is a good or bad thing is up to the reader :)</p>
http://stackoverflow.com/questions/748503/how-do-you-introduce-unit-testing-into-a-large-legacy-c-c-codebase/748554#7485543Answer by Jeff Kotula for How do you introduce unit testing into a large, legacy (C/C++) codebase?Jeff Kotula2009-04-14T17:18:32Z2009-04-14T17:18:32Z<p>One approach to consider is to first put a system-wide simulation framework in place that you could use to develop integration tests. Starting with integration tests might seem counter-intuitive, but the problems in doing true unit-testing in the environment you describe are quite formidable. Probably moreso than just simulating the entire run-time in software...</p>
<p>This approach would simply bypass your listed issues -- although it would give you many different ones. In practice though, I've found that with a robust integration testing framework you can develop tests that exercise functionality at the unit level, although without unit isolation.</p>
<p>PS: Consider writing a command-driven simulation framework, maybe built on Python or Tcl. This will let you script tests quite easily...</p>
http://stackoverflow.com/questions/743507/what-kind-of-uml-diagrams-do-you-use/743961#7439611Answer by Jeff Kotula for What kind of UML diagrams do you use?Jeff Kotula2009-04-13T14:02:36Z2009-04-13T14:02:36Z<p>I use class diagrams quite often to document the high-level design and relationships between the most important classes. I often use state-transition diagrams, but not done in UML style. I rarely use sequence diagrams, finding them difficult to read (and write).</p>
http://stackoverflow.com/questions/714166/how-to-handle-co-worker-opposed-to-unit-testing/714210#7142102Answer by Jeff Kotula for How To Handle Co-Worker Opposed to Unit TestingJeff Kotula2009-04-03T14:40:31Z2009-04-03T14:40:31Z<p>I think the best way to deal with this kind of stuff is through accountability. If their stuff breaks, they take the heat and have to find the fix, even if the root cause is somewhere else, their portion of the problem is that they didn't catch it prior to release.</p>
<p>Note that this may not actually convince them to change their habits though...</p>
http://stackoverflow.com/questions/707096/compute-intersection-of-two-edges/707155#7071551Answer by Jeff Kotula for Compute intersection of two edgesJeff Kotula2009-04-01T20:11:52Z2009-04-01T20:11:52Z<p>What you need are unit tests for your 4 methods and to test them <em>thoroughly</em>. Especially with line-segment intersections there are <em>lots</em> of end-cases, such as parallel slopes, coincident end-points, fully or partially overlapping, in addition to all the usual tolerancing problems (e.g. what exactly does "equal slope" mean?).</p>
<p>Without breaking things down into smaller, more testable units you're going to have a tough time narrowing it down.</p>
http://stackoverflow.com/questions/707068/is-this-a-good-job-description-what-title-would-you-give-this-position/707099#7070991Answer by Jeff Kotula for Is this a good job description? What title would you give this position?Jeff Kotula2009-04-01T19:58:59Z2009-04-01T19:58:59Z<p>With only several years experience needed I'd call it a "Web engineer".</p>
<p>The position seems fairly unfocused: more of a jack of all trades than a specific position within a team...</p>
http://stackoverflow.com/questions/706181/c-storing-a-net-object-in-the-registry/706206#7062062Answer by Jeff Kotula for C#: Storing a .Net Object in the RegistryJeff Kotula2009-04-01T15:58:21Z2009-04-01T15:58:21Z<p>Yeah, I think you'd have to serialize and deserialize it yourself. But you could store it either as a binary block or text/xml. It's possible that there is a size limit to registry data...</p>
<p>The big question is "is this a good thing to do?"</p>
http://stackoverflow.com/questions/705599/what-do-you-use-to-write-documentation/705632#7056326Answer by Jeff Kotula for What do you use to write documentation?Jeff Kotula2009-04-01T14:01:07Z2009-04-01T14:01:07Z<p>We use a wiki (currently MoinMoin). For high-level or key design elements we often do UML diagrams. I prefer StarUML for this.</p>
http://stackoverflow.com/questions/703018/when-to-use-data-transfer-objects-and-datasets/703110#7031103Answer by Jeff Kotula for When to use Data Transfer Objects and DataSetsJeff Kotula2009-03-31T21:20:06Z2009-03-31T21:20:06Z<p>I would keep it simple and always return a DataSet -- in short, use DataSet as a generic DTO. It's flexible, it's type-safe, it's available. Unless you get into some very hairy nested object models, DTO's won't buy you anything for the effort.</p>
http://stackoverflow.com/questions/703073/what-are-the-deficiencies-of-the-built-in-binaryformatter-based-net-serializatio/703104#7031041Answer by Jeff Kotula for What are the deficiencies of the built-in BinaryFormatter based .Net serialization? Jeff Kotula2009-03-31T21:17:37Z2009-03-31T21:17:37Z<p>Versioning of data is handled through attributes. If you aren't worried about versioning then this is no problem. If you are, it is a huge problem.</p>
<p>The trouble with the attribute scheme is that it works pretty slick for many trivial cases (such as adding a new property) but breaks down pretty rapidly when you try to do something like replace two enum values with a different, new enum value (or any number of common scenarios that comes with long-lived persistent data).</p>
<p>I could go into lots of details describing the troubles. In the end, writing your own serializer is pretty darn easy if you need to...</p>
http://stackoverflow.com/questions/698312/relation-between-word-length-character-size-integer-size-and-byte/698342#6983420Answer by Jeff Kotula for Relation between word length, character size, integer size and byteJeff Kotula2009-03-30T18:06:49Z2009-03-30T18:06:49Z<p>Kind of depends on what you mean by relation. The size of numeric types is generally a multiple of the machine word size. A byte is a byte is a byte -- 8 bits, no more, no less. A character is defined in the standard as a single unsigned byte I believe (check your ARM for details).</p>
<p>The general rule is, don't make any assumptions about the actual size of data types. The standard specifies relationships between the types such as a "long" integer will be either the same size or larger than an "int". Individual implementations of the language will pick specific sizes for the types that are convenient for them. For example, a compiler for a 64-bit processor will choose different sizes than a compiler for a 32-bit processor.</p>
<p>You can use the sizeof() operator to examine the specific sizes for the compiler you are using (on the specific target architecture).</p>
http://stackoverflow.com/questions/671741/is-there-a-python-library-that-allows-to-build-user-interfaces-without-writing-mu/678000#6780000Answer by Jeff Kotula for Is there a Python library that allows to build user interfaces without writing much code?Jeff Kotula2009-03-24T15:43:44Z2009-03-24T15:43:44Z<p>I had lots of success with wxPython, but that was some years ago now and there may be better new solutions...</p>
http://stackoverflow.com/questions/677482/reuse-of-validation-code-in-ui-bl-and-or-dl/677992#6779920Answer by Jeff Kotula for Reuse of validation code in UI, BL and/or DLJeff Kotula2009-03-24T15:42:32Z2009-03-24T15:42:32Z<p>A friendly warning not to expect too much success for your efforts. This <a href="http://thedailywtf.com/Articles/The-Mythical-Business-Layer.aspx" rel="nofollow">article</a> describes quite well the fallacies in thinking about the mythical "business layer" that you are seeing in your efforts to centralize and avoid duplication of code. The upshot is that doing the kind of unification you're talking about is often too difficult to justify.</p>
http://stackoverflow.com/questions/674466/how-do-i-make-my-own-parser-for-java-jsf-code/674524#6745241Answer by Jeff Kotula for How do I make my own parser for java/jsf code?Jeff Kotula2009-03-23T17:59:43Z2009-03-23T17:59:43Z<p>If it is a learning exercise, try starting with a top-down parser -- they are simple to write and don't require including/learning any other tools. Best place to research the basics is probably wikipedia or code-project.</p>
http://stackoverflow.com/questions/659866/is-there-c-support-for-an-index-based-sort/659875#6598750Answer by Jeff Kotula for Is there C# support for an index-based sort?Jeff Kotula2009-03-18T20:01:30Z2009-03-18T20:01:30Z<p>I think you'd have to write your own sort-comparison delegate and perform the dereference within it. With 3.5 lambda functions this should be pretty simple and clean...</p>
http://stackoverflow.com/questions/575767/what-programming-technique-practice-done-by-you-was-ahead-of-its-time/650738#6507381Answer by Jeff Kotula for What programming technique / practice done by you was ahead of its time?Jeff Kotula2009-03-16T14:47:05Z2009-03-16T14:47:05Z<p>First job I had in 1987 they had been using a custom meta-data driven UI approach for several years. WPF is finally catching up (although in my opinion, poorly).</p>
http://stackoverflow.com/questions/639493/in-c-how-can-i-safely-exit-a-lock-with-a-try-catch-block-inside/639515#6395151Answer by Jeff Kotula for In C# how can I safely exit a lock with a try catch block inside?Jeff Kotula2009-03-12T16:53:06Z2009-03-12T16:53:06Z<p>The lock will be released when the context of it's block is exited, however that happens. In the code example given above the lock will automatically, safely be released as control exits the final } context.</p>
http://stackoverflow.com/questions/639289/when-should-you-map-a-column-to-enum-type-in-code/639362#6393621Answer by Jeff Kotula for When should you map a column to Enum type in codeJeff Kotula2009-03-12T16:13:31Z2009-03-12T16:13:31Z<p>This is actually a complicated question: when you are using an enum, it is traditional to also have a lookup table in the DB as Reed suggests. But this raises the problem of synchronizing the definitions.</p>
<p>What we do is generate the tables from enum definitions as part of our build/deploy scripts to ensure that both reflect the same set of legal values.</p>
<p>We then have convenience functions that take a DataSet returned from a DB query, and map id columns to (newly created) columns with enum values. But we do that right away after the query results are retrieved. So my advice would be to map them as soon as possible, preferably in your DAL.</p>
http://stackoverflow.com/questions/632297/how-do-i-configure-my-settings-file-to-work-with-unit-tests/632349#6323491Answer by Jeff Kotula for How do I configure my settings file to work with unit tests?Jeff Kotula2009-03-10T21:26:16Z2009-03-10T21:26:16Z<p>Your best bet may be to wrap up access to the config data within a proxy class that you can redirect as needed at runtime -- don't use the builtin APIs directly.</p>
http://stackoverflow.com/questions/611532/launch-clickonce-via-url-but-not-checking-for-updates2Launch ClickOnce via URL but not checking for updatesJeff Kotula2009-03-04T17:05:44Z2009-03-04T22:26:24Z
<p>I have a ClickOnce app that is frequently launched from another application via a URL. The URL includes some command-line arguments that load data, etc.</p>
<p>Since the frequency of launching the app is so high, I want to cut out the check for version updates. So I implemented my own checking through the ApplicationDeployment class to avoid it. It works fine if you launch from the Start Menu once the app is installed.</p>
<p>However, we also want to preserve the launch via URL behavior because it is advantageous in so many ways. But when launching via URL, the update check is always performed -- it seems IE isn't smart enough to look for the app in the local download area to see if it is already installed or not...</p>
<p>Does anyone know of a way to get the "don't check for updates automatically" behavior while still using the URL launch mechanism?</p>
<p><hr /></p>
<p>Actually, it looks like the issue is a Catch-22 in the ClickOnce model. If you launch with a URL, IE will <em>always</em> touch base with the host and check the version, updating if necessary, regardless of whether or not the app is flagged as "Don't check version". However, if you launch from the Start Menu, ClickOnce disables command-line arguments.</p>
<p>Has anyone found any way around this, or know of a MS plan to fix it?</p>
http://stackoverflow.com/questions/603313/produce-tones-at-certain-time-interval-using-c-programming/603367#603367-2Answer by Jeff Kotula for Produce tones at certain time-interval using C programmingJeff Kotula2009-03-02T18:08:17Z2009-03-04T13:37:18Z<p>In Windows you can use the Beep function in kernel32:</p>
<pre><code> [DllImport("kernel32.dll")]
private static extern bool Beep(int frequency, int duration);
</code></pre>
http://stackoverflow.com/questions/596549/is-there-a-good-use-for-inout-parameters/596615#5966150Answer by Jeff Kotula for Is there a good use for inout parameters?Jeff Kotula2009-02-27T20:45:33Z2009-02-27T20:45:33Z<p>I've used it with an value-type parameter in a graphics routine that printed text to a GDI window in a vertical layout. The inout parameter kept track of the current Y position:</p>
<pre><code>WriteString("hello", ref y);
</code></pre>
<p>rather than</p>
<pre><code>y += WriteString("hello", y);
</code></pre>
http://stackoverflow.com/questions/566767/how-to-deal-with-management-that-wants-you-to-do-everything/566801#5668012Answer by Jeff Kotula for How to deal with management that wants you to do everything?Jeff Kotula2009-02-19T19:32:19Z2009-02-19T19:32:19Z<p>I don't see that you'll be able to get away from any of the top three (especially the top one which you <em>want</em> to do). If the company is small they will be relying on your ability to plan and predict your work also.</p>
<p>The last two seem to be clearly out of line with your job description. If the company is growing quickly you may just want to do the tasks until they hire someone more directly responsible. Otherwise, you could offer friendly, helpful advice to the requestor on where <em>they</em> could go to get more information and do it themselves. Or just prioritize that stuff way down on your list.</p>
<p>Most of this depends on what you feel you can "get away" with given your managers and the company culture. In this economy and industry, you should probably just play it safe...</p>
http://stackoverflow.com/questions/558853/proper-way-to-clean-up-a-permanent-thread-in-c/558874#5588743Answer by Jeff Kotula for Proper way to clean up a permanent thread in C#Jeff Kotula2009-02-17T21:50:30Z2009-02-17T21:50:30Z<p>I don't think it is unreasonable to require clients to Stop() the thread for shutdown at all. There are ways you can create threads whose continued execution will not stop the application from exiting (although I don't have the details off the top of my head). But expecting to launch and terminate a worker thread is not too much of a burden for the client.</p>
http://stackoverflow.com/questions/49755/design-pattern-for-undo-engine/558733#5587334Answer by Jeff Kotula for Design Pattern for Undo EngineJeff Kotula2009-02-17T21:09:48Z2009-02-17T21:09:48Z<p>I think both memento and command are not practical when you are dealing with a model of the size and scope that the OP implies. They would work, but it would be a lot of work to maintain and extend.</p>
<p>For this type of problem, I think you need to build in support to your data model to support differential checkpoints for <em>every object</em> involved in the model. I've done this once and it worked very slick. The biggest thing you have to do is avoid the direct use of pointers or references in the model.</p>
<p>Every reference to another object uses some identifier (like an integer). Whenever the object is needed, you lookup the current definition of the object from a table. The table contains a linked list for each object that contains all the previous versions, along with information regarding which checkpoint they were active for.</p>
<p>Implementing undo/redo is simple: Do your action and establish a new checkpoint; rollback all object versions to the previous checkpoint.</p>
<p>It takes some discipline in the code, but has many advantages: you don't need deep copies since you are doing differential storage of the model state; you can scope the amount of memory you want to use (<em>very</em> important for things like CAD models) by either number of redos or memory used; very scalable and low-maintenance for the functions that operate on the model since they don't need to do anything to implement undo/redo.</p>
http://stackoverflow.com/questions/558451/net-remoting-versioning-and-interfaces/558596#5585961Answer by Jeff Kotula for .NET remoting, versioning and interfacesJeff Kotula2009-02-17T20:33:05Z2009-02-17T20:33:05Z<p>ClickOnce is a good solution.</p>
<p>Or go with a class-agnostic Web Services approach. Pass around versioned, binary-streamed dictionaries that can be reconstituted as objects. If it is important, write your object reconstitution stuff to handle <em>both</em> forward- and backward-compatibility, otherwise just reject data with a "future" version number.</p>
<p>Web services are great for decoupling. Dictionaries are great for passing general data. Assembly-based class versioning is horrible (even with the Serialization changes in recent versions of .Net) and leads to madness...</p>
http://stackoverflow.com/questions/558521/evolution-or-revolution-to-fix-poorly-written-code/558575#5585750Answer by Jeff Kotula for Evolution or Revolution to fix poorly written code.Jeff Kotula2009-02-17T20:27:38Z2009-02-17T20:27:38Z<p>I think it depends on several factors:</p>
<ol>
<li>Do you have unit tests? This argues for refactoring.</li>
<li>How long did it take originally? A day or two argues for rewrite, a week or two to refactoring.</li>
<li>Do you rely on it daily -- do you need to keep it running? If yes, refactor. If not, rewrite.</li>
<li>Just how bad is it? If <strong>really</strong> bad, rewrite it.</li>
</ol>
<p>In all cases, know where you're headed before you start!</p>
<p>(Personally I don't buy the argument that you should never rewrite. I also don't buy the argument that well-crafted systems can arise solely out of refactoring...)</p>
http://stackoverflow.com/questions/557764/if-unit-testing-is-so-great-why-arent-more-companies-doing-it/558482#5584822Answer by Jeff Kotula for If unit testing is so great, why aren't more companies doing it? Jeff Kotula2009-02-17T19:59:53Z2009-02-17T19:59:53Z<p>I think part of the problem is that developers are expecting business people to have the same set of values and to really care about the answer to "should we unit test or not?". We don't get approval beforehand from the business to use a high-level language rather than assembly language -- it's just usually the sensible way to get the work done.</p>
<p>The point is, <em>we</em> are the only ones qualified to make the call (which isn't to say that all of us have the same knowledge on the topic). Furthermore, even if your team doesn't, as a matter of policy, do unit testing (or name-your-method-of-the-day) it generally doesn't mean that <em>you</em> can't do it.</p>
<p>The truth is, we can't really prove ROI on most of the stuff we do at too fine of a granularity. Why unit testing is held up to this unreasonable/non-typical standard of proof is beyond me...</p>
http://stackoverflow.com/questions/299392/how-do-i-create-a-batch-file-timer-to-execute-call-another-batch-throughout-the/299430#299430Comment by Jeff Kotula on How do I create a batch file timer to execute / call another batch throughout the day Jeff Kotula2009-05-08T20:48:13Z2009-05-08T20:48:13ZIn my case I needed to launch an application to run automated tests which did lots of graphics (medical imaging). So they wouldn't run without a graphics context.http://stackoverflow.com/questions/783018/howto-elegantly-extract-a-2d-rectangular-region-from-a-c-vector/783026#783026Comment by Jeff Kotula on Howto elegantly extract a 2D rectangular region from a C++ vectorJeff Kotula2009-04-23T19:28:03Z2009-04-23T19:28:03ZThe double indexing is standard C++ array-of-arrays notation for dealing with multidimensional information. I doubt that STL will help you with this problem. Note that the source array is presumed single dimensioned like a vector. You could do the same math to use a single-dimensioned output array.http://stackoverflow.com/questions/603313/produce-tones-at-certain-time-interval-using-c-programming/603367#603367Comment by Jeff Kotula on Produce tones at certain time-interval using C programmingJeff Kotula2009-03-03T14:54:33Z2009-03-03T14:54:33ZNo need to get snarky. I just misunderstood the context of the question...http://stackoverflow.com/questions/604029/opengl-game-with-multiple-entities-on-screen-at-once-what-language-to-use/604054#604054Comment by Jeff Kotula on OpenGL game with multiple entities on screen at once, what language to use?Jeff Kotula2009-03-02T21:29:11Z2009-03-02T21:29:11ZAlthough it depends somewhat on the complexity of the individual entities in terms of polygons and textures...http://stackoverflow.com/questions/558439/oo-design-separating-instance-specific-functions-from-class-specific-functions/558455#558455Comment by Jeff Kotula on OO Design - Separating Instance-specific functions from class-specific functionsJeff Kotula2009-02-17T21:02:23Z2009-02-17T21:02:23ZThe manager class wouldn't <i>have</i> to be a creation factory... If you want to enforce just a single user manager per application (which can be legitimate) then have User have a set of static functions is reasonable too.http://stackoverflow.com/questions/558464/c-expanding-panel/558484#558484Comment by Jeff Kotula on C# expanding panelJeff Kotula2009-02-17T20:34:48Z2009-02-17T20:34:48ZThe only tricky bit is to handle anchoring and docking of the interior controls so that they behave correctly in both the unexpanded and expanded modes.http://stackoverflow.com/questions/557764/if-unit-testing-is-so-great-why-arent-more-companies-doing-it/558443#558443Comment by Jeff Kotula on If unit testing is so great, why aren't more companies doing it? Jeff Kotula2009-02-17T19:55:48Z2009-02-17T19:55:48ZGood idea. But don't call out the time to create unit tests as separate from the time to create the "product" code!http://stackoverflow.com/questions/547539/useful-mini-patterns-not-design-patterns/547661#547661Comment by Jeff Kotula on Useful mini patterns (not design patterns)Jeff Kotula2009-02-16T16:36:07Z2009-02-16T16:36:07ZAttaching it to a tag is no more brittle than the original choice of encoding it in a switch statement. I presumed that the filenames were fixed -- or compiled-in resources.http://stackoverflow.com/questions/547622/counting-nodes-in-a-tree-in-java/547639#547639Comment by Jeff Kotula on Counting nodes in a tree in JavaJeff Kotula2009-02-16T16:34:51Z2009-02-16T16:34:51ZIt's psuedo-code: intent, not syntaxhttp://stackoverflow.com/questions/201694/good-book-on-c-internals/201751#201751Comment by Jeff Kotula on Good Book on C++ Internals?Jeff Kotula2008-10-15T14:00:30Z2008-10-15T14:00:30ZAbsolutely the best!http://stackoverflow.com/questions/150753/how-to-avoid-heap-fragmentation/150811#150811Comment by Jeff Kotula on How to avoid heap fragmentation?Jeff Kotula2008-10-03T21:38:47Z2008-10-03T21:38:47ZOff and on :) You might want to check out vtk or even osirix for reference material...
Actually, the idea above is just kind of a standard way of handling uniformly-sized custom allocation in C++ though...