0
votes
1answer
26 views
What are some authoritative/respected “best known implementation” websites/resources?
Open source projects are very popular. Some of these are libraries suited for specific purposes, the best of which include some very well-written code.
However, if you're interest …
2
votes
11answers
174 views
Is there really a performance hit when catching exceptions
edit: Someone had added the C# keyword. I am NOT talking about C#. just exception in general. Specific in compiled languages like C++ and D, C# was also in my mind.
I asked a que …
3
votes
7answers
92 views
Use of Vertical Whitespace
My intention in this question is not to be pedantic, but rather to explore an overlooked axis of an important topic (the use of whitespace).
Much debate and care has been put into …
2
votes
5answers
75 views
Role of Unit Tests [closed]
I have been reading a lot of literature on testing lately, and I am a bit confused by the expectations of tests and the value they bring into the project. Many advocate many benef …
0
votes
3answers
24 views
Optimal way for partitioning a cell based shape into a minimal amount of rectangles
Assume a boolean array like:
1111
1111
1110
1111
1001
Now you need to find the way of arranging the least rectangles of any size to achieve this shape. So, for example, you'd fi …
3
votes
3answers
45 views
Are there any open-source military/war strategy simulating engines/frameworks?
Are there any open-source military/war strategy simulating engines or frameworks? Combat rules engines or weapon selection guides? I'm looking for something similar to a military s …
13
votes
4answers
623 views
Code Golf: Running Water
The challenge
The shortest code by character count to identify and mark water depressions in the ASCII representation of a land from input.
Input will be an ASCII representation …
2
votes
5answers
121 views
Fastest method to fill a database table with 10 Million rows
What is the fastest method to fill a database table with 10 Million rows? I'm asking about the technique but also about any specific database engine that would allow for a way to d …
1
vote
1answer
21 views
Constrained graph transformation in scheduling applications
I'm working on an interactive job scheduling application. Given a set of resources with corresponding capacity/availabilty profiles, a set of jobs to be executed on these resources …
1
vote
4answers
115 views
Tips for Project Euler Problem #78
This is the problem in question: Problem #78
This is driving me crazy. I've been working on this for a few hours now and I've been able to reduce the complexity of finding the num …
343
votes
393answers
56k views
What’s your most controversial programming opinion?
This is definitely subjective, but I'd like to try to avoid it becoming argumentative. I think it could be an interesting question if people treat it appropriately.
The idea for t …
18
votes
17answers
598 views
TDD vs. Unit testing
My company is fairly new to unit testing our code. I've been reading about TDD and unit testing for some time and am convinced of their value. I've attempted to convince our team …
1
vote
3answers
44 views
Angles to decimal conversion
Hi,
I'm trying to understand some flash animation, and am having difficulty working out the following. Can anyone help?
I want to convert a degree range of 0 to 90, to a value b …
26
votes
19answers
1k views
Code Golf: Sierpinski’s Triangle
The challenge
The shortest code, by character count to output an ASCII representation of Sierpinski's Triangle of N iterations made from the following ASCII triangle:
/\
/__\
…
7
votes
8answers
229 views
Is it bad practice to use temporary variables to avoid typing?
I sometimes use temporary variables to shorten the identifiers:
private function doSomething() {
$db = $this->currentDatabase;
$db->callMethod1();
$db->callMe …
