User Mark Beckwith - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T08:20:20Zhttp://stackoverflow.com/feeds/user/45799http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1631317/trouble-with-activeqt0Trouble with ActiveQtMark Beckwith2009-10-27T14:46:43Z2009-10-27T14:46:43Z
<p>I'm trying to get the examples of using ActiveQt working with my Qt Commercial 4.4.2 release (my commercial support expired). So far no luck. I keep getting "Failed to create component 'AxHost'". Sorry, not much to go on.</p>
<p>My goal is to allow a client to use a widget from my app in their C# application.</p>
<p><strong>Am I taking the right approach? Any advice on how to get this working?</strong></p>
http://stackoverflow.com/questions/1120526/what-are-the-common-sense-seo-practices-that-arent-dodgy-or-crap/1120623#11206232Answer by Mark Beckwith for What are the common sense SEO practices that aren't dodgy or crap?Mark Beckwith2009-07-13T16:36:12Z2009-07-13T16:36:12Z<p>A well organized, easy to navigate, hierarchical site.</p>
http://stackoverflow.com/questions/1056247/passing-variables-from-one-form-to-another-in-qt/1056283#10562830Answer by Mark Beckwith for Passing variables from one form to another in QTMark Beckwith2009-06-29T02:01:08Z2009-06-29T02:07:25Z<p>The dialog box still exists after it closes. So you can, from the main form, do something like this:</p>
<pre><code>QString text = subform->textEdit->text();
</code></pre>
<p>This assumes your dialog box is <code>subform</code> and the name you gave to the text edit box is <code>textEdit</code>. Make sure you make <code>textEdit</code> public in the designer.</p>
<p>If you don't want to make <code>textEdit</code> public, then you can add a getter to <code>subform</code>.</p>
http://stackoverflow.com/questions/1004060/in-windows-what-makes-qmake-append-a-d-to-a-debug-target/1005093#10050931Answer by Mark Beckwith for In Windows, What Makes qmake Append a "d" to a Debug Target?Mark Beckwith2009-06-17T04:16:30Z2009-06-17T04:16:30Z<p>In your .pro file, add <code>debug</code> to the <code>CONFIG</code> variable:</p>
<pre><code>CONFIG += qt debug
</code></pre>
<p>See: <a href="http://doc.qtsoftware.com/4.5/qmake-tutorial.html#making-an-application-debuggable" rel="nofollow">http://doc.qtsoftware.com/4.5/qmake-tutorial.html#making-an-application-debuggable</a></p>
http://stackoverflow.com/questions/967930/creating-program-libraries-in-windows-and-linux-c/968129#9681291Answer by Mark Beckwith for Creating program libraries in Windows and LINUX [C++]Mark Beckwith2009-06-09T04:27:50Z2009-06-09T04:27:50Z<p>Another option, one that I use now, is to use <a href="http://www.mingw.org/" rel="nofollow">MinGW</a> on Windows. This way you can use gcc on Windows, and you don't have to worry about the declspec nonsense.</p>
http://stackoverflow.com/questions/966960/what-does-fpic-mean-when-building-a-shared-library/967055#9670553Answer by Mark Beckwith for What does -fPIC mean when building a shared library?Mark Beckwith2009-06-08T21:10:12Z2009-06-09T01:56:11Z<p>The <code>f</code> is the gcc prefix for options that "control the interface conventions used
in code generation"</p>
<p>The <code>PIC</code> stands for "Position Independent Code", it is a specialization of the <code>fpic</code> for m68K and SPARC.</p>
<p>Edit: After reading page 11 of the <a href="http://people.redhat.com/drepper/dsohowto.pdf" rel="nofollow">document referenced by 0x6adb015</a>, and the comment by coryan, I made a few changes:</p>
<p>This option only makes sense for shared libraries and you're telling the OS your using a Global Offset Table, GOT. This means all your address references are relative to the GOT, and the code can be shared accross multiple processes.</p>
<p>Otherwise, without this option, the loader would have to modify all the offsets itself.</p>
<p>Needless to say, we almost always use -fpic/PIC.</p>
http://stackoverflow.com/questions/763656/should-we-still-be-optimizing-in-the-small12Should we still be optimizing "in the small"? Mark Beckwith2009-04-18T15:58:16Z2009-05-24T15:11:01Z
<p>I was changing my for loop to increment using <code>++i</code> instead of <code>i++</code> and got to thinking, is this really necessary anymore? Surely today's compilers do this optimization on their own. </p>
<p>In this article, <a href="http://leto.net/docs/C-optimization.php" rel="nofollow">http://leto.net/docs/C-optimization.php</a>, from 1997 Michael Lee goes into other optimizations such as inlining, loop unrolling, loop jamming, loop inversion, strength reduction, and many others. Are these still relevant?</p>
<p><strong>What low level code optimizations should we be doing, and what optimizations can we safely ignore?</strong></p>
<p>Edit: This has nothing to do with premature optimization. <strong>The decision to optimize has already been made.</strong> Now the question is what is the most effective way to do it.</p>
<p>anecdote: I once reviewed a requirements spec that stated: "The programmer shall left shift by one instead of multiplying by 2".</p>
http://stackoverflow.com/questions/890537/nsis-how-do-i-create-a-start-menu-shortcut-to-open-a-folder0nsis: How do I create a start menu shortcut to open a folder?Mark Beckwith2009-05-20T22:16:38Z2009-05-20T22:46:11Z
<p>My NSIS installer creates Start Menu links to run and uninstall my application.</p>
<p><strong>Using NSIS, how do I create StartMenu shortcut to open a folder in Windows Explorer?</strong></p>
http://stackoverflow.com/questions/873192/programming-home-hiring/873232#87323210Answer by Mark Beckwith for Programming @ Home - HiringMark Beckwith2009-05-16T20:30:04Z2009-05-16T20:30:04Z<p>No I would not.</p>
<p>A man walked up to Mozart and said, "Mozart, my son is interested in playing the piano and wants to know how to get started". Mozart said, "He should take piano lessons." The man said, "Well, that's not what you did." And Mozart replied, "I didn't have to ask."</p>
http://stackoverflow.com/questions/859825/how-to-design-a-linear-gui-program/863468#8634680Answer by Mark Beckwith for How to design a linear GUI programMark Beckwith2009-05-14T13:57:11Z2009-05-14T13:57:11Z<p>Create a dialog with a "Start Import" button on top. When the user clicks this:</p>
<p>Populate a <a href="http://doc.trolltech.com/4.5/qformlayout.html" rel="nofollow"><code>QFormLayout</code></a> :</p>
<p>The layout should have a checkbox and the label is the name of the picture to import. I'm not sure of your requirements, but you could also display a thumbnail of the image.</p>
<p>The user just checks the images he wants.</p>
<p>Then at the bottom have a "Save..." button. When the user clicks this, a Save As dialog appears. You save all the checked images, discard the others.</p>
<p>If there are no images, change the "Save..." button text to "OK", and display a <code>QLabel</code> with the "No images left" string. You can switch between the <code>QLabel</code> and <code>QFormLayout</code> using a <a href="http://doc.trolltech.com/4.5/qstackedwidget.html" rel="nofollow"><code>QStackedWidget</code></a>.</p>
<p>Checkout this article on <code>QFormLayout</code>: <a href="http://doc.trolltech.com/qq/qq25-formlayout.html" rel="nofollow">http://doc.trolltech.com/qq/qq25-formlayout.html</a> </p>
<p>Option: Get rid of the "Start Import" button. Have the app automatically populate the QFormLayout on startup (possibly in constructor if its fast enough). </p>
http://stackoverflow.com/questions/841096/slow-selection-in-qtreeview-why/845295#8452951Answer by Mark Beckwith for Slow selection in QTreeView, why?Mark Beckwith2009-05-10T13:00:13Z2009-05-10T13:00:13Z<p>Try calling <code>setUniformRowHeights(true)</code> for your tree view:</p>
<p><a href="http://doc.trolltech.com/4.5/qtreeview.html#uniformRowHeights-prop" rel="nofollow">http://doc.trolltech.com/4.5/qtreeview.html#uniformRowHeights-prop</a></p>
<p>Also, there's a C++ tool called modeltest from qt labs. I'm not sure if there is something for python though:</p>
<p><a href="http://labs.trolltech.com/page/Projects/Itemview/Modeltest" rel="nofollow">http://labs.trolltech.com/page/Projects/Itemview/Modeltest</a></p>
http://stackoverflow.com/questions/815581/qt-creating-an-svg-image-button/815954#8159540Answer by Mark Beckwith for QT: creating an "svg image button"Mark Beckwith2009-05-03T00:04:09Z2009-05-03T00:04:09Z<p>From looking over the docs, it looks like what you want to do is have a <code>QLabel</code> in the button. Then call <code>setPixmap()</code> on the label, and then set the property <code>scaledContents()</code> to <code>true</code>.</p>
<p>Now I'm not sure if just adding a label to the button will work, because the button has an icon and text property already. </p>
<p>I'll mark this as a community wiki so you can change it if you want. </p>
<p>Also, from my experience, messing with <code>resizeEvent()</code> is rarely a good idea :-)</p>
http://stackoverflow.com/questions/815380/wait-until-qwidget-closes/815494#8154946Answer by Mark Beckwith for Wait until QWidget closesMark Beckwith2009-05-02T19:58:06Z2009-05-02T19:58:06Z<p>Have <code>MyClass</code> inherit <code>QDialog</code>. Then open it as a modal dialog with <code>exec()</code>.</p>
<pre><code>void MainWindow::createMyDialog()
{
MyClass dialog(this);
dialog.exec();
}
</code></pre>
<p>Check out <a href="http://doc.trolltech.com/4.5/qdialog.html" rel="nofollow">http://doc.trolltech.com/4.5/qdialog.html</a></p>
http://stackoverflow.com/questions/796867/how-to-improve-software-design-skills/804272#8042721Answer by Mark Beckwith for How to improve software design skills?Mark Beckwith2009-04-29T21:06:26Z2009-04-29T21:06:26Z<p>Instead of saying "trial and error", let's say "iteration".</p>
<p>Whatever you're designing, just give it your best shot with the information you have, knowing you don't have complete knowledge. Then you will undoubtedly run into an unforeseen issue that complicates things. This is when you have to ask yourself what went wrong and what to do differently. Then go back and redesign/reimplement with your new understanding. Repeat. Always be second guessing your design and be looking around you for better solutions. For example, "How does Firefox implement find? Oh, I see, they don't use a popup window, and its much cleaner."</p>
<p>By accepting the fact that you will make mistakes and are willing to fix them, you're already way ahead of the pack.</p>
<p>As you gain experience, you're iterations will become longer, and once in a while you'll get things right the first time -- no doubt because you can foresee mistakes and their solution from the past.</p>
<p>As far as books are concerned, if I remember correctly, "Inside Steve's Brain" talked about how iteration is intrinsic to Apple's development.</p>
http://stackoverflow.com/questions/799558/generating-data-structures-by-parsing-plain-text-files/799658#7996585Answer by Mark Beckwith for Generating data structures by parsing plain text filesMark Beckwith2009-04-28T20:22:13Z2009-04-28T20:22:13Z<p>Well, you asked for a third option. You don't have to use XML, but if you follow the following structure, it would be very simple to use a SAX parser to build your data structure.</p>
<p>At any rate, instead of referencing a teammate, each character references a team (Blue team in this case). This will decouple the circular reference issue. Just make sure you list the teams before the characters.</p>
<pre><code><team>Blue</team>
<character>
<name>Sidekick</name>
<X>12</X>
<Y>0</Y>
<teamref>Blue</teamref>
</character>
<character>
<name>Sidekick</name>
<X>10</X>
<Y>50</Y>
<teamref>Blue</teamref>
</character>
</code></pre>
http://stackoverflow.com/questions/791108/is-it-worth-forward-declaring-library-classes/791185#7911851Answer by Mark Beckwith for Is it worth forward-declaring library classes?Mark Beckwith2009-04-26T16:55:31Z2009-04-26T16:55:31Z<p>In general, no.</p>
<p>I used to forward declare as much as I could, but no longer.</p>
<p>As far as Qt is concerned, you may notice that there is a <code><QtGui></code> include file that will pull in all the GUI Widgets. Also, there is a <code><QtCore></code>, <code><QtWebKit></code>, <code><QtNetwork></code> etc. There's a header file for each module. It seems the Qt team believes this is the preferred method also. They say so in their module documentation.</p>
<p>True, the compilation time may be increased. But in my experience its just not that much. And if it were, using precompiled headers would be the next step.</p>
http://stackoverflow.com/questions/786182/how-should-i-link-a-data-class-to-my-gui-code-to-display-attributes-of-object-i/786760#7867601Answer by Mark Beckwith for How should I link a data Class to my GUI code (to display attributes of object, in C++)?Mark Beckwith2009-04-24T17:02:29Z2009-04-25T12:56:21Z<p>I see you're using Qt. This is good because Qt 4.0 and later includes a powerful model/view framework. And I think this is what you want. </p>
<p><a href="http://doc.trolltech.com/4.5/model-view-programming.html" rel="nofollow">Model/View</a></p>
<p>Basically, have your <code>Data</code> class inherit and implement QAbstractItemModel, or a different Qt Model class, depending on the kind of model you want. Then set your view widget (most likely a QListView) to use <code>Data</code> for its model. </p>
<p>There are lots of examples at their site and this solution scales nicely with large data sets. </p>
<p>Added: This model test code from labs.trolltech.com comes in real handy:</p>
<p><a href="http://labs.trolltech.com/page/Projects/Itemview/Modeltest" rel="nofollow">http://labs.trolltech.com/page/Projects/Itemview/Modeltest</a></p>
http://stackoverflow.com/questions/785985/what-are-you-doing-with-c/786410#7864101Answer by Mark Beckwith for What are you doing with C++?Mark Beckwith2009-04-24T15:44:44Z2009-04-24T15:44:44Z<p>I'm using C++ and Qt to develop the soon to be released <a href="http://www.intrig.com" rel="nofollow">Intrig Data Monitor</a>. This is a cross-platform desktop application that decodes protocol messages. </p>
<p>The underlying engine can process MB/sec of data, which requires the low level high-performance code that C++ is ideally suited for. </p>
<p>On the GUI side, Qt is also well suited for my needs. Their Model/View framework is used extensively and extremely responsive.</p>
<p>I haven't used boost for any development yet, just sticking with the STL, and using Qt networking classes for UDP.</p>
http://stackoverflow.com/questions/781494/how-do-a-specify-a-library-file-dependency-for-qmake-in-qt/781567#7815671Answer by Mark Beckwith for How do a specify a library file dependency for qmake in Qt?Mark Beckwith2009-04-23T12:58:20Z2009-04-23T12:58:20Z<p><code>qmake</code> does not provide this ability. </p>
<p>Instead, put your app and lib in subdirectories, then create a Makefile in their parent directory that looks something like this:</p>
<pre><code>all: FRC
cd Somelib && qmake && $(MAKE)
cd SomeApp && qmake && $(MAKE)
FRC:
</code></pre>
<p>Then always run <code>make</code> from this directory. </p>
http://stackoverflow.com/questions/757009/qtreeview-stylesheet-customization-problem-with-scrollbar/758121#7581210Answer by Mark Beckwith for QTreeView stylesheet customization problem with scrollbarMark Beckwith2009-04-16T21:25:10Z2009-04-18T22:52:13Z<p>The advice of going the QPalette route worked out. Here is the solution:</p>
<pre><code>#if 0 // this causes the problem
setStyleSheet(
"background-color: #EAF5FF;"
"alternate-background-color: #D5EAFF;"
);
#else // this works correctly
QPalette p = palette();
p.setColor(QPalette::Base, QColor(qRgb(0xEA, 0xF5, 0xFF)));
p.setColor(QPalette::AlternateBase, QColor(qRgb(0xD5, 0xEA, 0xFF)));
setPalette(p);
#endif
</code></pre>
<p>Both methods should work according to the docs, so I'd say its a Qt bug.</p>
<p>Edit: After working with this new method over the past few days, I've noticed there may be a performance improvement also.</p>
http://stackoverflow.com/questions/757009/qtreeview-stylesheet-customization-problem-with-scrollbar0QTreeView stylesheet customization problem with scrollbarMark Beckwith2009-04-16T16:45:36Z2009-04-18T22:52:13Z
<p>There are two QTreeViews in the screenshot below. For the one on the right, I've add a css customization:</p>
<pre><code>setStyleSheet(
"background-color: #EAF5FF;"
"alternate-background-color: #D5EAFF;"
);
</code></pre>
<p>Notice however, the scrollbar appearance has changed. It went to the "windows" style, not the "windowsxp" style (which is the default, since I'm developing under Xp).</p>
<p><strong>How can I use the above style settings without changing the scrollbar appearance?</strong></p>
<p>I'm using QT 4.5 and Windows XP.</p>
<p><img src="http://farm4.static.flickr.com/3354/3448020876%5F614237a58e%5Fo.jpg" alt="ScreenShot" /></p>
http://stackoverflow.com/questions/764253/how-many-nested-code-blocks-do-you-end-up-with-in-practice-when-coding/764326#7643260Answer by Mark Beckwith for How many nested code blocks do you end up with in practice when coding?Mark Beckwith2009-04-18T22:09:14Z2009-04-18T22:09:14Z<p>I call this <strong>"isolated ugliness."</strong> </p>
<p>It's <em>ugly</em> because switches within switches are just plain ugly. They could be avoided with some nice OO techniques. But it gets the job done and takes less time to code.</p>
<p><em>Isolated</em> because its best to code this up, write some tests for it, and then put it away and never look at it again. </p>
<p>But yes, its OK to do it. Probably not good if you're doing it everywhere.</p>
<p>I'd be more concerned with the big-O complexity of the nested <code>while</code> statements.</p>
http://stackoverflow.com/questions/741984/open-external-browser-from-qwebview1Open External Browser from QWebViewMark Beckwith2009-04-12T16:15:38Z2009-04-14T08:07:24Z
<p>I have a "start page" on my application that is just a QWebView widget that downloads a page from my server. </p>
<p>When the user clicks on a link I'd like it to open in their default browser, not in the widget.</p>
<p>Is there a way to do this with QWebView? Or should I take a different approach?</p>
http://stackoverflow.com/questions/454382/what-is-the-workflow-you-follow-to-design-the-software-youre-about-to-write/482028#4820282Answer by Mark Beckwith for What is the workflow you follow to design the software you're about to write?Mark Beckwith2009-01-27T01:17:21Z2009-01-27T01:17:21Z<ol>
<li>Write the use cases like you did.</li>
<li>Pick 1 of the uses case and implement it completely, and implement nothing else. This includes unit tests, help and error handling -- everything. Call this version 1.</li>
<li>Implement the next use case. This may be just adding code, or may require a complete redesign. It's ok, you know what your doing now. Make a new release.</li>
<li>Repeat step 3.</li>
</ol>
http://stackoverflow.com/questions/408527/when-can-you-put-c-expert-on-your-cv/408673#4086731Answer by Mark Beckwith for When can you put "C++ Expert" on your CV?Mark Beckwith2009-01-03T05:46:17Z2009-01-03T05:46:17Z<p>When you can answer all the questions at the end of each chapter of <em>The C++ Programming Langauge</em> by Bjarne Stroustrup then at least I would consider you an expert. </p>
http://stackoverflow.com/questions/401851/naming-convention-for-qt-widgets/402347#4023471Answer by Mark Beckwith for Naming convention for Qt widgetsMark Beckwith2008-12-31T05:13:21Z2008-12-31T05:13:21Z<p>I would just use the same naming convention that Qt uses. Make it easy for yourself. </p>
<p>Their naming convention is similar to java.</p>
http://stackoverflow.com/questions/401556/are-quotes-around-hash-keys-a-good-practice-in-perl/402344#4023440Answer by Mark Beckwith for Are quotes around hash keys a good practice in Perl?Mark Beckwith2008-12-31T05:08:45Z2008-12-31T05:08:45Z<p>You can precede the key with a <code>-</code> (minus character) too. From some of my code:</p>
<pre><code>$args{-title} ||= "Intrig";
</code></pre>
<p>I use the single quote, double quote, and quoteless way too. All in the same program :-)</p>
http://stackoverflow.com/questions/389575/how-to-deal-with-exceptions/389637#3896372Answer by Mark Beckwith for How to deal with exceptionsMark Beckwith2008-12-23T18:12:30Z2008-12-23T18:12:30Z<p>Having the <code>OurException</code> is kinda weird. Usually, you want to have specialized catch blocks and then the last one, the one that catches a generic <code>Exception</code> is where you do your logging:</p>
<pre><code>try
{
DoSomething();
}
catch (DivideByZeroException)
{
// handle it here, maybe rethrow it, whatever
}
// more catch blocks
catch (Exception)
{
// oops, this is unexpected, so lets log it
}
</code></pre>
<p>But what your doing will work. I do believe the <code>1242</code> should go though. Here's a method to print the method, filename, and line number you could use instead. I haven't tried it myself but it looks good:</p>
<pre><code> [Conditional("DEBUG")]
public static void DebugPrintTrace()
{
StackTrace st = new StackTrace(true);
StackFrame sf = st.GetFrame(1); // this gets the caller's frame, not this one
Console.WriteLine("Trace "
+ sf.GetMethod().Name + " "
+ sf.GetFileName() + ":"
+ sf.GetFileLineNumber() + "\n");
}
</code></pre>
http://stackoverflow.com/questions/383414/install-eventfilter-on-qwidget-qt4-4-3-kde4/383468#383468-1Answer by Mark Beckwith for install EventFilter on QWidget (qt4.4.3/kde4)Mark Beckwith2008-12-20T16:46:53Z2008-12-23T16:55:53Z<p>QWidget has an <code>enabled</code> property. Just call <code>widget->setEnabled(false)</code> and this will prevent it from accepting mouse clicks. It may also modify its appearance: for example a <code>QPushButton</code> will be grayed out.</p>
<p>Event Filters sound like overkill for what you want.</p>
http://stackoverflow.com/questions/383414/install-eventfilter-on-qwidget-qt4-4-3-kde4/389421#3894211Answer by Mark Beckwith for install EventFilter on QWidget (qt4.4.3/kde4)Mark Beckwith2008-12-23T16:55:34Z2008-12-23T16:55:34Z<p>It looks like <code>eventFilter()</code> is what you want. </p>
<p>Here's the section of Qt docs that talk about it:
<a href="http://doc.trolltech.com/4.4/eventsandfilters.html#event-filters" rel="nofollow">Event Filters</a></p>
<p>Basically you have to create a class that inherits <code>QObject</code> and then implement the virtual function <code>eventFilter()</code>. Then call the <a href="http://doc.trolltech.com/4.4/qobject.html#installEventFilter" rel="nofollow">installEventFilter()</a> method on the object that you want to filter with the filter as a parameter.</p>
http://stackoverflow.com/questions/1294660/c-automatic-properties/1294716#1294716Comment by Mark Beckwith on C# Automatic PropertiesMark Beckwith2009-08-18T16:32:48Z2009-08-18T16:32:48ZExcellent answer. I thought there was no difference until you brought up references.http://stackoverflow.com/questions/1120467/is-it-possible-to-use-gcc-without-cygwin-or-mingwComment by Mark Beckwith on Is it possible to use GCC without Cygwin or MinGW? Mark Beckwith2009-07-13T16:47:01Z2009-07-13T16:47:01ZOne thing also to note, when you distribute a program built with MSVC, you still have to include redistributable libraries. With MinGW, you redistribute mingwm10.dll.http://stackoverflow.com/questions/979143/which-cross-compiler/979234#979234Comment by Mark Beckwith on which cross compiler ??Mark Beckwith2009-06-12T16:20:39Z2009-06-12T16:20:39ZGood Answer. I've been building my MinGW based program on Windows. The next version I'll start cross compiling and this info will come in handy. Thanks.http://stackoverflow.com/questions/966688/show-window-in-qt-without-stealing-focusComment by Mark Beckwith on Show window in Qt without stealing focusMark Beckwith2009-06-09T02:03:08Z2009-06-09T02:03:08ZI've tried a couple of things, setting no focus, and setting disabled, but the focus was always stolen. Workaround: Open all your windows at startup and just update them during runtime. http://stackoverflow.com/questions/894802/unable-to-replace-the-word-in-a-given-folders-contents-by-sed-python-perl/894834#894834Comment by Mark Beckwith on Unable to replace the word in a given folder's contents by Sed/Python/PerlMark Beckwith2009-05-21T20:24:09Z2009-05-21T20:24:09Z+1 You beat me to it. This is my favorite perl one liner. The question is: after using this one liner to fix up hundreds of files in a few seconds, do you continue working, or do you take the rest of the day because that's how long it would take someone with notepad?http://stackoverflow.com/questions/890537/nsis-how-do-i-create-a-start-menu-shortcut-to-open-a-folder/890626#890626Comment by Mark Beckwith on nsis: How do I create a start menu shortcut to open a folder?Mark Beckwith2009-05-21T00:01:32Z2009-05-21T00:01:32ZThanks. It turns out I had a typo in my path.http://stackoverflow.com/questions/830708/is-this-program-running-asynchronous-or-synchrounous/830757#830757Comment by Mark Beckwith on Is this program running Asynchronous or synchrounous?Mark Beckwith2009-05-06T19:04:22Z2009-05-06T19:04:22ZSorry, didn't see the win32 tag.http://stackoverflow.com/questions/815380/wait-until-qwidget-closes/815494#815494Comment by Mark Beckwith on Wait until QWidget closesMark Beckwith2009-05-03T04:00:49Z2009-05-03T04:00:49ZGlad I could help.http://stackoverflow.com/questions/791108/is-it-worth-forward-declaring-library-classes/791185#791185Comment by Mark Beckwith on Is it worth forward-declaring library classes?Mark Beckwith2009-04-26T21:14:50Z2009-04-26T21:14:50Z@neil - haha yeah. http://stackoverflow.com/questions/791108/is-it-worth-forward-declaring-library-classes/791185#791185Comment by Mark Beckwith on Is it worth forward-declaring library classes?Mark Beckwith2009-04-26T17:36:02Z2009-04-26T17:36:02ZUgh. I knew I was going to get voted down for this. It seems SO is all about getting the most popular answer, not the most correct.http://stackoverflow.com/questions/786182/how-should-i-link-a-data-class-to-my-gui-code-to-display-attributes-of-object-i/786760#786760Comment by Mark Beckwith on How should I link a data Class to my GUI code (to display attributes of object, in C++)?Mark Beckwith2009-04-25T12:57:14Z2009-04-25T12:57:14ZGreat, I added a link to the modeltest code that is really useful.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/410799#410799Comment by Mark Beckwith on What's your most controversial programming opinion?Mark Beckwith2009-04-24T19:39:55Z2009-04-24T19:39:55ZI was going to disagree with you but then I realized you're right. If you do get hit by a bus, then the project that you work on should suffer greatly. But not because your code is unreadable, but because your were so valuable to the team.http://stackoverflow.com/questions/763656/should-we-still-be-optimizing-in-the-small/763754#763754Comment by Mark Beckwith on Should we still be optimizing "in the small"? Mark Beckwith2009-04-18T20:49:24Z2009-04-18T20:49:24ZNo prob. It looks like I hit a lot of those "general" buttons :-) Had I known I would have phrased the question differently.http://stackoverflow.com/questions/763656/should-we-still-be-optimizing-in-the-small/763664#763664Comment by Mark Beckwith on Should we still be optimizing "in the small"? Mark Beckwith2009-04-18T20:15:04Z2009-04-18T20:15:04ZI ask about optimization of today's compiler and you're answer is "use an object oriented database." Wow that was random! At least you're getting a lot of up votes.
jalf's answer below is more along the lines of what I was looking for.http://stackoverflow.com/questions/763656/should-we-still-be-optimizing-in-the-small/763754#763754Comment by Mark Beckwith on Should we still be optimizing "in the small"? Mark Beckwith2009-04-18T20:08:12Z2009-04-18T20:08:12ZIt doesn't help. Its a very nice answer, just like Neil's, but it has nothing to do with the question I asked. See jalf's answer below for more of what I was looking for.