Skip to content

Instantly share code, notes, and snippets.

@challiwill
challiwill / tracker.md
Last active February 18, 2020 01:17
Pivotal Tracker FAQ

TLDR

  • Stories are the beginning of a conversation. It's not a bad idea to chat with the PM when picking up each story to ensure you understand their intentions. Same thing goes for the designs. Never hesitate to chat with the PM/Designer during the delivery of a story to get clarification or propose alternatives that are easier or better.
  • The order or stories in Tracker is set intentionally by the PM. Please pick up the stories one at a time in order.
  • Generally, there should not be multiple started stories with the same owner. If you believe you are in an exception case chat with the PM before picking up a second story.

Index

### Keybase proof
I hereby claim:
* I am challiwill on github.
* I am challiwill (https://keybase.io/challiwill) on keybase.
* I have a public key ASBWhQaTmh7t_6n8oFEoLcPAivGhItATIss0tNv1-ulAXgo
To claim this, I am signing this object:
@challiwill
challiwill / convert.sh
Created March 17, 2016 00:02
convert omegas to Expect's
for pattern in \
'Ω(a).Should(b) -> Expect(a).To(b)' \
'Ω(a).Should(b, c) -> Expect(a).To(b, c)' \
'Ω(a).ShouldNot(b) -> Expect(a).NotTo(b)' \
'Ω(a).ShouldNot(b, c) -> Expect(a).NotTo(b, c)' \
'Ω(a).To(b) -> Expect(a).To(b)' \
'Ω(a).ToNot(b) -> Expect(a).NotTo(b)' \
'Ω(a).NotTo(b) -> Expect(a).NotTo(b)' \
; do
find . -name '*.go' -a -not -path '*/Godeps/*' | xargs gofmt -w -r "${pattern}";