User Kasprzol - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T02:44:10Zhttp://stackoverflow.com/feeds/user/5957http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1728099/visual-c-gui-stops-responding-when-process-waitforexit-is-used/1728126#17281262Answer by Kasprzol for Visual C# GUI stops responding when process.WaitForExit(); is usedKasprzol2009-11-13T09:25:55Z2009-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#16430903Answer by Kasprzol for How to identify more than 4 gb ram on 32-bit machineKasprzol2009-10-29T11:30:36Z2009-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#15491243Answer by Kasprzol for LNK2019 && LNK1120 errors when splitting my code in multiple filesKasprzol2009-10-10T21:33:19Z2009-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#10611800Answer by Kasprzol for how does the web pages for configuring routers/printers workKasprzol2009-06-30T00:06:45Z2009-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#10611641Answer by Kasprzol for Help me fix this C++ std::set comparatorKasprzol2009-06-30T00:01:33Z2009-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#10412481Answer by Kasprzol for The "Self-Factory" PatternKasprzol2009-06-24T22:01:08Z2009-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#8374801Answer by Kasprzol for how to use built in list function "filter"Kasprzol2009-05-07T23:00:44Z2009-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#8041451Answer by Kasprzol for const unsigned char * to std::stringKasprzol2009-04-29T20:34:11Z2009-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< const char* >(
sqlite3_column_text(this->stmts.read_documents, 0) ) );
</code></pre>
http://stackoverflow.com/questions/773097/inter-process-communication-between-languages-operating-systems/773781#7737810Answer by Kasprzol for Inter-process communication between languages/operating systemsKasprzol2009-04-21T17:50:21Z2009-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#6964480Answer by Kasprzol for Remotely accessing my laptop from another placeKasprzol2009-03-30T08:45:22Z2009-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#6727436Answer by Kasprzol for How to prevent multiple definitions in C?Kasprzol2009-03-23T09:48:52Z2009-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#5816640Answer by Kasprzol for Looking for an open-source flatfile/xml database C++ libraryKasprzol2009-02-24T13:05:54Z2009-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#5674795Answer by Kasprzol for How to find the cause for a USER 44 PANIC?Kasprzol2009-02-19T22:16:00Z2009-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#5653973Answer by Kasprzol for Overloading, strings, and default parametersKasprzol2009-02-19T13:52:33Z2009-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 <string>
#include <stdio.h>
int getMessage( char * buffer, int size = 300 )
{
printf("1\n");
return 1;
}
int getMessage( std::string & 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>&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#5548931Answer by Kasprzol for What is/was so terrific about BeOSKasprzol2009-02-16T22:46:58Z2009-02-16T22:46:58Z<p>As I remember, the <a href="http://video.google.com/videoplay?docid=236331448076587879&ei=_eyZSZuZE5eg2wK__p2ODg&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#5488400Answer by Kasprzol for How to determine a process "virtual size" (WinXP)?Kasprzol2009-02-14T09:27:06Z2009-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#45848822Answer by Kasprzol for Best way to copy a vector to a list in STL ?Kasprzol2009-01-19T17:49:22Z2009-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#3997141Answer by Kasprzol for XML Parser for CKasprzol2008-12-30T07:22:13Z2008-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#3680932Answer by Kasprzol for Carbide / Symbian C++ - Change Application IconKasprzol2008-12-15T11:36:24Z2008-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->AppUiFactory()->StatusPane();
CAknContextPane* cp=(CAknContextPane *)sp->ControlL(TUid::Uid(EEikStatusPaneUidContext));
_LIT(KContextBitMapFile, "my_bitmap_file.mbm");
CFbsBitmap* bitmap = iEikonEnv->CreateBitmapL(KContextBitMapFile, EMbmBitmap);
CleanupStack::PushL(bitmap);
CFbsBitmap* bitmapmask = iEikonEnv->CreateBitmapL(KContextBitMapFile, EMbmBitmapMask);
CleanupStack::PushL(bitmapmask);
cp->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#3601521Answer by Kasprzol for S60 application - Symbian C++ - Exit button doesn't workKasprzol2008-12-11T17:15:54Z2008-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#3600322Answer by Kasprzol for S60 application - Symbian C++ - Exit button doesn't workKasprzol2008-12-11T16:46:33Z2008-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#3403933Answer by Kasprzol for Can i calculate the average of these numbers?Kasprzol2008-12-04T12:15:48Z2008-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#3193021Answer by Kasprzol for resize a vector down.. c++Kasprzol2008-11-25T23:52:23Z2008-11-25T23:52:23Z<p>You can <code>swap</code> it with a new vector that has desired capacity.</p>
<pre><code>vector< int > 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#3185741Answer by Kasprzol for Is it possible to initialise a New System.Collections.Generic.Dictionary with String key/value pairs?Kasprzol2008-11-25T19:25:52Z2008-11-25T19:25:52Z<p>Try this syntax:</p>
<pre><code>Dictionary<string, double> dict = new Dictionary<string, double>()
{
{ "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#2972331Answer by Kasprzol for Can you recommend a SVN, closed-source project hosting site?Kasprzol2008-11-17T22:41:59Z2008-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#2759611Answer by Kasprzol for Most efficient way to list items in C/C++Kasprzol2008-11-09T14:25:37Z2008-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 <unordered_map>
#include <string>
#include <iostream>
std::string getGroupForNumber( int num )
{
//
}
int main()
{
typedef std::tr1::unordered_map< std::string, bool > hashmap;
hashmap groupsPrinted;
for( int i = 0 ; i < 100 ; ++i ) {
if ( groupsPrinted[ getGroupForNumber( i ) ] == false ) {
groupsPrinted[ getGroupForNumber( i ) ] = true;
std::cout << i << std::endl;
}
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/274566/how-can-i-debug-mingw-exe-with-msvc-debuger/274602#2746021Answer by Kasprzol for how can i debug mingw exe with msvc debugerKasprzol2008-11-08T10:28:50Z2008-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#2666343Answer by Kasprzol for Drawbacks to templates and the STL in C++Kasprzol2008-11-05T20:55:36Z2008-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#2664524Answer by Kasprzol for Simple hashmap implementation in C++Kasprzol2008-11-05T20:09:33Z2008-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 <unordered_map>
#include <string>
#include <iostream>
int main()
{
typedef std::tr1::unordered_map< std::string, int > hashmap;
hashmap numbers;
numbers["one"] = 1;
numbers["two"] = 2;
numbers["three"] = 3;
std::tr1::hash< std::string > hashfunc = numbers.hash_function();
for( hashmap::const_iterator i = numbers.begin(), e = numbers.end() ; i != e ; ++i ) {
std::cout << i->first << " -> " << i->second << " (hash = " << hashfunc( i->first ) << ")" << std::endl;
}
return 0;
}
</code></pre>
http://stackoverflow.com/questions/36239/what-should-we-do-to-prepare-for-2038/237057#2370574Answer by Kasprzol for What should we do to prepare for 2038?Kasprzol2008-10-25T21:39:42Z2008-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> </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#837480Comment by Kasprzol on how to use built in list function "filter"Kasprzol2009-06-05T11:41:42Z2009-06-05T11:41:42Zah, true. updated the code.http://stackoverflow.com/questions/837319/packing-enums-using-the-msvc-compiler/837370#837370Comment by Kasprzol on Packing enums using the MSVC++ compilerKasprzol2009-05-07T23:03:02Z2009-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#817114Comment by Kasprzol on shutdown a hard driveKasprzol2009-05-03T17:36:27Z2009-05-03T17:36:27ZThis 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#804145Comment by Kasprzol on const unsigned char * to std::stringKasprzol2009-04-29T20:44:52Z2009-04-29T20:44:52Zsorry, 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#566838Comment by Kasprzol on How to find the cause for a USER 44 PANIC?Kasprzol2009-02-19T22:17:51Z2009-02-19T22:17:51Zyou 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#465678Comment by Kasprzol on overloaded increment's return valueKasprzol2009-01-21T15:18:33Z2009-01-21T15:18:33ZYou 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-perlComment by Kasprzol on How can I rotate log files monthly using Perl?Kasprzol2009-01-14T23:28:23Z2009-01-14T23:28:23ZWhy not just use logrotate?http://stackoverflow.com/questions/374147/what-is-boost-missing/374251#374251Comment by Kasprzol on What is Boost missing?Kasprzol2008-12-17T11:31:09Z2008-12-17T11:31:09Zor 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#134770Comment by Kasprzol on Best programming novel to take on holidayKasprzol2008-11-11T18:06:43Z2008-11-11T18:06:43ZI bet, that when they will have their own stackoverflow.com for renaissance archeologist, they will say the same for the "Da Vinci Code" and other his books :)http://stackoverflow.com/questions/245740/which-variables-should-i-typecast-when-doing-math-operations-in-c-c/245793#245793Comment by Kasprzol on Which variables should I typecast when doing math operations in C/C++?Kasprzol2008-10-29T07:59:13Z2008-10-29T07:59:13ZI think you meant "signed + unsigned = signed"?http://stackoverflow.com/questions/176343/whats-the-deal-with-all-the-different-perl-6-equality-operators-eq-eComment by Kasprzol on What's the deal with all the different Perl 6 equality operators? (==, ===, eq, eqv, ~~, =:=, ...)Kasprzol2008-10-09T14:03:49Z2008-10-09T14:03:49ZOMG, and they say, that lisp has too many equality operators :)http://stackoverflow.com/questions/181624/c-what-regex-library-should-i-use/181670#181670Comment by Kasprzol on C++: what regex library should I use?Kasprzol2008-10-08T08:27:09Z2008-10-08T08:27:09ZAs 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/…</a>http://stackoverflow.com/questions/161790/initialize-a-const-array-in-a-class-initializer-in-cComment by Kasprzol on initialize a const array in a class initializer in C++Kasprzol2008-10-02T13:18:16Z2008-10-02T13:18:16ZThe "curly-braces section" is called a "body" of a function.http://stackoverflow.com/questions/134526/how-do-i-know-i-reached-a-files-maximum-size-when-using-ofstream/135363#135363Comment by Kasprzol on How do I know I reached a file's maximum size when using ofstream?Kasprzol2008-09-27T16:21:38Z2008-09-27T16:21:38ZIf 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#34808Comment by Kasprzol on What open source hosting service should I use?Kasprzol2008-09-27T14:17:11Z2008-09-27T14:17:11ZGoogle code also has code review/comments feature.