2,772 reputation
1721
bio website blog.svick.org
location Czech Republic
age 25
visits member for 2 years, 8 months
seen 21 hours ago
stats profile views 136

1d
revised Is this pattern bad?
edited tags
2d
revised Nested Try Catch Error Handling with Log Files?
rm tag from title
May
22
revised Cuda based GPU programming using Java, C# or C++?
rm signature
May
22
revised Property proper naming to represent string starting with number
rm tag from title
May
16
revised How should I behave as a developer in a project that's headed for failure?
list formatting
May
15
comment Why is 0 false?
@NeilG I think Giorgio is trying to say it's more than just a convention. 0 and 1 in boolean algebra are basically the same as 0 and 1 in GF(2), which behave almost the same as 0 and 1 in real numbers with regards to addition and multiplication.
May
15
answered Why is 0 false?
May
12
comment In C# what is lifetime or lifespan of constant variable?
@RichardJ.RossIII With one exception: you can do const SomeReferenceType constField = null;.
May
9
revised What principle of OOAD is this pattern breaking?
shorter title
May
9
revised Why is there no 'finally' construct in C++?
link formatting
May
8
comment Data structure for accessing units of measure
Could you explain in what ways don't the libraries you found fit your needs?
May
8
comment How does Go improve productivity with “implicit” interfaces, and how does that compare with C#'s notion of Extension Methods?
These Go interfaces sounds more like what C++ templates can do than C# extension methods. In C# there is nothing like “any type that implements methods A and B”, but you can do that using C++ templates.
May
3
comment Is it possible to write a code without class methods, globals, and class variables?
How would you implement singleton without statics?
Apr
29
comment Storing data in code
200 objects? I don't think you have to worry about performance, especially if it's a one-time cost.
Apr
29
comment I should have used a factory method instead of a constructor. Can I change that and still be backwards-compatible?
The base class could have the most obvious name if put all the new code into a new namespace. But I'm not sure that's a good idea.
Apr
29
revised Why DependencyProperties and not native language support?
typos
Apr
27
comment Extension objects pattern
This sounds like you should rethink your design.
Apr
27
comment Approach of delivering “Logging API”
What existing framework features are you talking about? Or did you mean existing libraries?
Apr
27
comment Approach of delivering “Logging API”
Since this is an interwiew questions, I think a folloup question after an answer like this would be: "Okay, but what if you couldn't/didn't want to use an existing library?"
Apr
26
answered Why DependencyProperties and not native language support?