내 맘대로 위클리 뉴스 - 2017년 28주(07월 14일)

Django with Python News

  • Advanced Python Features

    • Python에서 제공하는 놀라운 기능/기술을 소개하는 기사
  • FIND THE BEST PYTHON BOOKS

    • Python의 여러 분야나 카테고리에 해당하는 추천 서적을 소개하는 곳
  • Django project optimization guide (part 2)

    • Django 최적화와 관련된 내용을 가이드하는 기사
  • Space, Time and Groceries

    • Datashader를 사용해서 식료품 배달과 관련된 데이터를 시각화 하는 방법을 소개하는 기사
    • 기존의 시각화와 달리 지도를 사용해서 방법을 자세히 소개하고 있기 때문에 관심 있으신 분들은 눈여겨 볼 기사!

iOS, Android and Windows Mobile News

JavaScript

  • 'Redux Isn't Slow, You're Just Doing It Wrong'

    • ReactRedux를 함께 사용할 때 도움이되는 몇가지 팁을 소개하는 기사
    • 코드를 사용해서 설명하는 부분이 많기 때문에 실용적임!

    This is quite vague, so let’s elaborate with a bunch of practical examples.

  • Five Tips for Working with Redux in Large Applications

    • Redux를 대규모의 데이터를 처리하는 애플리케이션에 적용할 때 도움이 되는 내용을 소개하는 기사

    [...] In order to scale out our Redux application, it may help to create one top level reducer per page. Each page and top level reducer corresponds to one view in our application. For example, the users screen will fetch users from our API and store them in the users reducer, and another page which tracks the domains for the current user will fetch and store data from our domain API.

  • 7 Ways To Define A Component Template in Vue.js

    • Vue.js에서 제공하는 컴포넌트 템플릿을 소개하고, 가장 적합한 컴포넌트 템플릿 방법을 소개하는 기사

    The most controversial template option in Vue is JSX. Some developers see JSX as ugly, unintuitive and as a betrayal to the Vue ethos.