17
votes
15answers
815 views
Code Golf: Ulam Spiral
The Challenge
The shortest code by character count to output Ulam's spiral with a spiral size given by user input.
Ulam's spiral is one method to map prime numbers. The spiral st …
4
votes
4answers
36 views
General strategy for finding the cause of random freezes?
I have a application which randomly freezes, including the IDE and it's driving me mad. That makes me wonder:
What's a good general strategy for finding the cause of random freeze …
3
votes
2answers
54 views
Algorithm to implement kinetic scrolling
What are the good algorithms to apply to kinetic scrolling implementation? The feature would be tested on custom UI list. While I am targeting mobile devices (those that do not hav …
4
votes
8answers
193 views
Calculate percent at runtime
I have this problem where I have to "audit" a percent of my transtactions.
If percent is 100 I have to audit them all, if is 0 I have to skip them all and if 50% I have to review …
-1
votes
1answer
41 views
What kind of learning algorithm would you use to build a model of how long it takes a human to solve a given Sudoku situation?
I don't have much experience in machine learning, pattern recognition, data mining, etc. and in their underlying theory and systems.
I would like to develop an artificial model of …
346
votes
398answers
57k 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 …
2
votes
2answers
78 views
Graph Theory: Find the Jordan center?
I'm trying to find the set of vertices that minimizes their distance to other vertices on a weighted graph. Based on a cursory wikipedia search, I think that this is called the Jor …
1
vote
9answers
273 views
Why programming languages do not include spaces in the method “identifiers”?
This may seem like a dumb question, but still I don't know the answer.
Why do programming languages do not include spaces in the names ( for instance method names )?
I understan …
1
vote
2answers
36 views
Using magic strings or constants in processing punctuation?
We do a lot of lexical processing with arbitrary strings which include arbitrary punctuation. I am divided as to whether to use magic characters/strings or symbolic constants.
The …
1
vote
2answers
32 views
Data Access object: Singleton or many small ones?
When developing an application (web, win, whatever) which does alot of data access, is it better to keep your data access object open for the length of the request (i.e. do many th …
3
votes
5answers
267 views
Staying Relevant As a Programmer [closed]
I am interested in hearing how various people remain in the Software Engineering industry for so long in their careers. I am at a crossroads myself as I have worked with Network En …
281
votes
358answers
33k views
What is the single most effective thing you did to improve your programming skills?
Looking back at my career and life as a programmer, there were plenty of different ways I improved my programming skills - reading code, writing code, reading books, listening to p …
34
votes
5answers
2k 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 …
1
vote
4answers
78 views
Law of Demeter violation proves useful. Am I missing something?
I have some code like this in my application. It writes out some XML:-
public void doStuff( Business b, XMLElement x)
{
Foo f = b.getFoo();
// Code doing stuff with f
// …
141
votes
151answers
9k views
What are common UI misconceptions and annoyances?
I often use applications and electronic devices for which I think: "Why on earth did they engineer that thing as it is? They must have known that it is a pain in the neck to work w …
