I hereby claim:
- I am nzroller on github.
- I am nzroller (https://keybase.io/nzroller) on keybase.
- I have a public key ASDSfO0YA6Jmmup-CSb80LaNYOdAh2I6fVqt8yRjw4dwvQo
To claim this, I am signing this object:
| #!/bin/sh | |
| # Delete local branches whose upstream has been removed | |
| # (useful for Github squashed and merged branches) | |
| # WARNING: git branch -D will force delete branches! | |
| git branch -vv | grep ' gone' | cut -d' ' -f1-3 | xargs -i git branch -D {} |
I hereby claim:
To claim this, I am signing this object:
| import static org.junit.Assert.assertEquals; | |
| import org.junit.Test; | |
| import com.fasterxml.jackson.annotation.JsonInclude; | |
| import com.fasterxml.jackson.databind.ObjectMapper; | |
| import com.fasterxml.jackson.module.afterburner.AfterburnerModule; | |
| public class PrimitiveTest { | |
| @JsonInclude(JsonInclude.Include.NON_EMPTY) |