목록전체 글 (1358)
오늘도 공부
Rxjava2 Extrashttps://github.com/davidmoten/rxjava2-extras RxJava2 Extentionshttps://github.com/akarnokd/RxJava2Extensions
https://mingrammer.com/translation-10-common-software-architectural-patterns-in-a-nutshell
실시간 서비스 경험기(배달운영시스템) 우아한 형제들 기술 블로그http://woowabros.github.io/woowabros/2017/09/12/realtime-service.html
포토샵에서 스크립트로 다 분리하는 방법입니다. http://www.uncorkedstudios.com/blog/export-to-android-photoshop-script/
출처 : https://stackoverflow.com/a/43343039Observable observable1 = Observable.from(new String[]{"A", "B", "C", "D"}); Observable observable2 = Observable.from(new String[]{"E", "C", "B", "G", "J", "O"}); observable1.concatMap(new Func1() { @Override public Observable call(final String string) { return observable2.contains(string); } }).zipWith(observable1, new Func2() { @Override public String ca..
출처 : https://github.com/ReactiveX/RxAndroid/wiki RxLifecycle - Lifecycle handling APIs for Android apps using RxJavaRxBinding - RxJava binding APIs for Android's UI widgets.SqlBrite - A lightweight wrapper around SQLiteOpenHelper and ContentResolver which introduces reactive stream semantics to queries.Android-ReactiveLocation - Library that wraps location play services API boilerplate with a re..
/*** * This is a helper wrapper Subscriber that helps you lazily defer * continuous paging of a result set from some API. * Through the use of a {@link Subject}, it helps notify the original {@link Observable} * when to perform an additional fetch. * The notification is sent when a certain count of items has been reached. * Generally this count represents the page. * @param The event type */ @Da..
http://archive.li/aWpHd
http://forensic-proof.com/archives/300