This file contains 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
// Merge of | |
// https://github.com/mgouline/android-samples/blob/master/jacoco/app/build.gradle | |
// and https://github.com/pushtorefresh/storio/blob/master/gradle/jacoco-android.gradle | |
// Requires Jacoco plugin in build classpath. | |
apply plugin: 'jacoco' | |
jacoco { | |
toolVersion = "0.8.3" | |
} |
This file contains 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.lahaus.utils.extensions | |
import androidx.paging.DataSource | |
import androidx.paging.PagedList | |
import androidx.paging.PositionalDataSource | |
import androidx.paging.RxPagedListBuilder | |
import io.reactivex.Observable | |
fun <T> List<T>.toObservablePagedList(): Observable<PagedList<T>> { | |
val defaultConfig = PagedList.Config.Builder() |
This file contains 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
// Merge of | |
// https://github.com/mgouline/android-samples/blob/master/jacoco/app/build.gradle | |
// and https://github.com/pushtorefresh/storio/blob/master/gradle/jacoco-android.gradle | |
// Requires Jacoco plugin in build classpath. | |
apply plugin: 'jacoco' | |
jacoco { | |
toolVersion = "0.8.3" | |
} |
This file contains 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
for f in $(find . -name '*.kt') | |
do | |
echo "" >> "$f" | |
done |
This file contains 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
#!/bin/bash | |
find $1 -type f -exec sed -i "s/$2/$3/g" '{}' \; |
- 1 https://www.amazon.com/gp/product/B00E50SZO4/ref=oh_aui_detailpage_o04_s00?ie=UTF8&psc=1
- 1 https://www.amazon.com/gp/product/B073XSCN6J/ref=oh_aui_detailpage_o04_s00?ie=UTF8&psc=1
- 1 https://www.amazon.com/gp/product/B073X8X99X/ref=oh_aui_detailpage_o04_s01?ie=UTF8&psc=1
- 2 https://www.amazon.com/gp/product/B00CV859XC/ref=oh_aui_detailpage_o01_s00?ie=UTF8&psc=1
https://www.citibank.com.co/resources/pdf/transacciones_internacionales.pdf
- Cambio del dia 05/01 (compra): 2,890.47
This file contains 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 Foundation | |
import RxSwift | |
import RxCocoa | |
extension ObservableType where E == String { | |
/// Limit the max size of the string that's been emitted | |
func limit(maxStringSize: Int) -> RxSwift.Observable<String> { | |
return scan("") { (previous, new) -> String in | |
return new.count <= maxStringSize ? new : previous |