Not Sure

2,024
Reputation
403 views

Registered User

Name Not Sure
Member for 10 months
Seen Jul 21 at 0:33
Website
Location
Age
Oct
30
awarded  Enlightened
Jul
17
comment c# mileage counter
@jarus - we're not going to do your homework for you, how about showing us what you tried
Jul
17
answered Is there a way to get Eclipse to treat 4 spaces exactly as it treats a tab?
Jul
16
accepted Whats the best way to store a version number in a Visual Studio 2008 project?
Jul
16
answered Whats the best way to store a version number in a Visual Studio 2008 project?
Jul
16
comment is there a difference in the runtime of the following:
They have the same Big-O, but contrary to most claims below, it is impossible to know which will be faster at runtime without knowing what step1, step2, and step3 do. There's code-cache coherency, data-cache coherency, branch prediction accuracy...any number of things that can change the runtime performance. Timing it yourself is the only way to "know," and even so, the results are still specific to your hardware.
Jul
14
comment Using TypeDescriptor in place of TryParse
Where is it failing? Is converter null? Is the IsValid call returning false?
Jul
14
answered How to “add reference” in C++
Jul
13
comment What coding mistakes are a telltale giveaway of an inexperienced programmer?
If you call yourself a "guru" at anything, you might be an inexperienced developer :)
Jul
9
comment What type of diagram is best suited for visualizing threading issues such as contentions?
@John - Yes, I was not aware that was a popular term for such a drawing.
Jul
9
comment Big O question
@Juozas - Big-O is an estimation for the worst case, not a special case.
Jul
9
awarded  Nice Answer
Jul
9
answered What type of diagram is best suited for visualizing threading issues such as contentions?
Jul
9
answered Big O question
Jul
8
comment Strange memory problem of Loki::Singleton, Loki::SmartPtr, and std::vector
If you suspect your objects are getting deleted twice, have you tried sticking breakpoints in your destructor and checking the call stack?
Jul
7
answered Strange memory problem of Loki::Singleton, Loki::SmartPtr, and std::vector
Jul
7
comment Why does removing const give me linker errors?
+1 for beating me to it
Jul
7
answered Why does removing const give me linker errors?
Jul
7
comment Read XMLDocument node without reading its child nodes in C#
So I see...you can have your point back :)
Jul
7
comment Read XMLDocument node without reading its child nodes in C#
-1: If I had a pony...
Jul
7
comment Read XMLDocument node without reading its child nodes in C#
Sorry, that still loads the entire XML document into memory. See foreachdev's answer.
Jul
7
comment Read XMLDocument node without reading its child nodes in C#
+1 for the correct answer
Jul
7
comment Uninitialised values of heap and stack space
@Abhijith - How about you look up the Wikipedia pages on heaps and stacks first...
Jul
6
comment Why is msbuild and link.exe “hanging” during a build?
Are you on VS2008 with or without SP1? I did notice that the multi-coring logic of the build process changed after I upgraded to SP1.
Jul
6
asked Visual C++ 2008 Intellisense interprets CLR keywords on non-CLR project
Jul
6
comment c# Monte Carlo Incremental Risk Calculation optimisation, random numbers, parallel execution
8GB of memory is 4 GB of waste on 32 bits...
Jul
6
comment c# Monte Carlo Incremental Risk Calculation optimisation, random numbers, parallel execution
As a note, many modern processors have an assembly instruction for simultaneous calculation of sin and cos, and it is much cheaper than calling both sequentially. It's not available in any standard libraries, afaik, since it is a processor-specific feature.
Jul
6
comment c# Monte Carlo Incremental Risk Calculation optimisation, random numbers, parallel execution
@Reed - Let me clarify - I'm not talking about the ease of profiling, nor the tools available, nor the difficulty of optimizing. I'm asserting that for any program written in an interpreted or managed language, it can be proven that a functionally equal program with equal or better performance can be written in an unmanaged language.
Jul
6
answered c# Monte Carlo Incremental Risk Calculation optimisation, random numbers, parallel execution
Jul
3
answered Why is msbuild and link.exe “hanging” during a build?
Jul
3
comment Reverse a sentence in C??
@neil, edited to use pointers instead...
Jul
3
revised Reverse a sentence in C??
added 12 characters in body
Jul
3
comment Reverse a sentence in C??
There, defined swap :)
Jul
3
revised Reverse a sentence in C??
added 218 characters in body
Jul
3
answered Reverse a sentence in C??
Jul
3
comment Three dimensional matrices: practical usage
en.wikipedia.org/wiki/Matrix_(mathematics)
Jul
3
answered Three dimensional matrices: practical usage
Jul
2
comment What strategies have you used to improve build times on large projects?
I wouldn't say faster machines as much as faster drives - on one of my extremely large C++ projects, having RAID speeded up by a very large amount. Unrelatedly, if one is doing incremental builds on a large Visual C++ project that's not split into DLL's, the link stage will actually be faster if you turn off Incremental Linking.
Jul
2
comment 64 bit floating point porting issues
Platform & compiler are relevant here...
Jul
1
awarded  Citizen Patrol
Jun
30
asked How to implement Auto-Complete with a StandardValuesCollection on a PropertyGrid
Jun
29
comment When is a C++ terminate handler the Right Thing(TM)?
It's crystal clear (to me at least) that the OP already understands that.
Jun
29
comment When is a C++ terminate handler the Right Thing(TM)?
-1, pointless sidestep of the question.
Jun
29
comment why is set_intersection in STL so slow?
You do realize that the C++ std::set is a tree-based structure, while the C# Dictionary is an array-based hashtable, and List is just an array, right? Before even considering the allocation problems of your code, you're comparing apples and oranges.
Jun
26
comment Pre/Post function call implementation
Overkill. See jalf's answer below, using a temporary variable whose constructor and destructor are pre and post, respectively, is a very common and straightforward practice.
Jun
25
comment DataGridView sort and e.g. BindingList<T> in .NET
+1. Why didn't MS just implement this dozen lines of code in the class library in the first place?
Jun
25
comment Why are the arguments to atan2 Y,X rather than X,Y?
7th grade? You must not have gone to public school :)
Jun
25
comment How should I give a programming exam to my students?
Do you actually mean VB Programming, or did you mean to say CS? Programming exams are garbage, without exception. CS exams, on the other hand, don't have to be.
Jun
25
comment Why are the arguments to atan2 Y,X rather than X,Y?
Soh Cah Toa is my pnemonic :)
Jun
25
answered Why are the arguments to atan2 Y,X rather than X,Y?