3,508
Reputation
719 views

Registered User

Name
Member for 10 months
Seen Nov 18 at 23:30
Website
Location
Age
Nov
2
awarded  Good Answer
Oct
30
awarded  Popular Question
Sep
28
comment Why is internal protected not more restrictive than internal?
It occurs to me, (months later of course) that the setter is still accessible "internally" which is in some ways less restrictive than protected. To fully make it an internal getter and a protected setter, you would have to have protected void SetIP(bool value) and internal bool GetIP() and then have a private bool _IP
Sep
26
accepted What is a good ratio of developers to testers?
Sep
23
comment GC.Collect on only generation 2 & large object heap
Setting myVar = null doesn't accomplish anything. See the bottom of bryancook.net/2008/05/…
Sep
23
comment GC.Collect on only generation 2 & large object heap
Your explanation is a great overview of how the GC works, but it doesn't clarify why there is a constraint that precludes a strictly gen 1 or gen 2 collection.
Sep
23
comment GC.Collect on only generation 2 & large object heap
I'm aware of that. Basically, you NEVER want to manually force a GC, because they are intensive operations. Since that is the case, when I see the need to run a GC, I would want it to only run against the specific generation, rather than do a full GC. I'm trying to be more particular about my use of the GC, and it isn't letting me.
Sep
23
comment GC.Collect on only generation 2 & large object heap
Thanks! Please note, I've edited my question to also ask why it is constrained in this way.
Sep
23
revised GC.Collect on only generation 2 & large object heap
added 80 characters in body
Sep
23
asked GC.Collect on only generation 2 & large object heap
Sep
22
comment How to detect if a Windows version is legal or not?
(-1) This is a comment, not an answer. You haven't provided any help on accomplishing what he asked you how to accomplish.
Sep
16
comment need help fixing css for IE6 >_<
(-1) Does not solve the issue. Also, obnoxious.
Sep
3
comment Does It Make Sense to Move to 64-bit for a “Typical” Mac OS X Application?
I would say provide both download options and have an "I'm not sure!" link directly beneath them. In terms of the performance considerations, I must admit (as you've probably guessed) that I do not know.
Sep
3
comment Does It Make Sense to Move to 64-bit for a “Typical” Mac OS X Application?
Well, if you convert to 64bit and they have 32bit, then you've lost them as a customer. If you are that worried about it, you could have a 'default' download of one of them, and have the other one as an option further down on the page. Alternately you could give instructions as to how to determine which one you are. I don't know what kind of users you have (technical or non), but the LAST thing you want is hardware incompatibilites, and you want your users to have the option that fits them with the lowest inconvienience.
Sep
3
comment In .NET which loop runs faster for or foreach
@Hardwareguy: Once you know that for is almost imperceptably faster, why shouldn't you start using it in general? It doesn't take extra time.
Sep
3
answered Does It Make Sense to Move to 64-bit for a “Typical” Mac OS X Application?
Sep
2
comment Sharepoint UpdateListItems list not updating
Cool! Thanks for the update. You should add your own answer to the question. Either edit it into the question itself, click "post an answer" at the bottom.
Sep
1
comment How to keep being productive when you are tired?
It is a common issue amongst everyone. We all get the flu, that doesn't make medical questions appropriate here.
Sep
1
revised Are endless loops in bad form?
added 11 characters in body
Sep
1
comment Sharepoint UpdateListItems list not updating
Are you using C# to process the batch? Are you using the "ProcessBatchData" function? If you are, what is the result string?
Sep
1
revised Sharepoint UpdateListItems list not updating
added 156 characters in body
Sep
1
answered Sharepoint UpdateListItems list not updating
Sep
1
comment Sharepoint UpdateListItems list not updating
Could you post a code snippet?
Aug
31
comment Can I put a return statement inside a lock
I couldn't find the results because I wasn't using the right search terms before. Yeah, it's a dupe.
Aug
31
revised Can I put a return statement inside a lock
Dupe found
Aug
31
asked Can I put a return statement inside a lock
Aug
31
accepted Any good strategies for dealing with ‘not reproducible’ bugs?
Aug
31
comment How do you put an large existing database (schema) under source control?
Well, the first part is convincing him that switching will be easy. If he feels that switching will make his job harder, then it could in fact be worse to switch. Now of course, using version control is easier, so you're fighting against perception. Start there. Then convince him that it is worth switching to some version control. If you can then do some requirements gathering on what he feels are the deficiencies in his own process, then you might be able to find a product that fixes the things that he admits need fixing. Then you can wean him onto all the other useful functions.
Aug
31
comment How do you put an large existing database (schema) under source control?
In that case, if he's good at doing it his way, and I'll assume that he is, otherwise he could be forced to change. The main feature that DB edition, or any source control has is that it can be updated by any number of people and they changes will be automatically merged. Obviously, someone needs to wtach the merge, but it means that it won't miss changes the way that a manual merge would. If there are many people touching the database, stuff happens. *bad* stuff. So, DB source control allows multiple people to work on the same database without touching it.
Aug
31
answered How do you put an large existing database (schema) under source control?
Aug
28
comment Explanation why IEnumerable is more efficient then a List
@Greg: I feel that Andrew's answer does not answer the question in a useful way. The question is about efficiency and performance considerations, and Andrew's answer, although factually correct, glosses over those parts.
Aug
28
comment Explanation why IEnumerable is more efficient then a List
(-1) A minimalist IEnumerable<t> would be smaller and faster than IList<t>. Not by much, but List<t> has overhead because it is more complicated.
Aug
27
comment How can I run an executable from RAM using C++?
@Adrian. His technical question is the same, regardless of whether or not he has some magical story of why it is necessary.
Aug
26
revised WPF PathGeometry/RotateTransform optimization
modified the code formatting to remove the pointless scrollbar
Aug
25
accepted MOSS All Groups does not show pagination when more than 100 groups returned
Aug
21
comment How can I use the jQuery Round Corner plugin to make round corners?
@Kip. There are tech savvy users who use IE.
Aug
21
comment How can I use the jQuery Round Corner plugin to make round corners?
does that work in IE?
Aug
17
comment Beyond Hello World
@Chuck Good meaning what? This question is wildly subjective, because every person's answer will be just as good as anyone else' answer.
Aug
14
comment Vista Reverts My Code On Me
I upvoted your comment (and your answer) because you're absolutely right. That virtual store doesn't make any sense.
Aug
14
comment Vista Reverts My Code On Me
The only way for a file to actually have versions is if the file internally holds revision information (as some word documents do), which the Vista 'copy' function would not have the ability to mess with (all it is doing is creating another copy of the bits involved) or if there is an external versioning system involved. In which case, we would need to know what that system is.
Aug
14
comment Vista Reverts My Code On Me
@Spencer. The behaviour described IS impossible. If I take a txt file reading "Hello world" then I save it, then I open it, change the value to "Goodbye world" then save it again. At that point, the "Hello" does not exist anymore. That is, assuming I actually saved it. If I copy the file somewhere else, and it shows "Hello world" that means that I never actually saved it.
Aug
14
comment C# application terminates unexpectedly
Add more consistent logging so that you add log-lines at regular checkpoints and at any constantly re-occurring functions. That way you should be able to determine the last known 'still working' point.
Aug
14
comment Vista Reverts My Code On Me
If they are simply files on a harddrive, this is impossible. If they are integrated into some sort of source-control, what source control provider is it?
Aug
12
awarded  Good Answer
Aug
3
awarded  Enlightened
Jul
29
accepted When, why, and what should one use a logger for?
Jul
29
answered When, why, and what should one use a logger for?
Jul
29
comment When, why, and what should one use a logger for?
Check out this link: stackoverflow.com/questions/782244/…
Jul
29
comment Are there other strategies available for auto-incrementing a primary key besides the default x+1?
@Dan: If ID(n + 1) = ID(n) + Rand(greater than zero), all n will be unique
Jul
29
answered how to search for a word in a book programmatically?