Pawel Hajduk
Pawel Hajduk
I checked the code and it looks like if we go for it then [this](https://github.com/hotchemi/Android-Rate/blob/master/library/src/main/java/hotchemi/android/rate/AppRate.java#L189-L194) will be complicated much more. I'm also wondering what will happen when we setup for...
Hey @KevCron OK so I have following configuration of my `Store`: ``` private val constructionForUpload = FluentStoreBuilder.parsedWithKey( Fetcher { api.getConstructions().map { it.source() } }) { parsers = listOf(GsonParserFactory.createSourceParser(gson, ConstructionsResponse::class.java)) persister...
@stealthycoin I think you should be aware that due to the fact that AWS released the newest Managed Airflow (v2.5.1) [that is using PyYAML v6+ ](https://github.com/aws/aws-mwaa-local-runner/blob/v2.5.1/docker/config/constraints.txt#L38) without merging this pull,...
According to [this](https://github.com/JakeWharton/RxBinding/commit/8281a5e3daaa8ddd525b9461d0c8cf187b376f74) commit I believe it applies to more classes: `ViewLongClickEventOnSubscribe`, `ViewLongClickOnSubscribe`, `ViewDragOnSubscribe`, `ViewDragEventOnSubscribe`, `ViewTouchEventOnSubscribe`, `ViewTouchOnSubscribe`, `AdapterViewItemLongClickEventOnSubscribe`, `AdapterViewItemLongClickOnSubscribe`, `TextViewEditorActionEventOnSubscribe`, `TextViewEditorActionOnSubscribe` which means that's serious change :cry:
@JakeWharton you're right that there's no longer a way for downstream code to know if the event was handled. However in current implementation value won't be propagated to the downstream...
@Den-Rimus Does your solution differ somehow from mine posted in very first comment?
@frankfarrell I implemented new feature which is based on official AWS provider and IAM users. This change allow to generate and encrypt password using PGP Keybase.
Hi @frankfarrell 1. This is supported by Terraform out of the box. By _this_ I mean support for PGP encryption using Keybase public keys. I've added mentions about this fact...
@frankfarrell I've checked [encryption](https://github.com/hashicorp/terraform/tree/master/helper/encryption) implementation and they didn't support decryption in same way as they support encryption. We would need to write much more code and use [vault](https://github.com/hashicorp/vault/blob/master/helper/pgpkeys/encrypt_decrypt.go#L92) helper. In...
@frankfarrell are you interested in merging those changes? Not sure if I should implement anything more here or should I maintain it in separated fork.