일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 우분투 파이썬
- unit test
- Design Pattern
- Android
- 웹크롤링
- Apollo GraphQL
- 안드로이드
- prisma
- 안드로이드 디자인패턴
- ubuntu python
- PYTHON
- mvvm
- Apollo Server
- Kotlin
- graphQL
- LinkedList
- 파이썬 크롤링
- dagger-hilt
- Data structure
- Android test
- Dependency Injection
- MVVM pattern
- 자바기초
- 유니티
- Nexus GraphQL
- 자바
- 안드로이드 mvp
- java
- 안드로이드 테스트
- flutter
- Today
- Total
목록Kotlin (4)
Hun's Blog
프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr https://github.com/jhk-im/jhk-algorithm/tree/main/kotlin/01_hash/test2 GitHub - jhk-im/jhk-algorithm Contribute to jhk-im/jhk-algorithm development by creating an account on GitHub. github.com * 프로그래머스 2번째 코딩테스트의 문제와 제한사항 전화번호부에 적힌 전화번호 중, 한 번호가 다른 번호의 접두어인 경우가 있는지 확인하려 한다. 전화번호부에 적힌 전화..
프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr https://github.com/jhk-im/jhk-algorithm/tree/main/kotlin/01_hash/test1 GitHub - jhk-im/jhk-algorithm Contribute to jhk-im/jhk-algorithm development by creating an account on GitHub. github.com * ArrayList는 인덱스를 이용하여 검색이 한번에 이루어지기 때문에 검색 속도를 보장하는 반면 데이터의 추가/삭제시에는 많은 데이터가 다같이 이동해야 하기 때문에 ..
medium.com/androiddevelopers/coroutines-on-android-part-i-getting-the-background-3e0e54d20bb Coroutines on Android (part I): Getting the background What problems do coroutines solve? medium.com 코루틴은 어떤 문제를 해결할까? 코틀린 코루틴은 안드로이드에서 비동기 코드를 사용하는 새로운 Concurrency(동시발생) 스타일 소개한다. 새로운 코틀린 1.3에서 처음 도입되었지만 코루틴의 개념은 프로그래밍 언어의 초기부터 존재했다. 코루틴을 사용한 첫번째 언어는 1967년 Simula였다. 최근 몇 년 동안 코루틴의 인기가 상승했고 현재 JavaScript..
joaoalves.dev/posts/kotlin-playground/parcelable-in-kotlin-here-comes-parcelize/ Parcelable in Kotlin? Here comes Parcelize Hey everyone, welcome to article number 5 in the series where we’re going to look into how to handle Parcelables in Kotlin. joaoalves.dev 기본적으로 Parcelable이 사용되는 경우는 다른 Activity로 모델을 전달해야 할때이다. class ActivityA : Activity() { override fun onCreate(savedInstanceState: Bundle?)..