User gbjbaanb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T04:09:51Z http://stackoverflow.com/feeds/user/13744 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1861506/prevent-modal-dialog-on-win32-process-crash/1861614#1861614 1 Answer by gbjbaanb for Prevent Modal Dialog on win32 process crash gbjbaanb 2009-12-07T17:40:22Z 2009-12-07T17:51:07Z <p>You need to add an 'unhandled exception handler' that catches all exceptions: put a call to SetUnhandledExceptionFilter(handler) in your initialisation code and it'll call the handler routine. Really simple.</p> <p>I use sample code from an old article, include a file called <a href="http://www.codeproject.com/KB/debug/postmortemdebug%5Fstandalone1.aspx?msg=2583295" rel="nofollow">minidumper</a>, call the exposed function, and you're done.</p> <p><a href="http://code.google.com/p/crashrpt/" rel="nofollow">Here's some more example code</a>, this pops a different dialog, but you can change that to simply write a message to a log file or similar.</p> <p>If you're writing a pure .NET app, then you'll be more interested in <a href="http://www.codeguru.com/csharp/csharp/cs%5Fsyntax/errorhandling/article.php/c5905/" rel="nofollow">this article</a>.</p> http://stackoverflow.com/questions/1805987/suppose-i-have-2-vectors-what-algorithms-can-i-use-to-compare-them/1806010#1806010 -1 Answer by gbjbaanb for Suppose I have 2 vectors. What algorithms can I use to compare them? gbjbaanb 2009-11-26T22:48:09Z 2009-11-26T22:48:09Z <p>You could use the <a href="http://www.sgi.com/tech/stl/set%5Fintersection.html" rel="nofollow">set_intersection</a> algorithm. The 2 vectors must be sorted first (use sort call), then pass in 4 iterators and you'll get a collection back with the common elements inserted into it. There are a few others that operate similarly. </p> http://stackoverflow.com/questions/1778815/how-should-tertiary-institutions-teach-programming/1778851#1778851 5 Answer by gbjbaanb for How should tertiary institutions teach programming ? gbjbaanb 2009-11-22T14:32:24Z 2009-11-22T14:32:24Z <p>why would you consider unit testing a skill, or anything java-web-server related? Interpreted v compiled, that's a fair skill that should be known by all graduates.</p> <p>My reasoning here is simply that colleges should teach them the fundamental basics of how computers and programming them work. They should have no business teaching any particular language, or even particular ideas of best practice. There's more to programming than jsp servlets, and more to testing that unit tests. They should know what these things are, but to the same level as their COBOL knowledge,say.</p> <p>Colleges need to teach people what's going on inside those computers so that you can hire a graduate safe in the knowledge that you will be able to get them productive in whatever it is you're using in 6 months. You should never expect them to come out of college knowing your particular choice of language and systems, because in 4 years time, whatever it was the college was teaching that made their grads relevant to your business will be obsolete. You'd be getting .NET developers only today, and in 4 years time, it might well be Go developers only.</p> <p>So be aware that grads need mentoring to bring them up to the level you require. If you need people to be productive on day 1, you need to hire developers already experienced in your chosen systems. They won't be as cheap, but the old adage "you pays your money and takes your choice" has never been so true.</p> http://stackoverflow.com/questions/1681900/openmp-causes-for-heap-corruption-anyone/1682099#1682099 2 Answer by gbjbaanb for OpenMP: Causes for heap corruption, anyone? gbjbaanb 2009-11-05T17:07:58Z 2009-11-05T17:07:58Z <p>default(shared) means all variables are shared between threads, which is not what you want. Change that to default(none).</p> <p>Private(X) will make a copy of X for each thread, however, none of them will be initialised so any construction will not necessarily be performed.</p> <p>I think you'd be better with your initial approach, put a breakpoint in the Dealloc call, and see what the memory pointer is and what it contains. You can see the <a href="http://en.wikipedia.org/wiki/Magic%5Fnumber%5F%28programming%29" rel="nofollow">guard bytes</a> to tell if the memory has been overwritten at the end of a single call, or after a thread. </p> <p>Incidentally, I am assuming this works if you run it once, without the omp loop?</p> http://stackoverflow.com/questions/1661095/building-a-c-project-on-linux-platform-or-more-specifically-building-clips-on/1661146#1661146 3 Answer by gbjbaanb for building a C++ project on Linux platform (or more specifically: building CLIPS on Ubuntu 9.10) gbjbaanb 2009-11-02T12:54:03Z 2009-11-02T12:54:03Z <p>Typically you use the make program to build the app from sources, nearly all C/C++ apps provide a makefile that describes what, and how, to build.</p> <p>In general, you'd type</p> <pre><code>./configure make make install </code></pre> <p>These will:</p> <ul> <li>run the configure shell script that sets up your build environment, setting things like which CPU and OS you're using.</li> <li>use the standard-named makefile that comes with the project to build the source code.</li> <li>use the special 'install' target in the makefile to copy the necessary files to their final resting places.</li> </ul> <p>Edit: <a href="http://tldp.org/LDP/LG/current/smith.html" rel="nofollow">Here's a brief description</a> of the process from the Linux Documentation Project.</p> <p>BTW, with regard to dependant projects, I would try to install them directly from your package repository (ie yum or apt-get) because you often do not need to build them, just to use them. You may need to get the development sources (eg the header files and libs) sometimes, but you can get these from the repos too - they will be called something like xxx-devel, eg. "kernel-devel", so yum install kernel-devel will get you what you need to develop kernel modules without having to build the kernel itself.</p> http://stackoverflow.com/questions/139621/merit-of-screencasts-vs-text-based-documentation/139659#139659 26 Answer by gbjbaanb for Merit of screencasts vs text-based documentation? gbjbaanb 2008-09-26T13:57:59Z 2009-10-20T08:01:12Z <p>Text is way more useful. I can skip through a text document to see if it's worthwhile reading it properly. With video.. I have to wait and wait... and wait and then find they're telling me things I already know, or don't really want to know.</p> <p>I would prefer all sites that put videos on to also include a transcript. That'd be best.</p> http://stackoverflow.com/questions/1583374/can-a-web-app-access-and-modify-the-registry-of-windows/1583420#1583420 3 Answer by gbjbaanb for Can a web app access and modify the registry of Windows? gbjbaanb 2009-10-17T22:48:43Z 2009-10-17T22:48:43Z <p>Writing the apps as Web apps instead (and Rails is cool to use) is a good option - your users don't need to install anything, upgrades are easy to do, and dependancies are no longer a problem. </p> <p>However, you now need to start re-architecting your apps so they do not need to write anything to the client, except a cookie (that's stored in the browser). If you can do this, then migrating to a webapp will be great.</p> <p>If you cannot, my advice is to learn the same language that your company's app is written in. Once you do that, the company app will have taken care of the dependencies already and you will just need to offer your utilities alongside the app, perhaps even in the installer, or just to copy the files into a subdirectory. If you're thinking of learning Ruby, then learning the corporate language will be just as difficult (only you'll be able to reuse a lot of code used in the main app)</p> http://stackoverflow.com/questions/1384409/visual-studio-2008-c-language-support/1384420#1384420 7 Answer by gbjbaanb for Visual Studio 2008 C++ language support? gbjbaanb 2009-09-05T22:36:13Z 2009-10-14T18:05:42Z <p>It sounds like you haven't got it installed. </p> <p>Go to Add/Remove Programs (or Programs and Features, or whatever <a href="http://en.wikipedia.org/wiki/Windows%5F7" rel="nofollow">Windows 7</a> calls it) and modify your installation. You'll get a list of checkboxes so you can install C#, VB.NET, Crystal Reports etc... and <a href="http://en.wikipedia.org/wiki/Visual%5FC%2B%2B" rel="nofollow">Visual C++</a>. Check that checkbox and wait the hour or so for the installer to do its stuff.</p> http://stackoverflow.com/questions/1497625/msbuild-and-subversion/1543750#1543750 0 Answer by gbjbaanb for msbuild and subversion gbjbaanb 2009-10-09T13:28:46Z 2009-10-09T13:28:46Z <p>I would say you need SvnUpdate to ensure you always get the latest changes of your code before building.</p> http://stackoverflow.com/questions/1516140/upgrading-subversion-server-from-1-5-5-to-1-6-5-dump-upgrade-reload-exact-step/1543719#1543719 1 Answer by gbjbaanb for Upgrading Subversion server from 1.5.5 to 1.6.5 - dump/upgrade/reload, exact steps? gbjbaanb 2009-10-09T13:23:55Z 2009-10-09T13:23:55Z <p>No, you do not need to dump/load to upgrade, 1.6 was specifically designed to be an easy upgrade using just <code>svnadmin upgrade</code>. I've done it, it worked, I am happy.</p> <p>The <a href="http://subversion.tigris.org/svn%5F1.6%5Freleasenotes.html" rel="nofollow">release notes</a> explicitly say there is no need to dump/load the repo.</p> <p>I would make a backup anyway (just in case), and then do the recommended upgrade. I'd then pack the repo files (<code>svadmin pack</code>) to make future backups quicker and SVN perform faster.</p> http://stackoverflow.com/questions/1530395/what-is-everyones-opinion-on-the-difference-in-ease-of-merging-between-subversio/1543697#1543697 2 Answer by gbjbaanb for What is everyone's opinion on the difference in ease of merging between Subversion 1.5.6 and 1.6.3? gbjbaanb 2009-10-09T13:19:05Z 2009-10-09T13:19:05Z <p>Have you read the <a href="http://subversion.tigris.org/svn%5F1.6%5Freleasenotes.html" rel="nofollow">1.6 release notes</a>?</p> <p>The upgrade is truly painless, mainly because of this note:</p> <blockquote> <p>There is no need to dump and reload your repositories. Subversion 1.6 can read repositories created by earlier versions. To upgrade an existing installation, just install the newest libraries and binaries on top of the older ones.</p> </blockquote> <p>Now, once you've overwritten the binaries, you can upgrade the repo format to 1.6 to take advantage of the new features (or you'll still just have the old 1.5 features). To do this run <code>svnadmin upgrade</code> on it. It takes a second or two (on my 12Gb repo) and then you're good to go. You can upgrade the client easily or stick with older ones - be aware that new clients will upgrade the WC automatically and silently, so you cannot mix n match client versions with the same WC (ie if you upgrade Tortoise, you have to upgrade Ankh as well)</p> <p>1.6 has 2 features for the server - tree conflict detection, and FSFS packing. I recommend the packing (run svnadmin pack to get it to combine 1000 revision files into 1 file, this does take a little time, but you can continue working while its packing).</p> <p>The upgrade process was really easy, 10/10 to the svn guys for a top quality upgrade path.</p> http://stackoverflow.com/questions/1533789/having-problems-automatically-syncing-my-assembly-version-to-my-subversion-revisi/1543638#1543638 0 Answer by gbjbaanb for Having problems automatically syncing my assembly version to my SubVersion revision gbjbaanb 2009-10-09T13:07:27Z 2009-10-09T13:07:27Z <p>When you checkin a file, the revision number is incremented as you know. The problem is, you do not know what that revision number will be when you checkin - you only find out <em>after</em> checkin.</p> <p>So, if you take the latest revision number, build your project, then checkin - the number used will always be out of date. What you really want is to be able to checkin, then get the revnum of the commit you've just performed, and <em>then</em> build your project with the correct version number.</p> <p>Obviously this is not possible.</p> <p>There is a way round it - use a CI system that builds your project immediately after checkin (through a post-commit hook). These will checkout the latest version you've just added, update your version.cs file, then build. The disadvantage is that your version.cs file will never contain the correct version number (unless the CI system then checks just it in again) </p> http://stackoverflow.com/questions/1539229/how-to-make-sure-bug-fixes-in-a-version-branch-in-subversion-are-merged-into-the/1543598#1543598 2 Answer by gbjbaanb for How to make sure bug fixes in a version branch in Subversion are merged into the trunk gbjbaanb 2009-10-09T12:58:57Z 2009-10-09T12:58:57Z <p>There's nothing in SVN to tell you what code you should or should not checkin, branch, merge or delete. That's not its job. It does its job perfectly well - which is providing you with a versioned tool to store your code in.</p> <p>So, you don't need a tool to manage your code better, you need an external system to manage your developers better :)</p> <p>One way is QA, test and a bug tracker - as code changes are made, the fact that something was done to the code is recorded and tracked through the various phases. You typically do not want anyone making changes to code without some reason (other than 'I felt it needed refactoring') so a tracking tool is a good idea anyway. As bugs are fixed in one release, this tool can be used to ensure that the bug is fixed in other ones too (when appropriate - sometimes you don't want a particular change made to a release)</p> <p>SVN can integrate with these tools, for example, my repo updates my Mantis bugtracker when some magic words are added to a checkin (if you type "fixed mantis #1234" in the checkin comment, mantis bug 1234 will be updated with the changed files and its status changed to 'waiting test')</p> <p>Alternatively tools such as reviewboard can integrate too - as you make a change, the revision can be posted there for others to sign off, sign off process can include ensuring the bug is merged, or a new bug report is created for the other releases you require it fixing in too.</p> <p>So - the problem is not with SVN here, its with your development processes.</p> http://stackoverflow.com/questions/1456435/creating-a-new-thread-c-windows/1456467#1456467 1 Answer by gbjbaanb for Creating a new thread (C, Windows) gbjbaanb 2009-09-21T19:47:51Z 2009-09-21T19:47:51Z <p>What you're finding is that the main thread completes before you notice CallbackFunc is called. When you have the Wait call in, the main thread is blocked until the new thread finishes and so you see the thread func being executed.</p> <p>Threads are not as cheap as you think, if you replace the SomeOtherFunction with something that takes a long enough time to run, you'll see your thread function being called even without the Wait call.</p> http://stackoverflow.com/questions/1453878/distributed-shared-memory-library-for-c/1453957#1453957 0 Answer by gbjbaanb for Distributed shared memory library for C++ ? gbjbaanb 2009-09-21T10:54:12Z 2009-09-21T10:54:12Z <p>Try the <a href="http://www.cs.wustl.edu/~schmidt/ACE.html" rel="nofollow">ACE library</a>, it has a lot of good stuff you'll like. They have a <a href="http://www.dre.vanderbilt.edu/Doxygen/5.7.2/html/ace/a00493.html" rel="nofollow">Shared_memory</a> class in there but I'm not sure its a DSM - if not, they have plenty of other network/distributed stuff you might find interesting.</p> http://stackoverflow.com/questions/1453833/how-to-run-shellexecute-on-shell-object-clsid/1453900#1453900 0 Answer by gbjbaanb for How to run ShellExecute on shell object clsid ? gbjbaanb 2009-09-21T10:43:02Z 2009-09-21T10:43:02Z <p>Apparently you need to fill in a SHELLEXECUTEINFO structure, with the fMask field set to SEE_MASK_CLASSKEY, the lpVerb field set to "open" and the lpClass set to your GUID.</p> <p>However, I never got the damn thing to work. Instead I used a file of the correct type to use in a CreateProcess call.</p> <pre><code> HINSTANCE h = FindExecutable("blank.htm", NULL, buffer); STARTUPINFO si; PROCESS_INFORMATION pi; ZeroMemory( &amp;si, sizeof(si) ); si.cb = sizeof(si); ZeroMemory( &amp;pi, sizeof(pi) ); char url[MAX_PATH]; sprintf(url, "\"%s\" %s", buffer, (LPCTSTR)m_url); CreateProcess(NULL, url, NULL, NULL, FALSE, 0 , NULL, NULL, &amp;si, &amp;pi); </code></pre> <p>Which opens the app that is defined as the default viewer for files of type .htm.</p> http://stackoverflow.com/questions/1193912/what-are-reasons-to-choose-a-scripting-language-over-c/1193962#1193962 3 Answer by gbjbaanb for What are reasons to choose a scripting language over C#? gbjbaanb 2009-07-28T13:05:16Z 2009-09-20T19:54:03Z <p>Speed of development generally, a script language removes any need to compile anything - just type away and execute it. Generally, you can type away as it runs if you edit it whilst you've stopped it in a debugger - no recompile, no need for 'edit and continue' support, no nothing. </p> <p>Many script languages also have less restrictive scope for things like static types, you can just code without worrying whether your string needs to be converted to an integer or vice versa, you just use it as-is and it works. It's debatable whether this is a good or a bad thing, but I reckon it's one of those things where it's good when used for some tasks and bad for others.</p> <p>Add-ons and libraries are also generally much easier to use - you don't need to register or install anything, or worry about assemblies or the GAC or signed stuff, you just include the source files and you're done.</p> <p>So script is the easiest thing to make work in general, that's why people use it.</p> http://stackoverflow.com/questions/1449060/what-is-the-usage-of-pdbs-program-debug-database/1449084#1449084 4 Answer by gbjbaanb for What is the usage of pdb's (Program Debug DataBase) ? gbjbaanb 2009-09-19T17:47:25Z 2009-09-19T17:47:25Z <p>PDBs contain debugging symbols, so you can ship a compiled binary to your customer without exposing your source code algorithms and other private details to them.</p> <p>If your app goes wrong on a customer site, you can get a crash dump from them (using DrWatson), bring it back to your dev workstation and debug the crash, the debugger will use the symbols file in conjunction with the crash to show you the source code, data structures etc. In many cases, all you have to do is open the crash dump and the debugger will take you directly to the source code of the exception, and show you variables and threads too.</p> <p>That's the primary use of them, they're invaluable when a customer reports a crash. The things you need to know about using them though - they are only valid for the build that created them, so if you recompile, your symbols file is next to worthless. </p> <p>John Robbins has <a href="http://msdn.microsoft.com/en-us/magazine/cc301459.aspx" rel="nofollow">an excellent article</a> why you would use them.</p> http://stackoverflow.com/questions/1444669/why-is-open-source-software-banned-in-some-shops/1444979#1444979 4 Answer by gbjbaanb for Why is open source software banned in some shops? gbjbaanb 2009-09-18T14:38:59Z 2009-09-18T14:38:59Z <p>Its an interesting question, and one I can't think of an easy answer to. </p> <p>Firstly, lets assume the ban is on OSS tools, not libraries. We all know of the perils of using the GPL if you're not prepared to pay the price laid down in the licence. That's fine, a company can decide to be really cautious if it wants.</p> <p>So, just considering OSS tools. I had a similar issue at my place of work, the problem is not a total ban but a total mistrust from my boss. I suggested we migrate from VSS (which was significantly letting us down, corrupting data) to Subversion. Immediately my boss decided we had to trial commerical alternatives that he would try to get budget for. He just didn't like the concept of the free software solution, and admitted as such.</p> <p>Now, I can understand trying to get the "best of breed" solution for our needs, and using something as important as source control means we really need to get it right, but the problem wasn't one of evaluating several suppliers and choosing one, it was 'pick one of the commercial ones'. </p> <p>I think he was too cautious about it mainly because he doesn't understand it. Free software to him suggests kids in the back bedroom tinkering with software and producing ill-tested, poorly-designed, unsupported toys. (hmm, reminds me of the stuff we sell :) ). So the issue is one of ignorance, and a little mistrust when I came to him to say OSS is good, he dismissed that argument because it came from a techy who didn't explain the issue in good business-speak, ie, I came from a position where I was naturally advocating my preferences, not coming up with an impartial suggestion (that's not the case, but this 'favouritism' position is far too common in the software industry)</p> <p>In the end, we evaluted a SCM, then found out the total cost (!) and went with subverison after all, and we're all happy with it, and I got an honourable mention in my review due to it.</p> <p><hr /></p> <p>So, the problem is one of education and ignorance. Just because you and I understand the good, bad and ugly of OSS, doesn't mean the business leaders do. They read the gartner reports and business papers (if they read anything) and get their knowledge of these things from there. Those places are ultimately driven by the software industry which is dependant on selling their own tools and generally undermining OSS. </p> <p>I have seen articles that paint OSS in a good light, and the message is getting out, so maybe in a few years, OSS will be the first choice for a company (in fact, my other boss said that he thinks all software will be OSS in 10 years time, paid for by support contracts). Until then, its up to us to spread the word and improve the quality of the good stuff.</p> http://stackoverflow.com/questions/1432777/using-shared-libraries-vs-single-executable/1432833#1432833 1 Answer by gbjbaanb for using shared libraries vs single executable gbjbaanb 2009-09-16T13:04:03Z 2009-09-16T13:04:03Z <p>On Linux (and Windows) you can create a shared library using C++ and not have to load it using C function exports.</p> <p>ie. You build classA.cpp into classA.so, and you build classB.cpp into classB(.exe) which links to classA.so. All you're really doing is splitting your application into multiple binary files. This does have the advantage that they are faster to compile, easier to manage and you can write apps that load just that library code for testing.</p> <p>Everything is still c++, everything links, but your .so is separate from your statically linked application. </p> <p>Now, if you wanted to load a different object at runtime (ie you don't know which one to load until runtime) then you would need to create a shared object with c-exports, but you will also be loading those functions manually, you would not be able to use the linker to do this for you.</p> http://stackoverflow.com/questions/1432724/opengl-absolute-coordinates/1432770#1432770 0 Answer by gbjbaanb for OpenGL absolute coordinates gbjbaanb 2009-09-16T12:51:52Z 2009-09-16T12:51:52Z <p>When I learned OpenGL, I used the following 2 resources for everything.</p> <p>It appears the <a href="http://www.gametutorials.com/gtstore/c-1-test-cat.aspx" rel="nofollow">gametutorials</a> has gone paid-for, selling a CD, but they were well written so it might be worth buying it.</p> <p>However, <a href="http://www.gamedev.net/reference/list.asp?categoryid=31" rel="nofollow">NeHe</a> are still free tutorials on the web, including <a href="http://nehe.gamedev.net/data/lessons/lesson.asp?lesson=30" rel="nofollow">this one for collision detection</a>.</p> <p><a href="http://www.gamedev.net/reference/list.asp?categoryid=31" rel="nofollow">http://www.gamedev.net/reference/list.asp?categoryid=31</a></p> http://stackoverflow.com/questions/1422006/what-are-all-the-microsoft-paradigms/1422063#1422063 1 Answer by gbjbaanb for What are all the Microsoft paradigms? gbjbaanb 2009-09-14T14:52:19Z 2009-09-14T14:52:19Z <p>First everything was Win32, the old C-based API that Windows grew up with. Its not that bad, though it has attracted some right old cruft over the years (eg the Shell API that comes with explorer, yuk).</p> <p>Then the Office team came up with OLE, and this was later expanded and tidied up to become COM. However, backward compatibility required the old OLE stuff to be in there, which crufted things up somewhat. I think this was roughly 1996.</p> <p>Then marketing liked ActiveWhatnot, and COM was rebranded ActiveX (and still, sometimes, is).</p> <p>Then MS discovered Java, got told off by Sun, removed Java from everything, but 'invented' (or should that be 'innovated') this API that was 'quite a lot like' Java, called .NET, and for a time <em>everything</em> was .NET, the marketing team was even told to stop it as they were getting carried away rebranding.net everything.net to .net.net. This was roughly 2001.</p> <p>Today, that's the state of play, you have Win32, COM and .NET, and they are all current and still work because MS likes to keep things working (thank goodness). The Live! (don't you mean Bing!? You wrote your post literally minutes ago, they've probably rebranded it again now) is just a marketing term for some products, not a development API.</p> <p>so, every 5 years or so, we get a new API from MS. I can't wait to see what replaces .NET, perhaps it'll be a Erlang-based development approach, or possibly Functional. Probably it'll be something that leverages parallel programming and/or energy (ie resource) efficiency. Lets hope its something as good as that and not something worse.</p> http://stackoverflow.com/questions/1412306/what-is-the-most-useful-metric-for-a-development-team-to-track/1412326#1412326 0 Answer by gbjbaanb for What is the most useful metric for a development team to track? gbjbaanb 2009-09-11T17:41:34Z 2009-09-11T17:41:34Z <p>Bugs?</p> <p>Ok, code changes. I have some code where the same routines get modified over and over. If we, as a team that is, remembered this section of code, we could see that it is the place where we need to spend some time reviewing the design. As it is, we track bugs which simply refer to the project instead which is a less useful metric of code flaws.</p> http://stackoverflow.com/questions/1410691/why-is-the-startup-of-an-app-on-linux-slower-when-using-shared-libs/1410830#1410830 0 Answer by gbjbaanb for Why is the startup of an App on linux slower when using shared libs? gbjbaanb 2009-09-11T13:21:36Z 2009-09-11T13:21:36Z <p>Interesting.. typically loading time for a shared library is unnoticeable from a fat app that is statically linked. So I can only surmise that the system is either very slow to load a library from flash memory, or the library that is loaded is being checked in some way (eg .NET apps run a checksum for all loaded dlls, reducing startup time considerably in some cases). It could be that the shared libraries are being loaded as-needed, and unloaded afterwards which could indicate a configuration problem. </p> <p>So, sorry I can't help say why, but I think its an issue with your ARM device/OS. Have you tried instrumenting the startup code, or statically linking with 1 of the most commonly-used libraries to see if that makes a large difference. Also put the shared libs in the same directory as the app to reduce the time it takes to search the FS for the lib.</p> http://stackoverflow.com/questions/1410722/do-you-feel-comfortable-merging-code/1410771#1410771 0 Answer by gbjbaanb for Do you feel comfortable merging code? gbjbaanb 2009-09-11T13:10:15Z 2009-09-11T13:10:15Z <p>I use svn, it takes less than a minute to branch code. I used to use Clearcase, it took less than a minute to branch code. I've also used other, lesser, SCMs and they either didn't support branches or were too painful to use. Starteam sounds like the latter.</p> <p>So, if you cannot migrate to a more useful one (actually, I've only heard bad things about Starteam) then you might have to try a different approach: manual branching. This involves checking out your code, copying it to a different directory and then adding it as a new directory. When you need to merge, you'd check out both directories and use WinMerge to perform the merge, checking in the results to the original directory. Awkward and potentially difficult if you continue to use the branch, but it works.</p> <p>the trick with Branching is not to treat it as a completely new product. It is a branch - a relatively short-lived device used to make changes separately and safely to a main product trunk. Anyone who thinks merging is difficult is either refactoring the code files so much (ie they are renaming, copying, creating new, deleting old) that the branch becomes a completely different thing, or they are keeping the branch so long that the accumulated changes bear little resemblance to the original. You can keep a branch for a long time, you just have to merge your changes back regularly. Do this and branching/merging becomes very easy.</p> http://stackoverflow.com/questions/1410714/why-i-couldnt-work-with-the-gcc-compiler-without-n-in-printf/1410727#1410727 13 Answer by gbjbaanb for Why I couldnt work with the gcc compiler without '\n' in printf? gbjbaanb 2009-09-11T13:01:01Z 2009-09-11T13:01:01Z <p>Try the <a href="http://www.cplusplus.com/reference/clibrary/cstdio/fflush/" rel="nofollow">fflush()</a> call. Typically writing to a screen or file is very expensive, so the data is buffered until it needs to be written. A \n usually is enough to do the trick (buffers generally store only 1 line at a time anyway), but if you need to flush the buffer - use that flush call.</p> http://stackoverflow.com/questions/1406554/why-use-flagsbitmasks-rather-than-a-series-of-booleans/1406589#1406589 6 Answer by gbjbaanb for Why use flags+bitmasks rather than a series of booleans? gbjbaanb 2009-09-10T17:21:19Z 2009-09-10T17:21:19Z <p>It was traditionally a way of reducing memory usage. So, yes, its quite obsolete in C# :-)</p> <p>As a programming technique, it may be obsolete in today's systems, and you'd be quite alright to use an array of bools, but... </p> <p>It is fast to compare values stored as a bitmask. Use the AND and OR logic operators and compare the resulting 2 ints. </p> <p>It uses considerably less memory. Putting all 4 of your example values in a bitmask would use half a byte. Using an array of bools, most likely would use a few bytes for the array object plus a long word for each bool. If you have to store a million values, you'll see exactly why a bitmask version is superior.</p> <p>It is easier to manage, you only have to deal with a single integer value, whereas an array of bools would store quite differently in, say a database.</p> <p>And, because of the memory layout, much faster in every aspect than an array. It's nearly as fast as using a single 32-bit integer. We all know that is as fast as you can get for operations on data.</p> http://stackoverflow.com/questions/1363564/determine-control-type 0 Determine control type gbjbaanb 2009-09-01T17:02:27Z 2009-09-09T14:05:04Z <p>I'm trying to make some static controls transparent on a windows dialog, but I'm having difficulty with one windows message.</p> <p>Windows happily sends me a WM_CTLCOLORSTATIC message when drawing static controls, but this message is also sent to readonly and disabled edit controls. So - given just a hwnd to the control, how can I tell what kind of control it is?</p> http://stackoverflow.com/questions/1399532/how-should-i-choose-where-to-store-an-object-in-c/1399568#1399568 1 Answer by gbjbaanb for How should I choose where to store an object in C++? gbjbaanb 2009-09-09T13:02:09Z 2009-09-09T13:02:09Z <p>Do <em>not</em> use the new operator if you can otherwise avoid it, that way lies memory leaks and headaches remembering your object lifetimes.</p> <p>The C++ way is to use stack-based objects, that cleanup after themselves when they leave scope, unless you copy them. This technique (called RAII) is a very powerful one where each object looks after itself, somewhat like how the GC looks after your memory for you in Java, but with the huge advantage of cleaning up as it goes along in a deterministic way (ie you know exactly when it will get cleaned).</p> <p>However, if you prefer your way of doing objects, use a share_ptr which can give you the same semantics. Typically you'd use a shared_ptr only for very expensive objects or ones that are copies a lot. </p> http://stackoverflow.com/questions/1393675/sending-e-mails-through-microsoft-exchange-server/1393716#1393716 0 Answer by gbjbaanb for Sending E-Mails through Microsoft Exchange Server gbjbaanb 2009-09-08T12:25:45Z 2009-09-08T12:25:45Z <p>It is possible to send SMTP email through Exchange - my linux boxes do it all the time. However, you have to set Exchange up to allow SMTP connections.</p> <p>Coding a SMTP emailer is simplicity itself, either connect to the server on the correct port and send the commands to it, or use a library (of which there are loads).</p> <p>To test your SMTP emailing, telnet to the server on port 25 and manually type the mail commands. We used to do this at university to send emails to people from themselves, obviously most SMTP ports are secured to stop you doing this :)</p> http://stackoverflow.com/questions/100162/what-is-your-tool-for-version-control-faq/100637#100637 Comment by gbjbaanb on What is your tool for version control (FAQ) gbjbaanb 2009-12-12T00:21:55Z 2009-12-12T00:21:55Z also &quot;cool&quot; and &quot;Java&quot;. The 90s called and said they were sorry. http://stackoverflow.com/questions/1279391/ideas-on-setting-up-a-version-control-system/1718497#1718497 Comment by gbjbaanb on Ideas on setting up a version control system... gbjbaanb 2009-12-12T00:04:09Z 2009-12-12T00:04:09Z oh please tell me more - it is a terrible product but I now have the task of proving that to management. http://stackoverflow.com/questions/793530/what-is-the-most-annoying-thing-about-the-revision-control-system-scm-you-use/793590#793590 Comment by gbjbaanb on What is the most annoying thing about the revision control system (SCM) you use? gbjbaanb 2009-12-11T23:58:13Z 2009-12-11T23:58:13Z VisualSVN Server is a teaser product for a commercial company, including paid-for support. http://stackoverflow.com/questions/884608/share-common-useful-svn-pre-commit-hooks/887749#887749 Comment by gbjbaanb on Share common / useful SVN pre-commit hooks gbjbaanb 2009-11-26T22:41:12Z 2009-11-26T22:41:12Z I'm not so sure - we're talking 'universal' ignore patterns, so unless you want ignore properties in every directory (and thus difficult to modify if you need to add a new pattern) you need something a little more 'centralised'. I think svn is missing true global properties (eg held on the server, not each client) http://stackoverflow.com/questions/836511/what-are-some-techniques-for-migrating-a-large-mfc-application-to-wpf-net Comment by gbjbaanb on What are some techniques for migrating a large MFC application to WPF/.NET? gbjbaanb 2009-11-18T16:45:46Z 2009-11-18T16:45:46Z the ideal migration from MFC is to go with QT; at least then your current developers won't be clamouring to develop using the next cool GUI technology that'll be out in a few years time :) http://stackoverflow.com/questions/800219/qt-vs-wpf-net/1272237#1272237 Comment by gbjbaanb on Qt vs WPF/.NET gbjbaanb 2009-11-18T16:41:53Z 2009-11-18T16:41:53Z GDI/GDI+/MFC/Winforms/WPF/Silverlight/DirectShow/DirectDraw/Direct3d/XNA and now Direct2d. Qt may have 4 revisions to a single API, but that hardly counts as unstable. http://stackoverflow.com/questions/800219/qt-vs-wpf-net/800307#800307 Comment by gbjbaanb on Qt vs WPF/.NET gbjbaanb 2009-11-18T16:21:40Z 2009-11-18T16:21:40Z so you're effectively saying that QT is the one to go for - the QTCreator app is great and well supported. http://stackoverflow.com/questions/800219/qt-vs-wpf-net/803000#803000 Comment by gbjbaanb on Qt vs WPF/.NET gbjbaanb 2009-11-18T16:19:48Z 2009-11-18T16:19:48Z +1 to the handlhelds, that's THE major growth area for the moment, and should become ever more important in the future. http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/303246#303246 Comment by gbjbaanb on Why didn't unit testing work out for your project? gbjbaanb 2009-11-18T16:08:52Z 2009-11-18T16:08:52Z everyone can afford Hudson, CruiseControl or Maven though.. http://stackoverflow.com/questions/1681900/openmp-causes-for-heap-corruption-anyone/1682042#1682042 Comment by gbjbaanb on OpenMP: Causes for heap corruption, anyone? gbjbaanb 2009-11-05T17:04:42Z 2009-11-05T17:04:42Z true, but that wouldn't make it crash, just delete the first float leaving 1023 leaked. http://stackoverflow.com/questions/1655960/what-are-the-most-surprising-elements-of-the-c-standard/1657107#1657107 Comment by gbjbaanb on What are the most surprising elements of the C++ standard? gbjbaanb 2009-11-01T14:28:43Z 2009-11-01T14:28:43Z its not that surprising really, when you construct a ConcreteGuy (assuming it is derived from AbstractBase) as the base class gets constructed first, it doesn't have a ConcreteGuy class to call until the constructor is complete. http://stackoverflow.com/questions/1621708/recommendation-for-choosing-a-new-web-development-stack/1621961#1621961 Comment by gbjbaanb on recommendation for choosing a new web development stack gbjbaanb 2009-10-25T20:45:47Z 2009-10-25T20:45:47Z you said &quot;PHP could be an option&quot;. The lamp stack can be used with Java - Apache Tomcat for example, so don't write it off too quickly, its currently the most reliable hosting platform around. Talk it over with your other devs, they might like the idea of going with something less bloated and complicated than ASP, .NET or Java. http://stackoverflow.com/questions/1598888/windows-7-openldap-curl-dll-dependency-hell Comment by gbjbaanb on Windows 7 OpenLDAP Curl DLL Dependency Hell gbjbaanb 2009-10-23T12:35:31Z 2009-10-23T12:35:31Z Have you asked on the OpenLDAP or curl lists? http://stackoverflow.com/questions/1612946/what-is-the-thing-that-irritates-you-while-doing-maintenance-coding/1613040#1613040 Comment by gbjbaanb on What is the thing that irritates you while doing maintenance coding? gbjbaanb 2009-10-23T12:31:04Z 2009-10-23T12:31:04Z Years back, we hired some Russian devs. When it was time to get rid of them and bring the maintenance of their product in-house... we found <i>all</i> the comments were in Russian. We had to keep them on as no-one else could understand what it was doing... good job they were cheap! :) http://stackoverflow.com/questions/1612946/what-is-the-thing-that-irritates-you-while-doing-maintenance-coding/1613003#1613003 Comment by gbjbaanb on What is the thing that irritates you while doing maintenance coding? gbjbaanb 2009-10-23T12:29:26Z 2009-10-23T12:29:26Z typically, I leave 'deleted' code in there commented out, so if I have to go back to the code for a bugfix, I can easily see if I've made a huge cock-up by looking at what the old code was there to do. After the first time though, I delete any commented out code blocks