User Nikhil - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T21:55:21Zhttp://stackoverflow.com/feeds/user/66455http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/482574/whats-the-advantage-of-using-c-over-c-or-is-there-one/600887#6008875Answer by Nikhil for What's the advantage of using C over C++ or is there one?Nikhil2009-03-02T00:16:51Z2009-10-11T12:02:23Z<p>Portability has been mentioned before but it has not been stressed enough. Something written in <strong><em>C89</em></strong> (ANSI 1989 Standard) is <strong><em>EXTREMELY PORTABLE</em></strong>, it is literally referred to as portable assembly. If portability is your key concern, C89 is the way to go. Nothing, I mean nothing is more easy to port than something written in C89. Rest assured that you will find a C89 compiler for almost any hardware.</p>
http://stackoverflow.com/questions/648521/linear-algebra-library-for-the-d-programming-language/1430865#14308650Answer by Nikhil for Linear algebra library for the D programming language.Nikhil2009-09-16T04:00:08Z2009-09-16T16:18:21Z<p>dsource.org/projects has been mentioned on this thread before, here are a few details.</p>
<p>Here are the <a href="http://www.dsource.org/projects/bindings/wiki/GnuScientificLibrary" rel="nofollow">D language bindings for the GNU Scientific Library (GSL)</a>.</p>
<p>Here is a link to <a href="http://www.gnu.org/software/gsl/" rel="nofollow">GSL</a>.</p>
<p>Here is some links to the documentation on <a href="http://www.gnu.org/software/gsl/manual/html%5Fnode/BLAS-Support.html" rel="nofollow">BLAS support</a>, decompositions (<a href="http://www.gnu.org/software/gsl/manual/html%5Fnode/Vectors-and-Matrices.html" rel="nofollow">1</a>, <a href="http://www.gnu.org/software/gsl/manual/html%5Fnode/Linear-Algebra.html" rel="nofollow">2</a>), <a href="http://www.gnu.org/software/gsl/manual/html%5Fnode/Eigensystems.html" rel="nofollow">eigenssystems</a>, in GSL.</p>
http://stackoverflow.com/questions/684438/ms-word-plugin-adding-a-button-which-pops-up-on-right-click-on-selected-text1MS Word Plugin, Adding a button which pops up on right click on selected text.Nikhil2009-03-26T03:43:12Z2009-09-02T10:58:27Z
<p>I am working on a shared addin for MS Word 2007. I would like to add a button which pops up when selected text is right clicked. The attached snapshot should make this clear. </p>
<p>Currently, the user has to select the text and then click a button on a custom control. It would be a lot easier if after selecting the text, s/he could right click it and press the relevant button in the popup.</p>
<p><img src="http://img407.imageshack.us/img407/3249/question.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/623062/why-was-googles-chrome-browser-written-almost-entirely-in-c-and-not-c-or-java/644292#64429284Answer by Nikhil for Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?Nikhil2009-03-13T19:36:33Z2009-07-02T04:44:00Z<p>There are a number of reasons, which can be broadly classified as business reasons and technical reasons.</p>
<h2>Lets start with the business reasons.</h2>
<ol>
<li><p>C# is an open, public standard (ECMA-334) but .Net is not. Note that .NET Framework which is not covered by the ECMA/ISO standard, includes Windows Forms, ADO.NET, and ASP.NET. Patents that Microsoft holds in these areas may deter non-Microsoft implementations of the full framework. Would you develop a product based on a platform your competitor controls, especially when the product you are developing challenges the same competitor's product? </p></li>
<li><p>Suppose you want to develop a new browser and you have a fairly decent operating budget. What people would you want to recruit? Clearly someone with browser development experience. You would try to get the best of the Mozilla/Firefox folk, maybe steal some from IE. Guess what these guys have been developing in. C++. </p></li>
</ol>
<h2>Now for the technical reasons.</h2>
<ol>
<li><p>There is no Java/C# counterpart for WebKit. At least not with the same maturity.</p></li>
<li><p>They want to leverage their V8 engine. Look into this, this is killer stuff. </p></li>
<li><p>The following is a list of all that they are potentially using (this is from Chromium so may not exactly acurate). Can you find mature, Java/C# counterparts for them?</p>
<p>bsdiff, bspatch, bzip2, dtoa, hunspell, ICU, JSCRE, libjpeg, libpng, libxml, libxslt, LZMA SDK, modp_b64, Mozilla interface to Java Plugin APIs, npapi, nspr, nss, Pthreads for win32, sqlite, tlslite, V8 assembler, WebKit, WTL, zlib </p></li>
<li><p>No mater what people say sometimes the ability to operate close to the machine and have a fine grained control over memory matters. This is such a case.</p></li>
<li><p>Can you name one significant desktop application done in Java/C#. Eclipse. What else? Maybe this is possible but don't you want to play it safe? Develop in a language that has been really battle tested in this regard.</p></li>
</ol>
http://stackoverflow.com/questions/684438/ms-word-plugin-adding-a-button-which-pops-up-on-right-click-on-selected-text/723349#723349-1Answer by Nikhil for MS Word Plugin, Adding a button which pops up on right click on selected text.Nikhil2009-04-06T21:39:37Z2009-04-06T21:39:37Z<p>Here is how this can be done...</p>
<pre><code> Microsoft.Office.Core.CommandBar cellbar = diff.CommandBars["Text"];
Microsoft.Office.Core.CommandBarButton button = (Microsoft.Office.Core.CommandBarButton)cellbar.FindControl(Microsoft.Office.Core.MsoControlType.msoControlButton, 0, "MYRIGHTCLICKMENU", Missing.Value, Missing.Value);
if (button == null)
{
// add the button
button = (Microsoft.Office.Core.CommandBarButton)cellbar.Controls.Add(Microsoft.Office.Core.MsoControlType.msoControlButton, Missing.Value, Missing.Value, cellbar.Controls.Count + 1, true);
button.Caption = "My Right Click Menu Item";
button.BeginGroup = true;
button.Tag = "MYRIGHTCLICKMENU";
button.Click += new Microsoft.Office.Core._CommandBarButtonEvents_ClickEventHandler(MyButton_Click);
}
</code></pre>
http://stackoverflow.com/questions/684468/where-should-validation-logic-be-implemented/684511#6845111Answer by Nikhil for Where should validation logic be implemented?Nikhil2009-03-26T04:18:31Z2009-03-26T04:25:18Z<p>A contract (interface) between two parties say, A and B such that both have certain obligations. What does the contract say? Is B supposed to receive validated data? If that is the case, B should not be implementing validation. But what if A is the UI? Clearly you don't want to put the validation there. Typically, its best to introduce a third party, say C. A has a contract with C which in turn has a contract with B. B expects validated data. A might send crap. C performs the validation.</p>
<p>If contracts are well designed, this is almost never an issue. Revist the contract and place obligations on the each of the parties. If a certain party has too many obligations then introduce a third party.</p>
http://stackoverflow.com/questions/684449/best-practices-for-a-c-portable-opensource-application/684460#6844601Answer by Nikhil for Best practices for a C++ portable opensource applicationNikhil2009-03-26T03:52:58Z2009-03-26T03:52:58Z<p>Here is a book to answer all your questions. <a href="http://rads.stackoverflow.com/amzn/click/032124642X" rel="nofollow">Cross-Platform Development in C++: Building Mac OS X, Linux, and Windows Applications</a> </p>
http://stackoverflow.com/questions/655997/modern-c-design-generic-programming-and-design-patterns-applied/657364#6573640Answer by Nikhil for Modern C++ Design Generic programming and Design Patterns AppliedNikhil2009-03-18T08:29:10Z2009-03-18T08:29:10Z<p>I did experience some rude reactions from people when I stated using stuff from Modern C++ design. First, WTF comments. This was followed by 'don't try to be too smart' comments. Then, a better understanding of the ideas. And then, finally, acceptance of the ideas to the point where they are a part of the common vocabulary. </p>
<p>Make sure to keep multiple copies of this book handy. Ideally, buy a copy for every developer. Also, until this stuff becomes common vocabulary among the developers, cite the pattern/idiom and the relevant pages in your comments. </p>
http://stackoverflow.com/questions/657248/is-it-acceptable-for-a-c-programmer-to-not-know-how-null-terminated-strings-wor/657321#6573211Answer by Nikhil for Is it acceptable for a C++ programmer to not know how null-terminated strings work?Nikhil2009-03-18T08:09:21Z2009-03-18T08:09:21Z<p>Consider the coursework in any C/C++ based undergrad coursework. There has to be a data structures course s/he must have taken and this course must have had an assignment wherein they have to implement a string type from scratch. Obviously, nobody expects all functionality of std::string but they must have implemented a string class and when they did that they must have explored this matter, in depth.</p>
<p>No hire. </p>
http://stackoverflow.com/questions/624354/what-would-it-take-for-people-to-move-away-from-c/624896#6248961Answer by Nikhil for What would it take for people to move away from C++?Nikhil2009-03-09T03:12:12Z2009-03-09T03:12:12Z<p>You are going about this the other way around. People choose problem/application domains they are interested in. The choice of language follows from that decision and is quite trivial.</p>
<p>Nobody chooses a programming language. Programming languages by themselves are boring and talking about them without reference to a problem/application domain is absurd.</p>
<p>Personally, I wanted to work in machine learning. As a grad. student I worked on analyzing graph representations of huge datasets (IMDB, Netflix). I used C++ for most of my work. I would have loved to work in C# or Java or better yet Python but the nature of the problem required me to use C++. Over a period of 5 years I have fallen in love with C++ for the golden balance it achieves between efficiency and abstraction. I will use C++ whenever I see the need for it. C++ programmers are hard nosed pragmatists who will not let anything stand in the way of getting things done. They will not cling to C++ just for the heck of it. </p>
http://stackoverflow.com/questions/615264/c-parallelization-libraries-openmp-vs-thread-building-blocks/618427#6184273Answer by Nikhil for C++ Parallelization Libraries: OpenMP vs. Thread Building BlocksNikhil2009-03-06T10:51:20Z2009-03-07T01:09:28Z<p>In general I have found that using TBB requires much more time consuming changes to the code base with a high payoff while OpenMP gives a quick but moderate payoff. If you are staring a new module from scratch and thinking long term go with TBB. If you want small but immediate gains go with OpenMP. </p>
<p>Also, TBB and OpenMP are not mutually exclusive. </p>
http://stackoverflow.com/questions/618859/how-can-i-make-my-own-c-compiler-understand-templates-nested-classes-etc-str/619251#6192511Answer by Nikhil for How can I make my own C++ compiler understand templates, nested classes, etc. strong features of C++?Nikhil2009-03-06T15:32:33Z2009-03-06T15:32:33Z<p>I will like to stress a few points already mentioned and give a few references.</p>
<p>1) STICK TO THE 1989 ANSI C STANDARD WITH NO OPTIMIZATION.</p>
<p>2) Don't worry, with proper guidance, good organization and a fair amount of hard work this is doable. </p>
<p>3) Read the <a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language</a> cover to cover.</p>
<p>4) Understand important concepts of compiler development from the <a href="http://rads.stackoverflow.com/amzn/click/0201100886" rel="nofollow">Dragon Book</a>.</p>
<p>5) Take a look at <a href="http://www.cs.princeton.edu/software/lcc/" rel="nofollow">lcc</a> both the code as well as the <a href="http://rads.stackoverflow.com/amzn/click/0805316701" rel="nofollow">book</a>.</p>
<p>6) Take a look at <a href="http://dinosaur.compilertools.net/" rel="nofollow">Lex and Yacc</a> (or Flex and Bison)</p>
<p>7) Writing a C compiler (up to the point it can self compile) is a rite of passage ritual among programmers. Enjoy it.</p>
http://stackoverflow.com/questions/612019/library-for-doing-diffs/618156#6181561Answer by Nikhil for library for doing diffsNikhil2009-03-06T09:16:24Z2009-03-06T09:16:24Z<p><a href="http://ssddiff.alioth.debian.org/" rel="nofollow">Here</a> is a C++ library that can diff what the author calls semistructured data. It deals nicely with HTML and XML. Since your data is XML it would make a lot of sense to use this instead of plain text diff. This is especially the case when the files are machine generated. </p>
<p>I am currently trying to use this library to build a tool that diffs Visual Studio project files. These are basically XML files and using a plain diff tool like Winmerge is too painful because Visual Studio pretty much mucks up the whole file by crazy reordering. The idea is to do some kind of a structured diff to address the problem.</p>
http://stackoverflow.com/questions/613700/how-to-put-the-build-date-of-application-somewhere-in-the-application0How to put the build date of application somewhere in the application?Nikhil2009-03-05T05:47:41Z2009-03-06T07:52:44Z
<p>I would like to put the date the application was built somewhere in the application. Say the about box. Any ideas how this can be done? I need to do this for C# but I am also looking for a general idea, so you can answer this for any specific language other than C#.</p>
http://stackoverflow.com/questions/460198/best-free-3-way-merge-tool-for-windows/616458#6164580Answer by Nikhil for Best free 3-Way Merge Tool for Windows.Nikhil2009-03-05T20:20:36Z2009-03-05T20:20:36Z<p>I think there is some confusion about 2-way and 3-way merging. Here is my understanding of the issue. There is a file say 'A' which was modified by two different users to have files 'B1' and 'B2'. If a tool compares just B1 and B2 to allow you to get a merged file 'C', its a 2-way merge tool. If a tool compares B1 and B2 with reference to A, its a 3-way merge tool. Generally, 3-way merge tools give a much better grasp of what has happened and are preferred.</p>
<p>Both Winmerge and the merge tool built into TortoiseSVN are 2-way merge tools. </p>
http://stackoverflow.com/questions/614509/writing-a-module-for-a-hello-world-program/614553#6145535Answer by Nikhil for Writing a module for a hello world programNikhil2009-03-05T12:21:25Z2009-03-05T12:21:25Z<p><a href="http://www.roesler-ac.de/wolfram/hello.htm" rel="nofollow">Here</a> is a compilation of "Hello World" programs in about 200 different languages. </p>
http://stackoverflow.com/questions/560845/what-are-the-often-misunderstood-concepts-in-c/614502#6145022Answer by Nikhil for What are the often misunderstood concepts in C++?Nikhil2009-03-05T12:06:32Z2009-03-05T12:06:32Z<p>I think the most misunderstood concept about C++ is why it exists and what its purpose is. Its often under fire from above (Java, C# etc.) and from below (C). C++ has the ability to operate close to the machine to deal with computational complexity and abstraction mechanisms to manage domain complexity. </p>
http://stackoverflow.com/questions/585165/c-best-learning-path-just-utopia/614450#6144501Answer by Nikhil for C++ best learning path: just utopia?Nikhil2009-03-05T11:48:44Z2009-03-05T11:48:44Z<p>I would to point out, again, the new book by <a href="http://rads.stackoverflow.com/amzn/click/0321543726" rel="nofollow">Bjarne Stroustrup, Programming: Principles and Practice Using C++</a>, for beginners. Its absolutely great and I wish I had this when I was starting with C++.</p>
http://stackoverflow.com/questions/609810/eclipse-c-debugging-breaks-in-stl/614412#6144120Answer by Nikhil for Eclipse C++ debugging breaks in STLNikhil2009-03-05T11:35:01Z2009-03-05T11:35:01Z<p>Given limited information, this is what comes to mind,</p>
<ol>
<li>Step into (F5) instead of
stepping over (F6) to locate where
this is happening. </li>
<li>If this does
not work, upgrade CDT to the latest
version and try again. </li>
<li>If this does not work either, try using gdb
without Eclipse. </li>
<li>Last option,
throw in a bunch of cerr outputs.
Note cerr (which is not buffered) not
cout.</li>
</ol>
<p>If none of this works post more details.</p>
http://stackoverflow.com/questions/161053/c-which-is-faster-stack-allocation-or-heap-allocation/600936#6009360Answer by Nikhil for C++ Which is faster: Stack allocation or Heap allocationNikhil2009-03-02T00:46:06Z2009-03-02T00:46:06Z<p>It has been mentioned before that stack allocation is simply moving the stack pointer, that is, a single instruction on most architectures. Compare that to what <em>generally</em> happens in the case of heap allocation.</p>
<p>The operating system maintains portions of free memory as a linked list with the payload data consisting of the pointer to the starting address of the free portion and the size of the free portion. To allocate X bytes of memory, the link list is traversed and each note is visited in sequence, checking to see if its size is at least X. When a portion with size P >= X is found, P is split into two parts with sizes X and P-X. The linked list is updated and the pointer to the first part is returned.</p>
<p>As you can see, heap allocation depends on may factors like how much memory you are requesting, how fragmented the memory is and so on.</p>
http://stackoverflow.com/questions/253099/how-do-i-print-the-elements-of-a-c-vector-in-gdb/599934#5999343Answer by Nikhil for How do I print the elements of a C++ vector in GDB?Nikhil2009-03-01T14:53:31Z2009-03-01T14:53:31Z<p>'Watching' STL containers while debugging is somewhat of a problem. Here are 3 different solutions I have used in the past, none of them is perfect.</p>
<p>1) Use GDB scripts from <a href="http://www.stanford.edu/~afn/gdb_stl_utils/" rel="nofollow">http://www.stanford.edu/~afn/gdb_stl_utils/</a> These scripts allow you to print the contents of almost all STL containers. The problem is that this does not work for nested containers like a stack of sets.</p>
<p>2) Visual Studio 2005 has fantastic support for watching STL containers. This works for nested containers but this is for their implementation for STL only and does not work if you are putting a STL container in a Boost container.</p>
<p>3) Write your own 'print' function (or method) for the specific item you want to print while debugging and use 'call' while in GDB to print the item. This is a little tricky because if your print function is not being called anywhere in the code g++ will do dead code elimination and the 'print' function will not be found by GDB (you will get a message saying that the function is inlined). Make a pseudo call so that the code is not eliminated. </p>
http://stackoverflow.com/questions/436400/linux-c-debugger/436654#436654Comment by Nikhil on Linux C++ DebuggerNikhil2009-08-01T16:05:45Z2009-08-01T16:05:45ZHis question is on on inspecting STL containers. http://stackoverflow.com/questions/482574/whats-the-advantage-of-using-c-over-c-or-is-there-one/600887#600887Comment by Nikhil on What's the advantage of using C over C++ or is there one?Nikhil2009-06-16T16:12:40Z2009-06-16T16:12:40ZNo. I am not. C99 is relatively new and its portability is limited as compared to C89.http://stackoverflow.com/questions/684438/ms-word-plugin-adding-a-button-which-pops-up-on-right-click-on-selected-text/723349#723349Comment by Nikhil on MS Word Plugin, Adding a button which pops up on right click on selected text.Nikhil2009-04-09T01:07:58Z2009-04-09T01:07:58Z@Marcus Yes, but it adds the check to avoid duplication, otherwise you get multiple buttons, one with every new instance.
@Brandon Yes, but this is the closest you can get.
http://stackoverflow.com/questions/657248/is-it-acceptable-for-a-c-programmer-to-not-know-how-null-terminated-strings-wor/657321#657321Comment by Nikhil on Is it acceptable for a C++ programmer to not know how null-terminated strings work?Nikhil2009-03-18T08:38:17Z2009-03-18T08:38:17ZMaybe I am overgeneralizing but that how it was when I was an undergrad. That's how it was when I was a TA during my MS. And that's how it was (quite recently) when I was filling in for an instructor while I was a Phd. student. 8 years across 3 universities. My sampling might be limited. http://stackoverflow.com/questions/610396/languages-faster-than-c/623097#623097Comment by Nikhil on Languages faster than C++Nikhil2009-03-09T03:46:22Z2009-03-09T03:46:22ZShouldn't the garbage collection logic apply to other grabage collected languages like Java and C# ?http://stackoverflow.com/questions/624354/what-would-it-take-for-people-to-move-away-from-c/624441#624441Comment by Nikhil on What would it take for people to move away from C++?Nikhil2009-03-09T03:36:58Z2009-03-09T03:36:58ZAre you saying that C++0X will make you move away from C++ ? http://stackoverflow.com/questions/568804/coding-standards/568817#568817Comment by Nikhil on Coding StandardsNikhil2009-03-07T01:21:16Z2009-03-07T01:21:16ZGoogle's style guide is great, but they advise against exceptions, for interoperability reasons. People should note that this is specific to Google and they need to reevaluate this point based on their situation.http://stackoverflow.com/questions/614509/writing-a-module-for-a-hello-world-program/614566#614566Comment by Nikhil on Writing a module for a hello world programNikhil2009-03-05T12:40:42Z2009-03-05T12:40:42ZPlease don't be so hard on Brainfuck. Its not so bad as Brainfuck++
Here is a link.
<a href="http://www.jitunleashed.com/bf/index.html" rel="nofollow">jitunleashed.com/bf/index.html</a>http://stackoverflow.com/questions/606516/python-graph-library/606532#606532Comment by Nikhil on Python Graph LibraryNikhil2009-03-05T12:32:35Z2009-03-05T12:32:35ZGraphviz is for graph visualization only. http://stackoverflow.com/questions/613700/how-to-put-the-build-date-of-application-somewhere-in-the-application/613907#613907Comment by Nikhil on How to put the build date of application somewhere in the application?Nikhil2009-03-05T08:53:03Z2009-03-05T08:53:03ZThis is not relevant to the question but is good general advice.http://stackoverflow.com/questions/613700/how-to-put-the-build-date-of-application-somewhere-in-the-application/613907#613907Comment by Nikhil on How to put the build date of application somewhere in the application?Nikhil2009-03-05T08:52:19Z2009-03-05T08:52:19ZThat's exactly what I explained, the revision number is all you need, which is exactly what we have right now. But for some reason I cannot understand, I have been told to include the exact date and time the app was built.http://stackoverflow.com/questions/613700/how-to-put-the-build-date-of-application-somewhere-in-the-application/613775#613775Comment by Nikhil on How to put the build date of application somewhere in the application?Nikhil2009-03-05T08:47:01Z2009-03-05T08:47:01ZThis works perfect.