User R.A - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T14:19:40Zhttp://stackoverflow.com/feeds/user/7891http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1873420/stl-iterator-why-is-the-code-analysis-tool-complaining2STL iterator - why is the code analysis tool complaining?R.A2009-12-09T11:53:26Z2009-12-09T13:50:27Z
<p>I'm checking the results from the static code analysis tool <a href="http://www.klocwork.com/" rel="nofollow">Klocwork</a>.</p>
<p>It complains about the following code:</p>
<pre><code>293 for( my_vector_typedef::iterator it( start_pos ); it != end_pos ; ++it ){
294 delete *it;
295 }
</code></pre>
<p>With the following message:</p>
<p><strong>Object 'it._M_current' is used after it was freed. Object 'it._M_current' was used at line 293 after being freed by passing argument 1 to function 'delete' at line 294</strong></p>
<p>I know things (especially iterators) in STL sometimes aren't really what they seem so I would like to understand what goes on. Purposely formulating the question silly - The 'delete' is performed on what 'it' is pointing at, and not 'it' itself, so why would it complain about it being used with '++it'? It's not it that has been deleted?</p>
http://stackoverflow.com/questions/242728/most-crucial-elements-in-a-light-weight-c-coding-standard22Most crucial elements in a light-weight C++ coding standardR.A2008-10-28T10:03:22Z2009-12-06T03:04:50Z
<p>I've been involved in developing coding standards which were quite elaborate. My own experience is that it was hard to enforce if you don't have proper processes to maintain it and strategies to uphold it.</p>
<p>Now I'm working in, and leading, an environment even less probable to have processes and follow-up strategies in quite a while. Still I want to uphold some minimum level of respectable code. So I thought I would get good suggestions here, and we might together produce a reasonable light-weight subset of the most important coding standard practices for others to use as reference.</p>
<p>So, to emphasize the essence here:</p>
<h2> <strong>What elements of a C++ coding standard are the most crucial to uphold?</strong></h2>
<ul>
<li><h2>Answering/voting rules</h2>
<ul>
<li><p>1 candidate per answer, preferably with a <strong>brief</strong> motivation.</p></li>
<li><p><strong>Vote down</strong> candidates which focuses on style and subjective formatting guidelines. This is not to indicate them as unimportant, only that they are less relevant in this context. </p></li>
<li><p><strong>Vote down</strong> candidates focusing on how to comment/document code. This is a larger subject which might even deserve its own post.</p></li>
<li><p><strong>Vote up</strong> candidates that clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.</p></li>
<li><p><strong>Don't cast your vote</strong> in any direction on candidates you are uncertain about. Even if they sound reasonable and smart, or on the contrary "something surely nobody would use", your vote should be based on clear understanding and experience.</p></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825959#182595918Answer by R.A for Features of C++ that can't be implemented in C?R.A2009-12-01T12:41:31Z2009-12-01T15:00:46Z<p>Some responders here argues that most things that can be produced with C++ code can also be produced with C with enough ambition. This is true in some parts, but some things are inherently impossible to achieve unless you modify the C compiler to deviate from the standard.</p>
<p><strong>Fakeable:</strong></p>
<ul>
<li><a href="http://www.w3.org/Library/User/Style/Cpp.html" rel="nofollow">Inheritance</a> (pointer to parent-struct in the child-struct)</li>
<li>Polymorphism (Faking vtable by using a group of function pointers)</li>
<li>Data encapsulation (private sub structures with an implementation not exposed in public interface) </li>
</ul>
<p><strong>Impossible:</strong></p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Template%5F%28programming%29" rel="nofollow">Templates</a> (which might as well be called preprocessor step 2)</li>
<li><a href="http://en.wikipedia.org/wiki/Method%5Foverloading" rel="nofollow">Function/method overloading</a> by arguments (some try to emulate this with ellipses, but never really comes close)</li>
<li><a href="http://en.wikipedia.org/wiki/Resource%5FAcquisition%5FIs%5FInitialization" rel="nofollow">RAII</a> (Constructors and destructors are automatically invoked in C++, so your stack resources are safely handled within their scope)</li>
<li><a href="http://en.wikipedia.org/wiki/Dynamic%5Fcast" rel="nofollow">Complex cast operators</a> (in C you can cast almost anything)</li>
<li><a href="http://en.wikipedia.org/wiki/Exceptions" rel="nofollow">Exceptions</a></li>
</ul>
<p><strong>Worth checking out:</strong></p>
<ul>
<li><strong><a href="http://library.gnome.org/devel/glib/" rel="nofollow">GLib</a></strong> (a C library) has a rather elaborate OO emulation</li>
<li>I posted a <strong><a href="http://stackoverflow.com/questions/211686/what-do-you-miss-when-you-have-to-use-c-instead-of-c">question</a></strong> once about what people miss the most when using C instead of C++.</li>
</ul>
<p><strong>Clarification on RAII:</strong></p>
<p>This concept is usually misinterpreted when it comes to its most important aspect - implicit resource management, i.e. the concept of guaranteeing (usually on language level) that resources are handled properly. Some believes that achieving RAII can be done by leaving this responsibility to the programmer (e.g. explicit destructor calls at goto labels), which unfortunately doesn't come close to providing the safety principles of RAII as a design concept.</p>
<p>A quote from a wikipedia article which clarifies this aspect of RAII:</p>
<p><em>"Resources therefore need to be tied to the lifespan of suitable objects. They are acquired during initialization, when there is no chance of them being used before they are available, and released with the destruction of the same objects, <strong>which is guaranteed to take place even in case of errors</strong>."</em></p>
http://stackoverflow.com/questions/1734030/how-to-add-merge-several-big-os-into-one1How to add/merge several Big O's into oneR.A2009-11-14T11:51:45Z2009-11-30T09:08:32Z
<p>If I have an algorithm which is comprised of (let's say) three sub-algorithms, all with different O() characteristics, e.g.:</p>
<ul>
<li>algorithm A: O(n)</li>
<li>algorithm B: O(log(n))</li>
<li>algorithm C: O(n log(n))</li>
</ul>
<p>How do I theoretically estimate the O() for the entire algorithm? I.e. not clocking it or performing any other practical measurement. </p>
<p>Is there a well known formula or procedure?</p>
http://stackoverflow.com/questions/1726126/is-the-board-game-go-np-complete6Is the board game "Go" NP complete?R.A2009-11-12T23:24:48Z2009-11-28T05:28:53Z
<p>There are plenty of Chess AI's around, and evidently some are good enough to beat some of the world's greatest players.</p>
<p>I've heard that many attempts have been made to write successful AI's for the board game <a href="http://en.wikipedia.org/wiki/Go%5F%28game%29" rel="nofollow">Go</a>, but so far nothing has been conceived beyond average amateur level.</p>
<p>Could it be that the task of mathematically calculating the optimal move at any given time in Go is an NP-complete problem?</p>
http://stackoverflow.com/questions/796931/why-wasnt-code-managed-from-the-start6Why wasn't code "managed" from the start?R.A2009-04-28T09:08:09Z2009-11-25T19:42:00Z
<p>Note that this is not about the .NET CLR that Microsoft is thrusting into the atmosphere to evangelize the concept of managed code. Most of you know that managed code has been around for quite some time and isn't very related to rocket science.</p>
<p>What I would like to know is <strong>why the concept of runtime security in the evolution of computers came so late</strong>. </p>
<p>I know this is like asking "why didn't the first Model T Ford come with airbags and seat belts?". The relevance of the question still stands despite this though, because it's well within human nature to protect againts known dangers. E.g. the first T-Ford didn't go fast enough to motivate airbag research. It didn't go fast enough for people to make fatal judgemental errors so often that it would motivate seat belt as law and standard in many countries.</p>
<p>In computer evolution it's almost the other way around. We started out with assembler, the equivalent of driving a T-Ford at 200mph with an eye-patch. I've had the pleasure of conversating with a few old truckers from this era, hearing these stories about hand-assembling assembly code, human debuggers, grillion lines of code etc. If we make a really nasty error in C, we might end up with a bluescreen. Decades ago, you could end up with damaged hardware and god knows what. But it's a mystery to me - so many decades, and all we did to make crashing less painful was the bluescreen (sorry for using MS as archetype for anything).</p>
<p>It's not only within human nature to protect against known dangers, <strong>it's also within any programmer's nature to automate and systemize common facilities</strong>, like error checking, memory diagnostics, logging frameworks, backup maintenance etc etc. </p>
<p>Why didn't programmers/humans start to automate the task of ensuring that code they feed to the system won't harm the system?. Yes, ofcourse, <em>performance</em>. But hey, this was well before any seriously penetrating hardware standard. Why didn't motherboards get designed with bus architectures and extra processors to facilitate "managed code"? </p>
<p><strong>Is there any metaphor to Model T Fords not being fast enough that I'm missing?</strong></p>
http://stackoverflow.com/questions/268606/tools-for-website-development16Tools for website developmentR.A2008-11-06T13:02:14Z2009-11-24T07:06:50Z
<p>Hi!</p>
<p>I can't find any other post which addresses this topic on a purely general level.</p>
<p>I'm very unexperienced in developing full scale websites. I get around using HTML and PHP for simple tasks.</p>
<p>Now I'm looking at developing a more elaborate site and want to get hold of a good tool which doesn't eat my wallet to the bones. </p>
<p>I guess I should add more intelligent text here about what I expect it to be capable of, but I really don't know so much. I guess the code/design/preview style in dreamweaver appealed to me, and I'm definetely going to use scripting like PHP or ASP.NET, some database work etc.</p>
<p>I guess pretty much the standard (?) website development tasks.</p>
<p>So, are there good tools out there I should be looking at?</p>
http://stackoverflow.com/questions/1786887/from-visual-studio-to-vim-or-emacs2From Visual Studio to Vim or Emacs? [closed]R.A2009-11-23T23:49:21Z2009-11-24T02:05:30Z
<p>I'm starting a new job next month. I've practically lived inside Visual Studio professionally for 10 years give or take, but for this job I'll be working full time on the linux platform for the first time in my life.</p>
<p>During one of the interview meatings I was seated in the middle of the developer room to socialize with the crowd. We had some light conversation for ten minutes and then one of the guys said: "ok, now for the truly important question - Vim or Emacs?".</p>
<p>I informed them that I'm not very experienced working on Linux, so I had no real opinion. But the question has rendered a dilemma for me since I would like to get comfortable with my potential working environment before I start.</p>
<p>I'm guessing I won't be able to unravel the full potential of both these editors before I start, so in order to pick the one which is likely to work best for me, the question goes - which of Vim and Emacs will make me most comfortable and efficient (working with C++) if I'm all about Visual Studio at the moment?</p>
http://stackoverflow.com/questions/1786661/semicolon-after-classes-and-structs1Semicolon after classes and structs [closed]R.A2009-11-23T22:59:06Z2009-11-23T23:07:17Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1783465/why-must-i-put-a-semicolon-at-the-end-of-class-declaration-in-c">Why must I put a semicolon at the end of class declaration in C++?</a> </p>
</blockquote>
<p><strong>Found <a href="http://stackoverflow.com/questions/1783465/why-must-i-put-a-semicolon-at-the-end-of-class-declaration-in-c">duplicate</a>, vote to close please.</strong></p>
<p>Why do classes and structs have to be concluded with semicolon in C++?</p>
<p>Like in the following code:</p>
<pre><code>class myClass
{
};
struct muStruct
{
};
</code></pre>
<p>This syntax isn't necessary in Java or C#. Why does the C++ parser need it?</p>
http://stackoverflow.com/questions/1766503/how-can-i-help-my-poor-friend-learning-to-program4How can I help my poor friend learning to program?R.A2009-11-19T21:02:04Z2009-11-23T13:48:33Z
<p>A friend of mine is taking a course called "interaction design". She has no previous experience with programming, but is technical by nature. Worked with networking and system administration for a couple of years.</p>
<p>I started helping her with grasping the basic concepts of software and coding, but I feel the pace is so fast that I'm beginning to doubt if it's possible to learn at such rate.</p>
<p>They're using a fairly new language/platform called <a href="http://processing.org/" rel="nofollow">Processing</a>, which is kind of like Java directed towards graphic programming.</p>
<p>It's 2-3 weeks into the course and they're already starting with classes, recursion and larger assignments like "make a rotating cube with images and webpages on each side that updates every minute" (she's barely digested what a function is or that variables are not return values). As if that wasn't enough, the teacher throws in code-to-start-with containing use of polymorphism and multi-dimensional arrays. Half the class has already quit.</p>
<p>I could really use some advice here. Do you have any recollection of how some things just "clicked" when somebody described a certain aspect of programming to you? How did they describe it? What method of learning was most efficient for you?</p>
<p>Should I go downwards and describe how code is represented in memory? Should I rant about analogies like cars inherits vehicle, with properties and car.Drive() etc??</p>
<p>Any suggestions are welcome!</p>
<p>Regards</p>
<p>Robert</p>
http://stackoverflow.com/questions/1719070/what-is-the-right-approach-when-using-stl-container-for-median-calculation0What is the right approach when using STL container for median calculation?R.A2009-11-12T00:32:32Z2009-11-21T14:34:03Z
<p>Let's say I need to retrieve the median from a sequence of 1000000 random numeric values.</p>
<p>If using anything <strong>but</strong> STL::list, I have no (built-in) way to sort sequence for median calculation. </p>
<p>If using STL::list, I can't randomly access values to retrieve middle (median) of sorted sequence.</p>
<p>Is it better to implement sorting myself and go with e.g. STL::vector, or is it better to use STL::list and use STL::list::iterator to for-loop-walk to the median value? The latter seems less overheadish, but also feels more ugly..</p>
<p>Or are there more and better alternatives for me?</p>
http://stackoverflow.com/questions/1769590/how-does-a-program-look-in-memory5How does a program look in memory?R.A2009-11-20T10:26:16Z2009-11-21T05:34:58Z
<p>How is a program (e.g. C or C++) arranged in computer memory? I kind of know a little about segments, variables etc, but basically I have no solid understanding of the <strong>entire</strong> structure.</p>
<p>Since the in-memory structure may differ, let's assume a C++ console application on Windows.</p>
<p>Some pointers to what I'm after specifically:</p>
<ul>
<li>Outline of a function, and how is it called?</li>
<li>Each function has a stack frame, what does that contain and how is it arranged in memory?</li>
<li>Function arguments and return values</li>
<li>Global and local variables?</li>
<li>const static variables?</li>
<li>Thread local storage..</li>
</ul>
<p>Links to tutorial-like material and such is welcome, but please no reference-style material assuming knowledge of assembler etc.</p>
http://stackoverflow.com/questions/1755670/architecture-for-extension-plugin-communication/1755687#17556871Answer by R.A for Architecture for extension/plugin communicationR.A2009-11-18T12:39:30Z2009-11-18T13:14:24Z<p>A key for your design decision is to analyze and get a clear picture of how different the plugins will be from eachother.</p>
<p>E.g. when dealing with static events, you will probably have to define each event as some form of token, enum, object etc. Having to define a new set of events for each plugin naturally works against your whole design, particularly in terms of loose coupling and reuse.</p>
<p>If your plugins are very different you might benefit from having a bus/messaging architecture since you in such case can introduce domains/categories of communication exchange, which the plugins can subscribe to. I.e. a range of events and messages can be in a certain interest domain. Note here that communication within a certain category can still utilize static events, so those two alternatives are not mutually exclusive. </p>
<p>Direct interfaces implemented by the plugins is in my experience the strictest approach of plugin architecture. Extending the plugin interface usually implies code modification at both plugin and provider. You need to have a solid general interface which you know your application can live on for quite some time.</p>
<p>It may be easier for you to deal with the design by breaking it down into two aspects - <strong>communication channel</strong> and <strong>protocol</strong>. Static event handling is a protocol issue, while bus-messaging and direct interfaces is a channel issue.</p>
<p>Generally I would say that the protocol is the hardest to design correctly from the beginning, since you may not have a solid feel for how general or specific you can draw the line.</p>
<p><strong>EDIT:</strong> Lars made an important point in his comment - if your platform supports exceptions, you can centralize a lot of the error handling when using direct interfaces, relieving the plugins from having to handle errors that are generic and perhaps outisde their particular domain (e.g. "plugin load error", or "file open failed"). However, such benefits will seem to fade if you have to maintain interfaces each time you add plugins. Worst case is when the interfaces start becoming inconsistent along the way because you didn't realize what they should support from the beginning. Refactoring the entire interface design when a substantial amount of plugins already have been conceived is not an easy task.</p>
http://stackoverflow.com/questions/1745878/benefits-the-win32-api-has-over-net1Benefits the Win32 API has over .NETR.A2009-11-17T00:41:02Z2009-11-17T01:57:02Z
<p>This is a rephrase of an <a href="http://stackoverflow.com/questions/1745808/is-the-ol-win32-api-on-its-way-to-the-grave-closed">earlier question</a>, which got chopped down badly by the community. Fair enough, it might have been too argumentative.</p>
<p>Since I'm really interested in what people here think about this, hopefully this more specific question will be accepted.</p>
<ul>
<li>Name a benefit which the Win32 API will still have over .NET in 3-5 years.</li>
</ul>
http://stackoverflow.com/questions/1745808/is-the-ol-win32-api-on-its-way-to-the-grave0Is the ol' Win32 API on its way to the grave? [closed]R.A2009-11-17T00:25:46Z2009-11-17T00:31:08Z
<p>Or has it any means of competing with .NET if we look 3-5 years into the future?</p>
<p>And lets leave the "legacy maintenance" argument out, since we should focus on benefits rather than economical dilemmas.</p>
http://stackoverflow.com/questions/1745617/top-5-things-an-ide-must-do/1745645#17456451Answer by R.A for Top 5 things an IDE must do?R.A2009-11-16T23:49:02Z2009-11-16T23:49:02Z<ol>
<li>Debugging</li>
<li>Configurable to many kinds of workflows (e.g. not forcing me to define/specify things I have no use of)</li>
<li>Have a workspace concept to group project items (obvious but still key functionality)</li>
<li>Support for custom builds (e.g. run my script after normal build)</li>
<li>Syntax highlightning</li>
</ol>
http://stackoverflow.com/questions/1717773/which-sorting-algorithm-is-used-by-stls-listsort3Which sorting algorithm is used by STL's list::sort()?R.A2009-11-11T20:15:19Z2009-11-16T18:23:54Z
<p>I have a list of random integers. I'm wondering which algorithm is used by the list::sort() method. E.g. in the following code:</p>
<pre><code>list<int> mylist;
// ..insert a million values
mylist.sort();
</code></pre>
<p><strong>EDIT: See also <a href="http://stackoverflow.com/questions/1717899/which-sorting-algorithm-is-used-by-microsofts-stllistsort">this more specific question</a>.</strong></p>
http://stackoverflow.com/questions/1729949/whats-my-big-o1What's my Big O?R.A2009-11-13T15:30:57Z2009-11-13T23:10:24Z
<p>My program of sorting values clocks at:</p>
<ul>
<li>100000 8s</li>
<li>1000000 82s</li>
<li>10000000 811s</li>
</ul>
<p>Is that O(n)?</p>
http://stackoverflow.com/questions/1721980/calculating-variance-with-large-numbers1Calculating variance with large numbersR.A2009-11-12T12:51:34Z2009-11-12T15:32:06Z
<p>I haven't really used variance calculation that much, and I don't know quite what to expect. Actually I'm not too good with math at all.</p>
<p>I have a an array of 1000000 random numeric values in the range 0-10000.</p>
<p>The array could grow even larger, so I use 64 bit int for sum.</p>
<p>I have tried to find code on how to calc variance, but I don't know if I get correct output.</p>
<p>The mean is 4692 and median is 4533. I get variance 1483780.469308 using the following code:</p>
<pre><code>// size is the element count, in this case 1000000
// value_sum is __int64
double p2 = pow( (double)(value_sum - (value_sum/size)), (double)2.0 );
double variance = sqrt( (double)(p2 / (size-1)) );
</code></pre>
<p>Am I getting a reasonable value? </p>
<p>Is anything wrong with the calculation?</p>
http://stackoverflow.com/questions/1717899/which-sorting-algorithm-is-used-by-microsofts-stllistsort1Which sorting algorithm is used by Microsoft's STL::list::sort()?R.A2009-11-11T20:39:09Z2009-11-12T04:39:42Z
<p><em>Note: I accidentally posted <a href="http://stackoverflow.com/questions/1717773/which-sorting-algorithm-is-used-by-stls-listsort">this question</a> without specifying which STL implementation I was using, and I felt it can't really be updated since it would render most of its answers obsolete.</em></p>
<p>So, the correct question goes - which sorting algorithm is used in the below code, assuming I'm using the STL library of Microsoft Visual C++?:</p>
<pre><code>list<int> mylist;
// ..insert a million values
mylist.sort();
</code></pre>
http://stackoverflow.com/questions/1706868/how-do-i-start-to-use-multithread-programming/1706914#17069140Answer by R.A for How do I start to use multithread programming?R.A2009-11-10T10:17:41Z2009-11-10T10:17:41Z<p>Maybe a bit controversial, but multithreading really cklicked for me when I attempted to solve a coding puzzle once. </p>
<p>The puzzle was about writing thread safe code without using mutexes. My first attempts were miserable but when I finally got it, it was like learning to ride a bike - I've never felt unsure about concurrency ever since.</p>
<p>Some times I've even stumbled upon programmers who have read books on the subject, but fails to understand simple things like the fact that a primitive assignment may sometimes not be an atomic operation. </p>
http://stackoverflow.com/questions/1514173/c-net-method-for-converting-character-codes-to-equivalent-chars1C#/.NET - Method for converting character codes to equivalent charsR.A2009-10-03T16:16:34Z2009-11-09T22:09:10Z
<p>After extracting a piece of text in my application, I might end up with a string like this:</p>
<pre><code>&#x22;More kitchen supplies for the people&#x22;
</code></pre>
<p>Which in plain text would be:</p>
<pre><code>"More kitchen supplies for the people"
</code></pre>
<p>Is there a component/method in .NET I can use to "process" the string into its plain text equivalent?</p>
<p>I'm able to assume regular ascii text in general, no odd unicode or strange alphabets. It just seems that normal signs like ', ", | etc. are provided as character codes.</p>
<p><strong>EDIT:</strong> I think I should note that this is about .NET for Windows desktop development. Appearantly there are methods to do this for ASP.NET only, and I didn't realize that simple operations like this could be limited to specific .NET platforms.</p>
http://stackoverflow.com/questions/1702128/can-i-use-agile-in-a-non-development-project/1702157#17021574Answer by R.A for Can I use Agile in a Non-Development project?R.A2009-11-09T16:32:22Z2009-11-09T16:32:22Z<p>Any project which can be broken down into sub-tasks with measurable time frames can be driven as Scrum. </p>
http://stackoverflow.com/questions/1664054/c-syntax-for-defining-instantiating-strings/1664087#16640871Answer by R.A for C++ - syntax for defining/instantiating stringsR.A2009-11-02T22:17:31Z2009-11-02T22:17:31Z<p>1)
It is a proper parameter declaration if function foo() doesn't mean to change the string. The 'const' keyword is used to signify that the string won't be changed by the receiver.
If you write code in foo() which modifies the string you will get compiler error/warning.</p>
<p>2)</p>
<pre><code>std::string theString = "Hello";
foo( theString );
</code></pre>
http://stackoverflow.com/questions/531502/vc-resources-in-a-static-library2VC++ resources in a static library R.A2009-02-10T08:39:48Z2009-10-27T14:10:33Z
<p>Is it possible to build resources into a static library and reuse them by simply linking with the library?</p>
<p>I'm primarily thinking about the case where you call a function in the library which in turn accesses resources.</p>
http://stackoverflow.com/questions/1622474/design-pattern-for-filtering-a-collection-of-items0Design pattern for filtering a collection of items?R.A2009-10-25T23:29:17Z2009-10-26T21:59:50Z
<p>Imagine the typical type of application where you have a list of items with different properties. E.g. a tree-view with 100 items, each having a <em>name</em>, a <em>rating</em>, a <em>rank-within-the-hottest-items-on-the-planet</em> etc. Probably there are also many-to-many relationships between <em>items</em> and <em>item-catalogs</em>, or between <em>items</em> and <em>item-creators</em> etc etc. </p>
<p>Now this application naturally needs a filtering system. E.g. where I can construct complex filters with multiple conditions of all kinds, between data in different relationships.</p>
<p>The design task of writing such a filtering feature ought to be something MANY developers have done and there surely must be some kind of design pattern which is the most suitable for the task.</p>
<p>Anyone? </p>
<p><strong>Edit:</strong> Switched to community wiki since I suspect there isn't any industry de factor pattern used for this. Question too generally formulated I guess.</p>
http://stackoverflow.com/questions/1618065/what-is-meaning-of-small-footprint-in-terms-of-programming/1618070#16180703Answer by R.A for What is meaning of small footprint in terms of programming ?R.A2009-10-24T13:52:57Z2009-10-24T14:16:33Z<p>Footprint designates the size occupied by your application in computer RAM memory.</p>
<p>Footprint can have different meaning when speaking about memory consumption.
In my experience, memory footprint often doesn't include memory allocated on the heap (dynamic memory), or resource loaded from disc etc. This is because dynamic allocations are non constant and may vary depending on how the application or module is used. When reporting "low footprint" or "high footprint", a constant or top measure of the required space is usually wanted.</p>
<p>If for example including dynamic memory in the footprint report of an image editor, the footprint would entirely depend on the size of the image loaded into the application by the user.</p>
<p>In the context of a third party library, the library author can optimize the static memory footprint of the library by assuring that you never link more code into your application binary than absolutely needed. A common method used for doing this in for instance C, is to distribute library functions to separate c-files. This is because most C linkers will link all code from a c-file into your application, not just the function you call. So if you put a single function in the c-file, that's all the linker will incoporate into your application when calling it. If you put five functions in the c-file the linker will probably link all of them into your app even if you only use one of them.</p>
<p>All this being said, the general (academic) definition of footprint includes all kinds of memory/storage aspects.</p>
http://stackoverflow.com/questions/1617559/is-joomla-a-good-choice-of-cms-for-mono-asp-net0Is Joomla a good choice of CMS for Mono/ASP.NET?R.A2009-10-24T10:05:24Z2009-10-24T13:33:27Z
<p>I'm about to start hacking my own website, hosted by my <a href="http://www.qnap.com/pro%5Fdetail%5Ffeature.asp?p%5Fid=82" rel="nofollow">QNAP Turbo NAS</a> server. I want to take the opportunity to learn ASP.NET and since the QNAP runs Apache I'll have to look into the <a href="http://mono-project.com/Main%5FPage" rel="nofollow">Mono project</a>. </p>
<p>Now, the qustion is, is <a href="http://www.joomla.org/" rel="nofollow">Joomla</a> a good CMS to use when ASP.NET is in the picture? I would really like to be able to design and code focused on ASP.NET and not drive down a bumpy road of configuration nightmares and hacks due to the CMS being fundamentally unsuitable for the task.</p>
<p>If Joomla is unsuitable for the task, is there some other which is right on?</p>
<p><em>Sidenote: The reason I'm looking at Joomla for the moment is because the QNAP has it ready as a nice effortlessly installable plugin. I'm not really a "Linux guy" and would be glad if I don't have to setup the CMS manually through an SSH client.</em></p>
http://stackoverflow.com/questions/197444/building-libcurl-with-ssl-support-on-windows4Building libcurl with SSL support on WindowsR.A2008-10-13T12:39:40Z2009-10-14T09:52:49Z
<p>Hi,</p>
<p>I'm using libcurl in a Win32 C++ application.</p>
<p>I have the curllib.vcproj project added to my solution and set my other projects to depend on it.</p>
<p>How do I build it with SSL support enabled?</p>
http://stackoverflow.com/questions/197444/building-libcurl-with-ssl-support-on-windows/199052#1990524Answer by R.A for Building libcurl with SSL support on WindowsR.A2008-10-13T21:14:15Z2009-10-14T09:52:49Z<p>Well, since this post failed badly, I had to dig into the matter myself. </p>
<p>So here goes:</p>
<h2>Preprocessor</h2>
<p>The following two symbols need to be fed to the preprocessor to enable SSL for libcurl:</p>
<pre><code>USE_SSLEAY
USE_OPENSSL
</code></pre>
<p>(libcurl uses OpenSSL for SSL support)</p>
<p>Alternatively the symbols can be added directly to a file called setup.h in libcurl, but I'm not too happy about modifying code in 3rd party distributions unless I really have to.</p>
<p>Rebuilding the libcurl library, I now got some errors about OpenSSL include files not being found. Naturally, since I haven't set up the OpenSSL distribution properly yet.</p>
<h2>Compiling OpenSSL binaries</h2>
<p>I downloaded the OpenSSL 0.9.8 source distribution and unpacked it.</p>
<p>In the root of the source distribution there's a file called INSTALL.W32 which describes how to compile the OpenSSL binaries. The build chain requires perl, so I installed the latest version of ActivePerl.</p>
<p>I had some trouble with the build, which might not be applicable to all systems, but I'll go through it here in case somebody experiences the same.</p>
<p>According to INSTALL.W32:</p>
<p>Run the following commandline tasks with current directory set to the source distribution root:</p>
<p><strong>1> perl Configure VC-WIN32 --prefix=c:/some/openssl/dir</strong></p>
<p>(Where "c:/some/openssl/dir" should be replaced by the dir where OpenSSL should be installed. Don't use spaces in this path. The compilation further ahead will fail in that case)</p>
<p><strong>2> ms\do_ms</strong></p>
<p>(For me this step was unsuccessful at first, since I lacked the environment variables OSVERSION and TARGETCPU. I set these to <em>5.1.2600</em> and <em>x86</em> respectively. You may get complaint about OSVERSION being "insane", but look closer, this error is for WinCE and doesn't affect the Win32 setup.)</p>
<p><strong>3> nmake -f ms\nt.mak (for static library)</strong></p>
<p>or</p>
<p><strong>3> nmake -f ms\ntdll.mak (for DLL)</strong></p>
<p>The source now compiles. Took approx 5 minutes on my laptop.</p>
<p>When compilation is completed, the libs or binaries have been placed in:</p>
<p><strong>distroot/out32</strong> - for static library build</p>
<p>or</p>
<p><strong>distroot/out32dll</strong> - for DLL build</p>
<h2>Building and linking</h2>
<p>Now, back to visual studio and point out the libs and include path for headers. The include files are located in <strong>distroot/inc32/openssl</strong>.</p>
<p>Rebuild the libcurl project. </p>
<p><strong>Error!</strong> </p>
<p>Well at least for me with this version of OpenSSL.
it complained about a struct typedef in one of the OpenSSL headers. I couldn't find any info on this. After an hour of googling I broke my own principle and commented out the typedef from the OpenSSL header, and luckily libcurl wasn't using that symbol so it built fine.</p>
<p>Now, for confirming that SSL support is enabled for libcurl, run the following code:</p>
<pre><code>curl_version_info_data * vinfo = curl_version_info( CURLVERSION_NOW );
if( vinfo->features & CURL_VERSION_SSL )
// SSL support enabled
else
// No SSL
</code></pre>
<p><hr /></p>
<p>Simple as that.</p>
<p>Regards.</p>
<p>/Robert</p>
http://stackoverflow.com/questions/1873420/stl-iterator-why-is-the-code-analysis-tool-complaining/1873439#1873439Comment by R.A on STL iterator - why is the code analysis tool complaining?R.A2009-12-09T11:59:12Z2009-12-09T11:59:12Z-1. Read the code properly please. The 'delete' is performed on what it is pointing at (*it) and not 'it' itself. I.e. '*it' is not being used after the delete.http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825959#1825959Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T14:49:24Z2009-12-01T14:49:24Z@Adrian: Fair enough about dynamic casting, but I really can't accept the argument about anything is possible with enough work. It's irrelevant. With enough work I can rebuild my toyota to drive under water with 15 passengers, but then it's not a toyota anymore.http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825701#1825701Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T13:23:46Z2009-12-01T13:23:46Z@Bluebird: Please describe how you would do that.http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825701#1825701Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T13:11:30Z2009-12-01T13:11:30Z@Sachin: To win you need to compete in the same sport as the looser.http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825699#1825699Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T13:04:51Z2009-12-01T13:04:51Z@Clifford: Oh Clifford...http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825959#1825959Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T12:58:51Z2009-12-01T12:58:51Z@Charles: Yes it's debatable. The administration of inheritance and polymorphism is not a feature of polymorphism itself in C++. However, RAII is by definition a concept about implicit resource management. So I would say that constructor-like and destructor-like idioms can be achieved in C, but you'll never have RAII.http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825699#1825699Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T12:25:43Z2009-12-01T12:25:43Z@Sachin: This is a comment to the answer posted by "pmg", which I downvoted. I haven't downvoted your <i>question</i>.http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825700#1825700Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T12:19:03Z2009-12-01T12:19:03Z@Sachin: You can fake virtual functions in C.http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825689#1825689Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T12:17:42Z2009-12-01T12:17:42Z@Sachin: On platforms where you can't use ellipsis there's usually a special printf-like function provided. The thing to remember is that when you see a function declared like this( arg, ... ), i.e with the three dots, you should know that it might not be portable.http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825699#1825699Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T12:14:05Z2009-12-01T12:14:05Z
-1, you have a point but you should decorate such a claim with arguments. Faking polymorphism is one thing, but I can't see how you'll do RAII, overloading by argument list or complex cast to name a few. Yeah sure you can do anything in assembler or microcode, but the question at hand is not about what your processor is capable of
http://stackoverflow.com/questions/1825658/features-of-c-that-cant-be-implemented-in-c/1825689#1825689Comment by R.A on Features of C++ that can't be implemented in C?R.A2009-12-01T11:53:22Z2009-12-01T11:53:22ZPlease note that ellipsis (variable number of arguments) isn't neccesarily supported on all platforms.http://stackoverflow.com/questions/1786887/from-visual-studio-to-vim-or-emacsComment by R.A on From Visual Studio to Vim or Emacs?R.A2009-11-24T00:17:22Z2009-11-24T00:17:22Z@Greg: My comment was also serious. It's a good answer. I'm not pointing finger at you.http://stackoverflow.com/questions/1786887/from-visual-studio-to-vim-or-emacsComment by R.A on From Visual Studio to Vim or Emacs?R.A2009-11-24T00:07:34Z2009-11-24T00:07:34Z@Greg: Well let's hope you get some rep for your trouble before it's closed.http://stackoverflow.com/questions/1786661/semicolon-after-classes-and-structsComment by R.A on Semicolon after classes and structsR.A2009-11-23T23:04:34Z2009-11-23T23:04:34Z@Charles: Indeed, thankshttp://stackoverflow.com/questions/1786661/semicolon-after-classes-and-structsComment by R.A on Semicolon after classes and structsR.A2009-11-23T23:02:24Z2009-11-23T23:02:24Z@Jimmy: sounds like a bug