Charles Graham

4,059
reputation
329 views

Registered User

name Charles Graham
member for 1 year
seen 3 hours ago
website
location Philadelphia, PA
age 28
Programmer from Philly.
Nov
12
comment What non-programming books should programmers read?
I've heard criticisms of Gladwell like that, but those guys just sound like haters. Does anyone have a specific example of one of his arguments that is completely wrong?
Oct
13
answered How to catch inner exception in .NET?
Oct
13
comment What’s the difference between the Dependency Injection and Service Locator patterns?
I prefer "Singletons Considered Stupid", steve.yegge.googlepages.com/singleton-considered-…
Oct
13
asked What’s the difference between the Dependency Injection and Service Locator patterns?
Oct
12
awarded  Popular Question
Oct
9
awarded  Nice Answer
Oct
5
awarded  Popular Question
Sep
25
comment How do the Proxy, Decorator, Adaptor, and Bridge Patterns differ?
Well, these four patterns have the exact same implementation details. State verses Strategy can at least be summed up as state-full verses stateless (for the most part). Often, the Strategy is just method injection, where the state pattern uses an interface to do more then abstract away a method call. The strategy, also, at the end of the day, is a hack to allow functional programming in the OO world.
Sep
23
awarded  Nice Question
Sep
16
awarded  Self-Learner
Sep
16
awarded  Yearling
Aug
25
comment How do I turn off the “Convert Extension Method to Plain Static” automatic refactoring in resharper?
Nope, it doesn't look like I have any cleanup profiles set up. This actually only happens in a particular circumstance. Namely a Linq To SQL extension method defined in a partial class.
Aug
25
asked How do I turn off the “Convert Extension Method to Plain Static” automatic refactoring in resharper?
Aug
14
awarded  Popular Question
Aug
13
awarded  Tumbleweed
Aug
6
comment In SQL is there a difference between count(*) and count(<fieldname>)
I'm sure that this would probably have the same perf as COUNT(Clustered_Index_Column), since it has to actually read the CI regardless. But it was a cool trick that the DBA put in the SQL standards. That is, don't select a column by name if you don't need it.
Aug
6
asked Good Tutorial for Resharper Templates
Jul
31
answered In SQL is there a difference between count(*) and count(<fieldname>)
Jul
31
comment Can you use Optional Parameters in code targeting .Net 3.5?
Yeah, I know. I love Optional parameters but hate VB. ;) Plus, having an app in 2 languages is kind of a kludge if you only need VB stuff for one or two classes.
Jul
31
comment Can you use Optional Parameters in code targeting .Net 3.5?
Yeah, I would think that this is the case, but I don't want to go through installing VS2010 when it isan't RTM yet if it doesn't give this to me.
Jul
31
asked Can you use Optional Parameters in code targeting .Net 3.5?
Jun
28
accepted do you put your calculations on your sets or your gets . .