Skip to content

Instantly share code, notes, and snippets.

View lassiter's full-sized avatar
👨‍💻

Lassiter Gregg lassiter

👨‍💻
  • Austin, TX
View GitHub Profile
@lassiter
lassiter / production-slack-release-notes
Last active July 30, 2019 14:28 — forked from erin-at-work/deploy-to-prod
deploy-master-template
🚨*PRODUCTION* 🚨
`candidco-web` Release `19.X.XX.X` available for review https://www.candidco.com
https://github.com/candidco/candidco-web/pull/<PR_NUMBER>
```
```
@lassiter
lassiter / player-js-analysis.md
Last active November 29, 2017 03:49 — forked from R-V-S/player-js-analysis.md
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.