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
| public class RxSearchObservable { | |
| public static Observable<String> fromView(SearchView searchView) { | |
| final PublishSubject<String> subject = PublishSubject.create(); | |
| searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() { | |
| @Override | |
| public boolean onQueryTextSubmit(String s) { | |
| subject.onComplete(); |
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
| $ git clone git@github.com:xxxxx/xxxx.git my-awesome-proj | |
| Cloning into 'my-awesome-proj'... | |
| ssh: connect to host github.com port 22: Connection timed out | |
| fatal: Could not read from remote repository. | |
| $ # This should also timeout | |
| $ ssh -T git@github.com | |
| ssh: connect to host github.com port 22: Connection timed out | |
| $ # but this might work |
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
| fun <T> debounce( | |
| waitMs: Long = 300L, | |
| scope: CoroutineScope, | |
| destinationFunction: (T) -> Unit | |
| ): (T) -> Unit { | |
| var debounceJob: Job? = null | |
| return { param: T -> | |
| debounceJob?.cancel() | |
| debounceJob = scope.launch { | |
| delay(waitMs) |
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
| import android.content.Context | |
| import android.content.SharedPreferences | |
| import kotlin.reflect.KProperty | |
| /** | |
| * Represents a single [SharedPreferences] file. | |
| * | |
| * Usage: | |
| * | |
| * ```kotlin |
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 com.thunderclouddev.changelogs.ui | |
| import android.content.Context | |
| import android.os.Bundle | |
| import android.support.annotation.LayoutRes | |
| import android.support.annotation.StyleRes | |
| import android.support.v7.app.AppCompatActivity | |
| import com.thunderclouddev.changelogs.BaseApplication | |
| import com.thunderclouddev.changelogs.R | |
| import com.thunderclouddev.changelogs.configuration.LanguagePreference |