sixlettervariables
|
Registered User
|
Lead Software Engineer in the nuclear industry. Day to day development in C# (2.0/3.0, WPF), C/C++, and Fortran 66/77/90/95/2003. My job is two parts computer archeology and one part bleeding edge. I'm also a volunteer EMT-Paramedic for the same company I do software work. I completed Paramedic school in October 2009. Feel free to ask me software/hardware questions you want answered and medical questions you want advice slightly better than from Wikipedia. |
|
1d |
awarded | ● Enlightened |
|
1d |
awarded | ● Nice Answer |
|
1d |
accepted | What’s the different between Console.Write(”H”) and Console.Write(’H’) in C#. thanks. |
|
1d |
answered | What’s the different between Console.Write(”H”) and Console.Write(’H’) in C#. thanks. |
|
1d |
comment |
Centralised settings in C# for multiple programs Have you checked that if you set the DLL's settings to be Machine that you have multiple per DLL? I'm on my macbook right now and can't confirm. |
|
1d |
comment |
C - Serialization of the floating point numbers (floats, doubles) It is portable only to machines sharing the same floating point format. Having been down this road, I will give you the following advice: Standardize on Little Endian IEEE-754 and make everybody else convert to/from that if necessary. You will be MUCH happier in the end. You will have portability through a rigid standard. |
|
1d |
comment |
C - Serialization of the floating point numbers (floats, doubles) The problem comes with FP standards that lack some of the "features" of IEEE. Namely the VAX and IBM floating point formats...You're in for a world of hurt w.r.t. corner cases. Thankfully, people have written excellent converters which handle these cases gracefully (I'm looking at you USGS! I owe you a beer). |
|
1d |
comment |
C - Serialization of the floating point numbers (floats, doubles) Compiler's don't necessarily dictate the IEEE floating point format. There are still computers which use other formats unfortunately (VAX/Alpha, IBM). But +1 ensuring you have the endianness right. |
|
1d |
comment |
C - Serialization of the floating point numbers (floats, doubles) More importantly @dreamlax, it is Floating Point Format agnostic. |
|
1d |
comment |
C tokenize polynomial coefficients What line? You haven't given every type. |
|
1d |
revised |
Zend Framework call view helper from a Zend_View_Helper cleaned up code; added 12 characters in body |
|
1d |
comment |
What is the performance penalty of operator overloading STL Voted to close 'Not a real question' due to two wildly divergent, unrelated questions. |
|
1d |
comment |
What is the proper object relationship? (C#) You can change it such that Customers and Depots are constructed through static methods only, which can guarantee singleton semantics about the unique ID. That way you don't need strange sets of Dictionaries, which is what @Robert may be pointing out. |
|
1d |
comment |
String Compare where null and empty are equal +1, but only the part with String.Empty in it! |
|
1d |
comment |
C# Equivalent of “My.Computer.Network.Ping” Because you'll make other developers cry... |
|
1d |
accepted | When are two enums equal in C#? |
|
2d |
answered | XAML Indexer DataBinding |
|
Nov 23 |
comment |
Do you have to dispose of IDisposable objects before you repopulate them? +1, I'd add that path should be in a using block, minus the assignment. |
|
Nov 23 |
comment |
How to expose internal System.Array @jheddings: it isn't appropriate to return an array directly using a getter. msdn.microsoft.com/en-us/library/… |
|
Nov 23 |
comment |
How to expose internal System.Array Point #1 is incorrect. Collection<T>, when given an IList<T>, only wraps the original item. All changes to the original are shown through the collection, and all changes to the collection are shown through the array. The problem in @Brian's instance with the NotSupportedException is due to the SZArrayHelper wrapper returned as the IList<T> implementation for arrays. SZArrayHelper returns true for IsReadOnly. For #2, it is never correct to expose an array directly. You should only return a copy. Hiding this with a SetValue() style is fine however. |
|
Nov 19 |
accepted | How come replacing char[] with IntPtr or StringBuilder in a DllImport return value causes my program to no longer find the correct entry point? |
|
Nov 19 |
answered | What is a “Freezable” subtype in WPF/Silverlight? |
|
Nov 18 |
accepted | WPF binding behavior |
|
Nov 18 |
comment |
C# - MySQL vs SQL Server +1, but a drawback is all of the TSQL specific nonsense. Becomes a nightmare for portability. |
|
Nov 18 |
answered | WPF binding behavior |
|
Nov 18 |
answered | How come replacing char[] with IntPtr or StringBuilder in a DllImport return value causes my program to no longer find the correct entry point? |
|
Nov 15 |
comment |
Non-exponential formatted float Knowing a bit of information from the inside, this input file itself is not available for modification. |
|
Nov 13 |
comment |
Non-exponential formatted float If you look in Reflector, it calls an unmanaged routine which knows the length of the string. Probably why it doesn't slow it down. |
|
Nov 13 |
comment |
Question about the garbage collector in .NET (memory leak) VirtualMemory != PrivateBytes != WorkingSet. |
|
Nov 13 |
revised |
Non-exponential formatted float deleted 160 characters in body |
|
Nov 13 |
revised |
Non-exponential formatted float added 81 characters in body |
|
Nov 13 |
comment |
Non-exponential formatted float As far as I can tell, that seems to make no appreciable difference in speed, but it is still worth switching to. I think that is probably because of how narrow the columns are (11 characters). |
|
Nov 13 |
answered | Non-exponential formatted float |
|
Nov 13 |
comment |
Non-exponential formatted float You're correct, switching to String.Concat(a, b, c) improves the performance of yours greatly, to only 5% behind Brian's. |
|
Nov 13 |
comment |
Non-exponential formatted float Intel X5260: 50-60ms v. 80-90ms. Range of runtimes after warming each of them up. |
|
Nov 13 |
comment |
Non-exponential formatted float Benchmarking against his corpus expanded to 25k lines, shows about a 40% slowdown, mostly due to the String.Format. |
|
Nov 13 |
comment |
Anyone feel like passing it forward? While I agree, having worked in NPI for a Fortune 10 company, I can tell you without a shadow of a doubt there is very little, if any, important "trade secrets" developed by the vast majority of LOB companies. This isn't to say the company doesn't think it's invented the fountain of youth... |
|
Nov 12 |
comment |
Pattern to catch exception from sections of code (while not making eyes bleed)ExceptHandler should be made more .Net-like and have it be h.Step = sEnum.First, rather than a SetStep() method. |
|
Nov 12 |
comment |
Pattern to catch exception from sections of code (while not making eyes bleed) Inherit from exception, follow the design guidelines, and add a public property that contains the enumeration value. msdn.microsoft.com/en-us/library/… |
|
Nov 12 |
answered | Pattern to catch exception from sections of code (while not making eyes bleed) |
|
Nov 10 |
answered | WPF Dynamic Binding X and Y Co-ordinates |
|
Nov 10 |
comment |
Tool to find all unused Code NDepend makes no changes, it just provides data. |
|
Nov 10 |
comment |
Tool to find all unused Code Not quite a duplicate since you want CSS too, but: stackoverflow.com/questions/65585/… |
|
Nov 10 |
comment |
Writing drive C: in Windows 7/Vista Oy, I've been in that boat a few times, not enviable. I've voted up @Henk's as he has one of the better answers. |
|
Nov 9 |
answered | Writing drive C: in Windows 7/Vista |
|
Nov 9 |
comment |
Writing drive C: in Windows 7/Vista +1, When in Rome. |
|
Nov 9 |
comment |
C# regex and html, end at the first “ Hmmm, also it should be noted that it is valid HTML to use a single quote to quote attributes, although if the OP knows this isn't the case they can safely ignore that possibility. |
|
Nov 9 |
comment |
C# regex and html, end at the first “ Can I suggest using an @ quoted string, as this will vastly improve readability and maintainability wrt slashes in regular expressions: @"img\s+src\s*=\s*""([^""]*)""" |
|
Nov 6 |
revised |
When are two enums equal in C#? added 620 characters in body |
|
Nov 5 |
revised |
When are two enums equal in C#? added 192 characters in body |
