User Lev - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T00:57:03Z http://stackoverflow.com/feeds/user/7224 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1285150/server-push-comet-in-google-app-engine-in-python 2 Server push (Comet) in Google App Engine in Python Lev 2009-08-16T19:34:16Z 2009-10-19T18:45:08Z <p>How can I implement Comet / Server push in Google App Engine in Python?</p> http://stackoverflow.com/questions/1403935/registereventsource-returns-null-error-code-is-zero 1 RegisterEventSource returns NULL, error code is zero Lev 2009-09-10T07:58:35Z 2009-09-13T05:19:57Z <p>Sometimes when I call <code>RegisterEventSource()</code>, it returns NULL. <code>GetLastError()</code> returns 0.</p> <p>The event log is on a remote machine in the same domain, and the user is an admin in the domain. This happens several times in a row on different machines (but with the log on the same machine), then stops happening. </p> <p>Why can this happen?</p> <p>All machines have Windows Server 2008 running. I'm using C++.</p> http://stackoverflow.com/questions/62810/exceptions-not-passed-correctly-thru-rcf-using-boost-serialization 2 Exceptions not passed correctly thru RCF (using Boost.Serialization) Lev 2008-09-15T13:22:54Z 2009-07-11T19:22:33Z <p>I use RCF with boost.serialization (why use RCF's copy when we already use the original?) It works OK, but when an exception is thrown in the server, it's not passed correctly to the client. Instead, I get an RCF::SerializationException quoting an <code>archive_exception</code> saying "class name too long". When I change the protocol to BsText, the exceptions is "unregistered class". When I change the protocol to SfBinary, it works. I've registered RemoteException on both server and client like this:</p> <pre><code>BOOST_CLASS_VERSION(RCF::RemoteException, 0) BOOST_CLASS_EXPORT(RCF::RemoteException) </code></pre> <p>I even tried serializing and deserializing a <code>boost::shared_ptr&lt;RCF::RemoteException&gt;</code> in the same test, and it works.</p> <p>So how can I make RCF pass exceptions correctly without resorting to SF?</p> http://stackoverflow.com/questions/1107737/numeric-for-loop-in-django-templates 1 Numeric for loop in Django templates Lev 2009-07-10T04:48:04Z 2009-07-10T05:47:19Z <p>How do I write a numeric <code>for</code> loop in a Django template? I mean something like</p> <pre><code>for i = 1 to n </code></pre> http://stackoverflow.com/questions/126751/compilation-fails-randomly-cannot-open-program-database 7 Compilation fails randomly: "cannot open program database" Lev 2008-09-24T12:15:11Z 2009-06-18T20:43:56Z <p>During a long compilation with Visual Studio 2005 (version 8.0.50727.762) I sometimes get the following error in several files in some project:<br /> <code>fatal error C1033: cannot open program database 'v:\temp\apprtctest\win32\release\vc80.pdb'</code><br /> (The file mentioned is either vc80.pdb or vc80.idb in the project's temp dir.) The next build of the same project succeeds. There is no other Visual Studio open that might access the same files.<br /> This is a serious problem because it makes nightly compilation impossible.</p> http://stackoverflow.com/questions/834302/tifflib-leaks-handles-to-invalid-files 0 TiffLib leaks handles to invalid files Lev 2009-05-07T12:14:19Z 2009-05-07T13:18:58Z <p>If I try to open an invalid TIFF file with TIFFOpen(), the function returns NULL. For some reason, the error handler isn't called. However, the file remains open, so I can't delete/overwrite it from the same process.</p> <p>I tried using TIFFFdOpen(), so that I can close the handle myself, but for some reason it gives me this error on valid TIFFs: "Cannot read TIFF header". This time the error is passed via the error handler.</p> <p>How can I solve either of these problems?</p> <p>Update: I'm talking about problems in TIFFOpen() itself, not in functions called later on. For example, they might occur if the TIFF file has size zero.</p> http://stackoverflow.com/questions/525515/how-can-i-import-constants-into-multiple-modules-in-perl 4 How can I import constants into multiple modules in Perl? Lev 2009-02-08T10:37:07Z 2009-03-09T14:34:20Z <p>I'm writing an app in Perl with several modules. I want to write some global constants that will be visible from everywhere, like this:</p> <pre><code>#Constants.pm $h0 = 0; $scale = 20; </code></pre> <p>And then use them without qualifying with <code>main::</code> or <code>Constants::</code> in several modules. However, if I write <code>use Constants;</code> in more than one module, they only get imported into one namespace. Is there any way around this?</p> <p>I'm using the latest ActivePerl.</p> http://stackoverflow.com/questions/446080/moving-an-arbitrary-setting-to-a-toolbar-in-visual-studio 1 Moving an arbitrary setting to a toolbar in Visual Studio Lev 2009-01-15T08:57:20Z 2009-02-20T10:42:49Z <p>I want to be able to modify a certain setting of Visual Studio right from the toolbar. Specifically, the number of parallel builds (Tools | Options | Projects and Solutions | Build and Run | maximum number of parallel project builds). It can be either an edit box right on the toolbar or two buttons setting it to certain values.</p> <p>I use Visual Studio 2005.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/169058/memory-leak-detection-while-running-unit-tests/170889#170889 0 Answer by Lev for Memory leak detection while running unit tests Lev 2008-10-04T19:25:36Z 2008-10-31T13:14:51Z <p>I did this once, but it wasn't quite as automatic. I don't have access to that code now, but here's the idea:</p> <p>I used the <a href="http://msdn.microsoft.com/en-us/library/wc28wkas(VS.80).aspx" rel="nofollow">debug functions</a> that Mike B has mentioned (btw, they only work in Debug). </p> <p>The tests runner ran all tests twice, because during the first run memory is allocated for globals. The second time, the total number of allocated blocks was checked before and after each test (I think you can do it in setUp() and tearDown()). If the number was different, it meant a memory leak, and the test failed with an appropriate message. Of course, if the test itself fails, you should preserve its error message. Now to find the leak, I had to read the block allocation number of the last allocation using pBlockHeader, then set a breakpoint on it using <a href="http://msdn.microsoft.com/en-us/library/4wth1ha5(VS.80).aspx" rel="nofollow">_CrtSetBreakAlloc</a> and run again.</p> <p>More on this here: <a href="http://levsblog.wordpress.com/2008/10/31/unit-testing-memory-leaks/" rel="nofollow">http://levsblog.wordpress.com/2008/10/31/unit-testing-memory-leaks/</a></p> http://stackoverflow.com/questions/218462/in-a-firefox-extension-how-can-i-copy-rich-text-links-to-the-clipboard 1 In a Firefox extension, how can I copy rich text / links to the clipboard? Lev 2008-10-20T13:39:39Z 2008-10-21T03:10:38Z <p>Specifically, I want to copy a link (with text and location) and then to be able to paste it, e.g., into Word as a link.</p> http://stackoverflow.com/questions/218462/in-a-firefox-extension-how-can-i-copy-rich-text-links-to-the-clipboard/219223#219223 0 Answer by Lev for In a Firefox extension, how can I copy rich text / links to the clipboard? Lev 2008-10-20T17:26:09Z 2008-10-20T17:26:09Z <p>Here's the actual code:</p> <pre><code>var richText = "&lt;a href=\"" + gContextMenu.linkURL + "\"&gt;" + gContextMenu.linkText() + "&lt;/a&gt;"; var xfer = Components.classes["@mozilla.org/widget/transferable;1"].createInstance(Components.interfaces.nsITransferable); xfer.addDataFlavor("text/html"); var htmlString = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString); htmlString.data = richText; xfer.setTransferData("text/html", htmlString, richText.length * 2); var clipboard = Components.classes["@mozilla.org/widget/clipboard;1"].getService(Components.interfaces.nsIClipboard); clipboard.setData(xfer, null, Components.interfaces.nsIClipboard.kGlobalClipboard); </code></pre> <p>It is also recommended to create another <code>Components.interfaces.nsISupportsString</code>, whose data is plain text, and add it to the same <code>xfer</code> as <code>text/unicode</code></p> http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/214647#214647 10 Answer by Lev for What surprised you the most about the software industry? Lev 2008-10-18T05:48:28Z 2008-10-18T05:48:28Z <p>Having to sacrifice quality, features, good coding standards and general perfectionism to get things done in time.</p> http://stackoverflow.com/questions/214605/the-best-way-to-familiarize-yourself-with-an-inherited-codebase/214638#214638 1 Answer by Lev for The best way to familiarize yourself with an inherited codebase Lev 2008-10-18T05:37:08Z 2008-10-18T05:37:08Z <p>Go over the core libraries and read the function declarations. If it's C/C++, this means only the headers. Document whatever you don't understand. </p> <p>The last time I did this, one of the comments I inserted was "This class is never used".</p> http://stackoverflow.com/questions/206045/how-do-you-mark-a-struct-template-as-friend/206073#206073 6 Answer by Lev for How do you mark a struct template as friend ? Lev 2008-10-15T19:28:24Z 2008-10-15T19:28:24Z <p>According to <a href="http://www.devx.com/cplus/10MinuteSolution/30302/0/page/2" rel="nofollow">this site</a>, the correct syntax would be</p> <pre><code>class IWantToBeFriendsWithMyStruct { template &lt;typename T, typename U&gt; friend struct MyStruct; } </code></pre> http://stackoverflow.com/questions/202718/can-the-result-of-a-function-call-be-used-as-a-default-parameter-value/202734#202734 6 Answer by Lev for Can the result of a function call be used as a default parameter value? Lev 2008-10-14T20:47:20Z 2008-10-14T20:47:20Z <p>Yes. What you've written works.</p> http://stackoverflow.com/questions/198970/is-it-possible-to-initialize-a-const-struct-without-using-a-function/198980#198980 6 Answer by Lev for Is it possible to initialize a const struct without using a function? Lev 2008-10-13T20:47:46Z 2008-10-13T20:47:46Z <p>You can, if the pointers point to global objects:</p> <pre><code>// In global scope int x, y; const struct {int *px, *py; } s = {&amp;x, &amp;y}; </code></pre> http://stackoverflow.com/questions/131115/should-all-public-methods-of-an-api-be-documented/193811#193811 0 Answer by Lev for Should all public methods of an API be documented? Lev 2008-10-11T07:34:47Z 2008-10-11T07:34:47Z <p>b) Document everything that isn't obvious, or when in doubt. In this case:</p> <pre><code>/** Copies all readable bytes from inStream to outStream. outStream will be flushed, * but neither stream will be closed. */ </code></pre> <p>You have already written that inStream is an InputStream, and you don't have to specify that it's intended to read bytes in its own comment, as you already do so in the function's comment</p> http://stackoverflow.com/questions/193701/what-are-best-practices-for-developing-consistent-libraries/193807#193807 2 Answer by Lev for What are best practices for developing consistent libraries? Lev 2008-10-11T07:28:57Z 2008-10-11T07:28:57Z <p>Try to write a common unit test suite for both. Maybe by wrapping a class in one language for calling it from the other. If you can't do it, at least make sure the two versions of the tests are equivalent.</p> http://stackoverflow.com/questions/193708/what-is-a-good-use-case-for-tr1resultof/193803#193803 3 Answer by Lev for What is a good use case for tr1::result_of? Lev 2008-10-11T07:24:54Z 2008-10-11T07:24:54Z <p>There are no simple cases. However, it's used in <code>BOOST_AUTO</code>, which can be used, e.g., in</p> <pre><code>BOOST_AUTO(x, make_pair(a, b)); </code></pre> http://stackoverflow.com/questions/190122/how-to-pick-what-unit-to-display-a-value-in/190172#190172 1 Answer by Lev for How to pick what unit to display a value in? Lev 2008-10-10T04:58:17Z 2008-10-10T05:48:56Z <p>Define the complexity as the total number of symbols: A unit to the power of 1 has complexity 1, any other integer power is 2, a fractional power is 3. Try several examples and see how it feels. Maybe you have to use other numbers than 1, 2, 3 for complexities.</p> <p>Try optimization using a greedy algorithm: on each iteration, factor out the composite unit (possibly to a fractional or negative power) that simplifies as much as possible (makes the target function as small as possible). I have a hunch that greed will work because the units are designed so that if the product / ratio of two units is simpler than each of them, it will be a unit of its own.</p> http://stackoverflow.com/questions/30754/performance-vs-readability/188736#188736 0 Answer by Lev for Performance vs Readability Lev 2008-10-09T19:10:25Z 2008-10-09T19:10:25Z <p>There are exceptions to the premature optimization rule. For example, when accessing an image in memory, reading a pixel should not be an out-of-line function. And when providing for custom operations on the image, never do it like this:</p> <pre><code>typedef Pixel PixelModifierFunction(Pixel); void ModifyAllPixels(PixelModifierFunction); </code></pre> <p>Instead, let external functions access the pixels in memory, though it's uglier. Otherwise, you are sure to write slow code that you'll have to refactor later anyway, so you're doing extra work.</p> <p>At least, that's true if you know you're going to deal with large images.</p> http://stackoverflow.com/questions/186648/how-to-organize-c-test-apps-and-related-files/186713#186713 0 Answer by Lev for How to organize C++ test apps and related files? Lev 2008-10-09T10:45:16Z 2008-10-09T10:45:16Z <p>I agree with what @Richard Quirk said, but also you might want to make your test suite class a friend of the class you're testing and test its private functions.</p> http://stackoverflow.com/questions/184590/is-there-a-perl-compatible-regular-expression-to-trim-whitespace-from-both-sides/184613#184613 -2 Answer by Lev for Is there a Perl-compatible regular expression to trim whitespace from both sides of a string? Lev 2008-10-08T20:07:04Z 2008-10-09T04:28:17Z <pre><code>$x =~ s/^\s*(.*?)\s*$/$1/; </code></pre> http://stackoverflow.com/questions/184609/will-reassigning-a-variable-in-every-iteration-of-a-loop-affect-performance/184626#184626 2 Answer by Lev for Will reassigning a variable in every iteration of a loop affect performance? Lev 2008-10-08T20:09:09Z 2008-10-08T20:09:09Z <p>Actually, the "if" will slow your program down more than assignment due to the <a href="http://en.wikipedia.org/wiki/Pipeline_(computing)" rel="nofollow">pipeline</a>.</p> http://stackoverflow.com/questions/179004/how-to-manage-shared-libraries/179089#179089 0 Answer by Lev for How to manage shared libraries? Lev 2008-10-07T15:37:35Z 2008-10-07T15:37:35Z <p>Use version control, of course, as PersistenceOfVision said, and also keep a nightly build to make sure you don't break old projects.</p> http://stackoverflow.com/questions/175532/return-null-or-throw-exception/175943#175943 0 Answer by Lev for Return 'null' or throw exception Lev 2008-10-06T20:00:19Z 2008-10-06T20:00:19Z <p>In some functions I add a parameter:</p> <pre><code>..., bool verify = true) </code></pre> <p>True means throw, false means return some error return value. This way, whoever uses this function has both options. The default should be true, for the benefit of those who forget about error handling.</p> http://stackoverflow.com/questions/174612/cross-platform-format-string-for-variables-of-type-sizet/175794#175794 1 Answer by Lev for Cross platform format string for variables of type size_t? Lev 2008-10-06T19:25:42Z 2008-10-06T19:25:42Z <p>Use <code>boost::format</code>. It's typesafe, so it'll print <code>size_t</code> correctly with <code>%d</code>, also you don't need to remember to put <code>c_str()</code> on <code>std::string</code>s when using it, and even if you pass a number to <code>%s</code> or vice versa, it'll work.</p> http://stackoverflow.com/questions/175100/c-thread-process-identifier/175768#175768 0 Answer by Lev for C++ thread/process identifier Lev 2008-10-06T19:18:52Z 2008-10-06T19:18:52Z <p>getpid() is a portable way to get the process ID.</p> http://stackoverflow.com/questions/175689/can-you-use-keyword-explicit-to-prevent-automatic-conversion-of-method-parameters/175759#175759 3 Answer by Lev for Can you use keyword explicit to prevent automatic conversion of method parameters? Lev 2008-10-06T19:17:14Z 2008-10-06T19:17:14Z <p>No. <code>explicit</code> prevents automatic conversion between specific classes, irrespective of context. And of course you can't do it for built-in classes.</p> http://stackoverflow.com/questions/170616/how-do-i-compile-to-x64-binary-from-a-x86-platform-running-vs2008-pro/170837#170837 1 Answer by Lev for How do I compile to x64 binary from a x86 platform running VS2008 Pro? Lev 2008-10-04T18:54:32Z 2008-10-04T18:54:32Z <p>As Rob Walker said. You can find out more by using the "depends" program by SysInternals on an x64 machine.</p> http://stackoverflow.com/questions/1285150/server-push-comet-in-google-app-engine-in-python/1285159#1285159 Comment by Lev on Server push (Comet) in Google App Engine in Python Lev 2009-08-17T04:09:20Z 2009-08-17T04:09:20Z I can't write my own HTTP server in Google apps http://stackoverflow.com/questions/1107737/numeric-for-loop-in-django-templates/1107768#1107768 Comment by Lev on Numeric for loop in Django templates Lev 2009-07-10T06:37:20Z 2009-07-10T06:37:20Z Thanx The former looks better to me http://stackoverflow.com/questions/834302/tifflib-leaks-handles-to-invalid-files/834379#834379 Comment by Lev on TiffLib leaks handles to invalid files Lev 2009-05-07T13:17:23Z 2009-05-07T13:17:23Z Good point. I have 3.7.3 But anyway, maybe this error is not in TIFFOpen(). What happens with a zero-sized file? http://stackoverflow.com/questions/525515/how-can-i-import-constants-into-multiple-modules-in-perl/525568#525568 Comment by Lev on How can I import constants into multiple modules in Perl? Lev 2009-02-09T05:34:17Z 2009-02-09T05:34:17Z Nathan: It works. Brian: No, you only have to prefix them with $::. That's tolerable. http://stackoverflow.com/questions/525515/how-can-i-import-constants-into-multiple-modules-in-perl/525568#525568 Comment by Lev on How can I import constants into multiple modules in Perl? Lev 2009-02-08T12:21:53Z 2009-02-08T12:21:53Z Thanks. What I really needed is the piece about omitting &quot;main&quot;. http://stackoverflow.com/questions/446080/moving-an-arbitrary-setting-to-a-toolbar-in-visual-studio/446102#446102 Comment by Lev on Moving an arbitrary setting to a toolbar in Visual Studio Lev 2009-01-15T09:21:35Z 2009-01-15T09:21:35Z But how do I write the macro? Where do I find commands to modify settings? http://stackoverflow.com/questions/218462/in-a-firefox-extension-how-can-i-copy-rich-text-links-to-the-clipboard/218841#218841 Comment by Lev on In a Firefox extension, how can I copy rich text / links to the clipboard? Lev 2008-10-20T16:24:31Z 2008-10-20T16:24:31Z AutoCopy does the trick http://stackoverflow.com/questions/218462/in-a-firefox-extension-how-can-i-copy-rich-text-links-to-the-clipboard/218841#218841 Comment by Lev on In a Firefox extension, how can I copy rich text / links to the clipboard? Lev 2008-10-20T16:09:28Z 2008-10-20T16:09:28Z Thanks, I'll try. Meanwhile, you've a typo in the second link. It should be <a href="https://addons.mozilla.org/en-US/firefox/addon/1478" rel="nofollow">addons.mozilla.org/en-US/firefox/&hellip;</a> http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/214463#214463 Comment by Lev on What surprised you the most about the software industry? Lev 2008-10-18T05:42:01Z 2008-10-18T05:42:01Z Don't forget debugging, creating installations and testing. http://stackoverflow.com/questions/202718/can-the-result-of-a-function-call-be-used-as-a-default-parameter-value/202734#202734 Comment by Lev on Can the result of a function call be used as a default parameter value? Lev 2008-10-15T18:04:07Z 2008-10-15T18:04:07Z I keep discovering new things about C++ all the time :-) http://stackoverflow.com/questions/126751/compilation-fails-randomly-cannot-open-program-database/199334#199334 Comment by Lev on Compilation fails randomly: "cannot open program database" Lev 2008-10-14T04:54:21Z 2008-10-14T04:54:21Z No. :-( http://stackoverflow.com/questions/198984/global-find-and-replace-in-visual-studio/198993#198993 Comment by Lev on Global Find and Replace in Visual Studio Lev 2008-10-13T20:54:52Z 2008-10-13T20:54:52Z Not for this one. http://stackoverflow.com/questions/196733/how-can-i-use-covariant-return-types-with-smart-pointers Comment by Lev on How can I use covariant return types with smart pointers? Lev 2008-10-13T05:11:25Z 2008-10-13T05:11:25Z IF you don't use boost::shared_ptr, do you return pointers? Is it managed C++? http://stackoverflow.com/questions/131115/should-all-public-methods-of-an-api-be-documented/193811#193811 Comment by Lev on Should all public methods of an API be documented? Lev 2008-10-11T07:35:04Z 2008-10-11T07:35:04Z This seems like a big risk to my rep. http://stackoverflow.com/questions/193715/atoi-conversion-error/193717#193717 Comment by Lev on atoi() conversion error Lev 2008-10-11T07:20:47Z 2008-10-11T07:20:47Z from what I remember, it's std::string(token.at(0), 1)