Skip to content

Instantly share code, notes, and snippets.

Intro

Hello! This humble doc is an expression of my own personal beliefs about engineering management. The purpose is to shed insight into what it will be like to work with me.

Philosophy

As you're reading, please imagine that every statement in this document is prefaced with the words, "I believe that...," because nothing in this document is necessarily "right" – it's just a collection of my own opinions and values.

What's the purpose of an engineering manager?

@R-V-S
R-V-S / player-js-analysis.md
Created August 14, 2017 13:00
player.js analysis
  1. This file declares a class, Player, instantiates it, and assigns it to a global player variable.
  2. The Player class contains four methods:
    • constructor()
    • playPause()
    • skipTo()
    • setVolume()
  3. The constructor() method sets initial values for the currentlyPlaying, playState, volume, and soundObject properties.
    • currentlyPlaying is set to the first item in album.songs.
    • The initial playState is "stopped".
  • The volume is set to the number 80.