Skip to content

Instantly share code, notes, and snippets.

View StevenACoffman's full-sized avatar

Steve Coffman StevenACoffman

View GitHub Profile
@StevenACoffman
StevenACoffman / time-test.md
Created March 25, 2022 00:37
Time Tested techniques for testing time

You can use an unexported package variable pointing to the time.Now function.

var (
    timeNow   = time.Now
    timeAfter = time.After
)

// ...

type Obj struct{}

@StevenACoffman
StevenACoffman / kubernetes-gitops-secrets.md
Last active June 23, 2023 21:11
Kubernetes GitOps Secrets
@StevenACoffman
StevenACoffman / static.md
Last active January 21, 2022 19:09
Static binaries for various languages
@StevenACoffman
StevenACoffman / go-mod-update.md
Last active November 14, 2021 16:20
go mod update

If you use cgo, then a lot of go module tools get really slow per golang/go#29427

For example, this is really slow:

go list -m -u all

Maybe Instead:

@StevenACoffman
StevenACoffman / pull-request-types.md
Created October 3, 2021 15:49
pull-requests-types.md

After reading Rouan Wilsenach’s article on Ship / Show / Ask, I realized that when creating a pull request, I’m thinking about:

  • How can I confidently get my code out of the door?
  • Will my changes pass the automated CI checks?
  • Will my changes pass a self-review? I.e. would I approve my own PR?
  • Will my colleagues be able to give me good feedback?

So this gives us 7 types of pull-request:

No Pull Request / Ship
@StevenACoffman
StevenACoffman / stackoverflow-source.md
Created October 3, 2021 00:09
Get Source code from Stack overflow
@StevenACoffman
StevenACoffman / notes-testing.md
Last active September 5, 2024 18:38
HTTP testing in Go

Goal: Less Badness

  • Enable Quality
  • Enable Maintenance
  • Enable Validation

Testing Terms

  • Stub - an object that provides predefined answers to method calls.
  • Mock - an object on which you set expectations.
  • Fake - an object with limited capabilities (for the purposes of testing), e.g. a fake web service.
@StevenACoffman
StevenACoffman / a-non-root-ssh-keys-in-kube.md
Last active September 5, 2022 20:21
SSH keys in kubernetes as non-root
# get your own login
query { 
  viewer { 
    login
  }
}

List the organizations for a user: