User Andy Dent - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:17:29Z http://stackoverflow.com/feeds/user/53870 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/281037/parasoft-c-unit-test-question/1802084#1802084 0 Answer by Andy Dent for parasoft C++ unit test question Andy Dent 2009-11-26T07:30:32Z 2009-11-26T07:30:32Z <p>No unit testing framework allows you to just test portions of a method.</p> <p>One ugly suggestion is to use #include to include small chunks of code directly into methods, with the same #include used to include that code into a testing method that sets up variables used by that code. </p> <p>I recommend Michael Feather's book <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> for advice on how to add testing to a large code base. It's also available online at <a href="http://my.safaribooksonline.com/0131177052" rel="nofollow">Safari</a>.</p> http://stackoverflow.com/questions/1801859/would-you-hire-a-c-programmer-with-10-years-experience-for-a-c-role/1801902#1801902 4 Answer by Andy Dent for Would you hire a C++ programmer with 10 years experience for a C# role? Andy Dent 2009-11-26T06:34:58Z 2009-11-26T06:34:58Z <p>Speaking as someone who is just finishing his first C# project, with about 15 years of C++ and other OO languages behind me, I'd say <strong>yes</strong> hire them.</p> <p>The only qualification on my answer is, it depends on what they call <em>experience</em> and it is as much about their attitudes to frameworks and modern OO idioms. Can they draw the analogy between <em>interfaces</em> and <em>abstract mix-in classes</em>? Are they familiar with delegation and strategy patterns? Have they even read <em>Design Patterns</em>?</p> <p>C# embodies a pattern-based approach that is easy to pick up with the right background from C++.</p> http://stackoverflow.com/questions/1790431/how-do-you-estimate-a-roi-for-clearing-technical-debt/1790504#1790504 2 Answer by Andy Dent for How do you estimate a ROI for clearing technical debt? Andy Dent 2009-11-24T14:42:31Z 2009-11-24T22:32:12Z <p>I think you're on the right track.</p> <p>I've not had to calculate this but I've had a few discussions with a friend who manages a large software development organisation with a lot of legacy code.</p> <p>One of the things we've discussed is generating some rough effort metrics from analysing VCS commits and using them to divide up a rough estimate of programmer hours. This was inspired by Joel Spolsky's <a href="http://www.joelonsoftware.com/articles/fog0000000245.html" rel="nofollow">Evidence-based Scheduling</a>.</p> <p>Doing such data mining would allow you to also identify clustering of when code is being maintained and compare that to bug completion in the tracking system (unless you are already blessed with a tight integration between the two and accurate records). </p> <p>Proper ROI needs to calculate the full Return, so some things to consider are: - decreased cost of maintenance (obviously) - opportunity cost to the business of downtime or missed new features that couldn't be added in time for a release - ability to generate new product lines due to refactorings</p> <p>Remember, once you have a rule for deriving data, you can have arguments about exactly <em>how</em> to calculate things, but at least you have <em>some</em> figures to seed discussion!</p> http://stackoverflow.com/questions/1787683/c-net-creating-dynamic-visuals-in-c/1787723#1787723 1 Answer by Andy Dent for C#/.NET: Creating Dynamic Visuals in C# Andy Dent 2009-11-24T04:11:57Z 2009-11-24T04:11:57Z <p>WPF makes it easier to refactor designs for such a project by easily moving shape drawing code between just drawing simple shapes and contents of controls. If you need the richness of custom controls, WPF allows a fairly smooth transition.</p> <p>Most of the graphics can be defined in XAML which means you can export them from programs like <a href="http://www.mikeswanson.com/xamlexport/" rel="nofollow">Illustrator</a> or anything that generates the standard SVG vector graphics, via an <a href="http://www.wpf-graphics.com/ViewerSvg.aspx" rel="nofollow">SVG-XAML converter</a>.</p> <p>I like <a href="http://adamnathan.net/wpf/" rel="nofollow">WPF Unleashed</a> and it has a nice discussion of 2D graphics and how to use the DrawingContext class for such a visual editor.</p> http://stackoverflow.com/questions/1787655/how-to-store-regions-in-a-database-field/1787691#1787691 1 Answer by Andy Dent for how to store regions in a database field Andy Dent 2009-11-24T04:00:11Z 2009-11-24T04:00:11Z <p>You don't say which version of SQL Server. Have you considered mapping your broad regions into actual geographical ones? That way you can use the <a href="http://www.microsoft.com/sqlserver/2008/en/us/spatial-data.aspx" rel="nofollow">spatial features of SQL Server 2008</a> and if you add more detail on the user later defining locations, your database and queries will work even better.</p> http://stackoverflow.com/questions/1787662/managed-class-definition-in-c-cli/1787678#1787678 1 Answer by Andy Dent for Managed class definition in C++\CLI Andy Dent 2009-11-24T03:57:07Z 2009-11-24T03:57:07Z <p>You can define in just a .h or split the class definitions just as you would for traditional C++.</p> <p>Note that for properties you will need to nest your get and set methods with proper scoping, eg:</p> <pre><code>void MyModel::AProperty::set(bool b) { mBackingVariableForAProperty = b; } </code></pre> http://stackoverflow.com/questions/1787498/are-there-any-good-resources-on-real-world-practical-uses-of-programming-theory/1787591#1787591 0 Answer by Andy Dent for Are there any good resources on real world practical uses of programming theory? Andy Dent 2009-11-24T03:28:41Z 2009-11-24T03:28:41Z <p>Uncle Bob's <a href="http://www.objectmentor.com/resources/publishedArticles.html" rel="nofollow">The Apprentice</a> series on software craftsmanship. Has a nice narrative style in which I think students can relate to the protaganist, as he/she starts from a lowly apprentice.</p> http://stackoverflow.com/questions/1780998/how-to-design-objects/1781065#1781065 1 Answer by Andy Dent for How to design objects? Andy Dent 2009-11-23T04:15:11Z 2009-11-23T04:15:11Z <p>I like Wirfs-Brock's <a href="http://www.wirfs-brock.com/DesignBooks.html" rel="nofollow">Responsibility-Driven Design (RDD)</a> and also recommend this updated (free paper) <a href="http://alistair.cockburn.us/Responsibility-based+modeling" rel="nofollow">Responsibility-Driven Modeling</a> approach by Alistair Cockburn.</p> <p>In over 15 years of OO development, whenever I've felt I'm getting lost in a software architecture, going back to the RDD basics always helps me clarify what the software is supposed to be doing and how.</p> <p>If you like a test-driven approach, <a href="http://www.methodsandtools.com/archive/archive.php?id=90" rel="nofollow">this article</a> shows how to relate RDD to mocking objects and tests.</p> http://stackoverflow.com/questions/1569132/has-anybody-used-unit-testing-as-a-way-to-learn-programming/1780151#1780151 0 Answer by Andy Dent for Has anybody used Unit Testing as a way to learn programming? Andy Dent 2009-11-22T22:02:52Z 2009-11-22T22:02:52Z <p>Especially considering the context - Python unit tests are very easy to write and require very little understanding - I'd say <strong>go for it</strong> and blanket your understanding and explorations with tests.</p> <p>After you have been doing this for a while, include a review stage where you go back and read your earlier tests and see how you would have rewritten them with your current understanding. That's what comments are for - write questions and review notes to yourself in the docstrings inside each test definition.</p> <p>With such an incremental approach, using version control will help with reviewing and I recommend it highly, in particular because you will be able to see a history of your changes from the version control logs and thus more self-encouragement with your visible progress. I recommend git and using either the built-in gitgui or GitX on Macinosh.</p> <p>As a very experienced professional, I predate the <em>unit testing</em> concept but I've certainly used lots of small tests as a way to learn new libraries and languages.</p> http://stackoverflow.com/questions/577516/4d-is-it-any-good/577783#577783 1 Answer by Andy Dent for 4D - is it any good? Andy Dent 2009-02-23T14:24:25Z 2009-11-21T02:13:16Z <p>I used to do some very serious 4D work, <a href="http://www.oofile.com.au/adsother/SearchAndReport.html" rel="nofollow">one of the systems I wrote</a> is still in use as an enterprise system about 16 years later. I got frustrated because they were taking years to come out with the <em>new</em> object-oriented version of the language and I was writing thousands of lines of code to use a third-party table control.</p> <p>4D delivers cross-platform, very high-performance client-server systems using a proprietary server. The database model is much more set-oriented than SQL and pulls the sets all the way into the core language. It does a nice job of delivering code to the clients because it compiles all procedures to native code which is cached locally and updated on-demand when it is out of date.</p> <p>The language and GUI environment have their quirks but the flip-side is that there will probably be a good living to be made from supporting it as a legacy platform. if you can get someone else to pick up the tab for the tools, it may be a useful addition to your consulting toolbox. You have to consider how much business-specific code is gonna be out there for a unique product with that long a history!</p> <p>An engineer for whom I have huge respect was recently hired by 4D which says a lot about their commitment to the future, hiring this kind of guy.</p> <p>I've been working a lot with legacy systems recently, doing a port from old Mac stuff to WPF and the contrast between the mostly-unused complexity of Visual Studio and old Mac tools reminded me of 4D. I'm also <a href="http://code.google.com/p/rbrw-core/" rel="nofollow">porting my OOFILE C++ database and reporting frameworks to REALbasic</a> - the OOFILE set-oriented operations came directly from what I loved about 4D and this too made me think I was too harsh in this answer originally. </p> <p>The thing to remember about 4D is that it was set-oriented from the beginning (written by a mathematician) and much easier to use for many things than SQL. The deployment model of 4D Server is a superb combination of desktop app and network provision - compiled components are cached on the desktop and automatically sent to a client when needed. There's no need to shutdown or actively push or deploy updates. The GUI model of 4D was frustrating but looking at the site today, they have solved most of the issues that I had to use third party solutions for years ago.</p> http://stackoverflow.com/questions/1767620/secure-iphone-desktop-connection/1768272#1768272 1 Answer by Andy Dent for Secure iPhone-Desktop Connection Andy Dent 2009-11-20T04:04:55Z 2009-11-20T04:04:55Z <p>If you want to be able to push events to a non-jailbroken iPhone you can't do it other than via <a href="http://developer.apple.com/IPhone/library/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/ApplePushService/ApplePushService.html" rel="nofollow">Apple's Push Server</a> which causes a notification to the client program if it is running or otherwise displays an alert of some kind to the user.</p> <p>Typical architecture has those notifications handled by the client program as an indication it should go and get some data from the server - Apple insist we do not regard the notifications as trusted delivery.</p> <p>I suggest a read of <a href="http://www.mobileorchard.com/tutorial-networking-and-bonjour-on-iphone/" rel="nofollow">this article</a> on using Bonjour and local networking, whilst it's iPhone to iPhone it should apply to desktop OS/X also.</p> http://stackoverflow.com/questions/670095/does-anybody-know-a-real-life-example-of-ironruby-usage/1760541#1760541 0 Answer by Andy Dent for Does anybody know a real life example of IronRuby usage Andy Dent 2009-11-19T02:34:57Z 2009-11-19T02:34:57Z <p>I'm using it in the new <a href="http://www.appmakerx.com/" rel="nofollow">AppMakerX</a> code generator, which is being refined at present in a major consulting project prior to commercial release in 2010.</p> http://stackoverflow.com/questions/1754870/real-world-usage-of-concatenative-programming-langauges/1760529#1760529 1 Answer by Andy Dent for Real world usage of concatenative programming langauges Andy Dent 2009-11-19T02:31:35Z 2009-11-19T02:31:35Z <p>There is the somewhat-obsolete but very cool Quartus Forth for Palm which allowed full compiled application development on the Palm device (Forth as a minimalist language works rather well in those circumstances). Their <a href="http://www.quartus.net/" rel="nofollow">home page</a> lists several Palm apps.</p> <p>This FIG page has a <a href="http://www.forth.org/successes.html" rel="nofollow">list of mostly-embedded projects</a> including a reference to the very cool use of Forth by <a href="http://forth.gsfc.nasa.gov/" rel="nofollow">NASA</a>.</p> <p>I met a guy at an Apple conference in Queensland back in about 1991 who had retailed a road planning application written in <a href="http://macforth.com/" rel="nofollow">MacForth</a>.</p> <p>Christopher Diggins was talking about his <a href="http://code.google.com/p/cat-language/" rel="nofollow">Cat language</a> being used inside Microsoft to help optimise compilers but I don't know if that went anywhere.</p> <p>I suspect <a href="http://powermops.com/MopsRoundup/MopsRoundup.html" rel="nofollow">PowerMOPS</a> (the successor to Neon) may elude the definition of concatenative because it's big deal is adding object-orientation, which implies instances.</p> http://stackoverflow.com/questions/744409/which-non-mainstream-programming-language-to-use-for-a-hobby-project/1752229#1752229 0 Answer by Andy Dent for Which non mainstream programming language to use for a hobby project? Andy Dent 2009-11-17T22:12:05Z 2009-11-17T22:12:05Z <p><a href="http://www.iolanguage.com/" rel="nofollow">io</a></p> http://stackoverflow.com/questions/300276/programming-languages-not-in-english/1752195#1752195 0 Answer by Andy Dent for programming languages not in english? Andy Dent 2009-11-17T22:08:13Z 2009-11-17T22:08:13Z <p>I started working on <a href="http://www.artima.com/weblogs/viewpost.jsp?thread=160373" rel="nofollow">CEDSimply</a> and got side tracked by a <a href="http://www.artima.com/weblogs/viewpost.jsp?thread=167050" rel="nofollow">scary reading list</a> (I missed out on the compiler and language units in my degree) then I started using Ruby and I'm waiting until my Ruby gurudom kicks in.</p> <p>Kay Schluehr was inspired to create <a href="http://www.fiber-space.de/EasyExtend/doc/EE.html" rel="nofollow">Teuton</a> by my posting, Python in German.</p> <p>Then there's <a href="http://www.chinesepython.org" rel="nofollow">chinesepython</a>.</p> http://stackoverflow.com/questions/1739777/c-classes-pointers-question/1739811#1739811 2 Answer by Andy Dent for C++ Classes - Pointers question Andy Dent 2009-11-16T02:53:03Z 2009-11-17T03:45:15Z <p><code>Point* array[10]</code> creates an array with ten slots for pointers, numbered 0..9.</p> <p>You are both wrong - no initialisation takes place in C++ with such a statement, unless </p> <ol> <li>you are running a special memory allocator which zeros memory, such as SmartHeap (or C++/CLI) or </li> <li>if the array is outside of a function (eg: just within a .cpp file as global), in which case all the pointers are zeroed.</li> </ol> <p>Absolutely no instances are created.</p> <p>Respectfully disagreeing with strager's point, there is no such thing as an <em>instance</em> of Point* and it would be dangerous to think of such a thing existing. There is only space for a pointer and compile-time checking to ensure you can only assign a pointer of that type, or pointer to a subclass, into that pointer.</p> http://stackoverflow.com/questions/1739773/is-the-default-ruby-install-on-mac-osx-10-5-good-enough-for-rails-development/1739828#1739828 1 Answer by Andy Dent for Is the default Ruby install on Mac OSX 10.5 "good enough" for Rails development? Andy Dent 2009-11-16T02:57:30Z 2009-11-16T02:57:30Z <p>The Ruby on Rails <a href="http://rubyonrails.org/download" rel="nofollow">download page</a> recommends 1.8.7 but says 1.8.6 still works and I'm finding no problems.</p> http://stackoverflow.com/questions/1732278/what-are-some-questions-to-ask-when-choosing-between-two-equal-programmers/1732951#1732951 1 Answer by Andy Dent for What are some questions to ask when choosing between two equal programmers? Andy Dent 2009-11-14T01:45:39Z 2009-11-14T01:45:39Z <p>More seriously, assuming you know in advance you are hiring entry-level coders, evaluate them based on the questions <em>they ask</em> - this requires you to be careful about how much you describe about the job and the company. It also depends a bit on what has been mentioned in the job advert as a required skill.</p> <p>OTOH some people are really passive in interviews and need coaxing, especially juniors, so you may not get much out of this if both candidates fail to ask.</p> <p>Things I would consider waiting for them to ask and give them points for asking about:</p> <ul> <li>Any mention of version control</li> <li>Issue tracking and project management tools (anyone who has been a serious participant in an open source project will be aware of these).</li> <li>Training or mentoring opportunities</li> <li>Who does testing? It may sound like they are trying to evade responsibility but a junior programmer who has at least thought about testing responsibilities is unusual in my experience.</li> </ul> http://stackoverflow.com/questions/1732278/what-are-some-questions-to-ask-when-choosing-between-two-equal-programmers/1732916#1732916 1 Answer by Andy Dent for What are some questions to ask when choosing between two equal programmers? Andy Dent 2009-11-14T01:28:10Z 2009-11-14T01:28:10Z <p>Ask them to finish a limerick.</p> <p><em>There once was a coder named Fred</em></p> <p><em>whose designs just popped out of his head.</em></p> <p><em>When his boss ...</em></p> <p>Hire the one who panics least ;-)</p> <p>Seriously, a tendency to pun and play word games is a great indicator of debugging ability and this surely counts as a <em>creative</em> test.</p> <p>They get extra points if they can't resist contacting you within the next couple of days with a better version.</p> http://stackoverflow.com/questions/25902/whats-the-best-toolchain-for-continuous-integration-with-c/1726061#1726061 0 Answer by Andy Dent for What's the best toolchain for Continuous Integration with C++? Andy Dent 2009-11-12T23:12:17Z 2009-11-12T23:12:17Z <p>We used <a href="http://www.scons.org/" rel="nofollow">scons</a> for continuous integration run by a central build server. Some projects migrated to <a href="http://buildbot.net/trac" rel="nofollow">buildbot</a>.</p> <p>I'm now getting into <a href="http://martinfowler.com/articles/rake.html" rel="nofollow">rake</a> and considering solutions as surveyed in <a href="http://blog.kirkk.com/index.php?itemid=55" rel="nofollow">this blog</a>. Fowler mentions that ThoughtWorks occasionally use rake for their build scripting in his <a href="http://martinfowler.com/articles/continuousIntegration.html" rel="nofollow">Continuous Integration</a> article.</p> http://stackoverflow.com/questions/1725498/is-anybody-working-on-a-high-level-standard-library-for-c/1725875#1725875 4 Answer by Andy Dent for Is anybody working on a high level standard library for C++ Andy Dent 2009-11-12T22:32:54Z 2009-11-12T22:32:54Z <p>I guess there's some kind of keyword lookup driving the advertising here because I'm seeing a <a href="http://www.realsoftware.com/" rel="nofollow">REALbasic</a> ad, which is what I generally use for cross-platform GUI's nowadays.</p> <p>I have spent a lot of time over the last 15 years working in C++ GUI's including retailing my own <a href="http://www.pp2mfc.com/" rel="nofollow">portability layer</a> for CodeWarrior PowerPlant and working on the two Macintosh-based GUI code generators, including adding Windows generation to <a href="http://www.appmakerx.com/" rel="nofollow">AppMaker</a>. I've worked with wxWidgets, mainly wxPython. So, my opinion on difficulties in cross-platform GUI is fairly well-qualified :-)</p> <p>Cross-platform GUI frameworks are hard to the point of nearly impossible without significant compromise - the issues come down to subtle matters of <em>behavior</em> which generally bother users at a level where some of them can't quantify but know that the application <em>doesn't feel right</em>. This is a lot harder to fix than just rendering native controls.</p> <p>I started using REALbasic because their framework does a better job of getting the feel right than anything else I'd tried (I didn't get into Qt because of the expensive commercial license).</p> <p>The reason it has taken so long for things to evolve is nothing to do with the C++ world moving slowly, it's just an intractable problem. The very best cross-platform Java apps do some stuff conditionally for OS/X and it is still screamingly obvious to an experienced user that they are not a native Mac app, although some are very usable and come pretty close to looking native - <a href="http://www.oxygenxml.com/" rel="nofollow">Oxygen XML editor</a> and <a href="http://www.deltopia.com/" rel="nofollow">DeltaWalker</a> are two of my favourites.</p> http://stackoverflow.com/questions/1527113/can-i-use-push-notification-for-this/1720671#1720671 1 Answer by Andy Dent for Can I use Push Notification for this Andy Dent 2009-11-12T08:08:44Z 2009-11-12T08:08:44Z <p>No.</p> <p>You can't schedule things to be run by your app on a non-jailbroken iPhone.</p> <p>The only solution is to have a separately hosted service somewhere to which you push details from your app and that runs the scheduled updates on your behalf.</p> http://stackoverflow.com/questions/1436200/iphone-push-notfication-for-a-webapp/1720427#1720427 0 Answer by Andy Dent for IPhone push notfication for a webapp? Andy Dent 2009-11-12T07:05:48Z 2009-11-12T07:05:48Z <p>That depends on exactly what you mean by <em>Webapp that has an icon on the "desktop"?</em> </p> <p><strong>No</strong>, if you're referring to a webapp where you have saved a link with <em>Add to Home screen</em> <a href="http://www.apple.com/webapps/whatarewebapps.html" rel="nofollow">as per this Apple instruction</a>.</p> <p><strong>Yes</strong>, if your webapp is a thin CocoaTouch shell using <a href="http://drnicwilliams.com/2008/11/10/to-webkit-or-not-to-webkit-within-your-iphone-app/" rel="nofollow">webkit</a>.</p> http://stackoverflow.com/questions/1712667/what-does-include-sndfile-h-mean/1712692#1712692 0 Answer by Andy Dent for What does "#include <sndfile.h>" mean? Andy Dent 2009-11-11T02:47:59Z 2009-11-11T02:47:59Z <p><code>#include XXX</code> means, as stated above, to include the contents of XXX as if they had been copied and pasted into the source code <strong>before</strong> any other compilation steps.</p> <p>XXX can be in <code>&lt;brackets&gt;</code> or "quotes". The <code>&lt;bracketed&gt;</code> files are searched for on a system path and the "quoted" files on a user path. </p> <p>How these are paths are defined will vary depending on your compiler and build system. It is common for compilers to allow users to override this search logic but it is still a good discipline to use "quotes" for your own headers and <code>&lt;brackets&gt;</code> for system.</p> http://stackoverflow.com/questions/1703298/how-to-not-be-an-it-programmer/1712662#1712662 1 Answer by Andy Dent for How to not be an IT programmer? Andy Dent 2009-11-11T02:38:31Z 2009-11-11T02:38:31Z <p>I'd like to add a little twist to the advice above, especially Avdi's response, speaking from the perspective of 25+ years mainly in software development and having worked for a very wide range of organisations. I'm currently also trying very hard to keep working in a similar range of technologies to you, although remotely from Perth, Western Australia (which looks like offshore+expensive so I have to add value).</p> <ol> <li><p>MS means nothing, maybe an MBA would mean something if you wanted to work in business (regardless of technology) but an MS means nothing. If you want to teach or work in science, a PhD is essential to get respect but MS is an intermediate degree UNLESS it is a conversion degree, adding CS onto some other science, in which case it qualifies about the same as your basic BSc.</p></li> <li><p>Prove you can do things in those cool languages.</p> <ul> <li>Don't just join communities but <strong>fix bugs</strong>, especially in build systems, sample projects and the fringe tidying-up stuff that people don't bother with. </li> <li>Add more samples and documentation - become the person people love because you have helped them use the technology</li> <li>Document your contributions - imagine you are answering the question <em>what value would you add to the team</em></li> <li>Look for projects which have stalled or been abandoned and offer to help. </li> </ul></li> </ol> http://stackoverflow.com/questions/370972/which-common-features-of-desktop-applications-do-most-web-applications-miss/576903#576903 3 Answer by Andy Dent for Which common features of desktop applications do most web applications miss? Andy Dent 2009-02-23T08:33:26Z 2009-11-10T07:28:33Z <p><strong>One</strong> Proper Macintosh menu bar support.</p> <p>If you're a long-term Mac user, even with two large monitors, you have muscles that swoop to the top of the screen for actions, comfortable in the knowledge that the <em>infinite depth effect</em> will kick in and you can slide along that edge, picking from the menus.</p> <p>No in-browser app can deliver that experience.</p> <p><strong>Two</strong> Command-keys, which is a side-effect of the menu bar not belonging to the app but goes a bit beyond that - good desktop apps have command-key shortcuts (accelerators to you Windows guys, I'm not just talking the Mnemonics which work with alt-key support). Great desktop apps show little reminders next to the buttons that have accelerators, when you hold down the appropriate modifier keys and wait a fraction of a second.</p> <p><strong>Three</strong> Smarter tables. There are a lot of apps where some kind of spreadsheet view works as a paradigm, including editing, sorting, resizing columns. I think I've seen some odd examples of partial support but a good table in a web app is still a bit of a <em>dancing bear</em>.</p> <p><strong>Four</strong> Used to be right-clicking but I'm finding more and more apps that do this properly, like Kerio's <a href="http://www.kerio.com/kms%5Fwebmail.html" rel="nofollow">excellent webmail engine</a>. It is still missing in enough web apps to be worth emphasizing.</p> http://stackoverflow.com/questions/80490/what-is-the-best-document-oriented-database/1705455#1705455 0 Answer by Andy Dent for What is the best Document-oriented database? Andy Dent 2009-11-10T03:25:50Z 2009-11-10T03:25:50Z <p>Maybe you should check out XML Databases such as <a href="http://exist.sourceforge.net/" rel="nofollow">eXist</a> which has XQuery structured querying and enhances it with <a href="http://demo.exist-db.org/exist/lucene.xml" rel="nofollow">Lucene</a> text indexing.</p> http://stackoverflow.com/questions/1695247/c-win32-missing-something-for-big/1695304#1695304 1 Answer by Andy Dent for C# Win32 - Missing something for big Andy Dent 2009-11-08T03:43:40Z 2009-11-08T03:43:40Z <p>I suspect you have grabbed code that relies on <a href="http://msdn.microsoft.com/en-us/library/ms229683.aspx" rel="nofollow">this Win32 helper class</a>.</p> <p>Adding that to your project should solve the immediate Win32 missing problem.</p> http://stackoverflow.com/questions/1676916/is-there-a-data-storage-pattern-similar-to-mipmaps-in-graphics/1685601#1685601 1 Answer by Andy Dent for Is there a data storage pattern similar to mipmaps in graphics? Andy Dent 2009-11-06T05:24:48Z 2009-11-06T05:24:48Z <p>I like your analogy to mipmapping and I think the field of <a href="http://en.wikipedia.org/wiki/Observations%5Fand%5FMeasurements" rel="nofollow">Observations and Measurements</a>, especially Sampling regimes is probably where you'll find the abstract data design you're after. It gives you the theory behind the data, although they think more in terms of XML data models than relational tables.</p> <p>I used to work with the guys at CSIRO behind this and a lot of the thinking comes from having to manage huge data sets for things like water sampling sensors. More detail at the <a href="https://www.seegrid.csiro.au/twiki/bin/view/AppSchemas/ObservationsAndSampling#Sampling%5Fmodel" rel="nofollow">SEEGrid wiki</a>.</p> http://stackoverflow.com/questions/1534628/iphone-game-programming-framework-for-this-game/1616872#1616872 0 Answer by Andy Dent for iPhone game programming: Framework for this game? Andy Dent 2009-10-24T03:40:32Z 2009-10-24T03:40:32Z <p>My impression of the games I've seen with Unity is that they are slow to start. That's OK if there's a big game experience but not for something I want to play within a few seconds. </p> <p>Based on my research, I've decided to use Cocos for simple 2D games. There are a lot of good postings in the <a href="http://www.cocos2d-iphone.org/forum/" rel="nofollow">forum</a>, even though there are no explicit tutorials</p> <p>I also asked a <a href="http://stackoverflow.com/questions/601690/oolong-sio2-or-commercial-game-engine-for-3d-iphone-games-newbie">question</a> a while back about 3D engines - Oolong vs SIO2, got some useful answers and when I get time will be trying SIO2, although that won't be until next year at this rate (non-gaming projects in the way and I'm going to walk with 2D before flying in 3D).</p> http://stackoverflow.com/questions/1790431/how-do-you-estimate-a-roi-for-clearing-technical-debt/1790504#1790504 Comment by Andy Dent on How do you estimate a ROI for clearing technical debt? Andy Dent 2009-11-24T22:30:04Z 2009-11-24T22:30:04Z On a large code base with long history, statistical approaches like this should converge on reasonable estimates. You do, of course, need to know to what degree people could devote time to a project but that's a simple time-series analysis and can be refined when people look at the figures. (&quot;Hey, I was on holiday for that week and working 30 hours/week on FizzBuzz 2.0 in May&quot;). http://stackoverflow.com/questions/1790431/how-do-you-estimate-a-roi-for-clearing-technical-debt/1790504#1790504 Comment by Andy Dent on How do you estimate a ROI for clearing technical debt? Andy Dent 2009-11-24T22:26:32Z 2009-11-24T22:26:32Z Yes, (I did say &quot;rough&quot;) - simply review commit times by known working days. http://stackoverflow.com/questions/1777632/wpf-togglebutton-and-delegatecommand/1777694#1777694 Comment by Andy Dent on WPF ToggleButton and DelegateCommand Andy Dent 2009-11-24T14:46:09Z 2009-11-24T14:46:09Z How does having multiple buttons prevent you binding them to the viewmodel? They obviously have some unique identifier so that could be used as a key to a collection property. http://stackoverflow.com/questions/1787662/managed-class-definition-in-c-cli/1787678#1787678 Comment by Andy Dent on Managed class definition in C++\CLI Andy Dent 2009-11-24T04:21:22Z 2009-11-24T04:21:22Z @Benny, yes but only as far as that is meaningful - the compiler is always free to decide to not inline a function. http://stackoverflow.com/questions/1787474/improving-the-performance-of-c-code/1787484#1787484 Comment by Andy Dent on Improving the performance of C code... Andy Dent 2009-11-24T04:18:55Z 2009-11-24T04:18:55Z straightforward solution - simply statistically strange http://stackoverflow.com/questions/1780851/is-it-possible-to-deallocate-a-statically-defined-array Comment by Andy Dent on Is it possible to deallocate a statically defined array? Andy Dent 2009-11-23T02:49:29Z 2009-11-23T02:49:29Z why do you ask and in what language? http://stackoverflow.com/questions/1569132/has-anybody-used-unit-testing-as-a-way-to-learn-programming/1780101#1780101 Comment by Andy Dent on Has anybody used Unit Testing as a way to learn programming? Andy Dent 2009-11-22T21:59:08Z 2009-11-22T21:59:08Z You get a point for effort which I took away for being wrong - I don't think I've ever seen ANYONE assert that unit testing &quot;is done at the end&quot;. http://stackoverflow.com/questions/577516/4d-is-it-any-good/577610#577610 Comment by Andy Dent on 4D - is it any good? Andy Dent 2009-11-21T01:30:02Z 2009-11-21T01:30:02Z @Simon REALbasic is even better than 4D at putting together cross-platform GUI however they have removed their database bindings (part of a long-term cleanup of the core) and so for database apps it's not a rival - you have to map SQL results yourself. I'm working on a port of my OOFILE c++ frameworks to make that kind of thing trivial, started by getting the report-writer going. http://stackoverflow.com/questions/1459415/bitblt-blackness Comment by Andy Dent on Bitblt blackness Andy Dent 2009-11-20T08:40:02Z 2009-11-20T08:40:02Z You should be saving the result of your SelectObject and restoring it before the Delete, to avoid Windows problems, possibly you are avoiding crashes because of the release of the DC but it may have other side-effects: HBITMAP saveBM; .. saveBM = SelectObject(hdcMem, bitmap); ... SelectObject(hdcMem, saveBM); DeleteObject(bitmap); http://stackoverflow.com/questions/1570330/why-does-memcpy-fail-copying-to-a-local-array-member-of-a-simple-object/1570616#1570616 Comment by Andy Dent on Why does memcpy fail copying to a local array member of a simple object? Andy Dent 2009-11-19T05:17:17Z 2009-11-19T05:17:17Z &quot;if you wrote good c&quot; - I'm porting it, I didn't write it! I can't use structs for things which assume the original Apple definitions which are typedefs. As I said, normally when porting code like this I use objects and operator overloading to get robust types. http://stackoverflow.com/questions/122292/forth-love-if-honk-then/122395#122395 Comment by Andy Dent on FORTH love if honk then Andy Dent 2009-11-19T02:37:28Z 2009-11-19T02:37:28Z you forgot to say &quot;sadly&quot; - it is unlikely you are going to make a living using it on real-world projects :-/ http://stackoverflow.com/questions/1749905/code-golf-fractran/1751375#1751375 Comment by Andy Dent on Code Golf: Fractran Andy Dent 2009-11-17T21:59:58Z 2009-11-17T21:59:58Z titillating ternary trick to terminate! http://stackoverflow.com/questions/234467/tech-books-you-have-but-never-read/912689#912689 Comment by Andy Dent on Tech Books you have but never read Andy Dent 2009-11-17T20:38:20Z 2009-11-17T20:38:20Z ditto the really, really want to read http://stackoverflow.com/questions/234467/tech-books-you-have-but-never-read/234822#234822 Comment by Andy Dent on Tech Books you have but never read Andy Dent 2009-11-17T20:37:31Z 2009-11-17T20:37:31Z That's a great vanity title to have on a visible bookshelf though, comes with free testosterone. http://stackoverflow.com/questions/1739777/c-classes-pointers-question/1742165#1742165 Comment by Andy Dent on C++ Classes - Pointers question Andy Dent 2009-11-17T03:43:09Z 2009-11-17T03:43:09Z good point. The precise wording (from C++ Programming Language sec 9.4.1) is &quot;nonlocal variables...variables defined outside any function...by default initialised to the default for its type.&quot;