목록전체 글 (1488)
오늘도 공부
단계별 따라하기 https://medium.com/@dmilicic/a-detailed-guide-on-developing-android-apps-using-the-clean-architecture-pattern-d38d71e94029 마틴아저씨의 비디오 강의https://vimeo.com/43612849 클린 아키텍쳐상에서 RxJava 적용https://fernandocejas.com/2015/07/18/architecting-android-the-evolution/
https://httpbin.org
분명 비어있는 데 trim 을 했을 경우 안없어지는 경우가 발생할 수 있다. 그럴경우 아래 함수를 실행해보자.public static String trimAdvanced(String value) { Objects.requireNonNull(value); int strLength = value.length(); int len = value.length(); int st = 0; char[] val = value.toCharArray(); if (strLength == 0) { return ""; } while ((st 0) || (len < strLength)) ? value.substring(st, len) : value; }
http://aroundck.tistory.com/m/477
http://leandrofavarin.com/exponential-backoff-rxjava-operator-with-jitter
http://kimjihyok.info/2017/05/04/android-debug-tools-%EB%94%94%EB%B2%84%EA%B9%85-%EB%8F%84%EA%B5%AC-%EC%B4%9D%EC%A0%95%EB%A6%AC/
https://pgr21.com/pb/pb.php?id=humor&no=313145&page=2
Stopping server Error: EPERM: operation not permitted, mkdir라고 나오면 gitbook fetch 2.6.7하고gitbook serve --gitbook=2.6.7 으로 실행해주면 된다. 최신버전에 문제가 있나 보다..
https://balamaci.github.io/rxjava-walkthrough/
출처: http://doohyun.tistory.com/44 [N`s Lab] List subjectRelationList = Arrays.asList( new SubjectRelation(1, 1001, "Doohyun Nam", 1) , new SubjectRelation(1, 1002, "Dolkin", 2) , new SubjectRelation(1, 1003, "hshawng", 1) , new SubjectRelation(1, 1004, "spKwon", 1) , new SubjectRelation(2, 1005, "Other Person1", 3) , new SubjectRelation(2, 1006, "Other Person2", 4) ); // create MapMap mapTest = ..
