Backend Engineer 2022 Roadmap

December 21, 2021

Laptop

There is a lot of buzz-word soup and premature tech hype in the software industry that can makes it hard to focus on developing strong and long lasting skills. For 2022 I will be laying out a 12 month roadmap for anyone to use to become a better backend software engineer in a distracted world.

Annual Objectives

This is an example blog post with React components. This page is using the Image component from Next.js.

example-post.mdx
<Image
  alt={`Laptop`}
  src={`/images/laptop-on-desk.jpg`}
  width={1920}
  height={2880}
  priority
/>

Code Blocks

This starter also comes with fancy code blocks with code titles.

example.jsx
import React, { useState } from 'react';

function Example() {
  // Declare a new state variable, which we'll call "count"
  const [count, setCount] = useState(0);

  return (
    <div>
      <p>You clicked {count} times</p>
      <button onClick={() => setCount(count + 1)}>
        Click me
      </button>
    </div>
  );
}

Return Home.