Best practices when starting a new project

When you first start Visual Studio or before that (hopefully) What do you think of the best methods when starting a new project?

Various things I've done in the past

  • Consider technology choices
  • Trying to identify potential bottlenecks / brick walls
  • Drop the spec
  • Ask many, many questions.
  • Launched right in the code! (who is not?)

As programmers, we must be methodical in our approach.
What do you do when you start a new project?

+4
source share
6 answers

(If applicable) Find out if you are building a prototype prototype, extensible prototype, or final production system.

I think that the main problem with a large number of projects is that people do not understand that this needs to be understood. They either retrain or the project does not deliver on time, or they write code that later becomes too expensive to throw away.

+3
source

Start using version control right away.

This always disappoints the prototype of the β€œejection code” prototype, which is ultimately discarded - and then realizes that some of this code is really really useful.

+6
source

I do the following when creating for others. When I built myself using more flexible dev concepts, I still follow these steps. It is also very easy to attract others.

Analysis: What we need to do and why. Features Aka.

Design: what we will build, how it will work and why? aka. Data sheet.

Plan: What and to whom do we need, when, what to do

Implementation: Assembly, verification, repetition.

Launch: Almost there.

Support / Document / Train, etc. . If you get on the bus or someone organizes it.

+2
source

Scrum

++

  • Requirements collection
  • Region
  • Out of range
  • Choose a delivery platform and appropriate development environment
  • Calculate Costs, Make Budget
  • timetable
  • Review at each stage and familiarize the end user with what is being done throughout

simple tips

+1
source

Create your first test project.

0
source

The main thing is that I always want to know who does it! even from the starting point. There is a lot of time left to lose.

0
source

All Articles