User orcmid - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:13:17Z http://stackoverflow.com/feeds/user/33810 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug 2 Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-06T21:23:52Z 2009-07-22T17:40:32Z <p>Here's the Question: What is the best way to make sure that your requirement for Flash Version "x" on a site will properly detect presence of later-version Adobe Flash Player Version "10" (or "1y" for that matter)?</p> <p>Now here's the mystery: Why are so many sites that require Flash Player versions 8 and 9 or better failing to detect Flash Player version 10?</p> <p>And here's the juicy background, in technicolor screen captures in my post, "<a href="http://orcmid.com/blog/2008/12/wtf-adobe-flash-version-1x-crisis.asp" rel="nofollow">WTF: The Adobe Flash Version 1x Crisis</a>."</p> <p><strong>UPDATE 2:</strong> I have since confirmed that the problem I am seeing is not about improper comparison for the same-or-more-recent version. It appears that some client-side detection is unable to determine whether there is any Flash Player installed at all, much less what version it is. I have also discovered that if I am running as admin I don't have the problem: detection of Flash 10 works just fine. That makes this a bigger can of snakes than I first thought. I'm not ready to change this question's title just yet, and I am continuing to dissect client-side code to see what wondrous logic unfolds. <a href="http://orcmid.com/blog/2008/12/wtf-umm-flash-10-detection-not-so.asp" rel="nofollow">Details on these latest revelations</a> are on my blog.</p> <p><strong>UPDATE:</strong> Although I did a search, I missed the related question "<a href="http://stackoverflow.com/questions/214424/why-dont-flash-videos-play-after-upgrading-to-flash-10">Why don't flash videos play after upgrading to Flash 10?</a>" The speculations there are interesting but they don't get to the bottom of it. Also, it's not clear how Levi's problem was resolved. Interesting ... Maybe we can get to the bottom of things here.</p> <p><hr /></p> <p><strong>Some Background</strong></p> <p>I managed to install the new Adobe Flash Player version 10.0.12.36 as a clean install (with previous versions removed using the Adobe-provided uninstaller).</p> <p>The first disappointment was noticed when I couldn't play the latest NCIS program from the CBS Television site, not in HD, not in plain-old standard. But I could play videos of my favorite programs on Hulu. The more I nosed around, the more times I found those obnoxious you-don't-have-Flash, you-need-a-later-version-of-Flash, your-version-of-Flash-old messages that offered a button for downloading.</p> <p>Every time I clicked the download/update button, and told the Adobe site to do the install (which should fail if attempted, because I am not running as admin), my already having version 10.0.12.36 was confirmed instantly and no update was attempted.</p> <p>Curious, huh?</p> <p><hr /></p> <p><strong>The Challenge</strong></p> <p>I think I know exactly what the most-likely bug is in the Flash-detection script that people are using. It is just too juicy to not be the bug.</p> <p>Now, that does not mean all sites that fail to detect version 10 suffer from the same bug. I just think the one I have in mind is really likely. I should probably seal my theory in an envelope somewhere. Meanwhile, let's see what the StackOverflow community has to offer and what we conclude the lesson is.</p> <p>I say the bug is really simple and very funny. What do you say?</p> http://stackoverflow.com/questions/332952/whats-up-with-o1 28 What's Up with O(1)? orcmid 2008-12-02T03:29:44Z 2009-05-26T15:20:32Z <p>I have been noticing some very strange usage of O(1) in discussion of algorithms involving hashing and types of search, often in the context of using a dictionary type provided by the language system, or using dictionary or hash-array types used using array-index notation.</p> <p>Basically, O(1) means bounded by a constant time and (typically) fixed space. Some pretty fundamental operations are O(1), although using intermediate languages and special VMs tends to distort ones thinking here (e.g., how does one amortize the garbage collector and other dynamic processes over what would otherwise be O(1) activities).</p> <p>But ignoring amortization of latencies, garbage-collection, and so on, I still don't understand how the leap to assumption that certain techniques that involve some kind of searching can be O(1) except under very special conditions.</p> <p>Although I have noticed this before, an example just showed up in the <a href="http://stackoverflow.com/questions/330978/proper-collection-to-use-to-obtain-items-in-o1-time-in-c-net">Pandincus question, "'Proper’ collection to use to obtain items in O(1) time in C# .NET?"</a>.</p> <p>As I remarked there, the only collection I know of that provides O(1) access as a guaranteed bound is a fixed-bound array with an integer index value. The presumption is that the array is implemented by some mapping to random access memory that uses O(1) operations to locate the cell having that index.</p> <p>For collections that involve some sort of searching to determine the location of a matching cell for a different kind of index (or for a sparse array with integer index), life is not so easy. In particular, if there are collisons and congestion is possible, access is not exactly O(1). And if the collection is flexible, one must recognize and amortize the cost of expanding the underlying structure (such as a tree or a hash table) for <strike>which</strike> congestion relief (e.g., high collision incidence or tree imbalance).</p> <p>I would never have thought to speak of these flexible and dynamic structures as O(1). Yet I see them offered up as O(1) solutions without any identification of the conditions that must be maintained to actually have O(1) access be assured (as well as have that constant be negligibly small).</p> <p>THE QUESTION: All of this preparation is really for a question. What is the casualness around O(1) and why is it accepted so blindly? Is it recognized that even O(1) can be undesirably large, even though near-constant? Or is O(1) simply the appropriation of a computational-complexity notion to informal use? I'm puzzled.</p> <p>UPDATE: The Answers and comments point out where I was casual about defining O(1) myself, and I have repaired that. I am still looking for good answers, and some of the comment threads are rather more interesting than their answers, in a few cases.</p> http://stackoverflow.com/questions/352968/subversion-and-using-iis-for-asp-net-development/353378#353378 0 Answer by orcmid for Subversion and using IIS for ASP.NET development orcmid 2008-12-09T16:32:49Z 2008-12-09T16:32:49Z <p>I think you might want to separate this into two problems, following <a href="http://stackoverflow.com/questions/352968/subversion-and-using-iis-for-aspnet-development#353298">this recommendation</a> from Dillorscroft.</p> <p>First, with regard to the material on your development server that is published to the production site, I think you need version control for that. First so you can roll back any page, and you can also decide when you have a stable level of the development site that you want to extract to production. (I would get that from the source control system into a site image and then synchronize that image with the production site.)</p> <p>So, for the first part, we are talking about versioning the web pages and all of the custom server-side material that supports the web site.</p> <p>Secondly, With regard to the development of components that are used on the site, they need their own development projects, since it is the result that goes to the development site, not all of the source, libraries, etc. that the component is built with. So these will have their own project development tree (think of it as if you were building a library that is to be used by other development projects, although in this case the other projects are web pages). So the only thing that should show up in IIS is the "deployed" component to the development site. </p> <p>There seem to be three critical questions for you:</p> <ol> <li><p>How development of tests that need to go against the web site is handled and where that is version controlled (assuming they do not belong on the web site itself)</p></li> <li><p>How easily you can arrange to make sure that all content on the development web site is kept under version control and checked-in and -out appropriately. (This has to do with the tools you use to edit web pages and other server-side gunk other than components developed off to the side.)</p></li> <li><p>Easily taking developed components from the projects that produce them to the development site and have them be checked-in there.</p></li> </ol> <p>My solution to (2) and to version control of the development web site is to use Visual Source Safe integration with IIS and FrontPage extensions that places the site under version control. Components produced from other development projects are mapped to the server project by VSS sharing.</p> <p>For SVN, I speculate that (1) you want to see if there is an SVN adapter that IIS will recognize as an external source-control system and, either way, (2) have a discipline that takes delivery of components from their construction projects into the overall web site project.</p> http://stackoverflow.com/questions/329767/what-windows-software-do-you-like-for-personal-to-do-lists-especially-using-th/333222#333222 0 Answer by orcmid for What Windows software do you like for personal "To Do lists" (especially using the Getting Things Done approach) ? orcmid 2008-12-02T06:47:12Z 2008-12-02T06:47:12Z <p>I've run into a number of people that like Remember The Milk and Omnifocus, especially with their iPhone integration.</p> <p>I'm an Outlook-organized guy, and I use it for all pretty much everything. But the basic GTD with Outlook was clumsy for me and sometimes making quick list items was a pain. To deal with that and raise my game, I just added the TROG Bar to my system and I am evaluating it. I find it much handier as a sidebar that flies out when I move my mouse cursor to that edge of the screen. I also don't have to open Outlook to use it -- it will MAPI into the Outlook PST file directly. I can also make quick notes of things that occur to me and then process them later into GTD next actions and project items.</p> <p>I have started synchronizing the Outlook tasks to my Mobile PC phone, along with my calendar, so I'll see how helpful that is. It means that when I'm working at my desk I always have my phone tethered to the computer via USB connection and ActiveSync updates the phone as I introduce and update items in Outlook.</p> <p>So far, I am liking this, but I need to do a lot of cleanup of materials to have GTD work leaner and have me be more focused. This upgrade has only been going on a few days, but I like the trend.</p> http://stackoverflow.com/questions/330848/best-version-control-for-a-one-man-web-app/333205#333205 0 Answer by orcmid for Best version control for a one man web app? orcmid 2008-12-02T06:22:46Z 2008-12-02T06:22:46Z <p>I'm not able to answer the question as asked, because I don't develop on a Linux server.</p> <p>But maybe this experience has a counterpart in Linux world.</p> <p>I use a local-on-my-LAN-only IIS server (actually on an old laptop that no longer travels but works as a little server). I have VSS installed on that server too. There is an integration between the IIS Server, the FrontPage extensions on that server, and the VSS.</p> <p>The upshot is that I can use FrontPage to build and edit my site and build a development image that is always backed up in VSS, and I can check out, check in, and do all of that from within FrontPage. </p> <p>Now, the way I publish is I take advantage of the sharing capability of VSS so I have a deployment image that shares with the project that is actually an IIS web site. I have a deployment-image directory that I can transfer the latest checked-in material to (material that has not changed is not updated). I then deploy the deployment image to the hosted, public web site using FTP (again, only transfering new and updated files).</p> <p>I present all of these details to suggest what might be the use-case of interest, even though a different solution approach is needed with Linux.</p> <p>If I wasn't using a tool that integrated with the web server and also the source control at the server, I could do something similar by checking the VSS material in and out of a local directory and then pushing the updated VSS project to the IIS server web-pages directory hierarchy. The workflow is a little more clumsy. In this case, I would not edit pages directly on the development web server unless I could lock check-in pages as read-only or something.</p> <p>Does this suggest anything that might be appealing in the Linux server case?</p> http://stackoverflow.com/questions/330978/proper-collection-to-use-to-obtain-items-in-o1-time-in-c-net/332927#332927 1 Answer by orcmid for 'Proper' collection to use to obtain items in O(1) time in C# .NET? orcmid 2008-12-02T03:10:33Z 2008-12-02T03:10:33Z <p>I should probably make this a question, because I see the problem so often. What makes you think that dictionaries are O(1)? Technically, the only thing likely to be something like O(1) is access into a standard integer-indexed fixed-bound array using an integer index value (there being no look-up in arrays implemented that way).</p> <p>The presumption that if it looks like an array reference it is O(1) when the "index" is a value that <em>must</em> be looked up somehow, however behind the scenes, means that it is not likely an O(1) scheme unless you are lucky to obtain a hash function with data that has no collisions (and probably a lot of wasted cells).</p> <p>I see these questions and I even see answers that claim O(1) [not on this particular question, but I do seem them around], with no justification or explanation of what is required to make sure O(1) is actually achieved.</p> <p>Hmm, I guess this is a decent question. I will do that after I post this remark here.</p> http://stackoverflow.com/questions/331045/using-c-dlls-with-different-compiler-versions/332893#332893 0 Answer by orcmid for Using C++ DLLs with different compiler versions orcmid 2008-12-02T02:49:18Z 2008-12-02T02:55:59Z <p>Well, I think <a href="http://stackoverflow.com/questions/232926/how-to-make-consistent-dll-binaries-across-vs-versions#232959">Chris Becke's suggestion</a> is just fine. I would not use <a href="http://stackoverflow.com/questions/331045/using-c-dlls-with-different-compiler-versions#331064">Roger's first solution</a>, which uses an interface in name only and, as he mentions, can run into problems of incompatible compiler-handling of abstract classes and virtual methods. Roger points to the attractive COM-consistent case in <a href="http://stackoverflow.com/questions/331045/using-c-dlls-with-different-compiler-versions#331088">his follow-on</a>.</p> <ol> <li><p>The pain point: You need to learn to make COM interface requests and deal properly with IUnknown, relying on at least IUnknown:AddRef and IUnknown:Release. If the implementations of interfaces can support more than one interface or if methods can also return interfaces, you may also need to become comfortable with IUnknown:QueryInterface.</p></li> <li><p>Here's the key idea. All of the programs that use the implementation of the interface (but don't implement it) use a common #include "*.h" file that defines the interface as a struct (C) or a C/C++ class (VC++) or struct (non VC++ but C++). The *.h file automatically adapts appropriately depending on whether you are compiling a C Language program or a C++ language program. You don't have to know about that part simply to use the *.h file. What the *.h file does is define the Interface struct or type, lets say, IFoo, with its virtual member functions (and only functions, no direct visibility to data members in this approach).</p></li> <li><p>The header file is constructed to honor the COM binary standard in a way that works for C and that works for C++ regardless of the C++ compiler that is used. (The Java JNI folk figured this one out.) This means that it works between separately-compiled modules of any origin so long as a struct consisting entirely of function-entry pointers (a vtable) is mapped to memory the same by all of them (so they have to be all x86 32-bit, or all x64, for example).</p></li> <li><p>In the DLL that implements the the COM interface via a wrapper class of some sort, you only need a factory entry point. Something like an </p> <p>extern "C" HRESULT MkIFooImplementation(void **ppv);</p></li> </ol> <p>which returns an HRESULT (you'll need to learn about those too) and will also return a *pv in a location you provide for receiving the IFoo interface pointer. (I am skimming and there are more careful details that you'll need here. Don't trust my syntax) The actual function stereotype that you use for this is also declared in the *.h file.</p> <ol> <li><p>The point is that the factory entry, which is always an undecorated extern "C" does all of the necessary wrapper class creation and then delivers an Ifoo interface pointer to the location that you specify. This means that all memory management for creation of the class, and all memory management for finalizing it, etc., will happen in the DLL where you build the wrapper. This is the only place where you have to deal with those details.</p></li> <li><p>When you get an OK result from the factory function, you have been issued an interface pointer and it has already been reserved for you (there is an implicit IFoo:Addref operation already performed on behalf of the interface pointer you were delivered). </p></li> <li><p>When you are done with the interface, you release it with a call on the IFoo:Release method of the interface. It is the final release implementation (in case you made more AddRef'd copies) that will tear down the class and its interface support in the factory DLL. This is what gets you correct reliance on a consistent dynamic stoorage allocation and release behind the interface, whether or not the DLL containing the factory function uses the same libraries as the calling c http://stackoverflow.com/questions/328793/python-curses-ascii-depending-on-locale/330086#330086 2 Answer by orcmid for python curses.ascii depending on locale? orcmid 2008-12-01T05:11:46Z 2008-12-01T05:11:46Z <p>Well, it is called curses.ascii, so using ASCII rules for what's printable should not be a surprise. If you are using an ISO 8-bit code, or you are operating from a known code page, you will need rules that correspond to what the actual codes and their displays are.</p> <p>I think using unicode characters and standard Unicode classifications is fine. That just might not deal with what the curses and console arrangement are actually going to display properly. </p> <p>There also needs to be some consideration for what is acceptable and unacceptable for the application, even if displayable.</p> http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb/330066#330066 0 Answer by orcmid for Where is the best place in an app to do validation? Rules of thumb? orcmid 2008-12-01T04:49:07Z 2008-12-01T04:49:07Z <p>I liked <a href="http://stackoverflow.com/questions/328939/where-is-the-best-place-in-an-app-to-do-validation-rules-of-thumb#329356">Timothy's picking up on MVC</a>. </p> <p>Since we are given very little about the nature of the application, I want to point out some very general rules of thumb along with the good advice already provided.</p> <p>Validate in a way that</p> <ol> <li><p>No irreversible action is performed with invalid input</p></li> <li><p>The user does not lose work</p></li> <li><p>The user's activity is never put in a state where an erroneous input cannot be easily identified and simply retracted</p></li> <li><p>The application will not fail or crash</p></li> <li><p>No (shared) persistent material is ever left (or seen) in a bad state as a result of application handling of invalid data</p></li> <li><p>An user is not frustrated in accomplishing their useful work as a result of how and when validation is done</p></li> </ol> <p>That should pretty much cover it.</p> http://stackoverflow.com/questions/329034/subscription-protecting-content/329981#329981 0 Answer by orcmid for Subscription Protecting Content? orcmid 2008-12-01T03:40:57Z 2008-12-01T04:16:40Z <p>NOTE: Looking back through this, I see a lot of missing detail and edge cases to identify. I'm leaving it in this form because I think it is useful to provide the sense of it (even though the details are not quite fully-formed) so you can see what you would be in for. You'd need to work through a threat model to have the cases line up properly.</p> <p>With regard to passwords, you can prevent password sharing by having an authentication process that uses a secure connection (TSL and https:) and that on the client side computes a hash of the user-suppled password along with machine and user-account (the user id with you and the user account on the client computer) associated data. Even if the password becomes known, the hashing function won't produce the correct hash on a different machine or user account.</p> <p>There is the interesting problem of how the hash (which is what you accept -- you never know the user's chosen password) is established the first time for association with the user id used with you. You'll need something like a unique key provided for the subscription and provided via e-mail handshake at the time of sign-up and initial choice of user id (if different than the e-mail address) and password. </p> <p>If you use cookies to avoid people having to log in repeatedly, you might want to have encrypted/hashed information in the cookie that ties it to the machine as well as the subscription.</p> <p>Now, having done that much, you do have the problem of people wanting to be able to work from multiple machines and also needing to reset an user's password so they can choose a new one in place of a forgotten/compromised one. Since this means providing telephone support and other means of reverification of an authentic user, you might want to consider if it is worth the cost to you and if users will consider it worth the cost to them.</p> <p>With regard to misappropriation of the materials obtained from the site, you have a much harder problem. Encryption won't help much and you often want to allow users to retain material for off-line use, reference while work with the material, etc. What you can do is identify the material as your property and also identify material as your property and as provided to a particular subscriber in ways where it is hard to excise all occurrences. That is a lot of server-side work. Combined with the obvious demonstration of distrust for your subscribers, you might want to reconsider and work to have something more trustworthy and, say, providing something of value that is not reflected in just having the content. <strike>Are you sure you want to do that?</strike></p> <p>NOTE 2: If you are delivering some sort of progression, such as working through courseware and lessons, there are obvious things you can do so that if somehow there are multiple people coming in, if they make any sort of progress, they mess things up for anyone else. The more personalization and progression, the less appealing it is to provide the account to someone else to use. This doesn't prevent retention of the material but any widespread re-use of extracted content has to be dealt with by other means.</p> http://stackoverflow.com/questions/329274/how-can-i-skip-the-login-prompt-for-visual-sourcesafe/329760#329760 0 Answer by orcmid for How can I skip the login prompt for Visual Sourcesafe? orcmid 2008-12-01T01:25:38Z 2008-12-01T01:25:38Z <p>If your user-login name is the same as your "network" name (in my case, my Windows user name), my experience is that I don't have to be prompted for the log in. My VSS 6.0 server machine has an account for my name, and my VSS 6.0 client machine has the same (non-administrative) account from which I do development. </p> <p>In the VSS Admin application, look at the Tools | Options | General tab and the check box for "Use network name for automatic user log in".</p> <p>Of course, this requires cooperation of your administrator and determination of whatever policies there are for VSS user names and log-in security. In my case, I wear both hats and we get along fine.</p> <p>As I recall, even though I don't access VSS from the admin account, I have the same arrangement for the admin user-login and I don't seem to have to log in very often when using VSS Admin as well. (I do that so rarely that I honestly don't remember, but I didn't have to log in when bringing it up just now.)</p> http://stackoverflow.com/questions/329343/i-want-to-introduce-a-new-methodology-into-my-company-what-preparation-and-appro/329716#329716 1 Answer by orcmid for I want to introduce a new methodology into my company. What preparation and approaches would be best? orcmid 2008-12-01T01:00:17Z 2008-12-01T01:00:17Z <p>I think I would be cautious considering that it involves use of Ada SPARK and involves learning to rely on strong verification methodologies and Z Notation. Also, the Tokineer project which is being promoted as a success consists of just-under 10,000 lines of code. The identification of only a single defect in that code since release is certainly promising but one needs to determine how much the kind of specifications and code in that demonstration project are akin to what you deal with. </p> <p>I think you might want to take <a href="http://www.adacore.com/home/gnatpro/tokeneer/downloads/" rel="nofollow">a look at Tokineer</a> and see exactly what is involved and how it relates to the code base and the code development that is underway now for your aerospace work.</p> <p>You might want to work with the Process and Standards fellow to identify the kind of external experience with CbyC that is available, especially information from teams that did not involve the original developers of CbyC. In most cases, there will need to be a pilot effort and how that can work is also important, in terms of learning curve, ability to integrate with other efforts, and so on.</p> <p>Mainly, I think you need to do more homework, especially depending on how much this is a radical injection into current development activity, existing maintenance obligations, and in-progress work.</p> http://stackoverflow.com/questions/327662/why-do-some-developers-become-architects/327974#327974 1 Answer by orcmid for Why do some developers become architects? orcmid 2008-11-29T20:30:52Z 2008-11-29T20:30:52Z <p>I can only comment on my own experience in developing as a programmer to a software designer and then software system architect. I now refer to myself as a software designer/architect no matter what title I might have in a given work relationship.</p> <p>First, I find the Microsoft work on architects and architecture rather interesting for its careful <a href="http://msdn.microsoft.com/en-us/architecture/aa699404.aspx" rel="nofollow">identification</a> of the different kinds of architecture that are involved (e.g., infrastructure, solutions, and enterprise). It is important to differentiate. There have also been valuable webcasts on development as an architect. Most of this is not specific to Microsoft technology.</p> <p>With regard to having task knowledge and ability to work hands-on, my sense is that this becomes necessarily limited except for two things: There must be enough technology knowledge so one could dive in and can certainly guide other developers (at the solutions level and deeper). In addition, an architect may hold the reins to critical invariants and may actually own the specifications and code that are tied to that. This is similar to the architectural role involving defining and preserving the critical interfaces and the separations of concerns via the chosen architecture.</p> <p>Now, with regard to my own experience, I started out as a highly-inquisitive programmer and then software developer in the late 50s and early 60s. There was ample opportunity for being self-taught and also follow the work that would grow into software engineering, software quality-assurance, and various development methodologies, including reliance on programming languages.</p> <p>What I noticed for me is that I moved farther and farther toward concern for design and organization of my software efforts, both through learning from the software of others, through reading in the literature of the time, and in wanting to understand how to make software designs explainable and the implementations confirmable and conceptually understandable. I also found myself very attentive to modularization and the creation of useful libraries and related tools. </p> <p>This observation is in terms I use now, looking back. At the time, my interest was not so well-articulated. There was mostly a certain restlessness and wanting to have ways to be confident in my work and my understanding of it. In fact, preserving my confidence in approaches and how I demonstrated success was a consistent presence as I learned to grasp larger and larger development situations. The level of abstraction of that confidence was raised gradually without my noticing so much at the time. I also think it paced the raising of our grasp through use of more powerful tools for development and attention that was paid to growing a body of practice.</p> <p>In the 70s-80s I saw myself as a software designer. But it was really in the late 80s and 90s that I began to notice how much my attention was on the end-to-end, full software-development/deployment lifecycle. It was also in this period that I was viewed as and acted as an architect (although my first Architect title, as such, was in 1972). My attention was also on how projects fail and how developers often have their attention on the wrong ball. So I was also interested in what would have developers pay attention to factors that would allow them to have more successful results. I was a big Fred Brooks, DeMarco, and Yourdon fan.</p> <p>In this century, I have been impressed by the emergence of software engineering and software-development management as disciplines with a substantial body of knowledge (as illustrated in the work of Steve McConnell), and the emergence of agile development and management is inspiring to me. I find myself working at a more-abstracted level, also.</p> <p>With regard to development itself, I am now a little dismayed at how poor the on-ramp for entry-level software developers and budding computer scientists is. It seems we have forgotten something or maybe we never really new it, but I see gaps in how people become experienced and raise their level of mastery, and wonder what kind of preparatory support would be more effective.</p> <p>Although I write less code these days, I still enjoy it and I notice it is often in challenging areas that others have left behind or that are simply not part of the current developer kit. Part of my fit for that is I remember how to work at those levels and more-recent developers have never been exposed to them. I don't think that is a problem so much as the lack of fundamental understanding that I think is also missing. I'm not sure what would bridge that gap and still be relevant for the level at which developers now finding themselves working. </p> http://stackoverflow.com/questions/305691/which-book-dramatically-changed-your-way-of-approaching-problems/306395#306395 2 Answer by orcmid for Which book dramatically changed your way of approaching problems? orcmid 2008-11-20T18:41:20Z 2008-11-28T18:23:39Z <p>Four of them come to mind at once (and you can tell how far back this was):</p> <ol> <li><p>The <em>Report on the Algorithmic Language ALGOL 60</em> was earth-shattering for me when I stumbled upon it in 1961.</p></li> <li><p>Peter Landin's triple-threat: "The Mechanical Evaluation of Expressions [MEE]", "A Correspondence between ALGOL-60 and Church's lambda notation," and "The Next 700 Programming Languages" (all mid-60s)</p></li> <li><p>Donald Knuth's <em>The Art of Computer Programming</em>, all volumes but especially vol.1 (along with his "Literate Programming" and Selected Works).</p></li> <li><p>Edsger Dijkstra's <em>A Discipline of Programming</em>, 1976.</p></li> <li><p>ADDED LATER: On reflection, I notice that this book has had a profound influence on my attitude toward development of dependable software: Robert C. Solomon and Fernando Flores, "Builkding Trust in Business, Politics, Relationships, and Life," Oxford University Press (New York: 2001), ISBN 0-19-516111-4 pbk. I summarize some of the importance for me in the post "<a href="http://orcmid.com/blog/2008/05/trust-but-demonstrate.asp" rel="nofollow">Trust but Demonstrate</a>."</p></li> </ol> http://stackoverflow.com/questions/314401/how-to-read-a-line-from-the-console-in-c/319028#319028 0 Answer by orcmid for How to read a line from the console in C orcmid 2008-11-25T21:55:32Z 2008-11-25T22:13:28Z <p>As suggested, you can use getchar() to read from the console until an end-of-line or an EOF is returned, building your own buffer. Growing buffer dynamically can occur if you are unable to set a reasonable maximum line size.</p> <p>You can use also use fgets as a safe way to obtain a line as a C null-terminated string:</p> <pre><code>#include &lt;stdio.h&gt; char line[1024]; /* Generously large value for most situations */ char *eof; line[0] = '\0'; /* Ensure empty line if no input delivered */ line[sizeof(line)-1] = ~'\0'; /* Ensure no false-null at end of buffer */ eof = fgets(line, sizeof(line), stdin); </code></pre> <p>If you have exhausted the console input or if the operation failed for some reason, eof == NULL is returned and the line buffer might be unchanged (which is why setting the first char to '\0' is handy).</p> <p>fgets will not overfill line[] and it will ensure that there is a null after the last-accepted character on a successful return.</p> <p>If end-of-line was reached, the character preceding the terminating '\0' will be a '\n'.</p> <p>If there is no terminating '\n' before the ending '\0' it may be that there is more data or that the next request will report end-of-file. You'll have to do another fgets to determine which is which. (In this regard, looping with getchar() is easier.)</p> <p>In the (updated) example code above, if line[sizeof(line)-1] == '\0' after successful fgets, you know that the buffer was filled completely. If that position is proceeded by a '\n' you know you were lucky. Otherwise, there is either more data or an end-of-file up ahead in stdin. (When the buffer is not filled completely, you could still be at an end-of-file and there also might not be a '\n' at the end of the current line. Since you have to scan the string to find and/or eliminate any '\n' before the end of the string (the first '\0' in the buffer), I am inclined to prefer using getchar() in the first place.)</p> <p>Do what you need to do to deal with there still being more line than the amount you read as the first chunk. The examples of dynamically-growing a buffer can be made to work with either getchar or fgets. There are some tricky edge cases to watch out for (like remembering to have the next input start storing at the position of the '\0' that ended the previous input before the buffer was extended).</p> http://stackoverflow.com/questions/315948/c-catching-all-exceptions/318894#318894 1 Answer by orcmid for C++ catching all exceptions orcmid 2008-11-25T21:15:34Z 2008-11-25T21:15:34Z <ol> <li><p>Can you run your JNI-using Java application from a console window (launch it from a java command line) to see if there is any report of what may have been detected before the JVM was crashed. When running directly as a Java window application, you may be missing messages that would appear if you ran from a console window instead.</p></li> <li><p>Secondly, can you stub your JNI DLL implementation to show that methods in your DLL are being entered from JNI, you are returning properly, etc? </p></li> <li><p>Just in case the problem is with an incorrect use of one of the JNI-interface methods from the C++ code, have you verified that some simple JNI examples compile and work with your setup? I'm thinking in particular of using the JNI-interface methods for converting parameters to native C++ formats and turning function results into Java types. It is useful to stub those to make sure that the data conversions are working and you are not going haywire in the COM-like calls into the JNI interface.</p></li> <li><p>There are other things to check, but it is hard to suggest any without knowing more about what your native Java methods are and what the JNI implementation of them is trying to do. It is not clear that catching an exception from the C++ code level is related to your problem. (You can use the JNI interface to rethrow the exception as a Java one, but it is not clear from what you provide that this is going to help.)</p></li> </ol> http://stackoverflow.com/questions/313882/can-you-invoke-an-instantiated-objects-class-constructor-explicity-in-c/314974#314974 -1 Answer by orcmid for Can you invoke an instantiated object's class constructor explicity in C++? orcmid 2008-11-24T18:27:58Z 2008-11-25T20:39:15Z <p>Just to summarize, the three ways to specify the explicit constructor are via</p> <ol> <li><p>A instance(2); // does A instance = 2; ever work?</p></li> <li><p>A *instance = new A(2); //never sure about &amp; versus * here, myself</p></li> <li><p>new (&amp;instance) A(2);</p></li> </ol> <p>and flavors of those. The <strike>idea</strike> goal is to arrange that at no time is an object constructed that is not in a proper initialized state, and constructors are designed to assure that. (This means that methods don't have to check on whether some .init(...) method has been successfully called or not.)</p> <p>This strikes me as the more-functional way to go about this, especially for classes that are parts of frameworks and reused in libraries. If that is what you are interested in, work toward having all constructors, including any default one, deliver a fully-working instance.</p> <p>Exception Cases: There are things you might not have in the constructor operation if it is possible for them to fail, unless it is appropriate to throw an exception from the constructor. And some folks like having "blank" instances that are propogated using subsequent methods and even exposed-to-initialization members. It is interesting to explore ways to mitigate such situations and have robust instances that don't have bad states that need to be protected against in method implementations and in usage.</p> <p>PS: In some complex cases, it may be useful to have an initialized instance (reference) be delivered as the result of a function or of a method on a "factory" class, so that the intermediate, under-setup instance is never seen outside of the encapsulating factory class instance or function. That gives us,</p> <p>+4. A *instance = MakeAnA(2); </p> <p>+5. A *instance = InterestingClass.A(2);</p> http://stackoverflow.com/questions/236258/manual-vs-automatic-memory-management/315281#315281 0 Answer by orcmid for Manual vs. Automatic Memory Management orcmid 2008-11-24T20:07:07Z 2008-11-24T20:07:07Z <p>I think the generic question involves a false contrast, and many of the answers here provide more balance already. I wanted to come at this from a different angle to round things out a bit.</p> <p>The first question is whether or not a given programming system even allows manual storage management and has efficient storage-structure accesss (structs and arrays and pointers that map to storage). And does it also allow automatically-managed storage where nothing is deleted so long as it can still be referenced too? Or not. If you car has a stick-shift and manual clutch, you can't drive it like it is an automatic (and vice versa).</p> <p>There may be compelling reasons for using tools such as .NET, Java, JavaScript, Scheme, Common Lisp, etc., that don't really provide a model for manually- (that is, your program-) controlled storage allocation and release. So the opportunity doesn't even arise and there are tons of programming efforts that get along just fine. Programmatic management of storage usually doesn't arise, apart from some simple practices that can help the garbage collector and, in particular, reduce the risk of exhausting available storage. </p> <p>With regard to the usual suspects (notably C/C++) that do provide for programmatic control and require it as the default, more or less (ignoring the C++/CLI dialect). IN that case, the question is really what conditions are there that make this "manual" control valuable?</p> <p>For the most part, these platforms excel when most data can have its lifecycle tied to the lifecyle of the function that declares the data. This makes for very efficient memory management and a garbage collector isn't needed. If the exceptions are relatively few, with only-occasional spasms of allocation and freeing of heap memory, the avoidance of garbage collection may be very appealing in combination with running on the native hardware at native speeds. But if that's more performance than you absolutely require, going with a more-economical development and maintenance model is certainly preferable.</p> <p>The most interesting case for me is when there is an allocation and freeing regime that is so intensely used that a custom memory-allocation approach is critical for performance reasons. Programs might need their own malloc-and-free equivalents (or even substitute the heap manager) that operate by grabbing large heap chunks and sub-allocating them privately because the efficiencies are so important. This can happen in compiler development and in specialized list-processing applications. An example that comes to mind for me has to do with maintenance of chess positions in custom data blocks in conjunction with a heuristic look-ahead search-for-move activity where rapid detection of duplicates is important. Tree-oriented, graph-oriented, queue-oriented, and stack-based processes may well gain from custom allocation methodologies for their specific data structures.</p> <p>Finally, if one is working on tightly-constrained embedded systems, the use of custom storage management with at most reference counting may be the only supportable memory-management approach.</p> <p>And, as we know, advances in hardware performance, software VMs, and other techniques will continue to shrink the roll-your-own cases into a relatively diminishing but possibly-important niche. It is important to be judicious in deciding when one can't wait for that and the investment in custom work is provides a benefit well beyond the added cost and complexity of the effort.</p> <p>None of this matters if your tools give you no choice in how dynamic storage management will work and changing tools is of questionable benefit.</p> http://stackoverflow.com/questions/311332/measuring-performance-after-tail-call-optimizationtco/313057#313057 0 Answer by orcmid for Measuring performance after Tail Call Optimization(TCO) orcmid 2008-11-23T22:50:07Z 2008-11-23T22:55:53Z <p>One way to determine if tail-call is happening is to see if you can force a stack overflow. The following program does not produce a stack overflow using VC++ 2005 Express Edition and, even though its results exceed the capacity of long double rather quickly, you can tell that all of the iterations are being processed when TCO is happening:</p> <pre><code> /* FibTail.c 0.00 UTF-8 dh:2008-11-23 * --|----1----|----2----|----3----|----4----|----5----|----6----|----* * * Demonstrate Fibonacci computation by tail call to see whether it is * is eliminated through compiler optimization. */ #include &lt;stdio.h&gt; long double fibcycle(long double f0, long double f1, unsigned i) { /* accumulate successive fib(n-i) values by tail calls */ if (i == 0) return f1; return fibcycle(f1, f0+f1, --i); } long double fib(unsigned n) { /* the basic fib(n) setup and return. */ return fibcycle(1.0, 0.0, n); } int main(int argc, char* argv[ ]) { /* compute some fibs until something breaks */ int i; printf("\n i fib(i)\n\n"); for (i = 1; i &gt; 0; i+=i) { /* Do for powers of 2 until i flips negative or stack overflow, whichever comes first */ printf("%12d %30.20LG \n", i, fib((unsigned) i) ); } printf("\n\n"); return 0; } </code></pre> <p>Notice, however, that the simplifications to make a pure tail-call in fibcycle is tantamount to figuring out an interative version that doesn't do a tail-call at all (and will work with or without TCO in the compiler.</p> <p>It might be interesting to experiment in order to see how well the TCO can find optimizations that are not already near-optimal and easily replaced by iterations.</p> http://stackoverflow.com/questions/309329/best-free-tool-to-build-an-exe-from-java-code/310213#310213 0 Answer by orcmid for Best free tool to build an exe from Java code? orcmid 2008-11-21T21:14:34Z 2008-11-21T22:57:33Z <p>It is also not entirely necessary to make an .exe. On Windows, at least, .jar files are executable so long as there is a Java runtime installed and the .jar extension has been set up on the machine.</p> <p>[NOTE: I just discovered that something that has broken the file association, which had previously worked for me. It now only works when I am administrator, and the JAR icon even disappears otherwise. I assume that some recent install has messed with that and the candidates are (1) OpenOffice.org 3.0, (2) WinRAR, or (3) a Java update download. However, the following all work when the association is made to work.]</p> <p>The "program" Clicker.jar runs as a Java application when (1) I double-click on it in a Windows Explorer window, (2) When I create a console shell where I am in the same directory and I perform the command ">Clicker.jar" (3) when I send a shortcut to my desktop and double-click on it, and (4) when I put the full path in the Windows XP Run ... box.</p> <p>I don't know that these will be found in a PATH search, and I normally wouldn't arrange that anyhow.</p> http://stackoverflow.com/questions/306410/accessing-parent-elements-in-an-object-model-efficiently/310373#310373 2 Answer by orcmid for Accessing parent elements in an object model efficiently orcmid 2008-11-21T22:07:22Z 2008-11-21T22:07:22Z <p>Whether or not you use Zachary's tree structure or you do it in a more type-specific way, the question about coupling lives on. </p> <p>If there is a lot about an image that doesn't have anything to do with how the image is "hosted" in a page, you might want to use an intermediate type which has the context-dependent aspect and that contains an image instance (reference). </p> <p>Only you can decide if that is excessive, depending on the application and how important it is to reduce coupling and allow greater reuse of some of the constituents in other contexts.</p> http://stackoverflow.com/questions/307703/how-many-of-you-have-contributed-gave-feedback-to-your-standards-committees/310339#310339 1 Answer by orcmid for How many of you have contributed/gave feedback to your standards committees? orcmid 2008-11-21T21:54:38Z 2008-11-21T21:54:38Z <p>I have submitted comments to standards committees from time to time. I notice that I am more appreciative and willing to do that when comments and their discussion are public somewhere. Even so, I have submitted comments to write-only input points and occassionally been pleased to receive a response, often much later, on the disposition of my comment.</p> <p>As a current member of a few standards-development committees, I can tell you that external comments and feedback are prized. There are also organizations, such as OASIS, where the importance of external comments and their responsible disposition is part of the rules for operating a TC. </p> <p>External feedback lets us know that there are people paying attention that care about the work. I know we also disappoint people when we don't respond openly and quickly. I also realize that for feedback that involves proposals that are essentially feature requests, we are often not limited by what is considered in scope and, in particular, whether anyone is willing (or already has) to implement the requested feature.</p> <p>In any case, feedback to the standards-development and -clarification processes is extremely valuable. (And if the effort you go through to provide input is not valued, that is usually easy to detect.) This is not much different than the submission of bugs and feature requests for software that you are using, as well.</p> http://stackoverflow.com/questions/309205/are-variable-prefixes-hungarian-really-necessary-anymore/310237#310237 2 Answer by orcmid for Are variable prefixes ( Hungarian ) really necessary anymore? orcmid 2008-11-21T21:24:01Z 2008-11-21T21:24:01Z <p>What makes me curious about this question is the fact that the languages (C then C++) where prefixing (i.e., Hungarian notation) was introduced were also strongly-typed. For all I know, it was done with Pascal's use at Microsoft as well. And it would seem that it was also used with Mesa, a strongly-typed language that the Hungarian may have had some familiarity with [;&lt;).</p> <p>That being the case, it is fair to get beneath the question and consider (1) what problem was prefixing used to help solve and (2) how has that problem gone away?</p> <p>I know that's not exactly an answer, but it might be more useful than the blanket objections to use of prefixes as outmoded or wrong-headed. </p> http://stackoverflow.com/questions/305790/why-bundle-version-control-plugin-with-ide/306314#306314 0 Answer by orcmid for Why bundle version control plugin with IDE? orcmid 2008-11-20T18:21:28Z 2008-11-20T18:21:28Z <p>I have both systems where there is an integrated IDE (Microsoft FrontPage against an IIS Development Web site with Visual Source Safe on all of the web content) and where there is not (java command-line development, Visual Studio Express Editions). An intermediate case that I use is jEdit 4.x with VSS integration via plug-in.</p> <p>I think the integrated case is valuable for the reason it always is -- you don't have to leave your application to interact with source-control functions and you don't have to worry about remembering to add new files and to check out files before editing them. The ability to have a smooth work process and to minimize the risk of oversights is powerful, as far as I am concerned. Even when the IDE-plugin integration is less than perfect (the jEdit 4.x case), I still prefer it over not having it.</p> <p>I also agree that having explorer integration on Windows, the case for Tortoise SVN, is also a great capability, even when IDE integration is available. This allows convenient operation without having to launch the IDE while also being able to launch from the explorer window into the IDE (depending on file type) or editor or make or whatever while operating in Windows Explorer.</p> <p>And yes, the command-line interfaces remain valuable, especially for scripting of recuring-operation patterns.</p> <p>I operate in many contexts. Having low barriers and fluidity of operation in all of them is to be prized.</p> http://stackoverflow.com/questions/299414/is-it-possible-to-hide-the-content-of-an-asp-net-master-page-if-page-is-opened-a/300069#300069 0 Answer by orcmid for Is it possible to hide the content of an asp.net master page, if page is opened as a popup? orcmid 2008-11-18T20:40:56Z 2008-11-18T20:40:56Z <p>I agree. This is a server-side problem, not something to scrape into shape on the client side. It may also be valuable to organize your web pages where the common content between the pop-up and a main page is maintained separately and imported server-side into the page that has the master-page surround. Pages that link pop-ups should use the comment content, not the surrounder.</p> <p>Lots of ways to do this (but I don't suppose anyone wants to know how FrontPage extensions help). Try server-side includes.</p> http://stackoverflow.com/questions/290806/do-you-try-to-make-your-code-look-pretty/293074#293074 -1 Answer by orcmid for Do you try to make your code look pretty? orcmid 2008-11-15T21:29:09Z 2008-11-15T21:29:09Z <p>I'm not qualified to assess your neuroses, but I can tell you that I am often found writing in this style:</p> <h1>divPreview {</h1> <pre><code> text-align: center; vertical-align: middle; border: #779 1px solid; overflow: auto; width: 210px; height: 128px; background-color: #fff" } </code></pre> <p>I like some of the other things that you do, but I am not religious about any of them. It really depends on the context and what seems most important to have stand out and/or be easy to grasp.</p> <p>I must admit that I never need to look at diffs (and I don't use debuggers either), so I am not ashamed to reformat the appearance on a revision, adjusting to have the changes blend into the preserved style.</p> http://stackoverflow.com/questions/292682/understanding-dijkstras-mozart-programming-style/293014#293014 5 Answer by orcmid for Understanding Dijkstra's Mozart programming style orcmid 2008-11-15T20:27:38Z 2008-11-15T21:00:18Z <p>I think the Mozart story confuses what gets shipped versus how it is developed. Beethoven did not beta-test his symphonies on the public. (It would be interesting to see how much he changed any of the scores after the first public performance.)</p> <p>I also don't think that Dijkstra was insisting that it all be done in your head. After all, he wrote books on disciplined programming that involved working it out on paper, and to the same extent that he wanted to see mathematical-quality discipline, have you noticed how much paper and chalk board mathematicians may consume while working on a problem?</p> <p>I favor <a href="http://stackoverflow.com/questions/292682/understanding-dijkstras-mozart-programming-style#292955">Simucal's response</a>, but I think the Mozart-Beethoven metaphor should be discarded. That shoe-horns Dijkstra's insistence on discipline and understanding into a corner where it really doesn't belong. </p> <p><strong>Additional Remarks:</strong> </p> <p>The TV popularization is not so hot, and it confuses some things about musical composition and what a composer is doing and what a programmer is doing. In Dijkstra's own words, from his 1972 Turing Award Lecture: "We must not forget that it is <em>not</em> our business to make programs; it is our business to design classes of computations that will display a desired behavior." A composer may be out to discover the desired behavior. </p> <p>Also, in Dijkstra's notion that version 1.0 should be the final version, we too easily confuse how desired behavior and functionality evolve over time. I believe he oversimplifies in thinking that all future versions are because the first one was not thought out and done rigorously and reliably. </p> <p>Even without time-to-market urgency, I think we now understand much better that important kinds of software evolve along with the users experience with it and the utilitarian purpose they have for it. Obvious counter-examples are games (also consider how theatrical motion pictures are developed). Do you think Beethoven could have written Symphony No. 9 without all of his preceding experience and exploration? Do you think the audience could have heard it for what it was? Should he have waited until he had the perfect Sonata? I'm sure Dijkstra doesn't propose this, but I do think he goes too far with Mozart-Beethoven to make his point. </p> <p>In addition, consider chess-playing software. The new versions are not because the previous ones didn't play correctly. It is about exploiting advances in chess-playing heuristics and the available computer power. For this and many other situations, the idea that version 1.0 be the final version is off base. I understand that he is rightfully objecting to the release of known-to-be unreliable and maybe impaired software with deficiencies to be made up in maintenance and future releases. But the Mozartian counter-argument doesn't hold up for me. </p> <p>So, did Dijkstra continue to drive the first automobile he purchased, or clones of exactly that automobile? Maybe there is planned obsolescence, but a lot of it has to do with improvements and reliability that could not have possibly been available or even considered in previous generations of automotive technology.</p> <p>I am a big Dijkstra fan, but I think the Mozart-Beethoven thing is way too simplistic as well as inappropriate. I am a big Beethoven fan too.</p> http://stackoverflow.com/questions/292732/self-signed-ssl-cert-or-ca/292999#292999 1 Answer by orcmid for Self-signed SSL Cert or CA? orcmid 2008-11-15T20:13:33Z 2008-11-15T20:13:33Z <p>To answer your question about Internet Explorer, it will warn users about any site whose certificate is not signed by an IE-known (unfortunately called "trusted") CA. This includes for your own CA and for self-signed certificates. It will also make a warning if the domain in the certificate is not the one being accessed.</p> <p>If this is a private site, you may not care so long as you are getting link-level encryption (and are you that fearful of someone sniffing your traffic?). If there is public access and you want SSL, then get a signed certificate from a recognized CA, as others have already advised.</p> http://stackoverflow.com/questions/289712/how-do-you-format-your-compound-statements-in-delphi-and-c/291928#291928 0 Answer by orcmid for How do you format your Compound Statements in Delphi and C#? orcmid 2008-11-15T01:05:23Z 2008-11-15T01:05:23Z <p>This is all pretty funny. I have my own idiosyncratic way of alignment that, oddly, I use in several languages, including Pascal, C, and even COBOL (though not in a long time for that one).</p> <p>I think I first saw it in a class from Ken Orr. My version is also very much like having an offside rule (similar to Python and F#) where you could just use indenting to show nesting. </p> <p>Anyhow, here is how I do the example:</p> <pre><code>begin if x = y then begin (* stack to avoid getting too much indentation *) ... ... end else for i := 0 to 20 do begin ... ... end; end; </code></pre> <p>and yes, the C/C++/Java/C# flavor would be something like</p> <pre><code> { if (x == y) { ... /* Space as if 'then' is there */ ... } else for (int i = 0; i&lt;21; i++) { ... /* space as if 'do' is there */ ... } } </code></pre> <p>I use this a lot. You could stack { and } the same way I did begin and end, but I find it more pleasing to be able to sight down an edge and confirm matching brackets and ending of the indented group. I vary to keep indenting from being excessive and to avoid having too many "{" and "}" standing alone in a sea of whitespace.</p> <p>I don't evangelize this. No one has complained about being able to read it. Putting "{" on the end of a line seems like a hold-over from Ratfor pre-processors and such, sort of the way Python requires the (more-pleasant) ":" in places. I don't want to have to scan ragged right-edge down the code when I can use alignment on the left edges more usefully.</p> <p>As we say around here, YMMV</p> http://stackoverflow.com/questions/286575/anyone-know-how-to-use-wmi-with-c-instead-of-c/288188#288188 0 Answer by orcmid for Anyone know how to use WMI with C instead of C++ ? orcmid 2008-11-13T20:34:18Z 2008-11-13T20:47:51Z <p>The JNI interface itself is a derivative of COM and you will find those methods and the methods of the WMI interfaces much easier to use if you use enough C++ to treat interfaces as implemented by C++ classes.</p> <p>The other thing that will be helpful is that you will be able to use the COM interface pointers and reference counting as a way to bind the lifecyle of the COM interface to the lifecycle of your JNI-implemented Java classes. </p> <p>I used an approach like this to implement a Java bridge, via JNI, to some C Language interfaces on Windows. I hand-rolled COM interfaces and a .lib that is used in building the JNI DLL.</p> <p>The difficult part, with WMI, is that you will want to use the standard COM APIs to Instantiate the COM objects, whereas I created my own custom "factory" code, since it was all a private implementation.</p> <p>You can download a snapshot of my development tree for the <a href="http://odma.info/dev/devNotes/2006/12/d061201g.htm" rel="nofollow">ODMJNI 1.0 0.50beta Function-Complete Release</a>. If you look at info.odma.odmjni100 in the development tree you'll see how the JNI DLL is built (using VC++ 2005 Express Edition) and Java 1.5. The OdmJniBind.java class consists of the static methods that are used in the Java classes to coordinate object lifecycles between Java Classes and COM Object interfaces. (the OdmNative peer section of the tree provides the implementation of the OdmNative100.lib that is used in compiling the odmjni100.dll that is used via JNI.</p> http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/346805#346805 Comment by orcmid on Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-08T19:23:39Z 2008-12-08T19:23:39Z The sample code I've encountered uses split to break up the version string into an array of strings, so that mistake won't happen. It does matter how the parts are compared after that, though. There appear to be an excessive number of ways to get this wrong. I wonder what the winner will be. http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/347064#347064 Comment by orcmid on Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-08T19:21:41Z 2008-12-08T19:21:41Z So now I know why parseFloat is used there. The problem I'm having may be a complete failure to detect an installed Flash Player, not even getting to the version check. http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/347064#347064 Comment by orcmid on Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-08T19:20:46Z 2008-12-08T19:20:46Z My Pure JavaScript book says &quot;&lt;&quot; is always a numeric compare, so the bug will happen if someone believes that. Fortunately, the sample Client-Side code and .js file for the Adobe Flash Player Detection Kit 1.5 uses splits to parse version strings and makes the &quot;&lt;&quot; be numeric via parseFloat. http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/346810#346810 Comment by orcmid on Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-07T18:20:22Z 2008-12-07T18:20:22Z Ah, I also just determined by near accident that Flash Player detection works when I run from an administrator account, but not from a Limited User Account. I've been seeing this kind of thing under other conditions. Maybe I can pinpoint it as I continue my anatomy of the Client-side example. http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/346810#346810 Comment by orcmid on Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-07T08:12:26Z 2008-12-07T08:12:26Z I'm now working my way through the Client-Side detection sample of the Adobe Flash Player Detection Kit 1.5. So far, the problem is not with comparisons but with finding a Flash Player at all. I now have to dig into the GetSwfVer to see why it is finding no Flash Player. http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/347064#347064 Comment by orcmid on Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-07T08:07:22Z 2008-12-07T08:07:22Z I suspected this too. After nosing around I discovered that JavaScript doesn't fail the way strcmp does in C. x &lt; y in JavaScript is always a numeric compare, and it converts any strings there into numbers before comparing. So in the JavaScript detection code I'm inspecting, that's not it. http://stackoverflow.com/questions/214424/why-dont-flash-videos-play-after-upgrading-to-flash-10 Comment by orcmid on Why don't flash videos play after upgrading to Flash 10? orcmid 2008-12-07T00:58:36Z 2008-12-07T00:58:36Z Levi, since you accepted an answer, I assume that you found one of those problems in the way your web pages detected the Flash Player version. I'm curious what it was as part of exploration at <a href="http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug" rel="nofollow" title="not detecting flash 10 worlds most widespread web video bug">stackoverflow.com/questions/346794/&hellip;</a> http://stackoverflow.com/questions/214424/why-dont-flash-videos-play-after-upgrading-to-flash-10 Comment by orcmid on Why don't flash videos play after upgrading to Flash 10? orcmid 2008-12-07T00:55:27Z 2008-12-07T00:55:27Z Well, he is having a problem seeing videos in his browser, and some of the videos are from his own site. So he wants to know what to change to his site's pages that will detect Flash 10 correctly in all browsers, his included. So it is a programming problem. http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/346810#346810 Comment by orcmid on Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-06T21:44:54Z 2008-12-06T21:44:54Z The swfObject site is very handy. I found the Adobe Flash Player Detection Kit 1.5 at <a href="http://www.adobe.com/products/flashplayer/download/detection_kit/" rel="nofollow">adobe.com/products/flashplayer/&hellip;</a> I'll be interested in seeing if they blew it. http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/346805#346805 Comment by orcmid on Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-06T21:39:51Z 2008-12-06T21:39:51Z Great! I would have never thought of that. It would certainly account for some of the messages I get that say I am running version &quot;0&quot; or my version is older than the version (8 or 9) they want. You may be onto something. Let's see what others have to say. http://stackoverflow.com/questions/346794/not-detecting-flash-10-worlds-most-widespread-web-video-bug/346810#346810 Comment by orcmid on Not Detecting Flash 10: World's Most Widespread Web Video Bug? orcmid 2008-12-06T21:37:22Z 2008-12-06T21:37:22Z I was hoping it was not their doing. Can you provide links to where Adobe ships detection code. I don't quite follow what the path is to its use on a site that serves up the video stream and selects the Flash Player. http://stackoverflow.com/questions/332952/whats-up-with-o1/333011#333011 Comment by orcmid on What's Up with O(1)? orcmid 2008-12-05T01:52:32Z 2008-12-05T01:52:32Z OK, looking good. You might say something about how you overflowed from 18 to 29, or simply use linear overflow and use 19. That makes it easier to describe and you could point out that there are more-complex overflow techniques. Thanks for playing along. The narrative is much improved. http://stackoverflow.com/questions/332952/whats-up-with-o1/333081#333081 Comment by orcmid on What's Up with O(1)? orcmid 2008-12-05T01:48:54Z 2008-12-05T01:48:54Z That's a beautiful paper. I just scanned it quickly and looked over the careful analysis and the comparisons. The tradeoff seems to be around the cost of running two hashes, including for the displacement problem. The wikipedia article is useful too. I must find a way to try this someday. http://stackoverflow.com/questions/332952/whats-up-with-o1/333020#333020 Comment by orcmid on What's Up with O(1)? orcmid 2008-12-02T05:58:54Z 2008-12-02T05:58:54Z Well, actually, I did say (typically) space. I'll leave it at that. http://stackoverflow.com/questions/332952/whats-up-with-o1 Comment by orcmid on What's Up with O(1)? orcmid 2008-12-02T05:57:41Z 2008-12-02T05:57:41Z I think it gets into hash tables and other dictionary/collection schemes because that is the example I pointed to. Also, this seems to be the place where O(1) shows up as an unqualified assumption. I like where the discussion is going, on the main, gaining more understanding of the situation