Skip to content

Instantly share code, notes, and snippets.

@saltmade
saltmade / developer-assessment.md
Created July 23, 2018 15:53
How Our Dev Team is Assessed

Developer Metrics

I think we should have four major goals. We should measure these goals as well as the factors we believe contribute to them. Methods of measuring each factor are denoted with [brackets]. They are in no particular order as follows:

  • Features Delivered
    • How do we measure? [Stories per quarter]
    • Each feature must have acceptable test coverage, must be an approach acceptable by peers, and gets bonus points for cleverness or efficiency
    • Affected by:
      • Our work with Biz & Design to determine scope [survey customer happiness]
      • Accuracy of estimates [keep history, noah charts this]
  • How well we follow our process, breaking these down [points::stories ratio]
@saltmade
saltmade / git-cheatsheet.md
Last active September 17, 2018 20:25
A git cheatsheet

My Git Cheatsheet

A collection of git commands and also a method of recording my git knowledge

Add changes hunk by hunk (aka patch) git add -p

Edit previous commits git rebase -i <commit ID>

Add all untracked files to the index without adding content (good for use with patch)