User David Dibben - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T16:09:13Zhttp://stackoverflow.com/feeds/user/5022http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/143808/how-to-improve-link-performance-for-a-large-c-application-in-vs20057How to improve link performance for a large C++ application in VS2005David Dibben2008-09-27T15:24:26Z2009-11-20T19:31:13Z
<p>We have fairly large C++ application which is composed of about 60 projects in Visual Studio 2005. It currently takes 7 minutes to link in Release mode and I would like to try to reduce the time. Are there any tips for improving the link time?</p>
<p>Most of the projects compile to static libraries, this makes testing easier since each one also has a set of associated unit tests. It seems the use of static libraries prevents VS2005 from using incremental linking, so even with incremental linking turned on it does a full link every time.</p>
<p>Would using DLLs for the sub projects make any difference? I don't really want to go through all the headers and add macros to export the symbols (even using a script) but if it would do something to reduce the 7 minute link time I will certainly consider it.</p>
<p>For some reason using nmake from the command line is slightly faster and linking the same application on Linux (with GCC) is much faster.</p>
<ul>
<li>Visual Studio IDE 7 minutes</li>
<li>Visual C++ using nmake from the command line - 5 minutes</li>
<li>GCC on Linux 34 seconds</li>
</ul>
http://stackoverflow.com/questions/191614/how-to-detect-code-duplication-during-development15How to detect code duplication during development ?David Dibben2008-10-10T14:34:27Z2009-08-25T16:10:39Z
<p>We have a fairly large code base, 400K LOC of C++, and code duplication is something of a problem. Are there any tools which can effectively detect duplicated blocks of code?</p>
<p>Ideally this would be something that developers could use during development rather than just run occasionally to see where the problems are. It would also be nice if we could integrate such a tool with CruiseControl to give a report after each check in. </p>
<p>I had a look at <a href="http://www.iam.unibe.ch/~scg/Research/Duploc/index.html" rel="nofollow">Duploc</a> some time ago, it showed a nice graph but requires a smalltalk environment to use it, which makes running it automatically rather difficult.</p>
<p>Free tools would be nice, but if there are some good commercial tools I would also be interested.</p>
http://stackoverflow.com/questions/79745/how-to-determine-which-version-of-direct3d-is-installed2How to determine which version of Direct3D is installed?David Dibben2008-09-17T03:44:27Z2009-07-20T19:32:19Z
<p>We have an application which needs to use Direct3D. Specifically, it needs at least DirectX 9.0c version 4.09.0000.0904. While this should be present on all newer XP machines it might not be installed on older XP machines. How can I programmatically (using C++) determine if it is installed? I want to be able to give an information message to the user that Direct3D will not be available.</p>
http://stackoverflow.com/questions/166796/how-do-you-manage-vcproj-files-in-souce-control-which-are-changed-by-multiple-de5How do you manage .vcproj files in souce control which are changed by multiple developers?David Dibben2008-10-03T13:18:24Z2009-03-04T21:50:27Z
<p>We use Subversion as our source control system and store the VisualStudio project files (vcproj) in the source control system as is normal I think. With Subversion we don't use any form of file locking, so if two developers are working on the same project at the same time and both add files to the project, or change settings, the second one to commit has to merge the changes. </p>
<p>How do you merge these changes? </p>
<p>The vcproj files are just text files so it is possible to edit them by hand but they are not very amenable to hand editing, especially by junior developers.</p>
<p>The ways I can think of are</p>
<ul>
<li>Get the latest version from svn and re-add all local changes manually</li>
<li>Edit the file by hand to resolve any conflicts from an automatic merge</li>
<li>Implement some form of locking scheme to prevent simultaneous changes</li>
<li>Have an agreement between developers so they do not make simultaneous changes</li>
</ul>
<p>Currently we are using the first option of re-adding all changes manually but this is time consuming and I was wondering if there is a better way.</p>
<p>With source files the automatic merge feature works most of the time and we don't get many conflicts. </p>
http://stackoverflow.com/questions/111122/how-do-you-integrate-a-tdd-approach-with-visualstudio9How do you integrate a TDD approach with VisualStudio?David Dibben2008-09-21T14:27:53Z2009-02-15T00:15:54Z
<p>I am interested in hearing about experiences using TDD and unit testing for C++ in general with Visual Studio 2005 (Professional)</p>
<p>First some background. We have a fairly large project and much of it has been developed on Linux using CppUnit for the unit tests. The project is divided into several libraries, each with their own set of tests. I have a simple script which compiles the library, compiles the test suite and then runs the tests. So after making changes in the code I just run "test" from a command line and the tests run. </p>
<p>Now, most of the developers are using Visual Studio 2005 on Windows for the development of this product. Of course they can still run the tests from a command line using nmake but involves extra steps and I would prefer to have a much more integrated solution.</p>
<p>So my question has two parts.</p>
<p>Firstly, what is the best way of laying out the code for tests on a large code base? Is it normal to create several test projects in a solution, one for each library? </p>
<p>Secondly are there any tools for integrating CppUnit tests into Visual Studio? With dependencies set up corectly running the test project should run the tests but currently the results still appear in a command window.</p>
http://stackoverflow.com/questions/318641/multiple-qmainwindow-instances/319613#3196134Answer by David Dibben for Multiple QMainWindow instances?David Dibben2008-11-26T02:46:37Z2008-11-26T02:46:37Z<p>You can have as many QMainWindow instances as you want. A QMainWindow is just a QWidget which provides a menu bar, toolbar, status bar and docking framework. But basically it is just a QWidget so you can have as many as you like.</p>
<p>Normally you only have a single QMainWindow for GUI design reasons since it can be confusing to have multiple main windows. However, when implementing applications like QtAssistant which can open a new instance of themselves then the one process has multiple main windows.</p>
<p>What you suggest should work. The window with the tabs would not need to be a QMainWindow unless you want to also want add a toolbar to that window as well. </p>
http://stackoverflow.com/questions/316728/resources-for-graph-structure/316765#3167651Answer by David Dibben for Resources for graph structure ?David Dibben2008-11-25T09:05:34Z2008-11-25T09:05:34Z<p>The <a href="http://www.boost.org/doc/libs/1_37_0/libs/graph/doc/index.html" rel="nofollow">boost graph library</a> may be a starting point and give you some code for solving your graph related problems.</p>
http://stackoverflow.com/questions/308086/which-are-the-most-informative-net-screencasts-watched-by-you/308089#3080891Answer by David Dibben for which are the most informative .net screencasts watched by you?David Dibben2008-11-21T07:03:41Z2008-11-21T07:03:41Z<p>How about <a href="http://www.dnrtv.com/" rel="nofollow">DNR TV</a></p>
http://stackoverflow.com/questions/307951/how-to-delete-files-older-than-n-weeks-from-a-microsoft-ftp-server/308030#3080301Answer by David Dibben for How to delete files older than N weeks from a Microsoft FTP serverDavid Dibben2008-11-21T06:19:15Z2008-11-21T06:19:15Z<p>You can delete files on the FTP server using the delete or mdelete FTP commands. I don't know of a way to select old files as a server-side operation, so one option would be to do an FTP ls to get a list of the files on the server, then parse the output to pick up those files which are older than your specified date. Then delete each one using an FTP command.</p>
<p>If you have a local copy of all the files then it is probably easier to generate the list of files locally using find then delete them one at a time from the server.</p>
<p>If you have some control over the FTP server then using rysnc instead of FTP would probably be easier.</p>
http://stackoverflow.com/questions/307934/learning-java/307943#3079430Answer by David Dibben for Learning Java?David Dibben2008-11-21T05:15:25Z2008-11-21T05:15:25Z<p>I found <a href="http://www.horstmann.com/corejava.html" rel="nofollow">Core Java</a> by Cay S. Horstmann and Gary Cornell to be very readable.</p>
http://stackoverflow.com/questions/305523/embedding-an-application-in-this-case-a-terminal-within-a-qt-application/307752#307752-1Answer by David Dibben for embedding an application (in this case a terminal) within a QT applicationDavid Dibben2008-11-21T03:34:06Z2008-11-21T03:34:06Z<p>You need to pass the window ID of the container to the xterm.</p>
<p>If you look at the example in the Qt help for QX11EmbedContainer, it just passes the window id to the QProcess. Change this to</p>
<pre><code> QProcess process(&container);
QString executable(app.arguments()[1]);
QStringList arguments;
arguments << "-into" << QString::number(container.winId());
process.start(executable, arguments);
</code></pre>
<p>where "-into" has been added to the arguments. From the XTerm man page:</p>
<blockquote>
<p>-into windowId</p>
<p>Given an X window identifier (a decimal integer), xterm
will reparent its top-level shell
widget to that window. This is used
to embed xterm within other applications.</p>
</blockquote>
http://stackoverflow.com/questions/307362/c-problem-error-external-cc-referenced-from-c-c-crp-obj/307377#3073771Answer by David Dibben for C++ Problem : "Error external 'C::C()' referenced from C:\C++\CRP.OBJ" ....David Dibben2008-11-21T00:14:26Z2008-11-21T00:14:26Z<p>When you link your program you need to link both the c.obj file and the crp.obj file. The error you are seeing is because only the crp.obj file is being used for the link.</p>
<p>What compiler are you using? If you are using something like VisualStudio then if both c.cpp and crp.cpp are in the same project it should work. If you are using the command line to build then you need to link both files, eg</p>
<p>gcc -o crp.exe c.cpp crp.cpp</p>
<p>for gcc</p>
http://stackoverflow.com/questions/301174/delete-a-file-in-use-in-runtime/301189#3011890Answer by David Dibben for Delete a file in use in runtimeDavid Dibben2008-11-19T06:50:35Z2008-11-19T06:50:35Z<p>I don't think that it is possible. On windows, you cannot delete a file which has open handles. <a href="http://support.microsoft.com/kb/320081" rel="nofollow">http://support.microsoft.com/kb/320081</a></p>
<p>However, from your description you don't need to keep the file open in your application. Open the file, read the image then close the file. Then the file can be deleted but the application will still have the image data.</p>
http://stackoverflow.com/questions/298060/do-i-get-a-finished-slot-if-a-start-qprocess-using-startdetached/300856#3008562Answer by David Dibben for Do I get a finished slot if a start QProcess using startDetachedDavid Dibben2008-11-19T02:36:00Z2008-11-19T02:36:00Z<p>No you can't get a signal when you use startDetached because you have no object.</p>
<p>startDetached is a static function and when you call it the process is started directly without creating a QProcess object. Therefore, even if there was a signal you would not be able to connect it to anything since you have no object to connect from.</p>
<p>If you want a signal you should create a QProcess object and then call start on it. You will then be able to get the finished signal when the process finishes.</p>
http://stackoverflow.com/questions/148451/how-to-use-sed-to-replace-only-the-first-occurrence-in-a-file6How to use sed to replace only the first occurrence in a file?David Dibben2008-09-29T12:22:33Z2008-11-18T02:24:04Z
<p>I want to update a large number of C++ source files with an extra include directive before any existing #includes. For this sort of task I normally use a small bash script with sed to re-write the file. </p>
<p>How do I get sed to replace just the first occurrence of a string in a file rather than replacing the every occurrence?</p>
<p>If I use</p>
<pre><code>sed s/#include/#include "newfile.h"\n#include/
</code></pre>
<p>it replaces all #includes. </p>
<p>Alternative suggestions to achieve the same thing are also welcome.</p>
http://stackoverflow.com/questions/282938/qt-show-result-of-color-selection/286433#2864331Answer by David Dibben for QT: show result of Color selection?David Dibben2008-11-13T07:26:43Z2008-11-13T07:26:43Z<p>We use the Qt Color Picker from the <a href="http://trolltech.com/products/appdev/add-on-products/catalog/4/Widgets/qtcolorpicker/" rel="nofollow">Qt Solutions</a></p>
<p>The button shows a color square and the name of the color</p>
<p><img src="http://trolltech.com/products/appdev/add-on-products/catalog/4/Widgets/colorpicker1.png" alt="image" /></p>
http://stackoverflow.com/questions/280033/c-header-files-code-separation/280054#2800543Answer by David Dibben for C++ Header Files, Code SeparationDavid Dibben2008-11-11T05:01:00Z2008-11-11T05:01:00Z<p>Deciding how to separate your code into different classes/functions is one of main tasks of programing. There are many different guidelines on how to do this and I would recommend reading some tutorials on C++ and Object Oriented Design to get you started.</p>
<p>Some basic guidelines will be</p>
<ul>
<li>Put things together which are used
together </li>
<li>Create classes for domain objects
(eg files, collections etc)</li>
</ul>
<p>Header files allow you to declare a class or function and then use it in several different source files. For example, if you declare a class in a header file</p>
<pre><code>// A.h
class A
{
public:
int fn();
};
</code></pre>
<p>You can then use this class in several source files:</p>
<pre><code>// A.cpp
#include "A.h"
int A::fn() {//implementation of fn}
//B.cpp
#include "A.h"
void OtherFunction() {
A a;
a.fn();
}
</code></pre>
<p>So header files enable you to separate the declaration from the implementation. If you were to put everything (declaration and implementation) in a source file (eg A.cpp) then try to include that in a second file, eg</p>
<pre><code>// B.cpp
#include "A.cpp" //DON'T do this!
</code></pre>
<p>Then you could compile B.cpp but when you try to link your program the linker will complain that you have multiply defined objects - this is because you have multiple copies of the implementation of A.</p>
http://stackoverflow.com/questions/277453/translating-qt-applications/277788#2777884Answer by David Dibben for Translating Qt applicationsDavid Dibben2008-11-10T12:50:29Z2008-11-10T12:50:29Z<p>I think you have to package it up yourself. However, while browsing qt-apps.org the other day I did come across <a href="http://www.qt-apps.org/content/show.php/Qt+Linguist+Download?content=89360" rel="nofollow">Qt Linguist Download</a> which seems to be a packaged version of Linguist designed to address exactly this need. I have not actually used this myself - our translation is done in-house so we have not had this particular issue.</p>
http://stackoverflow.com/questions/274626/what-is-the-slicing-problem-in-c/274634#27463425Answer by David Dibben for What is the slicing problem in C++?David Dibben2008-11-08T11:22:52Z2008-11-08T13:51:23Z<p>"Slicing" is where you assign an object of a derived class to an instance of a base class, thereby losing part of the information - some of it is "sliced" away.</p>
<p>For example, </p>
<pre><code>class A {
int foo;
};
class B : public A
{
int bar;
};
</code></pre>
<p>So an object of type B has two data members, foo and bar</p>
<p>Then if you were to write this:</p>
<pre><code>B b;
A a = b;
</code></pre>
<p>Then the information in b about member bar is lost in a.</p>
http://stackoverflow.com/questions/48402/how-do-i-get-grub-to-boot-windows-from-a-second-hard-drive6How do I get grub to boot Windows from a second hard driveDavid Dibben2008-09-07T12:55:58Z2008-11-04T13:17:29Z
<p>I normally boot into Linux using grub so have linux as the first hard drive in my machine. I have Windows installed onto a second hard drive and am trying to get grub to boot it.</p>
<p>The grub config file contains</p>
<pre><code>title Windows
rootnoverify (hd1,1)
chainloader +1
makeactive
</code></pre>
<p>but it does not work.</p>
http://stackoverflow.com/questions/260875/do-you-know-of-professional-it-certifications-of-the-world-vendor-independent/260920#2609202Answer by David Dibben for Do you know of Professional IT Certifications of the World? (Vendor Independent)David Dibben2008-11-04T04:51:25Z2008-11-04T04:51:25Z<p>How about the <a href="http://www2.computer.org/portal/web/getcertified" rel="nofollow">IEEE certification</a> program for CSDP (Certified Software Development Professional) and DSDA (Certified Software Development Associate)</p>
<p>I don't have any direct experience of these as I have not been completely sold on the idea of certification. To get certification requires some commonly accepted standards, as you mention, but do these exist for Software Development? There is SWEKBOK but I don't think that is commonly accepted yet. It also excludes vendor related skills which is probably where most software developers spend most of their time.</p>
http://stackoverflow.com/questions/246583/whats-wrong-with-jude/256875#2568751Answer by David Dibben for What's wrong with JUDE?David Dibben2008-11-02T13:00:38Z2008-11-02T13:00:38Z<p>We use Jude for simple UML diagramming, We don't do very extensive modeling or use any of the code generation features so we don't really stretch the tool very much. For the simple diagrams we do though we are quite happy with it. </p>
<p>It seems that the community edition of Jude can be used in commercial environments. From the <a href="https://jude.change-vision.com/jude-web/support/licensefaq.html#1" rel="nofollow">JUDE FAQ</a>:</p>
<blockquote>
<p><strong>Can I use JUDE/Community, the free
version of JUDE, for commercial
projects?</strong> </p>
<p>You can use the diagrams or
skeleton codes created by
JUDE/Community as long as you accept
END-USER LICENSE AGREEMENT. However,
it is recommended to use non-free
version, JUDE/Professional which
includes customer support.
(JUDE/Community has a restriction of
the printing function, and JUDE logo
will be printed on the printings.)</p>
</blockquote>
http://stackoverflow.com/questions/256723/svn-retrieving-useful-information/256838#2568382Answer by David Dibben for SVN - Retrieving Useful Information David Dibben2008-11-02T12:20:20Z2008-11-02T12:20:20Z<p>Another tool worth looking at is <a href="http://www.viewvc.org/" rel="nofollow">ViewVC</a>. The latest version has the option to maintain a commit database. This allows you to search across all commit messages and to see a list of changes to either a file or a files in a directory filtered by user, time or regular expression. It also supports RSS feeds which would enable some form of notification to individual files.</p>
<p>For 3, 4 and 5 on your list StatSVN which is mentioned in the other answers should be able to do this. For a commercial solution there is <a href="http://www.atlassian.com/software/fisheye/" rel="nofollow">FishEye</a> from Atlassian. </p>
<p>On our repository we use a combination of ViewVC and StatSVN, the former used for repository browsing and searching commit messages with the latter for looking at statistics.</p>
http://stackoverflow.com/questions/253720/weird-include-problem/253786#2537862Answer by David Dibben for Weird #include problemDavid Dibben2008-10-31T14:49:10Z2008-10-31T14:49:10Z<p>Without the source it is hard to be sure exactly what is happening. From the first part of your question it seems like this particular code compiles correctly in the project where it was first used, but when you include it in your second project it no longer compiles. If this is the case you want to look at what other headers are included before this one. Sometimes, if your function or variable names are the same as something defined in another header, especially windows.h, then you can get errors from code which previously compiled without problem.</p>
<p>If this code has <em>never</em> compiled correctly, then the other answers suggesting you check the opening/closing "(" are probably the place to start.</p>
http://stackoverflow.com/questions/250757/blocking-a-qt-application-during-downloading-a-short-file/252821#2528212Answer by David Dibben for Blocking a Qt application during downloading a short fileDavid Dibben2008-10-31T07:44:03Z2008-10-31T07:44:03Z<p>Instead of using a thread you can just go into a loop which calls processEvents</p>
<p>while (notFinished) {
qApp->processEvents(QEventLoop::WaitForMore | QEventLoop::ExcludeUserInput);
}</p>
<p>Where notFinished is a flag which can be set from the onRequestFinished slot.</p>
<p>The ExcludeUserInput will ensure that GUI related events are ignored while waiting. </p>
http://stackoverflow.com/questions/249087/how-do-i-remove-diacritics-accents-from-a-string-in-net/249112#2491121Answer by David Dibben for How do I remove diacritics (accents) from a string in .NET?David Dibben2008-10-30T02:20:50Z2008-10-30T02:20:50Z<p>This question seems similar to <a href="http://stackoverflow.com/questions/144761/how-to-remove-accents-and-tilde-in-a-c-stdstring">how-to-remove-accents-and-tilde-in-a-c-stdstring</a></p>
http://stackoverflow.com/questions/218743/jira-issue-resolver/246713#2467133Answer by David Dibben for JIRA issue resolverDavid Dibben2008-10-29T13:05:35Z2008-10-29T13:05:35Z<p>The <a href="http://confluence.atlassian.com/display/JIRAEXT/JIRA+Enhancer+Plugin" rel="nofollow">JIRA Enhancer Plugin</a> adds a "last resolved user" custom field. If you add this to your issues and to the issue screen you can see who the last user to resolve the issue was.</p>
<p>I suspect it will only be searchable for issues resolved after you add the plugin.</p>
<p>We had exactly the same problem so introduced the rule that the tester closing an issue re-assigned the issue back to whomever had resolved it. This was very much a workaround which now that I have installed the plugin we hopefully won7t need.</p>
http://stackoverflow.com/questions/193754/suggestions-for-requirements-development-tools-that-support-cmmi-objectives/193839#1938390Answer by David Dibben for Suggestions for requirements development tools that support CMMI objectivesDavid Dibben2008-10-11T08:13:02Z2008-10-11T12:34:11Z<p>How about starting of with a Wiki? We use <a href="http://twiki.org/" rel="nofollow">TWiki</a> but there are many others available. The wiki we uses </p>
<ul>
<li>sends an email when any pages change</li>
<li>stores the history of changes to each page</li>
<li>by using the auto-linking of wikis you can create a hierarchy of requirements</li>
</ul>
<p>This seems to cover most of your items. Wikis like TWiki have plugins which may also help you.</p>
<p>If you only have 3-7 developers on a project using one of the big commercial tools may be far too complex for what you need.</p>
http://stackoverflow.com/questions/193398/multiplication-of-very-long-integers/193402#1934020Answer by David Dibben for Multiplication of very long integers.David Dibben2008-10-10T23:54:44Z2008-10-10T23:54:44Z<p>Have a look at <a href="http://gmplib.org/" rel="nofollow">GMP</a></p>
http://stackoverflow.com/questions/191533/svn-and-binaries/191554#19155433Answer by David Dibben for SVN and binariesDavid Dibben2008-10-10T14:23:19Z2008-10-10T14:36:50Z<p>The answers to your other question suggest you don't commit any <strong>generated</strong> files to subversion. DLLs in the bin folder are often built as part of the application, therefore, they should be regenerated rather than stored in subversion.</p>
<p>If the DLLs are 3rd party DLLs for which you don't have the source code then I would store them in subversion. You should put everything in subversion that is needed to recreate the application. That means your source code and 3rd party libraries or programs.</p>
http://stackoverflow.com/questions/79829/why-pay-for-jira-when-i-can-use-bugzilla-for-free/79984#79984Comment by David Dibben on Why pay for JIRA when I can use Bugzilla for free?David Dibben2008-10-29T13:09:38Z2008-10-29T13:09:38ZNo, just the subversion plugin for JIRA. To have working links from JIRA to the files in subversion you need a repository browser. We use ViewVC but you can also use Fisheye for this.http://stackoverflow.com/questions/191614/how-to-detect-code-duplication-during-development/193665#193665Comment by David Dibben on How to detect code duplication during development ?David Dibben2008-10-11T06:14:23Z2008-10-11T06:14:23ZThanks for this link. I will definitely look at it. What is even better is that there is a Japanese version (all other developers on the project apart from me are Japanese)http://stackoverflow.com/questions/191757/c-concatenate-string-and-int/191775#191775Comment by David Dibben on C++ concatenate string and intDavid Dibben2008-10-10T15:11:27Z2008-10-10T15:11:27Zitoa is non standard: <a href="http://stackoverflow.com/questions/190229/where-is-the-itoa-function-in-linux" rel="nofollow" title="where is the itoa function in linux">stackoverflow.com/questions/190229/…</a>http://stackoverflow.com/questions/191614/how-to-detect-code-duplication-during-development/191664#191664Comment by David Dibben on How to detect code duplication during development ?David Dibben2008-10-10T14:49:40Z2008-10-10T14:49:40ZI thought that PMD was just for Java, but I now see that CPD (which is part of PMD) can be used for C++ as well.http://stackoverflow.com/questions/190876/on-qt-widgets-like-doublespinbox-or-combobox-how-do-i-have-custom-right-click-me/190895#190895Comment by David Dibben on On QT widgets like DoubleSpinBox or ComboBox, how do i have custom right click menuDavid Dibben2008-10-10T13:25:21Z2008-10-10T13:25:21ZThe context menu for the editable combo box and the spinbox comes from the QLineEdit class and that is not created from the widget's actions.http://stackoverflow.com/questions/191020/qdockwidget-initial-width/191078#191078Comment by David Dibben on QDockWidget initial widthDavid Dibben2008-10-10T12:49:49Z2008-10-10T12:49:49ZIf you are using a QMainWindow to hold the docked windows it is much easier to use saveState and restoreState wich saves the state of all dock widgets and toolbarshttp://stackoverflow.com/questions/185844/initializing-private-static-members/185850#185850Comment by David Dibben on Initializing private static membersDavid Dibben2008-10-09T03:38:49Z2008-10-09T03:38:49ZThis will initialize it each time an object is created, rather than just once which is probably what is wanted for a static variable.http://stackoverflow.com/questions/177677/how-to-convert-a-number-to-a-bytearray-in-bit-endian-order/177831#177831Comment by David Dibben on How to convert a number to a bytearray in bit endian orderDavid Dibben2008-10-07T12:48:47Z2008-10-07T12:48:47ZqCompress/qUncompress is just a wrapper around zlib.http://stackoverflow.com/questions/173821/how-to-i-get-the-function-name-while-in-a-function-for-debug-strings/173828#173828Comment by David Dibben on How to I get the function name while in a function for debug strings?David Dibben2008-10-06T13:01:24Z2008-10-06T13:01:24ZIt was supported from VC7. Version 6 did not support "__FUNCTION__"http://stackoverflow.com/questions/165386/how-do-i-improve-compiling-speed-in-visual-studio-c-2003-project-that-is-using/165391#165391Comment by David Dibben on How do I improve compiling speed in Visual Studio C++ 2003 project that is using C++ Boost LibrariesDavid Dibben2008-10-03T09:27:17Z2008-10-03T09:27:17ZThat depends which headers you add. If you add headers from your code then sure, it will make it worse since it forces a rebuild on each header change. But library headers (such as boost) don't normally change. Using pre-compiled for the Qt library headers in our app reduced compile time by 30-40%http://stackoverflow.com/questions/165358/what-project-task-manager-bug-tracker-do-you-think-is-best/165373#165373Comment by David Dibben on What project task manager / bug tracker do you think is best?David Dibben2008-10-03T02:00:44Z2008-10-03T02:00:44ZWe used to use Trac and I agree with the comments here. The Timeline feature showing SVN commits and new/fixed bugs was particularly nice. We changed to Jira for better support for tracking multiple projects in one tool.http://stackoverflow.com/questions/7981/decoding-printf-statements-in-c-printf-primer/109077#109077Comment by David Dibben on Decoding printf statements in C (Printf Primer)David Dibben2008-10-02T13:17:00Z2008-10-02T13:17:00ZOr you could use QString::sprintf which is part of the QString class and "supports most of the conversion specifiers provided by printf() in the standard C++ library."http://stackoverflow.com/questions/148451/how-to-use-sed-to-replace-only-the-first-occurrence-in-a-file/148476#148476Comment by David Dibben on How to use sed to replace only the first occurrence in a file?David Dibben2008-09-29T12:32:17Z2008-09-29T12:32:17ZUnfortunately, this does not work. It replaces the just first occurrence on each line of the file and not the first occurrence in the file.http://stackoverflow.com/questions/143808/how-to-improve-link-performance-for-a-large-c-application-in-vs2005/145386#145386Comment by David Dibben on How to improve link performance for a large C++ application in VS2005David Dibben2008-09-28T13:54:01Z2008-09-28T13:54:01ZThe /Z7 flag was set on several libraries. Changing to /Zi made a big difference. The link time is now 2 minutes. I would still like to get it faster so maybe will look at using DLLs. But this helped a lot. Thanks.http://stackoverflow.com/questions/143808/how-to-improve-link-performance-for-a-large-c-application-in-vs2005/145188#145188Comment by David Dibben on How to improve link performance for a large C++ application in VS2005David Dibben2008-09-28T12:43:35Z2008-09-28T12:43:35ZIt is a Intel Core2 Duo machine with 3GB RAM.