DEV Community

mnivoliez
mnivoliez

Posted on

Hello, I'm a junior and I suck at organizing my work, how do you do?

Hello, I have started a new job some months ago and it appears that I have serious difficulties to organize my work and speak about it. Often I can't give a reliable answer at the question "where are you at in your task?". Do you have any advise or method I could try to improve this aspect?

Latest comments (4)

Collapse
 
mitchjacksontech profile image
Mitch Jackson

On organizing your work:

Focus on your planning phase. Don't write code until you have a complete plan for what you're going to do and how. Build that into a checklist. Because you've done planning, your checklist items should be easier to give time estimates for. Sometimes the planning takes longer than the coding, and that's ok. My checklist usually starts with exploratory questions like "Where did X/Y data come from," "what format is this in," "What other code calls this method" etc.

On giving reliable answers:

Dedicate time to meeting/call prep. Make a list of the items you expect to bring up, and you expect to be asked about. For each of these items, a few bullet points about what information you need to convey. Try to look up anything you'll need, so you don't waste people's time while you hunt for answers. During the meeting, take notes. After the meeting, make sure anything needing further work or follow-up gets recorded on your calendar and to-do lists.

On working with your team lead:

Basically my boss told me that as a manager he is very frustrated that I do not achieve to say something like "for task X, I have achieve point a, b, c and I got d,e,f left to do which should take me Y hour".

You have a good resource here. "Boss, I appreciate the feedback you gave me about my time estimation. I want to improve this. I have been doing (this) and (that). Can you block of a little time for me on (work item) to help me improve with this?

Collapse
 
georgecoldham profile image
George

It depends what you mean by organising your work?

If its organising you code base, I find its best to logically group things into folders and have a file per component etc. and reference them as needed. I would look at others work for inspiration if you are struggling with this.

If you are struggling to communicate where you are in your workload with others in your team/management, then you are probably trying to do too much under a single banner.

Lets say your job is creating a nav bar. How do you best communicate where you are in a larger component such as that? Break your job down into bite size chunks.

  • Create a styled list
  • Get the static styling correct
  • Get hover styling correct
  • Get hover functionality correct
  • Get click functionality working

Through this test what you need to. At any point you can show what you have done, what your plans are, how its been tested, how its accessible etc, how it meets your deliverables. If you are stuck, you can show the process of how you got to where you are.

Hope I covered what you are asking?

Collapse
 
mnivoliez profile image
mnivoliez • Edited

Well, it's more close to the second point. To get your exemple, let say I have to create a let user navigate around a bunch of option, I fail to correctly express a "dev plan" and to identify step in that plan. More over I fail also to correctly assess risks inside that task, for exemple, the model need to change, the feature will enter in collision with an other feature etc...
Basically my boss told me that as a manager he is very frustrated that I do not achieve to say something like "for task X, I have achieve point a, b, c and I got d,e,f left to do which should take me Y hour".

So I try to structure my work-flow better to meet those expectation. But I feel a little bad equipped right now for that ^

Collapse
 
georgecoldham profile image
George

It sounds to me like you just need more experience with estimation of tasks. Dont be bullied in to rushing something.

I like to break everything into steps and estimate how long I think each step will take. Then I double it and give that to whoever it matters to.

As a developer, especially a Jr developer. It is not your responsibility to make sure there is no feature collision etc. You should have a clearly defined deliverable signed off by the manager. It should meet many criteria before it even reaches you.

  • Designs for every state
  • States for every interaction with the product
  • Huge lists of testable criteria
  • Any technical considerations (provided by more senior devs)
  • Any technical risks (any areas that are connected to the area being changed)

From that list, you should be able to break down your work into steps and under promise.

If your manager is not happy, then its his responsibility to find out why and make amends to the workflow or training. If they are demanding work be done within short timeframes, then they are likely not a great manager sadly. Setting hard limits for all work, is a great way to burn out employees.