Server boot

Four server states#

For the first file about pixel art and computer programming, we’ll go with four little computer states using the vinik24 pallete (https://lospec.com/palette-list/vinik24).

Example image

Let’s also write a little enum to represent these 4 states:

enum State {
  Off = 0,
  Ok = 1,
  Error = 2,
  Waiting = 3
}

With these two items in mind, it’s confirmed that this file is about both pixel art and computer programming.