7
iOS App Development for Beginners
Learn how to make amazing apps from an absolute beginner level!
Dart 2.8.1 @ 2020.05.06
Flutter와 함께 2020년 처음으로 Dart의 공식 릴리즈도 발표 되었습니다. 2020년 5월 6일 발표된 2.8.1에 반영한 사항은 GitHub의 Dart SDK에서 확인 가능합니다 (참조: https://github.com/dart-lang/sdk/blob/master/CHANGELOG.md#281---2020-05-06). 공식 사이트에서 강조한
Flutter 1.17.0 @ 2020.05.07
Flutter 1.17.0 버전이 2020년 5월 7일 공식 릴리즈 되었습니다. 이번 릴리즈에 반영된 내용 전체는 Flutter 공식 사이트의 'Change log for Flutter 1.17.0 (출처: https://flutter.dev/docs/development/tools/sdk/release-notes/changelogs/changelog-1.
[Laravel 기초] 4. Service Container - Stack Hoarder
라라벨에서 Service Container는 클래스 의존성을 관리하고 의존성 주입(Dependency Injection)을 실행하는 강력한 툴입니다. 대부분 프레임 워크에서 발견할 수 있는 IOC Container 라고 할 수 있습니다.
Android MVVM Kotlin Tutorial - LiveData + ViewModel (Android Architecture Components)
📗 Read the written tutorial with all the code 👇👇
https://resocoder.com/mvvm-android-kotlin-crash-course
Start saving time now by planning weekly with Week Sweep: http://bit.ly/2Jf3QA0
Model - View - ViewModel is an architectural pattern which will empower you to write manageable, maintainable, cleaner and testable code. MVVM is also supported and encouraged by Google itself. There are many first-party libraries like lifecycle-aware components, LiveData, ViewModel and many more.
In this tutorial you are going to put MVVM pattern into practice. You will build a simple, yet real-enough app which will make you understand MVVM on a deeper level. It will be an app displaying quotes which you put in. This quote app will have a ViewModel, Repository, fake database and a simple dependency injection. This will give you a strong foundation to build on.
Go to my website for more information, code examples and articles:
● http://resocoder.com
Follow me on social media:
● https://www.facebook.com/resocoder
● https://twitter.com/resocoder
5
파이썬 초보 강의
초보자를 위한 파이썬 강의입니다. 많은 교수님들과 선생님들이 추천하셨습니다. 지금까지 겪어보지 못했던, 한 번 시작하면 쉽게 멈출 수 없는 재밌는 수업입니다. 자신 있습니다.
Top 15 Python Packages You Must Try
A handpicked list of the most useful and surprising Python packages from PyPI
Laravel HTTP, Markdown, & Notification Mail
Welcome! Actually, this article is a continuation of the previous article here. If you haven’t seen that article, don’t worry that’s ok…
Laravel UI Email Verification — Part I
Usually, when a user signs up to our apps, we need to verify their email so that we know that it is their real email, not a junk one…
[iOS] Animation 방법(UIViewPropertyAnimator)
이번 포스트에선 UIViewPropertyAnimator에 대해 알아 보도록 하겠습니다. 지난 포스트에서 알아봤듯이 UIView.animate는 Deprecated될 가능성이 높습니다. 따라서 프로젝트 타켓이 10이상인 프로젝트에서 애니메..
[PHP] 비트연산자(&)를 이용한 플래그 값 비교 방법
비트 연산을 이용해 여러 상태 값을 처리하는 방법을 소개합니다. 비트 연산하면 떠오르는 패턴의 수열이 있습니다. 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 .. 와 같은 공비가 2인 등비수열.. 이제 이 값들을 식재료에 매칭시켜 예를 들어보겠습니다. [crayon-6048a13b92366498965304…