php code screenshot

June 21, 2020 2 min to read

Lessons learned from software development experience

Category : Hobby

Here is a list of software development rules that I have developed for myself over the years of practice.

1. Start with small things, then expand them

As when creating something new, and when adding functionality to ready-made systems, I always start with a very simple version that does almost nothing of the necessary functions.

Then I expand this solution step by step until it becomes what was originally stated. I have never managed to paint in plan all the details already at the start.

Instead, I better and better understand what you need to get during the development process and use this knowledge in the project.

I like these words of John Gall: “Any fairly complex system that works, somehow evolved from a simple system that worked in one way or another”.

2. Change something one at a time

If during development a program starts to fail on some test or some function stops working, it is much easier to find the reason if you changed the code in only one place.

In other words, it is better to use small iterations than trying to do everything all at once. Do one thing, make sure it works, repeat.

This also applies at the level of commits to the version control system. If you need to refactor, then before adding any new feature, first commit the changes for refactoring, and only then (in a separate commit) add this feature.

3. Add logging and error handling in the early stages

When I set about developing a new system, one of the first things I do is add logging and error handling. Both of these things are beneficial from the very beginning of the project.

In any program that has more than a couple dozen lines of code, you need to know what happens during execution. And especially this data is important when something doesn’t work as planned.

Roughly the same thing with error handling – since exceptions can still not be avoided, and they will be thrown throughout the life of the project, why not start processing them systematically at the very beginning?

4. Each new line of code must be executed at least once

Before you finish work on any functionality, you need to test it. After all, otherwise how do you understand that she is doing exactly what she should? Often the best option for this is automatic tests, although there are other options.

In general, it doesn’t matter how, but the main thing is that every line of code you write should get control. It can sometimes be difficult to reproduce the necessary conditions to go into all branches of the code…
 
Continue reading the article and learn more about software development on Life Is An Episode website.
 
 

You may also like these articles

  • How to choose a bicycle
    These days, we all generally linger on all the available options whenever we go to buy anything because of the influx of variety and more advancement of technology.If you wish to purchase the best suited bicycle for yourself then below is a guide on how to choose the pe...
  • 7 amazing ways to preserve your roses and other types of flowers
    A staggering four billion flowers – that’s how many Colombia ships to the US every year.It’s not only during Valentine’s Day that florists are busy though. In fact, worldwide, it’s Christmas and Hannukah that see the most flower sales. These winter holidays account for ...
  • Tips for writing eye-catching dating profile headlines
    A new study conducted by the Pew Research Center found that about 30% of adults living in the United States have used dating apps at some point in their lives.The number of adults who are looking for love online has been skyrocketing in the last couple of years. In 2013...
  • What is 925 silver? How to buy the best sterling silver jewelry
    When it comes to precious metals, silver often plays second fiddle to gold. It’s cheaper and it’s only been around since 3000 BC, while gold mining’s been on the go 1000 years earlier.Both are valuable in their own right, although gold is more expensive and more abundan...

Leave a comment