Greg D

7,878
reputation
1017 views

Registered User

name Greg D
member for 1 year
seen 1 hour ago
website
location Cleveland, OH
age 29
Passionate about pragmatic, effective, and fun software development. :)
1d
comment Regex for string enclosed in <*>, C#
+1 for link to the one and only answer to this question.
2d
comment C# - Set path to pdb
@Metal: I feel a little weird having to say this, but C# isn't C++. (Thanks for not referring to MS with a $ in this comment.)
Dec
12
comment C# - Set path to pdb
Is there an actual reason you want to put the .pdb's elsewhere, or is it just due to the habit? If it's habit, I'd suggest breaking it simply to get along with the vast majority of the world of managed developers. :)
Dec
11
comment Visual studio 2008 stops responding frequently during edit and save
This question is not programming related and should probably be asked on superuser instead.
Dec
10
accepted Stylecop vs FXcop
Dec
10
revised Stylecop vs FXcop
added 514 characters in body
Dec
10
comment Stylecop vs FXcop
It's unlikely that stylecop will become significantly more configurable. A far more important feature for stylecop is the automatic correction of style violations.
Dec
10
answered Stylecop vs FXcop
Dec
10
comment Will multiple Control.BeginInvoke/Invoke calls execute in order?
Ahhh, the edit that states it's Control.BeginInvoke and Control.Invoke changes a lot. Glad somebody was able to cover it for you. :)
Dec
10
answered Will multiple Control.BeginInvoke/Invoke calls execute in order?
Dec
9
comment Why didn’t Ada make it?
Henry Ledgard, from the successful Ada team (cs.fit.edu/~ryan/ada/ada-hist.html) was my instructor at the uni. Sadly, I don't believe his understanding of what a useful language should be has kept up with the times. He was an easy instructor, though! One of my classmates got extra credit on an assignment that didn't even compile.
Dec
6
awarded  Mortarboard
Dec
5
comment Which code is more readable?
I thought that too, until I read this question and some of its answers: stackoverflow.com/questions/836945/…
Dec
5
comment Appending an int to a wchar_t*? ..unresolved, lack of concrete example
+1 for good answer.
Dec
4
comment C++ - Arguments for Exceptions over Return Codes
@David: A fair point. I suggest you mention it to whomever maintains this list at google. :)
Dec
4
comment C++ - Arguments for Exceptions over Return Codes
@Kristopher: I disagree for more or less the reasons I've already quoted in my answer. (The third bullet in the "Cons" section.)
Dec
4
answered C++ - Arguments for Exceptions over Return Codes
Dec
4
accepted Advice on creating customizable touchscreen application
Dec
4
answered System.ObjectDisposedException from simple form display
Dec
4
answered Advice on creating customizable touchscreen application
Dec
3
comment Weird .NET Memory Leak in ClickOnce app that can’t repro as Desktop
@stacked: I don't think that there's really enough to go on, here. Psychic debugging can only go so far. I assume that you're familiar with the usual memory gotcha's in .net (event subscriptions holding references and "leaked" references-- references maintained to large objects that will never be used again).
Dec
3
comment Weird .NET Memory Leak in ClickOnce app that can’t repro as Desktop
How does this relate to the question? I don't believe @stacked ever said that they did release a debug build.
Dec
3
revised Upsidedown question marks question
edited tags
Dec
3
comment VS2008, no embedded application icon?
+1 for learn something new (that I feel I should have already known) every day.
Dec
2
comment In C++, is there a difference between “throw” and “throw ex”?
I'd never noticed that "exception dispatcher" idiom before. Interesting.
Dec
2
accepted C# UserControl constructor with parameters
Dec
1
comment How can I teach a know-it-all beginner programmer?
I remember the very day in school when I realized that all my problems were my own fault. That was a difficult day. At least it wasn't publicly humiliating, though. I just accepted my fallibility and moved on. :)
Dec
1
comment C# -Generic Extension Method
I find myself using techniques like this lengthProvider a lot with generic code. It's just one more reason I love lambdas so much. :D
Dec
1
comment When to use StringBuilder?
+1 for yes! Time spent worrying about this is time spent not doing something that might actually matter.
Dec
1
comment Combine an ‘in-line IF’ (C#) with response.write
@Luke: Actual names and frequently used "de facto" names are often different. :) I'm far more likely to call "#" a "hash mark" or "number sign" than an "octothorpe" if I'm trying to communicate with people.
Nov
30
comment Visual Studio: Help to fix circular reference!
+1: NDepend is a great starting point for a situation like this.
Nov
30
comment does .net provides api to convert ascii to bcd?
smells like homework.
Nov
30
comment How to spot empty parking spaces?
Interestingly, this may be less expensive than the automated solution. Works that way for Captcha, anyway.
Nov
30
comment How to spot empty parking spaces?
Are the cameras mounted on a vehicle bumper or on a building overlooking the parking lot?
Nov
30
comment Combine an ‘in-line IF’ (C#) with response.write
For future reference, it's frequently referred to as "the ternary if operator".
Nov
30
comment C#: get first key from Dictionary<string, string>
+1 for correct. Ordering in a dictionary isn't guaranteed. Perhaps a SortedDictionary would be more useful.
Nov
30
comment When can a design pattern make your software worse?
And it isn't an logger of some sort.
Nov
30
comment What design pattern would you consider is most important to use?
+1 @Paddy for a good monday morning chuckle. :)
Nov
30
answered What design pattern would you consider is most important to use?
Nov
29
comment C# & C++: “Attempted to read or write protected memory” Error
@KK: If you receive an acceptable answer, please accept it by clicking the checkmark next to the answer you like. It is far more likely that people will continue to answer your questions if you show your appreciation by accepting answers.
Nov
29
comment C# & C++: “Attempted to read or write protected memory” Error
@Naveen: Probably not, but it's important to maintain a distinction between implementation detail (reallocation), and language spec (four things that cause invalidation of pointers). Failing to do so is likely to result in dependencies on implementation details that will break future compatibility.
Nov
29
revised C# & C++: “Attempted to read or write protected memory” Error
deleted 7 characters in body; added 307 characters in body
Nov
29
comment C# & C++: “Attempted to read or write protected memory” Error
@KK: Of course it continues to crash. When you add a new string to your container, you invalidate your existing iterators because you've changed the container's size. This includes _it. Please read my comment and the quote from Stroustrup regarding invalidation of iterators.
Nov
29
revised C# & C++: “Attempted to read or write protected memory” Error
added 225 characters in body; added 4 characters in body
Nov
29
revised C# & C++: “Attempted to read or write protected memory” Error
added 100 characters in body
Nov
29
answered C# & C++: “Attempted to read or write protected memory” Error
Nov
24
answered Can lambdas be used without Linq?
Nov
24
accepted What would happen if I re-apply the job that I failed the interview previously?
Nov
24
answered What would happen if I re-apply the job that I failed the interview previously?
Nov
23
answered How many times can classes be nested within a class?