4,583 reputation
21631
bio website theslice.livejournal.com
location Olathe, KS
age 41
visits member for 2 years, 8 months
seen 2 hours ago
stats profile views 186
Just another programmer making his way in the world and hopefully helping others make theirs too.

May
16
comment Multiple Interfaces in Java - Good or bad
As always, it depends.
May
15
revised Did the developers of Java consciously abandon RAII?
changed `my` to `var` in the `using` statement.
May
14
revised Did the developers of Java consciously abandon RAII?
fixed title spelling, added code syntax here and there.
Apr
25
comment Is it a good practice to create a ClassCollection of another Class?
I believe that falls under the software development mantra of "it depends". If you're talking about, for example, your FindCarByModel method, that makes sense as a method on your repository, which is slightly more complex than just a Car collection.
Apr
25
answered Is it a good practice to create a ClassCollection of another Class?
Apr
17
comment Why doesn't C# have local scope in case blocks?
Not a downvoter, but this was a comment made on the question yesterday.
Apr
15
revised How can I estimate the entropy of a password?
edited body
Apr
15
awarded  Fanatic
Mar
18
answered Microsoft's coding standards for ASP.NET controls
Mar
13
comment Making the case for .net
Separate "windows server license cost" from continuing to use C# as your development platform. The Mono Project (mono-project.com) is an excellent port of C# and the .NET Framework which works under a variety of operating systems, including Linux.
Mar
7
answered what is a proper way to register eventHandler
Mar
6
comment Prevent developers from using constants
I did something similar here: stackoverflow.com/a/2930351/3312
Feb
26
comment coding style for If condition
@svick: thanks, you are absolutely correct. Just confirmed it.
Feb
26
revised coding style for If condition
fixed as per svick.
Feb
26
revised coding style for If condition
fixed as per svick.
Feb
25
answered coding style for If condition
Feb
25
awarded  Constituent
Feb
18
awarded  Caucus
Feb
13
comment Why do code generators always use fully-qualified identifiers?
@Ramhound Deflecting the issue aside, my point is such that generated code can still be human-readable and take up a fraction of the space.
Feb
13
comment Why do code generators always use fully-qualified identifiers?
Space may be cheap, but it isn't free. I'll bet many of the XSDs that get generated into code can have their size knocked down by at least half with all the fully-qualified attribute class names everywhere. SqlMetal (the LINQ-to-SQL generator) does the same. This stuff adds up after a while.