목록IT (1045)
올해는 머신러닝이다.
해당 예제 바로 가기!!https://github.com/MindorksOpenSource/android-mvp-architecture Read the below listed articles. They describe the MVP concepts and the Project structure.MVP: Part 1MVP: Part 2MVP: Part 3Extension with Interactors and RepositoriesThe app has following packages:data: It contains all the data accessing and manipulating components.di: Dependency providing classes using Dagger2.ui: View c..
https://mindorks.com/open-source-projects
http://www.boxnwhis.kr/2015/01/29/a_b_testing.html
안녕하세요, 해당 서적이 다루는 범위가 너무 광범위하여서 시작하는 단계시라면 내용 소화가 어렵지 않으실까 싶습니다. 따라서 기본적인 내용들을 정리하시려는 것이면 먼저 아래 온라인 컨텐츠를 추천드립니다. https://docs.microsoft.com/ko-kr/azure/machine-learning/ 음... 그리고 Azure ML은 관련된 여러 무료/유료 사이트 들이 있는데, www.edx.org 에 관련된 내용들이 잘 정리 되어 있습니다. 동영상 강좌와 LAB들로 구성되며, 영문이지만 스크립트가 같이 제공되기 때문에, 구글 번역기 등으로 보시면 영어가 부담스러우셔도 진도 나가는 것에는 큰 문제 없으실 것입니다. edx에서 추천드리는 코스는 다음과 같습니다.(순서대로 다 하시면 Azure ML을 마스..
공식 버전 (안드로이드는 2.11까지가 현재 최신버전 - 2017.8.15일자)https://github.com/google/dagger/tree/dagger-2.11https://google.github.io/dagger/android.html#support-libraries 파트 1https://proandroiddev.com/how-to-android-dagger-2-10-2-11-butterknife-mvp-part-1-eb0f6b970fd 파트 2https://proandroiddev.com/how-to-android-dagger-2-10-2-11-butterknife-mvp-part-2-6eaf60965df7
Courses using Exporepl.it - React Native - Build your first app in the next 5 minutes (free)RMOTR - React Native & Expo for Mobile DevelopmentUdemy - React Native: Advanced Concepts by Stephen GriderPluralsight - Build Cross Platform React Native Apps with Expo and Redux (old)React Europe - Introduction to React Native Workshop videos on YouTubeReact NativeReact Native Express - The best way to ..
https://android.jlelse.eu/mvp-dagger-2-rx-clean-modern-android-app-code-74f63c9a6f2f
Dagger2 적용해보기 1. Mvp 패턴만 있는 버전https://github.com/bear2u/MvpBoilerplate 2. Mvp + Dagger2.0 패턴 적용 버전https://github.com/bear2u/Mvp_Dagger2 3. Mvp + Dagger2.11 + Fragment + MultiActivityBinding 까지 적용된 버전입니다.https://github.com/bear2u/Mvp_Dagger2/tree/dagger2.11 ( 브랜치가 2.11로 바뀐 부분입니다. ) 필요하신 분은 받으셔서 바로 위에서 추가적으로 작업하시면 편합니다. 그럼 좋은 하루 되십시요.
https://kylewbanks.com/blog/react-native-tutorial-part-1-hello-react
예제 소스 모음https://github.com/VctrySam/Tinder
http://qiita.com/monoqlo/items/7bcec98432389b3b8909
https://medium.com/@trilliwon/rxswift-%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-2-9%EB%B6%84-59-%EC%B4%88-f42f28407e75
https://medium.com/@trilliwon/rxswift-%EA%B8%B0%EB%B3%B8-%EC%9D%B5%ED%9E%88%EA%B8%B0-1-d4d77ce63ca8
https://brunch.co.kr/@tilltue/33
http://qiita.com/kazu0620/items/bde4a65e82a10bd33f88
http://qiita.com/kzykbys/items/3bbb4fa24d30917afd05
http://ppss.kr/archives/127005
자바스크립트 학습 방법에 대해서 쓴 글입니다. 한번 쯤 읽어볼만합니다. 페이지 방문
http://mommoo.tistory.com/61
vsftpd.conf 설정 설명# anonymous 사용자의 접속 허용 여부, 즉 anonymous ftp (default = YES) # 공개된 형태의 FTP 서버로 운영할 것이 아니라면 NO로 한다. anonymous_enable=NO # 로컬 계정 사용자의 접속 허용 여부 (default = NO) local_enable=YES # write 명령어 허용 여부 (defualt = NO) write_enable=YES # 로컬 계정 사용자용 umask (default = 077) local_umask=022 # anonymous 사용자가 파일을 업로드 할 수 있는지 여부 (default = NO) # anon_upload_enable=YES # anonymous 사용자의 디렉토리 생성 허용 여부 (d..
@Override public void onLowMemory() { super.onLowMemory(); Glide.get(this).clearMemory(); } @Override public void onTrimMemory(int level) { super.onTrimMemory(level); Glide.get(this).trimMemory(level); } 을 넣어주는 센스~
출처 : https://rongi.github.io/kotlin-blog/rxjava/rx/2017/08/01/error-handling-in-rxjava.html?utm_source=Android+Weekly&utm_campaign=51f4814861-android-weekly-269&utm_medium=email&utm_term=0_4eb677ad19-51f4814861-338106413Once you start writing RxJava code you realize that some things can be done in different ways and sometimes it’s hard to identify best practices right away. Error handling is one..
1down vote어댑터 내부에서 리스너 추가시 포지션 값이 잘못 되는 경우가 많음..아래와 같이 하면 됨...class MyOnClickListener implements View.OnClickListener { @Override public void onClick(View v) { int itemPosition = mRecyclerView.getChildAdapterPosition(v); myResult = results.get(itemPosition); } }And in the adapter@Override public MyAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { View v = LayoutInflater.fro..
스토리 보드 팁 스토리보드 사용시 깔끔하게 나누는 방법https://brunch.co.kr/@joonwonlee/5 http://theeye.pe.kr/archives/2292
출처 : http://blog.naver.com/PostView.nhn?blogId=sukjun40&logNo=100171180154 AudioTrack, AudioRecord 클래스를 활용하여 목소리 자동 감지 프로그램을 만들어 보았습니다. 이 소스는 code.google.com 의 sounddemodulation 원본소스 링크http://code.google.com/p/sounddemodulation/downloads/detail?name=AudioDemodulator.zip&can=2&q= 예제를 그대로 가져와 약간만 변형한 것입니다. 녹음 플레이 코드는 대부분 같고 자동으로 녹음저장과 끝을 맺는것만 다릅니다. 따로 녹음 버튼과 녹음 중지 버튼이 있는것이 아니라 목소리가 커지는 시점을 잡아서 저장하..
http://blog.weirdx.io/post/1486
출처 : http://www.journaldev.com/13792/android-gridlayoutmanager-exampleAndroid GridLayoutManagerWe’ve implemented a RecyclerView using a LinearLayoutManager here. Now let’s use a GridLayoutManagerto layout the RecyclerView as a grid.Following is the constructor for a GridLayoutManager.GridLayoutManager (Context context, int spanCount, int orientation, boolean reverseLayout)reverseLayout if set tr..
These commands are based on a askubuntu answer http://askubuntu.com/a/581497To install gcc-6 (gcc-6.1.1), I had to do more stuff as shown below.USE THOSE COMMANDS AT YOUR OWN RISK. I SHALL NOT BE RESPONSIBLE FOR ANYTHING.ABSOLUTELY NO WARRANTY. If you are still reading let's carry on with the code. sudo apt-get update && \sudo apt-get install build-essential software-properties-common -y && \sud..
https://blog.lael.be/post/73