What are good practices to perform software based optimization?
On a project that I am working on we encountered some performance problems.
Should I charge a client for mistakes that I made? [duplicate]
This question already has answers here: Who should pay for fixes/bugs? [closed] (7 answers) Closed 10 years ago. After developing a website for a client, I’ve realized that the load time is too extreme, and some changes need to be made. The extreme load times are attributed to the bloated css/js frameworks that I’ve been […]
Eager Loading Constraints
The thing is, eager loading some object with all of it’s associations reduces the queries made to the database, but the query time is greatly increased.
The question is: This increased query time in the end pays off the database not being hitted so often?
What backs up the claim that C++ can be faster than a JVM or CLR with JIT? [closed]
Want to improve this post? Provide detailed answers to this question, including citations and an explanation of why your answer is correct. Answers without enough detail may be edited or deleted. As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, […]
What does it mean by expected running time and average running time of an algorithm?
Let’s say we want to analyze running time of algorithms. Sometimes we say that we want to find the running time of an algorithm when the input size is n and for the worst possible case it is denote it by O(n). Sometimes though I see books/papers saying that we need to find the expected time of an algorithm. Also sometimes the average running time is used .
Is there any better approach to shortest path finding within a (vehicular) traffic network?
Dear fellow programmers,
The limit of Int32 for Identity Column
This is just a consideration for a site am creating and for other big sites out there.
Compilable modern alternatives to C/C++ [closed]
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for […]
What is faster and preferable way for variable assignment in ruby? [closed]
Closed 12 years ago.
Optimizing hash lookup & memory performance in Go
As an exercise, I’m implementing HashLife in Go.