The obvious first step in most projects is “planning”. But, what is planning? I’m now in my final year of CS, and I’ve gained a lot of experience with trying to plan projects across a wide variety of time frames and group sizes, and it’s really shaped the way I approach projects now.
Traditional Planning Link to heading
Traditional planning, where one lays out everything that needs to be done from start to finish, when they should be done and by whom,
doesn’t really work for software engineering.
Anyone doing CS will have been told many times to avoid “waterfall” planning, where one
completely plans out the whole project before completely working on the project.
This is all well and good, but it’s almost too weak of a warning. It’s entirely possible to think that you’re avoiding waterfall while still falling for the same traps. Software engineers are notoriously bad at predicting the future, so any form of planning that relies too heavily on that skill should be avoided.
Picture this task, that you might see somewhere in a Jira or github: “Add settings page to customise app behaviour”. A task like that assumes many many things that you can’t possibly be sure of before actually working on the project.
Maybe there isn’t any behaviour that’s customisable.
Maybe each page should have its own settings, not a global one.
Agile Link to heading
The answer usually given in a typical CS course, is “Agile”.
The core idea there is to plan out “what needs to be done” ahead of time, driven by the users’ needs, but constantly break that down into
more specific tasks that answer “how can we do this”. Agile is all about change, the software is built 2 weeks at a time, and the specific plans will change as you go on.
Agile is great for larger projects with a structured, well organised team. Unfortuntely there’s many projects where that isn’t the case.
Sometimes deadlines are too short to afford to build things sprint by sprint, and sometimes the excessive amount of “structure” and meetings that Agile usually implies are too heavy a load.
For things like hackathons and game-jams, Agile is usually too much.
Kanban & Lean Link to heading
For short term projects, or projects with small (<=2 person) teams, I prefer to use a lean system over Agile. The idea here is to strip away all of the processes that Agile usually has, and keep just the core idea. The focus here is avoiding over-planning, break down a project into the core high level parts, then break those parts down into individual tasks on a Kanban board. Start with the absolute core essentials, each task should ideally be semi-independent from other tasks. When you move a task from “In-Progress” to “Done”, then you can take a look at the state of the project and do another round of planning.
This avoids the disaster of not planning at all (duplicated work, people unsure what to do next), it avoids the wasted time of waterfall, where most of your plans will end up being “outdated”, and avoids the processes of Agile, while keeping the benefits of just-in-time planning.
The first round of sticky notes or tasks in your Kanban board should represent the minimum workable demo, avoid extra features and dependent tasks - they usually end up assuming things about the previous tasks that you can’t possibly know yet. Having a strong image in mind of the final product helps greatly in figuring out the next round of tasks to add at each step.
Try it! Link to heading
All of this is just my opinion formed from my experiences, I’d encourage everyone to go out and participate in a hackathon, or a game-jam and put these ideas into practice! Even if it’s just you working on the project, the lessons in planning you’ll learn are priceless.