User BCS - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:04:55Z http://stackoverflow.com/feeds/user/1343 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1574456/windows-version-of-the-gdb-frontend-ddd 0 windows version of the GDB frontend DDD BCS 2009-10-15T19:16:26Z 2009-11-25T19:09:04Z <p>Is there a native (not cygwin) version of <a href="http://www.gnu.org/software/ddd/" rel="nofollow">DDD</a> available for download somewhere?</p> http://stackoverflow.com/questions/1282499/mixed-types-in-a-logic-tree-in-c 0 Mixed types in a logic tree in c# BCS 2009-08-15T18:22:45Z 2009-11-25T05:46:33Z <p>I have an UGLY logic tree that I'm looking at ways replace with some code generated from a table. It branches based on several thing:</p> <ul> <li>the length of a <code>List&lt;AbstractType&gt;</code></li> <li>the actual types in the list</li> <li>a flags <code>enum</code></li> </ul> <p>My basic idea is to build some kind of decision tree from by input table. For the list length and flags that's easy (a <code>switch</code>), but what about the types bit?</p> <p><a href="http://stackoverflow.com/questions/708911/switch-case-on-type-of-object-c">This question</a> suggests that polymorphism is a good idea but that would mix concerns and strew code to the four winds in my case (and doesn't lend its self to generation anyway). The other suggested solution (<code>IDictionary&lt;Type, DelegateType&gt;</code>) might work but seem a little ugly.</p> <p>Does anyone have any suggestions.</p> http://stackoverflow.com/questions/1734117/how-much-time-and-effort-to-develop-a-full-programming-language-compiler-and-ide/1738946#1738946 0 Answer by BCS for How much time and effort to develop a full programming language, compiler and IDE? BCS 2009-11-15T21:41:15Z 2009-11-15T21:41:15Z <p>About a <a href="http://www.digitalmars.com/d/1.0/changelog1.html#new000" rel="nofollow">decade</a> (and counting).</p> http://stackoverflow.com/questions/1570549/looking-for-a-gui-debugger-that-runs-on-windows-and-can-remote-debug-on-linux 0 Looking for a GUI debugger that runs on windows and can remote debug on Linux BCS 2009-10-15T06:05:59Z 2009-11-13T20:13:53Z <p>The current setup is that I'm developing a program for Linux (and debugging the binary with GDB via SSH), but using Eclipse and a remote file mount to do the editing from a Windows box. I'd really love to be able to debug in eclipse but I haven't yet found anything that would work. </p> <p>Anyone know of anything I should look at?</p> <p>BTW: I'm willing to use non eclipse tool but can't afford to buy anything.</p> http://stackoverflow.com/questions/1726126/is-the-board-game-go-np-complete/1727197#1727197 0 Answer by BCS for Is the board game "Go" NP complete? BCS 2009-11-13T04:52:17Z 2009-11-13T04:52:17Z <p>Even if Go is merely in <code>P</code> it could still be something horrendous like <code>O(n^m)</code> where <code>n</code> is the number of spaces and <code>m</code> is some (large) fixed number. Even being in <code>P</code> doesn't make something reasonable to compute. </p> http://stackoverflow.com/questions/596666/3d-models-on-html-page 2 3D models on HTML page BCS 2009-02-27T20:58:14Z 2009-11-13T00:10:36Z <p>I have 3D CAD model that I want to show on a web page. I'd like to show it in a form like a <code>&lt;img&gt;</code> tag (e.g. inline with everything else rather than as a separate page) and I want the visitor to be able to rotate the model to view it from different perspectives.</p> <p>What options do I have?</p> <p>Things I'm thinking of/looking at</p> <ul> <li><a href="http://en.wikipedia.org/wiki/VRML" rel="nofollow">VRML</a></li> <li><a href="http://en.wikipedia.org/wiki/3DXML" rel="nofollow">3DXML</a></li> <li>flash</li> <li>PDF has something that works but it doesn't embed like I want</li> <li><a href="http://en.wikipedia.org/wiki/3DMLW" rel="nofollow">3DMLW</a> (Seems very slow)</li> <li><a href="http://en.wikipedia.org/wiki/U3D" rel="nofollow">Universal 3D</a> (supported by Adobe Reader)</li> </ul> <p><hr /></p> <p><em>Edit:</em> The model is not very complex so perf is not a major concern.</p> http://stackoverflow.com/questions/1711797/how-to-store-state-on-a-node-for-a-visitor-pattern 0 How to store state on a node for a visitor pattern? BCS 2009-11-10T22:47:58Z 2009-11-11T01:08:39Z <p>I have an architecture that uses the visitor pattern to implement a number of passes over a tree (an AST as it happens). In one of the passes I need to associate some data with a node (<code>nodeX</code>) and then from some point below it get my data from a reference to the <code>nodeX</code>. I want to do this in a way that doesn't push the implementation of the visitor/pass into the tree nodes.</p> <p><em>Is there some neat way to make that work?</em></p> <p>Ideas:</p> <ul> <li><code>void*</code> on each node (ugly, not type safe)</li> <li><code>hash_map&lt;Node,Data&gt;</code> (not as clean as I'd like, and who owns it?)</li> </ul> http://stackoverflow.com/questions/1711795/linux-shell-how-to-read-command-argument-from-a-file/1711815#1711815 2 Answer by BCS for linux shell: How to read command argument from a file? BCS 2009-11-10T22:50:59Z 2009-11-10T22:50:59Z <p>my preference is</p> <pre><code>kill -9 `cat pid` </code></pre> <p>that will work for any command in the backticks.</p> http://stackoverflow.com/questions/466917/natural-language-parser-for-dates-net/1711278#1711278 0 Answer by BCS for Natural language parser for dates (.NET)? BCS 2009-11-10T21:20:41Z 2009-11-10T21:20:41Z <p>I've built <a href="http://smplsite.com/naturaldate/" rel="nofollow">this library</a> as part of a project at work. It's not totally polished but if you are interested, I can put some more work into it and/or arrange a license for your needs. </p> http://stackoverflow.com/questions/762322/add-service-reference-is-failing-in-vs 0 "Add Service Reference" is failing in VS BCS 2009-04-17T21:46:29Z 2009-11-10T00:08:43Z <p>In MS's Visual Web Developer, I have a completely default ASP.NET web service project and another project. When use the right click menu on the second project to run "Add Service Reference", I can find the first project listed as an option but I get an error when I attempt to select it, I get an error</p> <pre> Metadata contains a reference that cannot be resolved: 'http://0.0.0.0:3495/Service1.asmx?wsdl'. There was an error downloading 'http://0.0.0.0:3495/Service1.asmx?wsdl'. Unable to connect to the remote server The requested address is not valid in its context 0.0.0.0:3495 Metadata contains a reference that cannot be resolved: 'http://localhost:3495/Service1.asmx'. Metadata contains a reference that cannot be resolved: 'http://localhost:3495/Service1.asmx'. If the service is defined in the current solution, try building the solution and adding the service reference again. </pre> <p>I have gotten the same problem when using WCF services also.</p> <p>What am I doing wrong?</p> <p><hr /></p> <p>I found <a href="http://www.15seconds.com/Issue/010430.htm" rel="nofollow">this reference</a> that has <a href="http://aspnet.15seconds.com/010430/SampleService.asmx" rel="nofollow">this service</a> and things work with that. (<em>WhyT</em> doesn't the <strong>default</strong> service just work?*)</p> http://stackoverflow.com/questions/724377/prolog-to-sql-converter 4 prolog to SQL converter. BCS 2009-04-07T06:42:08Z 2009-11-05T18:12:27Z <p>Without thinking to much, it seems to me that a large set of Prolog's functionality could be implemented as relational calculus (a.k.a. SQL). </p> <p>Has anyone heard of any tools to automatically convert Prolog to SQL?</p> http://stackoverflow.com/questions/358052/c-antlr-grammar 4 C# ANTLR grammar? BCS 2008-12-11T00:00:20Z 2009-11-02T05:46:15Z <p>I'm looking for turn-key <a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> grammar for C# that generates a usable Abstract Syntax Tree (AST) and is either back-end language agnostic or targets C#, C, C++ or D.</p> <p>It doesn't need to support error reporting.</p> <p>P.S. I'm not willing to do hardly any fix-up as the alternative is not very hard.</p> http://stackoverflow.com/questions/493536/can-one-executable-be-both-a-console-and-gui-app 7 Can one executable be both a console and GUI app? BCS 2009-01-29T21:32:07Z 2009-10-27T15:12:53Z <p>I'm wanting to make a c# program that can be run as a CLI or GUI app depending on what flags are passed to it. Can this be done?</p> <p>I have found these related questions but they don't exactly cover my situation:</p> <ul> <li><a href="http://stackoverflow.com/questions/192294/how-to-write-to-the-console-in-a-gui-application">How to write to the console in a GUI application</a></li> <li><a href="http://stackoverflow.com/questions/191842/how-do-i-get-console-output-in-c-with-a-windows-program">How do I get console output in C++ with a Windows program?</a></li> </ul> http://stackoverflow.com/questions/1606477/make-all-sundays-red-on-month-calendar-in-c/1608178#1608178 1 Answer by BCS for Make all sundays Red on month calendar in c# BCS 2009-10-22T15:50:07Z 2009-10-22T15:50:07Z <p>I've done this in ASP.Net by using a per date event that can be used. Just check the day-of-the-week for the current day and if it checks out update the style (or whatever) of the current day.</p> <p>If your looking at WinForms, I'd assume it would have something similar. I don't remember what the bits are named but that shouldn't be hard to find.</p> http://stackoverflow.com/questions/1506835/what-should-be-used-to-check-identity-in-c 3 What should be used to check identity in C++? BCS 2009-10-01T22:23:55Z 2009-10-19T21:04:09Z <p>I have two pointers to objects and I want to test if they are the exact same object in the most robust manner. I explicitly do not want to invoke any <code>operator ==</code> overloads and I want it to work no matter what base classes, virtual base classes and multiple inheritance is used.</p> <p>My current code is this:</p> <pre><code>((void*)a) == ((void*)b) </code></pre> <p>And for my case this works. However, that doesn’t work for this case:</p> <pre><code>class B1 {}; class B2 {}; class C : public B1, public B2 {} C c; B1 *a = &amp;c; B2 *b = &amp;c; </code></pre> <p>Subbing in <code>reinterpert_cast</code>, <code>static_cast</code> or <code>dynamic_cast</code> doesn't work either.</p> <p><hr /></p> <p>Particularly I'm hoping for something that ends up really simple and efficient. Ideally it wouldn't require any branch instructions to implement and would do something like, adjust the pointer to the start of the object and compare.</p> http://stackoverflow.com/questions/1256430/why-is-my-asp-net-page-injecting-this-webresource-axd-javascript-file 1 Why is my ASP.NET page injecting this WebResource.axd Javascript file? BCS 2009-08-10T18:26:56Z 2009-10-19T14:14:18Z <p>When I view source on my ASP.NET page I get the following snippet:</p> <pre><code>&lt;script type="text/javascript"&gt; //&lt;![CDATA[ var theForm = document.forms['form1']; if (!theForm) { theForm = document.form1; } function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } //]]&gt; &lt;/script&gt; &lt;script src="/WebResource.axd?d=5lheyan7fritNTjDRpG8vA2&amp;amp;t=633734967316503584" type="text/javascript"&gt;&lt;/script&gt; </code></pre> <p>the .aspx file looks kinda like this:</p> <pre><code>&lt;%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="NaturalDateDemo._Default" %&gt; &lt;form id="form1" runat="server" enableviewstate="False"&gt; Enter something to parse:&lt;br /&gt; &lt;asp:TextBox ID="TextBox1" runat="server" Width="270px"&gt;&lt;/asp:TextBox&gt; &lt;asp:Button ID="Button1" runat="server" Text="Parse" PostBackUrl="Default.aspx" CausesValidation="False" EnableViewState="False" UseSubmitBehavior="true" /&gt; &lt;/form&gt; </code></pre> <p>Both of the chunks of code (the literal code and the stuff in <code>/WebResource.axd</code>) seem to be related to doing <strong>JavaScript</strong> based post-backs and I can't think of any reason that my page would require <strong>JavaScript</strong> to do the post-backs.</p> <ul> <li>What is this doing?</li> <li>Where is it coming from?</li> <li><em>Can</em> I get rid of it?</li> <li><em>How</em> can I get rid of it?</li> </ul> <p><a href="http://smplsite.com/NaturalDate/Default.aspx" rel="nofollow">The page this question is coming from</a></p> <p><hr /></p> <p>A little Google work found <a href="http://forums.asp.net/t/1331497.aspx" rel="nofollow">this</a> indicating that <em>validation controls</em> would cause this, but I don't think I have any validation controls.</p> <p>Looking at the <code>WebResource.axd</code> file in detail shows a lot of what looks to be boiler plate function that I can't find any references to from anywhere.</p> <p><hr /></p> <p>After further investigation it seem that my submit button is not be doing what I thought it was because it has some JavaScript in its <code>onclick</code> handler. However using FireBug I can see that the page is doing a full refresh (the HTTP response has the full page text) so I have no clue what that's about. OTOH I'm now seeing an <code>__EVENTVALIDATION</code> argument that shouldn't be there (because there is nothing to validate) so that might be interesting to look up.</p> <p><hr /></p> <p>It seems based on the answerer below that what I'm running into is that the default (only?) way for ASP.NET to do a post-back is via JavaScript even when a basic HTML Form would do just fine. (Personally I think this is a stupid design choice on MS part; ASP.NET shouldn't introduce the JavaScript dependency until you ask it to do something that can't be done without it.)</p> <p>Based on that opinion, several people have speculated that I don't know what I'm talking about. (I will grant that I confused the issue by miss using the term "post-back", thinking it only implies JS based stuff.) While I don't know the implementation details of ASP.NET, I do known how the general HTTP POST stuff works and my opinion is based on considering how I would implement the solution my self and not just based on how I would like it to work.</p> http://stackoverflow.com/questions/616207/d-function-using-the-x86-cmpxchg-compare-and-swap 3 D function using the x86 CMPXCHG Compare-and-swap BCS 2009-03-05T19:14:10Z 2009-10-19T04:00:07Z <p>I'm looking for a function that presents a high level <a href="http://www.digitalmars.com/d/1.0/" rel="nofollow">D</a> interface to an <a href="http://en.wikipedia.org/wiki/Compare-and-swap" rel="nofollow">atomic CAS</a> on Intel x86.</p> <p>I know I can do it with inline ASM (and if needed I will), but I'd rather just grab code from someone else if I can.</p> http://stackoverflow.com/questions/668830/does-x86-have-an-atomic-increment-that-keeps-the-value-that-was-stored 4 Does x86 have an atomic increment that keeps the value that was stored? BCS 2009-03-21T05:59:37Z 2009-10-19T03:19:07Z <p>I have found <code>lock inc REG</code> but that doesn't keep a copy around and even a read after it could come after a competing write.</p> <p>The best solution I have found is a <code>load</code>/<code>inc</code>/<a href="http://en.wikipedia.org/wiki/Compare%5Fand%5Fswap" rel="nofollow"><code>cas</code></a> loop.</p> http://stackoverflow.com/questions/1570547/you-are-not-so-tough-without-your-car-fastest-lookup-list/1570568#1570568 2 Answer by BCS for You are not so tough without your car. Fastest lookup list. BCS 2009-10-15T06:12:11Z 2009-10-15T06:12:11Z <p>If the set is fixed, look into perfect hash functions.</p> http://stackoverflow.com/questions/373324/how-to-escape-everything-in-a-block-in-html 3 How to escape everything in a block in HTML BCS 2008-12-17T00:51:40Z 2009-10-07T23:02:30Z <p>I seem to recall that there is an HTML tag that escapes absolutely everything inside it except the matching closing tag. Kind of like <a href="http://www.htmlref.com/reference/AppA/tag_plaintext.htm" rel="nofollow"><code>&lt;plaintext&gt;</code></a> but not fundamentally broken.</p> http://stackoverflow.com/questions/1517483/how-to-use-hashmap-with-char-and-do-string-compare 1 How to use hash_map with char* and do string compare? BCS 2009-10-04T21:56:50Z 2009-10-04T23:01:19Z <p>I was using <code>std::hash_map&lt;char*,T&gt;</code> and somehow managed to make it work but have now discovered that the default compare function, <code>euqal_to&lt;char*&gt;</code> does a pointer compare rather than a string compare. I've fixed this by making my own compare type (using C's <code>strcmp</code> and it's about 5 LOC) but I'd be slightly shocked if there wasn't one already as part of the STL.</p> <p><em>So, is there a comparator for doing string comparison?</em></p> <p><hr /></p> <p><a href="http://gcc.gnu.org/ml/libstdc++/2001-05/msg00202.html" rel="nofollow">Related link</a></p> http://stackoverflow.com/questions/308073/how-do-i-build-a-lr-state-machine-parser 0 How do I build a LR state machine parser? BCS 2008-11-21T06:53:56Z 2009-10-03T22:37:58Z <p>I'm wanting to play around with creating an LR parser generators. Does anyone know of a good (free) resource describing how to create a state machine table from a grammar? </p> http://stackoverflow.com/questions/1343192/c-with-eclipse-without-a-tool-chain 0 C++ with Eclipse without a tool chain? BCS 2009-08-27T19:08:44Z 2009-10-03T16:35:19Z <p>I have a C++ project that has to build on Linux but I don't have a Linux machine set up to run any kind of GUI (they all have no monitors). So the question is, can I use eclipse to develop via a file share and build via SSH? I've been doing this and aside from putting lots of ware on <code>alt+tab</code> the only problem seems to be that auto-complete doesn't work right. Based on the error messages I'm getting, I think this is a result of not having either a compiler or include directory hooked up.</p> <p><em>Does anyone have any experience working with this type of setup?</em></p> <p><hr /></p> <p>People seem to be looking at the "how to make things seamless" bit of my problem. What I'm more interested in is the <em>"how to make Eclipse's editing stuff works as at all"</em> bit.</p> <p>All the proposed solutions that amount to "get set up to develop on Linux" are worse than the problem (the problem is mostly a nascence issue and I can work around it if I want to) </p> http://stackoverflow.com/questions/431594/compression-to-improve-harddisk-write-performance 7 Compression to Improve Harddisk Write Performance BCS 2009-01-10T19:31:48Z 2009-10-03T12:16:59Z <p>On a modern system can local harddisk write speeds be improved by compressing the output stream?</p> <p>This question derives from a case I'm working with where a program serially generates and dumps around 1-2GB of text logging data to a raw text file on the hard disk and I think it is IO bound. Would I expect to be able to decrease runtimes by compressing the data before it goes to disk or would the overhead of compression eat up any gain I could get? Would having an idle second core effect this?</p> <p>I know this would be effected by how much CPU is being used to generate the data so rules of thumb on how much idle cpu time would be needed would be good.</p> <p><hr /></p> <p>I recall a video talk where someone used compression to improve read speeds for a database but IIRC compressing is a lot more CPU intensive than decompressing.</p> http://stackoverflow.com/questions/385132/proper-best-type-for-storing-latitude-and-longitude 1 proper/best type for storing latitude and longitude BCS 2008-12-21T23:07:48Z 2009-10-01T06:13:50Z <p>In a system level programming language like C, C++ or D, what is the best type/encoding for storing latitude and longitude?</p> <p>The options I see are:</p> <ul> <li>IEEE-754 FP as degrees or radians</li> <li>degrees or radians stored as a fixed point value in an 32 or 64 bit int</li> <li>mapping of an integer range to the degree range: -> <code>deg = (360/2^32)*val</code></li> <li>degrees, minutes, seconds and fractional seconds stored as bit fields in an int</li> <li>a struct of some kind.</li> </ul> <p>The easy solution (FP) has the major down side that it has highly non uniform resolution (somewhere in England it can measure in microns, over in Japan, it can't). Also this has all the issues of FP comparison and whatnot. The other options require extra effort in different parts of the data's life cycle. (generation, presentation, calculations etc.)</p> <p>One interesting option is a floating precision type that where as the Latitude increase it gets more bits and the Longitude gets less (as they get closer together towards the poles).</p> <p>Related questions that don't quite cover this:</p> <ul> <li><a href="http://stackoverflow.com/questions/159255/">What is the ideal data type to use when storing latitude / longitudes in a MySQL</a></li> <li><a href="http://stackoverflow.com/questions/120283/">Working with latitude/longitude values in Java</a></li> </ul> <p><hr /></p> <p>BTW: 32 bits gives you an E/W resolution at the equator of about 0.3 in. This is close to the scale that high grade GPS setups can work at (IIRC they can get down to about 0.5 in in some modes)</p> <p>I don't have a specific use in mind right now but have worked with this kind of thing before and expect to again, at some point.</p> http://stackoverflow.com/questions/23836/what-is-the-best-simple-install-system-for-xp-vista 2 What is the "best" simple install system for XP/Vista? BCS 2008-08-23T01:50:44Z 2009-09-30T17:57:15Z <p>Heavy emphasis on simple. I've never made an installer and I'd rather not have to learn much. A system that I could hand a pile of files to and it would make some smart guesses about where to put them would be ideal.</p> <p>Go ahead and answer the general question.</p> <p>However In my cases I'm stuck with some extra constraints. The program to be installed is written in VB6 (or is it 5?) and a few previous versions of VB, so it's <em>not</em> going to be updated any time soon. I have a running install and will have a Clean VM to play with So I'll be doing a loop of: run the install, find where it's broken, fix it, add that to the installer, revert the VM, try again. If anyone has a better approach I'm open to suggestions.</p> <p>I <em>MUST</em> get it working on XP and I'd really like to also have something that will work on Vista as well.</p> http://stackoverflow.com/questions/1487815/what-could-be-causing-this-crash 2 What could be causing this crash? BCS 2009-09-28T15:51:40Z 2009-09-28T20:32:17Z <p>I have a C++ program (GCC) and when I add one or more int members to an abstract base class, the program starts crashing. In the case I've exampled, it seems that by adding this member, a member in a derived class quits getting initialized (or gets stomped on at some point). If I add more members, it starts (not) working different. This is all really odd because the member is never used anywhere. I can comment out that one line and the program recompile just fine and runs without error.</p> <p>The whole program is ~3KLOC and would be very hard to strip down.</p> <p><em>I'm totally at a loss as to where to start looking. Any Ideas?</em></p> <p><hr /></p> <h2>Update</h2> <p>I found the issue: <code>free</code>-ing <code>malloc</code>-ed memory and <code>delete</code>-ing <code>new</code>-ed memory is not safe in the same program.</p> http://stackoverflow.com/questions/1481677/how-to-provide-a-explicit-specialization-to-only-one-method-in-a-c-template-cla 3 How to provide a explicit specialization to only one method in a C++ template class? BCS 2009-09-26T17:20:22Z 2009-09-26T18:27:39Z <p>I have a template class that looks something like this:</p> <pre><code>template&lt;class T&gt; class C { void A(); void B(); // Other stuff }; template&lt;class T&gt; void C&lt;T&gt;::A() { /* something */ } template&lt;class T&gt; void C&lt;T&gt;::B() { /* something */ } </code></pre> <p>What I want is to provide an explicit specialization for only <code>A</code> while retaining the default for <code>B</code> and the "other stuff".</p> <p>What I have tried so far is</p> <pre><code>class D { }; template&lt;&gt; void C&lt;D&gt;::A() { /*...*/ } // Gives a link error: multiple definition </code></pre> <p>Every other variant I've attempted fails with parse errors.</p> <p><hr /></p> <h2>What I did:</h2> <p>The original problem was that the explicit specialization was in a header file so it was getting dumped into several object files and messing up the link (Why doesn't the linker notice all the instances of the symbol are the same a just shut up?)</p> <p>The solution ends up being to move the explicit specialization from the header file to a code file. However to make the other users of the header file not instance the default version, I needed to place a prototype back in the header. Then to get GCC to actually generate the explicit specialization, I needed to place a dummy variable of the correct type in the code file. </p> http://stackoverflow.com/questions/1480085/whats-going-on-with-overriding-and-overloading-here-in-c 3 What's going on with overriding and overloading here in C++? BCS 2009-09-26T00:29:47Z 2009-09-26T01:04:31Z <p>This doesn't work:</p> <pre><code>class Foo { public: virtual int A(int); virtual int A(int,int); }; class Bar : public Foo { public: virtual int A(int); }; Bar b; int main() { b.A(0,0); } </code></pre> <p>It seems that by overriding <code>Foo::A(int)</code> with <code>Bar::A(int)</code> I have somehow hidden <code>Foo::A(int,int)</code>. If I add a <code>Bar::A(int,int)</code> things work.</p> <p><em>Does anyone have a link to a good description of what's going on here?</em></p> http://stackoverflow.com/questions/1470217/usage-of-d-in-the-field/1478426#1478426 1 Answer by BCS for Usage of D in the Field BCS 2009-09-25T16:55:45Z 2009-09-25T16:55:45Z <p>The primary impediment to wide spread use of D is the lack of a 1st class IDE (like VS), immature tools sets and libraries. The IDE issue is improving with <a href="http://www.dsource.org/projects/descent" rel="nofollow">Descent</a> and it is expected/planed that once D version 2 comes out the the two libraries will merge. The tools issue is also improving but more slowly. (IIRC there has been some progress as of late on getting D support in the official GDB) </p> http://stackoverflow.com/questions/1282499/mixed-types-in-a-logic-tree-in-c/1794912#1794912 Comment by BCS on Mixed types in a logic tree in c# BCS 2009-11-25T19:12:32Z 2009-11-25T19:12:32Z hyper Link ???? http://stackoverflow.com/questions/1574456/windows-version-of-the-gdb-frontend-ddd/1796902#1796902 Comment by BCS on windows version of the GDB frontend DDD BCS 2009-11-25T19:09:26Z 2009-11-25T19:09:26Z beaverdbg looks interesting... http://stackoverflow.com/questions/1734117/how-much-time-and-effort-to-develop-a-full-programming-language-compiler-and-ide/1738946#1738946 Comment by BCS on How much time and effort to develop a full programming language, compiler and IDE? BCS 2009-11-17T03:21:04Z 2009-11-17T03:21:04Z It might well have been minimally useful for v0.01, but no minimally useful language will ever be as good as a really useful one no mater how tailored it is to your needs. http://stackoverflow.com/questions/1570549/looking-for-a-gui-debugger-that-runs-on-windows-and-can-remote-debug-on-linux/1731609#1731609 Comment by BCS on Looking for a GUI debugger that runs on windows and can remote debug on Linux BCS 2009-11-13T22:36:26Z 2009-11-13T22:36:26Z Can this be made to work with only GDB and eclipse on the windows machine? http://stackoverflow.com/questions/1711795/linux-shell-how-to-read-command-argument-from-a-file Comment by BCS on linux shell: How to read command argument from a file? BCS 2009-11-10T22:59:35Z 2009-11-10T22:59:35Z I think it's the <code>more</code> bit that is killing it b/c <code>more</code> might be expecting user input. http://stackoverflow.com/questions/87771/how-can-i-multiply-two-64bit-numbers-using-x86-assembly-language/87884#87884 Comment by BCS on How can I multiply two 64bit numbers using x86 assembly language? BCS 2009-11-10T20:02:43Z 2009-11-10T20:02:43Z the 32x32=64 asm might be the cheat. http://stackoverflow.com/questions/1607378/word-tearing-on-x86 Comment by BCS on Word Tearing on x86 BCS 2009-10-22T15:44:45Z 2009-10-22T15:44:45Z I assume you are looking at dirty writes of the adjacent addresses? http://stackoverflow.com/questions/1586716/is-it-possible-to-write-code-that-will-cause-long-compile-times Comment by BCS on Is it possible to write code that will cause long compile times? BCS 2009-10-19T03:56:16Z 2009-10-19T03:56:16Z Try the ackermann function in template code. Factorial in o(n!) might also do well. http://stackoverflow.com/questions/1570549/looking-for-a-gui-debugger-that-runs-on-windows-and-can-remote-debug-on-linux/1570567#1570567 Comment by BCS on Looking for a GUI debugger that runs on windows and can remote debug on Linux BCS 2009-10-15T06:20:06Z 2009-10-15T06:20:06Z That's nice to know, but I need something that works on an arbitrary binary. (I didn't know that would make a difference) http://stackoverflow.com/questions/1570549/looking-for-a-gui-debugger-that-runs-on-windows-and-can-remote-debug-on-linux Comment by BCS on Looking for a GUI debugger that runs on windows and can remote debug on Linux BCS 2009-10-15T06:19:02Z 2009-10-15T06:19:02Z I guess the language does matter: I'm looking for something that can work on an arbitrary binary http://stackoverflow.com/questions/1570549/looking-for-a-gui-debugger-that-runs-on-windows-and-can-remote-debug-on-linux Comment by BCS on Looking for a GUI debugger that runs on windows and can remote debug on Linux BCS 2009-10-15T06:15:17Z 2009-10-15T06:15:17Z Just to be nasty, I'll claim assembly, but really the language shouldn't matter: I'm using c++ but I'd rather something that supports anything GDB can debug. http://stackoverflow.com/questions/1570547/you-are-not-so-tough-without-your-car-fastest-lookup-list/1570561#1570561 Comment by BCS on You are not so tough without your car. Fastest lookup list. BCS 2009-10-15T06:12:59Z 2009-10-15T06:12:59Z The OP would have to write a hash table to do that. http://stackoverflow.com/questions/1517483/how-to-use-hashmap-with-char-and-do-string-compare/1517515#1517515 Comment by BCS on How to use hash_map with char* and do string compare? BCS 2009-10-04T23:04:34Z 2009-10-04T23:04:34Z this is effectively what I did and I'd be surprised if the docs would use it as an example of there was a better way. http://stackoverflow.com/questions/1517483/how-to-use-hashmap-with-char-and-do-string-compare Comment by BCS on How to use hash_map with char* and do string compare? BCS 2009-10-04T23:02:11Z 2009-10-04T23:02:11Z What's the important differences? http://stackoverflow.com/questions/1517483/how-to-use-hashmap-with-char-and-do-string-compare/1517515#1517515 Comment by BCS on How to use hash_map with char* and do string compare? BCS 2009-10-04T22:59:59Z 2009-10-04T22:59:59Z I'll accept the point on the default, however I'd think providing a pre-built option would be good idea.