일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Flutter
- 코틀린
- kotlin
- map
- crawler
- text
- package
- 웹크롤러
- Class
- pushnamed
- ML
- 플러터
- textstyle
- function
- 함수
- List
- animation
- 파이썬
- texttheme
- Collection
- variable
- 다트
- DART
- 클래스
- 콜렉션
- set
- 크롤러
- import
- Android
- python
- Today
- Total
목록분류 전체보기 (125)
조용한 담장
reddit 에 올라온 오픈소스 앱 입니다. Hacker News 에도 올렸네요. Time Cop A time tracking app that respects your privacy and gets the job done without getting too fancy. https://timecop.app 타임 경찰 타임 경찰 개인 정보를 존중하고 너무 화려하지 않고 작업을 수행하는 시간 추적 앱. 풍모 오프라인 전용, 모바일 전용 (iOS / Android) 완전 비공개 — 추적 / 스파이 / 광고 등이 없습니다. 버튼을 한 번만 누르면 시작할 수있는 여러 개의 병렬 타이머로 작업을 추적 타이머를 프로젝트와 연결하여 작업 그룹화 번거 로움없이 언제든지 타이머를 시작, 중지, 편집 및 삭제 기간 및 프로젝..
WHO 가 Flutter 로 앱을 개발하고 있다는 소식... https://twitter.com/chimon1984/status/1242946241367023616 Ryan Edge 💙 on Twitter “The WHO app is being migrated from ionic to Flutter. Get involved! https://t.co/CnY3bsiRDA” twitter.com https://github.com/WorldHealthOrganization/app WorldHealthOrganization/app World Health Organization App. Contribute to WorldHealthOrganization/app development by creating an acc..
코틀린의 collection 의 plus and minus Operators 와 Grouping 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/collection-plus-minus.html 와 https://kotlinlang.org/docs/reference/collection-grouping.html 을 보며 정리. plus and minus Operators plus (+) 와 minus (-) 연산자들의 결과로 read-only collection 이 생성된다. minus 는 두번째 피연산자의 element 들을 원본 collection 에서 제외한 결과를 리턴한다. val numbers = listOf("one", "two", "three", "f..
코틀린의 collection 의 transformation 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/collection-filtering.html 을 보며 정리. 필터링은 전달된 람다함수가 collection 의 element 을 가지고 도출한 boolean 결과값이 true 이면 해당 element 값을 사용하고 false 이면 버린다. standard library 는 filtering 을 위한 많은 확장 함수들을 하나의 호출을 통해 사용될수 있도록 제공한다. 이 함수들은 원본 collection 을 변경시키지 않고 보존하므로 mutable 과 read-only collection 모두에 사용이 가능하다. filtering 의 결과는 변수에 저장하거..