내 맘대로 위클리 뉴스 - 2017년 23주(06월 09일)
Django with Python News
-
- 파이썬에서
YAML
을 사용하는 방법을 소개하는 기사 JSON
이 보편적으로 사용하고 있지만, 가끔YAML
을 사용할 때! 참고하면 좋을 듯
- 파이썬에서
-
Python Functions Aren't What You Think
- 파이썸의 함수가 어떻게 동작하는지 생각해 볼 수 있는 기회를 제공하는 기사
And that's what's really important. Our mastery of programming depends on our mental flexibilty. A mental model is a tool, like a hammer; that tool has its uses, and also its limits. Sometimes you need to put down the hammer and get a screwdriver.
-
Implementing Role Based Access Control
- 파이썬으로 RBAC를 구현하는 기사
-
Tutorial: Asynchronous Speech Recognition in Python
- Google의 음성 인식 API를 사용하는 간단한 튜토리얼 기사
-
Iterator
에 대한 개념과 코드를 소개하고 있음- 코드를 사용해서 매우 풍부한 예제를 제공하기 때문에 추천함
-
Django REST Framework: JSON Web Tokens (JWT)
- Django에서 JWT를 사용하는 방법을 소개하는 튜토리얼 기사
-
Django with Windows Authentication
- Django에서
Windows Authentication
을 사용하는 방법을 소개하는 튜토리얼 기사 - 얼마만에 보는
IIS
세팅인가!
- Django에서
-
Modern Django — Part 2: REST APIs, Apps, and Django REST Framework
- 오랜만에 올라온
Modern Django
의 두번째 파트!
- 오랜만에 올라온
iOS, Android and Windows Mobile News
-
Vapor 2: Less code, more power.
- 서버에서 사용할 수 있는 Swift 프레임워크인
Vapor 2
에 대한 소개
- 서버에서 사용할 수 있는 Swift 프레임워크인
-
- Kotlin의 몇가지 단점을 알아보는 시간!
JavaScript
-
The Anatomy of a Modern JavaScript Application
Modern JavaScript
를 구성하는 중요한 요소를 소개하고 있음
-
Understanding lock files in NPM 5
- NPM v5에서 도입된 lock files에 대한 기능을 소개하는 기사
-
Writing a chess microservice using Node.js and Seneca
- 마이크로서비스를 활용해서 체스게임을 만들어보는 튜토리얼 기사
-
The Modern JavaScript Tutorial
- JavaScript 튜토리얼!
-
Managing State in Aurelia with Higher Order Components
As a rule of thumb, if you want to create simple presentational components, which only render data they are provided and pass on callbacks to the given actions, then you want to go with dumb components. If a component, on the other hand, is not going to be reused in other places and has more complex UI state to handle, you’ll likely want to use smart components. Keep their count as small as possible though.