User Trap - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T01:47:28Zhttp://stackoverflow.com/feeds/user/7839http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/597077/is-learning-vim-worth-the-effort37Is learning VIM worth the effort?Trap2009-02-27T23:27:07Z2009-11-23T17:28:23Z
<p>As a programmer I spend a lot of hours at the keyboard and I've been doing it for the last 12 years more or less. If there's something I've never gotten used to during all this time is these annoying and almost unconscious constant micro-interruptions I experience while coding, due to some of the most common code editing tasks. Things like a simple copy & paste from a different line (or even the same line), or moving 1 or 2 lines up or down from the current position requires too much typing or involves the use of the arrow keys, and it gets worse when I want to move further, I end up using the mouse. Now imagine this same scenario but on a laptop.</p>
<p>I've always considered to learn VIM but the amount of time needed to master it has always made me to step back.</p>
<p>I'd like to hear from people who has learned it and if it ends up being one of those things you cannot live without.</p>
<p>Edit:</p>
<p>At work I use VS2008, C# and R#, which together make editing code a lot faster and easier than ever, but even so I think I could enjoy not having to use the mouse at all.</p>
<p>Edit:</p>
<p>And not even the arrow keys.</p>
http://stackoverflow.com/questions/1176726/connecting-thousands-of-clients-to-a-jabber-server-through-a-single-connection3Connecting thousands of clients to a Jabber server through a single connectionTrap2009-07-24T09:56:46Z2009-11-23T16:47:19Z
<p>We are using Openfire (Jabber) to enable chat and presence capabilities to our MMORPG. In our server architecture clients only open a single connection with the game server, and upon login, the game server creates a new connection to Jabber for this new client.</p>
<p>The problem is, we don't want to open a new connection to Jabber for every client that logs in, we like it better if our game server acted as a connection manager and talked to the Jabber server through a single connection, yet being able to manage hundreds of thousands of 'logical' clients.</p>
<p>Is this possible?</p>
<p>Any links or info on this matter would be very much appreciated. Thanks.</p>
http://stackoverflow.com/questions/1769575/how-to-share-constant-values-in-net-namespaces/1769609#17696090Answer by Trap for How to share constant values in .net namespaces?Trap2009-11-20T10:30:13Z2009-11-20T10:30:13Z<p>You cannot declare constants inside namespaces. You need to define a container to put your consts into, like a class, struct or enum.</p>
<pre><code>public static class MyConstants
{
public const float ConstantValue1 = 0;
}
</code></pre>
<p>and refer to them like this:</p>
<pre><code>float value = MyConstants.ConstantValue1 ;
</code></pre>
http://stackoverflow.com/questions/1763926/adding-functionality-by-adding-new-interfaces-instead-of-extending-existing-ones0Adding functionality by adding new interfaces instead of extending existing onesTrap2009-11-19T15:05:41Z2009-11-19T15:35:59Z
<p>I need to add some new functionality to an existing interface. There are already a lot of classes in the project implementing it but a few of them wouldn't need the new set of features. My first approach was to just add the new functions to the existing interface and implementing it everywhere, adding do-nothing functions where applicable and the such. But now I wonder if there's a better way to do this. </p>
<p>As an example:</p>
<pre><code>// Everything able to produce a waveform must implement this interface.
interface IWaveformResource
{
int Collect( Stream _target, int _sampleCount );
}
// A waveform stored in a file
class FileWaveform : IWaveformResource
{
public int Collect( Stream _target, int _sampleCount )
{
// ...
}
}
// A sine waveform.
class SineWaveform : IWaveformResource
{
public int Collect( Stream _target, int _sampleCount )
{
// ...
}
}
// Added feature, we want to be able to specify the read position
interface IWaveformResource
{
int Collect( Stream _target, int _sampleCount );
int ReadOffset { get; set; }
}
class FileWaveform : IWaveformResource
{
public int Collect( Stream _target, int _sampleCount )
{
// ...
}
// Moves the associated file pointer accordingly.
int ReadOffset { get; set; }
}
class SineWaveform : IWaveformResource
{
public int Collect( Stream _target, int _sampleCount )
{
// ...
}
// There's no point in setting or retrieving a sine wave's read position.
int ReadOffset { get; set; }
}
</code></pre>
<p>Another option would be to create a new interface which will only be implemented by positionable waveform streams, eg. FileWaveform :</p>
<pre><code>interface IPositionableWaveform
{
int ReadOffset { get; set; }
}
// A waveform stored in a file
class FileWaveform : IWaveformResource, IPositionableWaveform
{
public int Collect( Stream _target, int _sampleCount )
{
// ...
}
}
</code></pre>
<p>and use it like this:</p>
<pre><code>private List<IWaveformResource> mResources;
public int ReadOffset
{
set
{
foreach( IWaveformResource resource in mResources )
{
if( resource is IPositionableWaveform )
{
((IPositionableWaveform)resource).ReadOffset = value;
}
}
}
}
</code></pre>
<p>Note that in this approach I'm not forcing a IPositionableWaveform to be also a IWaveformResource.</p>
<p>I would like to know if there's a more elegant solution than this, thanks in advance.</p>
http://stackoverflow.com/questions/236439/is-it-correct-to-compare-two-rounded-floating-point-numbers-using-the-operator6Is it correct to compare two rounded floating point numbers using the == operator?Trap2008-10-25T13:54:35Z2009-10-28T12:32:15Z
<p>Or is there a chance that the operation will fail?</p>
<p>Thanks.</p>
<p>I chose the wrong term and what I really meant was rounding to 0, not truncation.</p>
<p>The point is, I need to compare the integer part of two doubles and I'm just casting them to int and then using ==, but, as someone pointed out in one of my earlier questions, this could throw an overflow exception if the double can't fit into the integer.</p>
<p>So the question would be 'Is it correct to use the == operator to compare two doubles that have previously been rounded to 0, or should I stick to the casting to int method and catch a possible exception?</p>
http://stackoverflow.com/questions/1552086/concurrency-issues-while-accessing-data-via-reflection-in-c1Concurrency issues while accessing data via reflection in C#Trap2009-10-11T23:33:15Z2009-10-12T05:52:18Z
<p>I'm currently writing a library that can be used to show the internal state of some running code (mainly fields and properties both public and private). Objects are accessed in a different thread to put their info into a window for the user to see. The problem is, there are times while I'm walking a long IList in which its structure may change. Some piece of code in the program being 'watched' may add a new item, or even worse, remove some. This of course causes the whole thing to crash.</p>
<p>I've come up with some ideas but I'm afraid they're not quite correct:</p>
<ol>
<li><p>Locking the list being accessed while I'm walking it. I'm not sure if this would work since the IList being used may have not been locked for writing at the other side.</p></li>
<li><p>Let the code being watched to be aware of my existence and provide some interfaces to allow for synchronization. (I'd really like it to be totally transparent though).</p></li>
<li><p>As a last resort, put every read access into a try/catch block and pretend as if nothing happened when it throws. (Can't think of an uglier solution that actually works).</p></li>
</ol>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/138361/how-much-faster-is-c-than-c22How much faster is C++ than C#?Trap2008-09-26T08:57:46Z2009-10-09T13:40:22Z
<p>Or is it now the other way around?</p>
<p>From what I've heard there are some areas in which C# proves to be faster than C++, but I've never had the guts to test it by myself.</p>
<p>Thought any of you could explain these differences in detail or point me to the right place for information on this.</p>
http://stackoverflow.com/questions/1517743/in-wpf-how-can-i-determine-whether-a-control-is-visible-to-the-user0In WPF, how can I determine whether a control is visible to the user?Trap2009-10-04T23:55:51Z2009-10-05T00:40:18Z
<p>I'm displaying a very big tree with a lot of items in it. Each of these items shows information to the user through its associated UserControl control, and this information has to be updated every 250 milliseconds, which can be a very expensive task since I'm also using reflection to access to some of their values. My first approach was to use the IsVisible property, but it doesn't work as I expected.</p>
<p>Is there any way I could determine whether a control is 'visible' to the user? </p>
<p>Note: I'm already using the IsExpanded property to skip updating collapsed nodes, but some nodes have 100+ elements and can't find a way to skip those which are outside the grid viewport.</p>
http://stackoverflow.com/questions/522238/is-there-a-case-where-parameter-validation-may-be-considered-redundant3Is there a case where parameter validation may be considered redundant?Trap2009-02-06T21:25:57Z2009-09-11T20:36:18Z
<p>The first thing I do in a public method is to validate every single parameter before they get any chance to get used, passed around or referenced, and then throw an exception if any of them violate the contract. I've found this to be a very good practice as it lets you catch the offender the moment the infraction is committed but then, quite often I write a very simple getter/indexer such as this:</p>
<pre><code>private List<Item> m_items = ...;
public Item GetItemByIdx( int idx )
{
if( (idx < 0) || (idx >= m_items.Count) )
{
throw new ArgumentOutOfRangeException( "idx", "Invalid index" );
}
return m_items[ idx ];
}
</code></pre>
<p>In this case the index parameter directly relates to the indexes in the list, and I know for a fact (e.g. documentation) that the list itself will do exactly the same and will throw the same exception. Should I remove this verification or I better leave it alone?</p>
<p>I wanted to know what you guys think, as I'm now in the middle of refactoring a big project and I've found many cases like the above.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1223624/is-it-really-necessary-to-include-a-text-description-when-throwing-a-exception0Is it really necessary to include a text description when throwing a exception?Trap2009-08-03T17:38:59Z2009-08-03T17:44:29Z
<p>As when using any other class or third party libraries, one would expect exceptions to be documented as well, so I've always found somewhat redundant to add text descriptions to them. Are they really necessary?</p>
<p>What are your thoughts? Thanks in advance.</p>
http://stackoverflow.com/questions/1167589/anti-if-campaign/1167650#11676502Answer by Trap for anti-if campaignTrap2009-07-22T19:30:26Z2009-07-22T19:30:26Z<p>It depends on how you handle the situation. If you called a different function using the same signature, you could have a dictionary where the key would be the type and the value a delegate pointing to the real handler. Thus you can get rid of the switch and just do </p>
<pre><code>_myDictionary[ _myType ]( param1, ... );
</code></pre>
http://stackoverflow.com/questions/1165203/c-library-for-easy-dynamic-reflection/1165241#11652412Answer by Trap for C# Library for easy dynamic reflectionTrap2009-07-22T13:30:05Z2009-07-22T13:39:14Z<p>In my opinion I don't think reflection could get any easier to use than it is now. Almost all of the core functionality is wrapped up within the Type class. Just take your time to learn about how it works and you won't need another unnecessary layer on top of it.</p>
<p>Specifically, you can do 'complex things' as creating unitialized objects like this:</p>
<pre><code>// Instantiates an uninitialized object of the specified type.
var newObject = (MyObject)FormatterServices.GetUninitializedObject( elementType );
</code></pre>
http://stackoverflow.com/questions/1132077/should-a-programmer-really-care-about-how-many-and-or-how-often-objects-are-creat11Should a programmer really care about how many and/or how often objects are created in .NET?Trap2009-07-15T15:19:52Z2009-07-15T15:51:50Z
<p>This question has been puzzling me for a long time now. I come from a heavy and long C++ background, and since I started programming in C# and dealing with garbage collection I always had the feeling that such 'magic' would come at a cost. </p>
<p>I recently started working in a big MMO project written in Java (server side). My main task is to optimize memory comsumption and CPU usage. Hundreds of thousands of messages per second are being sent and the same amount of objects are created as well. After a lot of profiling we discovered that the VM garbage collector was eating a lot of CPU time (due to constant collections) and decided to try to minimize object creation, using pools where applicable and reusing everything we can. This has proven to be a really good optimization so far.</p>
<p>So, from what I've learned, having a garbage collector is awesome, but you can't just pretend it does not exist, and you still need to take care about object creation and what it implies (at least in Java and a big application like this).</p>
<p>So, is this also true for .NET? if it is, to what extent?</p>
<p>I often write pairs of functions like these:</p>
<pre><code>// Combines two envelopes and the result is stored in a new envelope.
public static Envelope Combine( Envelope a, Envelope b )
{
var envelope = new Envelope( _a.Length, 0, 1, 1 );
Combine( _a, _b, _operation, envelope );
return envelope;
}
// Combines two envelopes and the result is 'written' to the specified envelope
public static void Combine( Envelope a, Envelope b, Envelope result )
{
result.Clear();
...
}
</code></pre>
<p>A second function is provided in case someone has an already made Envelope that may be reused to store the result, but I find this a little odd.</p>
<p>I also sometimes write structs when I'd rather use classes, just because I know there'll be tens of thousands of instances being constantly created and disposed, and this feels really odd to me.</p>
<p>I know that as a .NET developer I shouldn't be worrying about this kind of issues, but my experience with Java and common sense tells me that I should.</p>
<p>Any light and thoughts on this matter would be much appreciated. Thanks in advance.</p>
http://stackoverflow.com/questions/1052525/need-help-naming-a-class-which-represents-a-value-and-its-linear-variation3Need help naming a class which represents a value and its linear variation.Trap2009-06-27T09:55:50Z2009-06-27T10:46:01Z
<p>While doing some refactoring I've found that I'm quite often using a pair or floats to represent an initial value and how much this value linearly varies over time. I want to create a struct to hold both fields but I just can't find the right name for it.</p>
<p>It should look something like this:</p>
<pre><code>struct XXX
{
float Value;
float Slope; // or Delta? or Variation?
}
</code></pre>
<p>Any suggestions will be much appreciated.</p>
http://stackoverflow.com/questions/158889/are-doubles-faster-than-floats-in-c7Are doubles faster than floats in c#?Trap2008-10-01T17:58:46Z2009-06-26T12:21:07Z
<p>I'm writing an application which reads large arrays of floats and performs some simple operations with them. I'm using floats because I thought it'd be faster than doubles, but after doing some research I've found that there's some confusion about this topic. Can anyone elaborate on this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/999020/why-iterator-methods-cant-take-either-ref-or-out-parameters4why iterator methods can't take either 'ref' or 'out' parameters?Trap2009-06-15T23:48:05Z2009-06-17T08:20:05Z
<p>I tried this earlier today:</p>
<pre><code>public interface IFoo
{
IEnumerable<int> GetItems_A( ref int somethingElse );
IEnumerable<int> GetItems_B( ref int somethingElse );
}
public class Bar : IFoo
{
public IEnumerable<int> GetItems_A( ref int somethingElse )
{
// Ok...
}
public IEnumerable<int> GetItems_B( ref int somethingElse )
{
yield return 7; // CS1623: Iterators cannot have ref or out parameters
}
}
</code></pre>
<p>What's the rationale behind this? Thanks in advance.</p>
http://stackoverflow.com/questions/118633/whats-so-wrong-about-using-gc-collect16What's so wrong about using GC.Collect()?Trap2008-09-23T01:30:12Z2009-06-02T21:34:01Z
<p>Although I do understand the serious implications of playing with this function (or at least that's what I think), I fail to see why it's becoming one of these things that respectable programmers wouldn't ever use, even those who don't even know what it is for.</p>
<p>Let's say I'm developing an application where memory usage varies extremely depending on what the user is doing. The application life cycle can be divided into two main stages: editing and real-time processing. During the editing stage, suppose that billions or even trillions of objects are created; some of them small and some of them not, some may have finalizers and some may not, and suppose their lifetimes vary from a very few milliseconds to long hours. Next, the user decides to switch to the real-time stage. At this point, suppose that performance plays a fundamental role and the slightest alteration in the program's flow could bring catastrophic consequences. Object creation is then reduced to the minimum possible by using object pools and the such but then, the GC chimes in unexpectedly and throws it all away, and someone dies.</p>
<p>The question: In this case, wouldn't it be wise to call GC.Collect() before entering the second stage?</p>
<p>After all, these two stages never overlap in time with each other and all the optimization and statistics the GC could have gathered would be of little use here...</p>
<p>Note: As some of you have pointed out, .NET might not be the best platform for an application like this, but that's beyond the scope of this question. The intent is to clarify whether a GC.Collect() call can improve an application's overall behaviour/performance or not. We all agree that the circumstances under which you would do such a thing are extremely rare but then again, the GC tries to guess and does it perfectly well most of the time, but it's still about guessing.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/921118/c-winforms-refreshing-a-portion-of-a-gui-containing-1-or-more-controls/921183#9211831Answer by Trap for c# Winforms: Refreshing a portion of a GUI (containing 1 or more controls)Trap2009-05-28T14:38:02Z2009-05-28T14:38:02Z<p>Why don't you keep track of your transparent controls and paint them after all the other controls are drawn?. Painting anything at the top of the Z-order shouldn't cause the other controls to be repainted.</p>
http://stackoverflow.com/questions/697249/why-1-0f-0-0000000171785715f-returns-1f1Why 1.0f + 0.0000000171785715f returns 1f ?Trap2009-03-30T13:41:25Z2009-05-21T08:18:49Z
<p>After one hour of trying to find a bug in my code I've finally found the reason. I was trying to add a very small float to 1f, but nothing was happening. While trying to figure out why I found that adding that small float to 0f worked perfectly.</p>
<p>Why is this happening?
Does this have to do with 'orders of magnitude'?
Is there any workaround to this problem?</p>
<p>Thanks in advance.</p>
<p>Edit:</p>
<p>Changing to double precision or decimal is not an option at the moment.</p>
http://stackoverflow.com/questions/862846/why-in-this-example-using-floats-makes-me-go-2x-slower-than-with-doubles2Why in this example using floats makes me go 2x slower than with doubles?Trap2009-05-14T11:35:53Z2009-05-15T06:49:54Z
<p>I've been doing some profiling lately and I've encountered one case which is driving me nuts. The following is a piece of unsafe C# code which basically copies a source sample buffer to a target buffer with a different sample rate. As it is now, it takes up ~0.17% of the total processing time per frame. What I don't get is that if I use floats instead of doubles, the processing time will raise to 0.38%. Could someone please explain what's going on here?</p>
<p><b>Fast version (~17%)</b></p>
<pre><code>double rateIncr = ...
double readOffset = ...
double offsetIncr = ...
float v = ... // volume
// Source and target buffers.
float* src = ...
float* tgt = ...
for( var c = 0; c < chunkCount; ++c)
{
for( var s = 0; s < chunkSampleSize; ++s )
{
// Source sample
var iReadOffset = (int)readOffset;
// Interpolate factor
var k = (float)readOffset - iReadOffset;
// Linearly interpolate 2 contiguous samples and write result to target.
*tgt++ += (src[ iReadOffset ] * (1f - k) + src[ iReadOffset + 1 ] * k) * v;
// Increment source offset.
readOffset += offsetIncr;
}
// Increment sample rate
offsetIncr += rateIncr;
}
</code></pre>
<p><b>Slow version (~38%)</b></p>
<pre><code>float rateIncr = ...
float readOffset = ...
float offsetIncr = ...
float v = ... // volume
// Source and target buffers.
float* src = ...
float* tgt = ...
for( var c = 0; c < chunkCount; ++c)
{
for( var s = 0; s < chunkSampleSize; ++s )
{
var iReadOffset = (int)readOffset;
// The cast to float is removed
var k = readOffset - iReadOffset;
*tgt++ += (src[ iReadOffset ] * (1f - k) + src[ iReadOffset + 1 ] * k) * v;
readOffset += offsetIncr;
}
offsetIncr += rateIncr;
}
</code></pre>
<p><b>Odd version(~22%)</b></p>
<pre><code>float rateIncr = ...
float readOffset = ...
float offsetIncr = ...
float v = ... // volume
// Source and target buffers.
float* src = ...
float* tgt = ...
for( var c = 0; c < chunkCount; ++c)
{
for( var s = 0; s < chunkSampleSize; ++s )
{
var iReadOffset = (int)readOffset;
var k = readOffset - iReadOffset;
// By just placing this test it goes down from 38% to 22%,
// and the condition is NEVER met.
if( (k != 0) && Math.Abs( k ) < 1e-38 )
{
Console.WriteLine( "Denormalized float?" );
}
*tgt++ += (src[ iReadOffset ] * (1f - k) + src[ iReadOffset + 1 ] * k) * v;
readOffset += offsetIncr;
}
offsetIncr += rateIncr;
}
</code></pre>
<p>All I know by now is that I know nothing</p>
http://stackoverflow.com/questions/853219/how-to-name-a-struct-that-represents-both-a-size-and-a-position2How to name a struct that represents both a size and a position?Trap2009-05-12T14:58:42Z2009-05-12T21:51:26Z
<p>I have a structure named WaveSize to represent both an amount of samples or an amount of time, but I'm also using this structure to represent a position or an offset within a wave.</p>
<p>While it's pretty common to represent both sizes and positions within a coordinate system with a Vector2d type, I'm unable to find a good name abstract enough to represent wave lengths and wave positions/offsets.</p>
<p>I find odd to see something like:</p>
<pre><code>public WaveSize Size { get; }
public WaveSize Offset { get; }
</code></pre>
<p>I'd rather come up with a good name than creating empty classes or using 'using'.</p>
<p>Any suggestions will be much appreciated. Thanks in advance.</p>
<p>EDIT: As Reed Copsey & Marc Gravel suggested it makes a lot of sense to have two different classes since they are two different concepts, so, any similarities in code should be seen as mere coincidences.</p>
http://stackoverflow.com/questions/847229/c-code-reuse-classes-and-libraries/847244#8472446Answer by Trap for C++ : Code reuse, classes and librariesTrap2009-05-11T08:49:54Z2009-05-11T08:49:54Z<p>As far as I know you must include every file you want in your project. VS doesn't do that automatically for you. On the other hand, why don't you just create a static library so you just need to only include that one and the .h? You could pack all of your related classes Class1, Class2, etc. into a single .lib or .dll and include these whenever you need this functionality.</p>
http://stackoverflow.com/questions/767854/how-do-i-position-an-element-within-a-wpf-grid-column0How do I position an element within a WPF Grid column?Trap2009-04-20T11:16:06Z2009-04-20T11:31:49Z
<p>Let's say I want to position an element at the coordinates x=20, y=5 within the 3rd column of a Grid control. How do I do this? Do I need to add a Canvas panel to the column and then add the controls to it?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/751186/forcing-the-net-jit-compiler-to-generate-the-most-optimized-code-during-applicat1Forcing the .NET JIT compiler to generate the most optimized code during application start-upTrap2009-04-15T11:06:50Z2009-04-15T23:07:12Z
<p>I'm writing a DSP application in C# (basically a multitrack editor). I've been profiling it for quite some time on different machines and I've noticed some 'curious' things. </p>
<p>On my home machine, the first run of the playback loop takes up about 50%-60% of the available time, (I assume it's due to the JIT doing its job), then for the subsequent loops it goes down to a steady 5% consumption. The problem is, if I run the application on a slower computer, the first run takes up more than the available time, causing the playback to get interrupted and messing the output audio, which is unacceptable. After that, it goes down to a 8%-10% consumption.</p>
<p>Even after the first run, the application keeps calling some time-consuming routines from time to time (every 2 seconds more or less), which causes the steady 5% consumption to experience very short peaks of 20%-25%. I've noticed that if I let the application run for a while these peaks will also go down to a 7%-10%. (I'm not sure if it's due to the JIT recompiling these portions of code).</p>
<p>So, I have a serious problem with the JIT. While the application will behave nicely even in very slow machines, these 'compiling storms' are going to be a big problem. I'm trying to figure out how to resolve this issue and I've come up with an idea, which is to mark all the 'sensible' routines with an attribute that will tell the application to 'squeeze' them beforehand during start-up, so they'll be fully optimized when they're really needed. But this is only an idea (and I don't like it too much either) and I wonder if there's a better solution to the whole problem.</p>
<p>I'd like to hear what you guys think.</p>
<p>(NGEN the application is not an option, I like and want all the JIT optimizations I can get.)</p>
<p>EDIT:</p>
<p>Memory consumption and garbage collection kicks are not an issue, I'm using object pools and the maximum peak of memory during playback is 304 Kb.</p>
http://stackoverflow.com/questions/316965/is-there-a-standard-way-to-name-a-function-which-reads-from-a-stream-but-does-not2Is there a standard way to name a function which reads from a stream but does not advance the pointer?Trap2008-11-25T10:45:43Z2009-04-06T16:32:54Z
<p>I can only think of Peek() and ReadNoAdvance() atm, but I wonder if there are better or standard options.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/718031/how-can-i-force-my-wpf-main-window-to-have-a-vista-look-on-a-xp-machine0How can I force my WPF main window to have a Vista look on a XP machine?Trap2009-04-04T23:27:15Z2009-04-04T23:36:15Z
<p>I'm developing a WPF application and I wonder if it's possible for the main window to have a Vista look. Some applications like MS Live Messenger and Google's Chrome already do that. </p>
<p>Any ideas?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/707422/is-there-a-way-to-force-visual-studio-2008-or-below-to-use-a-spellchecker-for-c3Is there a way to force Visual Studio 2008 (or below) to use a spellchecker for comments?Trap2009-04-01T21:34:32Z2009-04-01T21:57:57Z
<p>I'm not sure if this can be done at all, but it'd certainly make my life easier. I was wondering if maybe the MS spellchecker could be used as a plug-in for other applications... or something like that.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/692708/is-it-possible-to-declare-and-use-an-anonymous-functon-in-a-single-statement/692721#6927212Answer by Trap for Is it possible to declare and use an anonymous functon in a single statement?Trap2009-03-28T12:47:58Z2009-03-28T12:53:05Z<p>The 'trick' is that you need to create an instance of a delegate in order for it to work, which in your example is implicity done when you do the assignment (myFunc = ...). Also, you can express your function as () => myNode to make it shorter.</p>
<pre><code>XmlNode myOtherOne = new Func<XmlNode>( () => myNode )();
</code></pre>
http://stackoverflow.com/questions/503551/does-it-make-sense-to-spawn-more-than-one-thread-per-processor4Does it make sense to spawn more than one thread per processor?Trap2009-02-02T15:17:06Z2009-03-26T22:11:16Z
<p>From a logical point of view an application may need dozens or hundreds of threads, some of which will we sleeping most of the time, but a very few will be always running concurrently. The question is: Does it make any sense to spawn more concurrent threads than processors there are in a system, or it is a waste?</p>
<p>I've seen some server applications that implement a scheduler to logically manage tasks (often called jobs), but also spawning a lot of threads, so I don't see where the benefit is.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/675545/is-it-possible-to-use-a-c-object-initializer-with-a-factory-method/675552#6755520Answer by Trap for Is it possible to use a c# object initializer with a factory method?Trap2009-03-23T22:58:57Z2009-03-23T23:21:12Z<p>No, that's something you can only do 'inline'. All the factory function can do for you is to return a reference.</p>
http://stackoverflow.com/questions/1488472/best-practices-throwing-exceptions-from-properties/1488498#1488498Comment by Trap on Best practices: throwing exceptions from propertiesTrap2009-11-25T01:20:10Z2009-11-25T01:20:10ZAnother scenario where it's totally valid to throw exceptions from within getters is when an object is making use of class invariants to validate its internal state, which need to be checked whenever a public access is made, no matter it's a method or a propertyhttp://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895331#895331Comment by Trap on How can you tell if a person is a programmer?Trap2009-11-24T12:12:31Z2009-11-24T12:12:31Z-1 for the loop starting at 1http://stackoverflow.com/questions/1780036/c-secret-santa-how-do-i-count-the-failed-drawingsComment by Trap on [c++] Secret Santa - How do I count the failed drawings? Trap2009-11-22T23:17:38Z2009-11-22T23:17:38ZI think you first need to know how to ask a question.http://stackoverflow.com/questions/1759154/c-string-parsing-to-variable-types/1759192#1759192Comment by Trap on C# string Parsing to variable typesTrap2009-11-18T23:23:09Z2009-11-18T23:23:09Z+1: Much simpler and elegant than the previous answer.http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/293430#293430Comment by Trap on What's Your Biggest Visual Studio 2008 Annoyance?Trap2009-10-16T16:21:36Z2009-10-16T16:21:36ZI'd rather pay for VS + R# than using Eclipse again in my life.http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1557206#1557206Comment by Trap on Most horrifying line of code you have ever seen?Trap2009-10-13T00:02:48Z2009-10-13T00:02:48Z123456789012345 lol :)http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1556815#1556815Comment by Trap on Most horrifying line of code you have ever seen?Trap2009-10-12T23:48:50Z2009-10-12T23:48:50Zomg lol! he could have been used a signed char, what a waste.http://stackoverflow.com/questions/123773/is-oop-completely-avoiding-implementation-inheritance-possible/124591#124591Comment by Trap on Is OOP & completely avoiding implementation inheritance possible?Trap2009-10-11T21:55:47Z2009-10-11T21:55:47ZSeriously, I fail to see how a truck should inherit from a car :)http://stackoverflow.com/questions/123773/is-oop-completely-avoiding-implementation-inheritance-possibleComment by Trap on Is OOP & completely avoiding implementation inheritance possible?Trap2009-10-11T21:40:20Z2009-10-11T21:40:20ZI for one don't like to call it "interface inheritance" but "interface implementation". That's one thing I really like from the Java language, two different concepts named accordingly.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/237826#237826Comment by Trap on What is your best programmer joke?Trap2009-08-16T22:16:27Z2009-08-16T22:16:27ZI just love this one :)http://stackoverflow.com/questions/1228176/what-are-your-c-commandments/1229707#1229707Comment by Trap on What are your C# Commandments?Trap2009-08-04T21:56:07Z2009-08-04T21:56:07ZThen you guys think that letting programmers not to specify visibility is a flaw in the language, don't you?http://stackoverflow.com/questions/1173692/what-is-the-best-api-framework-platform-you-ever-worked-with/1173704#1173704Comment by Trap on What is the best API/framework/platform you ever worked with?Trap2009-07-23T19:32:47Z2009-07-23T19:32:47ZIt may sound silly, but I've noticed that a lot of people just don't like the idea of C# and .NET being more and more powerful every day, specially the C++ and Java die-hard fans.http://stackoverflow.com/questions/1165203/c-library-for-easy-dynamic-reflectionComment by Trap on C# Library for easy dynamic reflectionTrap2009-07-22T13:32:32Z2009-07-22T13:32:32ZCan you describe some of these 'hard reflection tasks' ?http://stackoverflow.com/questions/818937/how-can-i-get-addicted-to-programming/1113073#1113073Comment by Trap on How can I get addicted to programming?Trap2009-07-12T02:53:06Z2009-07-12T02:53:06Z+1 This has to be the best answer so far.http://stackoverflow.com/questions/1056892/net-multiple-class-library-in-one-libraryComment by Trap on .NET Multiple Class Library in One LibraryTrap2009-06-29T09:11:37Z2009-06-29T09:11:37ZWhy don't you just distribute the two DLLs? This is done automatically in the process of deploying your application. This way you could update them by newer releases with ease.