User sixlettervariables - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T17:25:27Zhttp://stackoverflow.com/feeds/user/7116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1923325/why-is-my-net-app-contacting-verisign/1923390#19233901Answer by sixlettervariables for Why is my .Net app contacting Verisign?sixlettervariables2009-12-17T17:41:22Z2009-12-17T17:41:22Z<p>Are any of the 3rd party DLLs signed with <a href="http://blogs.msdn.com/shawnfa/archive/2005/12/13/502779.aspx" rel="nofollow">Authenticode</a>?</p>
http://stackoverflow.com/questions/1918061/why-synchronizedcollectiont-does-not-lock-on-ienumerable-getenumerator/1918126#19181260Answer by sixlettervariables for Why SynchronizedCollection<T> does not lock on IEnumerable.GetEnumerator()sixlettervariables2009-12-16T22:06:43Z2009-12-16T22:49:11Z<p>I'm going to go ahead and say that this could be a bug (<em>ed: or at least an inconsistency</em>) in the implementation. Reflector shows exactly what you're seeing, that every other explicit implementation calls lock on the <code>SyncRoot</code> given, except for <code>IEnumerable.GetEnumerator()</code>.</p>
<p>Perhaps you should submit a ticket at <a href="http://connect.microsoft.com/" rel="nofollow">Microsoft Connect</a>.</p>
<p>I believe the reason the implicit <code>GetEnumerator()</code> method calls <code>lock</code> is because <code>List<T>.GetEnumerator()</code> creates a new <code>Enumerator<T></code> which relies on the private field <code>_version</code> on the list. While I agree with the other posters, that I don't see the use in locking the <code>GetEnumerator()</code> call, but since the constructor of <code>Enumerator<T></code> relies on non-threadsafe fields, it would make sense to lock. Or at least remain consistent with the implicit implementations.</p>
http://stackoverflow.com/questions/1889979/borders-with-captions-in-wpf/1889994#18899942Answer by sixlettervariables for Borders with captions in WPFsixlettervariables2009-12-11T18:29:56Z2009-12-11T18:29:56Z<p>Perhaps a <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.groupbox.aspx" rel="nofollow">GroupBox</a>?</p>
<pre><code><GroupBox>
<GroupBox.Header>
<Label>Hello</Label>
</GroupBox.Header>
<TextBlock Text="World!" />
</GroupBox>
</code></pre>
http://stackoverflow.com/questions/1889712/is-it-a-good-idea-to-take-an-ms-cert-exam/1889851#18898511Answer by sixlettervariables for Is it a good idea to take an MS Cert Exam?sixlettervariables2009-12-11T18:06:12Z2009-12-11T18:06:12Z<p>A certification shows you've at least put some effort into learning the technology and have been evaluated to meet minimum proficiencies. My problem with most all computer related certifications is they almost universally require no continuing education (as opposed to certifications in other fields). Without ConEd it is difficult to determine how "fresh" your knowledge is.</p>
<p>If you're participating in projects, you've had to at least learn the technology, learn how to work with others, and stay relatively current in the technology.</p>
<p>I'm far more likely to take a new hire who has actively participated in projects either personal or open source over someone who just has a certification.</p>
http://stackoverflow.com/questions/1847478/protecting-class-from-getting-instantiated-before-main/1847490#18474907Answer by sixlettervariables for Protecting class from getting instantiated before main()sixlettervariables2009-12-04T14:59:36Z2009-12-04T15:20:39Z<p>Restricting construction of a class before some method gets called is going to be a losing battle. Especially if that method is <code>main()</code>. Can I ask why you have this requirement? Perhaps there is another way to tackle the actual problem you're attempting to solve.</p>
<p><strong>Edit:</strong> thanks for the CTQ, and judging from it your best bet is probably the simplest solution, which is a static boolean. Since it's embedded I'm going to make the assumption that you pretty much control the entire environment. A simple assert in your <code>::instance()</code> based on a static bool is probably all that you need.</p>
<p>Taking it one step further, It sounds like you need dependency injection or some other way of assuring that your resources are initialized in the correct order, which I'll be honest, is not a problem I've tackled in C++ (let alone on an embedded system). I can't give any additional insight into the most effective means for that case and would suggest you consider maybe one of the other answers to this question.</p>
http://stackoverflow.com/questions/1843792/howto-create-a-stand-alone-executable-per-form-for-a-c-solution-in-vs-2008-with/1843843#18438430Answer by sixlettervariables for HOWTO create a stand-alone executable per form for a C# solution in VS 2008 with multiple projects with multiple forms in a single build?sixlettervariables2009-12-03T23:30:07Z2009-12-03T23:30:07Z<p>I would suggest creating a template <code>.csproj</code> file and creating many of them with a small C# or Perl program, filling in the template with the values based on the forms in your solution. You could then aggregate the <code>.csproj</code> files using a batch or Perl script for compilation using <code>devenv.exe</code> from the command line.</p>
<p>No real "clean" way.</p>
http://stackoverflow.com/questions/1843515/dictionary-to-listview-twoway-binding-possible/1843810#18438101Answer by sixlettervariables for Dictionary to ListView TwoWay binding - possible?sixlettervariables2009-12-03T23:24:58Z2009-12-03T23:24:58Z<p>What you're looking for is something akin to an <code>ObservableCollection<T></code> but for a dictionary. A bit of Googling found the following from <a href="http://www.drwpf.com/blog/Home/tabid/36/BlogDate/2007-09-30/Default.aspx" rel="nofollow">Dr. WPF on building an <code>ObservableDictionary</code></a>:</p>
<blockquote>
<p><strong>Pros and Cons</strong></p>
<p>The benefit to using an observable dictionary, of course, is that the dictionary can serve as the ItemsSource for a databound control and you can still access the dictionary in code the same way you access any other dictionary. It is truly an indexed dictionary of objects.
There are certainly some limitations inherent in the very idea of making a dictionary observable. Dictionaries are built for speed. When you impose the behaviors of an observable collection on a dictionary so that the framework can bind to it, you add overhead.</p>
<p>Also, a dictionary exposes its <code>Values</code> and <code>Keys</code> collections through separate properties of the same name. These collections are of types <code>Dictionary<TKey, TValue>.ValueCollection</code> and <code>Dictionary<TKey, TValue>.KeyCollection</code>, respectively. These CLR-defined collections are not observable. As such, you cannot bind to the Values collection or to the Keys collection directly and expect to receive dynamic collection change notifications. You must instead bind directly to the observable dictionary.</p>
</blockquote>
<p>Now, you may run into a problem with updating the Key, as you would then need to somehow convince the dictionary to <em>Move</em> your item. I would suggest taking Dr. WPF's <code>ObservableDictionary</code> and instead using a <a href="http://msdn.microsoft.com/en-us/library/ms132438.aspx" rel="nofollow"><code>KeyedCollection</code></a> as the backing store. That way the Key is derived from the Item itself, and updates move the object in the <code>ObservableDictionary</code> automatically.</p>
http://stackoverflow.com/questions/1842652/is-there-a-general-concrete-implementation-of-a-keyedcollection/1842705#18427055Answer by sixlettervariables for Is there a general concrete implementation of a KeyedCollection?sixlettervariables2009-12-03T20:30:57Z2009-12-03T20:30:57Z<p>There are concrete implementations, including (but not limited to):</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/ms404549%28VS.80%29.aspx" rel="nofollow">KeyedByTypeCollection<TItem></a> (I use this class frequently)</li>
<li><a href="http://msdn.microsoft.com/en-us/library/system.servicemodel.description.messageheaderdescriptioncollection.aspx" rel="nofollow">MessageHeaderDescriptionCollection</a></li>
</ul>
<p>To the spirit of your question, no there is no generic implementation and since I do not work for Microsoft I could only speculate. Since the concrete implementation is as easy as you've shown, I won't offer any speculation (as it would probably be wrong).</p>
http://stackoverflow.com/questions/1836415/net-document-management-system-design-performance-questions/1836601#18366010Answer by sixlettervariables for .NET document management system design - performance questionssixlettervariables2009-12-02T23:22:31Z2009-12-02T23:22:31Z<p>An important part of programming is knowing when you're in over your head. If the CTQ's you've posted are real, specifically the concurrent access requirement, then you're in for a world of hurt. Even those of us with quite a lot of time in the trenches are going to be in a world of hurt with that sort of requirement. I'd tackle the problem with the following mindset:</p>
<blockquote>
<p>I'm going to get this wrong in more ways that I can currently imagine.</p>
</blockquote>
<p>Knowing this much, <strong>the simpler you keep this architecture, the more likely it is to scale</strong>. However, the company I work for is absolutely massive and I doubt even we have any systems that <em>truely</em> have 20,000 concurrent users. So don't bite off more than you can chew.</p>
<p>Design your architecture to be simple and robust (a tall order) and you'll find it will scale naturally until you eventually need to call in the big guns.</p>
<p>I can suggest that you should at least spend money on access to SQL Server 2008. With that version your problem should be fairly elementary for starters. Use the <a href="http://technet.microsoft.com/en-us/library/bb933995.aspx" rel="nofollow"><code>FILESTREAM</code></a> storage for the files. No serialization necessary. This will store the files on an NTFS file system and will maximize your ease of programming, maintenance, and scalability.</p>
<p>If you for some reason only have SQL Server 2005, you'll have to deal with <code>BLOB</code>s which isn't exactly difficult, but is somewhat messy. I suggest you read <a href="http://research.microsoft.com/apps/pubs/default.aspx?id=64525" rel="nofollow">To BLOB or Not to BLOB</a> from Microsoft Research to make the decision if storing the data in SQL Server 2005 is the best bet for you. If so, there are plenty of articles detailing how to put files into SQL Server <code>BLOB</code>s. Just be aware this is rarely the most efficient or scalable solution.</p>
http://stackoverflow.com/questions/1801284/whats-the-different-between-console-writeh-and-console-writeh-in-c-tha/1801287#180128710Answer by sixlettervariables for What's the different between Console.Write("H") and Console.Write('H') in C#. thanks.sixlettervariables2009-11-26T02:47:31Z2009-11-26T02:47:31Z<p>One uses a <code>string</code> overload (the string <code>"H"</code>), one uses a <code>char</code> overload (the char <code>'H'</code>). Both output the character <code>H</code> to the stream defined in <code>Console.Out</code> without adding a newline.</p>
http://stackoverflow.com/questions/1792478/xaml-indexer-databinding/1792659#17926591Answer by sixlettervariables for XAML Indexer DataBindingsixlettervariables2009-11-24T20:18:11Z2009-11-24T20:18:11Z<p>The only way I've found to accomplish this is through a <a href="http://msdn.microsoft.com/en-us/library/system.windows.data.multibinding.aspx" rel="nofollow">MultiBinding</a> and a <a href="http://msdn.microsoft.com/en-us/library/system.windows.data.imultivalueconverter.aspx" rel="nofollow">IMultiValueConverter</a>.</p>
<pre><code><TextBlock DataContext="{Binding Source={x:Static vm:MainViewModel.Employees}">
<TextBlock.Text>
<MultiBinding Converter="{StaticResource conv:SelectEmployee}">
<Binding />
<Binding Path="SelectedEmployee" />
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</code></pre>
<p>And your converter:</p>
<pre><code>public class SelectEmployeeConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType,
object parameter, CultureInfo culture)
{
Debug.Assert(values.Length >= 2);
// change this type assumption
var employees = values[0] as ICollection<Employee>;
var index = Convert.ToInt32(values[1]);
// and check bounds
if (employees != null) return employees[index];
return Binding.DoNothing;
}
public object[] ConvertBack(object value, Type[] targetTypes,
object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
</code></pre>
http://stackoverflow.com/questions/1765481/what-is-a-freezable-subtype-in-wpf-silverlight/1765561#17655611Answer by sixlettervariables for What is a "Freezable" subtype in WPF/Silverlight?sixlettervariables2009-11-19T18:36:54Z2009-11-19T18:36:54Z<p>Ripped straight from MSDN's <a href="http://msdn.microsoft.com/en-us/library/ms750509.aspx" rel="nofollow">Freezable Objects Overview</a>:</p>
<blockquote>
<p>The Freezable class makes it easier to use certain graphics system objects and can help improve application performance. Examples of types that inherit from Freezable include the Brush, Transform, and Geometry classes. Because they contain unmanaged resources, the system must monitor these objects for modifications, and then update their corresponding unmanaged resources when there is a change to the original object. Even if you don't actually modify a graphics system object, the system must still spend some of its resources monitoring the object, in case you do change it.</p>
</blockquote>
http://stackoverflow.com/questions/1758717/wpf-binding-behavior/1758744#17587441Answer by sixlettervariables for WPF binding behaviorsixlettervariables2009-11-18T20:14:09Z2009-11-18T20:14:09Z<p>You're seeing that behavior because you bind it to both <code>SelectedItem</code> and <code>SelectedValue</code>, thus it executes twice. The first time it is bound it appears the displayed property is not being used yet.</p>
http://stackoverflow.com/questions/1758456/how-come-replacing-char-with-intptr-or-stringbuilder-in-a-dllimport-return-valu/1758693#17586931Answer by sixlettervariables for How come replacing char[] with IntPtr or StringBuilder in a DllImport return value causes my program to no longer find the correct entry point?sixlettervariables2009-11-18T20:04:51Z2009-11-18T20:04:51Z<p><strong>EDIT</strong>: updated to reflect importing a macro:</p>
<blockquote>
<p><strong>You can't.</strong></p>
</blockquote>
<p>Now, what you can do is look at what the macro does, then implement that with P/Invoke. The below advice holds for that as well.</p>
<p><hr></p>
<p>When working with Platform Invoke (P/Invoke) it is best to be as explicit as possible:</p>
<pre><code>internal static class NativeMethods
{
private static string DllName = @"api.dll";
// This uses 'string' assuming you do not have to free the memory.
[DllImport(DllName, EntryPoint = "errMessage",
CharSet = YourCharacterSet, // CharSet.Ansi? .Unicode?
CallingConvention = DllCallingConvention // .StdCall? .Cdecl?
)]
public static string errMessage(int errorCode);
}
</code></pre>
<p>Moreover, it is best to provide a managed entry-point that makes the method more ".Net". This is where you would ensure that Caller allocated memory gets held the appropriate amount of time (you may have to implement a <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.safehandle.aspx" rel="nofollow">SafeHandle</a>) or that other hand-waving gets handled.</p>
<p>Assuming <code>errMessage</code> returns a string we aren't responsible for deallocating:</p>
<pre><code>public static class ManagedMethods
{
public static string ErrorMessage(ErrorCode errorCode)
{
return NativeMethods.errMessage((int)errorCode);
}
}
</code></pre>
http://stackoverflow.com/questions/1732266/non-exponential-formatted-float/1732566#17325662Answer by sixlettervariables for Non-exponential formatted floatsixlettervariables2009-11-13T23:33:39Z2009-11-13T23:46:53Z<p>In terms of speed, your original solution is the fastest I've tried so far (@Godeke's is a very close second). @Godeke's has a lot of readability, for only a minor amount of performance degradation. Add in some robustness checks, and his may be the long term way to go. In terms of robustness, you can add that in to yours like so:</p>
<pre><code>static char[] signChars = new char[] { '+', '-' };
static float ParseFloatingPoint(string data)
{
if (data.Length != EntryWidth)
{
throw new ArgumentException("data is not the correct size", "data");
}
else if (data[0] != ' ' && data[0] != '+' && data[0] != '-')
{
throw new ArgumentException("unexpected leading character", "data");
}
int signPos = data.LastIndexOfAny(signChars);
// Found either a '+' or '-'
if (signPos > 0)
{
// Create a new char array with an extra space to accomodate the 'e'
char[] newData = new char[EntryWidth + 1];
// Copy from string up to the sign
for (int ii = 0; ii < signPos; ++ii)
{
newData[ii] = data[ii];
}
// Replace the sign with an 'e + sign'
newData[signPos] = 'e';
newData[signPos + 1] = data[signPos];
// Copy the rest of the string
for (int ii = signPos + 2; ii < EntryWidth + 1; ++ii)
{
newData[ii] = data[ii - 1];
}
return Single.Parse(
new string(newData),
NumberStyles.Float,
CultureInfo.InvariantCulture);
}
else
{
Debug.Assert(false, "data does not have an exponential? This is odd.");
return Single.Parse(data, NumberStyles.Float, CultureInfo.InvariantCulture);
}
}
</code></pre>
<p>Benchmarks on my X5260 (including the times to just grok out the individual data points):</p>
<pre><code>Code Average Runtime Values Parsed
--------------------------------------------------
Nothing (Overhead) 13 ms 0
Original 50 ms 150000
Godeke 60 ms 150000
Original Robust 56 ms 150000
</code></pre>
http://stackoverflow.com/questions/1723364/pattern-to-catch-exception-from-sections-of-code-while-not-making-eyes-bleed/1723397#17233972Answer by sixlettervariables for Pattern to catch exception from sections of code (while not making eyes bleed)sixlettervariables2009-11-12T16:12:55Z2009-11-12T16:12:55Z<p>The line number in the stack trace will tell you which of the three were called.</p>
http://stackoverflow.com/questions/1711701/wpf-dynamic-binding-x-and-y-co-ordinates/1711879#17118790Answer by sixlettervariables for WPF Dynamic Binding X and Y Co-ordinatessixlettervariables2009-11-10T23:04:44Z2009-11-10T23:04:44Z<p>You can accomplish this within a <a href="http://msdn.microsoft.com/en-us/library/ms742521.aspx" rel="nofollow">DataTemplate</a> if your Ellipse objects are represented by a class, and perhaps displayed in an <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.itemscontrol.aspx" rel="nofollow">ItemsControl</a>.</p>
<pre><code><Ellipse>
<Ellipse.LayoutTransform>
<TranslateTransform X="{Binding XCoord}"
Y="{Binding YCoord}" />
</Ellipse.LayoutTransform>
</Ellipse>
</code></pre>
<p>You would <a href="http://patconroy.wordpress.com/2009/03/24/layouttransform-vs-rendertransform-in-wpf/" rel="nofollow">choose between LayoutTransform and RenderTransform</a> based on the panel which held your Ellipse objects.</p>
<p>I also recommend reviewing an article by Bea Stollnitz (neé Costa) which shows how to leverage a <a href="http://bea.stollnitz.com/blog/?p=40" rel="nofollow">ListBox backed by a Canvas with DataBinding to produce offset objects</a>. Very cool.</p>
http://stackoverflow.com/questions/1704082/writing-drive-c-in-windows-7-vista/1704372#17043721Answer by sixlettervariables for Writing drive C: in Windows 7/Vistasixlettervariables2009-11-09T22:28:36Z2009-11-09T22:28:36Z<p>I'm surprised it hasn't been mentioned yet, but a viable C# option is to ditch INI files (yuck) and embrace the <a href="http://msdn.microsoft.com/en-us/library/aa730869%28VS.80%29.aspx" rel="nofollow">Settings facilities provided by .Net</a>. They work very well across all Windows versions, they are directly supported by Visual Studio, and finally they are overridable at both the User and Machine level.</p>
<p>We've had no real problems to speak of utilizing this feature (this includes XCopy deployments, Installed applications, Citrix, etc).</p>
http://stackoverflow.com/questions/1683706/when-are-two-enums-equal-in-c/1683735#16837358Answer by sixlettervariables for When are two enums equal in C#?sixlettervariables2009-11-05T21:24:31Z2009-11-06T01:08:44Z<p>Enums are strongly typed in C#, hence <code>enumA.one != enumB.one</code>. Now, if you were convert each enum to their integer value, they would be equal.</p>
<pre><code>Assert.AreEqual((int)enumA.one, (int)enumB.one);
</code></pre>
<p>Also, I'd like to challenge the statement that because they have the same integer or string representation that they should be the same or equals. Given two enumerations <code>NetworkInterface</code> and <code>VehicleType</code>, it would not be logical for C# or the .Net Framework to allow <code>NetworkInterface.None</code> to equal <code>VehicleType.None</code> when compared as enumeration, by either value or string. However, if the developer cast the strongly typed enumeration to an integer or string, there is nothing the language or framework can do to stop the two from being equals. </p>
<p>To further clarify, you cannot override <code>MyEnum.Equals</code> in order to provide a different equality method. .Net enums are not quite the first class citizens they are in later versions of Java, and I wish that C# allowed for richer interactions with Enums.</p>
http://stackoverflow.com/questions/1677226/performant-file-copy-in-c/1677261#16772612Answer by sixlettervariables for Performant File Copy in C#?sixlettervariables2009-11-04T22:56:26Z2009-11-04T23:12:52Z<p>I'd keep in mind the 80/20 rule <strike>and note that if the bulk of the slowdown is <code>file.CopyTo</code>, and this slowdown far outweighs the performance of the LINQ query, then I wouldn't worry. You can test this by removing the <code>file.CopyTo</code> line and replacing it with a <code>Console.WriteLine</code> operation. Time that versus the real copy. You'll find the overhead of GoGrid versus the rest of the operation. My hunch is there won't be any realistic big gains on your end</strike>.</p>
<p><strong>EDIT</strong>: Ok, so the 80% is the <code>GetFiles</code> operation, which isn't surprising if in fact there are a million files in the directory. Your best bet may be to begin using the Win32 API directly (like <a href="http://msdn.microsoft.com/en-us/library/aa364418%28VS.85%29.aspx" rel="nofollow">FindFirstFile</a> and <a href="http://msdn.microsoft.com/en-us/library/aa364232%28VS.85%29.aspx" rel="nofollow">family</a>) and <a href="http://www.pinvoke.net/default.aspx/kernel32.findfirstfile" rel="nofollow">P/Invoke</a>:</p>
<pre><code>[DllImport("kernel32.dll", CharSet=CharSet.Auto)]
static extern IntPtr FindFirstFile(string lpFileName,
out WIN32_FIND_DATA lpFindFileData);
</code></pre>
<p>I'd also suggest, if possible, altering the directory structure to decrease the number of files per directory. This will improve the situation immensely.</p>
<p><strong>EDIT2</strong>: I'd also consider changing from <code>GetFiles("*.*")</code> to just <code>GetFiles()</code>. Since you're asking for everything, no sense in having it apply globbing rules at each step.</p>
http://stackoverflow.com/questions/1673776/preventing-duplicate-matches-in-regex/1674676#16746761Answer by sixlettervariables for Preventing duplicate matches in RegExsixlettervariables2009-11-04T15:48:48Z2009-11-04T15:48:48Z<p>Regular expressions solve lots of problems, but not every problem. How about using other tools in the toolbox?</p>
<pre><code>var parameters = new HashSet<string>(
matches.Select(mm => mm.Value).Skip(1));
</code></pre>
<p>Or</p>
<pre><code>var parameters = matches.Select(mm => mm.Value).Skip(1).Distinct();
</code></pre>
http://stackoverflow.com/questions/1658476/c-fopen-vs-open/1658508#16585080Answer by sixlettervariables for C fopen vs opensixlettervariables2009-11-01T21:58:38Z2009-11-01T21:58:38Z<p>Unless you're part of the 0.1% of applications where using <code>open</code> is an actual performance benefit, there really is no good reason not to use <code>fopen</code>. As far as <code>fdopen</code> is concerned, if you aren't playing with file descriptors, you don't need that call.</p>
<p>Stick with <code>fopen</code> and its family of methods (<code>frwite</code>, <code>fread</code>, <code>fprintf</code>, et al) and you'll be very satisfied. Just as importantly, other programmers will be satisfied with your code.</p>
http://stackoverflow.com/questions/1621177/handling-events-for-specific-form/1621214#16212141Answer by sixlettervariables for Handling events for specific Formsixlettervariables2009-10-25T15:45:10Z2009-10-25T15:45:10Z<p>You'll run into a bit of an issue, as all of your <a href="http://blogs.msdn.com/jfoscoding/archive/2005/04/07/406341.aspx" rel="nofollow">Form's will be on the UI Thread</a>, and thus the events are not "free threaded". The suggested method to handle this is for long-running tasks to be pushed to a <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx" rel="nofollow">BackgroundWorker</a> or perhaps to a <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadpool.aspx" rel="nofollow">ThreadPool</a>. You would then use <a href="http://msdn.microsoft.com/en-us/library/zyzhdc6b.aspx" rel="nofollow">Invoke</a> to execute tasks on the UI Thread, making the handling of actions multithreaded while the UI is still single threaded.</p>
http://stackoverflow.com/questions/1607012/net-service-application-sending-mail-to-2-634-789-users/1607483#16074830Answer by sixlettervariables for .NET Service Application – Sending mail to 2,634,789 userssixlettervariables2009-10-22T14:07:28Z2009-10-22T14:07:28Z<p>I would suggest taking this a step further and making it distributed in a coarse grained sense. Your current approach is fine, but I would have a stored procedure which returns back which 100 individuals to email based on some additional integer columns, say <code>GENERATION</code> and <code>SENT_GENERATION</code>. Your procedure would retrieve N rows which <code>GENERATION != NEW_GENERATION</code> and set their <code>GENERATION</code> to <code>NEW_GENERATION</code>. The sproc would return these N rows to the calling program which would send the emails and then update the table and set <code>SENT_GENERATION</code> to <code>GENERATION</code> so that you could tell which emails got sent, and those which did not.</p>
<p>A strategy like this would allow you to have multiple machines sending out emails in batches, as you could spend many days sending email to 2M people w/o threading or distributed sends.</p>
http://stackoverflow.com/questions/1603300/xcode-3-2-1-and-c-string-fails/1603613#16036134Answer by sixlettervariables for Xcode 3.2.1 and C++ string fails!sixlettervariables2009-10-21T21:02:38Z2009-10-21T21:30:47Z<p>As far as I can tell, I'm not experiencing this issue in Release mode for <code>x86_64</code>. But I am seeing the issue in Debug <code>x86_64</code>. If I follow the <a href="http://osdir.com/ml/xcode-users/2009-09/msg00526.html" rel="nofollow">directions given by Howard in this post</a>, I'm able to get it running in debug mode:</p>
<ol>
<li>Project -> Edit Active Target ...</li>
<li>Click Build tab</li>
<li>Search for "preprocessor"</li>
<li>Delete <code>_GLIBCXX_DEBUG=1 _GLIBCXX_DEBUG_PEDANTIC=1</code></li>
</ol>
<p>Build and run, you'll notice it works. Another interesting observation is that using <code>__gnu_debug::string</code> (from the <code><debug/string></code> header) alone does not trigger the error.</p>
<p><strong>EDIT: from the horses mouth (<a href="http://tuvix.apple.com/mac/library/releasenotes/DeveloperTools/RN-Xcode/index.html#//apple%5Fref/doc/uid/TP40001051-DontLinkElementID%5F1" rel="nofollow">known issues in XCode 3.2.1</a>)</strong></p>
<blockquote>
<p>The default gcc 4.2 compiler is not compatible with the Standard C++ Library Debug Mode. C++ programs compiled with Xcode 3.2 may not work in the Debug configuration. To fix this, set the Compiler Version to 4.0, or edit the Debug configuration’s Preprocessor Macros and remove the entries:
<code>_GLIBCXX_DEBUG=1 _GLIBCXX_DEBUG_PEDANTIC=1</code></p>
</blockquote>
<p>You can do this for all projects by navigating to <code>/Developer/Library/Xcode/Project Templates/Application/Command Line Tool/C++ Tool/C++Tool.xcodeproj/</code> and editing <code>project.pbxproj</code> and deleting the lines around line 138:</p>
<pre><code>"_GLIBCXX_DEBUG=1",
"_GLIBCXX_DEBUG_PEDANTIC=1",
</code></pre>
http://stackoverflow.com/questions/1601080/writing-a-maintainable-commit-method/1601197#16011974Answer by sixlettervariables for Writing a maintainable commit methodsixlettervariables2009-10-21T14:28:44Z2009-10-21T14:28:44Z<p>Perhaps maintain a list of <code>Action</code>s to execute?</p>
<pre><code>private List<Action> commitActions = new List<Action>();
public bool SomeProperty
{
get
{
return m_SomeProperty;
}
set
{
if (m_SomeProperty != value)
{
m_SomeProperty = value;
lock (commitActions)
{
commitActions.Add(
() => Properties.Settings.Default.SomeProperty = value);
}
NotifyPropertyChanged("SomeProperty");
}
}
}
</code></pre>
<p>Then update your <code>Commit</code> code to loop through the actions.</p>
<pre><code>public void Commit()
{
List<Action> commits;
lock (commitActions)
{
commits = new List<Action>(commitActions);
commitActions.Clear();
}
foreach (var commit in commits)
{
commit();
}
}
</code></pre>
http://stackoverflow.com/questions/1595471/combobox-with-ienumerablebrush-as-itemssource-and-selecteditem-exception/1596722#15967221Answer by sixlettervariables for ComboBox with IEnumerable<Brush> as ItemsSource and SelectedItem exceptionsixlettervariables2009-10-20T19:13:06Z2009-10-20T19:13:06Z<p>Using Reflector I've traced down where the problem appears to be occuring. Inside <code>Selector.ItemSetIsSelected</code>, it takes the new <code>SelectedItem</code> and does the following:</p>
<ul>
<li>If the <strong>container</strong> of the element is a <code>DependencyObject</code> it sets the <code>IsSelectedProperty</code> on the <strong>container</strong> to <code>true</code>.</li>
<li>Otherwise if the <strong>element</strong> is a <code>DependencyObject</code> it sets the <code>IsSelectedProperty</code> on the <strong>element</strong> to <code>true</code>.</li>
</ul>
<p>That second part is where the failure comes into play, the <code>Brush</code> objects you've chosen are Read-Only. Because the <code>Selector.ItemSetIsSelected</code> is somewhat broken in this case, you have two options.</p>
<p><strong><em>Option 1</em></strong>, you just call .Clone() on the Brush object returned from the Converter.</p>
<pre><code>colors_ = (from p in typeof(Brushes).GetProperties()
select ((Brush)converter.ConvertFromString(p.Name)).Clone()).ToList();
</code></pre>
<p><hr /></p>
<p><strong>EDIT: You should go with Option 1...Option 2 is the longwinded way to fix the problem</strong></p>
<p><strong><em>Option 2</em></strong>, you could wrap the Brush objects into one more object:</p>
<pre><code>public class BrushWrapper
{
public Brush Brush { get; set; }
}
</code></pre>
<p>You then update the data template paths:</p>
<pre><code><Border Background="{Binding Path=Brush}" />
</code></pre>
<p>and</p>
<pre><code><TextBlock Text="{Binding Path=Brush}" />
</code></pre>
<p>Finally, you update the <code>ViewModel</code>:</p>
<pre><code>private readonly List<BrushWrapper> colors_;
private BrushWrapper white_;
public ColorViewModel()
{
colors_ = (from p in typeof(Brushes).GetProperties()
select new BrushWrapper {
Brush = (Brush)converter.ConvertFromString(p.Name)
}).ToList();
white_ = colors_.Single(b => b.Brush.ToString() == "#FFFFFFFF");
}
public List<BrushWrapper> Colors
{
get { return colors_; }
}
public BrushWrapper White
{
get { return white_; }
set
{
if (white_ != value)
white_ = value;
}
}
</code></pre>
http://stackoverflow.com/questions/1574845/create-anonymous-method-from-a-string-in-c/1575001#15750011Answer by sixlettervariables for Create anonymous method from a string in c#sixlettervariables2009-10-15T20:53:09Z2009-10-15T20:53:09Z<p>It could be possible with a grammar (e.g. ANTLR) and an interpreter which creates expression trees. This is no small task, however, you can be successful if you limit the scope of what you accept as input. Here are some references:</p>
<ul>
<li><a href="http://www.antlr.org/grammar/1151612545460/CSharpParser.g" rel="nofollow">C# ANTLR3 Grammar</a> (complex, but you could extract a portion)</li>
<li><a href="http://msdn.microsoft.com/en-us/library/bb397951.aspx" rel="nofollow">Expression Trees</a></li>
</ul>
<p>Here is what some code may look like to transform an ANTLR ITree into an Expression tree. It isn't complete, but shows you what you're up against.</p>
<pre><code>private Dictionary<string, ParameterExpression> variables
= new Dictionary<string, ParameterExpression>();
public Expression Visit(ITree tree)
{
switch(tree.Type)
{
case MyParser.NUMBER_LITERAL:
{
float value;
var literal = tree.GetChild(0).Text;
if (!Single.TryParse(literal, out value))
throw new MyParserException("Invalid number literal");
return Expression.Constant(value);
}
case MyParser.IDENTIFIER:
{
var ident = tree.GetChild(0).Text;
if (!this.variables.ContainsKey(ident))
{
this.variables.Add(ident,
Expression.Parameter(typeof(float), ident));
}
return this.variables[ident];
}
case MyParser.ADD_EXPR:
return Expression.Add(Visit(tree.GetChild(0)), Visit(tree.GetChild(1)));
// ... more here
}
}
</code></pre>
http://stackoverflow.com/questions/1574815/c-oop-in-c-implementation-and-a-bug/1574822#157482215Answer by sixlettervariables for [C] OOP in C, implementation and a bugsixlettervariables2009-10-15T20:26:27Z2009-10-15T20:35:30Z<p>In your code, <code>NewSpeaker()</code> doesn't actually create a "new" speaker. You need to use a memory allocation function such as <a href="http://www.opengroup.org/onlinepubs/009695399/functions/malloc.html" rel="nofollow"><code>malloc</code></a> or <a href="http://www.opengroup.org/onlinepubs/000095399/functions/calloc.html" rel="nofollow"><code>calloc</code></a>.</p>
<pre><code>speaker* NewSpeaker() {
speaker *s = malloc(sizeof(speaker));
s->say = say;
return s;
}
</code></pre>
<p>Without assigning the value from, for example, the return value of <code>malloc</code>, <code>s</code> is initialized to junk on the stack, hence the segfault.</p>
http://stackoverflow.com/questions/1574375/iqueryable-and-expression-tree/1574449#15744492Answer by sixlettervariables for iQueryable and Expression Treesixlettervariables2009-10-15T19:15:04Z2009-10-15T19:15:04Z<p><a href="http://msdn.microsoft.com/en-us/library/bb397951.aspx" rel="nofollow">Expression trees</a> are very simple to make:</p>
<pre><code>Expression<Func<int,int,int>> addExp = (a,b) => a + b;
</code></pre>
<p>or</p>
<pre><code>var paramA = Expression.Parameter(typeof(int), "a");
var paramB = Expression.Parameter(typeof(int), "b");
Expression<Func<int,int,int>> addExp = Expression.Lambda<Func<int,int,int>>(
Expression.Add(paramA, paramB),
paramA,
paramB);
</code></pre>
<p>Building an IQueryable provider is fairly difficult. However, <a href="http://blogs.msdn.com/mattwar/pages/linq-links.aspx" rel="nofollow">Matt Warren has a very indepth series that walks you through creating an IQueryable provider.</a></p>
http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c/158752#158752Comment by sixlettervariables on How to properly clean up Excel interop objects in C#sixlettervariables2009-12-18T17:35:40Z2009-12-18T17:35:40ZThen I suggest not using Excel from COM and save yourself all of the trouble. The Excel 2007 formats can be used without ever opening Excel, gorgeous.http://stackoverflow.com/questions/1922464/can-i-detect-whether-ive-been-given-a-new-object-as-a-parameter/1922491#1922491Comment by sixlettervariables on Can I detect whether I've been given a new object as a parameter?sixlettervariables2009-12-17T16:06:33Z2009-12-17T16:06:33ZWhy can't I sort a temporary array?http://stackoverflow.com/questions/1852064/form-to-object-and-loop-through-objects-in-cComment by sixlettervariables on Form to object and loop through objects in c#?sixlettervariables2009-12-17T02:14:26Z2009-12-17T02:14:26ZYou can open a bounty for more reputation than you have?http://stackoverflow.com/questions/1918061/why-synchronizedcollectiont-does-not-lock-on-ienumerable-getenumerator/1918129#1918129Comment by sixlettervariables on Why SynchronizedCollection<T> does not lock on IEnumerable.GetEnumerator()sixlettervariables2009-12-16T22:34:35Z2009-12-16T22:34:35ZI believe it should because a call to <code>GetEnumerator()</code> eventually creates a new <code>Enumerator<T></code> which relies on the <code>List<T>._version</code> field.http://stackoverflow.com/questions/1918061/why-synchronizedcollectiont-does-not-lock-on-ienumerable-getenumerator/1918129#1918129Comment by sixlettervariables on Why SynchronizedCollection<T> does not lock on IEnumerable.GetEnumerator()sixlettervariables2009-12-16T22:24:40Z2009-12-16T22:24:40ZI think what he's referring to is the fact that the implicit implementation of GetEnumerator() does indeed call lock.http://stackoverflow.com/questions/1909924/c-multiple-selection-listbox-move/1910000#1910000Comment by sixlettervariables on C# multiple selection listbox movesixlettervariables2009-12-15T20:11:05Z2009-12-15T20:11:05Z+1, The <code>.ToArray()</code> is important so you're not modifying the collection during the <code>foreach</code>.http://stackoverflow.com/questions/1872700/the-difference-between-a-destructor-and-a-finalizer/1872745#1872745Comment by sixlettervariables on The difference between a destructor and a finalizer?sixlettervariables2009-12-09T16:52:09Z2009-12-09T16:52:09ZThen I suggest never calling C#'s finalizers "destructors" and you will never have the confusion.http://stackoverflow.com/questions/1872700/the-difference-between-a-destructor-and-a-finalizer/1872718#1872718Comment by sixlettervariables on The difference between a destructor and a finalizer?sixlettervariables2009-12-09T16:48:49Z2009-12-09T16:48:49ZC# does not have destructors, only finalizers. The fact that it shares a similar syntax to C++'s destructor does not matter.http://stackoverflow.com/questions/1853305/comma-separated-thousand-nsstring-stringwithformat/1853316#1853316Comment by sixlettervariables on comma separated thousand NSString stringWithFormatsixlettervariables2009-12-05T20:17:53Z2009-12-05T20:17:53ZMeta-comment: If you can get @bbum's answer working using NSNumberFormatter then it would be best to not utilize the answer I provided.http://stackoverflow.com/questions/1853305/comma-separated-thousand-nsstring-stringwithformat/1853313#1853313Comment by sixlettervariables on comma separated thousand NSString stringWithFormatsixlettervariables2009-12-05T20:17:07Z2009-12-05T20:17:07Z@bbum: here is the iPhone specific documentation <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Reference/Foundation/Classes/NSNumberFormatter_Class/Reference/Reference.html" rel="nofollow">developer.apple.com/iphone/library/…</a>http://stackoverflow.com/questions/1853227/is-there-an-added-cost-of-splitting-code-out-to-a-separate-library-from-your-main/1853240#1853240Comment by sixlettervariables on Is there an added cost of splitting code out to a separate library from your main application?sixlettervariables2009-12-05T19:50:51Z2009-12-05T19:50:51Z@BobTheBuilder: let me change it up, why not start with the more maintainable solution first, and if you recognize a performance penalty, simply move the code into a single project rather than multiple class libraries.http://stackoverflow.com/questions/281924/buffer-pool-management-using-c/1849920#1849920Comment by sixlettervariables on Buffer pool management using C#sixlettervariables2009-12-04T22:09:18Z2009-12-04T22:09:18Z-1, I'm fairly certain the System.Net namespace abstracts that all away from you the end user keeping you from dealing with any of that. I also do not see any mention in the OP that the application uses interop of any kind.http://stackoverflow.com/questions/281924/buffer-pool-management-using-c/281954#281954Comment by sixlettervariables on Buffer pool management using C#sixlettervariables2009-12-04T22:06:24Z2009-12-04T22:06:24ZI think nzpcmad is working pure-managed w/o P/Invoke.http://stackoverflow.com/questions/1412538/how-to-tell-if-a-url-is-an-intranet-url/1412581#1412581Comment by sixlettervariables on How to tell if a URL is an intranet url?sixlettervariables2009-12-04T21:57:03Z2009-12-04T21:57:03Z+1, As i detailed in a comment to another response some organizations, as you point out, use routable IP's as intranet IP's. Confusingly enough .Net's security is based in a large part on these when using network shares. If you're lucky enough to have those IP's, then I find it to be a valid way to check.http://stackoverflow.com/questions/1412538/how-to-tell-if-a-url-is-an-intranet-url/1412549#1412549Comment by sixlettervariables on How to tell if a URL is an intranet url?sixlettervariables2009-12-04T21:53:20Z2009-12-04T21:53:20ZAnother problem is if the host resolves to a routable IP because your organization has valid Class A IP's which it uses as intranet IP's. It makes life very hard with .Net and the like.