User AndreasT - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T07:22:55Zhttp://stackoverflow.com/feeds/user/82673http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1714317/c-ide-that-supports-scott-meyers-advice-prefer-non-member-non-friend-function2C++ IDE that supports Scott Meyer's advice: Prefer non-member non-friend functions over membersAndreasT2009-11-11T10:27:43Z2009-11-11T14:46:45Z
<p>Scott Meyer's argument that non-member functions increase encapsulation and allow for more elegant design (designwise) seems very valid to me.
See here: <a href="http://www.ddj.com/cpp/184401197" rel="nofollow">Article</a></p>
<p>Yet I have problems with this. (And seemingly others too, especially Library developers, who usually completely ignore this)</p>
<p>Code usually looks better and more logical when I use member functions. This may be an acquired taste though and just takes some getting used to looking at algorithms first and then on the objects. (shudder)</p>
<p>So maybe I have only one problem:</p>
<p>With member functions, <strong>me</strong> <em>AND</em> my <strong>IDE</strong> know what the class can do.</p>
<p>For me this is huge! I use nothing that doesn't support member function code completion for programming. In well designed libraries it completely replaces documentation for me.
And even if I would look at the api doc, looking through the member list just feels absolutely natural, logical and I can be sure that, well, this is the end. If the method is not in there, I can safely assume it doesn't exist and I can write my non-member non-friend.</p>
<p>I put up with this in the STL, because, well, it makes sense to see algorithms apart from basic components and because of the <em>you get used to it</em> factor.</p>
<p>I haven't seen an IDE that can tell me what non-member functions work on a particular class. </p>
<p>And this actually is my question:
Is there an IDE (or IDE feature) out there that helps with this code convention?</p>
http://stackoverflow.com/questions/1631081/computer-vision-extracting-info-about-a-shape-given-a-contour-e-g-pointy-roun4computer vision: extracting info about a shape given a contour (e.g. pointy, round...)AndreasT2009-10-27T14:10:53Z2009-11-01T01:21:08Z
<p>Given the 2D contour of a shape in the form of lines and vertices, how can I Extract Information from that?
like: Pointy, round, straight line.
Shape similarities with a given shape.</p>
<p>Code is not necessary, I am more interested in
concepts and the names of techniques involved to
guide my search....</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1593881/cmake-how-to-make-a-script-for-copying-data-files-accompanying-my-program3cmake: How to make a script for copying Data files accompanying my programAndreasT2009-10-20T11:13:42Z2009-10-24T09:47:18Z
<p>I am trying to automate my build process with cmake.
There is currently only one issue:</p>
<p>Where is, in cmake's philosophy (if there is one), the best place
to put the copying of data files.</p>
<p>I have a library and a few examples. The examples need the data.</p>
<p>I currently do the following:</p>
<p>I use a custom command in each example's CMakeLists.txt to copy all the Data into the
<code>CMAKE_CURRENT_BINARY_DIR</code> in a post-build step.
I use this in my debugging workflow, so no install target is executed yet.</p>
<p>This works quite well, but has certain drawbacks:</p>
<ol>
<li>The copying occurs everytime the project is built. With VS 2005 this sometimes occurs even if it is not newly built. Since the data folders are big, the copying takes time, and it gets a bit annoying.</li>
<li>I am certain that this is a very clumsy way of doing this.</li>
</ol>
<p>I want to copy those directories to the executable paths, so I don't need hints how to set the debug working directory</p>
<p>The perfect time to copy these directories would be at cmake configuration/generation time, at least I think so.
Should I do this, and how would I do this?</p>
http://stackoverflow.com/questions/1445427/directshow-ieee1394id-does-that-also-describe-usb-devices0DirectShow: ieee1394id <- does that also describe USB devices?AndreasT2009-09-18T15:53:23Z2009-10-10T05:56:19Z
<p>I am trying to understand a DirectShow library implementation.</p>
<p>What is a IEEE1394-id in DirectShow terminology?</p>
<p>IEEE1394 is firewire. </p>
<p>Does it usually also describe ids for
USB devices?</p>
<p>it gets retrieved by IAMExtDevice::get_ExternalDeviceID()</p>
http://stackoverflow.com/questions/1475782/qt4-5-implicitly-shared-qimage-are-methods-like-bits-always-copying-documen1Qt4.5: Implicitly shared QImage: are methods like .bits() always copying (documentation unclarity)AndreasT2009-09-25T06:43:18Z2009-09-25T14:22:20Z
<p>I am writing a Qt application that has to handle big QImage s.
QImage uses implicit sharing, which means it reference counts an internal data pointer. Whenever the refcount is > 1 the object counts as "shared" and any even only potentially data modifying call issues a deep copy of the image data. </p>
<p>In short: I don't want deep copies to happen.</p>
<p>I make a number of calls like setPixel(), bits() etc. that can trigger a copy. The documentation sometimes reads as if certain calls would <em>always</em> trigger a deep copy (detach call) even if I try my hardest to keep the refcount at 1.
Like here:
<a href="http://doc.trolltech.com/4.5/qimage.html#setPixel" rel="nofollow">QImage::setPixel()</a></p>
<p>So I want to know:</p>
<ol>
<li>Is the doc only formulated a bit clumsily and these calls are reliably copying only <em>shared</em> objects (as in refcount > 1)?</li>
<li>Can I ask an object what it's current refcount is, for debugging reasons and the like?</li>
<li>Can I force Qt not to implicitly share specific objects/instances (<- well here my educated guess is "no") </li>
</ol>
http://stackoverflow.com/questions/1425905/c-performance-impact-of-big-classes-with-a-lot-of-code4C++: Performance impact of BIG classes (with a lot of code)AndreasT2009-09-15T08:35:54Z2009-09-16T06:57:43Z
<p>I wonder if and how writing "almighty" classes in c++ actually impacts performance.</p>
<p>If I have for example, a class <strong>Point</strong>, with only <strong>uint x; uint y;</strong> as data, and have defined virtually everything that math can do to a point as methods. Some of those methods might be huge. (copy-)constructors do nothing more than initializing the two data members.</p>
<pre><code>class Point
{
int mx; int my;
Point(int x, int y):mx(x),my(y){};
Point(const Point& other):mx(other.x),my(other.y){};
// .... HUGE number of methods....
};
</code></pre>
<p>Now. I load a big image and create a <strong>Point</strong> for every pixel, stuff em into a vector and <em>use</em> them. (say, all methods get called once)
This is only meant as a stupid example!</p>
<p>Would it be any slower than the same class without the methods but with a lot of utility functions? I am not talking about virtual functions in any way!</p>
<p>My Motivation for this: I often find myself writing nice and relatively powerful classes, but when I have to initialize/use a ton of them like in the example above, I get nervous.
I think I shouldn't.</p>
<p>what I think I know is:</p>
<ol>
<li>Methods exist only once in memory.
(optimizations aside) </li>
<li>Allocation
only takes place for the data
members, and they are the only thing
copied.</li>
</ol>
<p>So it shouldn't matter. Am I missing something?</p>
http://stackoverflow.com/questions/1409890/run-time-type-information-in-c/1410449#14104490Answer by AndreasT for Run-time type information in C++AndreasT2009-09-11T11:58:16Z2009-09-11T11:58:16Z<p>You can take a Interface* and "ask" c++ to what type of object the pointer points.
To my knowledge, this relies on runtime meta information, that needs a few cycles
for storing and searching such information.</p>
<p>Look at the "typeid" keyword. It provides the most magic.</p>
<p>dynamic_cast only <em>uses</em> RTTI, <em>typeid</em> with std::type_info
seems to me more like the "real thing".</p>
http://stackoverflow.com/questions/1399252/boost-cross-compile-from-linux-to-windows/1399575#13995751Answer by AndreasT for Boost - cross compile - "from Linux" "to Windows"AndreasT2009-09-09T13:04:24Z2009-09-09T13:04:24Z<p>This is not really an answer, but: don't!</p>
<p>Cross compiling to a completely different platform is usually a huge pain in the ****.</p>
<p>If you are trying to build the windows binaries on the same machine, say for packaging, use a virtual machine with windows, mingw and appropriate scripts.</p>
<p>Then you can even run automated tests on the vm etc. with your build, which should be a huge advantage.</p>
http://stackoverflow.com/questions/1389402/std-c-container-element-destruction-and-insertion-behaviour4std c++ container element destruction and insertion behaviourAndreasT2009-09-07T13:16:41Z2009-09-07T14:27:05Z
<p>I have made the following little Program:
(basically a class that couts if it gets created, copied or destroyed and a main that does some of that)</p>
<pre><code>class Foo
{
public:
Foo(string name): _name(name)
{
cout << "Instance " << _name << " of Foo created!" << std::endl;
};
Foo(const Foo& other): _name(other._name)
{
cout << "Instance " << _name << " of Foo copied!" << std::endl;
};
~Foo()
{
cout << "Instance " << _name << " of Foo destroyed!" << std::endl;
}
string _name;
};
int main( int argc, char**argv)
{
Foo albert("Albert");
Foo bert("Bert");
{
vector<Foo> v1, v2;
system("PAUSE");
v1.push_back(albert);
system("PAUSE");
v2.push_back(bert);
system("PAUSE");
v1 = v2;
system("PAUSE");
}
system("PAUSE");
}
</code></pre>
<p>The output looks like this:</p>
<pre><code>Instance Albert of class Foo created!
Instance Bert of class Foo created!
Press any key...
Instance Albert of class Foo copied!
Instance Albert of class Foo copied! // why another copy?
Instance Albert of class Foo destroyed! // and destruction?
Press any key...
Instance Bert of class Foo copied!
Instance Bert of class Foo copied!
Instance Bert of class Foo destroyed!
Press any key... // v1=v2 why did the albert instance not get destroyed?
Press any key...
Instance Bert of class A destroyed!
Instance Bert of class A destroyed!
Press any key... // there's still an albert living in the void
</code></pre>
<p>This strikes me as very odd.
Why do I even bother passing something as a reference if it gets copied twice anyway?
Why does the v1.operator=(other) not destroy the elements it contains?
It would fit nicely with the behaviour of shared_ptr.
Can someone tell me why?</p>
<p><strong>ADDITION</strong>
I put this in an endless loop and checked the mem usage, it doesn't seem to produce
a mem leak at least.</p>
<p><strong>ADDITION</strong>
Ok, the mem is not an issue because it uses operator= rather than the copy ctor, ok thanks.
When I add</p>
<pre><code>v1.reserve(10);
v2.reserve(10);
</code></pre>
<p>the logical number of copies takes place. without that it reallocates and copies the whole vector for every single push_back, (which I find quite retarded even for small vectors).
Looking at this I will consider using .reserve more and optimize my assignment operators Like hell :)</p>
<p><strong>ADDITION: SUMMARY</strong> </p>
<ol>
<li>All these issues seem specific to VC++2005.</li>
<li>If the size of the two containers match, my implementation uses operator= on the
elements instead of destroying the old ones and copying the new ones, which seems
sound practice. IF the sizes differ, normal destruction and copying are used.</li>
<li>With the 2005 Implementation, one has to use reserve! Otherwise abysmal and not std compliant performance.</li>
<li>These black boxes are much blacker than I thought.</li>
</ol>
http://stackoverflow.com/questions/818647/where-can-i-find-good-c-source-code/1357437#13574370Answer by AndreasT for Where can I find good C++ source code?AndreasT2009-08-31T13:20:33Z2009-08-31T13:20:33Z<p>I would recommend OpenSG
It is an interesting topic, it uses concurrency modeling, networking, includes links to scientific papers, is well documented, uses real c++ not c with objects stuff and almost all subparadigms and doesn't overuse them, is easily accessible AND who would have guessed... I am a fan of it ;) </p>
<p><a href="http://opensg.vrsource.org/trac/wiki/WikiStart" rel="nofollow">OpenSG - Home</a></p>
http://stackoverflow.com/questions/1345885/best-approach-for-common-functionality/1345975#13459751Answer by AndreasT for Best approach for common functionalityAndreasT2009-08-28T09:34:34Z2009-08-28T09:34:34Z<p>Managing and improving your private set of tools is an important thing for a programmer.
I personally always go for the "as quick'n easy as possible" approach. </p>
<p>The faster they are linked and included into my work the sooner I feel "at home".
I am even sometimes throwing all orderlines away and chuck them into default library and include paths, and whoopie, there they are, at your service.
(Wouldn't really recommend that of course, but it is quick'n easy)</p>
<p>I don't know why you use dlls, since a normal lib would cause fewer headaches to include.</p>
<p>Tip: Make a seperate project out of them.
Have them in a central logical location. (Maybe myWorkspace/MyLibs)
Since your toolset will likely grow/change/improve with every project you are working on, I sometimes set up my working environment to be able to swiftly switch over, add something and then go back to the original project.
In this case it is useful to include it as a project dependency in your IDE that can be built automatically and then relinked. This is trivial with almost all IDE's.</p>
<p>A different problem however are employers.
They are usually wary about things you carry over into their projects. Especially if you want to close the source to them. But this is a story for another question ;)</p>
http://stackoverflow.com/questions/1345773/how-bad-is-it-in-theory-if-every-class-would-include-every-other-class/1345868#13458681Answer by AndreasT for How bad is it, in theory, if every class would include every other class?AndreasT2009-08-28T09:10:56Z2009-08-28T09:10:56Z<p>Usually the including and scoping, object orientation etc is only a utility for the programmer. An illusion of order if you will. Down at the machine code level, you can access any variable of your process everywhere. That you have to include headers that are used somewhere else in your program is only a way that language creators use to limit the things you currently have to think about, throw out duplicates etc. and that the compiler can give you help in verifying that your "description" of the program works right.</p>
<p>You only make your executable bigger if you link stuff into it. You only make it slower, as Evernoob hinted at, if you produce lots of instances etc. Just to make types and definitions "known" to other classes should not cause any performance issues at runtime, but it usually will increase compile time.</p>
http://stackoverflow.com/questions/1322510/bit-twiddling-find-next-power-of-two6bit twiddling: find next power of twoAndreasT2009-08-24T13:43:01Z2009-08-26T12:19:30Z
<p>If I have a integer number n.
How can I find the next number k > n : k = 2^i, with some i element of N
By bitwise shifting or logic.</p>
<p>Example:
If I have n=123 how can I find k=128 which is a power of two: 2^7(=i)
and not 124 which is only divisible by two.
It should be simple, but it eludes me.</p>
http://stackoverflow.com/questions/1322793/bit-twiddling-find-next-power-of-two-with-templates-in-c1Bit twiddling: find next power of two with templates in c++AndreasT2009-08-24T14:38:32Z2009-08-25T09:56:25Z
<p>This is a follow-up to my general question:
<a href="http://stackoverflow.com/questions/1322510/bit-twiddling-find-next-power-of-two">bit-twiddling-find-next-power-of-two</a></p>
<p>I have now created the following template function:</p>
<pre><code>template <typename T>
T nextPowerOfTwo(T n)
{
std::size_t k=1;
n--;
do {
n |= n >> k ;
k <<=1;
}
while (k < sizeof(T)*8)
return ++n;
}
</code></pre>
<p>2 Questions: </p>
<ol>
<li>Specifying T as <code>unsigned</code> in <code>nextPowerOfTwo(unsigned T n)</code> threw a compiler error. Can I somehow specifiy T to be unsigned? </li>
<li>Is there something that can be honed elegance or performance-wise?</li>
</ol>
<p>EDIT: Corrected the code, it was crap in the beginning</p>
<p><strong>EDIT: Corrected the code again. I am really sorry. It was quite obvious actually. But thanks anyway for the hints.</strong>
I wanted to delete it, but there were already too many contributions.</p>
http://stackoverflow.com/questions/1321407/programming-resources-for-c-in-linux/1322359#13223592Answer by AndreasT for Programming resources for C++ in LinuxAndreasT2009-08-24T13:17:54Z2009-08-24T13:17:54Z<p><strong>IDE</strong>
Eclipse is very good as a starting point.
The new CDT provides a completely set up environment.
Just be sure to install gcc and gdb before
trying out anything.
And don't use the eclipse in the ubuntu repos, download a
current release.</p>
<p><strong>Difference Windows/Linux:</strong>
The language standard is completely the same in both worlds. (Compiler implementations vary in fullfillment of the standard, but you shouldn't notice anything in the beginning.)
If you stick to cross-platform tools, compiler(gcc/mingw), ide and debugger it can stay this way. (I imply that the obvious differences, like .so s and .dlls and stuff are known)
If you move over to other compilers and library implementations (MSVisualC++ for instance) it can get interesting in the advanced stages, but it shouldn't be too difficult to bridge the gaps.</p>
<p><strong>Good/essential libs to know:</strong>
the stl, boost, and maybe for productivity and ease in the beginning: qt.
These are as platform independent and generally useful as possible. Know them, and they are usable through your complete c++ livetime.
(Don't make the mistake to wnat to learn it all in one go, just go step by step.
Don't try template programming in the beginning, it is mind-boggling ;) but <em>using</em>
templates is fun)</p>
http://stackoverflow.com/questions/1300937/cant-launch-working-program-from-visual-studio-ide0Can't launch working Program from Visual Studio IDEAndreasT2009-08-19T15:59:05Z2009-08-24T12:48:55Z
<p>If I start my self written app from the explorer it works fine.</p>
<p>If I try to start it in visual studio(F5), it crashes at some point.
It is also not dependant on the working directory!</p>
<p>It is quite annoying, because I cannot debug that way.
(I could try attaching to the process after launch, but....)</p>
<p>Can anyone point me into a direction that I may have overlooked?
What settings can cause such strange circumstances in general?</p>
<p>Thanks a lot in advance!</p>
<p>EDIT: System and stuff involved:
WinXPProSp3(32bit), VS2005Sp1, Win SDK6.1, DXSDK09</p>
<p>EDIT: Clarification:
The program I wish to debug crashes without a comment. Visual Studio
has no problem and just states that the program to debug has terminated.</p>
<p>The Debug settings are all in order. I can debug and step through the beginning
up to a certain point, where the debug info leaves me (some lib related to
DirectShow) and the program peacefully dies.</p>
<p>I have only the Debug build configuration set up.</p>
<p>I hit F5 -> dead
I start the same exe from outside the ide -> works like a charm.</p>
<p>I still am nowhere near of figuring this out... <:|</p>
<p>EDIT: Answer:
A decoder library that doesn't work in debug mode managed to slip into
my DirectShow filter chain. That caused all this strange behaviour.
I simply uninstalled it.
(somehow lowering the "merit" on the thing didn't work).
Thanks for the help.</p>
http://stackoverflow.com/questions/1260253/how-do-i-put-an-qimage-with-transparency-onto-the-clipboard-for-another-applicati/1260570#12605701Answer by AndreasT for How do I put an QImage with transparency onto the clipboard for another application to use?AndreasT2009-08-11T14:01:21Z2009-08-11T14:06:57Z<p>There are only a few (mime) types that work well with every application/OS combination
(e.g. Text and Bitmap)</p>
<p>EDIT: Which really means: To decide if this is a general issue or something to do with your code, you have to provide more info.</p>
http://stackoverflow.com/questions/1208644/how-can-i-get-the-size-of-a-memory-block-allocated-using-malloc2How can I get the size of a memory block allocated using malloc()? [closed]AndreasT2009-07-30T19:01:44Z2009-07-30T20:12:50Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br />
<a href="http://stackoverflow.com/questions/232691/how-can-i-get-the-size-of-an-array-from-a-pointer-in-c">How can I get the size of an array from a pointer in C?</a><br />
<a href="http://stackoverflow.com/questions/197839/is-there-any-way-to-determine-the-size-of-a-c-array-programmatically-and-if-n">Is there any way to determine the size of a C++ array programmatically? And if not, why?</a> </p>
</blockquote>
<p>I get a pointer to a chunk of allocated memory out of a C style function.
Now, it would be really interesting for debugging purposes to know how
big the allocated memory block that this pointer points is.</p>
<p>Is there anything more elegant than provoking an exception by blindly running over its boundaries?</p>
<p>Thanks in advance,
Andreas</p>
<h3>EDIT:</h3>
<p>I use VC++2005 on Windows, and GCC 4.3 on Linux</p>
<h3>EDIT2:</h3>
<p>I have <code>_msize</code> under VC++2005
Unfortunately it results in an exception in debug mode....</p>
<h3>EDIT3:</h3>
<p>Well. I have tried the way I described above with the exception, and it works.
At least while I am debugging and ensuring that immediately after the call
to the library exits I run over the buffer boundaries. Works like a charm.</p>
<p>It just isn't elegant and in no way usable in production code.</p>
http://stackoverflow.com/questions/1203248/circular-representation-of-a-tree-structure/1203262#12032621Answer by AndreasT for Circular representation of a tree structureAndreasT2009-07-29T21:46:21Z2009-07-29T21:51:52Z<p>You are trying to draw a planar representation of a graph.
<a href="http://www.worldscibooks.com/compsci/5648.html" rel="nofollow">Find some buzzwords and perhaps a resource here</a>
<a href="http://en.wikipedia.org/wiki/Graph%5Fdrawing" rel="nofollow">And in wikipedia</a></p>
<p>Ah and I forgot: You can do this the newtonian way with forces.
Simply give all nodes a repelling potential, like make them all Protons which push each other away. Give the edges the properties of newtonian springs, exerting forces that pull them together and you are all set.
Could even create nice animations that way.
This is also an official way of graph drawing, but I don't know the name.</p>
http://stackoverflow.com/questions/1203168/asp-net-record-sound-from-a-web-app/1203244#12032440Answer by AndreasT for ASP.NET: Record Sound From A Web App?AndreasT2009-07-29T21:42:33Z2009-07-29T21:42:33Z<p>It is not doable without the help of a plugin. Browsers simply don't support voice recording.
You could choose from:</p>
<ul>
<li>Make a SilverLight applet.</li>
<li>The flashPlayer can record too.</li>
<li>find a java Applet that can do this.</li>
<li>Make an activeX Plugin (since you have affinity to asp)</li>
<li>use your os provided voice recorder, save the file and upload it. Playback via browser is easy</li>
</ul>
http://stackoverflow.com/questions/1202128/what-career-can-i-hope-for-if-i-like-algorithms/1203166#12031660Answer by AndreasT for What career can I hope for if I like algorithms?AndreasT2009-07-29T21:28:10Z2009-07-29T21:28:10Z<p>It has been suggested by others on the sidelane, but
I will reiterate it here : consider <strong>Game Programming</strong></p>
<p>Game development spans a wide range of challenging areas
like: </p>
<ul>
<li>Game concepts and algorithms in general, on the lines of a Sudoku field generator</li>
<li>basic stuff like path finding etc.</li>
<li>3D Graphics algorithms for new stunning effects</li>
<li>AI < you might be really really happy there</li>
<li>and you do it literally for fun (well, almost :))</li>
<li>The stuff has to run hellish fast, so you'll never be bothered with bulky frameworks</li>
</ul>
<p>There's a big <strong>but</strong> to it, and it is called the gaming <strong>industry</strong>
I haven't been there, but I have heard and read that it can be a really tough place. Both in pressure and money. Gaming is now a Billion Dollar market with deadlines and big budgets and also, yes, big frameworks.
But there are sure as hell a few companies out there who produce innovative games "when they are finished" and provide a fun environment. I think you would fit well there.</p>
<p>Well, just what I dream of :)
Good luck to you in any case !!</p>
http://stackoverflow.com/questions/1165963/c-standard-practice-virtual-interface-classes-vs-templates1c++ standard practice: virtual interface classes vs. templatesAndreasT2009-07-22T15:04:41Z2009-07-22T16:17:57Z
<p>I have to make a decision regarding generalization vs polymorphism.</p>
<p>Well the scenario is standard: I want to make my monolithic interdependent
code to be more modular, clean and extensible.
It is still in a stage where the change of design principle is doable,
and, as I look at it, highly desirable.</p>
<p>Will I introduce purely virtual base classes (interfaces) or templates?</p>
<p>I am aware of the basics regarding the template option:
less indirection, better performance, more compiling
but
no late binding, and so on.</p>
<p>The stl does not use much (or none?) inheritance, and boost doesn't either.
But I think those are aimed to be really small basic tools that are used every
2 lines of code by the programmer.</p>
<p>I consider the inheritance and late binding approach to be more sensible for
plug-in style of big pieces of code and functionality that should be interchangeable,
updateable etc. after deployment or even during runtime.</p>
<p>Well my scenario lies somewhat inbetween.</p>
<p>I dont need to exchange pieces of code on the fly at runtime, compile time is fine.
Usually it is also a very central and frequently used piece of functionality,
it is not logically seperatable into big blocks.</p>
<p>This lets me tend somewhat to the template solution.
To me it also looks somewhat cleaner.</p>
<p>Are there any big bad implications, are interfaces still THE way
to go? When are they not?
Which complies more with standard c++ style?</p>
<p>I know this is bordering on subjective, but I am really interested in
some experiences. I don't own a copy of Scott Meyers effective C++
so I set my hopes on you guys :)</p>
http://stackoverflow.com/questions/1145768/how-can-i-easily-use-a-com-component-in-native-visual-c2How can I easily use a COM component in Native Visual C++ AndreasT2009-07-17T21:24:26Z2009-07-18T17:02:19Z
<p>Hi there.</p>
<p>I am trying to build an app that uses a COM component in VisualStudio ´05
in native C++.
The mix of native and managed desciptions of things in the MSDN totally wrecked my
brain. (I think the MSDN is a total mess in that respect)
I need a short and simple native C++ sample of code to load my Component
and make it usable.
I am ok with the compiler creating wrappers and the like.</p>
<p>Please don't advise me to use the dialog based MFC example, because
it does not work with this component and is in itself a huge
pile of c... code.</p>
<p>Can this be an issue native com vs managed com?</p>
<p>I am totally lost, please give me some bearings...</p>
<p>EDIT: Thanks for all the help.
My problem is that all I have is a registered dll (actually the OCX, see below)
. I (personally) know
what the Interface should look like, but how do I tell my program?
There are no headers that define
IDs for Interfaces that I could use. But I read that the c++ compiler
can extract and wrap it up for me. Anyone know how this is done?</p>
<p>CLARIFICATION: I have only the OCX and a clue from the documentation
of the component, what methods it should expose.</p>
http://stackoverflow.com/questions/1145764/using-subversion-to-manage-around-digital-files-videos-pictures-etc-in-a-web/1145813#11458130Answer by AndreasT for Using Subversion to manage around digital files (videos, pictures, etc) in a web appAndreasT2009-07-17T21:38:43Z2009-07-17T21:38:43Z<p>Well if I understood this correctly,
you have certain resources in your app that are big and can not reasonably be
version controlled.
I would write a deployment/backup script, that keeps backups of these files,
and on deployment, it just copies the newest ones into the right places in the
fresh checkout. This can be done by storing/updating and extracting a simple zip(or whatever) archive that stores directories.
svn can even be extended by certain events, or hooks to those events.
That would enable you to do this completely on automatic.
On every checkout, run a script that pulls the media.zip over ftp, extract it
with "preserve structure" and "update only".</p>
http://stackoverflow.com/questions/1021341/brushing-up-a-knowledge-of-c-c-asp-net-and-design-patterns/1021419#10214191Answer by AndreasT for Brushing up a knowledge of C++, C#, ASP.NET and Design patterns AndreasT2009-06-20T11:09:49Z2009-06-20T11:09:49Z<p>Well, since you knew all this, which I guess means "have used all this" previously,
you could take look back at your own code as a starting point. </p>
<p>Really ask yourself:</p>
<ul>
<li>why did I do it like this?</li>
<li>when was this, what situation was I in?</li>
<li>can I do it better now?</li>
</ul>
<p>Take a small tricky and interesting part of the program out, and try to
recode it.</p>
<p>This is all meant to get you mentally back to those times, pick up a few discarded
threads in memory. I find such methods really useful to reactivate knowledge.</p>
<p>Then read up on new developments/best practices on blogs and books and skim through
books that used to be useful to you (maybe there are current editions)</p>
<p>I used scott meyer's "Effective C++..." series to get me back into and
advance my knowledge of c++.</p>
http://stackoverflow.com/questions/1021210/programming-slim-c-programs-like-utorrent-for-windows/1021376#10213760Answer by AndreasT for Programming slim C++ programs (like uTorrent) for WindowsAndreasT2009-06-20T10:23:50Z2009-06-20T10:23:50Z<p><a href="http://notepad-plus.sourceforge.net/" rel="nofollow">Notepad++</a>
is also a very fast, highly optimized and very useful os program that could spark your inspiration. It's philosophy is similar to that of uTorrent.
It uses the good old Win32 api which should still be the fastest you can go
on Windows.</p>
<p>If you want to go really artistic, the demo scene is the perfect place to
go. Although their code is not always open.</p>
http://stackoverflow.com/questions/964802/git-svn-revert-a-commit-from-a-not-master-branch2git-svn: revert a commit from a not master branchAndreasT2009-06-08T13:02:20Z2009-06-08T13:58:18Z
<p>Well.. I did some headless committing and merging and now I am deep in the ....</p>
<p>Here's what I did:</p>
<ol>
<li>fetched trunk with git-svn</li>
<li>branched off work</li>
<li>git commit ed stuff to work</li>
<li>git svn dcommit ted the cnanges to svn, (yes, this i where it gets interesting)</li>
<li>git checkout master</li>
<li>git merge work</li>
</ol>
<p>In this situation, git doesn't seem to understand that the changes to svn
are the same as in itself. It is now up to date, but when I try to </p>
<pre><code>git svn rebase master
</code></pre>
<p>I get Invalid upstream</p>
http://stackoverflow.com/questions/964802/git-svn-revert-a-commit-from-a-not-master-branch/965046#9650461Answer by AndreasT for git-svn: revert a commit from a not master branchAndreasT2009-06-08T13:58:18Z2009-06-08T13:58:18Z<p>The Solution to this was:
Do a hard reset on Master to a common ancestor (svn and master)</p>
<pre><code>svn reset --hard <somehash>
</code></pre>
<p>then I did a rebase.</p>
<p>Now all directions of merges work again, as far as I can tell.
I am still a total git newbie...</p>
http://stackoverflow.com/questions/848360/application-couldnt-be-initialized-error-manifest-file-problem0application couldn't be initialized error (manifest file problem)AndreasT2009-05-11T14:23:37Z2009-05-21T08:23:46Z
<p>Hi there.
I am trying to use a library (.dll) in my project. Everything seems to
be set up fine. It all works in release mode.
When I go debug on it, I get this darn error on startup:</p>
<p>ldr: ... application couldn't be initialized error (or similar, I translated it)</p>
<p>I learned that this has to do with manifest files.
I fumbled around a bit, in the project settings, but nothing really worked / I couldn't get my head around it.
The error persists.</p>
<p>Does anyone know a quick solution to this?
I don't care if it is dirty. </p>
<p>I think I liked dll-Hell better than manifest-Hell!!</p>
<p>The solution:
The wrong version of the .dlls got loaded. I didn't know that they were still
lying around on the system. Depedency Walker is a great tool and set me on the right track. So I will accept this answer. </p>
<p>Thanks a lot!</p>
http://stackoverflow.com/questions/880850/laws-of-computer-science-and-programming/881289#8812892Answer by AndreasT for Laws of Computer Science and ProgrammingAndreasT2009-05-19T06:45:25Z2009-05-19T06:57:10Z<p>There is my Favorite: </p>
<p><a href="http://en.wikipedia.org/wiki/Murphy%27s%5Flaw" rel="nofollow">Murphys Law</a></p>
<p>Simplified: <em>"Whatever can go wrong, will go wrong"</em></p>
<p>However, there is a little more to it <a href="http://en.wikipedia.org/wiki/Murphy%27s%5Flaw" rel="nofollow">Wikipedia</a></p>
<p>I like this more humanized version best:
<em>„If there's more than one possible outcome of a job or task, and one of those outcomes will result in disaster or an undesirable consequence, then somebody will do it that way.“</em></p>
<p>And of course <a href="http://en.wikipedia.org/wiki/Moore%27s%5Flaw" rel="nofollow">Moore's law</a></p>
<p>famous interpretation: <em>"The processing speed of computers will double every two years!"</em> </p>
<p>stated similarly 1975</p>
<p>Again, there's more to it: <a href="http://en.wikipedia.org/wiki/Moore%27s%5Flaw" rel="nofollow">Wikipedia</a></p>
http://stackoverflow.com/questions/1714317/c-ide-that-supports-scott-meyers-advice-prefer-non-member-non-friend-function/1714848#1714848Comment by AndreasT on C++ IDE that supports Scott Meyer's advice: Prefer non-member non-friend functions over membersAndreasT2009-11-19T21:25:44Z2009-11-19T21:25:44ZWell, I could map this in vim.
It works ... ok.
Do you know if there is a ctags way of doing that query? I use specific tags files for omnicomplete etc. This should be doable with those, shouldn't it?
http://stackoverflow.com/questions/1425905/c-performance-impact-of-big-classes-with-a-lot-of-code/1426132#1426132Comment by AndreasT on C++: Performance impact of BIG classes (with a lot of code)AndreasT2009-11-11T10:02:34Z2009-11-11T10:02:34ZYou pointed to one intrigueing article. But my concern is taht these people seem to code much different than most normal people. I love member functions because in every noteworthy IDE they get proposed to me and tell me what that class can do. This is not really possible with non-member non-friend functions.http://stackoverflow.com/questions/1399252/boost-cross-compile-from-linux-to-windows/1399575#1399575Comment by AndreasT on Boost - cross compile - "from Linux" "to Windows"AndreasT2009-11-08T22:28:17Z2009-11-08T22:28:17ZWell it works. "Acceptable" or not.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/410799#410799Comment by AndreasT on What's your most controversial programming opinion?AndreasT2009-10-28T17:24:28Z2009-10-28T17:24:28Z+1 rezzif: That hadn't occured to me! Nice one!http://stackoverflow.com/questions/1593881/cmake-how-to-make-a-script-for-copying-data-files-accompanying-my-program/1601054#1601054Comment by AndreasT on cmake: How to make a script for copying Data files accompanying my programAndreasT2009-10-22T15:34:45Z2009-10-22T15:34:45ZThanks! I am surprised that there are so few answers to this question. CMake is widely used now, but still poorly documented. Very few people seem to really grok cmake.http://stackoverflow.com/questions/1514707/what-are-the-best-freely-available-university-courses-on-data-structures-and-algo/1514894#1514894Comment by AndreasT on What are the best freely available university courses on Data Structures and Algorithms?AndreasT2009-10-12T16:58:01Z2009-10-12T16:58:01Zand not really free either.http://stackoverflow.com/questions/1542960/a-better-boost-reference/1542972#1542972Comment by AndreasT on A Better Boost reference?AndreasT2009-10-09T11:21:23Z2009-10-09T11:21:23ZSources don't make a good documentation. It is like giving a circuit plan to someone who wants to switch a channel on his tv. http://stackoverflow.com/questions/1475782/qt4-5-implicitly-shared-qimage-are-methods-like-bits-always-copying-documen/1477583#1477583Comment by AndreasT on Qt4.5: Implicitly shared QImage: are methods like .bits() always copying (documentation unclarity)AndreasT2009-09-26T09:46:46Z2009-09-26T09:46:46ZDamn. They didn't even document this... Thx! Thx too for reminding me that this is open source and I just have to have a look at it!http://stackoverflow.com/questions/1445427/directshow-ieee1394id-does-that-also-describe-usb-devices/1445485#1445485Comment by AndreasT on DirectShow: ieee1394id <- does that also describe USB devices?AndreasT2009-09-18T16:09:27Z2009-09-18T16:09:27ZI know that. I want to know, If in the DirectShow world, it means the same for all capture devices, USB as well as FireWire/I.Linkhttp://stackoverflow.com/questions/1415388/c-class-dependencies/1415397#1415397Comment by AndreasT on C++ class dependencies AndreasT2009-09-12T16:42:06Z2009-09-12T16:42:06Z@pavel: er... what???? http://stackoverflow.com/questions/1414654/how-to-break-circle-of-evening-stupidity/1414657#1414657Comment by AndreasT on How to break circle of evening stupidity?AndreasT2009-09-12T09:36:18Z2009-09-12T09:36:18ZThanks for that one :). I'll get some good laughs out of that..!http://stackoverflow.com/questions/1414654/how-to-break-circle-of-evening-stupidity/1414698#1414698Comment by AndreasT on How to break circle of evening stupidity?AndreasT2009-09-12T09:35:15Z2009-09-12T09:35:15ZYour OFFICE??. Your <i>office</i> sounds like my Living room! Damn! I hate you :)http://stackoverflow.com/questions/1389402/std-c-container-element-destruction-and-insertion-behaviour/1389492#1389492Comment by AndreasT on std c++ container element destruction and insertion behaviourAndreasT2009-09-07T14:31:06Z2009-09-07T14:31:06ZExpensive instanciation or not, reallocation in itself is expensive.
Well I know about const refs, it just doesn't matter in the example, so I got lazy ;-)http://stackoverflow.com/questions/1389402/std-c-container-element-destruction-and-insertion-behaviour/1389516#1389516Comment by AndreasT on std c++ container element destruction and insertion behaviourAndreasT2009-09-07T14:16:22Z2009-09-07T14:16:22ZIt seems specific to VS2005
http://stackoverflow.com/questions/1389402/std-c-container-element-destruction-and-insertion-behaviour/1389492#1389492Comment by AndreasT on std c++ container element destruction and insertion behaviourAndreasT2009-09-07T14:12:51Z2009-09-07T14:12:51ZThe black box argument is valid, however, I always hoped these were not stupid black boxes :) . <subjective!>Well yet another M$ disappointment.</subjective>