User TonJ - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T11:27:44Zhttp://stackoverflow.com/feeds/user/11537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/174892/what-is-the-most-spectacular-way-to-shoot-yourself-in-the-foot-with-c37What is the most spectacular way to shoot yourself in the foot with C++?TonJ2008-10-06T15:56:24Z2009-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#718499Answer by TonJ for Factorial Algorithms in different languagesTonJ2008-09-16T12:49:29Z2009-11-18T23:11:56Z<h1>Brainf*ck</h1>
<pre><code>+++++
>+<[[->>>>+<<<<]>>>>[-<<<<+>>+>>]<<<<>[->>+<<]<>>>[-<[->>+<<]>>[-<<+<+>>>]<]<[-]><<<-]
</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#17065751Answer by TonJ for How exactly do I config DCOM to load my DLL into a separate process?TonJ2009-11-10T09:13:16Z2009-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#11300410Answer by TonJ for Arabic text displaying in webapp without db changesTonJ2009-07-15T08:04:50Z2009-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#11300070Answer by TonJ for translate program into arabicTonJ2009-07-15T07:55:43Z2009-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#8471073Answer by TonJ for Partial builds versus full builds in Visual C++TonJ2009-05-11T07:42:44Z2009-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#7771240Answer by TonJ for Getting different instances to communicateTonJ2009-04-22T13:06:04Z2009-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& rhs );
private:
void* m_MyPtr;
};
</code></pre>
<p>and:</p>
<pre><code>void CMyClass::ExchangePointerWith(CMyClass &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#7760682Answer by TonJ for Zeroing out a struct in the constructorTonJ2009-04-22T07:47:48Z2009-04-22T07:47:48Z<p>You can use a template:</p>
<pre><code>template <class T>
class selfzero : public T
{
public:
selfzero() {
ZeroMemory( this, sizeof( selfzero<T> ));
};
};
</code></pre>
<p>and then:</p>
<pre><code>{
selfzero<STARTUPINFO> 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#3398923Answer by TonJ for For what applications is Forth best suited?TonJ2008-12-04T08:28:02Z2008-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#2047621Answer by TonJ for Good Book on C++ Internals?TonJ2008-10-15T13:47:59Z2008-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#17489813Answer by TonJ for What is the most spectacular way to shoot yourself in the foot with C++?TonJ2008-10-06T15:58:23Z2008-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#1272820Answer by TonJ for Returning an 'any kind of input iterator' instead of a vector::iterator or a list::iteratorTonJ2008-09-24T13:55:29Z2008-09-24T13:55:29Z<p>I looked in the header file VECTOR.</p>
<pre><code>vector<Arc*>::const_iterator
</code></pre>
<p>is a typedef for</p>
<pre><code>allocator<Arc*>::const_pointer
</code></pre>
<p>Could that be your ArcIterator? Like:</p>
<pre><code>typedef allocator<Arc*>::const_pointer ArcIterator;
</code></pre>
http://stackoverflow.com/questions/126966/is-there-a-good-lightweight-multiplatform-c-timer-queue/127074#1270740Answer by TonJ for Is there a good lightweight multiplatform C++ timer queue?TonJ2008-09-24T13:18:48Z2008-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#1206680Answer by TonJ for C,C++ compiler for VistaTonJ2008-09-23T12:30:22Z2008-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#1136883Answer by TonJ for Unit testing for C++ code - Tools and methodologyTonJ2008-09-22T07:51:37Z2008-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#1136860Answer by TonJ for choosing a c++ unit testing tool/frameworkTonJ2008-09-22T07:50:02Z2008-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#1130041Comment by TonJ on Arabic text displaying in webapp without db changesTonJ2009-07-15T08:19:36Z2009-07-15T08:19:36ZYou 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-cComment by TonJ on Help - please convert this LINQ example to C++TonJ2009-07-06T10:39:40Z2009-07-06T10:39:40ZI 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#58852Comment by TonJ on Great programming quotesTonJ2009-07-02T08:10:53Z2009-07-02T08:10:53ZUnless you have infinite smartness! Oh, DoxaLogos already wrote that.http://stackoverflow.com/questions/1054141/use-stdio-h-in-evc/1054817#1054817Comment by TonJ on Use stdio.h in eVC++TonJ2009-06-28T13:19:19Z2009-06-28T13:19:19ZAlternatively, you can update and clarify your own question, of course.http://stackoverflow.com/questions/1054141/use-stdio-h-in-evc/1054817#1054817Comment by TonJ on Use stdio.h in eVC++TonJ2009-06-28T13:18:24Z2009-06-28T13:18:24ZIf 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-chComment by TonJ on Page Replacement using C/C++hTonJ2009-06-28T13:02:49Z2009-06-28T13:02:49ZPosting your Email address to "send me the codez" 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-errorsComment by TonJ on What could cause a deterministic process to generate floating point errorsTonJ2009-06-09T08:00:45Z2009-06-09T08:00:45ZDoes the nondeterminism go away when you run the executable on a single core?http://stackoverflow.com/questions/838344/algorithm-for-finding-nearby-pointsComment by TonJ on Algorithm for finding nearby points?TonJ2009-05-08T05:29:42Z2009-05-08T05:29:42ZDoes 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-numericlimitstminComment by TonJ on How to workaround the inconsistent definition of numeric_limits<T>::min()?TonJ2009-05-05T08:52:05Z2009-05-05T08:52:05ZThere are two bugs in your example.
1. The function should be called max(), since it calculates the maximum element.
2. the line "val = max(T, vect[i])" should be "val = max(val, vect[i])".http://stackoverflow.com/questions/798002/filling-a-boost-vector-or-matrixComment by TonJ on filling a boost vector or matrixTonJ2009-04-28T15:09:49Z2009-04-28T15:09:49ZYou should also tag this "C++".http://stackoverflow.com/questions/498512/how-to-be-an-eco-friendly-programmer/498858#498858Comment by TonJ on How to be an eco-friendly programmer?TonJ2009-04-23T06:45:49Z2009-04-23T06:45:49Z"how many watts does it take to answer their question" should be "how many watt-seconds" or "how many joules".http://stackoverflow.com/questions/772596/black-hat-knowledge-for-white-hat-programmersComment by TonJ on Black hat knowledge for white hat programmersTonJ2009-04-22T13:15:49Z2009-04-22T13:15:49ZShouldn't this question have a "poll" tag?http://stackoverflow.com/questions/776976/getting-different-instances-to-communicate/777105#777105Comment by TonJ on Getting different instances to communicateTonJ2009-04-22T13:08:51Z2009-04-22T13:08:51ZThe exchangeData() function can be public.http://stackoverflow.com/questions/339649/how-can-i-add-very-large-numbers-in-c/339661#339661Comment by TonJ on How can I add very large numbers in C++?TonJ2008-12-04T08:24:04Z2008-12-04T08:24:04ZYou mean 64 bits, not 64 bytes.http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/203602#203602Comment by TonJ on Coding in Other (Spoken) LanguagesTonJ2008-11-13T08:59:54Z2008-11-13T08:59:54ZShalom Uri,
There is also the Hebrew Programming Language (HPL) on Sourceforge. Like LOGO, it's aimed at young computer users.