User Colin Jensen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T12:09:40Zhttp://stackoverflow.com/feeds/user/9884http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/243967/do-you-consider-this-technique-bad/244257#2442571Answer by Colin Jensen for Do you consider this technique "BAD"?Colin Jensen2008-10-28T18:12:55Z2008-10-28T18:12:55Z<p>I would say your solution can be the right solution, but it depends. Paul Tomblin has posted an answer that is better (a series of if tubes) ... if it can be used.</p>
<p>Paul's solution cannot be used when there are expensive object initializations along the way through your loop. If the created objects are used in later steps, the do while (0) solution is better.</p>
<p>That said, variable naming should be improved. Additionally, why reuse the "escape" variable so much? Instead trap each individual error condition explicitly and break the loop so that it is obvious what causes the break out at each point.</p>
<p>Someone else suggested using function calls. Again, this may not be an ideal decomposition if it adds unneeded complexity to the function calls due to the number of args that might be passed at any given step.</p>
<p>Others have suggested this is a difficult to understand idiom. Well, first you could put a comment as suggested at the top of the loop. Second, do-while(0) is a normal and common idiom in macros that all C programmers should recognize immediately, so I just don't buy that.</p>
http://stackoverflow.com/questions/199151/qt-application-fails-spectacularly/199372#1993725Answer by Colin Jensen for Qt Application fails spectacularlyColin Jensen2008-10-13T23:04:40Z2008-10-13T23:04:40Z<p>I don't know... but to me, spewing stuff about Unwind suggests that you have a mismatch between whether the library is compiled with exceptions and your application is compiled with exceptions.</p>
<p>If you want exceptions, make sure you have enabled them by adding the following line in your qmake file:</p>
<pre><code>CONFIG += exceptions
</code></pre>
<p>or, if you do not want exceptions, use the opposite</p>
<pre><code>CONFIG -= exceptions
</code></pre>
<p>And whatever you do, do not use C++ compiler options to set this yourself.</p>
http://stackoverflow.com/questions/195207/unresolved-external-symbol-on-static-class-members/195209#1952098Answer by Colin Jensen for Unresolved external symbol on static class membersColin Jensen2008-10-12T07:49:10Z2008-10-12T07:49:10Z<p>You forgot to add the definitions to match your declarations of X and Y</p>
<pre><code>unsigned char test::X;
unsigned char test::Y;
</code></pre>
<p>somewhere. You might want to also initialize a static member</p>
<pre><code>unsigned char test::X = 4;
</code></pre>
<p>and again, you do that in the definition (usually in a CXX file) not in the declaration (which is often in a .H file)</p>
http://stackoverflow.com/questions/186077/how-do-i-create-a-sparse-file-programmatically-in-c-on-mac-os-x/186098#1860984Answer by Colin Jensen for How do I create a sparse file programmatically, in C, on Mac OS X?Colin Jensen2008-10-09T06:18:26Z2008-10-09T15:06:45Z<p>As in other Unixes, it's a feature of the filesystem. Either the filesystem supports it for ALL files or it doesn't. Unlike Win32, you don't have to do anything special to make it happen. Also unlike Win32, there is no performance penalty for using a sparse file.</p>
<p>On MacOS, the default filesystem is HFS+ which does <em>not</em> support sparse files. You can optionally format a volume with UFS which does support sparse files. HFS+ is the default filesystem on MacOS because it supports the archaic "resource fork" stuff which a few programs still use.</p>
http://stackoverflow.com/questions/180601/using-super-in-c/180635#1806359Answer by Colin Jensen for Using "super" in C++Colin Jensen2008-10-07T22:00:46Z2008-10-07T22:00:46Z<p>Super (or inherited) is Very Good Thing because if you need to stick another inheritance layer in between Base and Derived, you only have to change two things: 1. the "class Base: foo" and 2. the typedef</p>
<p>If I recall correctly, the C++ Standards committee was considering adding a keyword for this... until Michael Tiemann pointed out that this typedef trick works.</p>
<p>As for multiple inheritance, since it's under programmer control you can do whatever you want: maybe super1 and super2, or whatever.</p>
http://stackoverflow.com/questions/160104/how-do-you-add-all-untracked-files-in-svn-something-like-git-add-i/160191#1601910Answer by Colin Jensen for How do you add all untracked files in svn? Something like git add -i?Colin Jensen2008-10-01T23:14:30Z2008-10-01T23:14:30Z<p>Use a GUI that can show you all the untracked files, then select all and add. Any decent SVN gui should provide this functionality.</p>
<p>That said, be careful you really want all those files. </p>
http://stackoverflow.com/questions/145972/how-can-i-setup-lookandfeel-files-in-java/156285#1562850Answer by Colin Jensen for How can I setup LookAndFeel Files in Java ?Colin Jensen2008-10-01T04:53:07Z2008-10-01T04:53:07Z<p>The Qt look and feel is available from <a href="http://trolltech.com/" rel="nofollow">Trolltech</a> as the product Jambi, which IS Qt for Java.</p>
http://stackoverflow.com/questions/141291/how-to-list-only-top-level-directories-in-python/141336#1413360Answer by Colin Jensen for How to list only top level directories in Python?Colin Jensen2008-09-26T19:10:36Z2008-09-26T19:10:36Z<p>Filter the list using os.path.isdir to detect directories.</p>
<pre><code>>>> filter (os.path.isdir, os.listdir(os.getcwd()))`
</code></pre>
http://stackoverflow.com/questions/126759/qt-jambi-qabstractlistmodel-not-displaying-in-qlistview/130645#1306451Answer by Colin Jensen for Qt Jambi: QAbstractListModel not displaying in QListViewColin Jensen2008-09-24T23:40:33Z2008-09-24T23:40:33Z<p>I'm not experienced in Jambi, but shouldn't you be returning a QVariant from method data() instead of returning a Foo? It's not clear to me how the view is going to know how to convert the Foo into a string for display.</p>
<p>Also, any chance I could sell you the easier-to-use QStandardModel and QStandardModelItem instead of rolling a fully custom one the hard way? And if you are only going to have one view ever, you can avoid the whole MVC Pattern altogether and just use the very very easy to use QListWidget.</p>
http://stackoverflow.com/questions/119098/which-i-o-library-do-you-use-in-your-c-code/119126#1191266Answer by Colin Jensen for Which I/O library do you use in your C++ code?Colin Jensen2008-09-23T04:25:14Z2008-09-23T04:25:14Z<p>Back in the bad old days, the C++ Standards committee kept mucking about with the language and iostreams was a moving target. If you used iostreams, you were then given the opportunity to rewrite parts of your code every year or so. Because of this, I always used stdio which hasn't changed significantly since 1989.</p>
<p>If I were doing stuff today, I would use iostreams.</p>
http://stackoverflow.com/questions/75538/hidden-features-of-c/76801#7680127Answer by Colin Jensen for Hidden Features of C++?Colin Jensen2008-09-16T20:41:23Z2008-09-16T20:41:23Z<p>The array operator is associative.</p>
<p>A[8] is a synonym for *(A + 8). Since addition is associative, that can be rewritten as *(8 + A), which is a synonym for..... 8[A]</p>
<p>You didn't say useful... :-) </p>
http://stackoverflow.com/questions/74690/how-do-i-store-the-window-size-between-sessions-in-qt/76699#766995Answer by Colin Jensen for How do I store the window size between sessions in Qt?Colin Jensen2008-09-16T20:33:35Z2008-09-16T20:33:35Z<p>Use the <a href="http://doc.trolltech.com/4.4/qwidget.html#saveGeometry" rel="nofollow">QWidget::saveGeometry</a> feature to write the current settings into the registry.(The registry is accessed using QSettings). Then use restoreGeometry() upon startup to return to the previous state.</p>
http://stackoverflow.com/questions/66671/any-recommendations-for-deployment-from-svn-with-version-numbers-written-into-my/69135#691350Answer by Colin Jensen for Any recommendations for deployment from SVN, with version numbers written into my code automagically?Colin Jensen2008-09-16T03:18:42Z2008-09-16T03:18:42Z<p>The keywords stuff will fail in plenty of cases -- like if you've modified the source before deploying, or if you check in from one directory in your project then a different directory in the same project will have different revision numbers. Check the docs carefully to make sure the keywords do what you think they do.</p>
<p>The better way is to use the <a href="http://svnbook.red-bean.com/en/1.1/re57.html" rel="nofollow">svnversion</a> program to generate information about your checked out directories at compile or deployment time. Svnversion will show information about the version of ALL of your directories as well as flagging whether or not the source was locally modified.</p>
http://stackoverflow.com/questions/66810/custom-style-with-qt/69074#690742Answer by Colin Jensen for Custom style with QtColin Jensen2008-09-16T03:05:56Z2008-09-16T03:05:56Z<p>Check out the <a href="http://doc.trolltech.com/4.4/stylesheet.html" rel="nofollow">Stylesheets</a> facility in Qt 4. While it's still a hassle, it's way easier than doing a full-on custom style. You can just adjust one visual facet at a time and try it out.</p>
<p>It pays attention to inheritance. So if you style the font in QWidget, then every visual widget will also use that font. And so on.</p>
http://stackoverflow.com/questions/186077/how-do-i-create-a-sparse-file-programmatically-in-c-on-mac-os-x/186098#186098Comment by Colin Jensen on How do I create a sparse file programmatically, in C, on Mac OS X?Colin Jensen2008-10-09T15:06:17Z2008-10-09T15:06:17ZThanks -- I'll edit my comment to fix my error