User Matt Cruikshank - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:10:36Z http://stackoverflow.com/feeds/user/8643 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/160633/why-do-we-still-program-with-flat-files 31 Why do we still program with flat files? Matt Cruikshank 2008-10-02T02:32:37Z 2009-10-08T03:19:57Z <p>Why are flat text files the state of the art for representing source code?</p> <p>Sure - the preprocessor and compiler need to see a flat file representation of the file, but that's easily created.</p> <p>It seems to me that some form of XML or binary data could represent lots of ideas that are very difficult to track, otherwise.</p> <p>For instance, you could embed UML diagrams right into your code. They could be generated semi-automatically, and annotated by the developers to highlight important aspects of the design. Interaction diagrams in particular. Heck, embedding any user drawing might make things more clear.</p> <p>Another idea is to embed comments from code reviews right into the code.</p> <p>There could be all sorts of aids to make merging multiple branches easier.</p> <p>Something I'm passionate about is not just tracking code coverage, but also looking at the parts of code covered by an automated test. The hard part is keeping track of that code, even as the source is modified. For instance, moving a function from one file to another, etc. This can be done with GUIDs, but they're rather intrusive to embed right in the text file. In a rich file format, they could be automatic and unobtrusive.</p> <p>So why are there no IDEs (to my knowledge, anyway) which allow you to work with code in this way?</p> <p><strong>EDIT:</strong> On October 7th, 2009.</p> <p>Most of you got very hung up on the word "binary" in my question. I retract it. Picture XML, very minimally marking up your code. The instant before you hand it to your normal preprocessor or compiler, you strip out all of the XML markup, and pass on just the source code. In this form, you could still do all of the normal things to the file: diff, merge, edit, work with in a simple and minimal editor, feed them into thousands of tools. Yes, the diff, merge, and edit, directly with the minimal XML markup, does get a tad more complicated. But I think the value could be enormous.</p> <p>If an IDE existed which respected all of the XML, you could add so much more than what we can do today.</p> <p>For instance, your DOxygen comments could actually <em>look</em> like the final DOxygen output.</p> <p>When someone wanted to do a code review, like Code Collaborator, they could mark up the source code, in place.</p> <p>The XML could even be hidden behind comments.</p> <pre><code>// &lt;comment author="mcruikshank" date="2009-10-07"&gt; // Please refactor to Delegate. // &lt;/comment&gt; </code></pre> <p>And then if you want to use vi or emacs, you can just skip over the comments.</p> <p>If I want to use a state-of-the-art editor, I can see that in about a dozen different helpful ways.</p> <p>So, that's my rough idea. It's not "building blocks" of pictures that you drag on the screen... I'm not that nuts. :)</p> http://stackoverflow.com/questions/1133507/is-there-a-function-like-peekmessage-that-doesnt-process-messages 0 Is there a function like PeekMessage that doesn't process messages? Matt Cruikshank 2009-07-15T19:37:27Z 2009-07-15T20:03:39Z <p>I'm trying to innocently call</p> <pre><code>PeekMessage(&amp;msg, 0, WM_KEYDOWN, WM_KEYUP, PM_NOREMOVE | PM_NOYIELD); </code></pre> <p>and Windows Vista 64, in the PeekMessage call, is <strong>processing messages</strong>. The result is that I'm going re-entrant on my paint call, and all sorts of other code.</p> <p>Painting can take seconds in our application, so we added the PeekMessage call to see if the user hit a key, so we could interrupt that painting and start up the next one. Little did we realize that Windows could start processing messages on us. It'd be a major refactoring to put the real work of painting in a separate thread... We're trying to see if specific keys were pressed, or if the mouse wheel rotated or mouse buttons were clicked, to interrupt rendering.</p> <p>I've tried adding code specifically to prevent re-entrancy, and then re-injecting paint messages into the queue, etc. It's all very kludgey, and there are cases where it doesn't work well.</p> <p>Is there some flag I could add to the PeekMessage call? I didn't see anything new in the documentation on MSDN. I really need a <code>PeekMessage</code> that doesn't process messages. Help!</p> http://stackoverflow.com/questions/928438/which-applications-would-you-like-to-see-integrated-with-google-wave/981739#981739 7 Answer by Matt Cruikshank for Which applications would you like to see integrated with Google Wave? Matt Cruikshank 2009-06-11T15:16:20Z 2009-06-11T15:16:20Z <p>Allow me to be a true nerd:</p> <p>I'd like it to be a Role Playing Game server.</p> <p>They showed a chess board, and I started thinking about it being a gaming table, like Dungeons &amp; Dragons Insider was supposed to have. I don't particularly care about 3D, just a nice 2D table that keeps track of positions, distances, visibility, and initiative order.</p> http://stackoverflow.com/questions/705863/how-do-i-code-and-compile-an-amiga-application/723750#723750 1 Answer by Matt Cruikshank for How do I code and compile an Amiga application? Matt Cruikshank 2009-04-07T00:34:08Z 2009-04-07T00:34:08Z <p>Step one, buy one of <a href="http://en.wikipedia.org/wiki/De%5FLorean%5FDMC-12" rel="nofollow">these</a>.</p> <p>Step two, buy one of <a href="http://www.thinkgeek.com/geektoys/plush/9fc6/" rel="nofollow">these</a>, and install it.</p> <p>(You might also need to wait around for one of <a href="http://images2.wikia.nocookie.net/bttf/images/5/56/Mrfusion.png" rel="nofollow">these</a> to be invented.)</p> <p>Step three, get up to 88 miles per hour.</p> http://stackoverflow.com/questions/714213/c-template-casting/714294#714294 1 Answer by Matt Cruikshank for c++ template casting Matt Cruikshank 2009-04-03T14:55:47Z 2009-04-03T14:55:47Z <p>You mentioned "template casting" in your headline, so I'll presume that <code>ParamVector</code> is a templated type. That means that <code>foo</code> could be templated as well, and that would solve your problem.</p> <pre><code>template &lt;typename T&gt; void foo(ParamVector&lt;T&gt; const&amp; data) { } </code></pre> http://stackoverflow.com/questions/653336/should-a-buffer-of-bytes-be-signed-or-unsigned-char-buffer/654661#654661 0 Answer by Matt Cruikshank for Should a buffer of bytes be signed or unsigned char buffer? Matt Cruikshank 2009-03-17T15:10:11Z 2009-03-17T15:10:11Z <pre><code>typedef char byte; </code></pre> <p>Now you can make your array be of <code>byte</code>s. It's obvious to everyone what you meant, and you don't lose any functionality.</p> <p>I know it's somewhat silly, but it makes your code read 100% as you intended.</p> http://stackoverflow.com/questions/652193/serialize-and-send-a-data-structure-using-boost/652289#652289 1 Answer by Matt Cruikshank for Serialize and send a data structure using Boost? Matt Cruikshank 2009-03-16T21:56:21Z 2009-03-16T21:56:21Z <p>I suspect you'll want to archive to memory first, and then write that to the socket.</p> http://stackoverflow.com/questions/537526/do-you-inflate-your-estimated-project-completion-dates/643163#643163 0 Answer by Matt Cruikshank for Do you inflate your estimated project completion dates? Matt Cruikshank 2009-03-13T15:12:05Z 2009-03-13T15:12:05Z <p><a href="http://books.google.com/books?id=FdAZUX9H%5FgAC&amp;dq=death%2Bmarch&amp;printsec=frontcover&amp;source=bn&amp;hl=en&amp;ei=rna6SY-2DI6-M4Wk7JII&amp;sa=X&amp;oi=book%5Fresult&amp;resnum=4&amp;ct=result" rel="nofollow">Death March</a> has some great writing about this.</p> <p>My favorite is when he says that one of the games we play in a company is that Engineers double the estimate, and then Management and Marketing cut it in half - woe befalls the Engineer who wasn't told he was supposed to double his estimate. &lt;<strong>grin</strong>/></p> <p>The other game he refers to is when a manager makes you keep revising your estimates until you come to the date that they wanted all along. I actually don't have a problem with this one, as long as the Engineer is allowed to fiddle with the scope, implementation details, which 3rd Party packages they use, and maybe even the budget... As long as Marketing / Management / Engineering all ends up on the same page, and the Engineer wasn't forced to <strong>artificially</strong> bring in the estimate.</p> <p>[Edit] Oh, I almost forgot - there's another classic method: *2,+1. First, multiply your estimate by 2, second increase your units of measure by one. If your honest estimate is 3 weeks, instead make it 6 months. &lt;<strong>evil-grin</strong>/></p> http://stackoverflow.com/questions/616161/how-to-make-a-copyable-boostsignal/616267#616267 1 Answer by Matt Cruikshank for How to make a copyable boost::signal? Matt Cruikshank 2009-03-05T19:27:51Z 2009-03-05T19:27:51Z <p>Don't derive. It's a bad idea, and it won't do you any good - your derived class won't be copyable, either. Whatever parts of signal you want to expose, and whatever behaviors you want to implement, do it with your own class, and just use boost::signal behind the scenes.</p> <pre><code>namespace Iraimbilanja { // the copy constructor doesn't copy the signal, so it doesn't copy the connections... struct EmptyOnCopySignal { private: boost::shared_ptr&lt;boost::signal&gt; _signal; }; // the copy constructor references the same signal, so it copies the connections... struct CopyableSignal { private: boost::shared_ptr&lt;boost::signal&gt; _signal; }; } // namespace Iraimbilanja </code></pre> http://stackoverflow.com/questions/554907/firing-an-event-over-a-network/554924#554924 0 Answer by Matt Cruikshank for Firing an event over a network Matt Cruikshank 2009-02-16T22:56:20Z 2009-02-16T22:56:20Z <p>Each instance of your client application could be listening to a socket of messages.</p> <p>When your server application changes the database record (on behalf of a client, or for any other reason), it also inserts a "something changed" message in the queue of messages for each client.</p> <p>The server application could either immediately send the message to the client application - or the client application could poll.</p> http://stackoverflow.com/questions/542211/publish-to-rss-from-command-line 0 Publish to RSS from command line Matt Cruikshank 2009-02-12T16:44:05Z 2009-02-12T17:52:10Z <p>From a Windows command line, I'd like to be able to publish to an RSS feed. I visualize something like this:</p> <pre><code>rsspub @builds "Build completed without errors." </code></pre> <p>Then, someone could go to my computer:</p> <p><strong><a href="http://xp64-Matt:9090/builds/rss.xml" rel="nofollow">http://xp64-Matt:9090/builds/rss.xml</a></strong></p> <p>And there'd be a new entry with the date and time and the simple text "Build completed without errors."</p> <p>I'd like the feed itself to run on a different port, so I'm not fighting with IIS or Apache, or whatever else I need to run on my computer on a day-to-day basis.</p> <p>Does anything like this exist?</p> http://stackoverflow.com/questions/429632/how-to-speed-up-floating-point-to-integer-number-conversion/430471#430471 0 Answer by Matt Cruikshank for How to speed up floating-point to integer number conversion? Matt Cruikshank 2009-01-10T03:00:24Z 2009-01-10T03:00:24Z <p>Throw a Duff's Device at it, too.</p> http://stackoverflow.com/questions/381363/lightweight-boostbind/381437#381437 9 Answer by Matt Cruikshank for lightweight boost::bind Matt Cruikshank 2008-12-19T16:21:06Z 2008-12-19T16:21:06Z <p>First, I question your assertion that it's far too heavy for you to use.</p> <p>Second, roll your own template, if you need to control the behavior.</p> <p>Third, if you're afraid of rolling your own template, I question your ability to judge that <code>boost::bind</code> is too heavy for you to use.</p> http://stackoverflow.com/questions/381267/looped-pushback-against-resize-iterator/381430#381430 1 Answer by Matt Cruikshank for Looped push_back against resize() + iterator Matt Cruikshank 2008-12-19T16:18:38Z 2008-12-19T16:18:38Z <p>So what's wrong with this?</p> <pre><code>out = in; </code></pre> <p>Don't you think that'd have the best possible behavior? If it doesn't, that sucks.</p> <p>Also, your two code examples should be</p> <pre><code>out.resize( in.size() ); T1::iterator outIt = out.begin(); for( T1::iterator inIt = in.begin(); inIt != in.end(); ++inIt, ++outIt ) *outIt = *inIt; </code></pre> <p>and</p> <pre><code>out.erase(out.begin(), out.end()); for( T1::iterator inIt = in.begin(); inIt != in.end(); ++inIt ) out.push_back( *inIt ); </code></pre> http://stackoverflow.com/questions/357600/is-constcast-safe/357640#357640 1 Answer by Matt Cruikshank for Is const_cast safe? Matt Cruikshank 2008-12-10T21:16:37Z 2008-12-10T21:16:37Z <p>You're destroying any chance at thread-safety, if you start modifying things that the compiler thought were const.</p> http://stackoverflow.com/questions/357243/i-think-stl-is-causing-my-application-triple-its-memory-usage/357480#357480 2 Answer by Matt Cruikshank for I think STL is causing my application triple its memory usage. Matt Cruikshank 2008-12-10T20:25:38Z 2008-12-10T20:25:38Z <p>Another thing you could do is to load the entire file into one block of memory. Then make a vector of pointers to the first character of each line, and at the same time, replace the newline with a \0 so it's null-terminated. (Presuming of course that your strings aren't supposed to have \0 in them.)</p> <p>It's not necessarily as convenient as having a vector of strings, but having a vector of const char* is potentially "just as good."</p> http://stackoverflow.com/questions/357243/i-think-stl-is-causing-my-application-triple-its-memory-usage/357296#357296 0 Answer by Matt Cruikshank for I think STL is causing my application triple its memory usage. Matt Cruikshank 2008-12-10T19:32:21Z 2008-12-10T19:32:21Z <p>Try using a list instead of a vector. Vectors are (almost always) linear in memory.</p> <p>Granted, the fact that you have strings inside, which are (almost always) copy-on-modify, reference-counted should make that less of a problem, but it might help.</p> http://stackoverflow.com/questions/5894/genealogy-tree-control/344381#344381 0 Answer by Matt Cruikshank for Genealogy Tree Control Matt Cruikshank 2008-12-05T16:24:16Z 2008-12-05T16:24:16Z <p>I actually spotted <a href="http://gramps-project.org/wiki/index.php?title=Main_Page" rel="nofollow">GRAMPS</a> just the other day.</p> http://stackoverflow.com/questions/338271/how-can-a-member-know-in-what-class-instance-it-is-constructed/338444#338444 0 Answer by Matt Cruikshank for How can a member know in what class instance it is constructed? Matt Cruikshank 2008-12-03T19:35:59Z 2008-12-03T19:35:59Z <p>I experiment with things like this in C# all the time - I use reflection to do it.</p> <p>Consider getting a reflection or code generation library for C++ to help you do what you want to.</p> <p>Now, I can't tell you how to find a good reflection or code generation library for C++, but that's a different question!</p> http://stackoverflow.com/questions/338400/warnings-using-format-strings-with-sprintf-in-c/338437#338437 1 Answer by Matt Cruikshank for Warnings using format strings with sprintf() in C++ Matt Cruikshank 2008-12-03T19:32:21Z 2008-12-03T19:32:21Z <p><code>boost::lexical_cast&lt;string&gt;(sz)</code> is much nicer, anyway.</p> http://stackoverflow.com/questions/337620/matrix-template-library-matrix-inversion/337652#337652 3 Answer by Matt Cruikshank for Matrix Template Library matrix inversion Matt Cruikshank 2008-12-03T16:03:17Z 2008-12-03T16:03:17Z <p>Looks like you use <code>lu_factor</code>, and then <code>lu_inverse</code>. I don't remember what you have to do with the pivots, though. From the <a href="http://www.osl.iu.edu/research/mtl/reference/html/index.html" rel="nofollow">documentation</a>.</p> <p>And yeah, like you said, it looks like their documentations says you need lu.h, somehow:</p> <blockquote> <p><strong>How do I invert a matrix?</strong></p> <p>The first question you should ask yourself is whether you want to really compute the inverse of a matrix or if you really want to solve a linear system. For solving a linear system of equations, it is not necessary to explicitly compute the matrix inverse. Rather, it is more efficient to compute triangular factors of the matrix and then perform forward and backward triangular solves with the factors. More about solving linear systems is given below. If you really want to invert a matrix, there is a function <code>lu_inverse()</code> in mtl/lu.h.</p> </blockquote> <p>If nothing else, you can look at <a href="http://www.osl.iu.edu/research/mtl/mtl/lu.h" rel="nofollow">lu.h on their site</a>.</p> http://stackoverflow.com/questions/256806/is-it-possible-to-implement-scoped-lock-in-c/337152#337152 0 Answer by Matt Cruikshank for Is it possible to implement scoped lock in C#? Matt Cruikshank 2008-12-03T13:51:49Z 2008-12-03T13:51:49Z <p>I've been really bothered by the fact that <code>using</code> is up to the developer to remember to do - at best you get a warning, which most people never bother to promote to an error. So, I've been toying with an idea like this - it forces the client to at least TRY to do things correctly. Fortunately and unfortunately, it's a closure, so the client could still keep a copy of the resource, and try to use it again later - but this code at least tries to push the client in the right direction...</p> <pre><code>public class MyLockedResource : IDisposable { private MyLockedResource() { Console.WriteLine("initialize"); } public void Dispose() { Console.WriteLine("dispose"); } public delegate void RAII(MyLockedResource resource); static public void Use(RAII raii) { using (MyLockedResource resource = new MyLockedResource()) { raii(resource); } } public void test() { Console.WriteLine("test"); } } </code></pre> <p>Good usage:</p> <pre><code>MyLockedResource.Use(delegate(MyLockedResource resource) { resource.test(); }); </code></pre> <p>Bad usage! (Unfortunately, this can't be prevented...)</p> <pre><code>MyLockedResource res = null; MyLockedResource.Use(delegate(MyLockedResource resource) { resource.test(); res = resource; res.test(); }); res.test(); </code></pre> http://stackoverflow.com/questions/335736/writing-code-to-fire-the-last-method-to-throw-an-exception-in-a-multi-threaded-we/335801#335801 0 Answer by Matt Cruikshank for Writing code to fire the last method to throw an exception in a multi-threaded web app Matt Cruikshank 2008-12-02T23:21:38Z 2008-12-02T23:21:38Z <p>Mark's code is probably better, but here's mine...</p> <p>If you <strong>really</strong> want to do something like this, I'd use code something like this. Yes, you still have to manually call it, but your idea of indiscriminately retrying ALL excepting methods is a really, really bad idea.</p> <pre><code>public class TryAgain { public delegate void CodeToTryAgain (); public static void Repeat&lt;E&gt;(int count, CodeToTryAgain code) where E : Exception { while (count-- &gt; 0) { try { code(); return; } catch (E ex) { Console.WriteLine("Caught an {0} : {1}", typeof(E).Name, ex.Message); // ignoring it! } } } } </code></pre> <p>And then you'd call your failing method, <code>ThrowTwice</code>, or whatever you want to do, like this:</p> <pre><code>TryAgain.Repeat&lt;MyException&gt;(5, delegate() { ThrowTwice(); }); </code></pre> <p>In this example, the Repeat method will ignore all exceptions of type MyException, trying to call ThrowTwice up to 5 times...</p> <p>You can add your own sleeping and time-outs, and whatever.</p> http://stackoverflow.com/questions/335736/writing-code-to-fire-the-last-method-to-throw-an-exception-in-a-multi-threaded-we/335762#335762 4 Answer by Matt Cruikshank for Writing code to fire the last method to throw an exception in a multi-threaded web app Matt Cruikshank 2008-12-02T22:59:08Z 2008-12-02T22:59:08Z <p><strong>Please don't do this.</strong> It's a really, really, really, really, really <em>bad idea</em>.</p> <p>Maybe not as bad as deleting files randomly, if the hard drive runs out of room - but just about as bad.</p> http://stackoverflow.com/questions/326885/a-loop-to-create-neighbor-nodes-in-3d-space/326889#326889 8 Answer by Matt Cruikshank for A loop to create neighbor nodes in 3d space Matt Cruikshank 2008-11-28T23:25:13Z 2008-11-29T00:43:08Z <pre><code>for (int dz = z - 1; dz &lt;= z + 1; ++dz) { for (int dy = y - 1; dy &lt;= y + 1; ++dy) { for (int dx = x - 1; dx &lt;= x + 1; ++dx) { // all 27 if ((dx != x) || (dy != y) || (dz != z)) { // just the 26 neighbors } } } } </code></pre> http://stackoverflow.com/questions/306559/passing-boostany-to-results-of-boostbind/306874#306874 0 Answer by Matt Cruikshank for Passing boost::any to results of boost::bind Matt Cruikshank 2008-11-20T21:16:02Z 2008-11-20T21:16:02Z <p>I ended up doing this for now -</p> <pre><code>void invoke(void (f)(), list&lt;any&gt;&amp; params) { f(); } template &lt;typename R&gt; void invoke(R (f)(), list&lt;any&gt;&amp; params) { params.push_front(f()); } template &lt;typename T0&gt; void invoke(void (f)(T0), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); f(t0); } template &lt;typename R, typename T0&gt; void invoke(R (f)(T0), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); params.push_front(f(t0)); } template &lt;typename T0, typename T1&gt; void invoke(void (f)(T0, T1), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); T1 t1 = any_cast&lt;T1&gt;(*params.begin()); params.pop_front(); f(t0, t1); } template &lt;typename R, typename T0, typename T1&gt; void invoke(R (f)(T0, T1), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); T1 t1 = any_cast&lt;T1&gt;(*params.begin()); params.pop_front(); params.push_front(f(t0, t1)); } template &lt;typename T0, typename T1, typename T2&gt; void invoke(void (f)(T0, T1, T2), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); T1 t1 = any_cast&lt;T1&gt;(*params.begin()); params.pop_front(); T2 t2 = any_cast&lt;T2&gt;(*params.begin()); params.pop_front(); f(t0, t1, t2); } template &lt;typename R, typename T0, typename T1, typename T2&gt; void invoke(R (f)(T0, T1, T2), list&lt;any&gt;&amp; params) { T0 t0 = any_cast&lt;T0&gt;(*params.begin()); params.pop_front(); T1 t1 = any_cast&lt;T1&gt;(*params.begin()); params.pop_front(); T2 t2 = any_cast&lt;T2&gt;(*params.begin()); params.pop_front(); params.push_front(f(t0, t1, t2)); } </code></pre> <p>I'm lacking the full power of boost::bind - like, I can't handle method pointers - but I also realized that by doing this, I've got a stack processor. I can keep invoking methods that operator on the parameters on the stack.</p> http://stackoverflow.com/questions/306559/passing-boostany-to-results-of-boostbind 0 Passing boost::any to results of boost::bind Matt Cruikshank 2008-11-20T19:33:27Z 2008-11-20T21:16:02Z <p>I'm trying to figure out how to write this function:</p> <pre><code>template &lt;typename Bound&gt; Bound::result_type callFromAnyList(Bound b, list&lt;any&gt; p) { } </code></pre> <p>Then, if I had some function:</p> <pre><code>double myFunc(string s, int i) { return -3.0; } </code></pre> <p>I could call it by doing something like this:</p> <pre><code>list&lt;any&gt; p; p.push_back((string)"Hello"); p.push_back(7); double result = callFromAnyList(bind(myFunc, _1, _2), p); </code></pre> <p>Is it possible to write something like my <code>callFromAnyList</code> function? Can you inspect the result type and the parameter types from the type returned from <code>bind</code>? And then call <code>any_cast&lt;P1&gt;(*p.begin())</code>, etc? I've tried to understand the bind code, but it's a little hard to follow, and it doesn't appear as though they wrote it with inspection in mind.</p> http://stackoverflow.com/questions/278528/applying-transforms-to-3d-models-normals-pb/278744#278744 2 Answer by Matt Cruikshank for Applying Transforms to 3D models - Normals pb. Matt Cruikshank 2008-11-10T18:34:37Z 2008-11-10T18:34:37Z <p>You should look at <a href="http://www.cs.berkeley.edu/~ug/slide/pipeline/assignments/backfacecull.shtml#planes" rel="nofollow">transforming normals</a>. </p> <p>And actually, Jeff, you're only partly correct. For a vector, you're right. But for a normal, which is a bit different in meaning, you have to transform by the upper 3x3, but inversed, and then transposed.</p> http://stackoverflow.com/questions/268595/how-do-i-get-latest-clearcase-label-programmatically-from-c/269607#269607 0 Answer by Matt Cruikshank for How do I get latest clearcase label programmatically from C#? Matt Cruikshank 2008-11-06T17:50:29Z 2008-11-06T17:50:29Z <p>I really wish that the COM interfaces had better documentation, or were more obvious. Or that the code to ClearCase Explorer or Project Explorer were open source.</p> <p>I've done a few cool things, but I pretty much started by adding COM references to my C# project, and then started screwing around with the interfaces I found.</p> <p>Good luck!</p> http://stackoverflow.com/questions/269223/could-c-have-not-obviated-the-pimpl-idiom/269599#269599 2 Answer by Matt Cruikshank for Could C++ have not obviated the pimpl idiom? Matt Cruikshank 2008-11-06T17:48:16Z 2008-11-06T17:48:16Z <p>You're all ignoring the point of the question -</p> <p>Why must the developer type out the PIMPL code?</p> <p>For me, the best answer I can come up with is that we don't have a good way to express C++ code that allows you to operate on it. For instance, compile-time (or pre-processor, or whatever) reflection or a code DOM.</p> <p>C++ badly needs one or both of these to be available to a developer to do meta-programming.</p> <p>Then you could write something like this in your public MyClass.h:</p> <pre><code>#pragma pimpl(MyClass_private.hpp) </code></pre> <p>And then write your own, really quite trivial wrapper generator.</p> http://stackoverflow.com/questions/160633/why-do-we-still-program-with-flat-files Comment by Matt Cruikshank on Why do we still program with flat files? Matt Cruikshank 2009-10-08T05:22:51Z 2009-10-08T05:22:51Z @TM - I'm not suggesting a human would write the XML. It's merely stored in the text file that way. http://stackoverflow.com/questions/130913/what-is-the-state-of-c-refactor-support-in-eclipse/837063#837063 Comment by Matt Cruikshank on What is the state of C++ refactor support in Eclipse? Matt Cruikshank 2009-08-25T22:31:08Z 2009-08-25T22:31:08Z That, and the fact that C++ does not have a stateless grammar. http://stackoverflow.com/questions/1133507/is-there-a-function-like-peekmessage-that-doesnt-process-messages/1133546#1133546 Comment by Matt Cruikshank on Is there a function like PeekMessage that doesn't process messages? Matt Cruikshank 2009-07-16T13:55:25Z 2009-07-16T13:55:25Z Thanks @Remus Rusanu! If you'd post this as an answer to my question, I'd accept it! http://stackoverflow.com/questions/1133507/is-there-a-function-like-peekmessage-that-doesnt-process-messages/1133546#1133546 Comment by Matt Cruikshank on Is there a function like PeekMessage that doesn't process messages? Matt Cruikshank 2009-07-15T20:00:45Z 2009-07-15T20:00:45Z Agreed. I didn't write this code. Unfortunately, I don't believe there is any function call that would do I what I need - determine IF a keypress or mouse event is in the queue, without processing any messages. http://stackoverflow.com/questions/49755/design-pattern-for-undo-engine/49764#49764 Comment by Matt Cruikshank on Design Pattern for Undo Engine Matt Cruikshank 2009-05-14T23:25:01Z 2009-05-14T23:25:01Z Can you describe it? http://stackoverflow.com/questions/866012/is-there-a-way-to-define-variables-of-two-types-in-for-loop/866052#866052 Comment by Matt Cruikshank on Is there a way to define variables of two types in for loop? Matt Cruikshank 2009-05-14T23:01:33Z 2009-05-14T23:01:33Z #define i p.first #define j p.second There, now you don't need to change the body of the loop. http://stackoverflow.com/questions/866012/is-there-a-way-to-define-variables-of-two-types-in-for-loop/866036#866036 Comment by Matt Cruikshank on Is there a way to define variables of two types in for loop? Matt Cruikshank 2009-05-14T22:59:59Z 2009-05-14T22:59:59Z Well, there's your problem. Macros are inherently flawed and dangerous and you run into conditions they can't handle. For that matter, you are quite often screwed because macros don't understand templates with commas in them. Give up on the macro, all your problems go away. http://stackoverflow.com/questions/3947/music-to-listen-to-while-coding/17227#17227 Comment by Matt Cruikshank on Music to listen to while coding Matt Cruikshank 2009-05-14T21:08:42Z 2009-05-14T21:08:42Z I think this is it: <a href="http://www.npr.org/templates/story/story.php?storyId=6904834" rel="nofollow">npr.org/templates/story/&hellip;</a> Starts at about 7:46 in the recording. http://stackoverflow.com/questions/86582/singleton-how-should-it-be-used/86818#86818 Comment by Matt Cruikshank on Singleton: How should it be used Matt Cruikshank 2009-04-27T16:54:55Z 2009-04-27T16:54:55Z For the record book - my response was tongue-in-cheek. In my actual interview process, I try to assess if we will need to tutor someone in C++, and how hard that will be. Some of my favorite candidates are people who DON'T know C++ inside-and-out, but I was able to have a great conversation with them about it. http://stackoverflow.com/questions/45086/c-and-soap/92256#92256 Comment by Matt Cruikshank on C++ and SOAP Matt Cruikshank 2009-04-05T18:34:28Z 2009-04-05T18:34:28Z I'd appreciate that! - MCruikshank@Vitalimages.com or maybe you could post it on google code, or something similar. :-) http://stackoverflow.com/questions/714213/c-template-casting/714289#714289 Comment by Matt Cruikshank on c++ template casting Matt Cruikshank 2009-04-03T19:00:37Z 2009-04-03T19:00:37Z I'm sorry, but this is really terrible advice. This has the worst possible memory characteristics. I question the OP's need to have his foo function take d ParamVector&lt;float&gt;. Make the foo function templatized so it can take any ParamVector&lt;T&gt;. http://stackoverflow.com/questions/714118/how-do-i-return-an-stdset-with-a-private-comparator/714217#714217 Comment by Matt Cruikshank on How do I return an std::set with a private comparator Matt Cruikshank 2009-04-03T14:52:07Z 2009-04-03T14:52:07Z Can you do this? Do you need the destructor to be public? I think you can do this, like you say - I just don't know for sure it'd work. http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/264998#264998 Comment by Matt Cruikshank on What is the worst interviewee answer? Matt Cruikshank 2009-03-24T19:55:37Z 2009-03-24T19:55:37Z Q: What is encapsulation? A: I could tell you, but then I'd be letting you see my internals. http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/263847#263847 Comment by Matt Cruikshank on What is the worst interviewee answer? Matt Cruikshank 2009-03-24T19:54:58Z 2009-03-24T19:54:58Z I end up seeing if people can tell me what 2*99 is. It doesn't go well. http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/14012#14012 Comment by Matt Cruikshank on What is the worst interviewee answer? Matt Cruikshank 2009-03-24T19:48:56Z 2009-03-24T19:48:56Z It's not an IMMEDIATE rejection, if they say 5. If they say 5 but can't answer basic questions, then it's an IMMEDIATE rejection.