User KTC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:14:32Z http://stackoverflow.com/feeds/user/12868 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88785#88785 222 Answer by KTC for What's your favorite "programmer" cartoon? KTC 2008-09-17T23:54:46Z 2009-10-05T03:24:30Z <p><img src="http://img34.imageshack.us/img34/9153/thenamiracleoccurscarto.png" alt="alt text" /></p> <p>(Originally) <a href="http://www.sciencecartoonsplus.com/images/miracle3.gif" rel="nofollow">http://www.sciencecartoonsplus.com/images/miracle3.gif</a></p> http://stackoverflow.com/questions/97454/c-static-code-analysis-tool-on-windows 7 C++ static code analysis tool on Windows KTC 2008-09-18T22:02:03Z 2009-10-02T07:44:59Z <p>What C++ static code analysis tool are there on Microsoft Windows, and which would you recommend?</p> <p>Please state whether a particular tool relies on cygwin, and whether it cost money. One per post as per for voting up &amp; down.</p> <p><strong>Similar Question:</strong> <a href="http://stackoverflow.com/questions/141498/what-open-source-c-static-analysis-tools-are-available">http://stackoverflow.com/questions/141498/what-open-source-c-static-analysis-tools-are-available</a></p> http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc 2 Template's member typedef use in parameter undeclared identifier in VS but not GCC KTC 2009-08-12T22:44:02Z 2009-08-21T16:08:42Z <p>I'm looking at some codes which makes heavy uses of templates. It compiles fine on GCC, but not on VS (tested on 2003 - 2010 beta 1), where it fails during syntax analysis. Unfortunately I don't know enough of the code structure to be able reduce the problem and reproduce it in only a few lines, so I can only guess at the cause. I'm hoping someone here can point me in the right direction.</p> <p>We have</p> <pre><code>template&lt; class UInt, typename IntT, bool is_signed = std::numeric_limits&lt;IntT&gt;::is_signed &gt; struct uii_ops_impl; // .... template&lt;class UInt&gt; struct uii_ops_impl&lt; UInt, typename make_signed&lt;typename UInt::digit_type&gt;::type, true &gt; { typedef UInt unbounded_int_type; typedef typename make_signed&lt; typename unbounded_int_type::digit_type &gt;::type integral_type; // ... static void add(unbounded_int_type&amp; lhs, integral_type rhs); // ... }; template&lt;class UInt&gt; void uii_ops_impl&lt; UInt, typename make_signed&lt;typename UInt::digit_type&gt;::type, true &gt;::add(unbounded_int_type&amp; lhs, integral_type rhs) { // .... } </code></pre> <p>When compiled on VS, the first error message (among many) it returns is</p> <blockquote> <p>: error C2065: '<code>unbounded_int_type</code>' : undeclared identifier</p> </blockquote> <p>I mean, <em>point at the typedef</em> huh? :-S</p> <p><strong>EDIT:</strong></p> <p>It seems there's something to do with </p> <pre><code>typename make_signed&lt;typename UInt::digit_type&gt;::type </code></pre> <p>being used as a template parameter. Throughout the rest of the codes, similar typedefs being used in the member function parameter compiles fine. The only difference I can see so far is that none of the other cases have the above line as a template parameter. <code>make_signed</code> is from Boost.TypeTraits.</p> <p><strong>EDIT:</strong></p> <p>Okay, maybe that's not it, because the exact same thing is done in another file where it compiled fine. Hmm...</p> <p><strong>Bounty EDIT:</strong></p> <p>Okay, I think it's obvious at this point the problem is not actually where the compiler is complaining about. Only the two member functions definition at that particular point fail. It turns out that explicitly qualifying the parameter still <strong>doesn't</strong> compile. The only immediate solution is to define the function inline. That passes syntax analysis. However, when trying to instalize the template VS now fails because <code>std::allocator&lt;void&gt;</code> doesn't have a <code>size_type</code> member. Turns out VS have a specialization of <code>std::allocator&lt;T&gt;</code> for T=void that does not declare a <code>size_type</code>. I thought <code>size_type</code> is a required member of all allocators?</p> <p>So the question now is, what could possibly foul up VS so much during syntax analysis that it complains about completely unrelated non-problem as errors, and how do you debug such codes?</p> <p>p.s. For those that have too much time to spare, the code I'm trying to make work in VS is Kevin Sopp's <a href="http://svn.boost.org/svn/boost/sandbox/mp%5Fmath/" rel="nofollow">mp_math</a> in Boost's sandbox, which is based on <a href="http://math.libtomcrypt.com/" rel="nofollow">libtommath</a>. </p> http://stackoverflow.com/questions/1285832/good-source-to-learn-how-about-virus-and-other-security-tools/1285897#1285897 0 Answer by KTC for Good source to learn how about virus and other security tools? KTC 2009-08-17T02:06:22Z 2009-08-17T02:06:22Z <p>As well as what Alex Martelli posted, <a href="http://rads.stackoverflow.com/amzn/click/0321304543" rel="nofollow">this book</a> might be something you can consider.</p> http://stackoverflow.com/questions/1284314/easterdate-in-javascript/1284336#1284336 1 Answer by KTC for easter_date() in JavaScript KTC 2009-08-16T13:48:31Z 2009-08-16T13:48:31Z <p>Have a look at the PHP source code to see how they calculate theirs and replicate in JavaScript?</p> http://stackoverflow.com/questions/1282295/what-exactly-is-nullptr-in-c0x/1282328#1282328 2 Answer by KTC for What exactly is nullptr in C++0x? KTC 2009-08-15T17:00:47Z 2009-08-15T17:00:47Z <p>It is a keyword because the standard will specify it as such. ;-) According to the latest public draft (n2914)</p> <blockquote> <p>2.14.7 Pointer literals [lex.nullptr]</p> <pre><code>pointer-literal: nullptr </code></pre> <p>The pointer literal is the keyword <code>nullptr</code>. It is an rvalue of type <code>std::nullptr_t</code>.</p> </blockquote> <p>It's useful because it does not implicitly convert to an integral value. </p> http://stackoverflow.com/questions/1282271/how-to-test-a-prime-number-1000-digits-long/1282277#1282277 3 Answer by KTC for how to test a prime number 1000 digits long? KTC 2009-08-15T16:40:42Z 2009-08-15T16:40:42Z <p><a href="http://java.sun.com/javase/6/docs/api/java/math/BigInteger.html" rel="nofollow">BigInteger</a></p> http://stackoverflow.com/questions/1266146/is-programming-always-interesting/1266161#1266161 1 Answer by KTC for Is Programming always interesting? KTC 2009-08-12T13:27:15Z 2009-08-12T13:27:15Z <p>The classic answer: "it depends"</p> <p>What area of programming are you interested in? What area do you actually get to do (it terms of work)? If they don't match up, even if it might be interesting to other people, it won't be interesting to you.</p> http://stackoverflow.com/questions/1263447/copying-c-style-string-to-free-store-using-only-dereference/1263463#1263463 5 Answer by KTC for Copying C-Style String to Free Store Using Only Dereference KTC 2009-08-11T23:06:31Z 2009-08-12T12:12:27Z <p>C-style string ends with '\0'. You need to traverse the string inside the function character by character until you encounter '\0' to know how long it is. (This is effectively what you would do by calling strlen() to work it out.) Once you know how long the string is, you can allocate the right amount of memory, which is the length+1 (because of the '\0').</p> <p>To access the i'th element of an array p, one use subscript: <code>p[i]</code>. </p> <p>Subscript of the form <code>p[i]</code> is formally defined to be <code>*((p)+(i))</code> by both the C standard (6.5.2.1 of C99) and the C++ standard (5.2.1 of C99). Here, one of <code>p</code> or <code>i</code> is of the type pointer to T, and the other is of integral type (or enumeration in C++). Because array name is converted automatically (in most types of use anyway) to a pointer to the first element of said array, <code>p[i]</code> is thus the i'th element of array p.</p> <p>And just like basic arithmetic, <code>((p)+(i))</code> is equivalent to <code>((i)+(p))</code> in pointer arithmetic. This mean <code>*((p)+(i))</code> is equivalent to <code>*((i)+(p))</code>. Which also mean <code>p[i]</code> is equivalent to <code>i[p]</code>.</p> http://stackoverflow.com/questions/1263607/c-c-preprocesser-macro/1263620#1263620 5 Answer by KTC for C, C++ preprocesser macro KTC 2009-08-12T00:04:36Z 2009-08-12T00:04:36Z <p>This is why macro is evil!</p> <p>A macro is literal text subsitution by the proprocessor before your compiler gets to it so <code>k = maxMacro(i,j++);</code> becomes <code>( (i) &gt; (j++) ) ? (i) : (j++);</code>. I hope you see the problem here.</p> <p>In the (inline) function call, the value of a and b is passed by value into the function where the initial value of i and j is passed in, after which j increment.</p> http://stackoverflow.com/questions/1255498/linker-options-to-prevent-program-too-big-to-fit-in-memory/1255565#1255565 1 Answer by KTC for Linker options to prevent "Program too big to fit in memory" KTC 2009-08-10T15:26:48Z 2009-08-10T15:26:48Z <p>Inside the GUI, in project properties, you can see the command line options passed to cl.exe &amp; link.exe by looking under "Command Line" in the C/C++ and Linker section respectively.</p> <p>Have a look and compare and contrast to see what you're doing differently.</p> <p>The error itself suggest your binary (.exe) is corrupt. See <a href="http://blogs.msdn.com/oldnewthing/archive/2006/01/30/519388.aspx" rel="nofollow">this</a> for a bit more information.</p> http://stackoverflow.com/questions/1254056/what-are-the-available-methods-in-c-std-library-where-can-i-see-read-them/1254109#1254109 3 Answer by KTC for What are the available methods in C++ std library, where can I see/read them ? KTC 2009-08-10T10:17:59Z 2009-08-10T10:17:59Z <p><a href="http://www.dinkumware.com/manuals/default.aspx" rel="nofollow">Dinkumware</a> reference.</p> <p><a href="http://www.sgi.com/tech/stl/" rel="nofollow">STL reference</a> from SGI.</p> http://stackoverflow.com/questions/1250219/using-vs2008-with-c-c/1251089#1251089 0 Answer by KTC for Using VS2008 with C/C++ KTC 2009-08-09T10:13:08Z 2009-08-09T10:20:13Z <p>To start a new empty C or C++ project in VC++:</p> <blockquote> <p>File > New > Project... > Visual C++ > Win32 Project > OK > [Application Settings] > [Empty project] > OK</p> </blockquote> <p>Then add new source file to the project by right clicking on your project name:</p> <blockquote> <p>Add > New Item... > Visual C++ > Code > C++ File (.cpp) > Add</p> </blockquote> <p>Just make sure you explicitly give your file a .c extension if you want.</p> <p>To tell VC++ to compile your whole project as C and not C++, right click on your project name:</p> <blockquote> <p>Properties > Configuration Properties > C/C++ > Advanced > Compile As > Compile as C Code (/TC) > OK</p> </blockquote> <p>(That should already be the case for individual file with a .c extension.) You might also check the various other settings is suitable while you're there.</p> <p>Like RichieHindle said, you might not have installed VC++ during the installation of VS. In that case, you would need to install it before you can do anything obviously. Hope that helps. :)</p> http://stackoverflow.com/questions/1239425/personalised-bulk-email-programmatically-without-timing-out 0 Personalised bulk email programmatically without timing out KTC 2009-08-06T14:52:25Z 2009-08-06T15:47:50Z <p>I have a list of around 5,000 to 10,000 (individual user supplied) email addresses from people all over the world, each associated with their username and language codes. I also have a single message translated into the different languages of the users that I want to email. Now, I would like to send a single plain text email to each of the address, with the actual text of the email varying based on the user language, and personalised with the username of the person I'm emailing.</p> <p>Because of the personalised requirement, and the fact that they will only be emailed once (per year or two with a overlapped but different user list), formal mailing list is probably (&amp; preferably) out. 3rd party bulk email service is also out.</p> <p>Ignoring programming time, what is the least manually time consuming way to do this in (preferably) PHP? (I am writing the script(s), but not necessarily the person that end up "pressing the button" to send it.) The ideal result is the person sending only having to type a single command to run the script (supplying the email list) and all the email will be sent with no more user intervention. This mean I am looking to avoid things like setting up cron jobs to run the script repeatedly until the email list is exhausted. </p> <p>When this was done before a year ago, I wrote a PHP script that simply read in the email list line by line processing the username, email address, and language code and build the desired email text out of that before supplying it to PHPMailer to send individually. The problem I had was the script timing out and me not knowing where it got up to so that I can trim the email list at the right place to start again. I ended up manually splitting up the 1 email list into several sub-list that was short enough so that the script doesn't time out. How do I either avoid timing out, or keep track of where the script is up to email address wise so that it can be restarted manually and no person is sent emails more than once?</p> <p>What other issues are there to take into account, such as avoiding blacklisting etc.?</p> http://stackoverflow.com/questions/1233312/finding-version-of-microsoft-c-compiler-from-command-line-for-makefiles/1233332#1233332 2 Answer by KTC for Finding version of Microsoft C++ compiler from command-line (for makefiles) KTC 2009-08-05T13:41:24Z 2009-08-05T13:41:24Z <p>Are you sure you can't just run cl.exe without any input for it to report its version?</p> <p>I've just tested running cl.exe in the command prompt for VS 2008, 2005, and .NET 2003 and they all reported its version.</p> <p>For 2008:</p> <blockquote> <p>d:\Program Files\Microsoft Visual Studio 9.0\VC>cl</p> <p>Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86</p> </blockquote> <p>For 2005:</p> <blockquote> <p>C:\Program Files\Microsoft Visual Studio 8\VC>cl</p> <p>Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.762 for 80x86</p> </blockquote> <p>For .NET 2003:</p> <blockquote> <p>Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.6030 for 80x86</p> </blockquote> http://stackoverflow.com/questions/1231942/learning-c-without-an-ide/1232005#1232005 1 Answer by KTC for Learning C++ without an IDE KTC 2009-08-05T09:00:03Z 2009-08-05T09:00:03Z <p>Visual C++ is the name of the IDE program package. Installing it installs many things including the compiler cl.exe, which can compile, depending on settings, program written in either the C, C++, or C++/CLI programming language (for the .Net framework).</p> <p>You can use the compiler on the command prompt without the IDE by (for example) selecting Start > Programs > Microsoft Visual Studio X > Visual Studio Tools > Visual Studio X Command Prompt. This execute a script which sets various environment settings needed to compile programs before giving you the command prompt.</p> http://stackoverflow.com/questions/1231774/why-public-ref-in-c-class-definition/1231791#1231791 3 Answer by KTC for Why public ref in c++ class definition KTC 2009-08-05T08:06:31Z 2009-08-05T08:06:31Z <p>You're reading a book call C++ Primer which teaches the <a href="http://en.wikipedia.org/wiki/C%2B%2B" rel="nofollow">C++</a> programming language, whereas you're attempting to create a program telling VC++ the code is in <a href="http://en.wikipedia.org/wiki/C%2B%2B/CLI" rel="nofollow">C++/CLI</a>, a different programming language....</p> http://stackoverflow.com/questions/214706/c-or-c-bigint-library-on-microsoft-windows 0 C or C++ BigInt library on Microsoft Windows KTC 2008-10-18T07:19:13Z 2009-08-03T14:57:12Z <p>What arbitrary-precision integers (and or rationals) library are there for compilers running on Microsoft Windows, and which would you recommend?</p> <p>Please state license type / cost, supported compilers (i.e. GCC and or VC++) for the library.</p> http://stackoverflow.com/questions/214706/c-or-c-bigint-library-on-microsoft-windows/214707#214707 5 Answer by KTC for C or C++ BigInt library on Microsoft Windows KTC 2008-10-18T07:19:18Z 2009-08-03T14:17:33Z <p><a href="http://gmplib.org/" rel="nofollow">GMP</a>.</p> <p>LGPL. Standard download from official website is designed for GCC. VC++ port is available from <a href="http://gladman.plushost.co.uk/oldsite/computing/gmp4win.php" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1220751/how-to-choose-an-aes-encryption-mode-cbc-ecb-ctr-ocb-cfb/1220773#1220773 3 Answer by KTC for How to choose an AES encryption mode (CBC ECB CTR OCB CFB)? KTC 2009-08-03T05:21:21Z 2009-08-03T05:21:21Z <p>Have you start by reading the information on this on Wikipedia - <a href="http://en.wikipedia.org/wiki/Block%5Fcipher%5Fmodes%5Fof%5Foperation" rel="nofollow">Block cipher modes of operation</a>? Then follow the reference link on Wikipedia to <a href="http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf" rel="nofollow">NIST: Recommendation for Block Cipher Modes of Operation</a>.</p> http://stackoverflow.com/questions/1205214/im-getting-compile-errors-in-the-standard-library-whats-up/1205597#1205597 0 Answer by KTC for I'm getting compile errors in the standard library. What's up? KTC 2009-07-30T09:53:53Z 2009-07-30T09:53:53Z <p>I think sometimes mismatch between different versions of headers library can cause this as well. Have you recently install new versions of standard libraries, like with SDK or whatever, or played with the PATHs and stuff like that?</p> http://stackoverflow.com/questions/1192765/are-there-any-tools-for-verifying-coding-standards/1192777#1192777 4 Answer by KTC for Are there any tools for verifying coding standards? KTC 2009-07-28T08:49:01Z 2009-07-28T08:49:01Z <p><a href="http://stackoverflow.com/questions/93260/a-free-tool-to-check-c-c-source-code-against-a-set-of-coding-standards">Duplicate 1</a>, <a href="http://stackoverflow.com/questions/641050/what-tools-exist-for-comparing-c-code-to-coding-guidelines">duplicate 2</a>.</p> http://stackoverflow.com/questions/1176006/php-should-i-use-sha1-or-others-version-of-sha-whats-are-the-differences/1191322#1191322 1 Answer by KTC for Php, should i use sha1 or others version of sha? Whats are the differences? KTC 2009-07-28T00:17:13Z 2009-07-28T00:17:13Z <p>You are confusing two issues here. Random password generation, which is basically picking random symbols of a certain (minimum) length, and password storage, which in practical terms involve storing a hash of the password with a salt so that the plaintext password can't be discover just by reading the database.</p> <h2>Generation</h2> <p>To pick random symbols, you have an array of all the symbols, get a random number and subscript into the array using that number as index to return a symbol. This is what Kane Wallmann suggested earlier. However, for security related application such as password generation, one need a <a href="http://en.wikipedia.org/wiki/Cryptographically%5Fstrong" rel="nofollow">cryptographically strong</a> pseudo-random number generation, which rand() <a href="http://www.suspekt.org/2008/08/17/mt%5Fsrand-and-not-so-random-numbers/" rel="nofollow">is not</a>.</p> <h2>Storage</h2> <p>As noted earlier, password shouldn't be stored in plaintext in the database. Otherwise, anyone with access to it can just read it and know what the password of any and all particular user password are. What happen is a hash of the password is store instead. When a user attempt to login, their password is hash and compare to the value in the database to see if it's the same. The hashing function is what's call a one-way function. You can hash the password to get a hashed value, but you can't get the password from the hash value without trying all possible combination to see if it matches. (At least, that's the idea anyway.) It's more complicated than that of course, since hash value output is fixed length, whereas the possible input while in practical terms isn't infinite is definitely more than the possible number of output. </p> <p>Now, where salt comes in is because simple hashing of the password alone isn't secure either. For one, such a method would give the same hashed value for any two users with the same password. Compromise of one account would result in the compromise of the other. Secondly, what an attacker can do is to build what is called a <a href="http://en.wikipedia.org/wiki/Rainbow%5Ftable" rel="nofollow">rainbow table</a> ahead of time. While this take time, it only have to be done once for any storage algorithm, and he or she don't have to do it themselves. The work can be spilt over many computers, and there's in fact websites on the internet where you can download such rainbow tables for weak password hashing system such as <a href="http://en.wikipedia.org/wiki/LAN%5FManager" rel="nofollow">LM</a> and <a href="http://en.wikipedia.org/wiki/NTLM" rel="nofollow">NTLM</a>. After that, the attacker can just look up any particular hash value against the table and determine the plaintext password. So to protect against that, a random (per user) salt value is added to the password before it is hashed. This makes the input different even for the same password, so prevent the first problem. It also mitigate against the second problem if the salt &amp; password combined is long enough as the length of the input is such that it would become computationally infeasible to brute force it.</p> <p>As to the question of which particular SHA, or for that matter, other hashing algorithms to use. SHA is a US NIST standard, and are acknowledged to be pretty good. There's been a little theoretical breakthrough into SHA-1, but in practice it's still secure enough for most purpose. The SHA-2 algorithms are better than SHA-1, with no known breakthrough. Which variant to choose are down to various things including size. They produce different length output, and different amount to calculate because of the size difference. PHP have <a href="http://us2.php.net/manual/en/function.hash-algos.php" rel="nofollow">native implementation</a> of SHA-1, SHA-256, 384, and 512, among a number of others hashing algorithms.</p> <p>After all that, in practice, which of the SHA algorithms you choose probably doesn't matter as the weak point in your system are likely elsewhere. Users writing down their passwords. Users using the same password across different systems. Programming flaw that allow things like <a href="http://en.wikipedia.org/wiki/Cross-site%5Fscripting" rel="nofollow">XSS</a> and <a href="http://en.wikipedia.org/wiki/SQL%5Finjection" rel="nofollow">SQL injection</a>. Etc. etc.</p> http://stackoverflow.com/questions/1186017/how-do-i-build-a-gui-in-c/1186154#1186154 6 Answer by KTC for How do I build a GUI in C++? KTC 2009-07-27T02:15:21Z 2009-07-27T02:15:21Z <p>Given the comment of "say Windows XP as an example", then your options are:</p> <ul> <li><p>Interact directly with the operating system via its API, which for Microsoft Windows is surprise surprise call <a href="http://en.wikipedia.org/wiki/Windows%5FAPI" rel="nofollow">Windows API</a>. The definitive reference for the WinAPI is Microsoft's <a href="http://msdn.microsoft.com/en-us/library/ms632586%28VS.85%29.aspx" rel="nofollow">MSDN website</a>. A popular online beginner tutorial for that is <a href="http://www.winprog.org/tutorial/" rel="nofollow">theForger's Win32 API Programming Tutorial</a>. The classic book for that is Charles Petzold's <a href="http://rads.stackoverflow.com/amzn/click/157231995X" rel="nofollow">Programming Windows, 5th Edition</a>.</p></li> <li><p>Use a platform (both in terms of OS and compiler) specific library such as <a href="http://en.wikipedia.org/wiki/Microsoft%5FFoundation%5FClass%5FLibrary" rel="nofollow">MFC</a>, which wraps the WinAPI into C++ class. The reference for that is again MSDN. A classic book for that is Jeff Prosise's <a href="http://rads.stackoverflow.com/amzn/click/1572316950" rel="nofollow">Programming Windows with MFC, 2nd Edition</a>. If you are using say CodeGear C++ Builder, then the option here is <a href="http://en.wikipedia.org/wiki/Visual%5FComponent%5FLibrary" rel="nofollow">VCL</a>.</p></li> <li><p>Use a cross platform library such as <a href="http://en.wikipedia.org/wiki/GTK%2B" rel="nofollow">GTK+</a> (C++ wrapper: <a href="http://en.wikipedia.org/wiki/Gtkmm" rel="nofollow">gtkmm</a>), <a href="http://en.wikipedia.org/wiki/Qt%5F%28toolkit%29" rel="nofollow">Qt</a>, <a href="http://en.wikipedia.org/wiki/WxWidgets" rel="nofollow">wxWidgets</a>, or <a href="http://en.wikipedia.org/wiki/FLTK" rel="nofollow">FLTK</a> that wrap the specific OS's API. The advantages with these are that in general, your program could been compiled for different OS without having to change the source codes. As have already been mentioned, they each have its own strengths and weaknesses. One consideration when selecting which one to use is its license. For the examples given, GTK+ &amp; gtkmm is license under LGPL, Qt is under various licenses including proprietary option, wxWidgets is under its own wxWindows Licence (with a rename to wxWidgets Licence), and FLTK is under LGPL with exception. For reference, tutorial, and or books, refer to each one's website for details.</p></li> </ul> http://stackoverflow.com/questions/25952/best-programming-based-games/1180798#1180798 1 Answer by KTC for Best programming based games KTC 2009-07-25T00:33:19Z 2009-07-25T00:33:19Z <p>There's racing car simulator game <a href="http://torcs.sourceforge.net/" rel="nofollow">TORCS</a> also where on top of the typical end user playing it (you actually "driving" the cars), you can program robots which control the cars. Regular races are held between robots created by different people.</p> http://stackoverflow.com/questions/562702/best-current-book-on-windows-networking-tcp-ip-sockets-packet-filtering-firew/562928#562928 2 Answer by KTC for Best current book on Windows networking (TCP/IP, sockets, packet filtering, firewalls) KTC 2009-02-18T21:31:51Z 2009-02-18T21:31:51Z <p>There is <a href="http://rads.stackoverflow.com/amzn/click/0735615799" rel="nofollow">Network Programming for Microsoft Windows, Second Edition</a> you can have a look at.</p> http://stackoverflow.com/questions/89924/c-editor-compiler-debugger-on-windows-lighter-than-visual-studio/90071#90071 18 Answer by KTC for C++ Editor, Compiler, Debugger on Windows ( Lighter than Visual Studio) KTC 2008-09-18T04:39:46Z 2008-11-19T14:44:11Z <p>By "Editor, Compiler, Debugger", I'm taking you want an <a href="http://en.wikipedia.org/wiki/Integrated_development_environment" rel="nofollow">IDE</a>:</p> <h2>Multi-Platform</h2> <ul> <li><a href="http://www.codeblocks.org/" rel="nofollow">Code::Blocks</a></li> <li><a href="http://www.eclipse.org/cdt/" rel="nofollow">Eclipse CDT</a></li> <li><a href="http://www.gnu.org/software/emacs/emacs.html" rel="nofollow">Emacs</a> (Technically a text editor, but given the things you can do from within it...)</li> <li><a href="http://www.geany.org" rel="nofollow">Geany</a></li> <li><a href="https://libre2.adacore.com/gps/" rel="nofollow">GNAT Programming Studio</a></li> <li><a href="http://www.netbeans.org/features/cpp/" rel="nofollow">NetBeans C/C++ Pack</a></li> <li><a href="http://vim.sourceforge.net/" rel="nofollow">vim</a> (As with Emacs...)</li> </ul> <h2>Microsoft Windows</h2> <ul> <li><a href="http://www.turboexplorer.com/" rel="nofollow">Borland Turbo C++ Explorer</a></li> <li><a href="http://www.microsoft.com/express/vc/" rel="nofollow">Microsoft Visual C++ 2008 Express</a></li> <li><a href="http://www.openwatcom.org/" rel="nofollow">Open Watcom C++</a></li> <li><a href="http://wxdsgn.sourceforge.net/" rel="nofollow">wxDev-C++</a></li> </ul> http://stackoverflow.com/questions/279404/what-is-the-best-explantion-for-the-export-keyword-in-the-c-standard/279498#279498 1 Answer by KTC for what is the best explantion for the export keyword in the c++ standard ? KTC 2008-11-10T23:01:49Z 2008-11-10T23:01:49Z <p>The only compilers that support exported templates at the moment (as far as I know) are Comeau, the one that came with Borland C++ Builder X but not the current C++ Builder, and Intel (at least unofficially, if not officially, not sure).</p> http://stackoverflow.com/questions/252962/read-64-bit-integer-string-from-file/253128#253128 4 Answer by KTC for Read 64 bit integer string from file KTC 2008-10-31T10:45:30Z 2008-11-04T23:52:39Z <p>GCC has long long, as will compilers for C++0x. MSVC++ doesn't (yet), but does have its __int64 you can use.</p> <pre><code>#if (__cplusplus &gt; 199711L) || defined(__GNUG__) typedef unsigned long long uint_64_t; #elif defined(_MSC_VER) || defined(__BORLANDC__) typedef unsigned __int64 uint_64_t; #else #error "Please define uint_64_t" #endif uint_64_t foo; std::fstream fstm( "file.txt" ); fstm &gt;&gt; foo; </code></pre> http://stackoverflow.com/questions/108327/what-fortran-compilers-are-there 4 What Fortran compilers are there? KTC 2008-09-20T14:36:54Z 2008-10-30T13:28:29Z <p>What Fortran compilers are there in this day and age, and which would you recommend? Please list the version of Fortran it supports, the platform it works on (e.g. *nix / Windows), and whether it cost money.</p> <p>(Standard OS one per answer etc.)</p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/88785#88785 Comment by KTC on What's your favorite "programmer" cartoon? KTC 2009-10-05T03:25:03Z 2009-10-05T03:25:03Z Not anymore. :) http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1470625#1470625 Comment by KTC on What's the worst security hole you've ever seen? KTC 2009-09-25T21:21:09Z 2009-09-25T21:21:09Z @TWith2Sugars, was that <i>after</i> you've ordered whatever you wanted to from them? ;-) http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc/1312875#1312875 Comment by KTC on Template's member typedef use in parameter undeclared identifier in VS but not GCC KTC 2009-08-21T16:24:43Z 2009-08-21T16:24:43Z What you posted is exactly what's already there.... http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc Comment by KTC on Template's member typedef use in parameter undeclared identifier in VS but not GCC KTC 2009-08-19T19:32:11Z 2009-08-19T19:32:11Z Yep. (lala 15 chars) http://stackoverflow.com/questions/1282295/what-exactly-is-nullptr-in-c0x/1282330#1282330 Comment by KTC on What exactly is nullptr in C++0x? KTC 2009-08-15T17:03:15Z 2009-08-15T17:03:15Z * Point to <b>an instance</b> of a type * http://stackoverflow.com/questions/1280304/why-is-different-regarding-loss-of-data-on-conversion Comment by KTC on Why is *= different regarding loss of data on conversion? KTC 2009-08-15T13:53:39Z 2009-08-15T13:53:39Z Never mind /W4, 2008 &amp; 2010 doesn't give a warning even with /Wall. http://stackoverflow.com/questions/1280885/safely-overloading-stream-operator/1280890#1280890 Comment by KTC on Safely overloading stream operator>> KTC 2009-08-15T01:12:12Z 2009-08-15T01:12:12Z Also make sure you check the <code>fail</code> bit before you try doing anything. If it's set already, just return the stream. http://stackoverflow.com/questions/1280304/why-is-different-regarding-loss-of-data-on-conversion Comment by KTC on Why is *= different regarding loss of data on conversion? KTC 2009-08-14T23:25:45Z 2009-08-14T23:25:45Z @John D., are you sure you put the warning level at /W4 ? http://stackoverflow.com/questions/1278259/c-fstream-and-operators-with-binary-data/1278362#1278362 Comment by KTC on C++ fstream << and >> operators with binary data. KTC 2009-08-14T17:53:48Z 2009-08-14T17:53:48Z Selling it is how they make their money, so unlikely. Would be nice though I agree. Late draft for the 98 version is available at <a href="ftp://ftp.research.att.com/pub/c++std/WP/CD2/" rel="nofollow">ftp.research.att.com/pub/c++std/WP/CD2</a> http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc Comment by KTC on Template's member typedef use in parameter undeclared identifier in VS but not GCC KTC 2009-08-13T17:03:57Z 2009-08-13T17:03:57Z I'm looking at two different member function definition, with exactly the same signature, down to the letter, with one being in namespace say ns3 (that isn't compiling), and one being in namespace say ns4, <b>inside</b> ns3 where it is compiling... :( http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc Comment by KTC on Template's member typedef use in parameter undeclared identifier in VS but not GCC KTC 2009-08-13T14:49:11Z 2009-08-13T14:49:11Z I've tried examples using similar template &amp; replicating the entire structure of the codes up to the first error and they compiles, so now I'm going the other direction, with the full code, and stripping out all function definition and see if it compiles. I'll edit it when I have something. http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc Comment by KTC on Template's member typedef use in parameter undeclared identifier in VS but not GCC KTC 2009-08-13T11:10:00Z 2009-08-13T11:10:00Z * Point to sentence &quot;the first error message (among many) ...&quot; * :) http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc/1269296#1269296 Comment by KTC on Template's member typedef use in parameter undeclared identifier in VS but not GCC KTC 2009-08-12T23:44:28Z 2009-08-12T23:44:28Z I actually saw that question earlier when I was searching for possible reasons I'm having problems with mine. His might have something to do with Argument Dependent Lookup. A qualified argument does not activate ADL, whereas an unqualified argument does. http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc/1269269#1269269 Comment by KTC on Template's member typedef use in parameter undeclared identifier in VS but not GCC KTC 2009-08-12T23:40:43Z 2009-08-12T23:40:43Z The error occurs at the definition. It is possible to get rid of the error by explicitly qualifying the parameters, but toy example test shows that VS doesn't require that. http://stackoverflow.com/questions/1269131/templates-member-typedef-use-in-parameter-undeclared-identifier-in-vs-but-not-gc/1269174#1269174 Comment by KTC on Template's member typedef use in parameter undeclared identifier in VS but not GCC KTC 2009-08-12T23:09:27Z 2009-08-12T23:09:27Z Well, yeah, I was shortening names, and missed that one. But thank you. It's fixed now.