User Greg D - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T08:00:09Zhttp://stackoverflow.com/feeds/user/6932http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/615287/useful-powershell-one-liners/1928131#19281311Answer by Greg D for Useful PowerShell one linersGreg D2009-12-18T13:13:33Z2009-12-18T13:13:33Z<p>I don't like complicated applications for counting lines of code, especially because I consider it to be a bogus metric in the first place. I end up using a PS one-liner instead:</p>
<pre><code>PS C:\Path> (dir -include *.cs,*.xaml -recurse | select-string .).Count
</code></pre>
<p>I just include the extensions of the files I want to include in the line count and go for it from the project's root directory.</p>
http://stackoverflow.com/questions/1884522/stylecop-vs-fxcop/1884561#18845618Answer by Greg D for Stylecop vs FXcopGreg D2009-12-10T22:34:38Z2009-12-10T22:40:55Z<p>Stylecop is a style analysis tool that works at the source code level. It exists primarily to provide a single common style that managed projects can use to remain consistent within the larger world of managed software. It makes decisions regarding style primarily to avoid holy wars (after all, style is almost always an inherently subjective thing). I don't think I've ever met someone who liked all of StyleCop's rules, but that's <em>ok</em>. It means that StyleCop is a generally good compromise amongst the vast set of style guidelines that exist. (If stylecop's rules were highly customizable, beyond simply enabling/disabling them, it would defeat the entire purpose of the tool.)</p>
<p>FxCop, on the other hand, is a static analysis tool that works on the level of the managed assembly. It can be given directions via attributes because it can see attributes on code elements, e.g.. It detects problems that can be seen on the "binary" level (as it were) as opposed to the syntactic level.</p>
<p>To answer your question, StyleCop doesn't supercede FxCop, and FxCop doesn't supercede stylecop. They're two different tools with two different purposes that can both provide a real benefit for your code.</p>
<p>(AKA, I run with both. :) )</p>
<p><hr></p>
<p>A couple examples of the things one might detect vs. things the other might detect:</p>
<p>StyleCop violations might include warnings related to: Whitespace, Formatting, Public method documentation via xml-comments, order of method definition within a class.</p>
<p>FxCop violations might include warning related to: Globalization, tight coupling, cyclomatic complexity, potential null dereferences.</p>
http://stackoverflow.com/questions/1880870/will-multiple-control-begininvoke-invoke-calls-execute-in-order/1880914#18809140Answer by Greg D for Will multiple Control.BeginInvoke/Invoke calls execute in order?Greg D2009-12-10T13:14:40Z2009-12-10T13:14:40Z<p>Not enough information to give you a good answer. The UI thread is blocked so steps 2 and 3 must be running on a different thread. If there's no synchronization between the two, then how could we know any ordering?</p>
<pre><code>Thread 1 Thread 2 Thread 3 Thread 4
Block UI Calls BeginInvoke
Unblock UI Calls Invoke or BeginInvoke BeginInvoke runs BeginInvoke runs
</code></pre>
<p>You've got a lot a parallelism going on, but from what you've described, there's no possible way we could tell you what possible orderings will occur, short of saying, "Anything." We can't even tell you that the calls to BeginInvoke won't happen before the UI thread is blocked or after the UI thread is unblocked.</p>
http://stackoverflow.com/questions/1849490/c-arguments-for-exceptions-over-return-codes/1849519#18495192Answer by Greg D for C++ - Arguments for Exceptions over Return CodesGreg D2009-12-04T20:39:33Z2009-12-04T20:39:33Z<p>The best case I've heard for preferring return codes over exceptions is simply this:</p>
<ol>
<li>Writing exception-safe code is <em>hard</em> [in C++].</li>
</ol>
<p>With a great deal of recent experience in C# myself, I can empathize with your desire to use exceptions, but unfortunately C++ isn't C#, and a lot of things that we can get away with in C# can be ultimately deadly in C++.</p>
<p>A good summation of <a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Exceptions" rel="nofollow">the case for and against</a> can be found in <a href="http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml" rel="nofollow">Google's style guidelines</a>. In short:</p>
<blockquote>
<h2>Pros:</h2>
<ul>
<li>Exceptions allow higher levels of an application to decide how to
handle "can't happen" failures in
deeply nested functions, without the
obscuring and error-prone bookkeeping
of error codes.</li>
<li>Exceptions are used by most other modern languages. Using them in
C++ would make it more consistent with
Python, Java, and the C++ that others
are familiar with.</li>
<li>Some third-party C++ libraries use exceptions, and turning them off
internally makes it harder to
integrate with those libraries.</li>
<li>Exceptions are the only way for a constructor to fail. We can simulate
this with a factory function or an
Init() method, but these require heap
allocation or a new "invalid" state,
respectively.</li>
<li>Exceptions are really handy in testing frameworks.</li>
</ul>
<h2>Cons:</h2>
<ul>
<li>When you add a throw statement to an existing function, you must
examine all of its transitive callers.
Either they must make at least the
basic exception safety guarantee, or
they must never catch the exception
and be happy with the program
terminating as a result. For instance,
if f() calls g() calls h(), and h
throws an exception that f catches, g
has to be careful or it may not clean
up properly.</li>
<li>More generally, exceptions make the control flow of programs difficult
to evaluate by looking at code:
functions may return in places you
don't expect. This results
maintainability and debugging
difficulties. You can minimize this
cost via some rules on how and where
exceptions can be used, but at the
cost of more that a developer needs to
know and understand.</li>
<li>Exception safety requires both RAII and different coding practices.
Lots of supporting machinery is needed
to make writing correct exception-safe
code easy. Further, to avoid requiring
readers to understand the entire call
graph, exception-safe code must
isolate logic that writes to
persistent state into a "commit"
phase. This will have both benefits
and costs (perhaps where you're forced
to obfuscate code to isolate the
commit). Allowing exceptions would
force us to always pay those costs
even when they're not worth it.</li>
<li>Turning on exceptions adds data to each binary produced, increasing
compile time (probably slightly) and
possibly increasing address space
pressure.</li>
<li>The availability of exceptions may encourage developers to throw them
when they are not appropriate or
recover from them when it's not safe
to do so. For example, invalid user
input should not cause exceptions to
be thrown. We would need to make the
style guide even longer to document
these restrictions!</li>
</ul>
</blockquote>
<p>I suggest reading through and understanding the pros and cons, then making a decision for your own project based on these. You don't have the same software that google has, so what makes sense for them may not make sense for you (which is why I omitted their conclusion).</p>
http://stackoverflow.com/questions/1430699/system-objectdisposedexception-from-simple-form-display/1846831#18468310Answer by Greg D for System.ObjectDisposedException from simple form displayGreg D2009-12-04T13:05:54Z2009-12-04T13:05:54Z<p>Your stack trace tells me that you aren't getting into the <code>ProfileForm</code> code. It's failing on some control's CreateHandle. Without more information, I can only guess:</p>
<ol>
<li><p>Verify that you're performing all your UI manipulation is occurring on your GUI thread. Even if you think it is, double check. (Sometimes the threading can be subtle.)</p></li>
<li><p>Make sure that you aren't trying to display the same form instance twice, the second time after it's already been disposed. I see that you've got a <code>ShowDialog()</code> happening, but if you're trying to <code>ShowDialog()</code> on a form that's already been disposed, I'd expect it to explode like this.</p></li>
<li><p>Ensure that any usercontrols on the form behave properly.</p></li>
<li><p>Consider using a secure string for your password field.</p></li>
</ol>
http://stackoverflow.com/questions/1846772/advice-on-creating-customizable-touchscreen-application/1846803#18468032Answer by Greg D for Advice on creating customizable touchscreen applicationGreg D2009-12-04T12:58:48Z2009-12-04T12:58:48Z<p>The problems you describe don't seem to be related to the fact that it's a touchscreen application as much as the technologies and techniques you used to build it. Addressing your questions:</p>
<ol>
<li><p>In a winforms world, using a set of forms like you describe is probably not the best way to go. One classic problem is what happens when the user moves the form, then clicks "Next >". The new form re-appears in the middle of the window, seemingly "forgetting" that it was moved. In general, a better technique for this wizard-y sort of interface is to create a single "container" form and a series of user controls that you dynamically add to it and remove from it. A similar approach could work in a WPF world as well, though I haven't done that yet so I don't know if there are any subtle gotcha's. (I doubt there are.)</p></li>
<li><p>There are lots of ways to do this. Without knowing your specific requirements, it's difficult to pick just one. For example, the order of forms (or UserControls if you follow my advice from #1) could be a list of typenames in a configurations section. When the app is loaded, it just looks at the configuration section to see the order that things need to be displayed in. This way you can sell two customers the same application, and they can use different orderings based on their configuration.</p></li>
<li><p>Styles via WPF is the most natural answer to the customized look and feel, I agree. Just be aware that WPF is a pretty steep learning curve if you don't already have the expertise in-house. (Worthwhile, to be sure, but steep.) Another option, if you stick with windows forms, might be to dynamically walk the control collections and change the color properties based on control type appropriately before displaying a form/usercontrol. That feels hackish and a bit kludgy, though. I'm not aware of a "good" way to do what you're looking for in WinForms. Perhaps subclass the controls that need a different color and only override the colors?</p></li>
</ol>
http://stackoverflow.com/questions/1819980/what-design-pattern-would-you-consider-is-most-important-to-use/1820014#18200144Answer by Greg D for What design pattern would you consider is most important to use?Greg D2009-11-30T14:02:10Z2009-11-30T14:02:10Z<p>Your brain. It's not really a design pattern, persay, but it's the gateway to all good design decisions. :)</p>
http://stackoverflow.com/questions/1815486/c-c-attempted-to-read-or-write-protected-memory-error/1815523#18155231Answer by Greg D for C# & C++: "Attempted to read or write protected memory" ErrorGreg D2009-11-29T13:18:47Z2009-11-29T13:40:23Z<p>The member <code>_it</code> in <code>StdStringContainer</code> is never initialized to point into the <code>_items</code> vector. This means it's an invalid iterator. When you assign <code>_it</code> to <code>it</code> in <code>GetNext()</code>, you've given <code>it</code> the invalid, uninitialized value that existed in <code>_it</code>. You then increment the uninitialized <code>_it</code> via <code>_it++</code>, which is what's triggering your fault.</p>
<p>As Stroustrup says in 19.2, an uninitialized iterator is an invalid iterator. This means that your uninitialized <code>_it</code> is invalid and that operations performed with it are undefined, and likely to cause dramatic failure.</p>
<p>Your problem is deeper, however. Iterators have a fundamentally different lifetime from the containers that they enumerate. There aren't really any "good" ways to do what you're trying to do with a single iterator member like this unless the container is immutable and initialized in the constructor. </p>
<p>If you can't expose the std:: namespace names, have you considered aliasing them via typedef's, e.g.? What about your organization or project makes it impossible to expose the template classes?</p>
http://stackoverflow.com/questions/1791510/can-lambdas-be-used-without-linq/1791543#17915431Answer by Greg D for Can lambdas be used without Linq?Greg D2009-11-24T17:13:32Z2009-11-24T17:13:32Z<p>Lambdas can absolutely be used without linq, I do it all the time. Here's a <a href="http://stackoverflow.com/questions/1782793/super-simple-example-for-a-delegate-event-in-c-net/1782908#1782908">code sample</a> I posted elsewhere that uses a lambda with no linq in sight.</p>
http://stackoverflow.com/questions/1787396/what-would-happen-if-i-re-apply-the-job-that-i-failed-the-interview-previously/1787420#17874205Answer by Greg D for What would happen if I re-apply the job that I failed the interview previously?Greg D2009-11-24T02:31:54Z2009-11-24T02:31:54Z<p>It depends on the company. Many places would be willing to give you a second look. I know for a fact that a number of people who end up with jobs at google or microsoft, for example, only got in after their 2nd or 3rd try. I like to believe that this is because the best dev't houses understand that it's better to turn away a good employee than to hire a bad one. If the place you interviewed at is such a destination, they'll likely be willing to let you go through the interview process again to see if you just had a bad day.</p>
<p>The other possibility, of course, is that they'll remember you and simply not pursue you any further. In that case, you're only out a phone call or a piece of paper.</p>
<p>If you're genuinely interested in working at this place, study up to prove it, bone up on your interviewing skills, and apply again. It's a low-risk bet for you, with a potentially very high reward. </p>
<p>Good luck! :)</p>
http://stackoverflow.com/questions/1785686/how-many-times-can-classes-be-nested-within-a-class/1785700#17857005Answer by Greg D for How many times can classes be nested within a class?Greg D2009-11-23T20:23:09Z2009-11-23T20:23:09Z<p>Hmmm. I know that the online Java test you refer to is a lousy one. Does that count?</p>
<p>(This is the kind of limit that is irrelevant in practical experience. A similarly ridiculously question would be, "What is the maximum length of a function in bytes?")</p>
http://stackoverflow.com/questions/1785035/when-programming-for-an-hourly-rate-should-you-keep-the-timer-running-while-proc/1785052#17850524Answer by Greg D for When programming for an hourly rate, should you keep the timer running while processing code automatically in the background?Greg D2009-11-23T18:27:37Z2009-11-23T18:27:37Z<p>As with most things, strike a balance. I would consider building a deployment package to be chargeable hours because you're still tying up resources in a significant manner that prevents you from performing other productive work. </p>
<p>I wouldn't consider nightly builds to be chargeable, however, because you're asleep- you wouldn't be doing anything else anyway.</p>
http://stackoverflow.com/questions/1784938/what-do-you-wish-sysadmins-would-do-differently/1784994#17849942Answer by Greg D for What do you wish SysAdmins would do differently?Greg D2009-11-23T18:17:40Z2009-11-23T18:17:40Z<ol>
<li>Follow the directions for setup/installation/configuration as I wrote them in the manual. </li>
</ol>
<p>Really, that's it. 9 support calls out of 10 that I've gotten on deployment issues were directly traceable to a failure to rt(f)m.</p>
http://stackoverflow.com/questions/1784303/c-usercontrol-constructor-with-parameters/1784683#17846833Answer by Greg D for C# UserControl constructor with parametersGreg D2009-11-23T17:27:22Z2009-11-23T17:27:22Z<p>Design decisions made regarding the way Windows Forms works more or less preclude parameterized .ctors for windows forms components. You can use them, but when you do you're stepping outside the generally approved mechanisms. Rather, Windows Forms prefers initialization of values via properties. This is a valid design technique, if not widely used.</p>
<p>This has some benefits, though.</p>
<ol>
<li>Ease of use for clients. Client code doesn't need to track down a bunch of data, it can immediately create something and just see it with sensible (if uninteresting) results.</li>
<li>Ease of use for the designer. Designer code is clearer and easier to parse in general.</li>
<li>Discourages unusual data dependencies within a single component. (Though even microsoft blew this one with the <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=375805" rel="nofollow"><code>SplitContainer</code></a>)</li>
</ol>
<p>There's a lot of support in forms for working properly with the designer in this technique also. Things like <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx" rel="nofollow"><code>DefaultValueAttribute</code></a>, <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.designerserializationvisibilityattribute.aspx" rel="nofollow"><code>DesignerSerializationVisibilityAttribute</code></a>, and <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.browsableattribute.aspx" rel="nofollow"><code>BrowsableAttribute</code></a> give you the opportunity to provide a rich client experience with minimal effort.</p>
<p>(This isn't the only compromise that was made for client experience in windows forms. Abstract base class components can get hairy too.)</p>
<p>I'd suggest sticking with a parameterless constructor and working within the windows forms design principles. If there are real preconditions that your <code>UserControl</code> must enforce, encapsulate them in another class and then assign an instance of that class to your control via a property. This will give a bit better separation of concern as well.</p>
http://stackoverflow.com/questions/1784181/mac-look-n-feel-on-other-platforms/1784243#17842437Answer by Greg D for mac look n feel on other platforms?Greg D2009-11-23T16:23:24Z2009-11-23T16:23:24Z<p>In general, don't do this. Different platforms have different conventions, and your software should follow its platform's conventions to minimize the cognitive load of the user.</p>
<p>Unless, I guess, you're the only person who you ever expect to use it.</p>
http://stackoverflow.com/questions/1783771/where-do-you-put-global-variables-in-a-wpf-application/1783781#17837813Answer by Greg D for Where do you put global variables in a WPF application?Greg D2009-11-23T15:19:50Z2009-11-23T15:19:50Z<p>I consider the sort of global state that I <em>think</em> you're describing to be configuration information. Resultantly, I place it in the App.config file, generally through the project's properties' "Settings" tab.</p>
<p>This will expose your configuration information through <code><WhateverNamespace>.Properties.Settings</code> where it's easy to access in a typesafe manner.</p>
<p>If you're describing something else, such as mutable application state that isn't configuration information, I'd strongly suggest shifting your paradigm to a more client-application form where such global state is strongly frowned upon due to it's error-prone nature. IE, restructure your application model so that it doesn't depend on global data-- use parameters and objects instead.</p>
http://stackoverflow.com/questions/1782793/super-simple-example-for-a-delegate-event-in-c-net/1782908#17829083Answer by Greg D for Super simple example for a Delegate-Event in c#.net?Greg D2009-11-23T12:35:48Z2009-11-23T14:25:01Z<p>This is a simple implementation of a class that exposes an event.</p>
<pre><code>public class ChangeNotifier
{
private int num; // Local data
public ChangeNotifier(int number) { this.num = number; } // Ctor to assign data
public event EventHandler NumberChanged; // The event that can be subscribed to
public int Number
{
get { return this.num; }
set
{
if (this.num != value) // If the value has changed...
{
// Assign the new value to private storage
this.num = value;
// And fire the event
if (this.NumberChanged != null)
this.NumberChanged(this, EventArgs.Empty);
}
}
}
}
</code></pre>
<p>This class may be used something like as follows:</p>
<pre><code>public void SomeMethod()
{
ChangeNotifier notifier = new ChangeNotifier(10);
// Subscribe to the event and output the number when it fires.
notifier += (s, e) => Console.Writeline(Notifier.Number.ToString());
notifier.Number = 10; // Does nothing, this is the same value
notifier.Number = 20; // Outputs "20" because the event fires and the lambda runs.
}
</code></pre>
<p>Regarding control flow, execution flows into <code>SomeMethod()</code>. We create a new <code>ChangeNotifier</code> and thus call its constructor. This assigns the value of <code>10</code> to the private <code>num</code> member.</p>
<p>We then subscribe to the event using the <code>+=</code> syntax. This operator takes a delegate on the right hand side (in our case, that delegate is a lambda) and adds it to the collection of delegates on the event. This operation doesn't execute any code that we've written in the <code>ChangeNotifier</code>. It can be customized through the <code>add</code> and <code>remove</code> methods on the event if you'd like, but there's rarely a need to do that.</p>
<p>Then we perform a couple simple operations on the <code>Number</code> property. First we assign <code>10</code>, which runs the <code>set</code> method on the <code>Number</code> property with <code>value = 10</code>. But the <code>num</code> member is already valued at <code>10</code>, so the initial conditional evaluates to false and nothing happens.</p>
<p>Then we do the same thing with <code>20</code>. This time the value is different, so we assign the new value to <code>num</code> and fire the event. First we verify that the event is not null. It's null if nothing has subscribed to it. If it's not null (ie, if something <em>is</em> subscribed to it), we fire it using the standard method/delegate syntax. we simply call the event with the event's arguments. This will call all methods that have subscribed to the event, including our lambda that will perform a <code>Console.WriteLine()</code>.</p>
<p><hr></p>
<p>Henrik has successfully nitpicked the potential race condition that exists if one thread can be in <code>Number</code>'s setter while another thread is unsubscribing a listener. I don't consider that a common case for someone who doesn't yet understand how events work, but if you're concerned about that possibility, modify these lines:</p>
<pre><code>if (this.NumberChanged != null)
this.NumberChanged(this, EventArgs.Empty);
</code></pre>
<p>to be something like this:</p>
<pre><code>var tmp = this.NumberChanged;
if (tmp != null)
tmp(this, EventArgs.Empty);
</code></pre>
http://stackoverflow.com/questions/1778780/if-you-unlock-an-already-unlocked-mutex-is-the-behavior-undefined/1778807#17788071Answer by Greg D for If you unlock an already unlocked mutex, is the behavior undefined?Greg D2009-11-22T14:12:37Z2009-11-22T14:12:37Z<p>In general, for questions like this, the documentation is the best source of information. Different mutexes may behave differently, or there may be options on a single mutex which cause it to behave different (such as in the case of recursively acquiring a mutex on a single thread).</p>
http://stackoverflow.com/questions/1775023/opinion-wanted-intercepting-changes-to-lists-collections/1775283#17752832Answer by Greg D for Opinion wanted: Intercepting changes to lists/collectionsGreg D2009-11-21T11:51:56Z2009-11-21T12:37:23Z<p>I would suggest creating something that parallels the <code>ObservableCollection<T></code> where appropriate. Specifically, I would suggest following the existing techniques for notification of change of collection. Something like:</p>
<pre><code>class MyObservableCollection<T>
: INotifyPropertyChanging, // Already exists
INotifyPropertyChanged, // Already exists
INotifyCollectionChanging, // You'll have to create this (based on INotifyCollectionChanged)
INotifyCollectionChanged // Already exists
{ }
</code></pre>
<p>This will follow established patterns so that clients are already familiar with the exposed interfaces-- three of the interfaces already exist. The use of existing interfaces will also allow more proper interaction with other already existing .NET technologies, such as WPF (which binds against the <code>INotifyPropertyChanged</code> and <code>INotifyCollectionChanged</code> interfaces.)</p>
<p>I would expect the <code>INotifyCollectionChanged</code> interface to look something like:</p>
<pre><code>public interface INotifyCollectionChanged
{
event CollectionChangingEventHandler CollectionChanging;
}
public delegate void CollectionChangingEventHandler(
object source,
CollectionChangingEventArgs e
);
/// <remarks> This should parallel CollectionChangedEventArgs. the same
/// information should be passed to that event. </remarks>
public class CollectionChangingEventArgs : EventArgs
{
// appropriate .ctors here
public NotifyCollectionChangedAction Action { get; private set; }
public IList NewItems { get; private set; }
public int NewStartingIndex { get; private set; }
public IList OldItems { get; private set; }
public int OldStartingIndex { get; private set; }
}
</code></pre>
<p>If you wish to add cancellation support, simply add a writable <code>bool Cancel</code> property to <code>CollectionChangingEventArgs</code> that the collection will read to determine whether to execute the change that's about to occur.</p>
<p>I suppose this falls under your Option 2. This is the way to go because, to interoperate properly with other .net technologies that monitor changing collections, you're going to have to implement it anyway for <code>INotifyCollectionChanged</code>. This will definitely follow the policy of "Least Surprise" in your interface.</p>
http://stackoverflow.com/questions/1772192/is-listliststring-an-instance-of-collectioncollectiont/1772234#17722343Answer by Greg D for Is List<List<String>> an instance of Collection<Collection<T>>?Greg D2009-11-20T17:55:26Z2009-11-20T18:05:53Z<p>This is a specialized version of the more generalized question, "Is a <code>Collection<Circle></code> a kind of <code>Collection<Shape></code>?"</p>
<p>The answer is a (perhaps surprising) <em>no</em>.</p>
<p>The reasoning is well-stated in a C++ context at in the <a href="http://www.parashift.com/c++-faq-lite/proper-inheritance.html#faq-21.3" rel="nofollow">C++ FAQ</a>. This is a general OO question, so the same general reasoning applies.</p>
<p>For example, consider an alternate universe where a <code>Collection<Circle></code> <em>is</em> a kind-of <code>Collection<Shape></code>. In this universe, you could do something like this:</p>
<pre><code>Collection<Circle> circles = new Collection<Circle>();
Collection<Shape> shapes = circles; // OK, we're in an alternate universe
shapes.Add(new Circle()); // OK, we're adding a circle to a collection of circles
shapes.Add(new Square()); // Asplode! We just added a square to a collection of circles.
</code></pre>
<p>What happens when the Square, a Shape, is added to the collection of shapes, which is really a collection of circles? There's no <em>good</em> answer. </p>
<p>The same reasoning applies to a <code>Collection<List<T>></code> and a <code>Collection<Collection<T>></code>. A <code>Collection<List<T>></code> is not a kind-of <code>Collection<Collection<T>></code> because it isn't <a href="http://en.wikipedia.org/wiki/Liskov%5Fsubstitution%5Fprinciple" rel="nofollow">substitutable</a> for a <code>Collection<Collection<T>></code>. A <code>Queue<T></code> can be added to a collection of collections, but it cannot be added to a collection of <code>List<T></code>.</p>
http://stackoverflow.com/questions/1533190/is-there-a-production-grade-simpledb-net-library/1760243#17602430Answer by Greg D for Is there a production grade SimpleDB .NET library?Greg D2009-11-19T00:58:15Z2009-11-19T00:58:15Z<p>Amazon just recently released the <a href="http://aws.amazon.com/sdkfornet/" rel="nofollow">AWS SDK for .NET</a>. It's a step up from their prior offerings as far as I've seen (though I'm admittedly <em>very</em> new to the AWS thus far.)</p>
http://stackoverflow.com/questions/1755624/request-for-comments-on-huffman-compression/1755733#17557333Answer by Greg D for Request for comments on Huffman compressionGreg D2009-11-18T12:46:44Z2009-11-18T12:52:41Z<p>That is correct, but it isn't as amazing as it sounds.</p>
<p>There are two pieces of data that must be transferred to decode a huffman-encoded byte stream. The encoded stream (of course) is required, but so is the dictionary that will allow you to properly build your huffman tree to perform the decoding. </p>
<p>Using larger tokens to encode your data will always result in a smaller encoded stream. Unfortunately, unless you have data with some pretty specific and special characteristics, larger tokens will also cause your dictionary size to increase surprisingly. The degenerate case (referred to by Mark Byers' answer) would result in the entire, uncompressed data stream being a single token and the encoded stream being a single bit, resulting in absolutely no compression.</p>
<p>Thus, Huffman coding (like almost everything) is an exercise in tradeoffs. Striking a balance between efficiency of the encoded file and the size of the dictionary can be tricky. I've never performed the actual analysis based on data characteristics to find out what various ideal token sizes might be, but I think bytes tend to be used because it's a simple point to divide on and will generally result in some real compression. I know back in college I did it once as an exercise with four byte tokens, but I couldn't honestly say that it was somehow better than one byte tokens.</p>
<p>Of course, it's also possible to cheat and, instead of building the dictionary dynamically to get genuinely greedy compression, you can use a pre-built tree and compress with that. You'd then avoid transmitting the dictionary, but the decoder would also have to have the same dictionary to decode the data.</p>
http://stackoverflow.com/questions/1751054/high-level-multithreading-concurrency-abstractions-for-net/1751071#17510713Answer by Greg D for High-level multithreading/concurrency abstractions for .NETGreg D2009-11-17T19:10:22Z2009-11-17T19:20:53Z<p>There's active and ongoing research into the best and most effective abstractions that can be used to enable concurrent software without mastering the minutiae b/c most dev's either don't have the time or inclination to develop their skills to that level.</p>
<p>Given this, the BCL has a fairly high barrier to entry for new concepts, but that doesn't mean that they aren't happening. Most recently, in .Net 4, there will be the introduction of the <a href="http://msdn.microsoft.com/en-us/library/dd460717%28VS.100%29.aspx" rel="nofollow">Task Parallel Library</a>. Earlier versions of the TPL actually <a href="http://msdn.microsoft.com/en-us/library/cc983823.aspx" rel="nofollow">included a <code>Future<T></code> type</a> that has since been supplanted by <a href="http://msdn.microsoft.com/en-us/library/dd321424%28VS.100%29.aspx" rel="nofollow">newer</a> <a href="http://msdn.microsoft.com/en-us/library/dd449174%28VS.100%29.aspx" rel="nofollow">abstractions</a>.</p>
<p>There's also active research going on in the arena of channels/etc via the research language <a href="http://msdn.microsoft.com/en-us/devlabs/dd795202.aspx" rel="nofollow">Axum</a>.</p>
<p>I'm obviously not part of the team and I don't work for Microsoft, but my understanding is that there's a desire to innovate in this area beyond what's already widely available.</p>
http://stackoverflow.com/questions/1748719/c-anonymous-delegate/1748753#17487531Answer by Greg D for C# - Anonymous delegateGreg D2009-11-17T13:07:27Z2009-11-17T13:07:27Z<p>That's correct, you have assigned a number of anonymous methods to an event.</p>
<p>If you're using a newer version of c#, you can also do something similar with lambdas. for example:</p>
<pre><code>class DelegateTest
{
public event Action del;
public void Chaining()
{
del += () => Console.WriteLine("Hello World");
del += () => Console.WriteLine("Good Things");
del += () => Console.WriteLine("Wonderful World");
del();
}
}
</code></pre>
http://stackoverflow.com/questions/1744429/loop-through-controls-in-tabcontrol/1744504#17445046Answer by Greg D for Loop through controls in TabControlGreg D2009-11-16T20:00:24Z2009-11-16T20:00:24Z<p>I feel it's important to note that, in general, you should take a more structured approach to your application. E.g., instead of having all the controls on three tab pages, include exactly one UserControl on each tabpage. A <code>CarUserControl</code>, <code>PetUserControl</code>, and <code>AdminUserControl</code> e.g. Then each user control knows how to create the proper respective data structure so you don't have to manually munge it all together at the same level of abstraction using inter-tab loops and whatnot.</p>
<p>Such a separation of concerns will make it much easier to reason about your program and is good practice for writing maintainable code for your future career.</p>
http://stackoverflow.com/questions/1658127/whats-the-best-way-to-save-data-locally-in-a-wpf-application/1658203#16582032Answer by Greg D for What's the best way to save data locally in a WPF Application?Greg D2009-11-01T20:15:27Z2009-11-01T20:15:27Z<p>I'd suggest picking the easiest datasource possible and decoupling it appropriately so that you can drop in a new, different datasource at a later time when you figure out what's appropriate for your purposes. To that end, you may find something like XML or even plaintext to be the simplest thing that could possibly work.</p>
<p>Once you determine the characteristics that you'll need from your datasource, based on your actual usage, choose the appropriate backing store.</p>
<p>I don't think it's critical to make this decision up front because this is a personal project, not a commercial one.</p>
http://stackoverflow.com/questions/1654757/changing-the-property-of-a-control-on-another-form/1654772#16547720Answer by Greg D for Changing the property of a control on another form.Greg D2009-10-31T15:52:38Z2009-10-31T15:52:38Z<p>Apply the property change to the form that already exists and is already shown instead of creating a new form and changing that one.</p>
http://stackoverflow.com/questions/1654304/is-visual-studio-2010-beta-2-usable/1654359#16543591Answer by Greg D for Is Visual Studio 2010 Beta 2 usable?Greg D2009-10-31T13:16:47Z2009-10-31T13:16:47Z<p>I've been using Beta 2 for my personal projects since it came out, and it's been a massive improvement over Beta 1. I wouldn't suggest using it for production code (of course, it's a beta), but the improvements over Beta 1's performance and stability are too extensive to list.</p>
<p>I did notice one MS blog mention that there are apparently some lingering issues with performance linked to WPF and drivers that do not properly support pixel shader 2.0.</p>
http://stackoverflow.com/questions/1649429/is-there-any-mistake-in-this-java-code/1649510#16495107Answer by Greg D for Is there any mistake in this Java code?Greg D2009-10-30T12:26:01Z2009-10-30T12:36:44Z<p>As written, it will work, as you discovered. I suspect that there's a fundamental misunderstanding at play, though.</p>
<p>My psychic powers tell me that your instructor expected code more like the following:</p>
<pre><code>class Creature {
private int yearOfBirth=10;
public void setYearOfBirth(int year) {
yearOfBirth = year;
}
public void setYearOfBirth(Creature other) {
yearOfBirth = other.yearOfBirth;
}
public int getYearOfBirth() {
return yearOfBirth;
}
}
class Program {
public static void main(String args[]) {
Creature c = new Creature();
c.setYearOfBirth(89);
Creature d = new Creature();
c.setYearOfBirth(d);
System.out.println(c.yearOfBirth); // This will not compile
}
}
</code></pre>
<p>The misunderstanding is that you've only created one class-- your main application class. This effectively makes <code>yearOfBirth</code> a sort of hybrid global value that you can access from your main method. In more typical designs, <code>Creature</code> is a class that is completely independent of your main method. In that case, you must only access <code>Creature</code> through its <code>public</code> interface. You would not be able to access its private field directly.</p>
<p><hr /></p>
<p><em>(Note to any pedants out there: Yes, I know I'm simplifying.)</em></p>
http://stackoverflow.com/questions/1643820/why-no-warning-with-if-x-when-x-undefined/1643871#16438711Answer by Greg D for Why no warning with "#if X" when X undefined?Greg D2009-10-29T13:47:22Z2009-10-29T13:47:22Z<p>The compiler didn't generate a warning because this is a preprocessor directive. It's evaluated and resolved before the compiler sees it.</p>
http://stackoverflow.com/questions/1935949/throws-statement-in-c-or-net/1935967#1935967Comment by Greg D on Throws statement in C# or .NETGreg D2009-12-20T14:27:57Z2009-12-20T14:27:57Z+1 (But please summarize the articles)http://stackoverflow.com/questions/1934961/why-does-copy-constructor-call-other-class-default-constructor/1934976#1934976Comment by Greg D on Why does copy constructor call other class' default constructor?Greg D2009-12-20T05:45:26Z2009-12-20T05:45:26Z+1 for correct answer.http://stackoverflow.com/questions/1934772/what-are-the-disadvantages-of-using-visual-basic-6/1934780#1934780Comment by Greg D on what are the disadvantages of using Visual Basic 6 ?Greg D2009-12-20T05:36:20Z2009-12-20T05:36:20ZYES YES YES! Don't use VB6! This alone should suffice as the first and last reason to not use it. Throw in the relatively crummy libraries compared to .Net and the clumsier, less expressive syntax, and I can't come up with a single <i>good</i> reason to <i>use</i> VB6.http://stackoverflow.com/questions/1924230/running-legacy-non-reentrant-code-on-a-background-thread-in-netComment by Greg D on Running Legacy, Non-Reentrant Code on a Background Thread in .NETGreg D2009-12-17T20:42:41Z2009-12-17T20:42:41ZI'm not saying that posting your work to a window is the most effective way to do what you're trying to do. I was trying to provide the most immediately obvious example of a widely used, effective, and well-known work queue that I could think of because you asked for an example. :)http://stackoverflow.com/questions/1924230/running-legacy-non-reentrant-code-on-a-background-thread-in-netComment by Greg D on Running Legacy, Non-Reentrant Code on a Background Thread in .NETGreg D2009-12-17T20:38:09Z2009-12-17T20:38:09Z Control.Invoke.http://stackoverflow.com/questions/1924230/running-legacy-non-reentrant-code-on-a-background-thread-in-net/1924256#1924256Comment by Greg D on Running Legacy, Non-Reentrant Code on a Background Thread in .NETGreg D2009-12-17T20:36:05Z2009-12-17T20:36:05Z@Groky: I believe your use case, I was just trying to explain why I was skeptical as to its necessity until you explained it. :) You don't appear to be familiar with the concepts of a work or message queue because you called it a thread pool with one thread.http://stackoverflow.com/questions/1924230/running-legacy-non-reentrant-code-on-a-background-thread-in-netComment by Greg D on Running Legacy, Non-Reentrant Code on a Background Thread in .NETGreg D2009-12-17T20:32:40Z2009-12-17T20:32:40Z@Groky: I can't think of a more serious, applicable, or widely used work queue than the windows message queue.http://stackoverflow.com/questions/1924230/running-legacy-non-reentrant-code-on-a-background-thread-in-net/1924256#1924256Comment by Greg D on Running Legacy, Non-Reentrant Code on a Background Thread in .NETGreg D2009-12-17T20:27:03Z2009-12-17T20:27:03ZSorry, Groky. Questions like this raise red flags because they usually indicate somebody hasn't asked the right question. If you have an unusual requirement, it's generally a good idea to explain why in the question to curb such suggestions. From my perspective, e.g., I see someone who doesn't appear to be familiar with the concepts of a work or message queue (pretty fundamental real-world concepts), and so I must naturally infer the more common root cause of the question.http://stackoverflow.com/questions/1924230/running-legacy-non-reentrant-code-on-a-background-thread-in-netComment by Greg D on Running Legacy, Non-Reentrant Code on a Background Thread in .NETGreg D2009-12-17T20:23:35Z2009-12-17T20:23:35Z@Groky: The windows message queue.http://stackoverflow.com/questions/1924230/running-legacy-non-reentrant-code-on-a-background-thread-in-net/1924256#1924256Comment by Greg D on Running Legacy, Non-Reentrant Code on a Background Thread in .NETGreg D2009-12-17T20:22:22Z2009-12-17T20:22:22ZWhy does your app crash with a threadpool? Do the jobs touch the UI? If so, consider using the appropriate marshalling techniques (<code>Control.Invoke</code> or <code>SynchronizationContext</code>) to properly execute tasks on the correct thread.http://stackoverflow.com/questions/1924230/running-legacy-non-reentrant-code-on-a-background-thread-in-netComment by Greg D on Running Legacy, Non-Reentrant Code on a Background Thread in .NETGreg D2009-12-17T20:20:11Z2009-12-17T20:20:11ZA "Threadpool that runs on a single thread" isn't a thread pool. It's a work queue. Consider the windows message queue as an example. This really feels like reinventing the wheel.http://stackoverflow.com/questions/1902095/regex-for-string-enclosed-in-c/1902119#1902119Comment by Greg D on Regex for string enclosed in <*>, C#Greg D2009-12-14T17:23:32Z2009-12-14T17:23:32Z+1 for link to the one and only answer to this question.http://stackoverflow.com/questions/1894690/c-set-path-to-pdb/1894893#1894893Comment by Greg D on C# - Set path to pdbGreg D2009-12-13T03:52:00Z2009-12-13T03:52:00Z@Metal: I feel a little weird having to say this, but C# isn't C++. (Thanks for not referring to MS with a $ in this comment.)http://stackoverflow.com/questions/1894690/c-set-path-to-pdbComment by Greg D on C# - Set path to pdbGreg D2009-12-12T21:04:20Z2009-12-12T21:04:20ZIs there an actual reason you want to put the .pdb's elsewhere, or is it just due to the habit? If it's habit, I'd suggest breaking it simply to get along with the vast majority of the world of managed developers. :)http://stackoverflow.com/questions/1889742/visual-studio-2008-stops-responding-frequently-during-edit-and-saveComment by Greg D on Visual studio 2008 stops responding frequently during edit and saveGreg D2009-12-11T17:53:59Z2009-12-11T17:53:59ZThis question is not programming related and should probably be asked on superuser instead.