Jeffrey L Whitledge

4,203
Reputation
293 views

Registered User

Name Jeffrey L Whitledge
Member for 1 year
Seen 4 hours ago
Website
Location Little Rock, Arkansas, USA
Age 36
I am a C#/SQL Server developer, mostly in winforms, but I'm being dragged kicking and screaming into web development. I have a Master's in computer science with an emphasis in artificial intelligence. I am a member of the ACM, and I love programming.
Nov
27
answered Use types referenced by a referenced project in C#
Nov
25
comment What’s the strangest corner case you’ve seen in C# or .NET?
Someday I shall write a program that depends on this behavior, and the demons of darkest hell will prepare a welcome for me. Bwahahahahaha!
Nov
25
comment Finding out total and free disk space in .NET
Thanks for the votes, guys! But please don't let me be a distraction. Anybody, got an answer with pinvoke, or something?
Nov
25
answered Finding out total and free disk space in .NET
Nov
25
comment Project Euler #10 Conundrum
Why not calculate it directly? Let's see, the sum of all integers is n * (n + 1) / 2...subtract composite multiples of two... n(n+1)/(2p)-p...um.... I'll leave the rest as an excersize. :-)
Nov
25
revised How to avoid double check locking when adding items to a Dictionary<> object in .NET?
added 797 characters in body; added 41 characters in body
Nov
25
revised How to avoid double check locking when adding items to a Dictionary<> object in .NET?
typos
Nov
25
revised How to avoid double check locking when adding items to a Dictionary<> object in .NET?
added 1158 characters in body
Nov
25
answered How to avoid double check locking when adding items to a Dictionary<> object in .NET?
Nov
25
accepted how to copy a list to a new list, or retrieve list by value in c#
Nov
24
answered Why doesn’t getchar() recognise return as EOF in windows console?
Nov
24
answered how to copy a list to a new list, or retrieve list by value in c#
Nov
24
answered C#: interface inheritance getters/setters
Nov
24
answered C#: Custom 2-dim arrays trouble
Nov
23
comment Interview question: f(f(n)) == -n
@DrJokepu - Wow, after six months--jinx!
Nov
23
comment Interview question: f(f(n)) == -n
The question specified 32-bit signed integers. This solution does not work for two's-complement or one's-complement representations of the 32-bit signed integers. It will only work for sign-and-magnitude representations, which are very uncommon in modern computers (other than floating point numbers).
Nov
23
comment Interlocked and Memory Barriers
Volatile is not an alternative to Interlocked.Exchange(), because it does not ensure atomic sequences of read and write operations. Volatile only ensures that the operations will not be reordered.
Nov
19
comment Interlocked and Memory Barriers
Yes, in this case it is safe to ignore the compiler warning. Passing the variable (by reference) to any method other than the interlocked methods would be a problem, but for the interlocked methods it's OK.
Nov
19
answered Interlocked and Memory Barriers
Nov
18
comment Unique Id Generation
If a pair of twins are both named George Foreman, then you may have trouble with this key.
Nov
17
comment How should I persist order data over time without tying it to underlying product pricing data that is subject to change?
This is correct. Once an order is posted, everything about that order becomes unchanging: item prices, tax info, coupon information, shipping address, etc. You should be able to reprint the invoice and get the exact same document that was printed before. This does not create redundancies in the relational model, because "current price of X" is a different thing from "order Y line item Z price", even if the values happen to be the same right now.
Nov
17
answered How to log exceptions in Windows Forms Application
Nov
17
answered When should we create a new method?
Nov
13
comment Convert an array of integers for use in a SQL “IN” clause
@thecoop - "(" + str + ")" gets converted to System.String::Concat(string, string, string) which should not create any additional temporary strings beyond what the string.Format solution would also create with the same parameters. I just verified this with ILDASM.
Nov
13
answered Convert an array of integers for use in a SQL “IN” clause
Nov
13
answered MATLAB Solving equations problem
Nov
10
comment Ways to prevent over-engineering?
@S.Lott - I am not talking about endlessly analyzing the problem. I am talking about scrapping semi-functional code that requires endless tweaking in favor of a whole new ground-up solution that can invisioned with the experience that came from the first attempt. The solution may even be "obvious" once the idea of examining alternatives is proposed. Programmers are often fearful of scrapping code that kinda works. My experience has been that such leaps can pay off in a big way once the decision is made to try it.
Nov
10
comment Is File.Exists an expensive operation?
Also note that File.Exists() almost never needs to be called. It is usually used to validate a future IO operation, but it can't really do that, because the file's existence may change between the time Exists is called and the time the IO operation is performed. It is usually better just to attempt the operation that is being validated, and see if it works. Obviously, there are many counter-examples of this, and your app may qualify as one of them.
Nov
9
revised C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation?
added 238 characters in body
Nov
9
answered C#: Is there an Advantage to Disposing Resources in Reverse Order of their Allocation?
Nov
9
comment What is the difference between varchar and nvarchar
@knittl - char, nchar, varchar, and nvarchar each take a length parameter which the database engine can use to optimize storage. UTF-16 (when sticking to the BMP) has a simple two-to-one relationship between bytes of storage and characters, which the database can take advantage of. The amount of storage required for a UTF-8 string of N characters is not as clear, and could result in wasted space, or unexpectedly truncated strings. (For chars outside the BMP, UTF-16 strings could also be truncated unexpectedly, but this is less common, esp. since many OS's/dev-platforms use UTF-16 internally.)
Nov
9
comment Ways to prevent over-engineering?
Investigating alternatives is something I have seen far to little of among developers. Sometimes the third or fourth solution considered will shave months off of a project, even if you're already in the middle of working on the first solution. But this takes creativity and effort, and it is difficult to do. Mental inertia should never be allowed to wreck a project.
Nov
7
comment Is there a fairly simple way for a script to tell (from context) whether “her” is a possessive pronoun?
"You didn't allow for her, admittedly contrived, interrupting phrases."
Nov
7
answered Is there a fairly simple way for a script to tell (from context) whether “her” is a possessive pronoun?
Nov
5
answered Visual C# publishing without installer
Nov
5
answered When are two enums equal in C#?
Nov
4
revised What is the difference between varchar and nvarchar
Added more Unicode fanboy rantings.
Nov
4
comment What’s the worst security hole you’ve ever seen?
This is the same behavior as Windows itself when a computer is not administered by a domain. Even on Windows Vista Ultimate, you can reset a password at any time. I am guessing that denial-of-service is considered a bigger threat than unauthorized access; especially since you can get most stuff just by re-mounting the drive elsewhere anyway. I believe the purpose of the password in this case is for intrusion detection rather than prevention.
Nov
4
comment SQL Server: How to extract comments from stored procedures for deployment
Instead of hiding all of your "validates the employee type field, because the ID10Ts are liable to type *anything*" comments, you should probably just delete them. :-)
Nov
4
revised which side has more characters
added 88 characters in body
Nov
4
answered which side has more characters
Nov
4
answered C# - Calling a structure method inside a non-default structure contructor
Oct
31
answered UDP Multicast Performance Under Load
Oct
31
answered Creating a Catch-All AppToolbox Class - Is this a Bad Practice?
Oct
23
awarded  Guru
Oct
23
revised Programmatically obtaining Big-O efficiency of code
Added research link and caveates.
Sep
16
awarded  Yearling
Sep
8
answered Parsing Source Code - Unique Identifiers for Different Languages?
Aug
11
comment Language Maturity Lifecycle
In my opinion, since the differences from one assembly language to the next are a direct response to differences in the targeted hardware, the evolution of assembler is more indicative of hardware evolution rather than software evolution. Assembly Language itself—if such a thing can be considered apart from a particular set of opcodes—hasn't changed much over the years. At least in my opinion. Perhaps an expert on Assembly Language would think differently.