Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
10answers
504 views

Good strategies for developing throwaway code?

I frequently write throwaway code (in a research environment) - for example to explore an algorithm or a model for a scientific property or process. Many of these "experiments" are one-off but ...
2
votes
3answers
95 views

When do you throw a prototype away and start over?

When you're prototyping a new system, what guideline(s) do you use to mark a stop-and-start-over point?
0
votes
4answers
91 views

Should I fully declare throw-away objects?

If I need to do something like this: var connection = new Connection(host); connection.Execute(Commands.Delete); Is there anything wrong in doing this: (new ...