일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 안드로이드 클린 아키텍쳐
- 뷰 상태복구
- 특가촌
- nvidia-docker
- compileKotlin FAILED
- 타이머앱
- 안드로이드
- fragment
- Koin
- RX
- 카드내역 공유
- RxJava
- moveToState
- 작성
- andorid
- Quickly
- todofication
- recyclerview
- List
- 올인원타이머
- android clean architecture
- Android
- 특가알람
- kotlin
- onViewCreated
- java.lang.OutOfMemoryError: Java heap space
- 대학톡
- 카드 내역 공유 앱
- 뷰 상태 저장
- 특가게시판
- Today
- Total
목록전체 글 (75)
seoft

개인 개발 PC의 OS를 포맷하면서 툴을 새로 설치하였고 추후에 또 새로 설치할 상황을 대비해 본인의 세팅을 정리해본다. 추가로 반영될 사항이 있으면 업데이트 예정 1. 평소 사용하는 폰트, Editor font로 적용 눈에 익은 평소에 사용하는 폰트로 사용하기 위해 설정 해당 사이트에서 폰트 설치 후 OS 적용(https://github.com/naver/d2codingfont/releases) Settings - Editor - font - font 에서 D2Coding ligature 로 변경 2. Ctrl + 스크롤시 글꼴 확대/축소 설정 종종 확대후 축소할 경우가 발생하여 해당 옵션설정으로 원할때 확대/축소할 수 있는 환경을 만들어 사용 설정 : Settings - Editor - General..

[quickly in PlayStore] https://play.google.com/store/apps/details?id=kr.co.seoft.quickly Quickly - Assist application for launcher - Google Play 앱 Previously, to run the app, you had to go through the following process and touch several times in progress. 1. Press the Home button 2. Open the drawer 3. Swipe left and right to find the app you want to run 4. Touch the app to run Quickly is differe..

Environment (작성시점 : 19.12.15) OS : Ubuntu 18.04 GPU : GTX 1080 이전글 https://seoft.tistory.com/28(Ubuntu 18.04 설치 ~ nvidia-docker 세팅)에 이어 docker환경에서 Tensorflow GPU연동을 위해 시행착오 겪은 내용들 정리 이전 글의 nvidia-docker 세팅 후 쿠다기반 도커 이미지에서 tensorflow를 넣어 돌리면 되는줄 알았으나 tensorflow에서 GPU를 적용하기 위해서 지원하는 driver, cuda 버전을 맞출 필요가 있었다. * 작성 시점 기준 : TensorFlow supports CUDA 10.0 (TensorFlow >= 1.13.0) 그래서 최신 GPU 드라이버와 쿠다 버..
ML환경 구축을위해 시행착오 겪은 내용을 정리 ubuntu 18.04 USB 제작 https://tlo-developer.tistory.com/96 window & ubuntu 듀얼부팅 https://jimnong.tistory.com/676 nvidia GPU driver setup https://curioso365.tistory.com/71 nvidia docker 설치 (다음거 진행 전 docker를 19.03이상으로 설치하자) https://github.com/NVIDIA/nvidia-docker 설치 확인과정인 다음 명령어에서 --gpus의 커맨드가 없다는 에러가 발생 docker run --gpus all nvidia/cuda:10.2-base nvidia-smi --gpus 커맨드는 도커 1..
[문제정의] 사이드 프로젝트 2min 어플리케이션 제작도중 Room을 도입하게 되어 숙지/테스트 해보았고 추가로 정리함 [핵심코드] table 추가시, abstract class AppDatabase : RoomDatabase() 에 다음처럼 반영하는거 꼭 숙지할것 @Database( entities = [ User::class, Time::class, TimeSet::class, Bell::class ], version = 1 ) @TypeConverters(RoomConverter::class) 추가로 자식 엔티티가 특정 엔티티의 list로 들어가기 위해 forengForeignKey설정시 자식엔티티의 CRUD가 안되었음 - list object 확인 완료 - object inside object 확..

[CODE] [RESULT] [CODE] [관련코드] https://gist.github.com/seoft/590aadf0b3ba8001ddf1b4ea44040aca rx subscribeOn observeOn 요약.kt GitHub Gist: instantly share code, notes, and snippets. gist.github.com

추후 작성 android:id="@+id/tvTime" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:text="" android:textColor="#0a0a0a" android:textSize="50dp" app:layout_constraintBottom_toTopOf="@id/ivWriteMemoBtn" app:layout_constraintLeft_toLeftOf="@id/tvTitle" app:layout_constraintTop_toBottomOf="@id/tvSubTitle" tools:text="00:00:59" /> android:id..

[문제정의] 다음과같이 ubuntu 터미널 현 디렉토리 우측에 git current branch 출력하기 위함 [해결방안] 0. 작업 환경 ubuntu16.04기준 (18.04도 확인완료) mobaXterm client로 테스트 1. ~/.bashrc 파일의 가장 밑에 다음 코드를 덧붙임 # Show git branch name force_color_prompt=yes color_prompt=yes parse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' } if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;..