일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 벤자민플랭클린
- FSM
- 1인개발자
- jetpack compose
- Linux
- kotlin
- recyclerview
- 명언모음
- 명심보감
- Firebase
- 공부집중
- Streaming
- 소울칼리버6
- Android
- Freesound
- 공자명언
- 장자명언
- 넷플릭스
- 오픈소스
- 이모지메모
- 파이썬
- 좋은글필사하기
- 코틀린
- DART
- androidx
- bash
- Flutter
- ASMR
- 이모지
- Coroutine
- Today
- Total
목록Source code or Tip (207)
Vintage appMaker의 Tech Blog
infix 함수는 객체가 도트(.) 연산자를 사용하지 않고 빈칸 이후 함수명을 그대로 사용할 때 사용한다. 이렇게 하는 이유는 영어를 쓰는 사용자의 입장에서는 구어체처럼 편하게 느껴지기 때문이다. 주로 확장함수나 멤버함수로 구성되어 있고 함수를 정의할 때 infix를 사용하면 일반 함수와 정의하는 것이 같다. class RankMyCompany { val m = mapOf( "일이좋다" to 25, "자부심" to 30, "높은연봉" to 25, "유명회사" to 20, "야근당연" to -60) var 만족도 : Int = 0 // infix는 확장함수나 멤버함수로 구현되어야 한다. infix fun AddPoint(s : String) : Int{ this.만족도 += m[s]!! return thi..
🥙 소스코드가 마음에든다. 특히 Provider pattern을 쉽게 구현해놓았다. ebook 관련 오픈API인 feedbooks api 를 사용했다. 그리고 Network 통신으로는 Dio를 사용했다. JideGuru/FlutterEbookApp A simple Flutter app to Read and Download eBooks. Contribute to JideGuru/FlutterEbookApp development by creating an account on GitHub. github.com
전체소스: Santos-Enoque/complete_flutter_ecommerce This repo will contain the backend code and the Ui of the flutter ecommerce app - Santos-Enoque/complete_flutter_ecommerce github.com 개발자의 youtube: Santos Enoque Hey beautiful people, the main goal of this channel is to teach people how to build real world softwares and make sure that they have skills that are actually needed on the market www.youtu..
Android 8.0 이상에서는 멀쩡하게 잘 사용하던 regacy http(org.apache.http)가 에러를 발생시킨다. 주로 - class not found - Cleartext HTTP ...... not permitted 이다. 이는 구글정책상 http를 봉쇄하겠다는 이유이기도 하다. 보안상 http가 문제되기에 극단의 조치를 취했다고 생각된다. 그러면 regacy http를 모두 고쳐야 하는 것일까? 그것은 아니다. AndroidMainfest.xml에 다음과 같이 선언해주면 기존의 소스를 그대로 사용할 수 있다. 첫 번째로 "class not found" 에러를 무시하려면 Application 섹션 안에 로 정의해주면 된다. 두번째로 "Cleartext HTTP ...... not perm..