-
Follow https://ohmyz.sh/#install
-
Patch the
agnostertheme with this: https://gist.github.com/tchupp/8d205c9fb6eafd097605f5b5f0e025ac# copy the contents of the Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| setup() { | |
| load 'test_helper/bats-support/load' | |
| load 'test_helper/bats-assert/load' | |
| } | |
| teardown() { | |
| true | |
| } | |
| set -euo pipefail |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # vim:ft=zsh ts=2 sw=2 sts=2 | |
| # | |
| # agnoster's Theme - https://gist.github.com/3712874 | |
| # A Powerline-inspired theme for ZSH | |
| # | |
| # # README | |
| # | |
| # In order for this theme to render correctly, you will need a | |
| # [Powerline-patched font](https://github.com/Lokaltog/powerline-fonts). | |
| # Make sure you have a recent version: the code points that Powerline |
I hereby claim:
- I am tchupp on github.
- I am theochupp (https://keybase.io/theochupp) on keybase.
- I have a public key whose fingerprint is EC53 90C9 8812 D49B 34AB 12AA D106 461E 770A B141
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Symbols | |
| U: up (top) | |
| B: bottom | |
| L: left | |
| R: right | |
| F: front | |
| F <- rotate front clockwise | |
| F' <- rotate front counter-clockwise |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class DeviceConfigurationAdapter( | |
| private val retrofit: Retrofit, | |
| private val client: DeviceConfigurationClient, | |
| private val authHeader: String | |
| ) : (DeviceIdentity) -> Either<DeviceConfigurationError, Device> { | |
| override fun invoke(identity: DeviceIdentity): Either<DeviceConfigurationError, Device> { | |
| val request = DeviceConfigurationRequest(identity.id, identity.certificate.asX509Pem()) | |
| return client.getDeviceConfiguration(request, authHeader) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package closer | |
| import "github.com/hashicorp/go-multierror" | |
| type Closer interface { | |
| Close() error | |
| } | |
| func CloseMany(closers ...Closer) error { | |
| var result *multierror.Error |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| div.pipeline-wrapper { | |
| position: relative; | |
| background-color: transparent !important; | |
| padding: 10px; | |
| } | |
| .PENDING, .MANUAL { | |
| background-color: #00bcd4; | |
| color: #222; | |
| } |
