User TonJ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T11:27:44Z http://stackoverflow.com/feeds/user/11537 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c 37 What is the most spectacular way to shoot yourself in the foot with C++? TonJ 2008-10-06T15:56:24Z 2009-11-19T17:08:20Z <p>In 1986 or so, Bjarne Stroustrup famously said: "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off."</p> <p>What is, in your opinion, the most spectacular way to blow your leg off in C++? Points for originality, and for helpfulness.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/71849#71849 9 Answer by TonJ for Factorial Algorithms in different languages TonJ 2008-09-16T12:49:29Z 2009-11-18T23:11:56Z <h1>Brainf*ck</h1> <pre><code>+++++ &gt;+&lt;[[-&gt;&gt;&gt;&gt;+&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[-&lt;&lt;&lt;&lt;+&gt;&gt;+&gt;&gt;]&lt;&lt;&lt;&lt;&gt;[-&gt;&gt;+&lt;&lt;]&lt;&gt;&gt;&gt;[-&lt;[-&gt;&gt;+&lt;&lt;]&gt;&gt;[-&lt;&lt;+&lt;+&gt;&gt;&gt;]&lt;]&lt;[-]&gt;&lt;&lt;&lt;-] </code></pre> <p>Written by Michael Reitzenstein.</p> http://stackoverflow.com/questions/1706429/how-exactly-do-i-config-dcom-to-load-my-dll-into-a-separate-process/1706575#1706575 1 Answer by TonJ for How exactly do I config DCOM to load my DLL into a separate process? TonJ 2009-11-10T09:13:16Z 2009-11-10T09:13:16Z <p>Isn't this what DLLHOST.EXE was made for?</p> http://stackoverflow.com/questions/1129808/arabic-text-displaying-in-webapp-without-db-changes/1130041#1130041 0 Answer by TonJ for Arabic text displaying in webapp without db changes TonJ 2009-07-15T08:04:50Z 2009-07-15T08:04:50Z <p>There's also UTF-7, which uses only US-ASCII chars. Using this, you might stay away from code page problems.</p> http://stackoverflow.com/questions/1129957/translate-program-into-arabic/1130007#1130007 0 Answer by TonJ for translate program into arabic TonJ 2009-07-15T07:55:43Z 2009-07-15T07:55:43Z <p>Feed the strings of your app into translate.google.com. At the very least you'll get a good laugh out of it.</p> http://stackoverflow.com/questions/847092/partial-builds-versus-full-builds-in-visual-c/847107#847107 3 Answer by TonJ for Partial builds versus full builds in Visual C++ TonJ 2009-05-11T07:42:44Z 2009-05-11T07:42:44Z <p>Hasn't everyone come across this usage pattern? I get weird build errors, and before even investigating I do a full rebuild, and the problem goes away.</p> <p>This by itself seems to me to be good enough reason to do a full rebuild before a release.</p> <p>Whether you would be willing to turn an incremental build that completes without problems over to testing, is a matter of taste, I think.</p> http://stackoverflow.com/questions/776976/getting-different-instances-to-communicate/777124#777124 0 Answer by TonJ for Getting different instances to communicate TonJ 2009-04-22T13:06:04Z 2009-04-22T13:06:04Z <p>I probably missed the point of your question. Why does this not do what you want?</p> <pre><code>class CMyClass { public: void ExchangePointerWith( CMyClass&amp; rhs ); private: void* m_MyPtr; }; </code></pre> <p>and:</p> <pre><code>void CMyClass::ExchangePointerWith(CMyClass &amp;rhs) { void* tmp= m_MyPtr; m_MyPtr= rhs.m_MyPtr; rhs.m_MyPtr= tmp; } </code></pre> http://stackoverflow.com/questions/775902/zeroing-out-a-struct-in-the-constructor/776068#776068 2 Answer by TonJ for Zeroing out a struct in the constructor TonJ 2009-04-22T07:47:48Z 2009-04-22T07:47:48Z <p>You can use a template:</p> <pre><code>template &lt;class T&gt; class selfzero : public T { public: selfzero() { ZeroMemory( this, sizeof( selfzero&lt;T&gt; )); }; }; </code></pre> <p>and then:</p> <pre><code>{ selfzero&lt;STARTUPINFO&gt; si; } </code></pre> <p>The caveat: use this on a class or struct that has a vtable or got a vtable later, and it will go bang.</p> http://stackoverflow.com/questions/339782/for-what-applications-is-forth-best-suited/339892#339892 3 Answer by TonJ for For what applications is Forth best suited? TonJ 2008-12-04T08:28:02Z 2008-12-04T08:28:02Z <p>Forth is useful when you need a drop-dead simple compiler for new hardware. Also, Forth is this funny mix of interpreter and compiler, getting somehow the best of both. The downside is that Forth does not play well with cache memory (comments are open if you disagree). By all means do try Forth: it's simple enough for DIY, it expands your mind and is just good fun.</p> http://stackoverflow.com/questions/201694/good-book-on-c-internals/204762#204762 1 Answer by TonJ for Good Book on C++ Internals? TonJ 2008-10-15T13:47:59Z 2008-10-15T13:47:59Z <p>Try the InformIT C++ reference guide, see <a href="http://www.informit.com/guides/guide.aspx?g=cplusplus" rel="nofollow">here</a>. It's free.</p> http://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c/174898#174898 13 Answer by TonJ for What is the most spectacular way to shoot yourself in the foot with C++? TonJ 2008-10-06T15:58:23Z 2008-10-06T15:58:23Z <p><a href="http://stackoverflow.com/questions/149500/what-does-the-code-if-blah-5-do#149514">Here on SO</a>, Joel Coehoorn wrote about this example:</p> <pre><code> if ( blah(), 5) { //do something } </code></pre> <blockquote> <p>"Note that the , operator could be overloaded for the return type of the blah() function (which wasn't specified), making the result non-obvious."</p> </blockquote> http://stackoverflow.com/questions/127009/returning-an-any-kind-of-input-iterator-instead-of-a-vectoriterator-or-a-list/127282#127282 0 Answer by TonJ for Returning an 'any kind of input iterator' instead of a vector::iterator or a list::iterator TonJ 2008-09-24T13:55:29Z 2008-09-24T13:55:29Z <p>I looked in the header file VECTOR.</p> <pre><code>vector&lt;Arc*&gt;::const_iterator </code></pre> <p>is a typedef for</p> <pre><code>allocator&lt;Arc*&gt;::const_pointer </code></pre> <p>Could that be your ArcIterator? Like:</p> <pre><code>typedef allocator&lt;Arc*&gt;::const_pointer ArcIterator; </code></pre> http://stackoverflow.com/questions/126966/is-there-a-good-lightweight-multiplatform-c-timer-queue/127074#127074 0 Answer by TonJ for Is there a good lightweight multiplatform C++ timer queue? TonJ 2008-09-24T13:18:48Z 2008-09-24T13:18:48Z <p>There is a nice article in CodeProject, <a href="http://www.codeproject.com/KB/system/timers_intro.aspx" rel="nofollow">here</a>, that describes the various timers available in Windows, and has chapters titled "Queue timers" and "Make your own timer".</p> <p>For platform independence, you'd have to make implementations for the different platforms inside #ifdef -- #endif pairs. I can see nothing less ugly than that.</p> http://stackoverflow.com/questions/120533/c-c-compiler-for-vista/120668#120668 0 Answer by TonJ for C,C++ compiler for Vista TonJ 2008-09-23T12:30:22Z 2008-09-23T12:30:22Z <p>I am using Cygwin and GNU gcc to good effect. My Windows is XP, not Vista, however. Can anyone recommend gcc on Cygwin on Vista?</p> http://stackoverflow.com/questions/91384/unit-testing-for-c-code-tools-and-methodology/113688#113688 3 Answer by TonJ for Unit testing for C++ code - Tools and methodology TonJ 2008-09-22T07:51:37Z 2008-09-22T07:51:37Z <p>See also the answers to the closely related question "choosing a c++ unit testing tool/framework", <a href="http://stackoverflow.com/questions/13699/choosing-a-c-unit-testing-toolframework#113686">here</a></p> http://stackoverflow.com/questions/13699/choosing-a-c-unit-testing-tool-framework/113686#113686 0 Answer by TonJ for choosing a c++ unit testing tool/framework TonJ 2008-09-22T07:50:02Z 2008-09-22T07:50:02Z <p>See also the answers to the closely related question "Unit testing for C++ code - Tools and methodology", <a href="http://stackoverflow.com/questions/91384/unit-testing-for-c-code-tools-and-methodology">here</a></p> http://stackoverflow.com/questions/1129808/arabic-text-displaying-in-webapp-without-db-changes/1130041#1130041 Comment by TonJ on Arabic text displaying in webapp without db changes TonJ 2009-07-15T08:19:36Z 2009-07-15T08:19:36Z You can also look at RFC 2152, <a href="http://tools.ietf.org/html/rfc2152" rel="nofollow">tools.ietf.org/html/rfc2152</a>. It has a nice explanation. http://stackoverflow.com/questions/1086241/help-please-convert-this-linq-example-to-c Comment by TonJ on Help - please convert this LINQ example to C++ TonJ 2009-07-06T10:39:40Z 2009-07-06T10:39:40Z I think you have a better chance of getting help with this task if you first make a honest effort to write this in the best C++ you can do, and then ask if anyone can give you pointers on how to improve your code. http://stackoverflow.com/questions/58640/great-programming-quotes/58852#58852 Comment by TonJ on Great programming quotes TonJ 2009-07-02T08:10:53Z 2009-07-02T08:10:53Z Unless you have infinite smartness! Oh, DoxaLogos already wrote that. http://stackoverflow.com/questions/1054141/use-stdio-h-in-evc/1054817#1054817 Comment by TonJ on Use stdio.h in eVC++ TonJ 2009-06-28T13:19:19Z 2009-06-28T13:19:19Z Alternatively, you can update and clarify your own question, of course. http://stackoverflow.com/questions/1054141/use-stdio-h-in-evc/1054817#1054817 Comment by TonJ on Use stdio.h in eVC++ TonJ 2009-06-28T13:18:24Z 2009-06-28T13:18:24Z If you want to react to someone's reply, post a comment, not another reply. You have no control over the order in which replies are shown on the page, and so will confuse the reader. http://stackoverflow.com/questions/1054833/page-replacement-using-c-ch Comment by TonJ on Page Replacement using C/C++h TonJ 2009-06-28T13:02:49Z 2009-06-28T13:02:49Z Posting your Email address to &quot;send me the codez&quot; is generally frowned upon, since no-one but you will benefit. Links to implementations should be posted here, not Emailed to you. http://stackoverflow.com/questions/968435/what-could-cause-a-deterministic-process-to-generate-floating-point-errors Comment by TonJ on What could cause a deterministic process to generate floating point errors TonJ 2009-06-09T08:00:45Z 2009-06-09T08:00:45Z Does the nondeterminism go away when you run the executable on a single core? http://stackoverflow.com/questions/838344/algorithm-for-finding-nearby-points Comment by TonJ on Algorithm for finding nearby points? TonJ 2009-05-08T05:29:42Z 2009-05-08T05:29:42Z Does it have to be exact, or is it also OK if e.g. 900 out of 1000 selected are among the closest 1000? http://stackoverflow.com/questions/801313/how-to-workaround-the-inconsistent-definition-of-numericlimitstmin Comment by TonJ on How to workaround the inconsistent definition of numeric_limits<T>::min()? TonJ 2009-05-05T08:52:05Z 2009-05-05T08:52:05Z There are two bugs in your example. 1. The function should be called max(), since it calculates the maximum element. 2. the line &quot;val = max(T, vect[i])&quot; should be &quot;val = max(val, vect[i])&quot;. http://stackoverflow.com/questions/798002/filling-a-boost-vector-or-matrix Comment by TonJ on filling a boost vector or matrix TonJ 2009-04-28T15:09:49Z 2009-04-28T15:09:49Z You should also tag this &quot;C++&quot;. http://stackoverflow.com/questions/498512/how-to-be-an-eco-friendly-programmer/498858#498858 Comment by TonJ on How to be an eco-friendly programmer? TonJ 2009-04-23T06:45:49Z 2009-04-23T06:45:49Z &quot;how many watts does it take to answer their question&quot; should be &quot;how many watt-seconds&quot; or &quot;how many joules&quot;. http://stackoverflow.com/questions/772596/black-hat-knowledge-for-white-hat-programmers Comment by TonJ on Black hat knowledge for white hat programmers TonJ 2009-04-22T13:15:49Z 2009-04-22T13:15:49Z Shouldn't this question have a &quot;poll&quot; tag? http://stackoverflow.com/questions/776976/getting-different-instances-to-communicate/777105#777105 Comment by TonJ on Getting different instances to communicate TonJ 2009-04-22T13:08:51Z 2009-04-22T13:08:51Z The exchangeData() function can be public. http://stackoverflow.com/questions/339649/how-can-i-add-very-large-numbers-in-c/339661#339661 Comment by TonJ on How can I add very large numbers in C++? TonJ 2008-12-04T08:24:04Z 2008-12-04T08:24:04Z You mean 64 bits, not 64 bytes. http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/203602#203602 Comment by TonJ on Coding in Other (Spoken) Languages TonJ 2008-11-13T08:59:54Z 2008-11-13T08:59:54Z Shalom Uri, There is also the Hebrew Programming Language (HPL) on Sourceforge. Like LOGO, it's aimed at young computer users.