gbjbaanb
|
Registered User
|
experienced software engineer with many years in the industry, mostly c++ for large-scale, high-reliability systems.
|
|
2d |
comment |
How to design a C / C++ library to be usable in many client languages? There's no reason why you can't write your C library in C++. The only thing that matters to clients of your app is the interface, once past that doorway it could be written in basic! The interface, or 'contract', is all that matters to your users. The internals of your library are none of their business, so write it in C++ (which fortunately allows an easy way to expose C functions, cool) |
|
2d |
comment |
How to design a C / C++ library to be usable in many client languages? version check - if you have a fn that tells you the version of the library, you'll have more options for a) debugging problems, b) allowing backward-compatibility (eg your new app can still use the old version of a library, just not newer features), c) disallow using old versions of the lib if necessary. |
|
Dec 18 |
accepted | Is knowing some basic low-level stuff essential to all programmers? |
|
Dec 15 |
answered | What Active Directory field do I use to uniquely identify a user? |
|
Dec 12 |
comment |
What is your tool for version control (FAQ) also "cool" and "Java". The 90s called and said they were sorry. |
|
Dec 12 |
comment |
Ideas on setting up a version control system… oh please tell me more - it is a terrible product but I now have the task of proving that to management. |
|
Dec 11 |
comment |
What is the most annoying thing about the revision control system (SCM) you use? VisualSVN Server is a teaser product for a commercial company, including paid-for support. |
|
Dec 7 |
revised |
Prevent Modal Dialog on win32 process crash added 264 characters in body |
|
Dec 7 |
answered | Prevent Modal Dialog on win32 process crash |
|
Dec 6 |
awarded | ● Mortarboard |
|
Nov 26 |
answered | Suppose I have 2 vectors. What algorithms can I use to compare them? |
|
Nov 26 |
comment |
Share common / useful SVN pre-commit hooks 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) |
|
Nov 22 |
answered | How should tertiary institutions teach programming ? |
|
Nov 18 |
comment |
What are some techniques for migrating a large MFC application to WPF/.NET? 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 :) |
|
Nov 18 |
comment |
Qt vs WPF/.NET 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. |
|
Nov 18 |
comment |
Qt vs WPF/.NET so you're effectively saying that QT is the one to go for - the QTCreator app is great and well supported. |
|
Nov 18 |
comment |
Qt vs WPF/.NET +1 to the handlhelds, that's THE major growth area for the moment, and should become ever more important in the future. |
|
Nov 18 |
comment |
Why didn’t unit testing work out for your project? everyone can afford Hudson, CruiseControl or Maven though.. |
|
Nov 9 |
awarded | ● Nice Answer |
|
Nov 5 |
answered | OpenMP: Causes for heap corruption, anyone? |
|
Nov 5 |
comment |
OpenMP: Causes for heap corruption, anyone? true, but that wouldn't make it crash, just delete the first float leaving 1023 leaked. |
|
Nov 3 |
accepted | msbuild and subversion |
|
Nov 2 |
answered | building a C++ project on Linux platform (or more specifically: building CLIPS on Ubuntu 9.10) |
|
Nov 1 |
comment |
What are the most surprising elements of the C++ standard? 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. |
|
Oct 27 |
accepted | Open Source Syslog Daemon for Windows |
|
Oct 25 |
comment |
recommendation for choosing a new web development stack you said "PHP could be an option". 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. |
|
Oct 23 |
comment |
Windows 7 OpenLDAP Curl DLL Dependency Hell Have you asked on the OpenLDAP or curl lists? |
|
Oct 23 |
comment |
What is the thing that irritates you while doing maintenance coding? 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 all 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! :) |
|
Oct 23 |
comment |
What is the thing that irritates you while doing maintenance coding? 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 |
|
Oct 20 |
accepted | Strategies for migrating TFS2005 to Subversion |
|
Oct 17 |
answered | Can a web app access and modify the registry of Windows? |
|
Oct 17 |
comment |
Can a web app access and modify the registry of Windows? it also requires the user to allow the app to do these dangerously insecure tasks, so you're even worse off than installing a thick client app. |
|
Oct 16 |
comment |
Most efficient way to store a mixed collection of doubles and ints true, now is 10.0 a double or an integer? |
|
Oct 15 |
comment |
Why is git better than Subversion? 3: "a single .svn" directory will be here with SVN 1.7 when WC-NG is implememnted. 1: To get SVN cleanup you 'export' over the top of your WC. 5: its not so easy, if you rename a file does git recognise it and keep history, or treat it as an add and delete in the directory?. 6/7: svn has global-ignores per user client setting. |
|
Oct 13 |
accepted | What is everyone’s opinion on the difference in ease of merging between Subversion 1.5.6 and 1.6.3? |
|
Oct 10 |
comment |
Upgrading Subversion server from 1.5.5 to 1.6.5 - dump/upgrade/reload, exact steps? Nobody should use a BDB repo. If you do, you still need to dump and load the repo.... into a FSFS one :) |
|
Oct 10 |
comment |
How to make sure bug fixes in a version branch in Subversion are merged into the trunk mostly theoretical because I don't know enough about your processes. For example, if you did tie SVN to Jira you could at least then see in the bug notes what files were changed, and whoever is responsible for closing the bug (please don't say its the developer) would then be able to see that only the branch was fixed, and could keep it open until the trunk, or other branches got the fix too. |
|
Oct 9 |
answered | msbuild and subversion |
|
Oct 9 |
answered | Upgrading Subversion server from 1.5.5 to 1.6.5 - dump/upgrade/reload, exact steps? |
|
Oct 9 |
answered | What is everyone’s opinion on the difference in ease of merging between Subversion 1.5.6 and 1.6.3? |
|
Oct 9 |
answered | Having problems automatically syncing my assembly version to my SubVersion revision |
|
Oct 9 |
answered | How to make sure bug fixes in a version branch in Subversion are merged into the trunk |
|
Oct 9 |
comment |
Fast C++ program, C# GUI, possible? @Mitch. Not in my experience, I've seen G2 collections occur very often on a non-memory constrained system that was not often idle. Check the perfmon counter to see for yourself, GC happens far more than you think it does. Its still quite quick on modern hardware, but that may not be good enough for the OP. |
|
Oct 9 |
comment |
Fast C++ program, C# GUI, possible? OpenMP, or just boost::threads, or TBB: event.on24.com/event/36/… |
|
Oct 9 |
comment |
Fast C++ program, C# GUI, possible? Performance also depends on other factors - for example, the C++/CLI implementation of STL is dreadfully slow, so much so the .NET containers outperform it. |
|
Oct 9 |
awarded | ● Good Answer |
|
Oct 7 |
comment |
What’s the worst security hole you’ve ever seen? little Bobby tables strikes again... xkcd.com/327 |
|
Oct 5 |
comment |
In managed code, how do I achieve good locality of reference? "Managed code" is a term used to denote any language that runs in a managed environment - ie a JVM or the .NET framework. MS uses it more than most to distinguish between it and native coding for Windows, whereas Java doesn't need to make such distinctions. |
|
Oct 4 |
comment |
count vs length vs size in a collection @SnOrfus, that's still true, but I meant for collections that didn't have any meaningful contiguous elements, eg a map or a dictionary. You wouldn't say that a set had a length of 10 elements, there'd be a count of 10 elements in that. |
|
Sep 28 |
comment |
Error: The Side-by-Side configuration information in “BLAH.EXE” contains errors. amen to the mess that is manifests. |
