Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
10answers
6k views

What is the Difference between a Heuristic and an Algorithm?

What is the Difference between a Heuristic and an Algorithm?
19
votes
14answers
765 views

Advice for dealing with code maintenance

I've been working at my university this summer in an image/video lab. Just recently, my professor gave me a program written by a grad student who just left the program to "fix up", because it was ...
19
votes
21answers
1k views

A company that had a successful product but went bust for not innovating?

At the company that I work we have a successful software product that did well but is now obsolete and unmaintainable. I am trying to explain that you need to innovate and replace this product with ...
19
votes
6answers
1k views

What should be included in the state-of-the-art error and exception handling strategy?

I understand that this is a very broad question, but a short “it depends” kind of answer will not be accepted. Strategies are born to deal with broad issues. What issues should an application ...
19
votes
13answers
3k views

What is a good CSS strategy?

We have a large ASP.Net website that has a single css stylesheet which is getting out of control. I am thinking of using the the following strategy (taken from ...
17
votes
8answers
5k views

Log4J: Strategies for creating Logger instances

I decided to use Log4J logging framework for a new Java project. I am wondering what strategy should I use for creating/managing Logger instances and why? one instance of Logger per class e.g. ...
17
votes
6answers
4k views

What is the difference between the bridge pattern and the strategy pattern?

I tried to read many articles on dofactory, wikipedia and many sites. I have no idea what the difference is between them. I know both of them decouple an abstraction from its implementation and can ...
15
votes
11answers
1k views

WordPerfect programmers refusing to use anything but assembler

There is a version (popularised by Joel Spolsky) attributing the demise of WordPerfect to a refusal of its programmers to use anything but assembler that led to delay of the first WPwin release and as ...
13
votes
16answers
1k views

How often should you release software updates?

Moments ago Jeff Atwood said the following on twitter: Look, I love rapid new software releases, but the frequency of WordPress releases is just ridiculous. Which makes me think, how often ...
13
votes
10answers
3k views

What Are Some Examples of Design Pattern Implementations Using JavaScript?

I'm a moderately skilled programmer using JavaScript but I am no guru. I know you can do some pretty powerful things with it, I just haven't seen much other than fairly basic DOM manipulation. I'm ...
9
votes
4answers
261 views

Strategies for for games with incomplete information

Are there general strategies for games with incomplete information, especially trick-taking games like Bridge and Doppelkopf? I am interested in ways to implement AI strategies for such games. The ...
9
votes
3answers
853 views

Best deployment strategy for PlayFramework applications?

This question is server oriented. I have a hosted server (a rather small one, 1,6Ghz atom, 2Go, 200 GO) with a couple (4 or 5) play apps and more coming. Most of these apps have a real small usage, ...
9
votes
6answers
369 views

After having started a project and suddenly having found new competition, how do you convince yourself to keep going? [closed]

I understand this is a subjective question but I want to see how others dealt with this issue: How do you convince yourself and your teammates while trying to start a business or a project and ...
8
votes
11answers
444 views

Optimizing javascript and css requests

I need to optimize the loading speed of several existing websites. One of the issues that I have is the amount of requests per page. The websites have 7 or more different types of pages which should ...
8
votes
1answer
216 views

Coding strategy for securing sensitive data

A web application contains sensitive data of the users. Neither the operator of the web application nor the hosting provider should be able to see this data. Therefore I wanted to store these data in ...
8
votes
6answers
185 views

What information do you capture when your software crashes in the field?

I am working on rewriting my unexpected error handling process, and I would like to ask the community: What information do you capture both automatic, and manually, when software you have written ...
8
votes
3answers
326 views

City building strategy algorithms

I'm looking for some papers on finding an infrastructure development strategy in games like Starcraft / Age of Empires. Basic facts characterising those games are: continuous time (well - it could ...
8
votes
10answers
743 views

How to safeguard an inside software development team from being outsourced? [closed]

There is a lot of talk on why outsourcing (and off-shoring) of software development jobs in a long run has an adverse effect for a business. However, most of these arguments are well understood only ...
8
votes
8answers
945 views

Strategies for Caching on the Web?

What concerns, processes, and questions do you take into account when deciding when and how to cache. Is it always a no win situation? This presupposes you are stuck with a code base that has been ...
7
votes
3answers
143 views

.NET Framework - When to Upgrade?

I’m faced with a challenge of leading two (currently) separate .NET development groups with different development strategies. One group is developing on the .NET Framework 2.0 (with maybe a few ...
7
votes
10answers
2k 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 strategy "unit ...
6
votes
1answer
278 views

Git branching stategy for feature branches and common code

I've been using the git branching strategy outlined here http://nvie.com/posts/a-successful-git-branching-model/ So far its been working really well for me. The question I often find my self asking ...
6
votes
3answers
456 views

What is the correct way to merge/transform a dev branch into a stable branch in Mercurial?

I work for a web development company that uses Mercurial as its DVCS of choice. We're currently in the process of creating a new version of a site that is already in production. Both a stable and a ...
6
votes
4answers
562 views

How to win this game?

Support we have an n * m table, and two players play this game. They rule out cells in turn. A player can choose a cell (i, j) and rule out all the cells from (i,j) to (n, m), and who rules out the ...
6
votes
9answers
831 views

What is meant by 'Seat of your pants coding'?

I hear a lot of reference made to 'seat of your pants' coding, but I've never fully understood what it means. Can someone please explain?
5
votes
2answers
66 views

Is there a built-in Java type that guarantees an execute(T t) method?

It seems the need for a type like the following would be so ubiquitous that something like it should be already built into Java: public interface Executer<T> { void execute(T object); } It ...
5
votes
3answers
171 views

Implementing a single Data Access Layer for Java and .NET

I have applications that have been written in Java, .NET and C++. They all use a common database. Each app has it's own way of accessing the database, and so things are quite inconsistent. I was ...
5
votes
4answers
153 views

How do you pass 'this' as an argument to another class constructor without circular dependencies?

I'm thinking specifically of the Strategy pattern (Design Patterns, GoF94), where it is suggested that the context passed to the strategy constructor can be the object which contains the strategy (as ...
5
votes
1answer
73 views

Where should conversion of presentation values be made in multi-tier architecture?

I'm building an application that is multi-lingual, multi-timezoned and n-tier. All dates are stored in the database in UTC and all model objects are populated with UTC times. However UTC times are ...
5
votes
6answers
143 views

Strategies to handle a file with multiple fixed formats

This question is not Perl-specific, (although the unpack function will most probably figure into my implementation). I have to deal with files where multiple formats exist to hierarchically break ...
5
votes
6answers
387 views

.Net - Strategies to avoid magic string

In the code where I work, we got many think like that : if (user.HasRight("Profile.View")) {} So, there is many place where we pass a string as parameter to see if the user have a specific right. I ...
5
votes
11answers
438 views

How to prove to our users that they are not being cheated?

I have an information theory question about how to prove (or at least give statistical evidence) that an auction website is not shilling its users. We recently launched a pay-per-bid auction ...
4
votes
2answers
191 views

Heroku database backup strategy?

I'm just setting up my backup strategy for Heroku and i'm after more information on what i need to protect against. Obviously I need to ensure I back up to protect data loss through my own mistakes ...
4
votes
1answer
154 views

Best strategy to modularize android applications

I am building some applications in Android that have some common parts. For that reason I am extracting many common parts into separate classes. The problem I am finding is that I don't know really ...
4
votes
2answers
160 views

Tests and inheritance issue

Imagine you have an application and you want to make unit tests and functionnal tests over it (not quite hard to imagine). You might have an abstract class, let's call it AbstractTestClass, from which ...
4
votes
3answers
178 views

TDD with Strategy Pattern

I'm trying to implement the strategy pattern using TDD. Each strategy item implements an interface. What's the best way to do this with TDD? Do you have to create a test fixture for each ...
4
votes
7answers
121 views

If you had to work with horrible HTML, what would you do?

I was looking over some of my friend’s HTML and CSS, and I was speechless (in a bad way). If I had to work with that, such as putting AJAX into it, then it would have been a lot of work. I would have ...
4
votes
3answers
260 views

git strategy to have a set of commits limited to a particular branch

I need to merge between dev and master frequently. I also have a commit that I need to apply to dev only, for things to work locally. Earlier I only merged from dev to master, so I had a branch ...
4
votes
6answers
154 views

How do I create a generic overall .NET programming structure for my company?

I'm in a company that writes their own business data applications when there's no good off the shelf alternative. Most often it's - a login screen - some screens that are mostly visualizations of ...
4
votes
1answer
122 views

Capturing delegates in anonymous methods

Consider Action _captureAction; private void TestSimpleCapturedAction() { Action action = new Action(delegate { }); Action printAction = () => ...
4
votes
3answers
790 views

Caching Strategy for queried data

I'm currently in the process of building a repository for a project that will be DB intensive (Performance tests have been carried out and caching is needed hence why I'm asking ) The way I've got it ...
4
votes
7answers
2k views

How do you work on Oracle packages in a collaborative, version-controlled environment?

I'm working in a multi-developer environment in Oracle with a large package. We have a DEV => TST => PRD promotion pattern. Currently, all package edits are made directly in TOAD and then compiled ...
4
votes
5answers
376 views

Thinking Techniques

When you are in a meeting or while you are talking to you boss, project manager, technical leader etc. or doing something similar to these actions what strategies do you have in terms of thinking? ...
3
votes
2answers
96 views

Is strategy pattern helpful for this scenario?

I have two classes A & B and both class implements the interface ISomeInterface. But some properties are not required for both class A & B. But in the client app I am calling the same ...
3
votes
4answers
139 views

Any websites that describe the most common css layout strategies?

Basically not the templates just design layout strategies. For example: two column with header/footer.
3
votes
4answers
72 views

What would you advice to a development team which is moving to a new technology?

What would you advice to a development team that is about to move to a new technology (Let's say from asp.net application to SilverLight where no one in the team has an experience so far on SL ...
3
votes
1answer
523 views

Strategy for lazy-loading markers into a Google Maps Javascript API map

I'm building an ASP.NET MVC site where I want to have a Google Maps Javascript API map that shows markers loaded from my backend through AJAX. As I don't want the client to run into memory issues, I ...
3
votes
3answers
3k views

Open Source Turn-Based Strategy Game Engine?

Is anyone aware of a turn-based based strategy game engine that is open source?
3
votes
2answers
397 views

Git Merge subdirectory to branch to root directory of master

I have a branch that has the content of the master branch as a subdirectory. Now I made some changes to this subdirectory. Ideally I want to be able to merge these changes back into the master branch. ...
3
votes
4answers
101 views

How to determine a development strategy change from the middle management?

We are a start-up, with a few (14) clients using our products. These products were developed in a close source web development framework only maintained by one developer on the core. Basically the ...

1 2 3 4