Four Productivity Apps I Couldn’t Do Without

Over the last year I’ve invested time in trialing and adopting apps which help my productivity. In this post I’m going to share them and explain why I believe they’re invaluable.

Todoist

Todoist is an easy to use and intuitive TODO list application which supports projects, due dates, reminders, tags, and filters. It’s easy to use and syncs effortlessly across devices. I use it for everything from management work projects to keeping track of shopping lists and birthday presents.

The premium version unlocks additional features and it is well worth the money.

However, be aware downloading Todoist is enough to organise yourself. No tool can do that if you don’t have a system in place. I strongly recommend having a look at

Todoist: The to do list to organize work & life

Forest

Forest is an app which encourages you to put down your phone. I’ve written about it before and continue to use it. You can set how much time you’d like to “lock” your phone for and if you pick up before then your tree will die. Planning trees leads to gold which you can use to purchase more tree designs in the store or even plant trees in real life!

Braintoss

I started using this app this week and I’m really impressed. The premise is incredibly simple, the app records a quick message and then emails the text to the email address of your choice. Install on your watch and configure to the email of your Todoist inbox for a really effective way to record notes wherever you are and drop them right into your digital in tray!

Audible

Again, Audible shouldn’t be a surpise to anyone who’s read some of my recent blog posts. Listen to audiobooks while you’re driving or doing housework for a really effective way to consume books you wouldn’t ordinary have time to read. Especially if you practice building up your speed until you can listen in hamster mode!

Audible free trial: what's included and how to get Audible free | TechRadar

And A Setting for Luck

Chances are your phone has a time limiter built in already, configure this to limit access to those time sync apps to 30 minutes each day. Being asked if you really want to spend your fourth hour on Facebook (or social network of choice) really is a great way to get you off your phone!

Screen Time - Restrain yourself & parent control - Apps on Google Play

What are your favourite productivity apps? Do you use any which aren’t on my list?

Can I Do Both Scrum and DevOps?

This is a question I hear a lot, people have heard of (or may follow) Scrum and often have read about DevOps. They want to know whether DevOps is a replacement for Scrum or if it’s something they should be doing as well. Others believe that Scrum and DevOps are incompatible, in this post I want to talk about what both of these are how (because spoilers – they can) they should be used together.

Terminology matters: Agile/Scrum vs CD/CI vs DevOps – Agitma

What Is Scrum?

Lets start with the obvious question, if we’re going to discuss how DevOps and Scrum interact we need to define what exactly what we mean.

Quoting from The Scrum Guide:

Scrum is a lightweight framework that helps people, teams and organizations generate value through adaptive solutions for complex problems.

The Scrum Guide

The Scrum Guide is an extremely concise and valuable guide to Scrum. If you haven’t read it I strongly recommend you do. However, for the purpose of this post I’m going to to highlight a few points.

Scrum employs an iterative, incremental approach to optimize predictability and to control risk.

An Increment is a concrete stepping stone toward the Product Goal. Each Increment is additive to all prior Increments and thoroughly verified, ensuring that all Increments work together. In order to provide value, the Increment must be usable.

The Definition of Done is a formal description of the state of the Increment when it meets the quality measures required for the product.

Various Sections of The Scrum Guide 2020

When many people think of Scrum they discuss the Scrum Events, these include Sprints, Retros, Planning Sessions, and Sprint Reviews. However, equal importance should be given to the underlying theory of empiricism and incremental nature.

Each Scrum Team should deliver at least one increment of work each Sprint, this increment should be potentially releasable, and meet the Definition of Done. They will then meet in a Sprint Review meeting and discuss what they should do next to deliver maximum value.

What Is DevOps?

DevOps is, at it’s core an effort to reduce the divide between development and operational teams. Literally, Dev-Ops there are many practices and ways of doing this from the cultural to the technological however what has most likely led you to this post are the ideas of Continuous Integration, Continuous Delivery, and Continuous Deployment. Again, DevOps has many valuable lessons, I’m focusing on these three not to devalue the other concepts, but simply because they are some of the key concepts we need to understand for this article.

  • Continuous Integration requires that each developer merges their code into the master branch every day and if the master build breaks it is resolved or rolled back within ten minutes.
  • Continuous Delivery is a promise that any code which is the master branch is always in a potentially deployable state. Untested and unverified code is never merged in.
  • Continuous Deployment is an automation mechanism which pushes whatever is in the master branch into environments (often production) without any manual steps.

As you can see these are cumulative, so teams may practice Continuous Integration but may not practice Continuous Delivery or Continuous Deployment. It is also nearly impossible to practice Continuous Deployment unless you also follow Continuous Delivery and Continuous Integration.

It’s also worth mentioning the “3 Ways of DevOps” these were popularised by the highly successful book The Phoenix Project. The 3 Ways are:

  1. Flow/Systems Thinking
  2. Amplify Feedback Loops
  3. Culture of Continual Experimentation and Learning

Using Scrum and DevOps Together

Now that we’ve talked about what Scrum and DevOps are (or at least highlighted some of the relevant and key parts of each) I want to discuss whether these concepts can work in harmony together.

The first aspect to address is the Scrum concept of an increment. The Scrum Guide says that each team should produce at least one increment of “Done” software which is potentially releasable to production each sprint. I believe that the three concepts of Continuous Integration, Continuous Delivery, and Continuous Deployment are not only compatible, they are the natural evolution of this requirement.

If an engineering team is following CI, CD, and the other CD then each day (or less) a piece of work should be added to master. This means that a typical team of 7 engineers working a standard two week sprint could easily produce seventy or more increments in a single sprint. They key here is that by breaking down the Scrum Product Backlog Items down into single pieces of work which can be individually developed with a single day and then tested in isolation. This is not easy, however with practice and strong story splitting skills it can be done.

It’s also worth mentioning the Definition of Done. The Scrum Guide states that each increment must meet the Defintion of Done. Continuous Delivery states that the master branch should be always be in a deployable state. What a high performing Scrum/DevOps team should do is write automated tests which execute against incoming pull requests into their master branch to confirm that it always meets the agreed Definition of Done. This not only reduces the amount of repetitive testing work expected of the team but it highlights immediately when a proposed increment does not meet the team’s Definition of Done. If it doesn’t, it’s not merged in.

Maybe DevOps and Scrum aren’t incompatible after all? Photo by Blue Bird on Pexels.com

Before wrapping up I also want to consider the 3 Ways of DevOps I discussed above.

By building the Definition of Done into the Deployment Pipeline of the product we support the 1st Way by ensuring that the requirements of the team are baked into the pipeline.

The 2nd Way is to shorten feedback loops. Scrum emphasises the value of engaging with stakeholders frequently to ensure that they are involved and know the current state of the product. Scrum is also based on empirism, the belief that only we can only make estimates by looking at real data, by valuing the 2nd Way and shortening those feedback loops wherever possible this gives us a more accurate picture of what impact our changes have had. Simply put, this more accurate view provides the transparency we need to inspect and adapt. These are the three pillars of empirism.

Scrum also defines an event, the Retrospective where team members should meet to discuss ways to improve the quality and effectiveness of the team. This fosters the experimentation and innovation expected of the 3rd Way. These ideas aren’t working against each other. Scrum is providing events to ensure that the DevOps approaches are being honoured.

Conclusion

DevOps is often seen as a Scrum upgrade or perhaps a replacement to the agile framework. However it shouldn’t be. I believe that many of the automation and development strategies of DevOps are the natural evolution of Scrum principles and fit very neatly into any team already using the process.

With automated tests continuously testing each increment to guarantee that it meets the team’s Definition of Done increments can become smaller and a continuous flow of high value work can be delivered with shorter lead times and higher quality.

Scrum Alliance or Scrum.org?

This is a question I get a lot, what are Scrum Alliance and Scrum.org and which is “best”? The truth is there is no best, both have different certifications and a different business model. In this post I want to explain the differences between the two and help you decide which to choose.

Scrum.org & Scrum Alliance Compared - TheScrumMaster.co.uk

Let’s start with what they do. Both Scrum.org and Scrum Alliance offer training courses and certifications for Scrum Masters and Agile Professionals. Both offer a variety of courses for Product Owners, Engineers, and other professions but in this post I’ll focus purely on the scrum masters.

You can think of these organisations like Exam Boards, if you pass their exam you get a certificate which you can present to any employer and it will prove that you have a certain level of scrum knowledge. You can also show the badges off to your friends and family but personally I’d recommend against that. I spent half an hour explaining to my mum that a Scrum Master had nothing to do with Dungeons and Dragons…

Both organisations offer three levels of Scrum Master certification. For Scrum Alliance these are the Certified Scrum Master (CSM), the Advanced Certified Scrum Master (A-CSM), and Certified Scrum Professional Scrum Master (or CSP-SM). Scrum.org offers the Professional Scrum Master levels 1, 2, and 3 (more commonly known as PSM-I, PSM-II, and PSM-III).

Personally I hold the CSM from Scrum Alliance as well as the PSM-I and PSM-II from Scrum.org.

Where these organisations differ is in how they go about granting the certificates. Scrum Alliance require you to attend a training course organised by a certified trainer. The prices of these vary depending on whether they are being held remotely or in person, which country they are being held in, and the level of the course. Typically in the UK you will pay around £700 for a remote course and £2000 for an in person one. Obviously the trainer then pays a fee onto Scrum Alliance. Once you have completed the course you will be sent a link to take the exam on Scrum Alliance’s website. If you pass (the pass mark is 37/50 questions) you’ll be awarded your certificate.

Scrum.org also offer training courses. However, their courses are not a prerequisite to taking the exam. Personally I have never done a Scrum.org course, I simply logged onto the website and purchased the exam token. These vary slightly depending on level but the PSM-I exam is $150 dollars.

It is also worth noting that Scrum Alliance certificates expire and you will either need to attend another course or pay (about £30 I believe) to renew it every couple of years. Scrum.org certificates do not expire.

The next most obvious question is which is easier!? There is a general feeling that the Scrum.org exams are a little more challenging, however I’ve never seen any data to back this up. Personally I scored a couple of percent higher on the Scrum.org exam than the Scrum Alliance one however not enough to state clearly. If you’re looking for a simple answer on which one would be easier to achieve or which holds more market value then I can’t give that. I would say however that the PSM-II (and I assume the A-CSM) covers significantly more ground than the PSM-I and asks questions based drawn from personal knowledge rather than simply knowing the subject matter. There is a distinct step up in difficulty and, although I’ve never taken it I wouldn’t be surprised if the PSM-III was far more challenging again.

So there you have it, all the differences that I’m aware of between the two organisations. If you’re looking for a taught course with a certificate at the end then Scrum Alliance may be for you. If you’re interested in self study and funding then Scrum.org may be the better alternative however I’ve found that both are extremely high quality certificates.

Measure What Matters Book Review

I’ve had this book for a while and it finally reached the top of my Audible list. Measure What Matters has intrigued me for a while, especially as I am focusing on setting and meeting goals at the moment.

Measure What Matters: How Google, Bono, and the Gates Foundation Rock the  World with Okrs: Amazon.co.uk: 9780525536222: Books

I have to confess to being a little disappointed. At it’s core the book discusses OKRs, a kind of public goal which does a very nice job of splitting out the goal and the actionable tasks required to complete it. Visibility creates transparency to make sure no teams are duplicating effort or conflicting priorities, they also allow people to assist each other in meeting their goals.

So far so good, I didn’t have a problem with any of that.

However, the majority of the book was a list of testamonials from the author’s long list of supporters. It was genuinely interesting to see how the technique has been applied to everything from IBM to U2. But I’m really not sure wheeling out the famous and successful was really needed (in the audiobook many of them actually contributed their parts). It felt more like a sales pitch of OKRs rather than a practical guide of implementing them.

I kept finding myself expecting the next chapter to be a “How to get started with OKRs in your business.” but alas, it never came.

Enlightening by adding a new way to think about goals, however disappointing because although I’m intrigued I feel far from equipped to take advantage of the concept.

Do you agree? Have you read Measure What Matters? What did you think?

Interviews With People Who Have Made The Journey

I’ve spent three months describing the role and life of a Junior Software engineer and hopefully providing some useful tips and advice along the way. To wrap up this series I wanted to do something a little different and talk with some of the junior engineers I currently work with to ask them about the journey they’ve made and what advice they would give.

I’m sure this goes without saying but this is a personal blog and the views expressed are personal and do not reflect the views of our current employer or any of my previous companies.

I asked Lizzie and Thaj how they found becoming junior developers. Photo by CoWomen on Pexels.com

Neither of you came from a Computer Science background. What made you want to move into Software Development?

I identified my interest in software programming when I used software programming for certain taught modules whilst studying for an Electronic Engineering degree. As for my final year project at university, I wanted to select it purely of my interest, consisting of mostly software programming. I then developed a tool that is currently being used within the University to extract embedded features in an Electromyography signal. This was the turning point that gave me the confidence to pursue a career in Software development even with a different degree background.

Thaj

I studied Maths at Newcastle University, and was exposed to a small amount of programming, but it was usually used in our statistics modules to model data.  I joined the company as a Client Service Desk Technician in Operations, and worked comfortably in the role for a couple of years, before wanting to utilize my maths degree whilst staying in the organisation, as I really like working hereand love the culture.  I applied successfully for the Graduate Scheme and started in Delivery as an Associate Engineer in 2019, working on my competencies to progress to be an Engineer 1.

If I were to change my journey, I would still choose to study maths at University, however, I would choose to take some computer science modules to understand the fundamentals of software development. I think I would also choose to start reading about and learning programming from a younger age, which would have given me a platform of knowledge to build on when I did start the Graduate Scheme. 

Lizzie

What advice would you give to someone who didn’t study IT at university but was interested in becoming a Software Engineer?

Get as much exposure to as many development materials as possible; if these are online courses, reading online videos, starting your own side projects, you name it.  It’s not essential to study computing at University to become a Software Engineer, but I think an understanding of IT and software development processes is important for building knowledge learned whilst on the job.

Lizzie

If you are goal-oriented and have a true passion for IT, it is not an impossible challenge. Identifying where the passion lies is the first challenge; having the passion for what you want to do always makes it easier to be successful. It will be a comfortable journey if you have a tech background. However, even if not, there are many available resources, including books, articles, blogs which are beneficial whether you are a new starter or an experienced professional.

Thaj

You have both had a challenging journey. Has there been overwhelmed and felt you made a bad decision going into IT? What did you do?

At the beginning of the Graduate Scheme, we undertook a number of workshops run by experienced engineers already working at TU.  There were parts of the workshops that I failed to understand or grasp straight away, which caused me to feel overwhelmed as the other members of my graduate cohort were more advanced than myself.  It did cause me to second guess my abilities, however, I took myself away to calm myself down, reassured myself that this is common for junior engineers that are new to software development (I was also reminded of this by Adam who was running the cohort this year) and carried on.

Lizzie

As a learning aspect from such situations, I have learned not to make decisions quickly based on incomplete information. It is a matter of being more patient and not rushing to conclusions. The methods that I have been following to improve decision-making are reflecting, understanding the context that led to a bad decision, and communicating with an experienced person to gain an opinion before rushing to decide. Never let yourself down and always work towards improving yourself while taking chances to correct the mistakes that led to wrong decisions.

Thaj

There is a lot of discussion at the moment about how to address the huge gender imbalance in IT, especially in Software Development. As a young white male I can’t begin to understand what it must have been like to join an industry which was so male dominated. I asked Lizzie how she found it.

As a young lady joining a male dominated industry must have been quite daunting, what would you say to any young woman thinking about moving into development?

I think it takes a little bit of time to adjust to working with the split of men and women, as the dynamic is slightly different to begin with.  But I wouldn’t allow it to discourage you from applying for a role in a male dominated industry.  There is a massive drive at the moment for Women in Tech around the world, which should hopefully encourage young women to be confident in working in male dominated ‘worlds’, and to understand that the thought of working with predominantly men shouldn’t be daunting!

Lizzie

Finally I wanted to know about the success stories of the pair since becoming developers.

What has been your proudest moment in your development career so far?

Passing my competencies and becoming an Engineer 1 last year.  I initially found the transition to working from home quite difficult, as I had to move to a new house unexpectedly, meaning my work from home environment changed overnight.  I also found it challenging adapting to asking for help and gaining exposure to pieces of work as we weren’t all in the office, but my team were extremely supportive of one another, and we managed to get into the swing of working from home together, and therefore, felt like a big achievement to be promoted to Engineer 1.

Lizzie

I have a couple of moments that I am proud of as a junior Engineer with less than 2 years of working experience. Firstly, securing my first internal promotion even while working from home for almost a year due to the current COVID-19 pandemic. Secondly, I have been involved in organising tech talks for the development community within my workplace, and as a result, I was rewarded with an Excellent value award.

Thaj

I want to give a huge thank you to Thajanee and Lizzie for agreeing to answer my questions and sharing their experience with my readers. They have not had an easy introduction to the industry, adjusting to working at home while still in a very early phase of their career however both have achieved huge success at our company.

I want to wrap up this series of Junior Developer posts by thanking you for following along, I do hope that this has entertained and hopefully inspired a few people to considering giving Software Development a try. I am always contactable so if I can be of any further support please do not hesitate to get in touch.

Best of luck!