User Kasprzol - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:44:10Z http://stackoverflow.com/feeds/user/5957 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1728099/visual-c-gui-stops-responding-when-process-waitforexit-is-used/1728126#1728126 2 Answer by Kasprzol for Visual C# GUI stops responding when process.WaitForExit(); is used Kasprzol 2009-11-13T09:25:55Z 2009-11-13T09:25:55Z <p>Your waiting for the process on the only thread of your application that is also responsible for handling all GUI events. If you want to wait for some event (like some other process to finish) and still have your code notified of the event then you have to wait on another thread or use an event handler.</p> http://stackoverflow.com/questions/1642955/how-to-identify-more-than-4-gb-ram-on-32-bit-machine/1643090#1643090 3 Answer by Kasprzol for How to identify more than 4 gb ram on 32-bit machine Kasprzol 2009-10-29T11:30:36Z 2009-10-29T11:30:36Z <p>32bit operating systems CAN see more than 4GB of memory with <a href="http://en.wikipedia.org/wiki/Physical%5FAddress%5FExtension" rel="nofollow">PAE</a>-enabled CPUs. It's just that the 32bit address space is limited to 4GB. But as the application has only access to its own virtual address space, it can't tell if some memory it allocated lays in 1st or 5th gigabyte of memory.</p> <p>On windows, you can use the <a href="http://msdn.microsoft.com/en-us/library/cc300158%28VS.85%29.aspx" rel="nofollow">GetPhysicallyInstalledSystemMemory</a> function:</p> <blockquote> <p>function retrieves the amount of physically installed RAM from the computer's SMBIOS firmware tables. This can differ from the amount reported by the GlobalMemoryStatusEx function, which sets the ullTotalPhys member of the MEMORYSTATUSEX structure to the amount of physical memory that is available for the operating system to use.</p> </blockquote> <p>Read more: <a href="http://www.geoffchappell.com/viewer.htm?doc=notes/windows/license/memory.htm" rel="nofollow">http://www.geoffchappell.com/viewer.htm?doc=notes/windows/license/memory.htm</a></p> http://stackoverflow.com/questions/1549093/lnk2019-lnk1120-errors-when-splitting-my-code-in-multiple-files/1549124#1549124 3 Answer by Kasprzol for LNK2019 && LNK1120 errors when splitting my code in multiple files Kasprzol 2009-10-10T21:33:19Z 2009-10-10T21:38:53Z <p>Yo can't split a class definition in parts. It must be defined as a whole in one place. If you want to just have some methods of the class defined create a interface class that the <code>MyClass</code> class will later inherit. You should put the class' definition in a header file (myclass.h) and it's implementation in a cpp file (myclass.cpp). That way you can include the "myclass.h" in your main cpp file and use the class in your main function (which should be <code>int main()</code> or <code>int main( int argc, char *argv[] )</code>).</p> http://stackoverflow.com/questions/1061158/how-does-the-web-pages-for-configuring-routers-printers-work/1061180#1061180 0 Answer by Kasprzol for how does the web pages for configuring routers/printers work Kasprzol 2009-06-30T00:06:45Z 2009-06-30T00:06:45Z <p>Probably just some simple hardware and some cgi scripts. Some advanced routers may have embedded Linux and then you can have all the fun with apache/php/whatever.</p> http://stackoverflow.com/questions/1061152/help-me-fix-this-c-stdset-comparator/1061164#1061164 1 Answer by Kasprzol for Help me fix this C++ std::set comparator Kasprzol 2009-06-30T00:01:33Z 2009-06-30T00:01:33Z <p>The items in the <code>std::set</code> must be unique! (and less-comparable) If you want to have multiple items with the same value (like the sample you provided) use <code>std::multiset</code>.</p> <p>see: <a href="http://www.cppreference.com/wiki/stl/set/start" rel="nofollow">http://www.cppreference.com/wiki/stl/set/start</a> and <a href="http://www.cppreference.com/wiki/stl/multiset/start" rel="nofollow">http://www.cppreference.com/wiki/stl/multiset/start</a></p> http://stackoverflow.com/questions/1041218/the-self-factory-pattern/1041248#1041248 1 Answer by Kasprzol for The "Self-Factory" Pattern Kasprzol 2009-06-24T22:01:08Z 2009-06-24T22:07:12Z <p>Usually factories are responsible for creating objects of entire class hierarchies. So in your example you would have a Win32Factory, OSXFactory etc. One advantage of this is that you have to select the specific implementation ( win32/unix/etc) just once -- during factory creation, but if you use class interfaces, you have to supply the OS info all the time.</p> <p>If you only have two classes (Foo and Bar) I'm not sure, if it's worth the effort to create factories for them and not just use a <code>create</code> method of the interfaces.</p> <p>Oh, and when an interface has a method for creating objects of it's type, it's called the <a href="http://en.wikipedia.org/wiki/Factory%5Fmethod" rel="nofollow">factory method pattern</a>.</p> http://stackoverflow.com/questions/836630/how-to-use-built-in-list-function-filter/837480#837480 1 Answer by Kasprzol for how to use built in list function "filter" Kasprzol 2009-05-07T23:00:44Z 2009-06-05T11:41:13Z <p>Using your <code>smaller?</code> definition, I would go for something like</p> <pre><code>(define (hello Max L) (filter (lambda (n) (smaller? n Max)) L)) </code></pre> <p>This uses a lambda function which is a closure over the Max argument to the hello function. So it "embeds" <code>Max</code> inside the lambda function used for filtering.</p> http://stackoverflow.com/questions/804123/const-unsigned-char-to-stdstring/804145#804145 1 Answer by Kasprzol for const unsigned char * to std::string Kasprzol 2009-04-29T20:34:11Z 2009-04-29T20:44:06Z <p>You can't construct a <code>std::string</code> from c<code>onst unsigned char*</code> -- you have to cast it to <code>const char*</code> first:</p> <pre><code>temp_doc.uuid = std::string( reinterpret_cast&lt; const char* &gt;( sqlite3_column_text(this-&gt;stmts.read_documents, 0) ) ); </code></pre> http://stackoverflow.com/questions/773097/inter-process-communication-between-languages-operating-systems/773781#773781 0 Answer by Kasprzol for Inter-process communication between languages/operating systems Kasprzol 2009-04-21T17:50:21Z 2009-04-21T17:50:21Z <p>Check out <a href="http://en.wikipedia.org/wiki/Microsoft%5FMessage%5FQueue" rel="nofollow">Microsoft Message Queue</a> or something simillar. Also have a look at <a href="http://www.xmlrpc.com/" rel="nofollow">XML-RPC</a>, <a href="http://en.wikipedia.org/wiki/SOAP" rel="nofollow">SOAP</a>, <a href="http://www.json.org/" rel="nofollow">JSON</a> etc.</p> http://stackoverflow.com/questions/696429/remotely-accessing-my-laptop-from-another-place/696448#696448 0 Answer by Kasprzol for Remotely accessing my laptop from another place Kasprzol 2009-03-30T08:45:22Z 2009-03-30T08:45:22Z <p>You can forward a port on the router for the remote desktop and then enable remote access (control panel -> system -> remote).</p> <p>I'm also using <a href="http://www.uvnc.com/" rel="nofollow">ultravnc</a>.</p> http://stackoverflow.com/questions/672734/how-to-prevent-multiple-definitions-in-c/672743#672743 6 Answer by Kasprzol for How to prevent multiple definitions in C? Kasprzol 2009-03-23T09:48:52Z 2009-03-23T09:48:52Z <p>You shouldn't include other source files (*.c) in <em>.c files. I think you want to have a header (</em>.h) file with the DECLARATION of test function, and have it's DEFINITION in a separate .c file.</p> <p>The error is caused by multiple definitions of the test funtion (one in test.c and other in main.c)</p> http://stackoverflow.com/questions/581609/looking-for-an-open-source-flatfile-xml-database-c-library/581664#581664 0 Answer by Kasprzol for Looking for an open-source flatfile/xml database C++ library Kasprzol 2009-02-24T13:05:54Z 2009-02-24T13:05:54Z <p>You can also look at berkleyDB</p> <p>From <a href="http://en.wikipedia.org/wiki/Berkeley%5FDB" rel="nofollow">wikipedia</a>:</p> <blockquote> <p>Berkeley DB (BDB) is a computer software library that provides a high-performance embedded database, with bindings in C, C++, Java, Perl, Python, Ruby, Tcl, Smalltalk, and many other programming languages. BDB stores arbitrary key/data pairs as byte arrays, and supports multiple data items for a single key. BDB can support thousands of simultaneous threads of control or concurrent processes manipulating databases as large as 256 terabytes, on a wide variety of operating systems including most Unix-like and Windows systems, and real-time operating systems.</p> </blockquote> http://stackoverflow.com/questions/566587/how-to-find-the-cause-for-a-user-44-panic/567479#567479 5 Answer by Kasprzol for How to find the cause for a USER 44 PANIC? Kasprzol 2009-02-19T22:16:00Z 2009-02-19T22:16:00Z <p>From <a href="http://www.symbian.com/developer/techlib/v9.1docs/doc_source/reference/N10352/UserPanics.html" rel="nofollow">http://www.symbian.com/developer/techlib/v9.1docs/doc_source/reference/N10352/UserPanics.html</a>:</p> <pre><code>This panic is raised by the Free() and FreeZ() member functions of an RHeap. It is caused when the cell being freed overlaps the next cell on the free list (i.e. the first cell on the free list with an address higher than the one being freed). </code></pre> <p>It means, your calling delete/delete[] (which in turn will call Free()/FreeZ()) with an invalid pointer. When debuging under Carbide the debuger should break on the line that causes the panic and you should be able to see the invalid deletion.</p> http://stackoverflow.com/questions/565360/overloading-strings-and-default-parameters/565397#565397 3 Answer by Kasprzol for Overloading, strings, and default parameters Kasprzol 2009-02-19T13:52:33Z 2009-02-19T13:52:33Z <p>It works as expected on my GCC 4.3.2, maybe you misspelled the name of the overload? There's no conversion from std::string to char*, so the compiler shouldn't have any problems choosing the correct overload.</p> <pre><code>$ cat test.cpp #include &lt;string&gt; #include &lt;stdio.h&gt; int getMessage( char * buffer, int size = 300 ) { printf("1\n"); return 1; } int getMessage( std::string &amp; buffer ) { printf("2\n"); return 2; } int main() { std::string buffer; buffer = "Hello"; int rc = getMessage( buffer ); } $ g++ test.cpp -Wall -pedantic test.cpp: In function ‘int main()’: test.cpp:20: warning: unused variable ‘rc’ $ ./a.out 2 $ $ g++ -v 2&gt;&amp;1|tail -n1 gcc version 4.3.2 (Ubuntu 4.3.2-1ubuntu12) $ </code></pre> http://stackoverflow.com/questions/554834/what-is-was-so-terrific-about-beos/554893#554893 1 Answer by Kasprzol for What is/was so terrific about BeOS Kasprzol 2009-02-16T22:46:58Z 2009-02-16T22:46:58Z <p>As I remember, the <a href="http://video.google.com/videoplay?docid=236331448076587879&amp;ei=_eyZSZuZE5eg2wK__p2ODg&amp;q=haiku+tech+talk" rel="nofollow">google tech talk</a> mentioned some BeOS/Haiku APIs and why they are so cool.</p> <blockquote> <p>Google Tech Talks February 13, 2007 This is an introduction to Haiku, an open source operating system designed from the ground up for the desktop, inspired in the concepts and technologies of BeOS. The presentation will cover the concepts and features that make Haiku unique, as well as a hands on demo</p> </blockquote> http://stackoverflow.com/questions/548819/how-to-determine-a-process-virtual-size-winxp/548840#548840 0 Answer by Kasprzol for How to determine a process "virtual size" (WinXP)? Kasprzol 2009-02-14T09:27:06Z 2009-02-14T09:27:06Z <p>In 32bit WindowsXP address space is divided in two 2GB parts: one part for the program and the other for the kernel. You can increase application part to 3GB using the <a href="http://en.wikipedia.org/wiki/NTLDR#NT_Kernel_switches" rel="nofollow">/3GB switch in the boot.ini file</a>.</p> http://stackoverflow.com/questions/458476/best-way-to-copy-a-vector-to-a-list-in-stl/458488#458488 22 Answer by Kasprzol for Best way to copy a vector to a list in STL ? Kasprzol 2009-01-19T17:49:22Z 2009-01-19T18:52:27Z <p>Why would you iterate and not use the standard copy algorithm?</p> <pre><code>std::copy( vector.begin(), vector.end(), std::back_inserter( list ) ); </code></pre> http://stackoverflow.com/questions/399704/xml-parser-for-c/399714#399714 1 Answer by Kasprzol for XML Parser for C Kasprzol 2008-12-30T07:22:13Z 2008-12-30T07:22:13Z <p>You can try <a href="http://ezxml.sourceforge.net/" rel="nofollow">ezxml</a> -- it's a lightweight parser written entirely in C.</p> <p>For C++ you can check out <a href="http://code.google.com/p/ticpp/" rel="nofollow">TinyXML++</a></p> http://stackoverflow.com/questions/362570/carbide-symbian-c-change-application-icon/368093#368093 2 Answer by Kasprzol for Carbide / Symbian C++ - Change Application Icon Kasprzol 2008-12-15T11:36:24Z 2008-12-15T11:36:24Z <p>To change the app icon when you run your app use (in the status bar):</p> <pre><code>CEikStatusPane* sp=iEikonEnv-&gt;AppUiFactory()-&gt;StatusPane(); CAknContextPane* cp=(CAknContextPane *)sp-&gt;ControlL(TUid::Uid(EEikStatusPaneUidContext)); _LIT(KContextBitMapFile, "my_bitmap_file.mbm"); CFbsBitmap* bitmap = iEikonEnv-&gt;CreateBitmapL(KContextBitMapFile, EMbmBitmap); CleanupStack::PushL(bitmap); CFbsBitmap* bitmapmask = iEikonEnv-&gt;CreateBitmapL(KContextBitMapFile, EMbmBitmapMask); CleanupStack::PushL(bitmapmask); cp-&gt;SetPicture(bitmap, bitmapmask); CleanupStack::Pop(); // bitmapmask CleanupStack::Pop(); // bitmap DrawNow(); </code></pre> <p>I'm not aware of any possibility of changing the app icon in the menu list programmatically, other than reinstalling the app with different mif file.</p> http://stackoverflow.com/questions/359992/s60-application-symbian-c-exit-button-doesnt-work/360152#360152 1 Answer by Kasprzol for S60 application - Symbian C++ - Exit button doesn't work Kasprzol 2008-12-11T17:15:54Z 2008-12-11T17:15:54Z <p>What CBA resource (softkey buttons layour) are you using? <code>R_AVKON_OPTIONS_EXIT</code>? are you handling the the exit commands in any other way? or are you traping the <code>Exit()</code> call? Are you even receiving the the <code>EEikCmdExit</code> code? If you have the <a href="http://stackoverflow.com/questions/359992/s60-application-symbian-c-exit-button-doesnt-work#360044"><code>commandHandled</code> boolean</a>, is it set to <code>EFalse</code>? </p> http://stackoverflow.com/questions/359992/s60-application-symbian-c-exit-button-doesnt-work/360032#360032 2 Answer by Kasprzol for S60 application - Symbian C++ - Exit button doesn't work Kasprzol 2008-12-11T16:46:33Z 2008-12-11T16:46:33Z <p>Are you handling (in your <code>appui::HandleCommandL</code>) command ids <code>EEikCmdExit</code> and <code>EAknSoftkeyExit?</code></p> <pre><code> if ( aCommand == EAknSoftkeyExit || aCommand == EEikCmdExit ) { Exit(); } </code></pre> http://stackoverflow.com/questions/340376/can-i-calculate-the-average-of-these-numbers/340393#340393 3 Answer by Kasprzol for Can i calculate the average of these numbers? Kasprzol 2008-12-04T12:15:48Z 2008-12-04T12:15:48Z <p>It's quite easy really, when you look at the formula for the average: <code>A1 + A2 + ... + AN/N</code>. Now, If you have the old average and the N (numbers count) you can easily calculate the new average:</p> <pre><code>newScore = (currentScore * currentCount + someNewValue)/(currentCount + 1) </code></pre> http://stackoverflow.com/questions/319292/resize-a-vector-down-c/319302#319302 1 Answer by Kasprzol for resize a vector down.. c++ Kasprzol 2008-11-25T23:52:23Z 2008-11-25T23:52:23Z <p>You can <code>swap</code> it with a new vector that has desired capacity.</p> <pre><code>vector&lt; int &gt; tmp; old.swap( tmp ); </code></pre> http://stackoverflow.com/questions/318530/is-it-possible-to-initialise-a-new-system-collections-generic-dictionary-with-str/318574#318574 1 Answer by Kasprzol for Is it possible to initialise a New System.Collections.Generic.Dictionary with String key/value pairs? Kasprzol 2008-11-25T19:25:52Z 2008-11-25T19:25:52Z <p>Try this syntax:</p> <pre><code>Dictionary&lt;string, double&gt; dict = new Dictionary&lt;string, double&gt;() { { "pi", 3.14}, { "e", 2.71 } }; </code></pre> <p>But that may require C# 3 (.NET 3.5)</p> http://stackoverflow.com/questions/297153/can-you-recommend-a-svn-closed-source-project-hosting-site/297233#297233 1 Answer by Kasprzol for Can you recommend a SVN, closed-source project hosting site? Kasprzol 2008-11-17T22:41:59Z 2008-11-17T22:41:59Z <p>I recently started using <a href="http://beanstalkapp.com/" rel="nofollow">http://beanstalkapp.com/</a> . It looks quite ok, but hadn't really tested it out yet.</p> http://stackoverflow.com/questions/275958/most-efficient-way-to-list-items-in-c-c/275961#275961 1 Answer by Kasprzol for Most efficient way to list items in C/C++ Kasprzol 2008-11-09T14:25:37Z 2008-11-09T14:25:37Z <p>You can create a dictionary/hashmap of groups and for each group store a bool saying if a item of that group was printed or not.</p> <p>Sample code:</p> <pre><code>#include &lt;unordered_map&gt; #include &lt;string&gt; #include &lt;iostream&gt; std::string getGroupForNumber( int num ) { // } int main() { typedef std::tr1::unordered_map&lt; std::string, bool &gt; hashmap; hashmap groupsPrinted; for( int i = 0 ; i &lt; 100 ; ++i ) { if ( groupsPrinted[ getGroupForNumber( i ) ] == false ) { groupsPrinted[ getGroupForNumber( i ) ] = true; std::cout &lt;&lt; i &lt;&lt; std::endl; } } return 0; } </code></pre> http://stackoverflow.com/questions/274566/how-can-i-debug-mingw-exe-with-msvc-debuger/274602#274602 1 Answer by Kasprzol for how can i debug mingw exe with msvc debuger Kasprzol 2008-11-08T10:28:50Z 2008-11-08T10:28:50Z <p>You can attach visual c++ debuger to any process running on the system (from the vc menu). But for being able to step through your source code vc would have to load the symbol file (.pdb if I remember correctly) and I don't think gcc generates those files.</p> http://stackoverflow.com/questions/266523/drawbacks-to-templates-and-the-stl-in-c/266634#266634 3 Answer by Kasprzol for Drawbacks to templates and the STL in C++ Kasprzol 2008-11-05T20:55:36Z 2008-11-05T20:55:36Z <p>For embedded device programming (in my case -- smartphones). Templates are discouraged because of the concern for generated code size (small amount of RAM and disk space). Also the compilers are pretty ancient and probably can't handle some template related constructs.</p> http://stackoverflow.com/questions/266206/simple-hashmap-implementation-in-c/266452#266452 4 Answer by Kasprzol for Simple hashmap implementation in C++ Kasprzol 2008-11-05T20:09:33Z 2008-11-05T20:09:33Z <p>Using hashmaps in C++ is easy! It's like using standard C++ map. You can use your's compiler/library implementation of <code>unordered_map</code> or use the one provided by http://www.boost.org/doc/libs/1_37_0/doc/html/unordered.html">boost, or some other vendor. Here's a quick sample. You will find more if you follow the links you were given.</p> <pre><code>#include &lt;unordered_map&gt; #include &lt;string&gt; #include &lt;iostream&gt; int main() { typedef std::tr1::unordered_map&lt; std::string, int &gt; hashmap; hashmap numbers; numbers["one"] = 1; numbers["two"] = 2; numbers["three"] = 3; std::tr1::hash&lt; std::string &gt; hashfunc = numbers.hash_function(); for( hashmap::const_iterator i = numbers.begin(), e = numbers.end() ; i != e ; ++i ) { std::cout &lt;&lt; i-&gt;first &lt;&lt; " -&gt; " &lt;&lt; i-&gt;second &lt;&lt; " (hash = " &lt;&lt; hashfunc( i-&gt;first ) &lt;&lt; ")" &lt;&lt; std::endl; } return 0; } </code></pre> http://stackoverflow.com/questions/36239/what-should-we-do-to-prepare-for-2038/237057#237057 4 Answer by Kasprzol for What should we do to prepare for 2038? Kasprzol 2008-10-25T21:39:42Z 2008-10-25T21:39:42Z <p>You can always implement <a href="http://www.ietf.org/rfc/rfc2550.txt" rel="nofollow">RFC 2550</a> and be safe forever ;-)</p> <blockquote> <p>The known universe has a finite past and future. The current age of the universe is estimated in [Zebu] as between 10 ** 10 and 2 * 10 ** 10 years. The death of the universe is estimated in [Nigel] to occur in 10 ** 11 - years and in [Drake] as occurring either in 10 ** 12 years for a closed universe (the big crunch) or 10 ** 14 years for an open universe (the heat death of the universe).</p> </blockquote> <p>&nbsp;</p> <blockquote> <p>Y10K compliant programs MAY choose to limit the range of dates they support to those consistent with the expected life of the universe. Y10K compliant systems MUST accept Y10K dates from 10 ** 12 years in the past to 10 ** 20 years into the future. Y10K compliant systems SHOULD accept dates for at least 10 ** 29 years in the past and future.</p> </blockquote> http://stackoverflow.com/questions/836630/how-to-use-built-in-list-function-filter/837480#837480 Comment by Kasprzol on how to use built in list function "filter" Kasprzol 2009-06-05T11:41:42Z 2009-06-05T11:41:42Z ah, true. updated the code. http://stackoverflow.com/questions/837319/packing-enums-using-the-msvc-compiler/837370#837370 Comment by Kasprzol on Packing enums using the MSVC++ compiler Kasprzol 2009-05-07T23:03:02Z 2009-05-07T23:03:02Z @rmeador: read the answer -- it is MSVC specific. That means you won't find it in other compilers. http://stackoverflow.com/questions/817086/shutdown-a-hard-drive/817114#817114 Comment by Kasprzol on shutdown a hard drive Kasprzol 2009-05-03T17:36:27Z 2009-05-03T17:36:27Z This method has nothing to do with WMI -- it's just launching the safely remove hardware dialog. http://stackoverflow.com/questions/804123/const-unsigned-char-to-stdstring/804145#804145 Comment by Kasprzol on const unsigned char * to std::string Kasprzol 2009-04-29T20:44:52Z 2009-04-29T20:44:52Z sorry, have to use reinterpret_cast instead of static_cast. http://stackoverflow.com/questions/566587/how-to-find-the-cause-for-a-user-44-panic/566838#566838 Comment by Kasprzol on How to find the cause for a USER 44 PANIC? Kasprzol 2009-02-19T22:17:51Z 2009-02-19T22:17:51Z you don't have to check against NULL when deleting -- it's safe and perfectly legal to call delete on NULL. http://stackoverflow.com/questions/465517/overloaded-increments-return-value/465678#465678 Comment by Kasprzol on overloaded increment's return value Kasprzol 2009-01-21T15:18:33Z 2009-01-21T15:18:33Z You don't return the reference to private member, but to your class' object. (because the outside world was incrementing your object, not it's private field). http://stackoverflow.com/questions/444208/how-can-i-rotate-log-files-monthly-using-perl Comment by Kasprzol on How can I rotate log files monthly using Perl? Kasprzol 2009-01-14T23:28:23Z 2009-01-14T23:28:23Z Why not just use logrotate? http://stackoverflow.com/questions/374147/what-is-boost-missing/374251#374251 Comment by Kasprzol on What is Boost missing? Kasprzol 2008-12-17T11:31:09Z 2008-12-17T11:31:09Z or TinyXML++ (TICPP, <a href="http://code.google.com/p/ticpp/" rel="nofollow">code.google.com/p/ticpp</a>) http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/134770#134770 Comment by Kasprzol on Best programming novel to take on holiday Kasprzol 2008-11-11T18:06:43Z 2008-11-11T18:06:43Z I bet, that when they will have their own stackoverflow.com for renaissance archeologist, they will say the same for the &quot;Da Vinci Code&quot; and other his books :) http://stackoverflow.com/questions/245740/which-variables-should-i-typecast-when-doing-math-operations-in-c-c/245793#245793 Comment by Kasprzol on Which variables should I typecast when doing math operations in C/C++? Kasprzol 2008-10-29T07:59:13Z 2008-10-29T07:59:13Z I think you meant &quot;signed + unsigned = signed&quot;? http://stackoverflow.com/questions/176343/whats-the-deal-with-all-the-different-perl-6-equality-operators-eq-e Comment by Kasprzol on What's the deal with all the different Perl 6 equality operators? (==, ===, eq, eqv, ~~, =:=, ...) Kasprzol 2008-10-09T14:03:49Z 2008-10-09T14:03:49Z OMG, and they say, that lisp has too many equality operators :) http://stackoverflow.com/questions/181624/c-what-regex-library-should-i-use/181670#181670 Comment by Kasprzol on C++: what regex library should I use? Kasprzol 2008-10-08T08:27:09Z 2008-10-08T08:27:09Z As I wrote, if your std library doesn't have regex, then you can use boost: <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/boost_tr1/subject_list.html#boost_tr1.subject_list.regex" rel="nofollow">boost.org/doc/libs/&hellip;</a> http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-c Comment by Kasprzol on initialize a const array in a class initializer in C++ Kasprzol 2008-10-02T13:18:16Z 2008-10-02T13:18:16Z The &quot;curly-braces section&quot; is called a &quot;body&quot; of a function. http://stackoverflow.com/questions/134526/how-do-i-know-i-reached-a-files-maximum-size-when-using-ofstream/135363#135363 Comment by Kasprzol on How do I know I reached a file's maximum size when using ofstream? Kasprzol 2008-09-27T16:21:38Z 2008-09-27T16:21:38Z If you try to write to a stream and the write operation fails for any reason (including trying to write a file larger than filesystem limit) then the bad bit (or fail bit) will be set. http://stackoverflow.com/questions/29736/what-open-source-hosting-service-should-i-use/34808#34808 Comment by Kasprzol on What open source hosting service should I use? Kasprzol 2008-09-27T14:17:11Z 2008-09-27T14:17:11Z Google code also has code review/comments feature.