User Assaf - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T16:57:12Zhttp://stackoverflow.com/feeds/user/11208http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1893865/how-rethrow-an-exception-without-losing-the-original-call-stack/1894172#18941720Answer by Assaf for How rethrow an exception without losing the original call stack?Assaf2009-12-12T17:46:33Z2009-12-12T17:46:33Z<p>Question is why would you need to pass the stack to the "receiving" thread.</p>
<p>I assume you need the stack in order to basically report it to some error log. You can walk the stack in the catching thread, or produce a mini dump, or whatever error info you wish to collect, and then just pass a copy of the exception (if possible, beware of slicing) to the receiving thread.</p>
http://stackoverflow.com/questions/905500/fastest-way-to-delete-a-tree-of-empty-directories-in-batch-file2Fastest way to delete a tree of empty directories in batch fileAssaf2009-05-25T05:58:24Z2009-12-12T01:38:14Z
<p>I need to write a batch file that received a directory that contains a huge number of empty sub-directories and deletes them all.</p>
<p>What's the fastest way of doing this? (by fast I mean not like what Windows Explorer does when you try to delete such a directory...)</p>
<p><strong>Clarification:</strong></p>
<p>I'm not trying to delete <em>only</em> empty directories. It just so happens that this dir I'm trying to delete is mostly empty sub-dirs.</p>
http://stackoverflow.com/questions/1886491/why-does-my-program-terminate-when-an-exception-is-thrown-by-a-destructor/1886554#18865542Answer by Assaf for Why does my program terminate when an exception is thrown by a destructor ?Assaf2009-12-11T08:09:22Z2009-12-11T08:22:09Z<p>Quoth the standard (15.2.3):</p>
<blockquote>
<p>The process of calling destructors for automatic objects constructed on the path from a try block to a throw-expression is called ``stack unwinding.'' [Note: If a destructor called during stack unwinding exits with an exception, terminate is called (except.terminate). So destructors should generally catch exceptions and not let them propagate out of the destructor.
--- end note]</p>
</blockquote>
<p>Basically C++ (as most other popular programming languages) has no good support for handling multiple errors using exceptions. Exceptions, as a mechanism, is simply deficient in that respect. </p>
<p>The FAQ has some suggestion on <a href="http://www.parashift.com/c++-faq-lite/exceptions.html#faq-17.3" rel="nofollow">How to handle a destructor that fails?</a></p>
<p>Stroustroup has this to say on the matter (<a href="http://www2.research.att.com/~bs/3rd.html" rel="nofollow">TCPL 14.7</a>):</p>
<blockquote>
<p>The reason for <strong><em>terminate()</em></strong> is that exception handling must occasionally be abandoned for less subtle error-handling techniques. For example, <strong><em>terminate()</em></strong> could be used to abort a process or maybe to re-initialize a system. The intent is for <strong><em>terminate()</em></strong> to be a drastic measure to applied when the error-recovery strategy implemented by the exception-handling mechanism has failed and it is time to go to another level of a fault tolerance strategy.</p>
</blockquote>
<p>See also previous related discussion on SO: basically <a href="http://stackoverflow.com/questions/tagged/exception+destructor">any question about exceptions and destructors</a>.</p>
http://stackoverflow.com/questions/1843181/is-there-a-c-win32-library-function-to-convert-a-file-path-to-a-file-url/1845248#18452483Answer by Assaf for Is there a C++/win32 library function to convert a file path to a file:// URL?Assaf2009-12-04T06:37:17Z2009-12-04T06:37:17Z<p>There's an entire path handling library within Win32. It's called <a href="http://msdn.microsoft.com/en-us/library/bb773559%28VS.85%29.aspx" rel="nofollow">Shell Path Handling Functions</a>.</p>
http://stackoverflow.com/questions/659752/programming-challenge-can-you-code-a-hello-world-program-as-a-palindrome55Programming challenge: can you code a hello world program as a Palindrome?Assaf2009-03-18T19:28:01Z2009-11-27T01:40:46Z
<p>So the puzzle is to write a <a href="http://en.wikipedia.org/wiki/Hello%5Fworld%5Fprogram" rel="nofollow">hello world program</a> in your language of choice, where the program's source file as a string has to be a <a href="http://en.wikipedia.org/wiki/Palindrome" rel="nofollow">palindrome</a>.</p>
<p>To be clear, the output has to be exactly "Hello, World".</p>
<p><hr /></p>
<h3>Edit:</h3>
<p>Well, with comments it seems trivial (not that I thought of it myself of course [sigh].. hat tip to <a href="http://stackoverflow.com/questions/659752/programming-challange-can-you-code-a-hello-world-program-as-a-palindrome/659761#659761">cobbal</a>). </p>
<p>So <strong>new rule: no comments.</strong></p>
<p><hr /></p>
<h3>Edit:</h3>
<p>I feel kind of bad editing someone else's question to say this, but it will eliminate a lot of non-palindromes that keep popping up, and I'm tired of seeing the same simple mistake over and over.</p>
<p>The following is <strong><em>NOT</em></strong> a palindrome:</p>
<pre><code>()()
</code></pre>
<p>The following <strong><em>IS</em></strong> a palindrome:</p>
<pre><code>())(
</code></pre>
<p>Brackets, parenthesis, and anything else that must match are a major barrier to palindrome-ing, yes, but that doesn't mean you can ignore them and post non-palindrome answers. </p>
http://stackoverflow.com/questions/1251175/configuring-cruisecontrol-net-project-directory0Configuring CruiseControl.net project directoryAssaf2009-08-09T11:11:20Z2009-11-24T09:48:51Z
<p>CruiseControl.net creates (by default) for each project a subdirectory under: <code>c:\Program File\CruiseControl.NET\server</code></p>
<p>How can I change that? (it's such a bad idea to mix data with program files...)</p>
<p>I found a way to configure the artifacts directory per project, but that's not quite it (it's merely a subdirectory of the project directory).</p>
http://stackoverflow.com/questions/470815/use-the-same-validator-on-several-controls-in-flex0use the same validator on several controls in FlexAssaf2009-01-22T21:08:58Z2009-11-24T08:04:00Z
<p>Say I have a phone-number validator in flex and I have two TextInput controls for phone numbers. I don't want to have two separate validator controls defined that have essentially the same attributes... but each validator has only one "source" attribute. How can I use the same validator on multiple control? (or any equivalent solution)</p>
http://stackoverflow.com/questions/1665335/how-to-calculate-the-memory-size-of-a-program/1665341#16653410Answer by Assaf for How to calculate the memory size of a program?Assaf2009-11-03T05:03:40Z2009-11-03T05:03:40Z<p>Yes, but the method of doing so depends on the OS. What platform are you targeting?</p>
http://stackoverflow.com/questions/1642677/generate-unique-file-name-with-timestamp-in-batch-script0Generate unique file name with timestamp in batch scriptAssaf2009-10-29T10:09:16Z2009-10-29T10:18:04Z
<p>In my .bat file I want to generate a unique name for files/directories based on date-time.</p>
<p>e.g.</p>
<pre><code>Build-2009-10-29-10-59-00
</code></pre>
<p>The problem is that %TIME% won't do because it contains characters that are illegal in filename (e.g. ':').</p>
<p>Is there something like 'tr' in batch files?</p>
<p>Any other ideas how to solve this (that don't require extra command line utilities aside from the batch interpreter)?</p>
http://stackoverflow.com/questions/1638579/how-to-determine-the-localtime-of-a-timestamp-for-different-timezones/1639207#16392071Answer by Assaf for How to determine the localtime of a timestamp for different timezones?Assaf2009-10-28T18:32:07Z2009-10-28T18:32:07Z<p>Since timezone is basically just adding some hours integer, translating from UTC time to localized time is trivial.</p>
<p>So I guess what you really need is a list of all cities/countries and their respective timezones... ? or am I misunderstanding?</p>
<p>What exactly do you need to accomplish?</p>
http://stackoverflow.com/questions/1635742/limiting-the-size-of-the-managed-heap-in-a-c-application1Limiting the size of the managed heap in a C# applicationAssaf2009-10-28T07:56:30Z2009-10-28T08:33:29Z
<p>Can I configure my C# application to limit its memory consumption to, say, 200MB?
IOW, I don't want to wait for the automatic GC (which seems to allow the heap to grow much more than actually needed by this application).</p>
<p>I know that in Java there's a command line switch you can pass to the JVM that achieves this.. is there an equivalent in C#?</p>
<p>p.s.</p>
<p>I know that I can invoke the GC from code, but that's something I would rather not have to do periodically. I'd rather set it once upon startup somehow and forget it.</p>
http://stackoverflow.com/questions/1614694/titlecase-in-visual-c/1614705#16147051Answer by Assaf for TitleCase In Visual C++Assaf2009-10-23T16:58:41Z2009-10-23T16:58:41Z<p>If you're talking about managed C++, you can use the same functions as in C#/VB.Net.</p>
<p>If you mean native C++, then:</p>
<ol>
<li>Pretty certain there's nothing of the sort in the language itself.</li>
<li>AFAIK not in the Win32 API as well.</li>
<li>Your best hope then is to find such a function in some library (I personally can't think of one).</li>
</ol>
http://stackoverflow.com/questions/1614651/do-sequence-points-prevent-code-reordering-across-critical-section-boundaries/1614695#16146951Answer by Assaf for Do sequence points prevent code reordering across critical section boundaries?Assaf2009-10-23T16:55:53Z2009-10-23T16:55:53Z<p>C/C++ sequence points occur, for example, when ';' is encountered. At which point all side-effects of all operations that preceded it must occur. However, I'm fairly certain that by "side-effect" what's meant is operations that are part of the language itself (like z being incremented in 'z++') and not effects at lower/higher levels (like what the OS actually does with regards to memory management, thread management, etc. after an operation is completed).</p>
<p>Does that answer your question kinda? My point is really just that AFAIK the concept of sequence points doesn't really have anything to do with the side effects you're referring to.</p>
<p>hth</p>
http://stackoverflow.com/questions/294018/what-are-some-c-related-idioms-misconceptions-and-gotchas-that-youve-learnt/294054#29405441Answer by Assaf for What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience?Assaf2008-11-16T16:20:59Z2009-10-20T14:39:49Z<p>You don't need to know C++'s complicated function typedef declaration syntax. Here's a cute trick I found.</p>
<p>Quick, describe this typedef:</p>
<pre><code>typedef C &(__cdecl C::* const CB )(const C &) const;
</code></pre>
<p>Easy! CB is a pointer to a member function of class C accepting a const reference to a C object and returning a non-const reference to a C object. Oh, and it’s a const member function. Oh, and the function pointer itself is const… (Right?)</p>
<p>The C++ function declaration specification syntax is notoriously obtuse and hard to remember. Yes, there are tricks seasoned C++ veterans may use to decipher such horrors, but that’s not what this tip is about. This tip is about how you don’t need to remember this horrible syntax and still be able to declare such function pointer typedefs (e.g. in case you’re interacting with some legacy API that never heard of boost::function).
Instead of breaking a mental sweat, let the compiler do the work for you. Next time you’re trying to create a typedef to a member function that looks like this:</p>
<pre><code>struct C {
const C& Callback(const C&) const { }
};
</code></pre>
<p>Instead of struggling to manually come up with the complex syntax above, induce an intentional compilation error which will force the compiler to name the beast.</p>
<p>For example:</p>
<pre><code>char c = &C::Callback;
</code></pre>
<p>The compiler happily spews this helpful error message:</p>
<pre><code>“… cannot convert from 'const C &(__cdecl C::* )(const C &) const' to 'char'”
</code></pre>
<p>Which is what we’re looking for. :)</p>
http://stackoverflow.com/questions/1576531/how-to-access-file-with-unc-path-from-asp-net/1576546#15765461Answer by Assaf for How to access file with UNC path from asp.netAssaf2009-10-16T07:02:42Z2009-10-16T07:02:42Z<p>The problem may not be with the UNC nature of the path you're trying to access, but with the security credentials. If, for example, you are running your asp.net application under the System account, then you won't be able to access network shares because System is a local account (not a domain account).</p>
<p>I suggest you check in inetmgr under which user your application pool is running (under the Identity tab). Try using a domain account that can access that share.</p>
http://stackoverflow.com/questions/1503959/how-to-count-occurrences-of-a-column-value-efficiently-in-sql1How to count occurrences of a column value efficiently in SQL?Assaf2009-10-01T13:27:26Z2009-10-01T16:38:09Z
<p>I have a table of students:</p>
<pre><code>id | age
--------
0 | 25
1 | 25
2 | 23
</code></pre>
<p>I want to query for all students, and an additional column that counts how many students are of the same age:</p>
<pre><code>id | age | count
----------------
0 | 25 | 2
1 | 25 | 2
2 | 23 | 1
</code></pre>
<p>What's the most efficient way of doing this? <strong>I fear that a sub-query will be slow, and I'm wondering if there's a better way</strong>. Is there?</p>
http://stackoverflow.com/questions/1503486/build-c-projects-and-their-dependencies0Build C# Projects and their dependenciesAssaf2009-10-01T11:46:36Z2009-10-01T12:03:27Z
<p>In VS2005 I have a few C# projects that depend on each other.</p>
<p>If project A depends on B (e.g. references it), then I want B to build whenever I build A, assuming B has changed in some way since last built. That's the way it is with VC projects, but for some reason it doesn't seem to work with C# projects. If I clean B and then build A it just tells me that it can't find B...</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1469822/two-encoding-in-one-html-document/1469830#14698302Answer by Assaf for Two encoding in one HTML documentAssaf2009-09-24T04:56:02Z2009-09-24T04:56:02Z<p>No, there isn't.</p>
<p>I suggest you use DOM parsers to read the various HTML bits into memory, and then construct a combined document in UTF-8. Once these HTML fragments are in memory (after parsing) they'll be in some sort of Unicode representation (depending on the programming language), and so no information should get lost along the way.</p>
http://stackoverflow.com/questions/1460023/how-can-i-change-the-currentculture-of-the-entire-process-not-just-current-threa1How can I change the CurrentCulture of the entire process (not just current thread) in .Net?Assaf2009-09-22T13:12:05Z2009-09-22T14:59:52Z
<p>I have a situation where I need to set my process' locale to en-US.</p>
<p>I know how to do this for the current thread:</p>
<pre><code>System.Threading.Thread.CurrentThread.CurrentCulture =
System.Globalization.CultureInfo.CreateSpecificCulture("en-US");
</code></pre>
<p>But my application uses BackgroundWorkers to do some processing, and the locale for these worker threads seems not to be effected by the above change to their spawning main-thread.</p>
<p>So how can I set the locale for all the threads in my application (without setting it in each one manually...)?</p>
http://stackoverflow.com/questions/1454004/modifying-returned-mime-type-of-c-webmethod0Modifying returned MIME type of C# WebMethodAssaf2009-09-21T11:06:40Z2009-09-21T11:06:40Z
<p>I have a web service implemented in VS2005/C#. The ASMX page has a few web methods that are pure SOAP, and I want to add an additional method that has a RESTful interface.</p>
<p>I want one of the methods to simply return a JPG image (image/jpeg), and not an XML response. Now, I know that ASP.Net automatically creates a REST interface for web methods that have primitive-type arguments. The question is can I modify the return type to return an image instead of an XML/SOAP response?</p>
<p>Basically, I'm trying to reuse the existing REST interface that ASP.Net gives me, but circumvent the response mechanism and return a custom HTTP response (non SOAP).</p>
<p>Is this possible? What would the method's signature look like?</p>
http://stackoverflow.com/questions/1054496/how-to-signify-to-the-compiler-that-a-function-always-throws2How to signify to the compiler that a function always throws?Assaf2009-06-28T07:59:23Z2009-09-14T07:52:03Z
<p>When calling functions that always throw from a function returning a value, the compiler often warns that not all control paths return a value. Legitimately so.</p>
<pre><code>void AlwaysThrows() { throw "something"; }
bool foo()
{
if (cond)
AlwaysThrows();
else
return true; // Warning C4715 here
}
</code></pre>
<p>Is there a way to tell the compiler that AlwaysThrows does what it says?</p>
<p>I'm aware that I can add another <code>throw</code> after the function call:</p>
<pre><code>{ AlwaysThrows(); throw "dummy"; }
</code></pre>
<p>And I'm aware that I can disable the warning explicitly. But I was wondering if there is a more elegant solution.</p>
http://stackoverflow.com/questions/1403935/registereventsource-returns-null-error-code-is-zero/1416919#14169190Answer by Assaf for RegisterEventSource returns NULL, error code is zeroAssaf2009-09-13T05:19:57Z2009-09-13T05:19:57Z<p>Perhaps the log machine was temporarily unavailable.</p>
http://stackoverflow.com/questions/863537/asp-net-error-the-identity-of-application-pool-is-invalid2ASP.Net error: "The identity of application pool is invalid"Assaf2009-05-14T14:10:11Z2009-08-28T07:34:48Z
<p>My ASP.Net web service cannot run because the application pool is unable to start due to the identity crisis it's experiencing.</p>
<p>The user I'm using in the app pool is a domain user, it's a local admin, it's in IIS_WPG, I've given it "act as part of the OS permissions" - nothing. Nada. Fails to start the application pool each time.</p>
<p>Adding the user to IIS_WPG is usually what's missing, but I guess there's something else.</p>
<p>Things I've tried:</p>
<ul>
<li>Adding user to IIS_WPG</li>
<li>Adding user to local admin group and adding the "Act as part of the os" right.</li>
<li>aspnet_regiis -ga </li>
<li>rebooting...</li>
<li>Checked password</li>
<li>Recreated the app pool and assigning only my application to it</li>
</ul>
<p>p.s.
If I use the Network Service user it all works - it's just my "custom" user that's failing. Logging in (interactively) with this user works.</p>
<p><strong>Edit:</strong></p>
<p>The solution is as described in <a href="http://stackoverflow.com/questions/863537/asp-net-error-the-identity-of-application-pool-is-invalid/954650#954650">the accepted answer</a> (adding the "Log on as Service" right to the application pool's identity user).</p>
<p>I'll just add, for future reference, for those encountering the following message when trying to add the "Log on as a service" right to a domain user: </p>
<blockquote>
<p>"This setting is not compatible with
computers running Windows 2000 Service
Pack 1 or earlier...."</p>
</blockquote>
<p>Know that <em>this has nothing to do with Windows 2000</em> and it's just the domain's group policy that's preventing you from assigning this right to the user.</p>
http://stackoverflow.com/questions/1042915/visual-studio-2005-vcproj-files-wont-stay-encoded-as-utf-81Visual Studio 2005 .vcproj files won't stay encoded as UTF-8Assaf2009-06-25T09:37:42Z2009-08-04T12:13:57Z
<p>The problem: I edit a .vcproj file, save it as UTF-8 (and specify that in the xml header), and when I open it in VS, the next time it saves it the encoding reverts back to CP-1255/1252/1251 (depending on the Localized Settings on the machine).</p>
<p>This has become a problem in our R&D, since whenever someone commits a .vcproj file the encoding changes according to their machine's configuration. How can I configure VS to just use UTF-8 and stop this back and forth ANSI encoding dance?</p>
http://stackoverflow.com/questions/1214079/how-to-remove-svn-from-a-folder/1214093#12140931Answer by Assaf for How to remove SVN from a folderAssaf2009-07-31T18:26:16Z2009-07-31T19:28:37Z<p>Yes.</p>
<p>Though an easier way is probably to just export that folder.</p>
http://stackoverflow.com/questions/1214023/svn-repository-structure-why-is-this-better/1214137#12141373Answer by Assaf for SVN Repository Structure - Why is this better?Assaf2009-07-31T18:34:19Z2009-07-31T18:34:19Z<p>This way of organizing the repository:</p>
<pre><code>ReponsitoryMain
Project1
branches
trunk
tags
Project2
...
</code></pre>
<p>is best when your projects aren't that connected/dependent on each other. The other way around makes it easier to version your entire project suite. So if you often release/package Project1 and Project2 together, it's best to have them share the same branch.</p>
<p>If, on the other hand, your project are very decoupled and have totally different teams working on them, then you wouldn't need to check them all out together most of the time, and so you could use the above method.</p>
http://stackoverflow.com/questions/110894/mysql-transaction-with-thousands-of-inserts-how-many-round-trips-does-it-take2MySQL transaction with thousands of Inserts - how many "round trips" does it take?Assaf2008-09-21T12:26:21Z2009-07-29T13:15:45Z
<p>I've got C# code that accesses MySQL through ODBC.</p>
<p>It creates a transaction, does a few thousand insert commands, and then commits.
Now my question is how many "round trips", so to speak, happen against the DB server? I mean, does it simply transmit every insert command to the DB server, or does it cache/buffer them and send them in batches? And is this configurable in any way?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1184433/execute-a-process-and-return-its-standard-output-in-vc0Execute a process and return its standard output in VC++Assaf2009-07-26T12:20:49Z2009-07-26T12:31:41Z
<p>What's the easiest way to execute a process, wait for it to finish, and then return its standard output as a string?</p>
<p>Kinda like backtics in Perl.</p>
<p>Not looking for a cross platform thing. I just need the quickest solution for VC++.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1184433/execute-a-process-and-return-its-standard-output-in-vc/1184468#11844680Answer by Assaf for Execute a process and return its standard output in VC++Assaf2009-07-26T12:31:41Z2009-07-26T12:31:41Z<p>hmm.. MSDN has this as an example:</p>
<pre><code>int main( void )
{
char psBuffer[128];
FILE *pPipe;
/* Run DIR so that it writes its output to a pipe. Open this
* pipe with read text attribute so that we can read it
* like a text file.
*/
if( (pPipe = _popen( "dir *.c /on /p", "rt" )) == NULL )
exit( 1 );
/* Read pipe until end of file, or an error occurs. */
while(fgets(psBuffer, 128, pPipe))
{
printf(psBuffer);
}
/* Close pipe and print return value of pPipe. */
if (feof( pPipe))
{
printf( "\nProcess returned %d\n", _pclose( pPipe ) );
}
else
{
printf( "Error: Failed to read the pipe to the end.\n");
}
}
</code></pre>
<p>Seems simple enough. Just need to wrap it with C++ goodness.</p>
http://stackoverflow.com/questions/1153295/process-exit-issue-thread-not-exited-successfully/1153302#11533027Answer by Assaf for Process exit issue thread not exited successfully.Assaf2009-07-20T12:27:15Z2009-07-20T12:27:15Z<p>See: <a href="http://blogs.msdn.com/neerajag/archive/2005/09/04/why-doesn-t-my-process-terminate-even-after-main-thread-terminated.aspx" rel="nofollow">Why doesn't my process terminate even after main thread terminated</a></p>
http://stackoverflow.com/questions/1153295/process-exit-issue-thread-not-exited-successfully/1153302#1153302Comment by Assaf on Process exit issue thread not exited successfully.Assaf2009-12-14T14:44:53Z2009-12-14T14:44:53Zorig link works now..http://stackoverflow.com/questions/1893865/how-rethrow-an-exception-without-losing-the-original-call-stackComment by Assaf on How rethrow an exception without losing the original call stack?Assaf2009-12-12T17:44:45Z2009-12-12T17:44:45ZSome of the solutions are most definitely language/platform specific. C++ and C# exceptions do differ, and C++ exceptions are implemented differently on different platforms.http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful/1855375#1855375Comment by Assaf on Should UTF-16 be considered harmful?Assaf2009-12-09T03:38:35Z2009-12-09T03:38:35ZFWIW the AfxMessageBox(MfcUtils::Convert(s), _T("Error"), MB_OK) example should probably really have been a call to a wrapper of that function that accepts std::string(s). Also, the Assert(false) in the functions toward the end should be replaced with static assertions.http://stackoverflow.com/questions/1774647/fastcgi-for-cComment by Assaf on FastCGI for C++Assaf2009-11-23T08:41:34Z2009-11-23T08:41:34ZCould be some good leads here: <a href="http://stackoverflow.com/questions/746309/which-is-the-best-c-web-framework" rel="nofollow" title="which is the best c web framework">stackoverflow.com/questions/746309/…</a>
http://stackoverflow.com/questions/294018/what-are-some-c-related-idioms-misconceptions-and-gotchas-that-youve-learnt/294423#294423Comment by Assaf on What are some C++ related idioms, misconceptions, and gotchas that you've learnt from experience?Assaf2009-11-12T06:49:34Z2009-11-12T06:49:34ZSBRM sounds like an acronym for some sex act... no thankshttp://stackoverflow.com/questions/615008/how-do-i-create-a-batch-script-that-will-delete-a-folder-on-a-scheduled-basis/615020#615020Comment by Assaf on How do I create a batch script that will delete a folder on a scheduled basis?Assaf2009-11-05T14:09:24Z2009-11-05T14:09:24Z:) Clever. I would never do this, but it's a nice trick, so +1http://stackoverflow.com/questions/1642677/generate-unique-file-name-with-timestamp-in-batch-script/1642690#1642690Comment by Assaf on Generate unique file name with timestamp in batch scriptAssaf2009-10-29T11:00:22Z2009-10-29T11:00:22ZHot damn, that's a fancy trick. :) coolhttp://stackoverflow.com/questions/1635742/limiting-the-size-of-the-managed-heap-in-a-c-application/1635749#1635749Comment by Assaf on Limiting the size of the managed heap in a C# applicationAssaf2009-10-28T12:37:10Z2009-10-28T12:37:10ZThat doesn't sound like something I'd want to do. I was hoping for a configurable switch, like in Java. In fact, I'm scratching my head trying to figure out why there wouldn't be such a switch. I mean, somewhere, something is deciding when to run GC based on some limit/heuristic, and it seems reasonable to want to be able to configure that limit. Again.. Java allows this..http://stackoverflow.com/questions/1635742/limiting-the-size-of-the-managed-heap-in-a-c-application/1635763#1635763Comment by Assaf on Limiting the size of the managed heap in a C# applicationAssaf2009-10-28T12:34:44Z2009-10-28T12:34:44ZThis is the observed behavior: the system runs in a loop and the working set size grows indefinitely. When GC is run explicitly, in code, every once in a while, the working set size remains constant. I realize that there's something fishy going on here, but the fact that running GC keeps the WS constant tells me that the application is <i>not</i> holding on to objects. http://stackoverflow.com/questions/1635742/limiting-the-size-of-the-managed-heap-in-a-c-applicationComment by Assaf on Limiting the size of the managed heap in a C# applicationAssaf2009-10-28T12:32:42Z2009-10-28T12:32:42ZIn this particular case there are other (native) applications living on the machine that cannot afford the GCed app taking so much memory.
http://stackoverflow.com/questions/525677/is-there-a-way-to-disable-all-warnings-with-a-pragma/525712#525712Comment by Assaf on Is there a way to disable all warnings with a pragma?Assaf2009-10-27T15:32:04Z2009-10-27T15:32:04ZThe number of warnings you disable is irrelevant. The number of 'pushes' has to match the number of 'pops' that's all.http://stackoverflow.com/questions/1503486/build-c-projects-and-their-dependencies/1503494#1503494Comment by Assaf on Build C# Projects and their dependenciesAssaf2009-10-01T13:19:42Z2009-10-01T13:19:42ZNot an option, since the solution contains many other projects as well, some of which I don't wish to build at this moment.http://stackoverflow.com/questions/1503486/build-c-projects-and-their-dependencies/1503552#1503552Comment by Assaf on Build C# Projects and their dependenciesAssaf2009-10-01T13:19:00Z2009-10-01T13:19:00ZNope. The reference is to the project, and the dependency is there. But it still doesn't build the needed project.http://stackoverflow.com/questions/1503486/build-c-projects-and-their-dependencies/1503514#1503514Comment by Assaf on Build C# Projects and their dependenciesAssaf2009-10-01T13:18:13Z2009-10-01T13:18:13ZThe build order is fine. As I said: A references B and it shows as such in the dependency window and in the build order.
How can I reference a debug build in a release build? The reference is between projects...http://stackoverflow.com/questions/1460023/how-can-i-change-the-currentculture-of-the-entire-process-not-just-current-threa/1460073#1460073Comment by Assaf on How can I change the CurrentCulture of the entire process (not just current thread) in .Net?Assaf2009-09-27T14:57:57Z2009-09-27T14:57:57ZI ended up inheriting from BW and setting the CurrentCulture before every thread function...