Impact | Description | Total |
---|---|---|
Direct Impact | Meetups, confs and talks | +1.1k |
Indirect Impact | Articles, Stack overflow | +135k |
People Trained | Workshops | +60 |
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
@Singleton | |
@Component(modules = [AssistedInjectionModule::class]) | |
interface ApplicationComponent { | |
fun mySavedStateViewModelFactory(): MySavedStateViewModel.Factory | |
} |
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
// ViewModel factory | |
@MainThread | |
inline fun <reified VM : ViewModel> ComponentActivity.viewModel( | |
noinline provider: (SavedStateHandle) -> VM | |
) = createLazyViewModel( | |
viewModelClass = VM::class, | |
savedStateRegistryOwnerProducer = { this }, | |
viewModelStoreOwnerProducer = { this }, | |
viewModelProvider = provider |
- https://www.reddit.com/r/TREZOR/comments/2otibh/how_to_install_bitcoin_trezor_bridge/
- https://blog.trezor.io/introducing-new-trezor-bridge-v2-2b7ea5478d65
- Visit https://wallet.trezor.io/data/bridge/latest/index.html. For MacOS, you download a .pkg file.
- From https://wallet.trezor.io/data/bridge/latest/index.html also download the PGP signature file.
- The Satoshi Labs CTO signs the Bridge releases. Download his PGP key from his Keybase signature: https://keybase.io/stick This means at least that someone created an account with his identity and bothered to link a specific PGP key. If you retain this key over time, you can be sure that it wasn't recently swapped out. You can find same PGP under his identity in various places on the web: https://duckduckgo.com/?q=Pavol+Rusn%C3%A1k+pgp+key&ia=web
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream