User Agnel Kurian - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T21:56:35Z http://stackoverflow.com/feeds/user/45603 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1912690/c-cli-native-reference-vs-tracking-reference 0 C++/CLI: Native Reference vs Tracking Reference Agnel Kurian 2009-12-16T06:22:01Z 2009-12-16T23:24:44Z <p>What is the difference between the following two functions?</p> <pre><code>ref class SomeClass; void swap(SomeClass^&amp; a, SomeClass^&amp; b){ SomeClass^ c = a; a = b; b = c; } void swap2(SomeClass^% a, SomeClass^% b){ SomeClass^ c = a; a = b; b = c; } </code></pre> http://stackoverflow.com/questions/811023/split-containers-without-too-many-hwnds 0 Split Containers without too many HWNDs Agnel Kurian 2009-05-01T11:18:35Z 2009-12-16T03:00:03Z <p>I need to arrange a few of my controls using split containers such that one split container is nested inside another. I find that each instance of the <code>SplitContainer</code> class is itself a <code>Control</code> and comes with two instances of <code>SplitterPanel</code> which is a control too.</p> <p>For example, in the following illustration, I am arranging just 3 of my controls (HWNDs 8, 9 and 5) using 2 <code>SplitContainer</code> instances but end up with a whole lot of additional HWNDs as a result of using <code>SplitContainer</code>.</p> <p><img src="http://agnel.kurian.googlepages.com/splitcontainer.PNG" alt="Split Container" /></p> <p>In addition to this, the child controls must use <code>Parent.Parent.Parent...</code> ad nauseum in order to reach their parent form (yes I can use <code>FindForm</code> instead). Is there a better way to do this?</p> <p><strong>Edit:</strong> The splitter needs to be resizable</p> http://stackoverflow.com/questions/1887871/apart-from-programming-languages-what-else-to-do/1888061#1888061 0 Answer by Agnel Kurian for Apart from programming languages what else to do. Agnel Kurian 2009-12-11T13:27:34Z 2009-12-11T13:27:34Z <p>Get used to third party libraries. Being familiar with code that is not part of the "standard library" of a programming language can save you a lot of time and take you places.</p> http://stackoverflow.com/questions/1865664/mercurial-get-non-versioned-copy-of-an-earlier-version-of-a-file 0 Mercurial: Get non-versioned copy of an earlier version of a file Agnel Kurian 2009-12-08T09:03:08Z 2009-12-09T03:19:50Z <p>How do I get a non-versioned copy of an older version of a file from a mercurial repository?</p> <p><strong>Edit:</strong> I have changed somefile.png (binary file) in my local copy. I am looking for a command which will allow me to get an earlier version of somefile.png so that I can compare it with my modified copy (using an image viewer) before I commit changes. How can I do that?</p> http://stackoverflow.com/questions/1868974/openoffice-pdf-export-library 0 OpenOffice PDF Export Library Agnel Kurian 2009-12-08T18:35:26Z 2009-12-08T18:44:52Z <p>I am looking for a library which will allow me to render text and graphics output onto a PDF document. (<a href="http://cairographics.org/" rel="nofollow">Cairo</a> is certainly an option.) I would like to know how OpenOffice writes PDF files to see if I could use the same library. What library is being used by OpenOffice for PDF export?</p> <p><strong>Edit:</strong> I am looking for a C or C++ library.</p> http://stackoverflow.com/questions/1854302/is-assert-evil/1858445#1858445 0 Answer by Agnel Kurian for Is assert evil? Agnel Kurian 2009-12-07T07:43:16Z 2009-12-07T07:43:16Z <p><code>assert</code> is very useful and can save you a lot of backtracking when unexpected errors occur by halting the program at the very first signs of trouble.</p> <p>On the other hand, it is very easy to abuse <code>assert</code>.</p> <pre><code>int quotient(int a, int b){ assert(b != 0); return a / b; } </code></pre> <p>The proper, correct version would be something like:</p> <pre><code>bool quotient(int a, int b, int &amp;result){ if(b == 0) return false; result = a / b; return true; } </code></pre> <p>So... in the long run... in the big picture... I must agree that <code>assert</code> can be abused. I do it all the time.</p> http://stackoverflow.com/questions/345737/your-most-common-programming-mistakes/1846369#1846369 0 Answer by Agnel Kurian for Your most common programming mistakes? Agnel Kurian 2009-12-04T11:24:21Z 2009-12-04T11:24:21Z <p>I did this just now... I had to test the sign of one number and set the sign of the other number to the same sign.</p> <pre><code>if(a &gt; 0.0f){ if(b &lt; 0.0f) b -= b; } else if(a &lt; 0.0f){ if(b &gt; 0.0f) b -= b; } </code></pre> <p>That should have been:</p> <pre><code>if(a &gt; 0.0f){ if(b &lt; 0.0f) b = -b; } else if(a &lt; 0.0f){ if(b &gt; 0.0f) b = -b; } </code></pre> http://stackoverflow.com/questions/1831991/c-safe-way-to-cast-an-integer-to-a-pointer 1 C++: Safe way to cast an integer to a pointer Agnel Kurian 2009-12-02T10:24:19Z 2009-12-02T11:04:29Z <p>I need to convert an integral type which contains an address to the actual pointer type. I could use reinterpret_cast as follows:</p> <pre><code>MyClass *mc1 = reinterpret_cast&lt;MyClass*&gt;(the_integer); </code></pre> <p>However, this does not perform any run-time checks to see if the address in question actually holds a MyClass object. I want to know if there is any benefit in first converting to a void* (using reinterpret_cast) and then using dynamic_cast on the result. Like this:</p> <pre><code>void *p = reinterpret_cast&lt;void*&gt;(the_integer); MyClass *mc1 = dynamic_cast&lt;MyClass*&gt;(p); assert(mc1 != NULL); </code></pre> <p>Is there any advantage in using the second method?</p> http://stackoverflow.com/questions/1827179/gdi-limitations-of-paths-and-regions 0 GDI+: Limitations of Paths and Regions Agnel Kurian 2009-12-01T16:06:53Z 2009-12-01T22:29:36Z <p>Are there limits/differences when performing GDI operations on off-screen objects like paths/regions as compared to performing the same operations on the display?</p> <ul> <li>What limits can I expect when performing graphics operations on a region/path as opposed to performing them directly on the display?</li> <li>When performing GDI operations on GDI regions/paths, is hardware support used?</li> </ul> http://stackoverflow.com/questions/1825015/variable-argument-lists-in-c-cli 0 Variable Argument Lists in C++/CLI Agnel Kurian 2009-12-01T09:27:47Z 2009-12-01T12:21:32Z <p>How do I create a function which accepts a variable argument list in C++/CLI? I am looking to create a function which forwards most of it's arguments to <code>String::Format</code>.</p> http://stackoverflow.com/questions/1320689/graphics-save-vs-graphics-begincontainer 3 Graphics.Save vs Graphics.BeginContainer Agnel Kurian 2009-08-24T06:05:38Z 2009-11-30T15:04:22Z <p>How is <code>Graphics.Save</code> different from <code>Graphics.BeginContainer</code>?</p> http://stackoverflow.com/questions/506498/asp-net-gridview-browser-compatibility 0 ASP.NET GridView Browser Compatibility Agnel Kurian 2009-02-03T09:35:43Z 2009-11-22T10:00:02Z <p>I use a <code>GridView</code> control which uses paging and inline editing. I am not using any other features (no sorting or anything fancy).</p> <p>What browsers is this <code>GridView</code> control completely compatible with? Is there an "official" document/spec from MS?</p> http://stackoverflow.com/questions/1741296/windows-api-what-is-the-first-message-a-window-is-guaranteed-to-receive 2 Windows API: What is the first message a window is guaranteed to receive? Agnel Kurian 2009-11-16T10:27:00Z 2009-11-20T12:04:44Z <p>I've been used to thinking that WM_CREATE is the first message a window receives. However, when testing this assumption on a top-level window, it turns out to be false. In my test, WM_MINMAXINFO turned up as the first message.</p> <p>So, what is the first message a window is guaranteed to receive?</p> http://stackoverflow.com/questions/1763300/ax-by-c-given-two-points-p-and-q 0 ax + by = c given two points P and Q [closed] Agnel Kurian 2009-11-19T13:29:00Z 2009-11-19T16:34:23Z <p>How do I arrive at the equation of a line in standard form given two points?</p> <p>I found an answer <a href="http://bobobobo.wordpress.com/2008/01/07/solving-linear-equations-ax-by-c-0/" rel="nofollow">here</a> which says that the equation of a line joining P(p<sub>x</sub>, p<sub>y</sub>) and Q(q<sub>x</sub>, q<sub>y</sub>) is given by: (p<sub>y</sub> – q<sub>y</sub>)x + (q<sub>x</sub> – p<sub>x</sub>)y + (p<sub>x</sub>.q<sub>y</sub> – q<sub>x</sub>.p<sub>y</sub>) = 0</p> <p>But how is this derived?</p> <p>Given that the line passes through P and Q, I am able to arrive at the following two equations:</p> <p>a.p<sub>x</sub> + b.p<sub>y</sub> = c and a.q<sub>x</sub> + b.q<sub>y</sub> = c</p> <p>As far as I know, that's two equations and three unknowns (a, b and c). <em>That</em> is what confuses me the most.</p> http://stackoverflow.com/questions/42308/tool-to-track-include-dependencies 13 Tool to track #include dependencies Agnel Kurian 2008-09-03T18:58:35Z 2009-11-19T13:59:26Z <p>Any good suggestions? Input will be the name of a header file and output should be a list (preferably a tree) of all files including it directly or indirectly.</p> http://stackoverflow.com/questions/1746818/minimal-python-installation 0 Minimal Python Installation Agnel Kurian 2009-11-17T05:37:18Z 2009-11-17T15:19:59Z <p>Various software installations on my laptop each require their own particular version of Python. ViewVC requires Python 2.5 and Blender requires Python 2.6. Mercurial (thankfully) comes with its Python interpreter packaged in a DLL in the Mercurial installation itself.</p> <p>How do I get by without having to install the entire Python environment each time? Is there some minimal installer which will install the bare minimum without affecting other programs? Can I modify the Blender and ViewVC installations so that they too use their own Python-in-a-DLL?</p> http://stackoverflow.com/questions/286274/direct3d-geometry-rotation-matrix-from-two-vectors 0 Direct3D Geometry: Rotation Matrix from Two Vectors Agnel Kurian 2008-11-13T04:41:58Z 2009-11-17T12:02:39Z <p>Given two 3D vectors A and B, I need to derive a rotation matrix which rotates from A to B.</p> <p>This is what I came up with:</p> <ol> <li>Derive cosine from <strike>acos</strike>(A . B)</li> <li>Derive sine from <strike>asin</strike>(|A x B| / (|A| * |B|))</li> <li>Use A x B as axis of rotation</li> <li>Use matrix given near the bottom of <a href="http://www.euclideanspace.com/maths/geometry/rotations/conversions/angleToMatrix/index.htm" rel="nofollow">this page</a> (axis angle)</li> </ol> <p>This works fine except for rotations of 0&deg; (which I ignore) and 180&deg; (which I treat as a special case). Is there a more graceful way to do this using the Direct3D library? I am looking for a Direct3D specific answer.</p> <p>Edit: Removed acos and asin (see <a href="http://stackoverflow.com/questions/286274/direct3d-geometry-rotation-matrix-from-two-vectors#286300">Hugh Allen's post</a>)</p> http://stackoverflow.com/questions/590046/debuggerdisplay-attribute-does-not-work 0 DebuggerDisplay Attribute does not work Agnel Kurian 2009-02-26T10:54:17Z 2009-11-13T17:00:04Z <p>This is a C++/CLI WinForms project targeting the .NET 2.0 framework. I am using Visual Studio 2008. How do I get it to work?</p> <p><strong>EDIT:</strong> Code snippet</p> <pre><code>[Serializable] [DebuggerDisplayAttribute(L"ID={EmployeeID}")] public ref class Employee { [ReadOnly(true)] int nID; property int EmployeeID { int get() { return nID; } } } </code></pre> http://stackoverflow.com/questions/1232302/how-exactly-does-zsh-expand-globs 2 How exactly does zsh expand globs? Agnel Kurian 2009-08-05T10:07:45Z 2009-11-08T21:43:29Z <p>I have a C program that displays it's command-line by iterating through the <code>argv</code> variable.</p> <pre><code>#include &lt;stdio.h&gt; int main(int argc, char *argv[]){ int i = 0; printf("----------\n"); for(i = 0; i &lt; argc; i++) printf("%s\n", argv[i]); return 0; } </code></pre> <p>I invoked the program in a folder containing a large C++ source tree like this:</p> <pre><code>./a.out **/*.h </code></pre> <p>The output:</p> <pre><code>zsh: argument list too long: ./a.out </code></pre> <p>However, programs like <code>ls</code> and <code>grep</code> work without any problems when invoked using the <code>**/*.h</code> glob in the same folder. Why does <code>zsh</code> fail when invoking my program? How does <code>zsh</code> go about expanding wildcards?</p> <p><strong>Edit:</strong> I'm using zsh on cygwin.</p> http://stackoverflow.com/questions/1661369/how-does-c-handle-integer-literals-with-leading-zeros-and-what-about-atoi/1661392#1661392 0 Answer by Agnel Kurian for How does C Handle Integer Literals with Leading Zeros, and What About atoi? Agnel Kurian 2009-11-02T13:39:14Z 2009-11-03T10:24:24Z <p><strike>In your particular case, the zeroes are being dropped by printf.</strike> All leading zeroes are stripped out by the compiler except for the initial zero which causes your compiler to treat the integer as octal. For 005, both the octal and decimal representations are the same and should not bother you but still, it's asking for trouble unless you specifically meant the octal representation.</p> <p>Leading zeroes have to do purely with the string representation of the integer. To print with leading zeroes, use "%03d". This will ensure a field length of 3.</p> <p>In general, "%&lt;x&gt;d" will print an integer x characters wide and will pad with leading spaces. "%0&lt;x&gt;d" will do the same thing but will pad with leading zeroes.</p> http://stackoverflow.com/questions/1638121/printer-button-in-the-windows-page-setup-dialog-vista 0 "Printer..." button in the Windows Page Setup Dialog (Vista) Agnel Kurian 2009-10-28T15:46:04Z 2009-10-29T06:49:01Z <p>We're using the Windows Forms "Page Setup" dialog to allow the user to select a page size prior to print preview. On XP, the dialog displays a "Printer..." button which allows the user to select a printer and select from a list of page sizes supported by only that printer. On Vista, the very same code displays the dialog without any button or dropdown list to select a printer.</p> <p>How do I get a "Printer..." button in the Vista Page Setup dialog?</p> <p><strong>Edit:</strong> BUMP!? Anyone?</p> http://stackoverflow.com/questions/1612031/is-there-any-danger-in-calling-free-or-delete-instead-of-delete/1612185#1612185 1 Answer by Agnel Kurian for Is there any danger in calling free() or delete instead of delete[]? Agnel Kurian 2009-10-23T08:54:31Z 2009-10-24T12:28:47Z <blockquote> <p>Does delete deallocate the elements beyond the first in an array?</p> </blockquote> <p>No. delete will deallocate only the first element regardless on which compiler you do this. It may work in some cases but that's co-incidental.</p> <blockquote> <p>Does it matter in the above case seeing as all the elements of s are allocated contiguously, and it shouldn't be possible to delete only a portion of the array?</p> </blockquote> <p>Depends on how the memory is marke as free. Again implementation dependant.</p> <blockquote> <p>For more complex types, would delete call the destructor of objects beyond the first one?</p> </blockquote> <p>No. Try this:</p> <pre><code>#include &lt;cstdio&gt; class DelTest { static int next; int i; public: DelTest() : i(next++) { printf("Allocated %d\n", i); } ~DelTest(){ printf("Deleted %d\n", i); } }; int DelTest::next = 0; int main(){ DelTest *p = new DelTest[5]; delete p; return 0; } </code></pre> <blockquote> <p>How can delete[] deduce the number of Objects beyond the first, wouldn't this mean it must know the size of the allocated memory region?</p> </blockquote> <p>Yes, the size is stored some place. Where it is stored depends on implementation. Example, the allocator could store the size in a header preceding the allocated address.</p> <blockquote> <p>What if the memory region was allocated with some overhang for performance reasons? For example one could assume that not all allocators would provide a granularity of a single byte. Then any particular allocation could exceed the required size for each element by a whole element or more.</p> </blockquote> <p>It is for this reason that the returned address is made to align to word boundaries. The "overhang" can be seen using the sizeof operator and applies to objects on the stack as well.</p> <blockquote> <p>For primitive types, such as char, int, is there any difference between ...?</p> </blockquote> <p>Yes. malloc and new could be using separate blocks of memory. Even if this were not the case, it's a good practice not to assume they are the same.</p> http://stackoverflow.com/questions/1558620/c-cli-boxing-and-generic-lists 1 C++/CLI: Boxing and Generic Lists Agnel Kurian 2009-10-13T07:11:02Z 2009-10-24T01:29:54Z <p>I am trying to create a <a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">generic list</a> of references to <code>PointF</code> objects. (No, I am not looking to create a generic list of <code>PointF</code> objects.) However, the following line fails to compile:</p> <pre><code>Generic::List&lt;PointF^&gt; ^pointList; // Generates error C3225 </code></pre> <p>On the other hand, creating an array of <code>PointF</code> references works without a problem as follows:</p> <pre><code>array&lt;PointF^&gt; ^points = gcnew array&lt;PointF^&gt;; </code></pre> <p>Here is a sample program:</p> <p>using namespace System; using namespace System::Drawing; namespace Generic = System::Collections::Generic;</p> <p>int main(array ^args) {</p> <p>array ^points = gcnew array{ nullptr, PointF(0.0f, 0.0f), PointF(1.0f, 0.0f), nullptr };</p> <p>Generic::List ^pointList; Console::WriteLine(L"Hello World"); return 0; }</p> <p>How do I create a generic list of <code>PointF</code> references? In other words, how do I create a generic list of boxed <code>PointF</code>s?</p> <p><strong>Update:</strong> As an alternative, I could use <code>Nullable&lt;PointF&gt;</code> but that still does not explain why <code>array&lt;PointF^&gt;</code> compiles silently whereas <code>Generic::List&lt;PointF^&gt;</code> does not.</p> http://stackoverflow.com/questions/1608291/including-header-files-in-visual-studio/1608416#1608416 0 Answer by Agnel Kurian for Including header files in Visual Studio Agnel Kurian 2009-10-22T16:27:49Z 2009-10-23T04:43:17Z <p><strong>Short answer:</strong> "Why do I have to include the directory of the header files of X in E?"... You shouldn't. Client's of Y should not have to know that Y depends on X.</p> <p><hr /></p> <p><strong>Long answer:</strong> You need to include the header of X in E only if the interface (signatures) of Y makes use of things declared in the header of X. But if the header of Y were "properly constructed", then they would include the headers of X in the Y header itself and you wouldn't have to include the X header in E explicitly (including the Y header would automatically include the X header).</p> <p>By "Properly constructed" I meant that if the signatures in Y1.h in Y depend on (say) X3.h and X7.h, then Y1.h should include those files (directly of indirectly). This way, any client of Y1.h would not have to know what it's dependencies are and have to include those dependencies separately as a result. As a simple test, a .cpp consisting of the following line should compile without issues:</p> <pre><code>#include "Y1.h" </code></pre> <p>A good practice is to #include "Y1.h" before including any other file in Y1.cpp. If Y1.h is missing dependencies, the compiler will let you know.</p> http://stackoverflow.com/questions/1603650/convert-a-hashsett-to-an-array-in-net 2 Convert a HashSet<T> to an array in .NET Agnel Kurian 2009-10-21T21:06:50Z 2009-10-21T21:31:21Z <p>How do I convert a HashSet&lt;T&gt; to an array in .NET?</p> http://stackoverflow.com/questions/1601699/datetime-now-as-parameter-value-c/1601767#1601767 0 Answer by Agnel Kurian for DateTime.Now as parameter value C# Agnel Kurian 2009-10-21T15:48:01Z 2009-10-21T15:48:01Z <p>For the parameter, use a delegate returning a <code>DateTime</code> value. When calling the function, pass in a delegate pointing to a function that returns <code>DateTime.Now</code>.</p> http://stackoverflow.com/questions/1294666/rules-of-thumb-in-gdi 3 Rules of Thumb in GDI+ Agnel Kurian 2009-08-18T15:33:11Z 2009-10-20T09:35:11Z <p>I have been working on some GDI+ code in .NET and have been learning my lessons the hard way. Simple things like:</p> <ul> <li>What looks good on screen may not look nice on paper and vice versa</li> <li>Caching too many objects can result in an OutOfMemoryException</li> <li>Floats aren't exact</li> </ul> <p>...and so on. I'm sure there is a lot more that experienced folk can add to this.</p> <p>What are some good rules to follow when using GDI+ or any graphics library in general?</p> <p>One useful tip per post will be nice. Thanks.</p> http://stackoverflow.com/questions/1294666/rules-of-thumb-in-gdi/1593490#1593490 1 Answer by Agnel Kurian for Rules of Thumb in GDI+ Agnel Kurian 2009-10-20T09:35:11Z 2009-10-20T09:35:11Z <p>Not strictly a GDI+ issue but remember this to save yourself a few hours of debugging:</p> <p>One mistake I've made too often using GDI+ in .NET is to call <code>Matrix</code> methods on the <code>Transform</code> property of the <code>Graphics</code> object. Example (in C++/CLI):</p> <pre><code>g-&gt;Transform-&gt;Translate(100.0f, 250.0f); // WRONG. Will not have any effect. </code></pre> <p>The getter of the <code>Transform</code> property only returns a <em>copy</em> of the matrix. So any methods called on this copy will not affect the value of the graphics transform. To manipulate the graphics transform, call one of the wrapper methods (<code>MultiplyTransform</code>, <code>TranslateTransform</code>, <code>ScaleTransform</code>, etc.) as shown below.</p> <pre><code>g-&gt;TranslateTransform(100.0f, 250.0f); </code></pre> http://stackoverflow.com/questions/34204/vs2008-tfs-get-latest-of-solution-from-command-line-or-macro 3 VS2008/TFS: Get Latest of solution from command line or macro Agnel Kurian 2008-08-29T08:53:58Z 2009-10-14T05:51:20Z <p>How do I get the latest version of my solution recursively like its done in the solution explorer context menu of Visual Studio? Need to do this from the command line or via a macro.</p> <p>/* 'tf get' only gets contents of a folder recursively (not solution). It does not look at project dependencies and so on. That won't work. */</p> <p>I'm trying to automate a part of my daily routine by using a set of batch files. I am sure a lot of developers would love to have something like this.</p> http://stackoverflow.com/questions/181453/good-examples-of-net-desktop-applications 3 Good Examples of .NET Desktop Applications Agnel Kurian 2008-10-08T05:23:30Z 2009-10-13T08:43:43Z <p>I would like to evaluate .NET as a development platform for a desktop application. I am looking for good examples of .NET desktop applications used in the mainstream. The only ones I know of are:</p> <ol> <li>Visual Studio (The copy website form is one example.)</li> <li>Team Explorer UI</li> <li>Paint.NET</li> <li>Reflector</li> <li>Gnome Do (An app launcher for Gnome; runs on Mono)</li> </ol> <p>I am looking for more examples; open source, freeware or a demo version in that order.</p> <p>Suggestions?</p> http://stackoverflow.com/questions/1919388/testing-for-a-non-null-pointer-and-returning-null-otherwise/1919409#1919409 Comment by Agnel Kurian on Testing for a non-null pointer, and returning null otherwise Agnel Kurian 2009-12-17T04:15:59Z 2009-12-17T04:15:59Z @Anon: And you could also use the &quot;Watch&quot; feature of your debugger to check if the pointer is NULL or not. http://stackoverflow.com/questions/1886073/why-are-most-of-the-killer-desktop-applications-written-in-c Comment by Agnel Kurian on Why are most of the killer desktop applications written in C++ ? Agnel Kurian 2009-12-11T07:07:19Z 2009-12-11T07:07:19Z A very good question. Not fashionable... just good. http://stackoverflow.com/questions/1868974/openoffice-pdf-export-library/1869016#1869016 Comment by Agnel Kurian on OpenOffice PDF Export Library Agnel Kurian 2009-12-08T18:49:13Z 2009-12-08T18:49:13Z I have come across some options but would like to know specifically about OO before moving forward. BTW, I am looking at graphical output to PDF. http://stackoverflow.com/questions/1865664/mercurial-get-non-versioned-copy-of-an-earlier-version-of-a-file Comment by Agnel Kurian on Mercurial: Get non-versioned copy of an earlier version of a file Agnel Kurian 2009-12-08T09:29:55Z 2009-12-08T09:29:55Z You're right... I've edited the question to explain what I meant. http://stackoverflow.com/questions/1854302/is-assert-evil/1858445#1858445 Comment by Agnel Kurian on Is assert evil? Agnel Kurian 2009-12-07T08:28:28Z 2009-12-07T08:28:28Z Yes. I'm very undecided about this... assert does it's job... it also allows programmers to forget to do theirs (i.e. &quot;proper error reporting&quot;). http://stackoverflow.com/questions/1854302/is-assert-evil Comment by Agnel Kurian on Is assert evil? Agnel Kurian 2009-12-07T06:52:51Z 2009-12-07T06:52:51Z A great question. Why the close votes? http://stackoverflow.com/questions/1831991/c-safe-way-to-cast-an-integer-to-a-pointer Comment by Agnel Kurian on C++: Safe way to cast an integer to a pointer Agnel Kurian 2009-12-02T13:18:26Z 2009-12-02T13:18:26Z So... how do I move a pointer across an &quot;untyped boundary&quot;? In my case, I am receiving a Win32 message and need to convert the result of a GetWindowLong call to a pointer. What is the safest way to do this? http://stackoverflow.com/questions/1320689/graphics-save-vs-graphics-begincontainer/1819098#1819098 Comment by Agnel Kurian on Graphics.Save vs Graphics.BeginContainer Agnel Kurian 2009-11-30T11:45:28Z 2009-11-30T11:45:28Z Sounds like similarities. I'm looking for differences. :) http://stackoverflow.com/questions/1763300/ax-by-c-given-two-points-p-and-q Comment by Agnel Kurian on ax + by = c given two points P and Q Agnel Kurian 2009-11-19T13:39:57Z 2009-11-19T13:39:57Z @Ferdinand, I love you. http://stackoverflow.com/questions/1763300/ax-by-c-given-two-points-p-and-q Comment by Agnel Kurian on ax + by = c given two points P and Q Agnel Kurian 2009-11-19T13:32:34Z 2009-11-19T13:32:34Z Not programming related? Heh heh? :D Programming <i>is</i> math my friend. http://stackoverflow.com/questions/1232302/how-exactly-does-zsh-expand-globs/1698011#1698011 Comment by Agnel Kurian on How exactly does zsh expand globs? Agnel Kurian 2009-11-09T04:48:54Z 2009-11-09T04:48:54Z Yes this is a Windows executable running on Cygwin. http://stackoverflow.com/questions/1661369/how-does-c-handle-integer-literals-with-leading-zeros-and-what-about-atoi/1661392#1661392 Comment by Agnel Kurian on How does C Handle Integer Literals with Leading Zeros, and What About atoi? Agnel Kurian 2009-11-03T10:24:42Z 2009-11-03T10:24:42Z Point taken. Corrected. http://stackoverflow.com/questions/1635869/using-free-inside-the-destructor-of-an-object-freed-with-delete Comment by Agnel Kurian on Using free inside the destructor of an object freed with delete Agnel Kurian 2009-10-28T09:09:28Z 2009-10-28T09:09:28Z I wouldn't think there should be a problem but did you face any issues while doing this? Curious. http://stackoverflow.com/questions/1623769/is-there-any-safe-strcmp Comment by Agnel Kurian on Is there any safe strcmp? Agnel Kurian 2009-10-26T09:23:17Z 2009-10-26T09:23:17Z Just remember that even strncmp does not guarantee safety. http://stackoverflow.com/questions/1612031/is-there-any-danger-in-calling-free-or-delete-instead-of-delete/1612185#1612185 Comment by Agnel Kurian on Is there any danger in calling free() or delete instead of delete[]? Agnel Kurian 2009-10-24T12:00:14Z 2009-10-24T12:00:14Z @Anacrolix: You may be right though usually the allocator is the operating system. My answer is based mostly on the allocator example in K&amp;R... I'm assuming that each allocator get's a different chunk of memory from the OS.