Skip to main content
5 answers
6
Asked 774 views

What does a day in the life of a software developer look like?

I'm really interested in becoming a software developer. What do they do on a day-to-day basis?

#software #technology #software-development #software-engineer #software-engineering

+25 Karma if successful
From: You
To: Friend
Subject: Career question for you

6

5 answers


2
Updated
Share a link to this answer
Share a link to this answer

Stefan’s Answer

Broadly speaking you can divide software development into enterprise software development and technical software development. The first one is concerned with developing enterprise systems where it is important to write code to serve a lot of users simultaneously and integrating with other business software. The latter one is about developing (industrial) software for machines and devices. Here the focus is on interfacing with hardware and writing small efficient code. Each field will have different tasks and you will interact with different kinds of people.

But generally speaking this is what you wil do:

  • Talk to users, analysts or requirements engineers about what the software should do
  • Talk to architects to understand how your software should work together with other software
  • Create and/or review software designs
  • Write and test code. Most of the code you'll write is test code to check if your code is valid, secure and performs well
  • Review the code, tests and documentation of your peer developers
  • Estimate development effort so software releases can be planned
  • Deploy software to a test or production environment
  • Monitor the production environment to prevent outages
  • Write or provide input to the user manual
  • Provide support to users
  • Demo the software to explain how it works
  • Work with the other developers to think about how you can improve collaboration
  • Write tooling to automate your work
  • ....

A lot of development teams nowadays work according to the scrum framework. Check out the provided link below.

Stefan recommends the following next steps:

Explore the scrum framework at https://www.scrum.org
2
2
Updated
Share a link to this answer
Share a link to this answer

Christian’s Answer

A day in the life would depend on the nature of work and team processes in place. However, I can share my current experience as a software developer on a product development centric team. The day usually starts with a team meeting which we refer to as a "standup". This is a daily meeting which allows each person on the team to share updates of what they were working on during the previous day and also what tasks they plan to work on for the current day. Additionally, it's one of the many (hopefully) opportunities to identify teammates that you can help or receive help from if you're feeling stuck on your work.

Afterwards, I mostly have the full day to take action on the work I've been assigned. This usually means designing solutions, programming, or researching the topic further. There could be a few other meetings pop up during the day which could be related to upcoming work for the team or even a 1 on 1 with a manager (weekly meeting). Overall, if you're on a high performing team, then you should expect to be given plenty of time to focus on your work during the day. This flexibility is one of the things I enjoy most since it gives plenty of autonomy to get the job done at your own pace.

2
2
Updated
Share a link to this answer
Share a link to this answer

Rebecca’s Answer

Hi Joshua,

You've already gotten some good answers, but I'll share my experience as well. I am now a VP of Engineering, but I wrote code for about 17 years. I worked at a lot of different places. I started off with front-end web development (what shows up in the web browser), then moved to full-stack development. Full-stack development includs writing code to read and write from databases, code for the "business logic" (methods and algorithms), and code to show the application in web browsers. My typical day was:

First, get to work, get some coffee, check email. Then I would look at my to do list for the day—sometimes this was a list I had written the day before, sometimes it was picking something from a shared list we had as a team.

Usually, by the time I knew what I'd be working on, it would be time for standup, which Christian already described. Then I'd have a few hours before lunch and write some code.

There are several phases to writing code: first you have to understand enough of the requirements to make sure you're on the right track. Sometimes they are written out for you very clearly, but this isn't usually the case. Sometimes this means you meet with your product owner (also called a product manager—basically, a person who defines projects for your team). Sometimes you meet with a designer, sometimes you meet with a customer who is having a problem. Sometimes, you talk to other engineers on your team because maybe they understand the project better or the code you need to work with. My point here, is that there's a surprising amount of communication involved in software development. Every software developer has to find the right balance of writing code, asking questions, and sharing ideas with others to do the best job they can.

Once you know what code you're writing and why, you jump in and start writing it. Sometimes this causes other questions and you go seek answers, either online (like on Stackoverflow), in books, or from your team, etc. Sometimes you have to edit a bunch of code. In full-stack development, I usually started with the database, then worked on the business logic, then the UI. I typically wrote tests along with the code—write a chunk of code, write some tests, repeat. Then, when code is ready, give it to someone for review and deploy it to a test environment and then, if everything checks out, to production. It's really exciting when your code goes to production because that means people can use it!

My most productive times were usually the two hours before lunch, and then about an hour after lunch until the end of the day. I tried to do things like reading email in my less productive times, and write code in the more productive times. This is different for everyone.

At the end of the day, I would usually try to write down where I wanted to start the next day. It's kind of like putting a bookmark in a book you are reading—sometimes it's hard to go home because you don't want to lose your place. So I'd write myself a little bookmark and be able to more quickly get back to what I was doing the following day.

There are a few other things that come up all the time in software development, but not necessarily every day. Usually, you have to keep your development environment (on your laptop or desktop) up to date, so there's some configuration required. This can occasionally be frustrating, but is part of the job. Also, you sometimes need to document your code—this can vary from place to place. At some places, they think your code should be readable enough that you don't need to write any documentation, other places you just add comments to the code. At other places, you have to write documentation that your customers can read, so it needs to be really polished. There are lots of little things like this—I won't write about them all, but every job has some amount of maintenance type work. Still, it's rarely the bulk of your time, just something to be aware of.

I hope this is helpful—I've really enjoyed my career in software and I hope you do, too!

Rebecca recommends the following next steps:

Read this blog post from someone who is 9 months into his software development career https://medium.freecodecamp.org/9-months-into-a-software-engineering-role-this-is-what-i-learned-823230e4be9a
2
0
Updated
Share a link to this answer
Share a link to this answer

Patel’s Answer

It is always a challenge. You start off with certain requirements and they are fluid so you have to keep up with the changes and deliver a product that the customer enjoys.

0
0
Updated
Share a link to this answer
Share a link to this answer

James Constantine’s Answer

Hi Joshua from Rigby,

This is Jim, reaching out from the Gold Coast, Australia. I see you're curious about the daily life of a software developer. As someone interested in this field, you're probably wondering what tasks they handle each day. Let's delve into this topic in detail.

A software developer's day can differ based on their specific role, the company they work for, and the project they're tackling. However, there are some common tasks and activities that most software developers engage in regularly. Let's explore these aspects of a software developer's daily routine.

1. Planning and Research:
Software developers often kick off their day by organizing their tasks. They study project requirements, understand user needs, and work with stakeholders to grasp the goals of the software they're developing. They also research industry trends, best practices, and new technologies to apply to their projects.

2. Designing and Architecting:
After planning, developers move on to designing the software solution. They create detailed technical specifications, define the system architecture, and design the software's overall structure. They also decide which programming languages, frameworks, and tools they'll use to develop the application.

3. Coding and Development:
The main task of a software developer is coding and development. They write code based on the design specifications using programming languages like Java, C++, Python, or JavaScript. They use integrated development environments (IDEs) and version control systems to manage their codebase efficiently, following coding standards and best practices for code readability, maintainability, and scalability.

4. Testing and Debugging:
Developers spend a significant amount of time testing and debugging their code to find and fix any errors. They write unit tests to check the functionality of individual software components or modules and perform integration testing to ensure all parts of the application work together smoothly. Debugging involves finding and resolving any bugs that may arise during testing.

5. Collaboration and Communication:
Software development is usually a team effort. Developers often work with project managers, designers, quality assurance engineers, and other developers. They engage in meetings, discussions, and code reviews to ensure the software meets project requirements and industry standards. Good communication skills are essential for developers to share their ideas, ask questions, and provide progress updates.

6. Continuous Learning and Improvement:
The field of software development is always evolving, so developers need to keep up with the latest technologies and trends. They dedicate time to continuous learning by reading technical articles, attending conferences or webinars, and participating in online communities or forums. This helps them improve their skills, discover new tools or frameworks, and boost their overall proficiency as software developers.

7. Documentation and Maintenance:
Developers are responsible for documenting their code and creating technical documentation that outlines the software's functionality. This documentation helps other developers understand how to use or modify the codebase in the future. Developers may also maintain and update existing software by fixing bugs, adding new features, or optimizing performance based on user feedback or changing requirements.

8. Problem Solving:
A key skill for a software developer is problem-solving. They face various challenges throughout the development process, such as finding efficient algorithms, optimizing code performance, or resolving compatibility issues. Developers analyze problems, break them down into smaller components, and devise creative solutions to overcome obstacles.

In summary, a software developer's day involves planning, designing, coding, testing, collaborating with team members, continuous learning, documentation, and problem-solving. The specific tasks may vary depending on the project stage and the individual's role within the development team.

Top 3 Reference Publications Used in Answering this Question:

1. IEEE Computer Society - A professional organization that publishes research papers, articles, and resources related to software development and computer science.
2. Stack Overflow - An online community where developers ask questions, share knowledge, and seek guidance on various software development topics.
3. GitHub - A web-based platform for version control and collaboration that hosts millions of open-source projects. It's a valuable resource for developers to explore code repositories, contribute to projects, and learn from others' code.

Web Results:
9 results

www.computerscience.org
Day in the Life of a Software Engineer : Work & What They Do

hbr.org
Career Crush: What Is It Like to Be a Software Engineer?

codeinstitute.net
What Does A Software Developer Do? A Day In The Life

www.quora.com
What is a day in the life of a software developer?

joinhandshake.com
Day in the life: Software engineers

www.reddit.com
What Do Software Engineers Actually Do? : r/learnprogramming

www.indeed.com
A Software Engineer's Life: Everything You Need To Know

www.vertigis.com
A Day in the Life of a Software Developer

www.theforage.com
Day in the Life: Software Engineer

God bless,
Jim.
0