Guvante

1,174
Reputation
64 views

Registered User

Name Guvante
Member for 1 year
Seen 4 hours ago
Website
Location US
Age 23
Computer Science student with aspirations for Game Design.
Nov
23
answered Validate 2 lists using FluentValidation
Nov
17
comment What can I do about ambigous wildcard patterns in Struts?
If 2.1.9 is giving a better error message, then try getting it to work in that version then backport, if it is using the same logic with some additional checks then this trick should work. If it is a different method, then obviously it won't
Nov
16
answered Getting error when trying to use stage.height to place a graphic
Nov
16
answered What can I do about ambigous wildcard patterns in Struts?
Nov
6
accepted Proper way to delay an application while a service is starting?
Nov
3
comment Trying to Count specific items in QUERY
Wouldn't ELSE 0 work better?
Nov
3
comment Eating up processing power
This would be a good way to get your CPU down to 80%, but I think it may have slightly different effects in comparison to a more direct approach. Such as never causing a theoretical program to sleep.
Nov
3
answered Proper way to delay an application while a service is starting?
Nov
2
comment how to fix this program?
-1 for giving what looks like a homework problem and not actually asking a question.
Oct
13
answered iPhone button with non-rectangle shape?
Sep
18
awarded  Yearling
Aug
28
answered Rhino Mocks, Interfaces and properties
Aug
1
comment How can I stop my Visual Studio from launching IE8 TWICE when I click “Start Without Debugging” (Ctrl-F5)?
@cwrea: My change wouldn't remove that behavior, it would fix the fact that the second page loaded in a different window. It seems as if VS is intentionally calling the about:blank page first, I do not know why, but I am glad your problem is fixed.
Jul
29
comment How do I compare types when using generics?
Actually he is going through the entire hierarchy. Additionally, ICollection<> does not implement ICollection directly.
Jul
29
answered How can I stop my Visual Studio from launching IE8 TWICE when I click “Start Without Debugging” (Ctrl-F5)?
Jul
28
answered Restarting a Windows service from a Linux box
Jul
28
comment Is there a Java tool to automate the reduction of class and method visibility?
Clarification would be nice, do you want a tool to do regression analysis to determine what needs to be public and mark everything else as private, or do you want to be able to input some kind of list of what your public API should be and have it digest that to determine it?
Jul
27
answered What’s the nvelocity/C# equivalent of “if x in array” ?
Jul
21
comment GC.Collect()
Very inclusive but concise
Jul
20
answered String memory management during the assignment stored in the map
Jul
11
comment Any example of a necessary nullable foreign key?
RE: Neil Butterworth I have worked with such a system, and I can say that NULL is much more obvious (What better describer for nothing than nothing) Now if performance polling shows that NULL foreign keys are a problem then avoid them, in fact that was why the system did, but otherwise you are doing a premature optimization. (IMHO)
Jun
19
comment Is it necessary to wrap StreamWriter in a using block?
Common misconception, Dispose is a way to tell consumers of your class that the object should be cleaned up, Finalizers are the way that the garbage collector cleans up when the object leaves scope or the program ends.
Jun
19
comment Is it necessary to wrap StreamWriter in a using block?
Finalizers are the term for what does the clean up on exit.
Jun
19
comment Simplest way to do a fire and forget method in C#?
There is no way to have a non-blocking method call that is guaranteed to run, so this is in fact the most accurate answer to the question IMO. If you need to guarantee execution then potential blocking needs to be introduced via a control structure such as AutoResetEvent (as Kev mentioned)