User Stefan Rusek - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T14:29:31Zhttp://stackoverflow.com/feeds/user/19704http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1565164/what-is-the-rationale-for-all-comparisons-returning-false-for-ieee754-nan-values/1565255#15652554Answer by Stefan Rusek for What is the rationale for all comparisons returning false for IEEE754 NaN values?Stefan Rusek2009-10-14T09:41:51Z2009-10-14T09:41:51Z<p>From the wikipedia article on <a href="http://en.wikipedia.org/wiki/NaN" rel="nofollow">NaN</a>, the following practices may cause NaNs:</p>
<ul>
<li>All mathematical operations> with a NaN as at least one operand</li>
<li>The divisions 0/0, ∞/∞, ∞/-∞, -∞/∞, and -∞/-∞</li>
<li>The multiplications 0×∞ and 0×-∞</li>
<li>The additions ∞ + (-∞), (-∞) + ∞ and equivalent subtractions.</li>
<li>Applying a function to arguments outside its domain, including taking the square root of a negative number, taking the logarithm of a negative number, taking the tangent of an odd multiple of 90 degrees (or π/2 radians), or taking the inverse sine or cosine of a number which is less than -1 or greater than +1.</li>
</ul>
<p>Since there is no way to know which of these operations created the NaN, there is no way to compare them that makes sense.</p>
http://stackoverflow.com/questions/1564565/custom-routes-with-2-parameters-id-and-customerid/1564667#15646672Answer by Stefan Rusek for custom routes with 2 parameters, id and customeridStefan Rusek2009-10-14T06:58:16Z2009-10-14T09:30:22Z<p>The equals sign is going to confuse url parsers since it has special meaning.</p>
<p>If you were to change your route to:</p>
<pre><code>routes.MapRoute("CustomerOrder", "CustomerOrder/{action}/{id}",
new { controller = "Order", id = "" });
</code></pre>
<p>Then the following view code</p>
<pre><code><%= Html.MenuItem("Back to List", "Index", new { customerID = 5 })%>
</code></pre>
<p>Would create a link to:</p>
<pre><code>CustomerOrder/Index/?customerid=5
</code></pre>
<p>which would work just fine.</p>
<p><strong>Note</strong></p>
<p>Given your current routing configuration, you would get the exact same results by deleting your CustomerOrder route since it is broken and you get the desired results from the default route.</p>
http://stackoverflow.com/questions/1200691/with-mercurial-how-can-i-compress-a-series-of-changesets-into-one-before-pushi/1559922#15599225Answer by Stefan Rusek for With Mercurial, how can I "compress" a series of changesets into one before pushing?Stefan Rusek2009-10-13T12:32:37Z2009-10-13T20:25:19Z<p>The <strong><a href="http://bitbucket.org/durin42/histedit/overview/" rel="nofollow">histedit</a></strong> extension is exactly what you are looking for.</p>
<pre><code>hg histedit -o
</code></pre>
<p>or</p>
<pre><code>hg histedit --outgoing
</code></pre>
<p>will bring up a list of the outgoing changesets. From the list you can</p>
<ul>
<li>Fold 2 or more changesets creating one single changeset</li>
<li>Drop changesets removing them from the history</li>
<li>Reorder changesets however you like.</li>
</ul>
<p>histedit will prompt you for the new commit message of the folded changesets which it defaults to the two messages with "\n***\n" separating them.</p>
<p>You can also get similar results using the mq extension, but it is a lot more difficult.</p>
<p>You can also use the collapse extension to just do folding, but it doesn't provide as nice a UI and doesn't provide a way to edit the resulting commit message. Editing the resulting commit message also allows for cleaning up the final message, which is something I always end up utilizing.</p>
http://stackoverflow.com/questions/1392388/http-request-corruption4HTTP Request CorruptionStefan Rusek2009-09-08T06:58:49Z2009-09-25T06:30:36Z
<p>On a site that receives a very high amount of traffic some small percent of requests come like this:</p>
<pre><code>http://cheezburger.com/ScriptResource.axd?d=zaVpgH63ePt90pn</a> <br /> <br /> <p> <a id=
</code></pre>
<p>On the page referrer page there is a line like so:</p>
<pre><code><script src="/ScriptResource.axd?d=zaVpgH63ePt90p8fuEYkPAKFZuziMYsiIUbmxDb-gQ23Cx78LNJNFXTqKciA4ND_frR-_r9UKsdtLPk6M08xyk6cXFSLUrbBGDlvPIf-F9w1&amp;t=ffffffffd5e08dd5" type="text/javascript"></script>
</code></pre>
<p>and another couple lines much further on:</p>
<pre><code> <a id="login_LoginState_LoginButton" class="button1" UseSubmitBehavior="false" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;login$LoginState$LoginButton&quot;, &quot;&quot;, true, &quot;ctl00$Login1&quot;, &quot;&quot;, false, true))">Log In</a>
<br />
<br />
<p>
<a id="login_LoginState_PasswordRecoveryLink" href="/forgot.aspx">Forgot Password?</a>
</code></pre>
<p>So it appears that part of the page has been removed. It appears to happen more often in IE than Firefox, but that might be because we have more IE traffic than FireFox. We have HTTP compression turned on, but I don't know if that is the problem.</p>
<p>So my question is what is going on and how can it be fixed?</p>
http://stackoverflow.com/questions/1392388/http-request-corruption/1466230#14662302Answer by Stefan Rusek for HTTP Request CorruptionStefan Rusek2009-09-23T14:08:45Z2009-09-23T14:08:45Z<p>After looking at the automatic bug reports generated by this error, it seems the majority of the cases where this occurs is with clients going through proxies. I think this comes down to either a bug in the proxy or a bug in the gzip implementation on the proxy.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114576#114576294Answer by Stefan Rusek for What are Code Smells? What is the best way to correct them?Stefan Rusek2008-09-22T12:32:41Z2009-08-28T17:04:44Z<p><strong>Commented out code.</strong> I realize that this one is a lot of people favorite thing to do, but it is always wrong.</p>
<p>We are in an age when it is easy to setup a source code versioning system. If code is worth keeping, then check it in, it is saved now and forever. If you want to replace it with a new version delete it:</p>
<ul>
<li>The old version will be around if you need it.</li>
<li>Commented out code makes code hard to read since it still looks like code, and takes up the same space as real code. </li>
<li>After a few changes to the original code, the commented out version is way out of date </li>
</ul>
<p>I once saw a function that had over a hundred lines of commented out code, when I removed the commented out code, it was only 2 lines long.</p>
<p>Sometimes we comment out code during debugging and development. This is OK, just make sure to delete it before it is checked in.</p>
http://stackoverflow.com/questions/1286354/how-to-make-my-application-copy-file-faster/1287028#12870280Answer by Stefan Rusek for How to make my application copy file faster.Stefan Rusek2009-08-17T09:34:58Z2009-08-17T09:55:03Z<p>One common mistake when using streams is to copy a byte at a time, or to use a small buffer. Most of the time it takes to write data to disk is spent seeking, so using a larger buffer will reduce your average seek time per byte.</p>
<p>Operating systems write files to disk in clusters. This means that when you write a single byte to disk Windows will actually write a block between 512 bytes and 64 kb in size. You can get much better disk performance by using a buffer that is an integer multiple of 64kb.</p>
<p>Additionally, you can get a boost from using a buffer that is a multiple of your CPUs underlying memory page size. For x86/x64 machines this can be set to either 4kb or 4mb.</p>
<p>So you want to use an integer multiple of 4mb.</p>
<p>Additionally if you use asynchronous IO you can fully take advantage of the large buffer size.</p>
<pre><code>class Downloader
{
const int size = 4096 * 1024;
ManualResetEvent done = new ManualResetEvent(false);
Socket socket;
Stream stream;
void InternalWrite(IAsyncResult ar)
{
var read = socket.EndReceive(ar);
if (read == size)
InternalRead();
stream.Write((byte[])ar.AsyncState, 0, read);
if (read != size)
done.Set();
}
void InternalRead()
{
var buffer = new byte[size];
socket.BeginReceive(buffer, 0, size, System.Net.Sockets.SocketFlags.None, InternalWrite, buffer);
}
public bool Save(Socket socket, Stream stream)
{
this.socket = socket;
this.stream = stream;
InternalRead();
return done.WaitOne();
}
}
bool Save(System.Net.Sockets.Socket socket, string filename)
{
using (var stream = File.OpenWrite(filename))
{
var downloader = new Downloader();
return downloader.Save(socket, stream);
}
}
</code></pre>
http://stackoverflow.com/questions/1277238/distributed-monitoring-service-using-c-net-3-5/1286928#12869281Answer by Stefan Rusek for Distributed Monitoring Service using C# .NET 3.5Stefan Rusek2009-08-17T09:12:08Z2009-08-17T09:12:08Z<p>The most commonly used open source monitoring tool is Nagios. Built in it has support for many different services, and you can always write a script or app to test any service not already supported.</p>
<ul>
<li><p><a href="http://www.nagios.org/" rel="nofollow">Nagios Home Page</a></p></li>
<li><p><a href="http://www.monitoringexchange.org/cgi-bin/page.cgi?g=Detailed/2153.html;d=1" rel="nofollow">Windows Monitoring Service</a></p></li>
<li><p><a href="http://www.bladewatch.com/2007/02/27/installing-nagios-in-windows/" rel="nofollow">Instruction for setting up Windows service</a></p></li>
</ul>
http://stackoverflow.com/questions/1286753/canceling-a-while-loop-prematurely/1286899#12868992Answer by Stefan Rusek for Canceling a While loop prematurely.Stefan Rusek2009-08-17T09:02:37Z2009-08-17T09:02:37Z<p>There are two ways do to this. You can either use a separate thread for your loop or use Application.DoEvents(). The thread approach will generally give you the best results.</p>
<p>Threaded:</p>
<p>You simply call StopLoop() to tell the loop to stop running. You don't want to set loop = 0 because then you would have to use the Interlocked class to ensure loop was set properly between threads.</p>
<pre><code>Private Sub RunLoop()
Dim loop As Action = AddressOf InternalRunLoop
loop.BeginInvoke(null, null)
End Sub
Private bStopLoop As Boolean
Private Sub InternalRunLoop()
While loops >= 1 And Not bStopLoop
' my code that runs in the loop
loop = loop - 1
End While
End Sub
Private Sub StopLoop()
bStopLoop = True
End Sub
</code></pre>
<p>DoEvents:</p>
<p>Calling Application.DoEvents() will cause all the pending events on the window's thread to be processed. If each iteration of the loop takes some time, then the app will still appear to the user like it is non-responsive, which is why the threaded approach is preferred.</p>
<pre><code>Private SubRunLoop()
While loops >= 1 And Not bStopLoop
' my code that runs in the loop
loop = loop - 1
Application.DoEvents()
End While
End Sub
</code></pre>
http://stackoverflow.com/questions/861022/oledb-not-supported-in-64bit-mode/874116#8741163Answer by Stefan Rusek for OleDB not supported in 64bit mode?Stefan Rusek2009-05-17T08:00:43Z2009-05-17T08:00:43Z<p>The main problem is that the Jet DBMS is a 32bit library that gets loaded into the calling process, so you will never be able to use Jet directly from within your app in 64bit mode. As Tim mentioned you could write your own csv parser, but since this is a shrink-wrap app you want something that will handle a wider range of formats. Luckily, there are a number of ways to talk 32-bit apps, so you can still use Jet with a trick.</p>
<p>I would write a little exe that was marked to run only in 32-bit mode. This exe would take a command line argument of the name of the file to read and the name of a temp file to write to. I would use Jet to load the csv/xls, then put the data into an array of arrays, and use the xml serializer to write the data to the temp file.</p>
<p>Then when I need to load/convert a csv/xls file, I would do the following:</p>
<pre><code>object[][] ConvertFile(string csvOrXlsFile)
{
var output = System.IO.Path.GetTempFileName();
try
{
var startinfo = new System.Diagnostics.ProcessStartInfo("convert.exe",
string.Format("\"{0}\" \"{1}\"", csvOrXlsFile, output));
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo = startinfo;
proc.Start();
proc.WaitForExit();
var serializer = new System.Xml.Serialization.XmlSerializer(typeof(object[][]));
using (var reader = System.IO.File.OpenText(output))
return (object[][])serializer.Deserialize(reader);
}
finally
{
if (System.IO.File.Exists(output))
System.IO.File.Delete(output);
}
}
</code></pre>
http://stackoverflow.com/questions/332440/sqlite-dump-command-from-sqliteconnection-object1SQLite .dump command from SQLiteConnection objectStefan Rusek2008-12-01T22:19:01Z2009-04-18T14:15:12Z
<p>Using SQLite from .net, Is there a way to access the <code>.dump</code> command or something equivalent from the SQLiteConnection class?</p>
http://stackoverflow.com/questions/88302/macro-support-in-f/361539#3615391Answer by Stefan Rusek for macro support in F#Stefan Rusek2008-12-12T00:28:33Z2008-12-12T00:28:33Z<p>There are two actively developed Lisps for .net</p>
<p><a href="http://www.codeplex.com/IronScheme" rel="nofollow">IronScheme</a> - DLR based scheme implementation </p>
<p><a href="http://www.bitbucket.org/stefanrusek/xronos/wiki/Home" rel="nofollow">Xronos</a> - DLR based port of clojure </p>
http://stackoverflow.com/questions/348109/is-double-hashing-a-password-less-secure-than-just-hashing-it-once/348449#3484490Answer by Stefan Rusek for Is "double hashing" a password less secure than just hashing it once?Stefan Rusek2008-12-08T01:06:09Z2008-12-08T01:06:09Z<p>As several responses in this article suggest, there are some cases where it may improves security and others where it definately hurts it. There is a better solution that will definately improve security. Instead of doubling the number of times you calculate the hash, double the size of your salt, or double the number of bits used int the hash, or do both! Instead of SHA-245, jump up to SHA-512.</p>
http://stackoverflow.com/questions/315585/scrum-and-fogbugz/328595#3285951Answer by Stefan Rusek for Scrum and FogbugzStefan Rusek2008-11-30T07:33:26Z2008-11-30T07:33:26Z<p>At icanhascheezburger.com, we use FogBugz and we have found that FogBugz is great at a lot of things, but it does not work so well for agile development out of the box. Here are two things we do:</p>
<p>We use the discussion boards for daily scrum reports, though a wiki page might be better suited for that since you can subscribe to it.</p>
<p>We also use priority 7 for the backlog. To find all of the backlog cases just search for:</p>
<pre><code>priority:7 project:"project name"
</code></pre>
<p>The API would make a writing a little scrum client pretty easy.</p>
http://stackoverflow.com/questions/328079/net-openid-library-both-provider-and-consumer2.NET OpenId Library - both Provider and ConsumerStefan Rusek2008-11-29T22:15:58Z2008-11-30T00:33:26Z
<p>I would like to add OpenId support to an app. It runs on ASP.NET MVC, and I would like to have it support OpenId authentication for users, and also allow users to use the app as an OpenId Provider. So basically I am looking for a good library that can be used as a provider and consumer for OpenId, and it has to be easily plugged into ASP.NET MVC (or at least easily wrapped by a controller and a set of views.</p>
http://stackoverflow.com/questions/322580/how-do-i-convert-a-char-into-a-keycode-in-net/328093#3280930Answer by Stefan Rusek for How do I convert a Char into a Keycode in .Net?Stefan Rusek2008-11-29T22:28:07Z2008-11-29T22:28:07Z<p>A much more reliable wait to send a string of keystrokes to a window is to use the SendKeys class</p>
<pre><code> System.Windows.Forms.SendKeys("This is a test");
System.Windows.Forms.SendKeys("This is sends CTRL+J ^j");
</code></pre>
<p>This will be more predictable and should save you some time.</p>
http://stackoverflow.com/questions/102846/posting-forms-to-a-404-httphandler-in-iis7-why-has-all-post-data-gone-missing/109172#1091722Answer by Stefan Rusek for Posting forms to a 404 + HttpHandler in IIS7: why has all POST data gone missing?Stefan Rusek2008-09-20T20:02:09Z2008-10-20T10:45:22Z<p>Since IIS7 uses .net from the top down there would not be any performance overhead of using an HttpModule, In fact there are several Managed HttpModules that are always used on every request. When the BeginRequest event is fired, the SessionStateModule may not have been added to the Modules collection, so if you try to handle the request during this event no session state info will be available. Setting the HttpContext.Handler property will initialize the session state if the requested handler needs it, so you can just set the handler to your fancy 404 page that implements IRequiresSessionState. The code below should do the trick, though you may need to write a different implementation for the IsMissing() method:</p>
<pre><code>using System.Web;
using System.Web.UI;
class Smart404Module : IHttpModule
{
public void Dispose() {}
public void Init(HttpApplication context)
{
context.BeginRequest += new System.EventHandler(DoMapping);
}
void DoMapping(object sender, System.EventArgs e)
{
HttpApplication app = (HttpApplication)sender;
if (IsMissing(app.Context))
app.Context.Handler = PageParser.GetCompiledPageInstance(
"~/404.aspx", app.Request.MapPath("~/404.aspx"), app.Context);
}
bool IsMissing(HttpContext context)
{
string path = context.Request.MapPath(context.Request.Url.AbsolutePath);
if (System.IO.File.Exists(path) || (System.IO.Directory.Exists(path)
&& System.IO.File.Exists(System.IO.Path.Combine(path, "default.aspx"))))
return true;
return false;
}
}
</code></pre>
<p>Edit: I added an implementation of IsMissing()</p>
<p>Note: On IIS7, The session state module does not run globally by default. There are two options: Enable the session state module for all requests (see my comment above regarding running managed modules for all request types), or you could use reflection to access internal members inside System.Web.dll.</p>
http://stackoverflow.com/questions/175205/disable-anchors-in-chrome-webkit-safari2Disable anchors in Chrome/WebKit/SafariStefan Rusek2008-10-06T17:01:47Z2008-10-10T12:43:30Z
<p>Consider the following code:</p>
<pre><code>$("a").attr("disabled", "disabled");
</code></pre>
<p>In IE and FF, this will make anchors unclickable, but in WebKit based browsers (Google Chrome and Safari) this does nothing. The nice thing about the disabled attribute is that it is easily removed and does not effect the href and onclick attributes.</p>
<p>Do you have any suggestions on how to get the desired result. Answers must be:</p>
<ul>
<li>Easily be revertable, since I want to disable form input controls while I have an AJAX call running.</li>
<li>Must work in IE, FF, and WebKit</li>
</ul>
http://stackoverflow.com/questions/103033/what-are-pros-and-cons-of-msmqdistributor-service-of-enterprise-library/113823#1138233Answer by Stefan Rusek for What are pros and cons of Msmqdistributor service of Enterprise Library? Stefan Rusek2008-09-22T08:38:44Z2008-09-30T20:29:08Z<p>The main drawback is going to be the Microsoft Message Queue (MSMQ) itself. MSMQ has been around for awhile and it is a pretty cool tool. It does however lack utilities. Because of the way that data is stored in the queue, most people end up needing to write some helper utilities for debugging and manually manipulating the queue. Some other things to consider:</p>
<ul>
<li><strong>Queue size</strong> - if too many items get put in the queue, and aren't removed in a timely manner the server can stall.</li>
<li><strong>Purpose</strong> - MSMQ is designed for multi-step transactions (such as billing), you mention you are going to use it for logging. If the log is just for debugging, Then a DB table or a flat file or sending errors to a bug tracker will serve you better. If you need complicated logging and are using MSMQ to send the information to a different copmuter, then you will find MSMQ more useful.</li>
</ul>
http://stackoverflow.com/questions/153944/is-sql-syntax-case-sensitive/153967#15396719Answer by Stefan Rusek for Is SQL syntax case sensitive?Stefan Rusek2008-09-30T16:52:16Z2008-09-30T17:09:09Z<p>The SQL Keywords are case-insensitive (SELECT, FROM, WHERE, etc), but are often written in all caps. However in some setups table and column names are case-sensitive. Mysql has a configuration option to enable/disable it. Usually case-sensitive table and column names are the default on Linux MySql and case-insensitive used to be the default on Windows, but now the installer asked about this during setup. For MSSQL it is a function of the database's collation setting.</p>
<p>Here is the MySql page about name case-sensitivity:
<a href="http://dev.mysql.com/doc/refman/5.0/en/identifier-case-sensitivity.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/identifier-case-sensitivity.html</a></p>
<p>Here is the article in MSDN about collations for MSSQL:
<a href="http://msdn.microsoft.com/en-us/library/ms143503(SQL.90).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms143503(SQL.90).aspx</a></p>
http://stackoverflow.com/questions/137712/sql-tracing-linq-to-entities/138109#1381091Answer by Stefan Rusek for SQL tracing LINQ to EntitiesStefan Rusek2008-09-26T07:10:54Z2008-09-26T07:10:54Z<p>You can log everything that is done on your DataContext like so:</p>
<pre><code>var dc = New MyDataContext();
var sb = New StringBuilder();
dc.Log = New StringWriter(sb);
// do some stuff with dc
dc.Log.Flush();
// now sb has everything that happened on the context.
</code></pre>
http://stackoverflow.com/questions/121521/how-can-i-integrate-a-bitbucket-repository-with-the-hosted-on-demand-version-of-f/123314#1233145Answer by Stefan Rusek for How can I integrate a bitbucket repository with the hosted on-demand version of FogBugz?Stefan Rusek2008-09-23T19:43:23Z2008-09-24T10:54:05Z<p>From the sounds of it you are wanting to run the hook on your local machine. The hook and directions are intended for use on the central server.</p>
<p>If you are the only one working in your repository or don't mind commit not showing up in FB until after you do a pull, then you can add the hook locally to your primary clone, If you are using your primary clone then you need to do something slightly different from what they say here:
<a href="http://bugs.movabletype.org/help/topics/sourcecontrol/setup/Mercurial.html" rel="nofollow">http://bugs.movabletype.org/help/topics/sourcecontrol/setup/Mercurial.html</a></p>
<p>You can put your fogbugz.py anywhere you want, just add a path line to your [fogbugz] section of that repositories hgrc file:</p>
<pre><code>[fogbugz]
path=C:\Program Files\TortoiseHg\scripts\fogbugz.py
</code></pre>
<p>Just make sure you have python installed. you may also wish to add a commit hook so that local commits to the repository also get into FB.</p>
<pre><code>[hooks]
commit=python:hgext.fogbugz.hook
incoming=python:hgext.fogbugz.hook
</code></pre>
<p>On the Fogbugz install you will want change put the following in your for your logs url:</p>
<pre><code>^REPO/log/^R2/^FILE
</code></pre>
<p>and the following for your diff url:</p>
<pre><code>^REPO/diff/^R2/^FILE
</code></pre>
<p>When the hook script runs it connects to your FB install and sends it a few parameters. These parameters are stored in the DB and used to generate urls for diffs and log informaiton. The script sends the url of repo, this is in your baseurl setting in the [web] section. You want this url to be the url to your bitbucket repository. This will be used to replace <b>^REPO</b> from the url templates above. The hook script also passes the revision id and the file name to FB. These will replace ^R2 and ^FILE. So in summary this is the stuff you want to add to the hgrc file in your .hg directory:</p>
<pre><code>[extensions]
hgext.fogbugz=
[fogbugz]
path=C:\Program Files\TortoiseHg\scripts\fogbugz.py
host=https://<YOURACCOUNT>.fogbugz.com/
script=cvsSubmit.asp
[hooks]
commit=python:hgext.fogbugz.hook
incoming=python:hgext.fogbugz.hook
[web]
baseurl=http://www.bitbucket.org/<YOURBITBUCKETACCOUNT>/<YOURPROJECT>/
</code></pre>
<p>One thing to remember is that FB may get notified of a checkin before you actually push those changes to bitbucket. If this is the cause do a push and things will work.</p>
<p>EDIT: added section about the FB server and the summary.</p>
http://stackoverflow.com/questions/111426/did-you-apply-computational-complexity-theory-in-real-life/111510#1115105Answer by Stefan Rusek for Did you apply computational complexity theory in real life?Stefan Rusek2008-09-21T17:39:37Z2008-09-24T10:42:33Z<p>While it is true that one can get really far in software development without the slightest understanding of algorithmic complexity. I find I use my knowledge of complexity all the time; though, at this point it is often without realizing it. The two things that learning about complexity gives you as a software developer are a way to compare non-similar algorithms that do the same thing (sorting algorithms are the classic example, but most people don't actually write their own sorts). The more useful thing that it gives you is a way to quickly describe an algorithm.</p>
<p>For example, consider SQL. SQL is used every day by a very large number of programmers. If you were to see the following query, your understanding of the query is very different if you've studied complexity.</p>
<pre><code>SELECT User.*, COUNT(Order.*) OrderCount FROM User Join Order ON User.UserId = Order.UserId
</code></pre>
<p>If you have studied complexity, then you would understand if someone said it was O(n^2) for a certain DBMS. Without complexity theory, the person would have to explain about table scans and such. If we add an index to the Order table</p>
<pre><code>CREATE INDEX ORDER_USERID ON Order(UserId)
</code></pre>
<p>Then the above query might be O(n log n), which would make a huge difference for a large DB, but for a small one, it is nothing at all.</p>
<p>One might argue that complexity theory is not needed to understand how databases work, and they would be correct, but complexity theory gives a language for thinking about and talking about algorithms working on data.</p>
http://stackoverflow.com/questions/123088/possible-pitfalls-of-using-this-extension-method-based-shorthand/123576#1235764Answer by Stefan Rusek for Possible pitfalls of using this (extension method based) shorthandStefan Rusek2008-09-23T20:15:40Z2008-09-23T20:15:40Z<p>I just have to say that I love this hack!</p>
<p>I hadn't realized that extension methods don't imply a null check, but it totally makes sense. As James pointed out, The extension method call itself is not any more expensive than a normal method, however if you are doing a ton of this, then it does make sense to follow the Null Object Pattern, that ljorquera suggested. Or to use a null object and ?? together.</p>
<pre><code>class Class1
{
public static readonly Class1 Empty = new Class1();
.
.
x = (obj1 ?? Class1.Empty).X;
</code></pre>
http://stackoverflow.com/questions/123423/do-you-leave-historical-code-commented-out-in-classes-that-you-update/123460#1234606Answer by Stefan Rusek for Do you leave historical code commented out in classes that you update?Stefan Rusek2008-09-23T19:58:43Z2008-09-23T19:58:43Z<p>We are in an age when it is easy to setup a source code versioning system. If code is worth keeping, Then check it in, it is saved now and forever. If you want to replace it with a new version delete it,</p>
<ul>
<li>The old version will be around if you need it.</li>
<li>Commented out code makes code hard to read since it still looks like code, and takes up the same space as real code. </li>
<li>After a few changes to the original code, the commented out version is way out of date </li>
</ul>
<p>I once saw a function that had over a hundred lines of commented out code, when I removed the commented out code, it was only 2 lines long.</p>
http://stackoverflow.com/questions/123057/how-do-i-avoid-a-memory-leak-with-linq-to-sql/123206#1232064Answer by Stefan Rusek for How do I avoid a memory leak with LINQ-To-SQL?Stefan Rusek2008-09-23T19:25:09Z2008-09-23T19:25:09Z<p>As David Points out, you should dispose of the DataContext using a using block.</p>
<p>It seems that your primary concern is about creating and disposing a bunch of DataContext objects. THis is how linq2sql is designed. The DataContext is meant to have short lifetime. Since you are pulling a lot of data from the DB, it makes sense that there will be a lot of memory usage. You are on the right track, by processing your data in chunks. </p>
<p>Don't be afraid of creating a ton of DataContexts. They are designed to be used that way.</p>
http://stackoverflow.com/questions/114327/abusing-xmlreader-readsubtree/114430#1144307Answer by Stefan Rusek for Abusing XmlReader ReadSubtree() Stefan Rusek2008-09-22T11:58:22Z2008-09-22T11:58:22Z<p>ReadSubTree() gives you an XmlReader that wraps the original XmlReader. This new reader appears to consumers as a complete document. This might be important if the code you pass the subtree to thinks it is getting a standalone xml document. For example the Depth property of the new Reader starts out at 0. It is a pretty thin wrapper, so you won't be using any more resources than you would if you used the original XmlReader directly, In the example you gave, it is rather likely that you aren't really getting much out of the subtree reader.</p>
<p>The big advantage in your case would be that the subtree reader can't accidentally read past the subtree. Since the subtree reader isn't very expensive, that safety might be enough, though it is generally more helpful when you need the subtree to look like a document or you don't trust the code to only read its own subtree.</p>
<p>As Will noted, you never want to call GC.Collect(). It will never improve performance.</p>
http://stackoverflow.com/questions/110442/how-do-you-build-a-culture-of-collaboration-in-your-team/113795#1137953Answer by Stefan Rusek for How do you build a culture of collaboration in your team?Stefan Rusek2008-09-22T08:26:52Z2008-09-22T08:26:52Z<p>The question is not quite clear what information is going into the wiki, so I will deal specs, documentation, and everything else. At both the company I work for now and the previous company I worked for we wrote specs and documentation in the wiki, which leds organically to other stuff being put there too. It make take some work by you as a team member to encourage others to use the wiki, but before too long people will use it on their own.</p>
<h2>Specs</h2>
<p>Not all developers write specs, but almost every company writes specs or something equivalent. So if the person or persons writing specs is asked to put their specs in the wiki, then people will start to use the wiki. Since specs evolve over time, they are a natural fit for wikis, because of the change tracking that is built-in.</p>
<h2>Documentation</h2>
<p>We all have to write documentation. It isn't always fun but it is something we should do. Documentation doesn't just include documenting code, but things like server deployment information or push logs or anything that needs to be written up. This information isn't hard to get into a wiki either, but it does have to be approached a little differently. One of the best ways to get documentation into the wiki is just to ask.</p>
<blockquote>
<p>"Hey Jim, can you write a <em>short</em>
article in the wiki about how to use
that <em>awesome</em> new logging system you
wrote."</p>
</blockquote>
<p>The key is to try to get useful information into the wiki. Jim just wrote a logging system and telling people how to use it is useful so he is more likely to see the practicality of writing something up. Other people are going to see the utility too.</p>
<h2>Everything else</h2>
<p>Don't bother asking programmers to put anything else in the wiki. Documentation and Specs are such wide categories, that if it falls into another category, it probably is not worth the effort.</p>
<p>NOTE: You may want to put in a little effort into which wiki you pick. Some wiki's have great formatting but usually sacrifice editability, others are editible but don't offer much in the way of formatting. Remember that wikis are tools, and you want to choose one that gets in the way as little as possible.</p>
http://stackoverflow.com/questions/111292/free-version-control-services/111398#11139829Answer by Stefan Rusek for Free version control services?Stefan Rusek2008-09-21T16:51:28Z2008-09-21T17:15:08Z<p>I've made this a wiki page so we can put all the info in an easier to manage format.</p>
<p>Subversion</p>
<ul>
<li><a href="http://www.assembla.com/" rel="nofollow">http://www.assembla.com/</a></li>
<li><a href="http://www.beanstalkapp.com/" rel="nofollow">http://www.beanstalkapp.com/</a></li>
<li><a href="http://code.google.com/hosting/" rel="nofollow">http://code.google.com/hosting/</a></li>
<li><a href="http://projectkenai.com/" rel="nofollow">http://projectkenai.com/</a></li>
</ul>
<p>Mercurial</p>
<ul>
<li><a href="http://www.assembla.com/" rel="nofollow">http://www.assembla.com/</a></li>
<li><a href="http://freehg.org/" rel="nofollow">http://freehg.org/</a></li>
<li><a href="http://www.bitbucket.org/" rel="nofollow">http://www.bitbucket.org/</a></li>
<li><a href="http://projectkenai.com/" rel="nofollow">http://projectkenai.com/</a></li>
<li><a href="http://savannah.gnu.org/" rel="nofollow">http://savannah.gnu.org/</a></li>
</ul>
<p>Bazaar</p>
<ul>
<li><a href="https://launchpad.net/" rel="nofollow">https://launchpad.net/</a></li>
<li><a href="http://savannah.gnu.org/" rel="nofollow">http://savannah.gnu.org/</a></li>
</ul>
<p>Git</p>
<ul>
<li><a href="http://www.assembla.com/" rel="nofollow">http://www.assembla.com/</a></li>
<li><a href="http://www.github.com" rel="nofollow">http://www.github.com</a></li>
</ul>
http://stackoverflow.com/questions/109608/how-do-i-position-the-content-of-a-tabpage-in-silverlight/110845#1108450Answer by Stefan Rusek for How do I position the content of a tabpage in Silverlight?Stefan Rusek2008-09-21T11:59:00Z2008-09-21T11:59:00Z<p>After spending a couple hours fooling around with this problem. Brian is totally right. The current version of VS does not allow changing the TabControl's template, but it can be done using Blend, and there is a margin on the template. The main drawback of doing this is that the XAML file will no longer be previewable from Visual Studio.</p>
http://stackoverflow.com/questions/1200691/with-mercurial-how-can-i-compress-a-series-of-changesets-into-one-before-pushiComment by Stefan Rusek on With Mercurial, how can I "compress" a series of changesets into one before pushing?Stefan Rusek2009-10-13T20:21:37Z2009-10-13T20:21:37ZIt also provides a mechanism to edit the merged changeset message.http://stackoverflow.com/questions/1200691/with-mercurial-how-can-i-compress-a-series-of-changesets-into-one-before-pushi/1560558#1560558Comment by Stefan Rusek on With Mercurial, how can I "compress" a series of changesets into one before pushing?Stefan Rusek2009-10-13T20:21:02Z2009-10-13T20:21:02Zthough it does provide a much easier to use and understand UI, which is more than enough of a reason to use it, but it also provides a mechanism to edit the merged changeset message, which is another thing that I always want to do when I merge changesets.http://stackoverflow.com/questions/1200691/with-mercurial-how-can-i-compress-a-series-of-changesets-into-one-before-pushiComment by Stefan Rusek on With Mercurial, how can I "compress" a series of changesets into one before pushing?Stefan Rusek2009-10-13T20:10:07Z2009-10-13T20:10:07Zcollapse provides a subset of the features of histedit, and histedit has a much more intuative UX.http://stackoverflow.com/questions/1471780/will-you-use-googles-chrome-frame/1472344#1472344Comment by Stefan Rusek on Will you use Google's Chrome Frame?Stefan Rusek2009-09-28T20:27:00Z2009-09-28T20:27:00ZWhat site is already using it?http://stackoverflow.com/questions/1392388/http-request-corruption/1475736#1475736Comment by Stefan Rusek on HTTP Request CorruptionStefan Rusek2009-09-25T10:16:53Z2009-09-25T10:16:53ZThis occurs with both Firefox ans IE.http://stackoverflow.com/questions/1392388/http-request-corruption/1466230#1466230Comment by Stefan Rusek on HTTP Request CorruptionStefan Rusek2009-09-24T12:45:08Z2009-09-24T12:45:08ZOne proxy service that had a bunch of them, was a satellite ISP.http://stackoverflow.com/questions/1392388/http-request-corruption/1466230#1466230Comment by Stefan Rusek on HTTP Request CorruptionStefan Rusek2009-09-24T12:44:15Z2009-09-24T12:44:15ZI don't have access to the proxies or the clients, I just have a logger that logs the error.http://stackoverflow.com/questions/1392388/http-request-corruption/1466403#1466403Comment by Stefan Rusek on HTTP Request CorruptionStefan Rusek2009-09-23T17:32:02Z2009-09-23T17:32:02ZIt would be great if this was the problem, but it isn't, because we would expect the breaks to be on chunk/page barriers. Also webservers gzip first and the chunk the output.http://stackoverflow.com/questions/1392388/http-request-corruption/1463986#1463986Comment by Stefan Rusek on HTTP Request CorruptionStefan Rusek2009-09-23T13:46:06Z2009-09-23T13:46:06ZThis doesn't have anything to do whether the html or script tag is well formed, since the wrong data is showing up in the browser source.http://stackoverflow.com/questions/1392388/http-request-corruption/1464003#1464003Comment by Stefan Rusek on HTTP Request CorruptionStefan Rusek2009-09-23T13:30:45Z2009-09-23T13:30:45ZI think it is clear that the whole document isn't getting into the client browser.http://stackoverflow.com/questions/1392388/http-request-corruptionComment by Stefan Rusek on HTTP Request CorruptionStefan Rusek2009-09-08T15:08:05Z2009-09-08T15:08:05Zyeah, and it is unpredicatable so when this occurs we get random chunks of the page added onto part of the real Url. The original url is also usually truncated, so the resulting url is completely invalid.http://stackoverflow.com/questions/1392351/java-reflection-why-is-it-so-bad/1392362#1392362Comment by Stefan Rusek on Java Reflection: Why is it so bad?Stefan Rusek2009-09-08T07:39:16Z2009-09-08T07:39:16ZIt cannot be over emphasized that using reflection is only slow compared to using the equivalent non-reflection code. Reading or writing to the HD or parsing xml or using the network or accessing a database (which is accessing HD and Network) are all slower than reflection.http://stackoverflow.com/questions/1285986/flags-enum-bitwise-operations-vs-string-of-bits/1286472#1286472Comment by Stefan Rusek on Flags enum & bitwise operations vs. “string of bits”Stefan Rusek2009-08-17T10:00:10Z2009-08-17T10:00:10ZYou can get the best of both worlds by using 0x0001 for Sunday, 0x0010 for Monday, 0x0100 for Tuesday, etc. This way when you convert the value to hex you get a human readable list of days, while retaining the advantages of using Flags.http://stackoverflow.com/questions/829682/what-dvcs-support-unicode-filenames/843185#843185Comment by Stefan Rusek on What DVCS support Unicode filenames?Stefan Rusek2009-05-13T05:36:34Z2009-05-13T05:36:34ZI maintain the fixutf8 extension and use it daily with a binary build of HG. File a bug <a href="http://bitbucket.org/stefanrusek/hg-fixutf8/" rel="nofollow">bitbucket.org/stefanrusek/hg-fixutf8</a> and I will gladly take a look.http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114576#114576Comment by Stefan Rusek on What are Code Smells? What is the best way to correct them?Stefan Rusek2009-04-04T15:42:25Z2009-04-04T15:42:25ZI've seen files that were 90% commented out code. It should have all been deleted.