TFLearn 의 메인 커미터가 초보자를 위한 텐서플로우 예제를 모아놓은 TensorFlow-Examples 깃허브 레파지토리를 만들었습니다. 이 예제는 크게 두 부분으로 나뉘어서 윗부분은 쥬피터 노트북과 일반 코드로 두가지 버전으로 작성되어 있습니다. 

'링크모음 > Android' 카테고리의 다른 글

Google AR 링크 정리  (0) 2017.08.30
이미지 프로세싱 튜터리어ㄹ  (0) 2017.08.30
구글 스피치api 제작  (0) 2017.08.27
챗봇 만들기  (0) 2017.08.27
datBinding 작동방식  (0) 2017.08.27

http://jybaek.tistory.com/671

https://brunch.co.kr/@pilsogood/10

http://sdusb.blogspot.com/2017/08/android-databinding-6-inversebinding.html

http://pluu.github.io/blog/android/droidkaigi/2017/08/21/doridkaigi-android/

http://hugrypiggykim.com/2017/08/24/%EB%94%A5%EB%9F%AC%EB%8B%9D-%EA%B5%90%EC%9C%A1-%EC%9E%90%EB%A3%8C-deep-learning-lecture/

'링크모음 > React' 카테고리의 다른 글

리엑터 패턴 모아놓은 곳  (0) 2017.11.11
리엑트 네이티브 애니메이션 튜터리얼  (0) 2017.11.06
RN 러닝 링크 모음  (0) 2017.08.13
리엑티브 네이티브 계산기 예제 1  (0) 2017.08.11
RN 예제 소스 모음  (0) 2017.08.10

안드로이드 O의 새로운 기능 정리 링크

https://academy.realm.io/kr/posts/android-oreo-new-features/

1) SMC 재설정: 맥북 시동시 control + option + shift + 전원버튼을 동시에 눌러서 진행을 하시는 작업입니다. 

관련문서: Mac에서 SMC(시스템 관리 컨트롤러) 재설정하기 - https://support.apple.com/ko-kr/HT201295


(2).NVRAM 재설정: 맥북 시동시 command + option + P + R 버튼을 동시에 눌러서 진행을 하시는 작업입니다. 

관련문서:Mac에서 NVRAM을 재설정하는 방법 - https://support.apple.com/ko-kr/HT204063

rxjava 가 메이저 버전 업(1->2)을 하면서 몇 가지 변경점이 생겼다.

변경점에 대한 자세한 내용은 아래 링크를 참조하기 바란다.

Flowable 이라는 base reactive class 가 추가 되었다. Observable 과의 차이는 backpressure buffer의 기본 탑재 유무이다.

출처 : https://stackoverflow.com/a/42005735

I'd suggest using a Single as it is more accurate representation of the data flow: you make a request to the server and the you get either one emission of data OR an error:

Single:     onSubscribe (onSuccess | onError)?

For an Observable you could theoretically get several emissions of data AND an error

Observable: onSubscribe onNext? (onCompleted | onError)?

However, if you are using , I'd suggest using a Maybe instead of Single. The difference between those two is that Maybe handles also the case when you get the response from server but it contains no body.

Maybe:      onSubscribe (onSuccess | onCompleted | onError)?


'링크모음 > Swift' 카테고리의 다른 글

swift4 tour  (0) 2017.10.22
노티피케이션 사용법  (0) 2017.10.20
swift 에서 self 값 체크  (0) 2017.10.18
pod update/install 시 라이버러리를 전부 강제 3.2로 세팅하기  (0) 2017.10.16
Contributing to Swift  (0) 2017.08.30
https://brunch.co.kr/@svillustrated/12
바로가기

'링크모음 > etc' 카테고리의 다른 글

무료 강의  (0) 2017.09.02
Headless Chrome으로 AWS Lambda에서 웹사이트 스크린샷 찍기 링크구분  (0) 2017.08.31
권한설정 법  (0) 2017.08.21
A/B 테스팅이란  (0) 2017.08.16
azure 공부방법  (0) 2017.08.15

https://jongmin92.github.io/2017/08/11/Node/check-in-app-billing-purchase-validation/

Google for Mobile 2017: http://www.youtube.com/playlist?list=PL6OeXcmhVzfQi89BOOaHY5j1h26ccQXfK

http://m.blog.daum.net/_blog/_m/articleView.do?blogid=0OI3i&articleno=6590
https://www.bignerdranch.com/blog/splash-screens-the-right-way/

'링크모음 > Android' 카테고리의 다른 글

Google for Mobile 2017  (0) 2017.08.23
splash 화면 올바르게 구현  (0) 2017.08.21
Mvp + Dagger2 + Rx 풀 예제 소스  (0) 2017.08.17
안드로이드 오픈소스 추천 링크  (0) 2017.08.17
Dagger2.1 + mvp 추천 링크  (0) 2017.08.15

해당 예제 바로 가기!!

https://github.com/MindorksOpenSource/android-mvp-architecture


Read the below listed articles. They describe the MVP concepts and the Project structure.

  1. MVP: Part 1
  2. MVP: Part 2
  3. MVP: Part 3
  4. Extension with Interactors and Repositories

The app has following packages:

  1. data: It contains all the data accessing and manipulating components.
  2. di: Dependency providing classes using Dagger2.
  3. ui: View classes along with their corresponding Presenters.
  4. service: Services for the application.
  5. utils: Utility classes.

Classes have been designed in such a way that it could be inherited and maximize the code reuse.

Library reference resources:

  1. RxJava2: https://github.com/amitshekhariitbhu/RxJava2-Android-Samples
  2. Dagger2: https://github.com/MindorksOpenSource/android-dagger2-example
  3. FastAndroidNetworking: https://github.com/amitshekhariitbhu/Fast-Android-Networking
  4. PlaceHolderView: https://github.com/janishar/PlaceHolderView
  5. AndroidDebugDatabase: https://github.com/amitshekhariitbhu/Android-Debug-Database
  6. Calligraphy: https://github.com/chrisjenx/Calligraphy
  7. GreenDao: http://greenrobot.org/greendao/
  8. ButterKnife: http://jakewharton.github.io/butterknife/

Concept reference resources:

  1. Introduction to Dagger 2: Part 1
  2. Introduction to Dagger 2: Part 2
  3. Android Dagger2: Critical things to know before you implement
  4. The Best Android Networking Library for Fast and Easy Networking
  5. RxJava + Fast Android Networking
  6. Migrating from RxJava 1.0 to RxJava 2.0 and Learn RxJava by Examples
  7. Android Tinder Swipe View Example
  8. Debugging Android Databases And Shared Preferences In The Easiest Way
  9. RxJava Anatomy: What is RxJava, how RxJava is designed, and how RxJava works.
  10. Powerful Android ORM: greenDAO 3 Tutorial

Playstore App of Mindorks build on this MVP architecture

Correctify: An English Editing and Learning app

Looking for MVVM Architecture - Check here

Mindorks open source projects

Check out Mindorks awesome open source projects here

+ Recent posts